
    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_c7980fbb680a8e5abb333ab3.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.100098;font-style:normal;font-weight:normal;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_57b64def5f81d09e3dc4e191.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_e04f7d7b166e7329ac08a7d8.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:1.159180;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00000{letter-spacing:-0.078120px;}
.ls1_c00000{letter-spacing:-0.070308px;}
.ls8_c00000{letter-spacing:-0.067284px;}
.ls7_c00000{letter-spacing:-0.057672px;}
.ls6_c00000{letter-spacing:-0.038448px;}
.ls0_c00000{letter-spacing:0.000000px;}
.ls3_c00000{letter-spacing:0.026424px;}
.ls5_c00000{letter-spacing:0.047952px;}
.ls4_c00000{letter-spacing:0.155880px;}
.sc__c00000{text-shadow:none;}
.sc1_c00000{text-shadow:-0.015em 0 rgb(59,44,26),0 0.015em rgb(59,44,26),0.015em 0 rgb(59,44,26),0 -0.015em  rgb(59,44,26);}
.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;}
.sc1_c00000{-webkit-text-stroke:0.015em rgb(59,44,26);text-shadow:none;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00000{word-spacing:-0.249408px;}
.wsa_c00000{word-spacing:-0.230688px;}
.ws4_c00000{word-spacing:-0.203112px;}
.wsc_c00000{word-spacing:-0.201852px;}
.ws7_c00000{word-spacing:-0.140292px;}
.ws8_c00000{word-spacing:-0.093528px;}
.ws1_c00000{word-spacing:-0.086508px;}
.ws9_c00000{word-spacing:-0.023976px;}
.ws2_c00000{word-spacing:-0.023436px;}
.ws3_c00000{word-spacing:-0.015624px;}
.ws0_c00000{word-spacing:0.000000px;}
.wsb_c00000{word-spacing:0.038448px;}
.ws5_c00000{word-spacing:0.066060px;}
.wsd_c00000{word-spacing:0.144180px;}
._0_c00000{margin-left:-1.441800px;}
.fc1_c00000{color:rgb(59,44,26);}
.fc0_c00000{color:rgb(0,0,0);}
.fs2_c00000{font-size:47.880000px;}
.fs7_c00000{font-size:72.000000px;}
.fs3_c00000{font-size:78.120000px;}
.fs4_c00000{font-size:83.880000px;}
.fs1_c00000{font-size:96.120000px;}
.fs0_c00000{font-size:119.880000px;}
.fs5_c00000{font-size:132.120000px;}
.fs6_c00000{font-size:155.880000px;}
.y0_c00000{bottom:0.000000px;}
.y21_c00000{bottom:142.641570px;}
.y20_c00000{bottom:169.651290px;}
.y1f_c00000{bottom:196.661010px;}
.y1e_c00000{bottom:223.670730px;}
.y1d_c00000{bottom:250.680450px;}
.y1c_c00000{bottom:276.949200px;}
.y1b_c00000{bottom:300.540450px;}
.y1a_c00000{bottom:326.554230px;}
.y19_c00000{bottom:360.300450px;}
.y18_c00000{bottom:392.401440px;}
.y17_c00000{bottom:419.411160px;}
.y16_c00000{bottom:446.420880px;}
.y15_c00000{bottom:473.430600px;}
.y14_c00000{bottom:502.050450px;}
.y13_c00000{bottom:532.650450px;}
.y12_c00000{bottom:556.950450px;}
.y11_c00000{bottom:595.024590px;}
.y10_c00000{bottom:641.009190px;}
.yf_c00000{bottom:686.915850px;}
.ye_c00000{bottom:732.900450px;}
.yd_c00000{bottom:777.300600px;}
.yc_c00000{bottom:816.176910px;}
.yb_c00000{bottom:855.581700px;}
.ya_c00000{bottom:892.740450px;}
.y9_c00000{bottom:926.580450px;}
.y8_c00000{bottom:949.895400px;}
.y7_c00000{bottom:980.850450px;}
.y6_c00000{bottom:1000.740450px;}
.y5_c00000{bottom:1017.390450px;}
.y4_c00000{bottom:1055.021790px;}
.y3_c00000{bottom:1088.768010px;}
.y2_c00000{bottom:1122.514230px;}
.y1_c00000{bottom:1156.260450px;}
.h3_c00000{height:40.071445px;}
.h9_c00000{height:60.257812px;}
.h4_c00000{height:65.456016px;}
.h5_c00000{height:70.200352px;}
.hb_c00000{height:80.444180px;}
.h2_c00000{height:80.538047px;}
.h1_c00000{height:100.329258px;}
.ha_c00000{height:100.446328px;}
.h6_c00000{height:110.702109px;}
.h7_c00000{height:121.282031px;}
.h8_c00000{height:143.092969px;}
.h0_c00000{height:1263.000000px;}
.w1_c00000{width:892.500000px;}
.w0_c00000{width:892.830000px;}
.x0_c00000{left:0.000000px;}
.xf_c00000{left:127.620000px;}
.x9_c00000{left:272.694330px;}
.x8_c00000{left:277.020000px;}
.x5_c00000{left:312.660000px;}
.xe_c00000{left:315.285930px;}
.xc_c00000{left:347.490000px;}
.x3_c00000{left:366.210000px;}
.x7_c00000{left:371.786580px;}
.xa_c00000{left:380.056680px;}
.xb_c00000{left:431.185320px;}
.x11_c00000{left:442.087380px;}
.x6_c00000{left:443.432880px;}
.x10_c00000{left:445.331430px;}
.x2_c00000{left:446.497560px;}
.xd_c00000{left:451.536030px;}
.x1_c00000{left:513.990000px;}
.x4_c00000{left:527.490000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls2_c00000{letter-spacing:-0.069440pt;}
.ls1_c00000{letter-spacing:-0.062496pt;}
.ls8_c00000{letter-spacing:-0.059808pt;}
.ls7_c00000{letter-spacing:-0.051264pt;}
.ls6_c00000{letter-spacing:-0.034176pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ls3_c00000{letter-spacing:0.023488pt;}
.ls5_c00000{letter-spacing:0.042624pt;}
.ls4_c00000{letter-spacing:0.138560pt;}
.ws6_c00000{word-spacing:-0.221696pt;}
.wsa_c00000{word-spacing:-0.205056pt;}
.ws4_c00000{word-spacing:-0.180544pt;}
.wsc_c00000{word-spacing:-0.179424pt;}
.ws7_c00000{word-spacing:-0.124704pt;}
.ws8_c00000{word-spacing:-0.083136pt;}
.ws1_c00000{word-spacing:-0.076896pt;}
.ws9_c00000{word-spacing:-0.021312pt;}
.ws2_c00000{word-spacing:-0.020832pt;}
.ws3_c00000{word-spacing:-0.013888pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.wsb_c00000{word-spacing:0.034176pt;}
.ws5_c00000{word-spacing:0.058720pt;}
.wsd_c00000{word-spacing:0.128160pt;}
._0_c00000{margin-left:-1.281600pt;}
.fs2_c00000{font-size:42.560000pt;}
.fs7_c00000{font-size:64.000000pt;}
.fs3_c00000{font-size:69.440000pt;}
.fs4_c00000{font-size:74.560000pt;}
.fs1_c00000{font-size:85.440000pt;}
.fs0_c00000{font-size:106.560000pt;}
.fs5_c00000{font-size:117.440000pt;}
.fs6_c00000{font-size:138.560000pt;}
.y0_c00000{bottom:0.000000pt;}
.y21_c00000{bottom:126.792507pt;}
.y20_c00000{bottom:150.801147pt;}
.y1f_c00000{bottom:174.809787pt;}
.y1e_c00000{bottom:198.818427pt;}
.y1d_c00000{bottom:222.827067pt;}
.y1c_c00000{bottom:246.177067pt;}
.y1b_c00000{bottom:267.147067pt;}
.y1a_c00000{bottom:290.270427pt;}
.y19_c00000{bottom:320.267067pt;}
.y18_c00000{bottom:348.801280pt;}
.y17_c00000{bottom:372.809920pt;}
.y16_c00000{bottom:396.818560pt;}
.y15_c00000{bottom:420.827200pt;}
.y14_c00000{bottom:446.267067pt;}
.y13_c00000{bottom:473.467067pt;}
.y12_c00000{bottom:495.067067pt;}
.y11_c00000{bottom:528.910747pt;}
.y10_c00000{bottom:569.785947pt;}
.yf_c00000{bottom:610.591867pt;}
.ye_c00000{bottom:651.467067pt;}
.yd_c00000{bottom:690.933867pt;}
.yc_c00000{bottom:725.490587pt;}
.yb_c00000{bottom:760.517067pt;}
.ya_c00000{bottom:793.547067pt;}
.y9_c00000{bottom:823.627067pt;}
.y8_c00000{bottom:844.351467pt;}
.y7_c00000{bottom:871.867067pt;}
.y6_c00000{bottom:889.547067pt;}
.y5_c00000{bottom:904.347067pt;}
.y4_c00000{bottom:937.797147pt;}
.y3_c00000{bottom:967.793787pt;}
.y2_c00000{bottom:997.790427pt;}
.y1_c00000{bottom:1027.787067pt;}
.h3_c00000{height:35.619062pt;}
.h9_c00000{height:53.562500pt;}
.h4_c00000{height:58.183125pt;}
.h5_c00000{height:62.400312pt;}
.hb_c00000{height:71.505938pt;}
.h2_c00000{height:71.589375pt;}
.h1_c00000{height:89.181562pt;}
.ha_c00000{height:89.285625pt;}
.h6_c00000{height:98.401875pt;}
.h7_c00000{height:107.806250pt;}
.h8_c00000{height:127.193750pt;}
.h0_c00000{height:1122.666667pt;}
.w1_c00000{width:793.333333pt;}
.w0_c00000{width:793.626667pt;}
.x0_c00000{left:0.000000pt;}
.xf_c00000{left:113.440000pt;}
.x9_c00000{left:242.394960pt;}
.x8_c00000{left:246.240000pt;}
.x5_c00000{left:277.920000pt;}
.xe_c00000{left:280.254160pt;}
.xc_c00000{left:308.880000pt;}
.x3_c00000{left:325.520000pt;}
.x7_c00000{left:330.476960pt;}
.xa_c00000{left:337.828160pt;}
.xb_c00000{left:383.275840pt;}
.x11_c00000{left:392.966560pt;}
.x6_c00000{left:394.162560pt;}
.x10_c00000{left:395.850160pt;}
.x2_c00000{left:396.886720pt;}
.xd_c00000{left:401.365360pt;}
.x1_c00000{left:456.880000pt;}
.x4_c00000{left:468.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_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_18e903d3ae7c000509e0d392.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:0.674805;font-style:normal;font-weight:normal;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_d09fd74ae9292c06b6f5440b.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00001{vertical-align:-4.644000px;}
.v0_c00001{vertical-align:0.000000px;}
.ls2_c00001{letter-spacing:0.000000px;}
.ls1_c00001{letter-spacing:0.108000px;}
.ls0_c00001{letter-spacing:4.752000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:-27.000000px;}
.ws1_c00001{word-spacing:0.000000px;}
._1_c00001{margin-left:-22.356000px;}
._0_c00001{margin-left:-4.536000px;}
.fc1_c00001{color:rgb(59,44,26);}
.fc0_c00001{color:rgb(192,192,192);}
.fs0_c00001{font-size:108.000000px;}
.y0_c00001{bottom:0.000000px;}
.y70_c00001{bottom:107.400450px;}
.y71_c00001{bottom:108.561450px;}
.y1_c00001{bottom:110.820450px;}
.y2e_c00001{bottom:211.071450px;}
.y2f_c00001{bottom:212.232450px;}
.y30_c00001{bottom:229.404450px;}
.y31_c00001{bottom:242.364450px;}
.y32_c00001{bottom:249.114450px;}
.y33_c00001{bottom:271.875450px;}
.y34_c00001{bottom:286.806450px;}
.y35_c00001{bottom:297.957450px;}
.y36_c00001{bottom:305.517450px;}
.y37_c00001{bottom:318.207450px;}
.y2_c00001{bottom:321.231450px;}
.y38_c00001{bottom:331.167450px;}
.y3_c00001{bottom:331.383450px;}
.y39_c00001{bottom:337.917450px;}
.y4_c00001{bottom:345.423450px;}
.y3a_c00001{bottom:350.607450px;}
.y5_c00001{bottom:356.655450px;}
.y3b_c00001{bottom:365.538450px;}
.y6_c00001{bottom:369.345450px;}
.y3c_c00001{bottom:372.180450px;}
.y7_c00001{bottom:376.095450px;}
.y8_c00001{bottom:394.347450px;}
.y3d_c00001{bottom:396.912450px;}
.y9_c00001{bottom:407.199450px;}
.y3e_c00001{bottom:409.872450px;}
.ya_c00001{bottom:416.550450px;}
.y3f_c00001{bottom:416.892450px;}
.yb_c00001{bottom:423.570450px;}
.y40_c00001{bottom:429.852450px;}
.yc_c00001{bottom:437.610450px;}
.y41_c00001{bottom:444.432450px;}
.yd_c00001{bottom:448.842450px;}
.ye_c00001{bottom:455.610600px;}
.y42_c00001{bottom:457.392450px;}
.y43_c00001{bottom:464.142450px;}
.yf_c00001{bottom:474.402600px;}
.y44_c00001{bottom:479.073450px;}
.y10_c00001{bottom:488.523600px;}
.y45_c00001{bottom:494.004450px;}
.y46_c00001{bottom:503.265450px;}
.y11_c00001{bottom:503.454600px;}
.y12_c00001{bottom:512.715600px;}
.y47_c00001{bottom:516.225450px;}
.y13_c00001{bottom:520.275600px;}
.y48_c00001{bottom:531.156450px;}
.y14_c00001{bottom:534.855600px;}
.y49_c00001{bottom:539.526450px;}
.y4a_c00001{bottom:552.108450px;}
.y15_c00001{bottom:556.833600px;}
.y4b_c00001{bottom:558.858450px;}
.y4c_c00001{bottom:571.548450px;}
.y4d_c00001{bottom:578.568450px;}
.y16_c00001{bottom:580.134600px;}
.y4e_c00001{bottom:585.318450px;}
.y17_c00001{bottom:592.824600px;}
.y4f_c00001{bottom:594.579450px;}
.y18_c00001{bottom:602.085600px;}
.y50_c00001{bottom:607.269450px;}
.y19_c00001{bottom:611.346600px;}
.y51_c00001{bottom:614.829450px;}
.y1a_c00001{bottom:624.036600px;}
.y52_c00001{bottom:629.760450px;}
.y1b_c00001{bottom:633.297600px;}
.y53_c00001{bottom:642.612450px;}
.y1c_c00001{bottom:646.257600px;}
.y1d_c00001{bottom:653.277600px;}
.y54_c00001{bottom:657.543450px;}
.y1e_c00001{bottom:660.027600px;}
.y1f_c00001{bottom:666.777600px;}
.y55_c00001{bottom:671.583450px;}
.y56_c00001{bottom:678.333450px;}
.y20_c00001{bottom:685.299600px;}
.y57_c00001{bottom:693.264450px;}
.y21_c00001{bottom:697.989600px;}
.y58_c00001{bottom:705.954450px;}
.y22_c00001{bottom:709.221600px;}
.y59_c00001{bottom:712.704450px;}
.y23_c00001{bottom:716.781600px;}
.y24_c00001{bottom:728.013600px;}
.y5a_c00001{bottom:730.875450px;}
.y25_c00001{bottom:734.763600px;}
.y5b_c00001{bottom:743.835450px;}
.y5c_c00001{bottom:753.096450px;}
.y26_c00001{bottom:755.823600px;}
.y5d_c00001{bottom:760.116450px;}
.y27_c00001{bottom:769.863600px;}
.y5e_c00001{bottom:774.156450px;}
.y28_c00001{bottom:782.553600px;}
.y5f_c00001{bottom:785.388450px;}
.y29_c00001{bottom:791.004600px;}
.y60_c00001{bottom:792.390450px;}
.y61_c00001{bottom:803.082450px;}
.y2a_c00001{bottom:805.044600px;}
.y62_c00001{bottom:813.774450px;}
.y2b_c00001{bottom:814.305600px;}
.y63_c00001{bottom:820.524450px;}
.y2c_c00001{bottom:827.428200px;}
.y64_c00001{bottom:830.055450px;}
.y2d_c00001{bottom:834.448200px;}
.y65_c00001{bottom:840.747450px;}
.y66_c00001{bottom:853.437450px;}
.y67_c00001{bottom:866.127450px;}
.y68_c00001{bottom:878.817450px;}
.y69_c00001{bottom:885.567450px;}
.y6a_c00001{bottom:899.067450px;}
.y6b_c00001{bottom:905.709450px;}
.y6c_c00001{bottom:916.401450px;}
.y6d_c00001{bottom:929.091450px;}
.y6e_c00001{bottom:941.781450px;}
.y6f_c00001{bottom:954.471450px;}
.h1_c00001{height:90.492188px;}
.h2_c00001{height:105.996094px;}
.h0_c00001{height:1263.000000px;}
.w1_c00001{width:892.500000px;}
.w0_c00001{width:892.830000px;}
.x0_c00001{left:0.000000px;}
.x6_c00001{left:116.649000px;}
.x5_c00001{left:117.810000px;}
.x7_c00001{left:129.339000px;}
.x2_c00001{left:135.009000px;}
.x1_c00001{left:136.170000px;}
.x8_c00001{left:142.029000px;}
.x9_c00001{left:152.748000px;}
.x4_c00001{left:166.140000px;}
.x3_c00001{left:167.301000px;}
@media print{
.v1_c00001{vertical-align:-4.128000pt;}
.v0_c00001{vertical-align:0.000000pt;}
.ls2_c00001{letter-spacing:0.000000pt;}
.ls1_c00001{letter-spacing:0.096000pt;}
.ls0_c00001{letter-spacing:4.224000pt;}
.ws0_c00001{word-spacing:-24.000000pt;}
.ws1_c00001{word-spacing:0.000000pt;}
._1_c00001{margin-left:-19.872000pt;}
._0_c00001{margin-left:-4.032000pt;}
.fs0_c00001{font-size:96.000000pt;}
.y0_c00001{bottom:0.000000pt;}
.y70_c00001{bottom:95.467067pt;}
.y71_c00001{bottom:96.499067pt;}
.y1_c00001{bottom:98.507067pt;}
.y2e_c00001{bottom:187.619067pt;}
.y2f_c00001{bottom:188.651067pt;}
.y30_c00001{bottom:203.915067pt;}
.y31_c00001{bottom:215.435067pt;}
.y32_c00001{bottom:221.435067pt;}
.y33_c00001{bottom:241.667067pt;}
.y34_c00001{bottom:254.939067pt;}
.y35_c00001{bottom:264.851067pt;}
.y36_c00001{bottom:271.571067pt;}
.y37_c00001{bottom:282.851067pt;}
.y2_c00001{bottom:285.539067pt;}
.y38_c00001{bottom:294.371067pt;}
.y3_c00001{bottom:294.563067pt;}
.y39_c00001{bottom:300.371067pt;}
.y4_c00001{bottom:307.043067pt;}
.y3a_c00001{bottom:311.651067pt;}
.y5_c00001{bottom:317.027067pt;}
.y3b_c00001{bottom:324.923067pt;}
.y6_c00001{bottom:328.307067pt;}
.y3c_c00001{bottom:330.827067pt;}
.y7_c00001{bottom:334.307067pt;}
.y8_c00001{bottom:350.531067pt;}
.y3d_c00001{bottom:352.811067pt;}
.y9_c00001{bottom:361.955067pt;}
.y3e_c00001{bottom:364.331067pt;}
.ya_c00001{bottom:370.267067pt;}
.y3f_c00001{bottom:370.571067pt;}
.yb_c00001{bottom:376.507067pt;}
.y40_c00001{bottom:382.091067pt;}
.yc_c00001{bottom:388.987067pt;}
.y41_c00001{bottom:395.051067pt;}
.yd_c00001{bottom:398.971067pt;}
.ye_c00001{bottom:404.987200pt;}
.y42_c00001{bottom:406.571067pt;}
.y43_c00001{bottom:412.571067pt;}
.yf_c00001{bottom:421.691200pt;}
.y44_c00001{bottom:425.843067pt;}
.y10_c00001{bottom:434.243200pt;}
.y45_c00001{bottom:439.115067pt;}
.y46_c00001{bottom:447.347067pt;}
.y11_c00001{bottom:447.515200pt;}
.y12_c00001{bottom:455.747200pt;}
.y47_c00001{bottom:458.867067pt;}
.y13_c00001{bottom:462.467200pt;}
.y48_c00001{bottom:472.139067pt;}
.y14_c00001{bottom:475.427200pt;}
.y49_c00001{bottom:479.579067pt;}
.y4a_c00001{bottom:490.763067pt;}
.y15_c00001{bottom:494.963200pt;}
.y4b_c00001{bottom:496.763067pt;}
.y4c_c00001{bottom:508.043067pt;}
.y4d_c00001{bottom:514.283067pt;}
.y16_c00001{bottom:515.675200pt;}
.y4e_c00001{bottom:520.283067pt;}
.y17_c00001{bottom:526.955200pt;}
.y4f_c00001{bottom:528.515067pt;}
.y18_c00001{bottom:535.187200pt;}
.y50_c00001{bottom:539.795067pt;}
.y19_c00001{bottom:543.419200pt;}
.y51_c00001{bottom:546.515067pt;}
.y1a_c00001{bottom:554.699200pt;}
.y52_c00001{bottom:559.787067pt;}
.y1b_c00001{bottom:562.931200pt;}
.y53_c00001{bottom:571.211067pt;}
.y1c_c00001{bottom:574.451200pt;}
.y1d_c00001{bottom:580.691200pt;}
.y54_c00001{bottom:584.483067pt;}
.y1e_c00001{bottom:586.691200pt;}
.y1f_c00001{bottom:592.691200pt;}
.y55_c00001{bottom:596.963067pt;}
.y56_c00001{bottom:602.963067pt;}
.y20_c00001{bottom:609.155200pt;}
.y57_c00001{bottom:616.235067pt;}
.y21_c00001{bottom:620.435200pt;}
.y58_c00001{bottom:627.515067pt;}
.y22_c00001{bottom:630.419200pt;}
.y59_c00001{bottom:633.515067pt;}
.y23_c00001{bottom:637.139200pt;}
.y24_c00001{bottom:647.123200pt;}
.y5a_c00001{bottom:649.667067pt;}
.y25_c00001{bottom:653.123200pt;}
.y5b_c00001{bottom:661.187067pt;}
.y5c_c00001{bottom:669.419067pt;}
.y26_c00001{bottom:671.843200pt;}
.y5d_c00001{bottom:675.659067pt;}
.y27_c00001{bottom:684.323200pt;}
.y5e_c00001{bottom:688.139067pt;}
.y28_c00001{bottom:695.603200pt;}
.y5f_c00001{bottom:698.123067pt;}
.y29_c00001{bottom:703.115200pt;}
.y60_c00001{bottom:704.347067pt;}
.y61_c00001{bottom:713.851067pt;}
.y2a_c00001{bottom:715.595200pt;}
.y62_c00001{bottom:723.355067pt;}
.y2b_c00001{bottom:723.827200pt;}
.y63_c00001{bottom:729.355067pt;}
.y2c_c00001{bottom:735.491733pt;}
.y64_c00001{bottom:737.827067pt;}
.y2d_c00001{bottom:741.731733pt;}
.y65_c00001{bottom:747.331067pt;}
.y66_c00001{bottom:758.611067pt;}
.y67_c00001{bottom:769.891067pt;}
.y68_c00001{bottom:781.171067pt;}
.y69_c00001{bottom:787.171067pt;}
.y6a_c00001{bottom:799.171067pt;}
.y6b_c00001{bottom:805.075067pt;}
.y6c_c00001{bottom:814.579067pt;}
.y6d_c00001{bottom:825.859067pt;}
.y6e_c00001{bottom:837.139067pt;}
.y6f_c00001{bottom:848.419067pt;}
.h1_c00001{height:80.437500pt;}
.h2_c00001{height:94.218750pt;}
.h0_c00001{height:1122.666667pt;}
.w1_c00001{width:793.333333pt;}
.w0_c00001{width:793.626667pt;}
.x0_c00001{left:0.000000pt;}
.x6_c00001{left:103.688000pt;}
.x5_c00001{left:104.720000pt;}
.x7_c00001{left:114.968000pt;}
.x2_c00001{left:120.008000pt;}
.x1_c00001{left:121.040000pt;}
.x8_c00001{left:126.248000pt;}
.x9_c00001{left:135.776000pt;}
.x4_c00001{left:147.680000pt;}
.x3_c00001{left:148.712000pt;}
}





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

.ir_c00002:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00002;src:url('chunks/assets/font_2a28b470e64631b891815480.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00002;src:url('chunks/assets/font_1d428966dceb3091c58c1f05.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;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_c00002;src:url('chunks/assets/font_c7980fbb680a8e5abb333ab3.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00002;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00002{font-family:ff4_c00002;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00002{vertical-align:-3.606840px;}
.v0_c00002{vertical-align:0.000000px;}
.ls8_c00002{letter-spacing:0.000000px;}
.ls4_c00002{letter-spacing:3.439080px;}
.ls3_c00002{letter-spacing:3.522960px;}
.ls0_c00002{letter-spacing:3.606840px;}
.ls2_c00002{letter-spacing:3.690720px;}
.ls1_c00002{letter-spacing:3.774600px;}
.ls5_c00002{letter-spacing:3.858480px;}
.ls6_c00002{letter-spacing:3.942360px;}
.ls7_c00002{letter-spacing:4.110120px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:0.000000px;}
.fc1_c00002{color:rgb(59,44,26);}
.fc2_c00002{color:rgb(0,0,0);}
.fc0_c00002{color:rgb(192,192,192);}
.fs1_c00002{font-size:60.120000px;}
.fs3_c00002{font-size:72.000000px;}
.fs0_c00002{font-size:83.880000px;}
.fs2_c00002{font-size:96.120000px;}
.y0_c00002{bottom:0.000000px;}
.ye_c00002{bottom:417.103200px;}
.yd_c00002{bottom:451.566990px;}
.yc_c00002{bottom:485.940600px;}
.ya_c00002{bottom:516.442080px;}
.yb_c00002{bottom:517.343790px;}
.y8_c00002{bottom:551.902350px;}
.y9_c00002{bottom:552.804060px;}
.y5_c00002{bottom:587.279910px;}
.y7_c00002{bottom:588.180450px;}
.y6_c00002{bottom:588.181620px;}
.y3_c00002{bottom:622.740180px;}
.y4_c00002{bottom:623.641890px;}
.y1_c00002{bottom:658.200450px;}
.y2_c00002{bottom:659.102160px;}
.y10_c00002{bottom:1138.530450px;}
.yf_c00002{bottom:1161.390450px;}
.h2_c00002{height:62.703281px;}
.h1_c00002{height:70.282266px;}
.h4_c00002{height:70.664062px;}
.h3_c00002{height:80.444180px;}
.h0_c00002{height:1263.000000px;}
.w1_c00002{width:892.500000px;}
.w0_c00002{width:892.830000px;}
.x0_c00002{left:0.000000px;}
.x18_c00002{left:328.994730px;}
.x19_c00002{left:344.470590px;}
.x1_c00002{left:353.970000px;}
.x1a_c00002{left:356.087970px;}
.x1b_c00002{left:362.651580px;}
.x2_c00002{left:369.005490px;}
.x1c_c00002{left:373.535010px;}
.x1d_c00002{left:379.029150px;}
.x3_c00002{left:380.622870px;}
.x1e_c00002{left:384.250680px;}
.x4_c00002{left:386.557380px;}
.x2f_c00002{left:387.994320px;}
.x5_c00002{left:396.182610px;}
.x30_c00002{left:400.869900px;}
.x6_c00002{left:405.996570px;}
.x31_c00002{left:408.062610px;}
.x1f_c00002{left:410.987430px;}
.x7_c00002{left:413.189280px;}
.x32_c00002{left:417.876570px;}
.x8_c00002{left:421.912800px;}
.x20_c00002{left:425.205090px;}
.x9_c00002{left:427.847310px;}
.x21_c00002{left:431.139600px;}
.x33_c00002{left:433.184670px;}
.x3c_c00002{left:437.357700px;}
.xa_c00002{left:439.464690px;}
.x22_c00002{left:440.953560px;}
.x34_c00002{left:444.802050px;}
.x3d_c00002{left:447.171660px;}
.xb_c00002{left:449.551260px;}
.x23_c00002{left:452.570940px;}
.x35_c00002{left:454.616010px;}
.x17_c00002{left:457.163370px;}
.x36_c00002{left:459.837540px;}
.xc_c00002{left:461.168640px;}
.x24_c00002{left:462.384900px;}
.x3e_c00002{left:465.268770px;}
.xd_c00002{left:466.390170px;}
.x25_c00002{left:468.319410px;}
.x3f_c00002{left:475.082730px;}
.xe_c00002{left:478.007550px;}
.x37_c00002{left:479.192850px;}
.x40_c00002{left:482.107680px;}
.xf_c00002{left:487.821510px;}
.x38_c00002{left:490.810230px;}
.x10_c00002{left:493.043040px;}
.x39_c00002{left:499.533750px;}
.x3a_c00002{left:505.468260px;}
.x26_c00002{left:510.448140px;}
.x11_c00002{left:512.293500px;}
.x3b_c00002{left:515.282220px;}
.x27_c00002{left:516.382650px;}
.x12_c00002{left:522.380070px;}
.x28_c00002{left:525.106170px;}
.x13_c00002{left:527.874210px;}
.x29_c00002{left:531.669780px;}
.x14_c00002{left:537.960780px;}
.x2a_c00002{left:542.553210px;}
.x15_c00002{left:549.305550px;}
.x2b_c00002{left:555.680430px;}
.x16_c00002{left:559.392120px;}
.x2c_c00002{left:565.494390px;}
.x2d_c00002{left:575.550000px;}
.x2e_c00002{left:584.378370px;}
@media print{
.v1_c00002{vertical-align:-3.206080pt;}
.v0_c00002{vertical-align:0.000000pt;}
.ls8_c00002{letter-spacing:0.000000pt;}
.ls4_c00002{letter-spacing:3.056960pt;}
.ls3_c00002{letter-spacing:3.131520pt;}
.ls0_c00002{letter-spacing:3.206080pt;}
.ls2_c00002{letter-spacing:3.280640pt;}
.ls1_c00002{letter-spacing:3.355200pt;}
.ls5_c00002{letter-spacing:3.429760pt;}
.ls6_c00002{letter-spacing:3.504320pt;}
.ls7_c00002{letter-spacing:3.653440pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.fs1_c00002{font-size:53.440000pt;}
.fs3_c00002{font-size:64.000000pt;}
.fs0_c00002{font-size:74.560000pt;}
.fs2_c00002{font-size:85.440000pt;}
.y0_c00002{bottom:0.000000pt;}
.ye_c00002{bottom:370.758400pt;}
.yd_c00002{bottom:401.392880pt;}
.yc_c00002{bottom:431.947200pt;}
.ya_c00002{bottom:459.059627pt;}
.yb_c00002{bottom:459.861147pt;}
.y8_c00002{bottom:490.579867pt;}
.y9_c00002{bottom:491.381387pt;}
.y5_c00002{bottom:522.026587pt;}
.y7_c00002{bottom:522.827067pt;}
.y6_c00002{bottom:522.828107pt;}
.y3_c00002{bottom:553.546827pt;}
.y4_c00002{bottom:554.348347pt;}
.y1_c00002{bottom:585.067067pt;}
.y2_c00002{bottom:585.868587pt;}
.y10_c00002{bottom:1012.027067pt;}
.yf_c00002{bottom:1032.347067pt;}
.h2_c00002{height:55.736250pt;}
.h1_c00002{height:62.473125pt;}
.h4_c00002{height:62.812500pt;}
.h3_c00002{height:71.505938pt;}
.h0_c00002{height:1122.666667pt;}
.w1_c00002{width:793.333333pt;}
.w0_c00002{width:793.626667pt;}
.x0_c00002{left:0.000000pt;}
.x18_c00002{left:292.439760pt;}
.x19_c00002{left:306.196080pt;}
.x1_c00002{left:314.640000pt;}
.x1a_c00002{left:316.522640pt;}
.x1b_c00002{left:322.356960pt;}
.x2_c00002{left:328.004880pt;}
.x1c_c00002{left:332.031120pt;}
.x1d_c00002{left:336.914800pt;}
.x3_c00002{left:338.331440pt;}
.x1e_c00002{left:341.556160pt;}
.x4_c00002{left:343.606560pt;}
.x2f_c00002{left:344.883840pt;}
.x5_c00002{left:352.162320pt;}
.x30_c00002{left:356.328800pt;}
.x6_c00002{left:360.885840pt;}
.x31_c00002{left:362.722320pt;}
.x1f_c00002{left:365.322160pt;}
.x7_c00002{left:367.279360pt;}
.x32_c00002{left:371.445840pt;}
.x8_c00002{left:375.033600pt;}
.x20_c00002{left:377.960080pt;}
.x9_c00002{left:380.308720pt;}
.x21_c00002{left:383.235200pt;}
.x33_c00002{left:385.053040pt;}
.x3c_c00002{left:388.762400pt;}
.xa_c00002{left:390.635280pt;}
.x22_c00002{left:391.958720pt;}
.x34_c00002{left:395.379600pt;}
.x3d_c00002{left:397.485920pt;}
.xb_c00002{left:399.601120pt;}
.x23_c00002{left:402.285280pt;}
.x35_c00002{left:404.103120pt;}
.x17_c00002{left:406.367440pt;}
.x36_c00002{left:408.744480pt;}
.xc_c00002{left:409.927680pt;}
.x24_c00002{left:411.008800pt;}
.x3e_c00002{left:413.572240pt;}
.xd_c00002{left:414.569040pt;}
.x25_c00002{left:416.283920pt;}
.x3f_c00002{left:422.295760pt;}
.xe_c00002{left:424.895600pt;}
.x37_c00002{left:425.949200pt;}
.x40_c00002{left:428.540160pt;}
.xf_c00002{left:433.619120pt;}
.x38_c00002{left:436.275760pt;}
.x10_c00002{left:438.260480pt;}
.x39_c00002{left:444.030000pt;}
.x3a_c00002{left:449.305120pt;}
.x26_c00002{left:453.731680pt;}
.x11_c00002{left:455.372000pt;}
.x3b_c00002{left:458.028640pt;}
.x27_c00002{left:459.006800pt;}
.x12_c00002{left:464.337840pt;}
.x28_c00002{left:466.761040pt;}
.x13_c00002{left:469.221520pt;}
.x29_c00002{left:472.595360pt;}
.x14_c00002{left:478.187360pt;}
.x2a_c00002{left:482.269520pt;}
.x15_c00002{left:488.271600pt;}
.x2b_c00002{left:493.938160pt;}
.x16_c00002{left:497.237440pt;}
.x2c_c00002{left:502.661680pt;}
.x2d_c00002{left:511.600000pt;}
.x2e_c00002{left:519.447440pt;}
}





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

.ir_c00003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00003;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_c7980fbb680a8e5abb333ab3.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_0707e88c7620589c6d8d7d55.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls3_c00003{letter-spacing:-0.079272px;}
.ls4_c00003{letter-spacing:-0.066060px;}
.ls8_c00003{letter-spacing:-0.048060px;}
.ls5_c00003{letter-spacing:-0.039636px;}
.ls7_c00003{letter-spacing:-0.038448px;}
.ls2_c00003{letter-spacing:-0.021600px;}
.ls1_c00003{letter-spacing:0.000000px;}
.lsa_c00003{letter-spacing:0.041940px;}
.ls6_c00003{letter-spacing:0.047952px;}
.ls0_c00003{letter-spacing:0.058716px;}
.ls9_c00003{letter-spacing:0.100656px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00003{word-spacing:-0.192924px;}
.ws3_c00003{word-spacing:-0.150984px;}
.wsb_c00003{word-spacing:-0.134208px;}
.ws6_c00003{word-spacing:-0.079272px;}
.ws8_c00003{word-spacing:-0.048060px;}
.ws9_c00003{word-spacing:-0.038448px;}
.ws2_c00003{word-spacing:-0.033552px;}
.ws7_c00003{word-spacing:-0.023976px;}
.ws0_c00003{word-spacing:0.000000px;}
.ws1_c00003{word-spacing:0.021600px;}
.ws5_c00003{word-spacing:0.039636px;}
.ws4_c00003{word-spacing:0.171756px;}
.fc0_c00003{color:rgb(0,0,0);}
.fs0_c00003{font-size:72.000000px;}
.fs4_c00003{font-size:83.880000px;}
.fs5_c00003{font-size:96.120000px;}
.fs2_c00003{font-size:108.000000px;}
.fs1_c00003{font-size:119.880000px;}
.fs3_c00003{font-size:132.120000px;}
.y0_c00003{bottom:0.000000px;}
.y1_c00003{bottom:57.360450px;}
.y23_c00003{bottom:116.130450px;}
.y22_c00003{bottom:148.260450px;}
.y21_c00003{bottom:174.512970px;}
.y20_c00003{bottom:198.104220px;}
.y1f_c00003{bottom:221.779350px;}
.y1e_c00003{bottom:245.370600px;}
.y1d_c00003{bottom:269.741010px;}
.y1c_c00003{bottom:296.750730px;}
.y1b_c00003{bottom:323.760450px;}
.y1a_c00003{bottom:351.669450px;}
.y19_c00003{bottom:381.990450px;}
.y18_c00003{bottom:413.130450px;}
.y17_c00003{bottom:443.730450px;}
.y16_c00003{bottom:468.013440px;}
.y15_c00003{bottom:505.106130px;}
.y14_c00003{bottom:542.264880px;}
.y13_c00003{bottom:579.357570px;}
.y12_c00003{bottom:616.516320px;}
.y11_c00003{bottom:653.609010px;}
.y10_c00003{bottom:690.767760px;}
.yf_c00003{bottom:727.860450px;}
.ye_c00003{bottom:761.787660px;}
.yd_c00003{bottom:785.357940px;}
.yc_c00003{bottom:818.029200px;}
.yb_c00003{bottom:841.620450px;}
.ya_c00003{bottom:866.910450px;}
.y9_c00003{bottom:897.231450px;}
.y8_c00003{bottom:927.660450px;}
.y7_c00003{bottom:959.621700px;}
.y6_c00003{bottom:996.780450px;}
.y5_c00003{bottom:1032.240450px;}
.y4_c00003{bottom:1063.388010px;}
.y3_c00003{bottom:1097.134230px;}
.y2_c00003{bottom:1130.880450px;}
.h1_c00003{height:47.988281px;}
.h7_c00003{height:60.257812px;}
.h5_c00003{height:70.200352px;}
.h6_c00003{height:70.282266px;}
.h9_c00003{height:80.538047px;}
.h3_c00003{height:90.492188px;}
.h2_c00003{height:100.329258px;}
.h8_c00003{height:100.446328px;}
.h4_c00003{height:110.702109px;}
.h0_c00003{height:1263.000000px;}
.w1_c00003{width:892.500000px;}
.w0_c00003{width:892.830000px;}
.x0_c00003{left:0.000000px;}
.x2_c00003{left:127.620000px;}
.x7_c00003{left:137.329200px;}
.x4_c00003{left:212.318010px;}
.x8_c00003{left:250.556040px;}
.xc_c00003{left:259.746840px;}
.x3_c00003{left:265.131000px;}
.xa_c00003{left:266.490000px;}
.x6_c00003{left:301.587390px;}
.x5_c00003{left:355.962510px;}
.x9_c00003{left:369.794340px;}
.xe_c00003{left:371.878740px;}
.xd_c00003{left:374.479020px;}
.xb_c00003{left:384.030000px;}
.x1_c00003{left:446.490000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls3_c00003{letter-spacing:-0.070464pt;}
.ls4_c00003{letter-spacing:-0.058720pt;}
.ls8_c00003{letter-spacing:-0.042720pt;}
.ls5_c00003{letter-spacing:-0.035232pt;}
.ls7_c00003{letter-spacing:-0.034176pt;}
.ls2_c00003{letter-spacing:-0.019200pt;}
.ls1_c00003{letter-spacing:0.000000pt;}
.lsa_c00003{letter-spacing:0.037280pt;}
.ls6_c00003{letter-spacing:0.042624pt;}
.ls0_c00003{letter-spacing:0.052192pt;}
.ls9_c00003{letter-spacing:0.089472pt;}
.wsa_c00003{word-spacing:-0.171488pt;}
.ws3_c00003{word-spacing:-0.134208pt;}
.wsb_c00003{word-spacing:-0.119296pt;}
.ws6_c00003{word-spacing:-0.070464pt;}
.ws8_c00003{word-spacing:-0.042720pt;}
.ws9_c00003{word-spacing:-0.034176pt;}
.ws2_c00003{word-spacing:-0.029824pt;}
.ws7_c00003{word-spacing:-0.021312pt;}
.ws0_c00003{word-spacing:0.000000pt;}
.ws1_c00003{word-spacing:0.019200pt;}
.ws5_c00003{word-spacing:0.035232pt;}
.ws4_c00003{word-spacing:0.152672pt;}
.fs0_c00003{font-size:64.000000pt;}
.fs4_c00003{font-size:74.560000pt;}
.fs5_c00003{font-size:85.440000pt;}
.fs2_c00003{font-size:96.000000pt;}
.fs1_c00003{font-size:106.560000pt;}
.fs3_c00003{font-size:117.440000pt;}
.y0_c00003{bottom:0.000000pt;}
.y1_c00003{bottom:50.987067pt;}
.y23_c00003{bottom:103.227067pt;}
.y22_c00003{bottom:131.787067pt;}
.y21_c00003{bottom:155.122640pt;}
.y20_c00003{bottom:176.092640pt;}
.y1f_c00003{bottom:197.137200pt;}
.y1e_c00003{bottom:218.107200pt;}
.y1d_c00003{bottom:239.769787pt;}
.y1c_c00003{bottom:263.778427pt;}
.y1b_c00003{bottom:287.787067pt;}
.y1a_c00003{bottom:312.595067pt;}
.y19_c00003{bottom:339.547067pt;}
.y18_c00003{bottom:367.227067pt;}
.y17_c00003{bottom:394.427067pt;}
.y16_c00003{bottom:416.011947pt;}
.y15_c00003{bottom:448.983227pt;}
.y14_c00003{bottom:482.013227pt;}
.y13_c00003{bottom:514.984507pt;}
.y12_c00003{bottom:548.014507pt;}
.y11_c00003{bottom:580.985787pt;}
.y10_c00003{bottom:614.015787pt;}
.yf_c00003{bottom:646.987067pt;}
.ye_c00003{bottom:677.144587pt;}
.yd_c00003{bottom:698.095947pt;}
.yc_c00003{bottom:727.137067pt;}
.yb_c00003{bottom:748.107067pt;}
.ya_c00003{bottom:770.587067pt;}
.y9_c00003{bottom:797.539067pt;}
.y8_c00003{bottom:824.587067pt;}
.y7_c00003{bottom:852.997067pt;}
.y6_c00003{bottom:886.027067pt;}
.y5_c00003{bottom:917.547067pt;}
.y4_c00003{bottom:945.233787pt;}
.y3_c00003{bottom:975.230427pt;}
.y2_c00003{bottom:1005.227067pt;}
.h1_c00003{height:42.656250pt;}
.h7_c00003{height:53.562500pt;}
.h5_c00003{height:62.400312pt;}
.h6_c00003{height:62.473125pt;}
.h9_c00003{height:71.589375pt;}
.h3_c00003{height:80.437500pt;}
.h2_c00003{height:89.181562pt;}
.h8_c00003{height:89.285625pt;}
.h4_c00003{height:98.401875pt;}
.h0_c00003{height:1122.666667pt;}
.w1_c00003{width:793.333333pt;}
.w0_c00003{width:793.626667pt;}
.x0_c00003{left:0.000000pt;}
.x2_c00003{left:113.440000pt;}
.x7_c00003{left:122.070400pt;}
.x4_c00003{left:188.727120pt;}
.x8_c00003{left:222.716480pt;}
.xc_c00003{left:230.886080pt;}
.x3_c00003{left:235.672000pt;}
.xa_c00003{left:236.880000pt;}
.x6_c00003{left:268.077680pt;}
.x5_c00003{left:316.411120pt;}
.x9_c00003{left:328.706080pt;}
.xe_c00003{left:330.558880pt;}
.xd_c00003{left:332.870240pt;}
.xb_c00003{left:341.360000pt;}
.x1_c00003{left:396.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_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_8213f67d32d867be6bd881cc.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_dc54d80c8b2beded90f97741.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00004{vertical-align:30.000000px;}
.ls0_c00004{letter-spacing:0.000000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00004{word-spacing:-15.000000px;}
.ws1_c00004{word-spacing:0.000000px;}
._1_c00004{margin-left:-4.800000px;}
._2_c00004{margin-left:-2.580000px;}
._0_c00004{margin-left:-1.080000px;}
.fc0_c00004{color:rgb(35,31,32);}
.fs0_c00004{font-size:60.000000px;}
.y0_c00004{bottom:0.000000px;}
.yc_c00004{bottom:141.494250px;}
.yb_c00004{bottom:159.494250px;}
.ya_c00004{bottom:195.494250px;}
.y9_c00004{bottom:213.494250px;}
.y8_c00004{bottom:231.494250px;}
.y7_c00004{bottom:249.494250px;}
.y6_c00004{bottom:267.494250px;}
.y5_c00004{bottom:285.494250px;}
.y4_c00004{bottom:303.494250px;}
.y3_c00004{bottom:488.399250px;}
.y2_c00004{bottom:521.954250px;}
.y1_c00004{bottom:558.374700px;}
.h2_c00004{height:41.660156px;}
.h4_c00004{height:53.466797px;}
.h3_c00004{height:71.660156px;}
.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;}
.x1_c00004{left:140.740200px;}
.x2_c00004{left:166.660650px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.v1_c00004{vertical-align:26.666667pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ws0_c00004{word-spacing:-13.333333pt;}
.ws1_c00004{word-spacing:0.000000pt;}
._1_c00004{margin-left:-4.266667pt;}
._2_c00004{margin-left:-2.293333pt;}
._0_c00004{margin-left:-0.960000pt;}
.fs0_c00004{font-size:53.333333pt;}
.y0_c00004{bottom:0.000000pt;}
.yc_c00004{bottom:125.772667pt;}
.yb_c00004{bottom:141.772667pt;}
.ya_c00004{bottom:173.772667pt;}
.y9_c00004{bottom:189.772667pt;}
.y8_c00004{bottom:205.772667pt;}
.y7_c00004{bottom:221.772667pt;}
.y6_c00004{bottom:237.772667pt;}
.y5_c00004{bottom:253.772667pt;}
.y4_c00004{bottom:269.772667pt;}
.y3_c00004{bottom:434.132667pt;}
.y2_c00004{bottom:463.959333pt;}
.y1_c00004{bottom:496.333067pt;}
.h2_c00004{height:37.031250pt;}
.h4_c00004{height:47.526042pt;}
.h3_c00004{height:63.697917pt;}
.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;}
.x1_c00004{left:125.102400pt;}
.x2_c00004{left:148.142800pt;}
}





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

.ir_c00005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00005;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_30772873fb1c1ab00a0f8e04.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_c7980fbb680a8e5abb333ab3.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00005;src:url('chunks/assets/font_9f1531c69e049fbf39647299.woff2')format("woff");}.ff4_c00005{font-family:ff4_c00005;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls2_c00005{letter-spacing:-0.031248px;}
.ls1_c00005{letter-spacing:-0.023436px;}
.ls0_c00005{letter-spacing:0.000000px;}
.sc__c00005{text-shadow:none;}
.sc0_c00005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
.sc0_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00005{word-spacing:-0.070308px;}
.ws2_c00005{word-spacing:-0.054684px;}
.ws0_c00005{word-spacing:0.000000px;}
.fc0_c00005{color:rgb(0,0,0);}
.fs0_c00005{font-size:72.000000px;}
.fs2_c00005{font-size:78.120000px;}
.fs1_c00005{font-size:108.000000px;}
.y0_c00005{bottom:0.000000px;}
.y1_c00005{bottom:57.360450px;}
.y26_c00005{bottom:118.650450px;}
.y25_c00005{bottom:138.900450px;}
.y24_c00005{bottom:159.150450px;}
.y23_c00005{bottom:181.731450px;}
.y22_c00005{bottom:212.160450px;}
.y21_c00005{bottom:242.481450px;}
.y20_c00005{bottom:272.910450px;}
.y1f_c00005{bottom:303.231450px;}
.y1e_c00005{bottom:333.660450px;}
.y1d_c00005{bottom:363.981450px;}
.y1c_c00005{bottom:394.410450px;}
.y1b_c00005{bottom:424.731450px;}
.y1a_c00005{bottom:455.160450px;}
.y19_c00005{bottom:485.481450px;}
.y18_c00005{bottom:515.910450px;}
.y17_c00005{bottom:546.231450px;}
.y16_c00005{bottom:576.660450px;}
.y15_c00005{bottom:606.981450px;}
.y14_c00005{bottom:637.410450px;}
.y13_c00005{bottom:667.731450px;}
.y12_c00005{bottom:698.160450px;}
.y11_c00005{bottom:728.481450px;}
.y10_c00005{bottom:758.910450px;}
.yf_c00005{bottom:789.231450px;}
.ye_c00005{bottom:819.660450px;}
.yd_c00005{bottom:849.981450px;}
.yc_c00005{bottom:880.410450px;}
.yb_c00005{bottom:908.789970px;}
.ya_c00005{bottom:930.741690px;}
.y9_c00005{bottom:952.693410px;}
.y8_c00005{bottom:974.645130px;}
.y7_c00005{bottom:996.518730px;}
.y6_c00005{bottom:1018.470450px;}
.y5_c00005{bottom:1042.419450px;}
.y4_c00005{bottom:1072.740450px;}
.y3_c00005{bottom:1103.169450px;}
.y2_c00005{bottom:1133.490450px;}
.h1_c00005{height:47.988281px;}
.h6_c00005{height:60.328125px;}
.h3_c00005{height:65.379727px;}
.h5_c00005{height:65.456016px;}
.h4_c00005{height:66.066328px;}
.h2_c00005{height:90.492188px;}
.h0_c00005{height:1263.000000px;}
.w1_c00005{width:892.500000px;}
.w0_c00005{width:892.830000px;}
.x0_c00005{left:0.000000px;}
.x6_c00005{left:127.620000px;}
.x2_c00005{left:154.620000px;}
.x1_c00005{left:446.490000px;}
.x4_c00005{left:612.998820px;}
.x5_c00005{left:625.498020px;}
.x3_c00005{left:765.441000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls2_c00005{letter-spacing:-0.027776pt;}
.ls1_c00005{letter-spacing:-0.020832pt;}
.ls0_c00005{letter-spacing:0.000000pt;}
.ws1_c00005{word-spacing:-0.062496pt;}
.ws2_c00005{word-spacing:-0.048608pt;}
.ws0_c00005{word-spacing:0.000000pt;}
.fs0_c00005{font-size:64.000000pt;}
.fs2_c00005{font-size:69.440000pt;}
.fs1_c00005{font-size:96.000000pt;}
.y0_c00005{bottom:0.000000pt;}
.y1_c00005{bottom:50.987067pt;}
.y26_c00005{bottom:105.467067pt;}
.y25_c00005{bottom:123.467067pt;}
.y24_c00005{bottom:141.467067pt;}
.y23_c00005{bottom:161.539067pt;}
.y22_c00005{bottom:188.587067pt;}
.y21_c00005{bottom:215.539067pt;}
.y20_c00005{bottom:242.587067pt;}
.y1f_c00005{bottom:269.539067pt;}
.y1e_c00005{bottom:296.587067pt;}
.y1d_c00005{bottom:323.539067pt;}
.y1c_c00005{bottom:350.587067pt;}
.y1b_c00005{bottom:377.539067pt;}
.y1a_c00005{bottom:404.587067pt;}
.y19_c00005{bottom:431.539067pt;}
.y18_c00005{bottom:458.587067pt;}
.y17_c00005{bottom:485.539067pt;}
.y16_c00005{bottom:512.587067pt;}
.y15_c00005{bottom:539.539067pt;}
.y14_c00005{bottom:566.587067pt;}
.y13_c00005{bottom:593.539067pt;}
.y12_c00005{bottom:620.587067pt;}
.y11_c00005{bottom:647.539067pt;}
.y10_c00005{bottom:674.587067pt;}
.yf_c00005{bottom:701.539067pt;}
.ye_c00005{bottom:728.587067pt;}
.yd_c00005{bottom:755.539067pt;}
.yc_c00005{bottom:782.587067pt;}
.yb_c00005{bottom:807.813307pt;}
.ya_c00005{bottom:827.325947pt;}
.y9_c00005{bottom:846.838587pt;}
.y8_c00005{bottom:866.351227pt;}
.y7_c00005{bottom:885.794427pt;}
.y6_c00005{bottom:905.307067pt;}
.y5_c00005{bottom:926.595067pt;}
.y4_c00005{bottom:953.547067pt;}
.y3_c00005{bottom:980.595067pt;}
.y2_c00005{bottom:1007.547067pt;}
.h1_c00005{height:42.656250pt;}
.h6_c00005{height:53.625000pt;}
.h3_c00005{height:58.115313pt;}
.h5_c00005{height:58.183125pt;}
.h4_c00005{height:58.725625pt;}
.h2_c00005{height:80.437500pt;}
.h0_c00005{height:1122.666667pt;}
.w1_c00005{width:793.333333pt;}
.w0_c00005{width:793.626667pt;}
.x0_c00005{left:0.000000pt;}
.x6_c00005{left:113.440000pt;}
.x2_c00005{left:137.440000pt;}
.x1_c00005{left:396.880000pt;}
.x4_c00005{left:544.887840pt;}
.x5_c00005{left:555.998240pt;}
.x3_c00005{left:680.392000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30772873fb1c1ab00a0f8e04.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_6f22dc3479550cd77977868a.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.102051;font-style: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;}
.ls0_c00006{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:72.000000px;}
.fs1_c00006{font-size:83.880000px;}
.y0_c00006{bottom:0.000000px;}
.y3_c00006{bottom:1098.120450px;}
.y2_c00006{bottom:1120.980450px;}
.y1_c00006{bottom:1141.230450px;}
.h1_c00006{height:60.328125px;}
.h2_c00006{height:60.890625px;}
.h3_c00006{height:70.282266px;}
.h0_c00006{height:1263.000000px;}
.w1_c00006{width:892.500000px;}
.w0_c00006{width:892.830000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:127.620000px;}
.x2_c00006{left:765.450000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ws0_c00006{word-spacing:0.000000pt;}
.fs0_c00006{font-size:64.000000pt;}
.fs1_c00006{font-size:74.560000pt;}
.y0_c00006{bottom:0.000000pt;}
.y3_c00006{bottom:976.107067pt;}
.y2_c00006{bottom:996.427067pt;}
.y1_c00006{bottom:1014.427067pt;}
.h1_c00006{height:53.625000pt;}
.h2_c00006{height:54.125000pt;}
.h3_c00006{height:62.473125pt;}
.h0_c00006{height:1122.666667pt;}
.w1_c00006{width:793.333333pt;}
.w0_c00006{width:793.626667pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:113.440000pt;}
.x2_c00006{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_c00007 {
    display:none;
  }
  .loading-indicator_c00007.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00007 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00007 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00007" -> "#page-container .classname_c00007")
 */
.pf_c00007 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00007 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00007 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00007 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00007 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00007 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00007 {overflow:visible;}
  }
}
.c_c00007 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00007 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00007:after { /* webkit #35443 */
  content: '';
}
.t_c00007:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00007 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00007 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00007 { /* info for Javascript */
  display:none;
}
.l_c00007 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00007 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00007 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00007:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00007;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_30772873fb1c1ab00a0f8e04.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_440d2ea5c15cd4e2249fcf3d.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls2_c00007{letter-spacing:-0.043200px;}
.ls1_c00007{letter-spacing:-0.014400px;}
.ls4_c00007{letter-spacing:-0.007200px;}
.ls0_c00007{letter-spacing:0.000000px;}
.ls5_c00007{letter-spacing:0.007200px;}
.ls3_c00007{letter-spacing:0.014400px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00007{word-spacing:-0.007200px;}
.ws0_c00007{word-spacing:0.000000px;}
.ws1_c00007{word-spacing:0.014400px;}
.ws3_c00007{word-spacing:12.528000px;}
.ws2_c00007{word-spacing:12.693600px;}
.ws4_c00007{word-spacing:13.687200px;}
._0_c00007{width:1.080000px;}
.fc0_c00007{color:rgb(0,0,0);}
.fs0_c00007{font-size:72.000000px;}
.fs1_c00007{font-size:83.880000px;}
.y0_c00007{bottom:0.000000px;}
.y1_c00007{bottom:57.360450px;}
.y34_c00007{bottom:125.400450px;}
.y33_c00007{bottom:145.650450px;}
.y32_c00007{bottom:165.900450px;}
.y31_c00007{bottom:186.150450px;}
.y30_c00007{bottom:206.400450px;}
.y2f_c00007{bottom:226.650450px;}
.y2e_c00007{bottom:246.900450px;}
.y2d_c00007{bottom:267.150450px;}
.y2c_c00007{bottom:287.400450px;}
.y2b_c00007{bottom:307.650450px;}
.y2a_c00007{bottom:327.900450px;}
.y29_c00007{bottom:348.150450px;}
.y28_c00007{bottom:368.400450px;}
.y27_c00007{bottom:388.650450px;}
.y26_c00007{bottom:408.900450px;}
.y25_c00007{bottom:429.150450px;}
.y24_c00007{bottom:449.400450px;}
.y23_c00007{bottom:469.650450px;}
.y22_c00007{bottom:489.900450px;}
.y21_c00007{bottom:510.150450px;}
.y20_c00007{bottom:530.400450px;}
.y1f_c00007{bottom:550.650450px;}
.y1e_c00007{bottom:570.900450px;}
.y1d_c00007{bottom:591.150450px;}
.y1c_c00007{bottom:611.400450px;}
.y1b_c00007{bottom:631.650450px;}
.y1a_c00007{bottom:651.900450px;}
.y19_c00007{bottom:672.150450px;}
.y18_c00007{bottom:692.400450px;}
.y17_c00007{bottom:712.650450px;}
.y16_c00007{bottom:732.900450px;}
.y15_c00007{bottom:753.150450px;}
.y14_c00007{bottom:773.400450px;}
.y13_c00007{bottom:793.650450px;}
.y12_c00007{bottom:813.900450px;}
.y11_c00007{bottom:834.150450px;}
.y10_c00007{bottom:854.400450px;}
.yf_c00007{bottom:874.650450px;}
.ye_c00007{bottom:894.900450px;}
.yd_c00007{bottom:915.150450px;}
.yc_c00007{bottom:935.400450px;}
.yb_c00007{bottom:955.650450px;}
.ya_c00007{bottom:975.900450px;}
.y9_c00007{bottom:996.150450px;}
.y8_c00007{bottom:1016.400450px;}
.y7_c00007{bottom:1036.650450px;}
.y6_c00007{bottom:1056.900450px;}
.y5_c00007{bottom:1077.150450px;}
.y4_c00007{bottom:1097.400450px;}
.y3_c00007{bottom:1117.650450px;}
.y2_c00007{bottom:1138.620450px;}
.h1_c00007{height:47.988281px;}
.h4_c00007{height:60.257812px;}
.h3_c00007{height:60.328125px;}
.h2_c00007{height:70.282266px;}
.h0_c00007{height:1263.000000px;}
.w1_c00007{width:892.500000px;}
.w0_c00007{width:892.830000px;}
.x0_c00007{left:0.000000px;}
.x3_c00007{left:127.620000px;}
.x1_c00007{left:446.490000px;}
.x2_c00007{left:765.450000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls2_c00007{letter-spacing:-0.038400pt;}
.ls1_c00007{letter-spacing:-0.012800pt;}
.ls4_c00007{letter-spacing:-0.006400pt;}
.ls0_c00007{letter-spacing:0.000000pt;}
.ls5_c00007{letter-spacing:0.006400pt;}
.ls3_c00007{letter-spacing:0.012800pt;}
.ws5_c00007{word-spacing:-0.006400pt;}
.ws0_c00007{word-spacing:0.000000pt;}
.ws1_c00007{word-spacing:0.012800pt;}
.ws3_c00007{word-spacing:11.136000pt;}
.ws2_c00007{word-spacing:11.283200pt;}
.ws4_c00007{word-spacing:12.166400pt;}
._0_c00007{width:0.960000pt;}
.fs0_c00007{font-size:64.000000pt;}
.fs1_c00007{font-size:74.560000pt;}
.y0_c00007{bottom:0.000000pt;}
.y1_c00007{bottom:50.987067pt;}
.y34_c00007{bottom:111.467067pt;}
.y33_c00007{bottom:129.467067pt;}
.y32_c00007{bottom:147.467067pt;}
.y31_c00007{bottom:165.467067pt;}
.y30_c00007{bottom:183.467067pt;}
.y2f_c00007{bottom:201.467067pt;}
.y2e_c00007{bottom:219.467067pt;}
.y2d_c00007{bottom:237.467067pt;}
.y2c_c00007{bottom:255.467067pt;}
.y2b_c00007{bottom:273.467067pt;}
.y2a_c00007{bottom:291.467067pt;}
.y29_c00007{bottom:309.467067pt;}
.y28_c00007{bottom:327.467067pt;}
.y27_c00007{bottom:345.467067pt;}
.y26_c00007{bottom:363.467067pt;}
.y25_c00007{bottom:381.467067pt;}
.y24_c00007{bottom:399.467067pt;}
.y23_c00007{bottom:417.467067pt;}
.y22_c00007{bottom:435.467067pt;}
.y21_c00007{bottom:453.467067pt;}
.y20_c00007{bottom:471.467067pt;}
.y1f_c00007{bottom:489.467067pt;}
.y1e_c00007{bottom:507.467067pt;}
.y1d_c00007{bottom:525.467067pt;}
.y1c_c00007{bottom:543.467067pt;}
.y1b_c00007{bottom:561.467067pt;}
.y1a_c00007{bottom:579.467067pt;}
.y19_c00007{bottom:597.467067pt;}
.y18_c00007{bottom:615.467067pt;}
.y17_c00007{bottom:633.467067pt;}
.y16_c00007{bottom:651.467067pt;}
.y15_c00007{bottom:669.467067pt;}
.y14_c00007{bottom:687.467067pt;}
.y13_c00007{bottom:705.467067pt;}
.y12_c00007{bottom:723.467067pt;}
.y11_c00007{bottom:741.467067pt;}
.y10_c00007{bottom:759.467067pt;}
.yf_c00007{bottom:777.467067pt;}
.ye_c00007{bottom:795.467067pt;}
.yd_c00007{bottom:813.467067pt;}
.yc_c00007{bottom:831.467067pt;}
.yb_c00007{bottom:849.467067pt;}
.ya_c00007{bottom:867.467067pt;}
.y9_c00007{bottom:885.467067pt;}
.y8_c00007{bottom:903.467067pt;}
.y7_c00007{bottom:921.467067pt;}
.y6_c00007{bottom:939.467067pt;}
.y5_c00007{bottom:957.467067pt;}
.y4_c00007{bottom:975.467067pt;}
.y3_c00007{bottom:993.467067pt;}
.y2_c00007{bottom:1012.107067pt;}
.h1_c00007{height:42.656250pt;}
.h4_c00007{height:53.562500pt;}
.h3_c00007{height:53.625000pt;}
.h2_c00007{height:62.473125pt;}
.h0_c00007{height:1122.666667pt;}
.w1_c00007{width:793.333333pt;}
.w0_c00007{width:793.626667pt;}
.x0_c00007{left:0.000000pt;}
.x3_c00007{left:113.440000pt;}
.x1_c00007{left:396.880000pt;}
.x2_c00007{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_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:1263.000000px;}
.w1_c00008{width:892.500000px;}
.w0_c00008{width:892.830000px;}
.x0_c00008{left:0.000000px;}
@media print{
.y0_c00008{bottom:0.000000pt;}
.h0_c00008{height:1122.666667pt;}
.w1_c00008{width:793.333333pt;}
.w0_c00008{width:793.626667pt;}
.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;}
@font-face{font-family:ff1_c00009;src:url('chunks/assets/font_cab9648fed7e72202c2c96e7.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_3325d5a4b240e0e2c515e7a5.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls6_c00009{letter-spacing:-0.028800px;}
.ls3_c00009{letter-spacing:-0.021600px;}
.ls4_c00009{letter-spacing:-0.014400px;}
.ls5_c00009{letter-spacing:-0.007200px;}
.ls1_c00009{letter-spacing:0.000000px;}
.ls0_c00009{letter-spacing:0.007200px;}
.ls7_c00009{letter-spacing:0.021600px;}
.ls2_c00009{letter-spacing:0.058716px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00009{word-spacing:0.000000px;}
.ws12_c00009{word-spacing:0.014400px;}
.wsf_c00009{word-spacing:0.777600px;}
.wse_c00009{word-spacing:0.835200px;}
.ws7_c00009{word-spacing:1.432800px;}
.ws6_c00009{word-spacing:1.504800px;}
.ws8_c00009{word-spacing:1.648800px;}
.ws1_c00009{word-spacing:5.781600px;}
.wsb_c00009{word-spacing:7.927200px;}
.ws5_c00009{word-spacing:8.222400px;}
.ws4_c00009{word-spacing:8.344800px;}
.ws11_c00009{word-spacing:10.130400px;}
.ws10_c00009{word-spacing:10.137600px;}
.wsc_c00009{word-spacing:11.498400px;}
.wsd_c00009{word-spacing:11.599200px;}
.ws3_c00009{word-spacing:18.000000px;}
.ws2_c00009{word-spacing:18.064800px;}
.ws9_c00009{word-spacing:29.138400px;}
.wsa_c00009{word-spacing:29.152800px;}
._0_c00009{width:1.101600px;}
.fc0_c00009{color:rgb(0,0,0);}
.fs1_c00009{font-size:72.000000px;}
.fs0_c00009{font-size:83.880000px;}
.y0_c00009{bottom:0.000000px;}
.y14_c00009{bottom:385.050450px;}
.y13_c00009{bottom:428.520450px;}
.y12_c00009{bottom:471.630450px;}
.y11_c00009{bottom:516.090450px;}
.y10_c00009{bottom:550.560450px;}
.yf_c00009{bottom:584.940450px;}
.ye_c00009{bottom:619.410450px;}
.yd_c00009{bottom:653.790450px;}
.yc_c00009{bottom:688.260450px;}
.yb_c00009{bottom:722.640450px;}
.ya_c00009{bottom:757.110450px;}
.y9_c00009{bottom:791.490450px;}
.y8_c00009{bottom:825.960450px;}
.y7_c00009{bottom:846.210450px;}
.y6_c00009{bottom:892.762050px;}
.y5_c00009{bottom:941.894760px;}
.y4_c00009{bottom:991.132320px;}
.y3_c00009{bottom:1040.265030px;}
.y2_c00009{bottom:1089.397740px;}
.y1_c00009{bottom:1138.530450px;}
.h3_c00009{height:47.988281px;}
.h2_c00009{height:60.257812px;}
.h1_c00009{height:70.282266px;}
.h0_c00009{height:1263.000000px;}
.w1_c00009{width:892.500000px;}
.w0_c00009{width:892.830000px;}
.x0_c00009{left:0.000000px;}
.x1_c00009{left:127.620000px;}
.x2_c00009{left:180.810000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls6_c00009{letter-spacing:-0.025600pt;}
.ls3_c00009{letter-spacing:-0.019200pt;}
.ls4_c00009{letter-spacing:-0.012800pt;}
.ls5_c00009{letter-spacing:-0.006400pt;}
.ls1_c00009{letter-spacing:0.000000pt;}
.ls0_c00009{letter-spacing:0.006400pt;}
.ls7_c00009{letter-spacing:0.019200pt;}
.ls2_c00009{letter-spacing:0.052192pt;}
.ws0_c00009{word-spacing:0.000000pt;}
.ws12_c00009{word-spacing:0.012800pt;}
.wsf_c00009{word-spacing:0.691200pt;}
.wse_c00009{word-spacing:0.742400pt;}
.ws7_c00009{word-spacing:1.273600pt;}
.ws6_c00009{word-spacing:1.337600pt;}
.ws8_c00009{word-spacing:1.465600pt;}
.ws1_c00009{word-spacing:5.139200pt;}
.wsb_c00009{word-spacing:7.046400pt;}
.ws5_c00009{word-spacing:7.308800pt;}
.ws4_c00009{word-spacing:7.417600pt;}
.ws11_c00009{word-spacing:9.004800pt;}
.ws10_c00009{word-spacing:9.011200pt;}
.wsc_c00009{word-spacing:10.220800pt;}
.wsd_c00009{word-spacing:10.310400pt;}
.ws3_c00009{word-spacing:16.000000pt;}
.ws2_c00009{word-spacing:16.057600pt;}
.ws9_c00009{word-spacing:25.900800pt;}
.wsa_c00009{word-spacing:25.913600pt;}
._0_c00009{width:0.979200pt;}
.fs1_c00009{font-size:64.000000pt;}
.fs0_c00009{font-size:74.560000pt;}
.y0_c00009{bottom:0.000000pt;}
.y14_c00009{bottom:342.267067pt;}
.y13_c00009{bottom:380.907067pt;}
.y12_c00009{bottom:419.227067pt;}
.y11_c00009{bottom:458.747067pt;}
.y10_c00009{bottom:489.387067pt;}
.yf_c00009{bottom:519.947067pt;}
.ye_c00009{bottom:550.587067pt;}
.yd_c00009{bottom:581.147067pt;}
.yc_c00009{bottom:611.787067pt;}
.yb_c00009{bottom:642.347067pt;}
.ya_c00009{bottom:672.987067pt;}
.y9_c00009{bottom:703.547067pt;}
.y8_c00009{bottom:734.187067pt;}
.y7_c00009{bottom:752.187067pt;}
.y6_c00009{bottom:793.566267pt;}
.y5_c00009{bottom:837.239787pt;}
.y4_c00009{bottom:881.006507pt;}
.y3_c00009{bottom:924.680027pt;}
.y2_c00009{bottom:968.353547pt;}
.y1_c00009{bottom:1012.027067pt;}
.h3_c00009{height:42.656250pt;}
.h2_c00009{height:53.562500pt;}
.h1_c00009{height:62.473125pt;}
.h0_c00009{height:1122.666667pt;}
.w1_c00009{width:793.333333pt;}
.w0_c00009{width:793.626667pt;}
.x0_c00009{left:0.000000pt;}
.x1_c00009{left:113.440000pt;}
.x2_c00009{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_c00010 {
    display:none;
  }
  .loading-indicator_c00010.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00010 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00010 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00010" -> "#page-container .classname_c00010")
 */
.pf_c00010 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00010 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00010 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00010 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00010 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00010 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00010 {overflow:visible;}
  }
}
.c_c00010 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00010 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00010:after { /* webkit #35443 */
  content: '';
}
.t_c00010:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00010 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00010 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00010 { /* info for Javascript */
  display:none;
}
.l_c00010 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00010 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00010 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00010:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00010;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_b7844a6828a083ddb8ca322c.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;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_c00010;src:url('chunks/assets/font_c7980fbb680a8e5abb333ab3.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00010;src:url('chunks/assets/font_30772873fb1c1ab00a0f8e04.woff2')format("woff");}.ff4_c00010{font-family:ff4_c00010;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.v1_c00010{vertical-align:15.840000px;}
.ls2_c00010{letter-spacing:0.000000px;}
.ls1_c00010{letter-spacing:0.118800px;}
.ls0_c00010{letter-spacing:1242.360000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00010{word-spacing:0.000000px;}
.fc1_c00010{color:rgb(255,255,255);}
.fc0_c00010{color:rgb(0,0,0);}
.fs1_c00010{font-size:54.000000px;}
.fs0_c00010{font-size:72.000000px;}
.fs3_c00010{font-size:96.120000px;}
.fs2_c00010{font-size:108.000000px;}
.y0_c00010{bottom:0.000000px;}
.y1_c00010{bottom:57.450450px;}
.y8_c00010{bottom:915.510450px;}
.y7_c00010{bottom:946.290600px;}
.y6_c00010{bottom:1010.100450px;}
.y5_c00010{bottom:1047.090450px;}
.y4_c00010{bottom:1067.340450px;}
.y3_c00010{bottom:1090.020450px;}
.y2_c00010{bottom:1141.140450px;}
.h2_c00010{height:60.257812px;}
.h1_c00010{height:72.160312px;}
.h4_c00010{height:80.538047px;}
.h3_c00010{height:90.492188px;}
.h0_c00010{height:1263.000000px;}
.w1_c00010{width:892.500000px;}
.w0_c00010{width:892.830000px;}
.x0_c00010{left:0.000000px;}
.x1_c00010{left:127.620000px;}
.x3_c00010{left:141.120000px;}
.x2_c00010{left:180.810000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.v1_c00010{vertical-align:14.080000pt;}
.ls2_c00010{letter-spacing:0.000000pt;}
.ls1_c00010{letter-spacing:0.105600pt;}
.ls0_c00010{letter-spacing:1104.320000pt;}
.ws0_c00010{word-spacing:0.000000pt;}
.fs1_c00010{font-size:48.000000pt;}
.fs0_c00010{font-size:64.000000pt;}
.fs3_c00010{font-size:85.440000pt;}
.fs2_c00010{font-size:96.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y1_c00010{bottom:51.067067pt;}
.y8_c00010{bottom:813.787067pt;}
.y7_c00010{bottom:841.147200pt;}
.y6_c00010{bottom:897.867067pt;}
.y5_c00010{bottom:930.747067pt;}
.y4_c00010{bottom:948.747067pt;}
.y3_c00010{bottom:968.907067pt;}
.y2_c00010{bottom:1014.347067pt;}
.h2_c00010{height:53.562500pt;}
.h1_c00010{height:64.142500pt;}
.h4_c00010{height:71.589375pt;}
.h3_c00010{height:80.437500pt;}
.h0_c00010{height:1122.666667pt;}
.w1_c00010{width:793.333333pt;}
.w0_c00010{width:793.626667pt;}
.x0_c00010{left:0.000000pt;}
.x1_c00010{left:113.440000pt;}
.x3_c00010{left:125.440000pt;}
.x2_c00010{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_c00011 {
    display:none;
  }
  .loading-indicator_c00011.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00011 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00011 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00011" -> "#page-container .classname_c00011")
 */
.pf_c00011 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00011 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00011 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00011 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00011 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00011 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00011 {overflow:visible;}
  }
}
.c_c00011 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00011 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00011:after { /* webkit #35443 */
  content: '';
}
.t_c00011:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00011 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00011 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00011 { /* info for Javascript */
  display:none;
}
.l_c00011 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00011 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00011 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00011:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00011;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00011;src:url('chunks/assets/font_b7844a6828a083ddb8ca322c.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;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_c00011;src:url('chunks/assets/font_abf4351bd520a781935ace2c.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00011;src:url('chunks/assets/font_f92d998a6f66e122bc064817.woff2')format("woff");}.ff4_c00011{font-family:ff4_c00011;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00011;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00011{font-family:ff5_c00011;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.v1_c00011{vertical-align:15.840000px;}
.ls13_c00011{letter-spacing:-0.171864px;}
.ls15_c00011{letter-spacing:-0.164052px;}
.ls10_c00011{letter-spacing:-0.163404px;}
.ls12_c00011{letter-spacing:-0.156240px;}
.lsd_c00011{letter-spacing:-0.153792px;}
.ls1c_c00011{letter-spacing:-0.148428px;}
.lsf_c00011{letter-spacing:-0.144180px;}
.ls19_c00011{letter-spacing:-0.140616px;}
.ls17_c00011{letter-spacing:-0.132804px;}
.ls18_c00011{letter-spacing:-0.078120px;}
.ls21_c00011{letter-spacing:-0.070308px;}
.ls1f_c00011{letter-spacing:-0.067284px;}
.ls16_c00011{letter-spacing:-0.062496px;}
.ls14_c00011{letter-spacing:-0.054684px;}
.ls1b_c00011{letter-spacing:-0.046872px;}
.ls1a_c00011{letter-spacing:-0.039060px;}
.lse_c00011{letter-spacing:-0.038448px;}
.ls1d_c00011{letter-spacing:-0.028836px;}
.ls22_c00011{letter-spacing:-0.028800px;}
.ls11_c00011{letter-spacing:-0.015624px;}
.lsb_c00011{letter-spacing:0.000000px;}
.lsc_c00011{letter-spacing:0.014400px;}
.ls20_c00011{letter-spacing:0.023436px;}
.ls8_c00011{letter-spacing:0.043200px;}
.lsa_c00011{letter-spacing:0.064800px;}
.ls4_c00011{letter-spacing:0.072000px;}
.ls7_c00011{letter-spacing:0.079200px;}
.ls6_c00011{letter-spacing:0.086400px;}
.ls3_c00011{letter-spacing:0.093600px;}
.ls23_c00011{letter-spacing:13.046400px;}
.ls2_c00011{letter-spacing:16.200000px;}
.ls1e_c00011{letter-spacing:44.013348px;}
.ls9_c00011{letter-spacing:45.720000px;}
.ls1_c00011{letter-spacing:86.040000px;}
.ls5_c00011{letter-spacing:92.520000px;}
.ls0_c00011{letter-spacing:1231.200000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17_c00011{word-spacing:-31.046400px;}
.ws1_c00011{word-spacing:-23.885820px;}
.ws9_c00011{word-spacing:-19.553436px;}
.ws4_c00011{word-spacing:-19.397196px;}
.ws6_c00011{word-spacing:-19.389384px;}
.ws8_c00011{word-spacing:-19.373760px;}
.ws5_c00011{word-spacing:-19.365948px;}
.wsa_c00011{word-spacing:-18.093600px;}
.ws16_c00011{word-spacing:-18.043200px;}
.wsc_c00011{word-spacing:-17.971200px;}
.ws0_c00011{word-spacing:-6.862968px;}
.ws3_c00011{word-spacing:-6.390216px;}
.wsf_c00011{word-spacing:-5.192400px;}
.wse_c00011{word-spacing:-5.182800px;}
.ws15_c00011{word-spacing:-5.169600px;}
.ws13_c00011{word-spacing:-5.148000px;}
.ws19_c00011{word-spacing:-5.143200px;}
.wsd_c00011{word-spacing:-5.140800px;}
.ws10_c00011{word-spacing:-5.138400px;}
.wsb_c00011{word-spacing:-5.133600px;}
.ws14_c00011{word-spacing:-5.119200px;}
.ws18_c00011{word-spacing:-5.112000px;}
.ws12_c00011{word-spacing:-5.111400px;}
.ws11_c00011{word-spacing:-5.105400px;}
.ws7_c00011{word-spacing:-3.054492px;}
.ws2_c00011{word-spacing:-1.951236px;}
.ws1d_c00011{word-spacing:-0.257796px;}
.ws29_c00011{word-spacing:-0.171864px;}
.ws2e_c00011{word-spacing:-0.158400px;}
.ws23_c00011{word-spacing:-0.124992px;}
.ws2c_c00011{word-spacing:-0.086400px;}
.ws2d_c00011{word-spacing:-0.079200px;}
.ws26_c00011{word-spacing:-0.078120px;}
.ws2b_c00011{word-spacing:-0.072000px;}
.ws2f_c00011{word-spacing:-0.064800px;}
.ws25_c00011{word-spacing:-0.054684px;}
.ws24_c00011{word-spacing:-0.046872px;}
.ws21_c00011{word-spacing:-0.031248px;}
.ws2a_c00011{word-spacing:-0.023436px;}
.ws22_c00011{word-spacing:-0.015624px;}
.ws1b_c00011{word-spacing:-0.014400px;}
.ws1a_c00011{word-spacing:0.000000px;}
.ws1c_c00011{word-spacing:0.009612px;}
.ws1e_c00011{word-spacing:0.062496px;}
.ws20_c00011{word-spacing:0.070308px;}
.ws27_c00011{word-spacing:0.115344px;}
.ws28_c00011{word-spacing:0.153792px;}
.ws1f_c00011{word-spacing:0.328104px;}
._6_c00011{margin-left:-44.245908px;}
._7_c00011{margin-left:-43.200576px;}
._e_c00011{margin-left:-13.457616px;}
._d_c00011{margin-left:-12.269952px;}
._9_c00011{margin-left:-9.446400px;}
._3_c00011{margin-left:-2.160828px;}
._a_c00011{margin-left:-1.131408px;}
._1_c00011{width:1.699920px;}
._2_c00011{width:3.375216px;}
._0_c00011{width:5.382720px;}
._c_c00011{width:8.092800px;}
._5_c00011{width:10.332180px;}
._f_c00011{width:11.946480px;}
._4_c00011{width:13.155408px;}
._b_c00011{width:14.788800px;}
._8_c00011{width:19.597464px;}
.fc1_c00011{color:rgb(0,0,255);}
.fc0_c00011{color:rgb(0,0,0);}
.fs1_c00011{font-size:54.000000px;}
.fs0_c00011{font-size:72.000000px;}
.fs4_c00011{font-size:78.120000px;}
.fs3_c00011{font-size:96.120000px;}
.fs2_c00011{font-size:144.000000px;}
.y0_c00011{bottom:0.000000px;}
.y2_c00011{bottom:57.450450px;}
.y2a_c00011{bottom:113.340450px;}
.y29_c00011{bottom:143.850450px;}
.y28_c00011{bottom:164.100450px;}
.y27_c00011{bottom:184.350450px;}
.y26_c00011{bottom:204.600450px;}
.y25_c00011{bottom:224.850450px;}
.y24_c00011{bottom:245.100450px;}
.y23_c00011{bottom:265.350450px;}
.y22_c00011{bottom:285.600450px;}
.y21_c00011{bottom:305.850450px;}
.y20_c00011{bottom:326.100450px;}
.y1f_c00011{bottom:346.350450px;}
.y1e_c00011{bottom:366.600450px;}
.y1d_c00011{bottom:386.850450px;}
.y1c_c00011{bottom:407.100450px;}
.y1b_c00011{bottom:427.350450px;}
.y1a_c00011{bottom:447.600450px;}
.y19_c00011{bottom:467.850450px;}
.y18_c00011{bottom:488.100450px;}
.y17_c00011{bottom:508.350450px;}
.y16_c00011{bottom:528.600450px;}
.y15_c00011{bottom:548.850450px;}
.y14_c00011{bottom:569.100450px;}
.y13_c00011{bottom:589.350450px;}
.y12_c00011{bottom:609.600450px;}
.y11_c00011{bottom:629.850450px;}
.y10_c00011{bottom:650.550450px;}
.yf_c00011{bottom:682.580730px;}
.ye_c00011{bottom:709.590450px;}
.yd_c00011{bottom:771.510450px;}
.yc_c00011{bottom:793.380450px;}
.yb_c00011{bottom:815.340450px;}
.ya_c00011{bottom:837.300450px;}
.y9_c00011{bottom:859.260450px;}
.y8_c00011{bottom:881.130450px;}
.y7_c00011{bottom:913.170450px;}
.y6_c00011{bottom:976.170450px;}
.y5_c00011{bottom:1039.170450px;}
.y4_c00011{bottom:1100.640450px;}
.y3_c00011{bottom:1125.570450px;}
.y1_c00011{bottom:1193.250450px;}
.h1_c00011{height:47.988281px;}
.h4_c00011{height:60.257812px;}
.h6_c00011{height:65.379727px;}
.h7_c00011{height:65.456016px;}
.h2_c00011{height:72.160313px;}
.h5_c00011{height:80.538047px;}
.h3_c00011{height:120.656250px;}
.h0_c00011{height:1263.000000px;}
.w1_c00011{width:892.500000px;}
.w0_c00011{width:892.830000px;}
.x0_c00011{left:0.000000px;}
.x1_c00011{left:127.620000px;}
.x3_c00011{left:141.120000px;}
.x4_c00011{left:157.410000px;}
.x5_c00011{left:170.172450px;}
.x2_c00011{left:195.119730px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.v1_c00011{vertical-align:14.080000pt;}
.ls13_c00011{letter-spacing:-0.152768pt;}
.ls15_c00011{letter-spacing:-0.145824pt;}
.ls10_c00011{letter-spacing:-0.145248pt;}
.ls12_c00011{letter-spacing:-0.138880pt;}
.lsd_c00011{letter-spacing:-0.136704pt;}
.ls1c_c00011{letter-spacing:-0.131936pt;}
.lsf_c00011{letter-spacing:-0.128160pt;}
.ls19_c00011{letter-spacing:-0.124992pt;}
.ls17_c00011{letter-spacing:-0.118048pt;}
.ls18_c00011{letter-spacing:-0.069440pt;}
.ls21_c00011{letter-spacing:-0.062496pt;}
.ls1f_c00011{letter-spacing:-0.059808pt;}
.ls16_c00011{letter-spacing:-0.055552pt;}
.ls14_c00011{letter-spacing:-0.048608pt;}
.ls1b_c00011{letter-spacing:-0.041664pt;}
.ls1a_c00011{letter-spacing:-0.034720pt;}
.lse_c00011{letter-spacing:-0.034176pt;}
.ls1d_c00011{letter-spacing:-0.025632pt;}
.ls22_c00011{letter-spacing:-0.025600pt;}
.ls11_c00011{letter-spacing:-0.013888pt;}
.lsb_c00011{letter-spacing:0.000000pt;}
.lsc_c00011{letter-spacing:0.012800pt;}
.ls20_c00011{letter-spacing:0.020832pt;}
.ls8_c00011{letter-spacing:0.038400pt;}
.lsa_c00011{letter-spacing:0.057600pt;}
.ls4_c00011{letter-spacing:0.064000pt;}
.ls7_c00011{letter-spacing:0.070400pt;}
.ls6_c00011{letter-spacing:0.076800pt;}
.ls3_c00011{letter-spacing:0.083200pt;}
.ls23_c00011{letter-spacing:11.596800pt;}
.ls2_c00011{letter-spacing:14.400000pt;}
.ls1e_c00011{letter-spacing:39.122976pt;}
.ls9_c00011{letter-spacing:40.640000pt;}
.ls1_c00011{letter-spacing:76.480000pt;}
.ls5_c00011{letter-spacing:82.240000pt;}
.ls0_c00011{letter-spacing:1094.400000pt;}
.ws17_c00011{word-spacing:-27.596800pt;}
.ws1_c00011{word-spacing:-21.231840pt;}
.ws9_c00011{word-spacing:-17.380832pt;}
.ws4_c00011{word-spacing:-17.241952pt;}
.ws6_c00011{word-spacing:-17.235008pt;}
.ws8_c00011{word-spacing:-17.221120pt;}
.ws5_c00011{word-spacing:-17.214176pt;}
.wsa_c00011{word-spacing:-16.083200pt;}
.ws16_c00011{word-spacing:-16.038400pt;}
.wsc_c00011{word-spacing:-15.974400pt;}
.ws0_c00011{word-spacing:-6.100416pt;}
.ws3_c00011{word-spacing:-5.680192pt;}
.wsf_c00011{word-spacing:-4.615467pt;}
.wse_c00011{word-spacing:-4.606933pt;}
.ws15_c00011{word-spacing:-4.595200pt;}
.ws13_c00011{word-spacing:-4.576000pt;}
.ws19_c00011{word-spacing:-4.571733pt;}
.wsd_c00011{word-spacing:-4.569600pt;}
.ws10_c00011{word-spacing:-4.567467pt;}
.wsb_c00011{word-spacing:-4.563200pt;}
.ws14_c00011{word-spacing:-4.550400pt;}
.ws18_c00011{word-spacing:-4.544000pt;}
.ws12_c00011{word-spacing:-4.543467pt;}
.ws11_c00011{word-spacing:-4.538133pt;}
.ws7_c00011{word-spacing:-2.715104pt;}
.ws2_c00011{word-spacing:-1.734432pt;}
.ws1d_c00011{word-spacing:-0.229152pt;}
.ws29_c00011{word-spacing:-0.152768pt;}
.ws2e_c00011{word-spacing:-0.140800pt;}
.ws23_c00011{word-spacing:-0.111104pt;}
.ws2c_c00011{word-spacing:-0.076800pt;}
.ws2d_c00011{word-spacing:-0.070400pt;}
.ws26_c00011{word-spacing:-0.069440pt;}
.ws2b_c00011{word-spacing:-0.064000pt;}
.ws2f_c00011{word-spacing:-0.057600pt;}
.ws25_c00011{word-spacing:-0.048608pt;}
.ws24_c00011{word-spacing:-0.041664pt;}
.ws21_c00011{word-spacing:-0.027776pt;}
.ws2a_c00011{word-spacing:-0.020832pt;}
.ws22_c00011{word-spacing:-0.013888pt;}
.ws1b_c00011{word-spacing:-0.012800pt;}
.ws1a_c00011{word-spacing:0.000000pt;}
.ws1c_c00011{word-spacing:0.008544pt;}
.ws1e_c00011{word-spacing:0.055552pt;}
.ws20_c00011{word-spacing:0.062496pt;}
.ws27_c00011{word-spacing:0.102528pt;}
.ws28_c00011{word-spacing:0.136704pt;}
.ws1f_c00011{word-spacing:0.291648pt;}
._6_c00011{margin-left:-39.329696pt;}
._7_c00011{margin-left:-38.400512pt;}
._e_c00011{margin-left:-11.962325pt;}
._d_c00011{margin-left:-10.906624pt;}
._9_c00011{margin-left:-8.396800pt;}
._3_c00011{margin-left:-1.920736pt;}
._a_c00011{margin-left:-1.005696pt;}
._1_c00011{width:1.511040pt;}
._2_c00011{width:3.000192pt;}
._0_c00011{width:4.784640pt;}
._c_c00011{width:7.193600pt;}
._5_c00011{width:9.184160pt;}
._f_c00011{width:10.619093pt;}
._4_c00011{width:11.693696pt;}
._b_c00011{width:13.145600pt;}
._8_c00011{width:17.419968pt;}
.fs1_c00011{font-size:48.000000pt;}
.fs0_c00011{font-size:64.000000pt;}
.fs4_c00011{font-size:69.440000pt;}
.fs3_c00011{font-size:85.440000pt;}
.fs2_c00011{font-size:128.000000pt;}
.y0_c00011{bottom:0.000000pt;}
.y2_c00011{bottom:51.067067pt;}
.y2a_c00011{bottom:100.747067pt;}
.y29_c00011{bottom:127.867067pt;}
.y28_c00011{bottom:145.867067pt;}
.y27_c00011{bottom:163.867067pt;}
.y26_c00011{bottom:181.867067pt;}
.y25_c00011{bottom:199.867067pt;}
.y24_c00011{bottom:217.867067pt;}
.y23_c00011{bottom:235.867067pt;}
.y22_c00011{bottom:253.867067pt;}
.y21_c00011{bottom:271.867067pt;}
.y20_c00011{bottom:289.867067pt;}
.y1f_c00011{bottom:307.867067pt;}
.y1e_c00011{bottom:325.867067pt;}
.y1d_c00011{bottom:343.867067pt;}
.y1c_c00011{bottom:361.867067pt;}
.y1b_c00011{bottom:379.867067pt;}
.y1a_c00011{bottom:397.867067pt;}
.y19_c00011{bottom:415.867067pt;}
.y18_c00011{bottom:433.867067pt;}
.y17_c00011{bottom:451.867067pt;}
.y16_c00011{bottom:469.867067pt;}
.y15_c00011{bottom:487.867067pt;}
.y14_c00011{bottom:505.867067pt;}
.y13_c00011{bottom:523.867067pt;}
.y12_c00011{bottom:541.867067pt;}
.y11_c00011{bottom:559.867067pt;}
.y10_c00011{bottom:578.267067pt;}
.yf_c00011{bottom:606.738427pt;}
.ye_c00011{bottom:630.747067pt;}
.yd_c00011{bottom:685.787067pt;}
.yc_c00011{bottom:705.227067pt;}
.yb_c00011{bottom:724.747067pt;}
.ya_c00011{bottom:744.267067pt;}
.y9_c00011{bottom:763.787067pt;}
.y8_c00011{bottom:783.227067pt;}
.y7_c00011{bottom:811.707067pt;}
.y6_c00011{bottom:867.707067pt;}
.y5_c00011{bottom:923.707067pt;}
.y4_c00011{bottom:978.347067pt;}
.y3_c00011{bottom:1000.507067pt;}
.y1_c00011{bottom:1060.667067pt;}
.h1_c00011{height:42.656250pt;}
.h4_c00011{height:53.562500pt;}
.h6_c00011{height:58.115313pt;}
.h7_c00011{height:58.183125pt;}
.h2_c00011{height:64.142500pt;}
.h5_c00011{height:71.589375pt;}
.h3_c00011{height:107.250000pt;}
.h0_c00011{height:1122.666667pt;}
.w1_c00011{width:793.333333pt;}
.w0_c00011{width:793.626667pt;}
.x0_c00011{left:0.000000pt;}
.x1_c00011{left:113.440000pt;}
.x3_c00011{left:125.440000pt;}
.x4_c00011{left:139.920000pt;}
.x5_c00011{left:151.264400pt;}
.x2_c00011{left:173.439760pt;}
}





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

.ir_c00012:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00012;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_b7844a6828a083ddb8ca322c.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;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_c00012;src:url('chunks/assets/font_b5aa6cb93362f9b6621f2ab3.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00012;src:url('chunks/assets/font_5937071f9a39925fd7a83fcd.woff2')format("woff");}.ff4_c00012{font-family:ff4_c00012;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.v1_c00012{vertical-align:15.840000px;}
.ls12_c00012{letter-spacing:-0.148428px;}
.ls18_c00012{letter-spacing:-0.101556px;}
.ls11_c00012{letter-spacing:-0.070308px;}
.ls17_c00012{letter-spacing:-0.054684px;}
.ls10_c00012{letter-spacing:-0.039060px;}
.ls14_c00012{letter-spacing:-0.028800px;}
.ls16_c00012{letter-spacing:-0.014400px;}
.ls19_c00012{letter-spacing:-0.007200px;}
.ls13_c00012{letter-spacing:0.000000px;}
.lsd_c00012{letter-spacing:0.007200px;}
.lsb_c00012{letter-spacing:0.028800px;}
.ls6_c00012{letter-spacing:0.043200px;}
.ls3_c00012{letter-spacing:0.057600px;}
.ls8_c00012{letter-spacing:0.064800px;}
.ls9_c00012{letter-spacing:0.072000px;}
.ls4_c00012{letter-spacing:0.079200px;}
.lsa_c00012{letter-spacing:0.086400px;}
.ls2_c00012{letter-spacing:0.093600px;}
.lsf_c00012{letter-spacing:0.101556px;}
.lse_c00012{letter-spacing:0.118800px;}
.ls1_c00012{letter-spacing:10.440000px;}
.ls15_c00012{letter-spacing:13.046400px;}
.ls7_c00012{letter-spacing:45.720000px;}
.lsc_c00012{letter-spacing:58.680000px;}
.ls5_c00012{letter-spacing:92.520000px;}
.ls0_c00012{letter-spacing:1223.640000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00012{word-spacing:-31.046400px;}
.ws0_c00012{word-spacing:-19.631556px;}
.ws1_c00012{word-spacing:-18.093600px;}
.wsb_c00012{word-spacing:-18.086400px;}
.wsc_c00012{word-spacing:-18.072000px;}
.ws5_c00012{word-spacing:-18.043200px;}
.wsa_c00012{word-spacing:-18.028800px;}
.ws4_c00012{word-spacing:-17.971200px;}
.ws8_c00012{word-spacing:-5.169600px;}
.ws9_c00012{word-spacing:-5.155200px;}
.ws3_c00012{word-spacing:-5.148000px;}
.ws2_c00012{word-spacing:-5.133600px;}
.ws6_c00012{word-spacing:-5.112000px;}
.ws13_c00012{word-spacing:-0.194400px;}
.ws17_c00012{word-spacing:-0.187200px;}
.ws1c_c00012{word-spacing:-0.132804px;}
.ws1b_c00012{word-spacing:-0.124992px;}
.ws16_c00012{word-spacing:-0.086400px;}
.ws12_c00012{word-spacing:-0.079200px;}
.ws15_c00012{word-spacing:-0.072000px;}
.ws14_c00012{word-spacing:-0.064800px;}
.ws11_c00012{word-spacing:-0.057600px;}
.wse_c00012{word-spacing:-0.054684px;}
.wsf_c00012{word-spacing:-0.023436px;}
.ws1e_c00012{word-spacing:-0.007200px;}
.wsd_c00012{word-spacing:0.000000px;}
.ws19_c00012{word-spacing:0.014400px;}
.ws1a_c00012{word-spacing:0.028800px;}
.ws18_c00012{word-spacing:0.043200px;}
.ws1d_c00012{word-spacing:0.050400px;}
.ws10_c00012{word-spacing:0.054684px;}
.ws1f_c00012{word-spacing:0.057600px;}
._7_c00012{margin-left:-13.212000px;}
._2_c00012{margin-left:-9.446400px;}
._3_c00012{margin-left:-1.980000px;}
._6_c00012{width:1.238400px;}
._d_c00012{width:2.332800px;}
._5_c00012{width:3.542400px;}
._1_c00012{width:5.702760px;}
._9_c00012{width:7.200000px;}
._b_c00012{width:8.812800px;}
._c_c00012{width:10.094400px;}
._8_c00012{width:11.678400px;}
._0_c00012{width:12.734388px;}
._e_c00012{width:13.924800px;}
._4_c00012{width:15.292800px;}
._a_c00012{width:17.655948px;}
.fc1_c00012{color:rgb(0,0,255);}
.fc0_c00012{color:rgb(0,0,0);}
.fs1_c00012{font-size:54.000000px;}
.fs0_c00012{font-size:72.000000px;}
.fs2_c00012{font-size:78.120000px;}
.y0_c00012{bottom:0.000000px;}
.y1_c00012{bottom:57.450450px;}
.y32_c00012{bottom:145.020450px;}
.y31_c00012{bottom:166.350450px;}
.y30_c00012{bottom:186.600450px;}
.y2f_c00012{bottom:206.850450px;}
.y2e_c00012{bottom:227.100450px;}
.y2d_c00012{bottom:247.350450px;}
.y2c_c00012{bottom:267.600450px;}
.y2b_c00012{bottom:287.850450px;}
.y2a_c00012{bottom:308.100450px;}
.y29_c00012{bottom:328.350450px;}
.y28_c00012{bottom:348.600450px;}
.y27_c00012{bottom:368.850450px;}
.y26_c00012{bottom:389.100450px;}
.y25_c00012{bottom:409.350450px;}
.y24_c00012{bottom:429.600450px;}
.y23_c00012{bottom:449.850450px;}
.y22_c00012{bottom:470.100450px;}
.y21_c00012{bottom:490.350450px;}
.y20_c00012{bottom:510.600450px;}
.y1f_c00012{bottom:530.850450px;}
.y1e_c00012{bottom:551.100450px;}
.y1d_c00012{bottom:571.350450px;}
.y1c_c00012{bottom:591.600450px;}
.y1b_c00012{bottom:611.850450px;}
.y1a_c00012{bottom:632.100450px;}
.y19_c00012{bottom:652.350450px;}
.y18_c00012{bottom:673.050450px;}
.y17_c00012{bottom:703.560450px;}
.y16_c00012{bottom:723.810450px;}
.y15_c00012{bottom:744.060450px;}
.y14_c00012{bottom:764.310450px;}
.y13_c00012{bottom:784.560450px;}
.y12_c00012{bottom:804.810450px;}
.y11_c00012{bottom:825.060450px;}
.y10_c00012{bottom:845.760450px;}
.yf_c00012{bottom:876.270450px;}
.ye_c00012{bottom:896.520450px;}
.yd_c00012{bottom:916.770450px;}
.yc_c00012{bottom:937.020450px;}
.yb_c00012{bottom:957.270450px;}
.ya_c00012{bottom:977.520450px;}
.y9_c00012{bottom:997.770450px;}
.y8_c00012{bottom:1018.020450px;}
.y7_c00012{bottom:1038.270450px;}
.y6_c00012{bottom:1058.520450px;}
.y5_c00012{bottom:1078.770450px;}
.y4_c00012{bottom:1099.020450px;}
.y3_c00012{bottom:1119.270450px;}
.y2_c00012{bottom:1139.880450px;}
.h4_c00012{height:47.988281px;}
.h3_c00012{height:60.257812px;}
.h2_c00012{height:65.456016px;}
.h1_c00012{height:72.160312px;}
.h0_c00012{height:1263.000000px;}
.w1_c00012{width:892.500000px;}
.w0_c00012{width:892.830000px;}
.x0_c00012{left:0.000000px;}
.x1_c00012{left:127.620000px;}
.x2_c00012{left:141.120000px;}
.x3_c00012{left:157.410000px;}
.x4_c00012{left:170.190000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.v1_c00012{vertical-align:14.080000pt;}
.ls12_c00012{letter-spacing:-0.131936pt;}
.ls18_c00012{letter-spacing:-0.090272pt;}
.ls11_c00012{letter-spacing:-0.062496pt;}
.ls17_c00012{letter-spacing:-0.048608pt;}
.ls10_c00012{letter-spacing:-0.034720pt;}
.ls14_c00012{letter-spacing:-0.025600pt;}
.ls16_c00012{letter-spacing:-0.012800pt;}
.ls19_c00012{letter-spacing:-0.006400pt;}
.ls13_c00012{letter-spacing:0.000000pt;}
.lsd_c00012{letter-spacing:0.006400pt;}
.lsb_c00012{letter-spacing:0.025600pt;}
.ls6_c00012{letter-spacing:0.038400pt;}
.ls3_c00012{letter-spacing:0.051200pt;}
.ls8_c00012{letter-spacing:0.057600pt;}
.ls9_c00012{letter-spacing:0.064000pt;}
.ls4_c00012{letter-spacing:0.070400pt;}
.lsa_c00012{letter-spacing:0.076800pt;}
.ls2_c00012{letter-spacing:0.083200pt;}
.lsf_c00012{letter-spacing:0.090272pt;}
.lse_c00012{letter-spacing:0.105600pt;}
.ls1_c00012{letter-spacing:9.280000pt;}
.ls15_c00012{letter-spacing:11.596800pt;}
.ls7_c00012{letter-spacing:40.640000pt;}
.lsc_c00012{letter-spacing:52.160000pt;}
.ls5_c00012{letter-spacing:82.240000pt;}
.ls0_c00012{letter-spacing:1087.680000pt;}
.ws7_c00012{word-spacing:-27.596800pt;}
.ws0_c00012{word-spacing:-17.450272pt;}
.ws1_c00012{word-spacing:-16.083200pt;}
.wsb_c00012{word-spacing:-16.076800pt;}
.wsc_c00012{word-spacing:-16.064000pt;}
.ws5_c00012{word-spacing:-16.038400pt;}
.wsa_c00012{word-spacing:-16.025600pt;}
.ws4_c00012{word-spacing:-15.974400pt;}
.ws8_c00012{word-spacing:-4.595200pt;}
.ws9_c00012{word-spacing:-4.582400pt;}
.ws3_c00012{word-spacing:-4.576000pt;}
.ws2_c00012{word-spacing:-4.563200pt;}
.ws6_c00012{word-spacing:-4.544000pt;}
.ws13_c00012{word-spacing:-0.172800pt;}
.ws17_c00012{word-spacing:-0.166400pt;}
.ws1c_c00012{word-spacing:-0.118048pt;}
.ws1b_c00012{word-spacing:-0.111104pt;}
.ws16_c00012{word-spacing:-0.076800pt;}
.ws12_c00012{word-spacing:-0.070400pt;}
.ws15_c00012{word-spacing:-0.064000pt;}
.ws14_c00012{word-spacing:-0.057600pt;}
.ws11_c00012{word-spacing:-0.051200pt;}
.wse_c00012{word-spacing:-0.048608pt;}
.wsf_c00012{word-spacing:-0.020832pt;}
.ws1e_c00012{word-spacing:-0.006400pt;}
.wsd_c00012{word-spacing:0.000000pt;}
.ws19_c00012{word-spacing:0.012800pt;}
.ws1a_c00012{word-spacing:0.025600pt;}
.ws18_c00012{word-spacing:0.038400pt;}
.ws1d_c00012{word-spacing:0.044800pt;}
.ws10_c00012{word-spacing:0.048608pt;}
.ws1f_c00012{word-spacing:0.051200pt;}
._7_c00012{margin-left:-11.744000pt;}
._2_c00012{margin-left:-8.396800pt;}
._3_c00012{margin-left:-1.760000pt;}
._6_c00012{width:1.100800pt;}
._d_c00012{width:2.073600pt;}
._5_c00012{width:3.148800pt;}
._1_c00012{width:5.069120pt;}
._9_c00012{width:6.400000pt;}
._b_c00012{width:7.833600pt;}
._c_c00012{width:8.972800pt;}
._8_c00012{width:10.380800pt;}
._0_c00012{width:11.319456pt;}
._e_c00012{width:12.377600pt;}
._4_c00012{width:13.593600pt;}
._a_c00012{width:15.694176pt;}
.fs1_c00012{font-size:48.000000pt;}
.fs0_c00012{font-size:64.000000pt;}
.fs2_c00012{font-size:69.440000pt;}
.y0_c00012{bottom:0.000000pt;}
.y1_c00012{bottom:51.067067pt;}
.y32_c00012{bottom:128.907067pt;}
.y31_c00012{bottom:147.867067pt;}
.y30_c00012{bottom:165.867067pt;}
.y2f_c00012{bottom:183.867067pt;}
.y2e_c00012{bottom:201.867067pt;}
.y2d_c00012{bottom:219.867067pt;}
.y2c_c00012{bottom:237.867067pt;}
.y2b_c00012{bottom:255.867067pt;}
.y2a_c00012{bottom:273.867067pt;}
.y29_c00012{bottom:291.867067pt;}
.y28_c00012{bottom:309.867067pt;}
.y27_c00012{bottom:327.867067pt;}
.y26_c00012{bottom:345.867067pt;}
.y25_c00012{bottom:363.867067pt;}
.y24_c00012{bottom:381.867067pt;}
.y23_c00012{bottom:399.867067pt;}
.y22_c00012{bottom:417.867067pt;}
.y21_c00012{bottom:435.867067pt;}
.y20_c00012{bottom:453.867067pt;}
.y1f_c00012{bottom:471.867067pt;}
.y1e_c00012{bottom:489.867067pt;}
.y1d_c00012{bottom:507.867067pt;}
.y1c_c00012{bottom:525.867067pt;}
.y1b_c00012{bottom:543.867067pt;}
.y1a_c00012{bottom:561.867067pt;}
.y19_c00012{bottom:579.867067pt;}
.y18_c00012{bottom:598.267067pt;}
.y17_c00012{bottom:625.387067pt;}
.y16_c00012{bottom:643.387067pt;}
.y15_c00012{bottom:661.387067pt;}
.y14_c00012{bottom:679.387067pt;}
.y13_c00012{bottom:697.387067pt;}
.y12_c00012{bottom:715.387067pt;}
.y11_c00012{bottom:733.387067pt;}
.y10_c00012{bottom:751.787067pt;}
.yf_c00012{bottom:778.907067pt;}
.ye_c00012{bottom:796.907067pt;}
.yd_c00012{bottom:814.907067pt;}
.yc_c00012{bottom:832.907067pt;}
.yb_c00012{bottom:850.907067pt;}
.ya_c00012{bottom:868.907067pt;}
.y9_c00012{bottom:886.907067pt;}
.y8_c00012{bottom:904.907067pt;}
.y7_c00012{bottom:922.907067pt;}
.y6_c00012{bottom:940.907067pt;}
.y5_c00012{bottom:958.907067pt;}
.y4_c00012{bottom:976.907067pt;}
.y3_c00012{bottom:994.907067pt;}
.y2_c00012{bottom:1013.227067pt;}
.h4_c00012{height:42.656250pt;}
.h3_c00012{height:53.562500pt;}
.h2_c00012{height:58.183125pt;}
.h1_c00012{height:64.142500pt;}
.h0_c00012{height:1122.666667pt;}
.w1_c00012{width:793.333333pt;}
.w0_c00012{width:793.626667pt;}
.x0_c00012{left:0.000000pt;}
.x1_c00012{left:113.440000pt;}
.x2_c00012{left:125.440000pt;}
.x3_c00012{left:139.920000pt;}
.x4_c00012{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_c00013 {
    display:none;
  }
  .loading-indicator_c00013.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00013 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00013 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00013" -> "#page-container .classname_c00013")
 */
.pf_c00013 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00013 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00013 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00013 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00013 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00013 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00013 {overflow:visible;}
  }
}
.c_c00013 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00013 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00013:after { /* webkit #35443 */
  content: '';
}
.t_c00013:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00013 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00013 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00013 { /* info for Javascript */
  display:none;
}
.l_c00013 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00013 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00013 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00013:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00013;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00013;src:url('chunks/assets/font_b7844a6828a083ddb8ca322c.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;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_c00013;src:url('chunks/assets/font_3333aeb90b6e68e56e532f46.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00013;src:url('chunks/assets/font_65915cd111c1043828d98eaf.woff2')format("woff");}.ff5_c00013{font-family:ff5_c00013;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.v1_c00013{vertical-align:15.840000px;}
.ls1a_c00013{letter-spacing:-0.156240px;}
.ls22_c00013{letter-spacing:-0.140616px;}
.ls16_c00013{letter-spacing:-0.096120px;}
.ls21_c00013{letter-spacing:-0.070308px;}
.ls18_c00013{letter-spacing:-0.062496px;}
.ls19_c00013{letter-spacing:-0.046872px;}
.ls20_c00013{letter-spacing:-0.039060px;}
.ls1d_c00013{letter-spacing:-0.028800px;}
.ls23_c00013{letter-spacing:-0.021600px;}
.ls15_c00013{letter-spacing:-0.019224px;}
.ls1e_c00013{letter-spacing:-0.014400px;}
.ls1c_c00013{letter-spacing:-0.007200px;}
.ls13_c00013{letter-spacing:0.000000px;}
.ls11_c00013{letter-spacing:0.007200px;}
.lsc_c00013{letter-spacing:0.014400px;}
.ls4_c00013{letter-spacing:0.021600px;}
.ls17_c00013{letter-spacing:0.023436px;}
.lse_c00013{letter-spacing:0.028800px;}
.ls8_c00013{letter-spacing:0.043200px;}
.ls7_c00013{letter-spacing:0.057600px;}
.lsb_c00013{letter-spacing:0.064800px;}
.lsa_c00013{letter-spacing:0.072000px;}
.ls5_c00013{letter-spacing:0.079200px;}
.lsf_c00013{letter-spacing:0.086400px;}
.ls3_c00013{letter-spacing:0.093600px;}
.ls1f_c00013{letter-spacing:0.101556px;}
.ls14_c00013{letter-spacing:0.118800px;}
.lsd_c00013{letter-spacing:4.680000px;}
.ls10_c00013{letter-spacing:9.000000px;}
.ls12_c00013{letter-spacing:10.440000px;}
.ls1b_c00013{letter-spacing:10.893600px;}
.ls2_c00013{letter-spacing:16.200000px;}
.ls9_c00013{letter-spacing:45.720000px;}
.ls1_c00013{letter-spacing:48.240000px;}
.ls6_c00013{letter-spacing:92.520000px;}
.ls0_c00013{letter-spacing:1216.080000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00013{word-spacing:-28.893600px;}
.wsa_c00013{word-spacing:-19.631556px;}
.ws0_c00013{word-spacing:-19.553436px;}
.ws1_c00013{word-spacing:-18.093600px;}
.ws8_c00013{word-spacing:-18.086400px;}
.ws5_c00013{word-spacing:-18.079200px;}
.ws7_c00013{word-spacing:-18.072000px;}
.ws4_c00013{word-spacing:-18.043200px;}
.ws9_c00013{word-spacing:-18.028800px;}
.ws6_c00013{word-spacing:-18.014400px;}
.ws3_c00013{word-spacing:-17.971200px;}
.ws10_c00013{word-spacing:-0.296856px;}
.wse_c00013{word-spacing:-0.171864px;}
.ws19_c00013{word-spacing:-0.086400px;}
.ws13_c00013{word-spacing:-0.079200px;}
.ws15_c00013{word-spacing:-0.072000px;}
.ws16_c00013{word-spacing:-0.064800px;}
.ws14_c00013{word-spacing:-0.057600px;}
.ws1b_c00013{word-spacing:-0.054684px;}
.wsf_c00013{word-spacing:-0.046872px;}
.ws17_c00013{word-spacing:-0.028800px;}
.ws1c_c00013{word-spacing:-0.023436px;}
.ws1a_c00013{word-spacing:-0.007200px;}
.wsb_c00013{word-spacing:0.000000px;}
.ws18_c00013{word-spacing:0.014400px;}
.ws11_c00013{word-spacing:0.036000px;}
.ws1d_c00013{word-spacing:0.046872px;}
.ws12_c00013{word-spacing:0.057600px;}
.ws1e_c00013{word-spacing:0.064800px;}
.wsd_c00013{word-spacing:0.067284px;}
.wsc_c00013{word-spacing:0.105732px;}
._5_c00013{margin-left:-10.800000px;}
._3_c00013{margin-left:-9.446400px;}
._c_c00013{margin-left:-2.969640px;}
._4_c00013{margin-left:-1.263240px;}
._0_c00013{width:2.031876px;}
._b_c00013{width:3.398400px;}
._a_c00013{width:4.838400px;}
._1_c00013{width:6.440040px;}
._9_c00013{width:7.732800px;}
._e_c00013{width:8.812800px;}
._8_c00013{width:9.899244px;}
._6_c00013{width:11.044800px;}
._7_c00013{width:12.700800px;}
._d_c00013{width:14.126400px;}
._2_c00013{width:15.387156px;}
.fc1_c00013{color:rgb(0,0,255);}
.fc0_c00013{color:rgb(0,0,0);}
.fs1_c00013{font-size:54.000000px;}
.fs0_c00013{font-size:72.000000px;}
.fs3_c00013{font-size:78.120000px;}
.fs2_c00013{font-size:96.120000px;}
.y0_c00013{bottom:0.000000px;}
.y2_c00013{bottom:57.450450px;}
.y34_c00013{bottom:118.830450px;}
.y33_c00013{bottom:139.530450px;}
.y32_c00013{bottom:160.230450px;}
.y31_c00013{bottom:181.560450px;}
.y30_c00013{bottom:201.810450px;}
.y2f_c00013{bottom:222.060450px;}
.y2e_c00013{bottom:242.310450px;}
.y2d_c00013{bottom:262.560450px;}
.y2c_c00013{bottom:282.810450px;}
.y2b_c00013{bottom:303.060450px;}
.y2a_c00013{bottom:323.310450px;}
.y29_c00013{bottom:344.010450px;}
.y28_c00013{bottom:374.520450px;}
.y27_c00013{bottom:394.770450px;}
.y26_c00013{bottom:415.020450px;}
.y25_c00013{bottom:435.270450px;}
.y24_c00013{bottom:455.520450px;}
.y23_c00013{bottom:475.770450px;}
.y22_c00013{bottom:496.020450px;}
.y21_c00013{bottom:516.270450px;}
.y20_c00013{bottom:536.520450px;}
.y1f_c00013{bottom:556.770450px;}
.y1e_c00013{bottom:577.020450px;}
.y1d_c00013{bottom:597.270450px;}
.y1c_c00013{bottom:617.520450px;}
.y1b_c00013{bottom:637.770450px;}
.y1a_c00013{bottom:658.020450px;}
.y19_c00013{bottom:678.270450px;}
.y18_c00013{bottom:698.520450px;}
.y17_c00013{bottom:718.770450px;}
.y16_c00013{bottom:739.020450px;}
.y15_c00013{bottom:759.270450px;}
.y14_c00013{bottom:779.520450px;}
.y13_c00013{bottom:799.770450px;}
.y12_c00013{bottom:820.020450px;}
.y11_c00013{bottom:840.270450px;}
.y10_c00013{bottom:860.520450px;}
.yf_c00013{bottom:880.770450px;}
.ye_c00013{bottom:901.020450px;}
.yd_c00013{bottom:921.270450px;}
.yc_c00013{bottom:941.520450px;}
.yb_c00013{bottom:961.770450px;}
.ya_c00013{bottom:982.020450px;}
.y9_c00013{bottom:1002.270450px;}
.y8_c00013{bottom:1022.520450px;}
.y7_c00013{bottom:1042.770450px;}
.y6_c00013{bottom:1063.020450px;}
.y5_c00013{bottom:1083.270450px;}
.y4_c00013{bottom:1103.880450px;}
.y3_c00013{bottom:1135.920450px;}
.y1_c00013{bottom:1193.250450px;}
.h1_c00013{height:47.988281px;}
.h5_c00013{height:60.257812px;}
.h4_c00013{height:65.456016px;}
.h2_c00013{height:72.160313px;}
.h3_c00013{height:80.538047px;}
.h0_c00013{height:1263.000000px;}
.w1_c00013{width:892.500000px;}
.w0_c00013{width:892.830000px;}
.x0_c00013{left:0.000000px;}
.x1_c00013{left:127.620000px;}
.x2_c00013{left:141.120000px;}
.x3_c00013{left:157.410000px;}
.x4_c00013{left:170.190000px;}
.x5_c00013{left:181.620000px;}
.x6_c00013{left:195.120000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.v1_c00013{vertical-align:14.080000pt;}
.ls1a_c00013{letter-spacing:-0.138880pt;}
.ls22_c00013{letter-spacing:-0.124992pt;}
.ls16_c00013{letter-spacing:-0.085440pt;}
.ls21_c00013{letter-spacing:-0.062496pt;}
.ls18_c00013{letter-spacing:-0.055552pt;}
.ls19_c00013{letter-spacing:-0.041664pt;}
.ls20_c00013{letter-spacing:-0.034720pt;}
.ls1d_c00013{letter-spacing:-0.025600pt;}
.ls23_c00013{letter-spacing:-0.019200pt;}
.ls15_c00013{letter-spacing:-0.017088pt;}
.ls1e_c00013{letter-spacing:-0.012800pt;}
.ls1c_c00013{letter-spacing:-0.006400pt;}
.ls13_c00013{letter-spacing:0.000000pt;}
.ls11_c00013{letter-spacing:0.006400pt;}
.lsc_c00013{letter-spacing:0.012800pt;}
.ls4_c00013{letter-spacing:0.019200pt;}
.ls17_c00013{letter-spacing:0.020832pt;}
.lse_c00013{letter-spacing:0.025600pt;}
.ls8_c00013{letter-spacing:0.038400pt;}
.ls7_c00013{letter-spacing:0.051200pt;}
.lsb_c00013{letter-spacing:0.057600pt;}
.lsa_c00013{letter-spacing:0.064000pt;}
.ls5_c00013{letter-spacing:0.070400pt;}
.lsf_c00013{letter-spacing:0.076800pt;}
.ls3_c00013{letter-spacing:0.083200pt;}
.ls1f_c00013{letter-spacing:0.090272pt;}
.ls14_c00013{letter-spacing:0.105600pt;}
.lsd_c00013{letter-spacing:4.160000pt;}
.ls10_c00013{letter-spacing:8.000000pt;}
.ls12_c00013{letter-spacing:9.280000pt;}
.ls1b_c00013{letter-spacing:9.683200pt;}
.ls2_c00013{letter-spacing:14.400000pt;}
.ls9_c00013{letter-spacing:40.640000pt;}
.ls1_c00013{letter-spacing:42.880000pt;}
.ls6_c00013{letter-spacing:82.240000pt;}
.ls0_c00013{letter-spacing:1080.960000pt;}
.ws2_c00013{word-spacing:-25.683200pt;}
.wsa_c00013{word-spacing:-17.450272pt;}
.ws0_c00013{word-spacing:-17.380832pt;}
.ws1_c00013{word-spacing:-16.083200pt;}
.ws8_c00013{word-spacing:-16.076800pt;}
.ws5_c00013{word-spacing:-16.070400pt;}
.ws7_c00013{word-spacing:-16.064000pt;}
.ws4_c00013{word-spacing:-16.038400pt;}
.ws9_c00013{word-spacing:-16.025600pt;}
.ws6_c00013{word-spacing:-16.012800pt;}
.ws3_c00013{word-spacing:-15.974400pt;}
.ws10_c00013{word-spacing:-0.263872pt;}
.wse_c00013{word-spacing:-0.152768pt;}
.ws19_c00013{word-spacing:-0.076800pt;}
.ws13_c00013{word-spacing:-0.070400pt;}
.ws15_c00013{word-spacing:-0.064000pt;}
.ws16_c00013{word-spacing:-0.057600pt;}
.ws14_c00013{word-spacing:-0.051200pt;}
.ws1b_c00013{word-spacing:-0.048608pt;}
.wsf_c00013{word-spacing:-0.041664pt;}
.ws17_c00013{word-spacing:-0.025600pt;}
.ws1c_c00013{word-spacing:-0.020832pt;}
.ws1a_c00013{word-spacing:-0.006400pt;}
.wsb_c00013{word-spacing:0.000000pt;}
.ws18_c00013{word-spacing:0.012800pt;}
.ws11_c00013{word-spacing:0.032000pt;}
.ws1d_c00013{word-spacing:0.041664pt;}
.ws12_c00013{word-spacing:0.051200pt;}
.ws1e_c00013{word-spacing:0.057600pt;}
.wsd_c00013{word-spacing:0.059808pt;}
.wsc_c00013{word-spacing:0.093984pt;}
._5_c00013{margin-left:-9.600000pt;}
._3_c00013{margin-left:-8.396800pt;}
._c_c00013{margin-left:-2.639680pt;}
._4_c00013{margin-left:-1.122880pt;}
._0_c00013{width:1.806112pt;}
._b_c00013{width:3.020800pt;}
._a_c00013{width:4.300800pt;}
._1_c00013{width:5.724480pt;}
._9_c00013{width:6.873600pt;}
._e_c00013{width:7.833600pt;}
._8_c00013{width:8.799328pt;}
._6_c00013{width:9.817600pt;}
._7_c00013{width:11.289600pt;}
._d_c00013{width:12.556800pt;}
._2_c00013{width:13.677472pt;}
.fs1_c00013{font-size:48.000000pt;}
.fs0_c00013{font-size:64.000000pt;}
.fs3_c00013{font-size:69.440000pt;}
.fs2_c00013{font-size:85.440000pt;}
.y0_c00013{bottom:0.000000pt;}
.y2_c00013{bottom:51.067067pt;}
.y34_c00013{bottom:105.627067pt;}
.y33_c00013{bottom:124.027067pt;}
.y32_c00013{bottom:142.427067pt;}
.y31_c00013{bottom:161.387067pt;}
.y30_c00013{bottom:179.387067pt;}
.y2f_c00013{bottom:197.387067pt;}
.y2e_c00013{bottom:215.387067pt;}
.y2d_c00013{bottom:233.387067pt;}
.y2c_c00013{bottom:251.387067pt;}
.y2b_c00013{bottom:269.387067pt;}
.y2a_c00013{bottom:287.387067pt;}
.y29_c00013{bottom:305.787067pt;}
.y28_c00013{bottom:332.907067pt;}
.y27_c00013{bottom:350.907067pt;}
.y26_c00013{bottom:368.907067pt;}
.y25_c00013{bottom:386.907067pt;}
.y24_c00013{bottom:404.907067pt;}
.y23_c00013{bottom:422.907067pt;}
.y22_c00013{bottom:440.907067pt;}
.y21_c00013{bottom:458.907067pt;}
.y20_c00013{bottom:476.907067pt;}
.y1f_c00013{bottom:494.907067pt;}
.y1e_c00013{bottom:512.907067pt;}
.y1d_c00013{bottom:530.907067pt;}
.y1c_c00013{bottom:548.907067pt;}
.y1b_c00013{bottom:566.907067pt;}
.y1a_c00013{bottom:584.907067pt;}
.y19_c00013{bottom:602.907067pt;}
.y18_c00013{bottom:620.907067pt;}
.y17_c00013{bottom:638.907067pt;}
.y16_c00013{bottom:656.907067pt;}
.y15_c00013{bottom:674.907067pt;}
.y14_c00013{bottom:692.907067pt;}
.y13_c00013{bottom:710.907067pt;}
.y12_c00013{bottom:728.907067pt;}
.y11_c00013{bottom:746.907067pt;}
.y10_c00013{bottom:764.907067pt;}
.yf_c00013{bottom:782.907067pt;}
.ye_c00013{bottom:800.907067pt;}
.yd_c00013{bottom:818.907067pt;}
.yc_c00013{bottom:836.907067pt;}
.yb_c00013{bottom:854.907067pt;}
.ya_c00013{bottom:872.907067pt;}
.y9_c00013{bottom:890.907067pt;}
.y8_c00013{bottom:908.907067pt;}
.y7_c00013{bottom:926.907067pt;}
.y6_c00013{bottom:944.907067pt;}
.y5_c00013{bottom:962.907067pt;}
.y4_c00013{bottom:981.227067pt;}
.y3_c00013{bottom:1009.707067pt;}
.y1_c00013{bottom:1060.667067pt;}
.h1_c00013{height:42.656250pt;}
.h5_c00013{height:53.562500pt;}
.h4_c00013{height:58.183125pt;}
.h2_c00013{height:64.142500pt;}
.h3_c00013{height:71.589375pt;}
.h0_c00013{height:1122.666667pt;}
.w1_c00013{width:793.333333pt;}
.w0_c00013{width:793.626667pt;}
.x0_c00013{left:0.000000pt;}
.x1_c00013{left:113.440000pt;}
.x2_c00013{left:125.440000pt;}
.x3_c00013{left:139.920000pt;}
.x4_c00013{left:151.280000pt;}
.x5_c00013{left:161.440000pt;}
.x6_c00013{left:173.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_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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00014;src:url('chunks/assets/font_8298b30a6ce087655629451a.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;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_c00014;src:url('chunks/assets/font_2ac91ce1fdca35210005f876.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00014;src:url('chunks/assets/font_c25138f3b5867332d107c42c.woff2')format("woff");}.ff4_c00014{font-family:ff4_c00014;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00014;src:url('chunks/assets/font_f926c39e97dc83a4ff5f265c.woff2')format("woff");}.ff5_c00014{font-family:ff5_c00014;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.v1_c00014{vertical-align:15.840000px;}
.ls20_c00014{letter-spacing:-0.164052px;}
.ls1a_c00014{letter-spacing:-0.156240px;}
.ls19_c00014{letter-spacing:-0.054684px;}
.ls17_c00014{letter-spacing:-0.039060px;}
.ls1c_c00014{letter-spacing:-0.028800px;}
.ls21_c00014{letter-spacing:-0.021600px;}
.ls1f_c00014{letter-spacing:-0.015624px;}
.ls1d_c00014{letter-spacing:-0.014400px;}
.ls18_c00014{letter-spacing:-0.007812px;}
.ls1e_c00014{letter-spacing:-0.007200px;}
.ls1b_c00014{letter-spacing:0.000000px;}
.ls6_c00014{letter-spacing:0.007200px;}
.lsc_c00014{letter-spacing:0.014400px;}
.ls8_c00014{letter-spacing:0.021600px;}
.lse_c00014{letter-spacing:0.028800px;}
.ls11_c00014{letter-spacing:0.036000px;}
.lsa_c00014{letter-spacing:0.043200px;}
.ls14_c00014{letter-spacing:0.046872px;}
.ls7_c00014{letter-spacing:0.050400px;}
.lsf_c00014{letter-spacing:0.057600px;}
.ls12_c00014{letter-spacing:0.064800px;}
.ls5_c00014{letter-spacing:0.072000px;}
.ls9_c00014{letter-spacing:0.079200px;}
.ls3_c00014{letter-spacing:0.086400px;}
.ls2_c00014{letter-spacing:0.093600px;}
.ls16_c00014{letter-spacing:0.101556px;}
.ls15_c00014{letter-spacing:0.118800px;}
.lsd_c00014{letter-spacing:4.680000px;}
.ls10_c00014{letter-spacing:9.000000px;}
.ls1_c00014{letter-spacing:10.440000px;}
.lsb_c00014{letter-spacing:45.720000px;}
.ls13_c00014{letter-spacing:54.000000px;}
.ls4_c00014{letter-spacing:92.520000px;}
.ls0_c00014{letter-spacing:1213.200000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00014{word-spacing:-19.631556px;}
.wsd_c00014{word-spacing:-19.576872px;}
.ws1_c00014{word-spacing:-19.373760px;}
.wse_c00014{word-spacing:-19.365948px;}
.ws2_c00014{word-spacing:-18.093600px;}
.ws3_c00014{word-spacing:-18.086400px;}
.wsa_c00014{word-spacing:-18.079200px;}
.ws5_c00014{word-spacing:-18.043200px;}
.ws9_c00014{word-spacing:-18.036000px;}
.ws7_c00014{word-spacing:-18.028800px;}
.ws6_c00014{word-spacing:-18.014400px;}
.ws4_c00014{word-spacing:-17.971200px;}
.wsb_c00014{word-spacing:-4.838400px;}
.wsc_c00014{word-spacing:-3.873600px;}
.ws8_c00014{word-spacing:-3.196800px;}
.ws11_c00014{word-spacing:-0.234360px;}
.ws10_c00014{word-spacing:-0.124992px;}
.ws25_c00014{word-spacing:-0.109368px;}
.ws26_c00014{word-spacing:-0.086400px;}
.ws17_c00014{word-spacing:-0.079200px;}
.ws13_c00014{word-spacing:-0.072000px;}
.ws21_c00014{word-spacing:-0.064800px;}
.ws1b_c00014{word-spacing:-0.057600px;}
.ws15_c00014{word-spacing:-0.050400px;}
.ws1c_c00014{word-spacing:-0.043200px;}
.ws12_c00014{word-spacing:-0.039060px;}
.ws1e_c00014{word-spacing:-0.036000px;}
.ws18_c00014{word-spacing:-0.028800px;}
.ws16_c00014{word-spacing:-0.021600px;}
.ws19_c00014{word-spacing:-0.014400px;}
.ws14_c00014{word-spacing:-0.007200px;}
.wsf_c00014{word-spacing:0.000000px;}
.ws22_c00014{word-spacing:0.007200px;}
.ws1f_c00014{word-spacing:0.014400px;}
.ws20_c00014{word-spacing:0.036000px;}
.ws1d_c00014{word-spacing:0.043200px;}
.ws1a_c00014{word-spacing:0.057600px;}
.ws23_c00014{word-spacing:0.064800px;}
.ws24_c00014{word-spacing:0.079200px;}
._3_c00014{margin-left:-9.446400px;}
._6_c00014{margin-left:-1.310400px;}
._2_c00014{width:1.194480px;}
._7_c00014{width:2.966400px;}
._8_c00014{width:4.233600px;}
._0_c00014{width:5.757444px;}
._4_c00014{width:7.776000px;}
._1_c00014{width:9.374400px;}
._5_c00014{width:10.800000px;}
.fc0_c00014{color:rgb(0,0,0);}
.fs1_c00014{font-size:54.000000px;}
.fs0_c00014{font-size:72.000000px;}
.fs2_c00014{font-size:78.120000px;}
.y0_c00014{bottom:0.000000px;}
.y1_c00014{bottom:57.450450px;}
.y34_c00014{bottom:112.890450px;}
.y33_c00014{bottom:133.140450px;}
.y32_c00014{bottom:153.390450px;}
.y31_c00014{bottom:173.640450px;}
.y30_c00014{bottom:193.890450px;}
.y2f_c00014{bottom:214.140450px;}
.y2e_c00014{bottom:234.390450px;}
.y2d_c00014{bottom:255.098730px;}
.y2c_c00014{bottom:277.050450px;}
.y2b_c00014{bottom:307.560450px;}
.y2a_c00014{bottom:327.810450px;}
.y29_c00014{bottom:348.060450px;}
.y28_c00014{bottom:368.310450px;}
.y27_c00014{bottom:388.560450px;}
.y26_c00014{bottom:408.810450px;}
.y25_c00014{bottom:429.060450px;}
.y24_c00014{bottom:449.310450px;}
.y23_c00014{bottom:469.560450px;}
.y22_c00014{bottom:489.810450px;}
.y21_c00014{bottom:510.060450px;}
.y20_c00014{bottom:530.310450px;}
.y1f_c00014{bottom:550.560450px;}
.y1e_c00014{bottom:570.810450px;}
.y1d_c00014{bottom:591.060450px;}
.y1c_c00014{bottom:611.310450px;}
.y1b_c00014{bottom:631.560450px;}
.y1a_c00014{bottom:651.810450px;}
.y19_c00014{bottom:672.060450px;}
.y18_c00014{bottom:692.310450px;}
.y17_c00014{bottom:712.560450px;}
.y16_c00014{bottom:732.810450px;}
.y15_c00014{bottom:753.060450px;}
.y14_c00014{bottom:773.310450px;}
.y13_c00014{bottom:793.560450px;}
.y12_c00014{bottom:813.810450px;}
.y11_c00014{bottom:834.060450px;}
.y10_c00014{bottom:854.310450px;}
.yf_c00014{bottom:874.560450px;}
.ye_c00014{bottom:894.810450px;}
.yd_c00014{bottom:915.060450px;}
.yc_c00014{bottom:935.310450px;}
.yb_c00014{bottom:955.560450px;}
.ya_c00014{bottom:975.810450px;}
.y9_c00014{bottom:996.060450px;}
.y8_c00014{bottom:1016.310450px;}
.y7_c00014{bottom:1036.560450px;}
.y6_c00014{bottom:1056.810450px;}
.y5_c00014{bottom:1077.060450px;}
.y4_c00014{bottom:1097.310450px;}
.y3_c00014{bottom:1118.006850px;}
.y2_c00014{bottom:1139.880450px;}
.h3_c00014{height:60.257812px;}
.h4_c00014{height:60.890625px;}
.h2_c00014{height:65.456016px;}
.h1_c00014{height:72.160312px;}
.h0_c00014{height:1263.000000px;}
.w1_c00014{width:892.500000px;}
.w0_c00014{width:892.830000px;}
.x0_c00014{left:0.000000px;}
.x1_c00014{left:127.620000px;}
.x3_c00014{left:141.120000px;}
.x2_c00014{left:154.437930px;}
.x4_c00014{left:157.410000px;}
.x5_c00014{left:170.190000px;}
.x6_c00014{left:181.620000px;}
.x7_c00014{left:195.120000px;}
.x8_c00014{left:276.120000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.v1_c00014{vertical-align:14.080000pt;}
.ls20_c00014{letter-spacing:-0.145824pt;}
.ls1a_c00014{letter-spacing:-0.138880pt;}
.ls19_c00014{letter-spacing:-0.048608pt;}
.ls17_c00014{letter-spacing:-0.034720pt;}
.ls1c_c00014{letter-spacing:-0.025600pt;}
.ls21_c00014{letter-spacing:-0.019200pt;}
.ls1f_c00014{letter-spacing:-0.013888pt;}
.ls1d_c00014{letter-spacing:-0.012800pt;}
.ls18_c00014{letter-spacing:-0.006944pt;}
.ls1e_c00014{letter-spacing:-0.006400pt;}
.ls1b_c00014{letter-spacing:0.000000pt;}
.ls6_c00014{letter-spacing:0.006400pt;}
.lsc_c00014{letter-spacing:0.012800pt;}
.ls8_c00014{letter-spacing:0.019200pt;}
.lse_c00014{letter-spacing:0.025600pt;}
.ls11_c00014{letter-spacing:0.032000pt;}
.lsa_c00014{letter-spacing:0.038400pt;}
.ls14_c00014{letter-spacing:0.041664pt;}
.ls7_c00014{letter-spacing:0.044800pt;}
.lsf_c00014{letter-spacing:0.051200pt;}
.ls12_c00014{letter-spacing:0.057600pt;}
.ls5_c00014{letter-spacing:0.064000pt;}
.ls9_c00014{letter-spacing:0.070400pt;}
.ls3_c00014{letter-spacing:0.076800pt;}
.ls2_c00014{letter-spacing:0.083200pt;}
.ls16_c00014{letter-spacing:0.090272pt;}
.ls15_c00014{letter-spacing:0.105600pt;}
.lsd_c00014{letter-spacing:4.160000pt;}
.ls10_c00014{letter-spacing:8.000000pt;}
.ls1_c00014{letter-spacing:9.280000pt;}
.lsb_c00014{letter-spacing:40.640000pt;}
.ls13_c00014{letter-spacing:48.000000pt;}
.ls4_c00014{letter-spacing:82.240000pt;}
.ls0_c00014{letter-spacing:1078.400000pt;}
.ws0_c00014{word-spacing:-17.450272pt;}
.wsd_c00014{word-spacing:-17.401664pt;}
.ws1_c00014{word-spacing:-17.221120pt;}
.wse_c00014{word-spacing:-17.214176pt;}
.ws2_c00014{word-spacing:-16.083200pt;}
.ws3_c00014{word-spacing:-16.076800pt;}
.wsa_c00014{word-spacing:-16.070400pt;}
.ws5_c00014{word-spacing:-16.038400pt;}
.ws9_c00014{word-spacing:-16.032000pt;}
.ws7_c00014{word-spacing:-16.025600pt;}
.ws6_c00014{word-spacing:-16.012800pt;}
.ws4_c00014{word-spacing:-15.974400pt;}
.wsb_c00014{word-spacing:-4.300800pt;}
.wsc_c00014{word-spacing:-3.443200pt;}
.ws8_c00014{word-spacing:-2.841600pt;}
.ws11_c00014{word-spacing:-0.208320pt;}
.ws10_c00014{word-spacing:-0.111104pt;}
.ws25_c00014{word-spacing:-0.097216pt;}
.ws26_c00014{word-spacing:-0.076800pt;}
.ws17_c00014{word-spacing:-0.070400pt;}
.ws13_c00014{word-spacing:-0.064000pt;}
.ws21_c00014{word-spacing:-0.057600pt;}
.ws1b_c00014{word-spacing:-0.051200pt;}
.ws15_c00014{word-spacing:-0.044800pt;}
.ws1c_c00014{word-spacing:-0.038400pt;}
.ws12_c00014{word-spacing:-0.034720pt;}
.ws1e_c00014{word-spacing:-0.032000pt;}
.ws18_c00014{word-spacing:-0.025600pt;}
.ws16_c00014{word-spacing:-0.019200pt;}
.ws19_c00014{word-spacing:-0.012800pt;}
.ws14_c00014{word-spacing:-0.006400pt;}
.wsf_c00014{word-spacing:0.000000pt;}
.ws22_c00014{word-spacing:0.006400pt;}
.ws1f_c00014{word-spacing:0.012800pt;}
.ws20_c00014{word-spacing:0.032000pt;}
.ws1d_c00014{word-spacing:0.038400pt;}
.ws1a_c00014{word-spacing:0.051200pt;}
.ws23_c00014{word-spacing:0.057600pt;}
.ws24_c00014{word-spacing:0.070400pt;}
._3_c00014{margin-left:-8.396800pt;}
._6_c00014{margin-left:-1.164800pt;}
._2_c00014{width:1.061760pt;}
._7_c00014{width:2.636800pt;}
._8_c00014{width:3.763200pt;}
._0_c00014{width:5.117728pt;}
._4_c00014{width:6.912000pt;}
._1_c00014{width:8.332800pt;}
._5_c00014{width:9.600000pt;}
.fs1_c00014{font-size:48.000000pt;}
.fs0_c00014{font-size:64.000000pt;}
.fs2_c00014{font-size:69.440000pt;}
.y0_c00014{bottom:0.000000pt;}
.y1_c00014{bottom:51.067067pt;}
.y34_c00014{bottom:100.347067pt;}
.y33_c00014{bottom:118.347067pt;}
.y32_c00014{bottom:136.347067pt;}
.y31_c00014{bottom:154.347067pt;}
.y30_c00014{bottom:172.347067pt;}
.y2f_c00014{bottom:190.347067pt;}
.y2e_c00014{bottom:208.347067pt;}
.y2d_c00014{bottom:226.754427pt;}
.y2c_c00014{bottom:246.267067pt;}
.y2b_c00014{bottom:273.387067pt;}
.y2a_c00014{bottom:291.387067pt;}
.y29_c00014{bottom:309.387067pt;}
.y28_c00014{bottom:327.387067pt;}
.y27_c00014{bottom:345.387067pt;}
.y26_c00014{bottom:363.387067pt;}
.y25_c00014{bottom:381.387067pt;}
.y24_c00014{bottom:399.387067pt;}
.y23_c00014{bottom:417.387067pt;}
.y22_c00014{bottom:435.387067pt;}
.y21_c00014{bottom:453.387067pt;}
.y20_c00014{bottom:471.387067pt;}
.y1f_c00014{bottom:489.387067pt;}
.y1e_c00014{bottom:507.387067pt;}
.y1d_c00014{bottom:525.387067pt;}
.y1c_c00014{bottom:543.387067pt;}
.y1b_c00014{bottom:561.387067pt;}
.y1a_c00014{bottom:579.387067pt;}
.y19_c00014{bottom:597.387067pt;}
.y18_c00014{bottom:615.387067pt;}
.y17_c00014{bottom:633.387067pt;}
.y16_c00014{bottom:651.387067pt;}
.y15_c00014{bottom:669.387067pt;}
.y14_c00014{bottom:687.387067pt;}
.y13_c00014{bottom:705.387067pt;}
.y12_c00014{bottom:723.387067pt;}
.y11_c00014{bottom:741.387067pt;}
.y10_c00014{bottom:759.387067pt;}
.yf_c00014{bottom:777.387067pt;}
.ye_c00014{bottom:795.387067pt;}
.yd_c00014{bottom:813.387067pt;}
.yc_c00014{bottom:831.387067pt;}
.yb_c00014{bottom:849.387067pt;}
.ya_c00014{bottom:867.387067pt;}
.y9_c00014{bottom:885.387067pt;}
.y8_c00014{bottom:903.387067pt;}
.y7_c00014{bottom:921.387067pt;}
.y6_c00014{bottom:939.387067pt;}
.y5_c00014{bottom:957.387067pt;}
.y4_c00014{bottom:975.387067pt;}
.y3_c00014{bottom:993.783867pt;}
.y2_c00014{bottom:1013.227067pt;}
.h3_c00014{height:53.562500pt;}
.h4_c00014{height:54.125000pt;}
.h2_c00014{height:58.183125pt;}
.h1_c00014{height:64.142500pt;}
.h0_c00014{height:1122.666667pt;}
.w1_c00014{width:793.333333pt;}
.w0_c00014{width:793.626667pt;}
.x0_c00014{left:0.000000pt;}
.x1_c00014{left:113.440000pt;}
.x3_c00014{left:125.440000pt;}
.x2_c00014{left:137.278160pt;}
.x4_c00014{left:139.920000pt;}
.x5_c00014{left:151.280000pt;}
.x6_c00014{left:161.440000pt;}
.x7_c00014{left:173.440000pt;}
.x8_c00014{left:245.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_c00015 {
    display:none;
  }
  .loading-indicator_c00015.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00015 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00015 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00015" -> "#page-container .classname_c00015")
 */
.pf_c00015 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00015 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00015 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00015 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00015 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00015 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00015 {overflow:visible;}
  }
}
.c_c00015 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00015 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00015:after { /* webkit #35443 */
  content: '';
}
.t_c00015:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00015 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00015 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00015 { /* info for Javascript */
  display:none;
}
.l_c00015 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00015 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00015 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00015:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00015;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_5c758ef4421c36dd2d00ce82.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;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_c00015;src:url('chunks/assets/font_02e9d06228f696686e5ffccb.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00015;src:url('chunks/assets/font_296cd1ed9cc4563b40d0bed6.woff2')format("woff");}.ff4_c00015{font-family:ff4_c00015;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00015;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00015{font-family:ff5_c00015;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00015{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.v1_c00015{vertical-align:15.840000px;}
.ls24_c00015{letter-spacing:-0.164052px;}
.ls1c_c00015{letter-spacing:-0.156240px;}
.ls20_c00015{letter-spacing:-0.134568px;}
.ls18_c00015{letter-spacing:-0.124956px;}
.ls1f_c00015{letter-spacing:-0.076896px;}
.ls22_c00015{letter-spacing:-0.062496px;}
.ls1a_c00015{letter-spacing:-0.046872px;}
.ls23_c00015{letter-spacing:-0.039060px;}
.ls17_c00015{letter-spacing:-0.038448px;}
.ls21_c00015{letter-spacing:-0.031248px;}
.ls14_c00015{letter-spacing:-0.028800px;}
.ls1b_c00015{letter-spacing:-0.015624px;}
.ls16_c00015{letter-spacing:-0.014400px;}
.ls1e_c00015{letter-spacing:-0.007812px;}
.ls15_c00015{letter-spacing:-0.007200px;}
.ls13_c00015{letter-spacing:0.000000px;}
.lsf_c00015{letter-spacing:0.007812px;}
.ls11_c00015{letter-spacing:0.021600px;}
.ls19_c00015{letter-spacing:0.023436px;}
.lsd_c00015{letter-spacing:0.028800px;}
.ls6_c00015{letter-spacing:0.036000px;}
.ls8_c00015{letter-spacing:0.043200px;}
.ls7_c00015{letter-spacing:0.050400px;}
.ls5_c00015{letter-spacing:0.057600px;}
.ls4_c00015{letter-spacing:0.064800px;}
.lsc_c00015{letter-spacing:0.072000px;}
.ls2_c00015{letter-spacing:0.079200px;}
.ls12_c00015{letter-spacing:0.086400px;}
.ls3_c00015{letter-spacing:0.093600px;}
.ls1d_c00015{letter-spacing:0.101556px;}
.lsa_c00015{letter-spacing:10.080000px;}
.lse_c00015{letter-spacing:10.440000px;}
.lsb_c00015{letter-spacing:16.200000px;}
.ls10_c00015{letter-spacing:22.320000px;}
.ls9_c00015{letter-spacing:45.720000px;}
.ls1_c00015{letter-spacing:92.520000px;}
.ls0_c00015{letter-spacing:1220.760000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00015{word-spacing:-19.631556px;}
.ws3_c00015{word-spacing:-19.553436px;}
.ws8_c00015{word-spacing:-19.498752px;}
.ws4_c00015{word-spacing:-19.373760px;}
.ws9_c00015{word-spacing:-19.365948px;}
.ws1_c00015{word-spacing:-18.093600px;}
.ws7_c00015{word-spacing:-18.086400px;}
.ws5_c00015{word-spacing:-18.079200px;}
.ws2_c00015{word-spacing:-18.043200px;}
.ws0_c00015{word-spacing:-17.971200px;}
.wsa_c00015{word-spacing:-4.478400px;}
.ws23_c00015{word-spacing:-0.179676px;}
.ws21_c00015{word-spacing:-0.164052px;}
.ws1c_c00015{word-spacing:-0.101556px;}
.ws1b_c00015{word-spacing:-0.093600px;}
.ws1a_c00015{word-spacing:-0.086400px;}
.ws1d_c00015{word-spacing:-0.085932px;}
.wsc_c00015{word-spacing:-0.079200px;}
.ws17_c00015{word-spacing:-0.078120px;}
.ws18_c00015{word-spacing:-0.072000px;}
.wse_c00015{word-spacing:-0.064800px;}
.wsf_c00015{word-spacing:-0.057600px;}
.ws24_c00015{word-spacing:-0.054684px;}
.ws13_c00015{word-spacing:-0.050400px;}
.ws16_c00015{word-spacing:-0.046872px;}
.ws27_c00015{word-spacing:-0.043200px;}
.ws12_c00015{word-spacing:-0.036000px;}
.ws22_c00015{word-spacing:-0.021600px;}
.wsb_c00015{word-spacing:0.000000px;}
.wsd_c00015{word-spacing:0.007200px;}
.ws10_c00015{word-spacing:0.014400px;}
.ws11_c00015{word-spacing:0.036000px;}
.ws25_c00015{word-spacing:0.057600px;}
.ws26_c00015{word-spacing:0.064800px;}
.ws1f_c00015{word-spacing:0.076896px;}
.ws19_c00015{word-spacing:0.093600px;}
.ws14_c00015{word-spacing:0.124956px;}
.ws15_c00015{word-spacing:0.211464px;}
.ws20_c00015{word-spacing:0.221076px;}
.ws1e_c00015{word-spacing:1.566756px;}
._3_c00015{margin-left:-9.446400px;}
._1_c00015{margin-left:-1.843200px;}
._a_c00015{width:1.274400px;}
._0_c00015{width:2.332800px;}
._9_c00015{width:4.334400px;}
._4_c00015{width:5.702400px;}
._8_c00015{width:7.905600px;}
._7_c00015{width:9.732384px;}
._2_c00015{width:10.800000px;}
._c_c00015{width:11.966400px;}
._5_c00015{width:13.766400px;}
._6_c00015{width:15.213600px;}
._b_c00015{width:17.942436px;}
.fc1_c00015{color:rgb(0,0,255);}
.fc0_c00015{color:rgb(0,0,0);}
.fs1_c00015{font-size:54.000000px;}
.fs0_c00015{font-size:72.000000px;}
.fs3_c00015{font-size:78.120000px;}
.fs2_c00015{font-size:96.120000px;}
.y0_c00015{bottom:0.000000px;}
.y2_c00015{bottom:57.450450px;}
.y2a_c00015{bottom:130.793790px;}
.y29_c00015{bottom:193.800450px;}
.y28_c00015{bottom:255.270450px;}
.y27_c00015{bottom:275.520450px;}
.y26_c00015{bottom:295.770450px;}
.y25_c00015{bottom:316.020450px;}
.y24_c00015{bottom:336.270450px;}
.y23_c00015{bottom:356.520450px;}
.y22_c00015{bottom:376.770450px;}
.y21_c00015{bottom:397.380450px;}
.y20_c00015{bottom:427.890600px;}
.y1f_c00015{bottom:448.140600px;}
.y1e_c00015{bottom:468.390600px;}
.y1d_c00015{bottom:489.090600px;}
.y1c_c00015{bottom:521.120730px;}
.y1b_c00015{bottom:548.130450px;}
.y1a_c00015{bottom:610.058730px;}
.y19_c00015{bottom:632.010450px;}
.y18_c00015{bottom:662.520450px;}
.y17_c00015{bottom:682.770450px;}
.y16_c00015{bottom:703.020450px;}
.y15_c00015{bottom:723.270450px;}
.y14_c00015{bottom:743.520450px;}
.y13_c00015{bottom:763.770450px;}
.y12_c00015{bottom:784.020450px;}
.y11_c00015{bottom:804.270450px;}
.y10_c00015{bottom:824.520450px;}
.yf_c00015{bottom:845.130450px;}
.ye_c00015{bottom:877.170450px;}
.yd_c00015{bottom:938.640450px;}
.yc_c00015{bottom:958.890450px;}
.yb_c00015{bottom:979.140450px;}
.ya_c00015{bottom:999.390450px;}
.y9_c00015{bottom:1019.640450px;}
.y8_c00015{bottom:1039.890450px;}
.y7_c00015{bottom:1060.140450px;}
.y6_c00015{bottom:1080.390450px;}
.y5_c00015{bottom:1100.640450px;}
.y4_c00015{bottom:1120.890450px;}
.y3_c00015{bottom:1141.140450px;}
.y1_c00015{bottom:1193.250450px;}
.h1_c00015{height:47.988281px;}
.h3_c00015{height:60.257812px;}
.h5_c00015{height:65.456016px;}
.h2_c00015{height:72.160313px;}
.h4_c00015{height:80.538047px;}
.h0_c00015{height:1263.000000px;}
.w1_c00015{width:892.500000px;}
.w0_c00015{width:892.830000px;}
.x0_c00015{left:0.000000px;}
.x1_c00015{left:127.620000px;}
.x3_c00015{left:141.120000px;}
.x6_c00015{left:154.437930px;}
.x2_c00015{left:157.410000px;}
.x4_c00015{left:168.120000px;}
.x5_c00015{left:170.190000px;}
.x7_c00015{left:195.119730px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.v1_c00015{vertical-align:14.080000pt;}
.ls24_c00015{letter-spacing:-0.145824pt;}
.ls1c_c00015{letter-spacing:-0.138880pt;}
.ls20_c00015{letter-spacing:-0.119616pt;}
.ls18_c00015{letter-spacing:-0.111072pt;}
.ls1f_c00015{letter-spacing:-0.068352pt;}
.ls22_c00015{letter-spacing:-0.055552pt;}
.ls1a_c00015{letter-spacing:-0.041664pt;}
.ls23_c00015{letter-spacing:-0.034720pt;}
.ls17_c00015{letter-spacing:-0.034176pt;}
.ls21_c00015{letter-spacing:-0.027776pt;}
.ls14_c00015{letter-spacing:-0.025600pt;}
.ls1b_c00015{letter-spacing:-0.013888pt;}
.ls16_c00015{letter-spacing:-0.012800pt;}
.ls1e_c00015{letter-spacing:-0.006944pt;}
.ls15_c00015{letter-spacing:-0.006400pt;}
.ls13_c00015{letter-spacing:0.000000pt;}
.lsf_c00015{letter-spacing:0.006944pt;}
.ls11_c00015{letter-spacing:0.019200pt;}
.ls19_c00015{letter-spacing:0.020832pt;}
.lsd_c00015{letter-spacing:0.025600pt;}
.ls6_c00015{letter-spacing:0.032000pt;}
.ls8_c00015{letter-spacing:0.038400pt;}
.ls7_c00015{letter-spacing:0.044800pt;}
.ls5_c00015{letter-spacing:0.051200pt;}
.ls4_c00015{letter-spacing:0.057600pt;}
.lsc_c00015{letter-spacing:0.064000pt;}
.ls2_c00015{letter-spacing:0.070400pt;}
.ls12_c00015{letter-spacing:0.076800pt;}
.ls3_c00015{letter-spacing:0.083200pt;}
.ls1d_c00015{letter-spacing:0.090272pt;}
.lsa_c00015{letter-spacing:8.960000pt;}
.lse_c00015{letter-spacing:9.280000pt;}
.lsb_c00015{letter-spacing:14.400000pt;}
.ls10_c00015{letter-spacing:19.840000pt;}
.ls9_c00015{letter-spacing:40.640000pt;}
.ls1_c00015{letter-spacing:82.240000pt;}
.ls0_c00015{letter-spacing:1085.120000pt;}
.ws6_c00015{word-spacing:-17.450272pt;}
.ws3_c00015{word-spacing:-17.380832pt;}
.ws8_c00015{word-spacing:-17.332224pt;}
.ws4_c00015{word-spacing:-17.221120pt;}
.ws9_c00015{word-spacing:-17.214176pt;}
.ws1_c00015{word-spacing:-16.083200pt;}
.ws7_c00015{word-spacing:-16.076800pt;}
.ws5_c00015{word-spacing:-16.070400pt;}
.ws2_c00015{word-spacing:-16.038400pt;}
.ws0_c00015{word-spacing:-15.974400pt;}
.wsa_c00015{word-spacing:-3.980800pt;}
.ws23_c00015{word-spacing:-0.159712pt;}
.ws21_c00015{word-spacing:-0.145824pt;}
.ws1c_c00015{word-spacing:-0.090272pt;}
.ws1b_c00015{word-spacing:-0.083200pt;}
.ws1a_c00015{word-spacing:-0.076800pt;}
.ws1d_c00015{word-spacing:-0.076384pt;}
.wsc_c00015{word-spacing:-0.070400pt;}
.ws17_c00015{word-spacing:-0.069440pt;}
.ws18_c00015{word-spacing:-0.064000pt;}
.wse_c00015{word-spacing:-0.057600pt;}
.wsf_c00015{word-spacing:-0.051200pt;}
.ws24_c00015{word-spacing:-0.048608pt;}
.ws13_c00015{word-spacing:-0.044800pt;}
.ws16_c00015{word-spacing:-0.041664pt;}
.ws27_c00015{word-spacing:-0.038400pt;}
.ws12_c00015{word-spacing:-0.032000pt;}
.ws22_c00015{word-spacing:-0.019200pt;}
.wsb_c00015{word-spacing:0.000000pt;}
.wsd_c00015{word-spacing:0.006400pt;}
.ws10_c00015{word-spacing:0.012800pt;}
.ws11_c00015{word-spacing:0.032000pt;}
.ws25_c00015{word-spacing:0.051200pt;}
.ws26_c00015{word-spacing:0.057600pt;}
.ws1f_c00015{word-spacing:0.068352pt;}
.ws19_c00015{word-spacing:0.083200pt;}
.ws14_c00015{word-spacing:0.111072pt;}
.ws15_c00015{word-spacing:0.187968pt;}
.ws20_c00015{word-spacing:0.196512pt;}
.ws1e_c00015{word-spacing:1.392672pt;}
._3_c00015{margin-left:-8.396800pt;}
._1_c00015{margin-left:-1.638400pt;}
._a_c00015{width:1.132800pt;}
._0_c00015{width:2.073600pt;}
._9_c00015{width:3.852800pt;}
._4_c00015{width:5.068800pt;}
._8_c00015{width:7.027200pt;}
._7_c00015{width:8.651008pt;}
._2_c00015{width:9.600000pt;}
._c_c00015{width:10.636800pt;}
._5_c00015{width:12.236800pt;}
._6_c00015{width:13.523200pt;}
._b_c00015{width:15.948832pt;}
.fs1_c00015{font-size:48.000000pt;}
.fs0_c00015{font-size:64.000000pt;}
.fs3_c00015{font-size:69.440000pt;}
.fs2_c00015{font-size:85.440000pt;}
.y0_c00015{bottom:0.000000pt;}
.y2_c00015{bottom:51.067067pt;}
.y2a_c00015{bottom:116.261147pt;}
.y29_c00015{bottom:172.267067pt;}
.y28_c00015{bottom:226.907067pt;}
.y27_c00015{bottom:244.907067pt;}
.y26_c00015{bottom:262.907067pt;}
.y25_c00015{bottom:280.907067pt;}
.y24_c00015{bottom:298.907067pt;}
.y23_c00015{bottom:316.907067pt;}
.y22_c00015{bottom:334.907067pt;}
.y21_c00015{bottom:353.227067pt;}
.y20_c00015{bottom:380.347200pt;}
.y1f_c00015{bottom:398.347200pt;}
.y1e_c00015{bottom:416.347200pt;}
.y1d_c00015{bottom:434.747200pt;}
.y1c_c00015{bottom:463.218427pt;}
.y1b_c00015{bottom:487.227067pt;}
.y1a_c00015{bottom:542.274427pt;}
.y19_c00015{bottom:561.787067pt;}
.y18_c00015{bottom:588.907067pt;}
.y17_c00015{bottom:606.907067pt;}
.y16_c00015{bottom:624.907067pt;}
.y15_c00015{bottom:642.907067pt;}
.y14_c00015{bottom:660.907067pt;}
.y13_c00015{bottom:678.907067pt;}
.y12_c00015{bottom:696.907067pt;}
.y11_c00015{bottom:714.907067pt;}
.y10_c00015{bottom:732.907067pt;}
.yf_c00015{bottom:751.227067pt;}
.ye_c00015{bottom:779.707067pt;}
.yd_c00015{bottom:834.347067pt;}
.yc_c00015{bottom:852.347067pt;}
.yb_c00015{bottom:870.347067pt;}
.ya_c00015{bottom:888.347067pt;}
.y9_c00015{bottom:906.347067pt;}
.y8_c00015{bottom:924.347067pt;}
.y7_c00015{bottom:942.347067pt;}
.y6_c00015{bottom:960.347067pt;}
.y5_c00015{bottom:978.347067pt;}
.y4_c00015{bottom:996.347067pt;}
.y3_c00015{bottom:1014.347067pt;}
.y1_c00015{bottom:1060.667067pt;}
.h1_c00015{height:42.656250pt;}
.h3_c00015{height:53.562500pt;}
.h5_c00015{height:58.183125pt;}
.h2_c00015{height:64.142500pt;}
.h4_c00015{height:71.589375pt;}
.h0_c00015{height:1122.666667pt;}
.w1_c00015{width:793.333333pt;}
.w0_c00015{width:793.626667pt;}
.x0_c00015{left:0.000000pt;}
.x1_c00015{left:113.440000pt;}
.x3_c00015{left:125.440000pt;}
.x6_c00015{left:137.278160pt;}
.x2_c00015{left:139.920000pt;}
.x4_c00015{left:149.440000pt;}
.x5_c00015{left:151.280000pt;}
.x7_c00015{left:173.439760pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00016;src:url('chunks/assets/font_8298b30a6ce087655629451a.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;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_c00016;src:url('chunks/assets/font_66804995d9f8025d11d4c91f.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00016;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00016;src:url('chunks/assets/font_a59bba8dc6ffd7c3a9471d5e.woff2')format("woff");}.ff5_c00016{font-family:ff5_c00016;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00016;src:url('chunks/assets/font_f27d48fa2d7a6c1daa5fc7a5.woff2')format("woff");}.ff6_c00016{font-family:ff6_c00016;line-height:0.684570;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00016{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.v1_c00016{vertical-align:15.840000px;}
.ls1b_c00016{letter-spacing:-0.156240px;}
.ls25_c00016{letter-spacing:-0.109368px;}
.ls16_c00016{letter-spacing:-0.096120px;}
.ls1a_c00016{letter-spacing:-0.093744px;}
.ls24_c00016{letter-spacing:-0.085932px;}
.ls15_c00016{letter-spacing:-0.076896px;}
.ls22_c00016{letter-spacing:-0.054684px;}
.ls14_c00016{letter-spacing:-0.048060px;}
.ls23_c00016{letter-spacing:-0.046872px;}
.ls1d_c00016{letter-spacing:-0.028800px;}
.ls19_c00016{letter-spacing:-0.023436px;}
.ls13_c00016{letter-spacing:-0.016200px;}
.ls21_c00016{letter-spacing:-0.015624px;}
.ls1f_c00016{letter-spacing:-0.014400px;}
.ls1c_c00016{letter-spacing:-0.007200px;}
.ls17_c00016{letter-spacing:0.000000px;}
.lsb_c00016{letter-spacing:0.007200px;}
.ls6_c00016{letter-spacing:0.014400px;}
.ls18_c00016{letter-spacing:0.023436px;}
.lsf_c00016{letter-spacing:0.028800px;}
.lsd_c00016{letter-spacing:0.043200px;}
.lse_c00016{letter-spacing:0.050400px;}
.ls9_c00016{letter-spacing:0.057600px;}
.lsa_c00016{letter-spacing:0.064800px;}
.ls4_c00016{letter-spacing:0.072000px;}
.ls8_c00016{letter-spacing:0.079200px;}
.ls7_c00016{letter-spacing:0.086400px;}
.ls3_c00016{letter-spacing:0.093600px;}
.ls20_c00016{letter-spacing:0.101556px;}
.lsc_c00016{letter-spacing:10.440000px;}
.ls1e_c00016{letter-spacing:10.893600px;}
.ls11_c00016{letter-spacing:11.880000px;}
.ls2_c00016{letter-spacing:16.200000px;}
.ls10_c00016{letter-spacing:58.680000px;}
.ls1_c00016{letter-spacing:60.120000px;}
.ls12_c00016{letter-spacing:78.840000px;}
.ls5_c00016{letter-spacing:92.520000px;}
.ls0_c00016{letter-spacing:1213.200000px;}
.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;}
}
.ws5_c00016{word-spacing:-28.893600px;}
.ws9_c00016{word-spacing:-19.631556px;}
.ws0_c00016{word-spacing:-19.553436px;}
.ws1_c00016{word-spacing:-19.373760px;}
.ws2_c00016{word-spacing:-18.093600px;}
.ws4_c00016{word-spacing:-18.086400px;}
.wsd_c00016{word-spacing:-18.050400px;}
.wsc_c00016{word-spacing:-18.028800px;}
.wsa_c00016{word-spacing:-18.000000px;}
.ws3_c00016{word-spacing:-17.971200px;}
.ws8_c00016{word-spacing:-5.572800px;}
.ws6_c00016{word-spacing:-5.097600px;}
.ws7_c00016{word-spacing:-4.939200px;}
.wsb_c00016{word-spacing:-2.774400px;}
.ws1d_c00016{word-spacing:-0.257796px;}
.ws13_c00016{word-spacing:-0.158400px;}
.ws23_c00016{word-spacing:-0.117180px;}
.ws16_c00016{word-spacing:-0.079200px;}
.ws22_c00016{word-spacing:-0.072000px;}
.ws12_c00016{word-spacing:-0.070308px;}
.ws1b_c00016{word-spacing:-0.064800px;}
.ws19_c00016{word-spacing:-0.057600px;}
.ws20_c00016{word-spacing:-0.050400px;}
.ws1f_c00016{word-spacing:-0.043200px;}
.ws1e_c00016{word-spacing:-0.039060px;}
.ws14_c00016{word-spacing:-0.036000px;}
.ws2a_c00016{word-spacing:-0.028800px;}
.ws15_c00016{word-spacing:-0.014400px;}
.ws24_c00016{word-spacing:-0.007812px;}
.ws21_c00016{word-spacing:-0.007200px;}
.wse_c00016{word-spacing:0.000000px;}
.ws26_c00016{word-spacing:0.007200px;}
.ws17_c00016{word-spacing:0.014400px;}
.ws25_c00016{word-spacing:0.015624px;}
.ws1c_c00016{word-spacing:0.050400px;}
.ws1a_c00016{word-spacing:0.057600px;}
.ws18_c00016{word-spacing:0.064800px;}
.ws28_c00016{word-spacing:0.079200px;}
.ws29_c00016{word-spacing:0.093600px;}
.wsf_c00016{word-spacing:0.134568px;}
.ws11_c00016{word-spacing:0.182628px;}
.ws27_c00016{word-spacing:6.840000px;}
.ws10_c00016{word-spacing:79.010640px;}
._9_c00016{margin-left:-10.800000px;}
._3_c00016{margin-left:-9.446400px;}
._8_c00016{margin-left:-2.622672px;}
._5_c00016{margin-left:-1.440000px;}
._a_c00016{width:1.238400px;}
._2_c00016{width:2.633616px;}
._4_c00016{width:3.873600px;}
._7_c00016{width:5.248800px;}
._0_c00016{width:6.257412px;}
._e_c00016{width:7.416000px;}
._1_c00016{width:8.591472px;}
._d_c00016{width:9.773244px;}
._6_c00016{width:10.800000px;}
._c_c00016{width:12.484800px;}
._b_c00016{width:13.896000px;}
.fc0_c00016{color:rgb(0,0,0);}
.fs1_c00016{font-size:54.000000px;}
.fs0_c00016{font-size:72.000000px;}
.fs3_c00016{font-size:78.120000px;}
.fs2_c00016{font-size:96.120000px;}
.y0_c00016{bottom:0.000000px;}
.y1_c00016{bottom:57.450450px;}
.y32_c00016{bottom:123.600450px;}
.y31_c00016{bottom:143.850450px;}
.y30_c00016{bottom:164.100450px;}
.y2f_c00016{bottom:184.350450px;}
.y2e_c00016{bottom:204.600450px;}
.y2d_c00016{bottom:224.850450px;}
.y2c_c00016{bottom:245.100450px;}
.y2b_c00016{bottom:265.350450px;}
.y2a_c00016{bottom:285.600450px;}
.y29_c00016{bottom:305.850450px;}
.y28_c00016{bottom:326.100450px;}
.y27_c00016{bottom:346.350450px;}
.y26_c00016{bottom:366.600450px;}
.y25_c00016{bottom:386.850450px;}
.y24_c00016{bottom:407.100450px;}
.y23_c00016{bottom:427.350450px;}
.y22_c00016{bottom:447.600450px;}
.y21_c00016{bottom:467.850450px;}
.y20_c00016{bottom:488.100450px;}
.y1f_c00016{bottom:508.350450px;}
.y1e_c00016{bottom:528.600450px;}
.y1d_c00016{bottom:548.850450px;}
.y1c_c00016{bottom:569.100450px;}
.y1b_c00016{bottom:589.350450px;}
.y1a_c00016{bottom:609.600450px;}
.y19_c00016{bottom:629.850450px;}
.y18_c00016{bottom:650.100450px;}
.y17_c00016{bottom:670.800450px;}
.y16_c00016{bottom:701.310450px;}
.y15_c00016{bottom:721.560450px;}
.y14_c00016{bottom:741.810450px;}
.y13_c00016{bottom:762.060450px;}
.y12_c00016{bottom:782.310450px;}
.y11_c00016{bottom:802.560450px;}
.y10_c00016{bottom:822.810450px;}
.yf_c00016{bottom:843.510450px;}
.ye_c00016{bottom:874.020450px;}
.yd_c00016{bottom:894.270450px;}
.yc_c00016{bottom:914.520450px;}
.yb_c00016{bottom:934.770450px;}
.ya_c00016{bottom:955.020450px;}
.y9_c00016{bottom:975.270450px;}
.y8_c00016{bottom:995.520450px;}
.y7_c00016{bottom:1015.770450px;}
.y6_c00016{bottom:1036.020450px;}
.y5_c00016{bottom:1056.270450px;}
.y4_c00016{bottom:1076.880450px;}
.y3_c00016{bottom:1108.910730px;}
.y2_c00016{bottom:1135.920450px;}
.h4_c00016{height:60.257812px;}
.h3_c00016{height:65.456016px;}
.h1_c00016{height:72.160312px;}
.h2_c00016{height:80.538047px;}
.h0_c00016{height:1263.000000px;}
.w1_c00016{width:892.500000px;}
.w0_c00016{width:892.830000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:127.620000px;}
.x3_c00016{left:141.120000px;}
.x4_c00016{left:157.410000px;}
.x5_c00016{left:168.120000px;}
.x6_c00016{left:170.206800px;}
.x7_c00016{left:181.636800px;}
.x2_c00016{left:195.119730px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.v1_c00016{vertical-align:14.080000pt;}
.ls1b_c00016{letter-spacing:-0.138880pt;}
.ls25_c00016{letter-spacing:-0.097216pt;}
.ls16_c00016{letter-spacing:-0.085440pt;}
.ls1a_c00016{letter-spacing:-0.083328pt;}
.ls24_c00016{letter-spacing:-0.076384pt;}
.ls15_c00016{letter-spacing:-0.068352pt;}
.ls22_c00016{letter-spacing:-0.048608pt;}
.ls14_c00016{letter-spacing:-0.042720pt;}
.ls23_c00016{letter-spacing:-0.041664pt;}
.ls1d_c00016{letter-spacing:-0.025600pt;}
.ls19_c00016{letter-spacing:-0.020832pt;}
.ls13_c00016{letter-spacing:-0.014400pt;}
.ls21_c00016{letter-spacing:-0.013888pt;}
.ls1f_c00016{letter-spacing:-0.012800pt;}
.ls1c_c00016{letter-spacing:-0.006400pt;}
.ls17_c00016{letter-spacing:0.000000pt;}
.lsb_c00016{letter-spacing:0.006400pt;}
.ls6_c00016{letter-spacing:0.012800pt;}
.ls18_c00016{letter-spacing:0.020832pt;}
.lsf_c00016{letter-spacing:0.025600pt;}
.lsd_c00016{letter-spacing:0.038400pt;}
.lse_c00016{letter-spacing:0.044800pt;}
.ls9_c00016{letter-spacing:0.051200pt;}
.lsa_c00016{letter-spacing:0.057600pt;}
.ls4_c00016{letter-spacing:0.064000pt;}
.ls8_c00016{letter-spacing:0.070400pt;}
.ls7_c00016{letter-spacing:0.076800pt;}
.ls3_c00016{letter-spacing:0.083200pt;}
.ls20_c00016{letter-spacing:0.090272pt;}
.lsc_c00016{letter-spacing:9.280000pt;}
.ls1e_c00016{letter-spacing:9.683200pt;}
.ls11_c00016{letter-spacing:10.560000pt;}
.ls2_c00016{letter-spacing:14.400000pt;}
.ls10_c00016{letter-spacing:52.160000pt;}
.ls1_c00016{letter-spacing:53.440000pt;}
.ls12_c00016{letter-spacing:70.080000pt;}
.ls5_c00016{letter-spacing:82.240000pt;}
.ls0_c00016{letter-spacing:1078.400000pt;}
.ws5_c00016{word-spacing:-25.683200pt;}
.ws9_c00016{word-spacing:-17.450272pt;}
.ws0_c00016{word-spacing:-17.380832pt;}
.ws1_c00016{word-spacing:-17.221120pt;}
.ws2_c00016{word-spacing:-16.083200pt;}
.ws4_c00016{word-spacing:-16.076800pt;}
.wsd_c00016{word-spacing:-16.044800pt;}
.wsc_c00016{word-spacing:-16.025600pt;}
.wsa_c00016{word-spacing:-16.000000pt;}
.ws3_c00016{word-spacing:-15.974400pt;}
.ws8_c00016{word-spacing:-4.953600pt;}
.ws6_c00016{word-spacing:-4.531200pt;}
.ws7_c00016{word-spacing:-4.390400pt;}
.wsb_c00016{word-spacing:-2.466133pt;}
.ws1d_c00016{word-spacing:-0.229152pt;}
.ws13_c00016{word-spacing:-0.140800pt;}
.ws23_c00016{word-spacing:-0.104160pt;}
.ws16_c00016{word-spacing:-0.070400pt;}
.ws22_c00016{word-spacing:-0.064000pt;}
.ws12_c00016{word-spacing:-0.062496pt;}
.ws1b_c00016{word-spacing:-0.057600pt;}
.ws19_c00016{word-spacing:-0.051200pt;}
.ws20_c00016{word-spacing:-0.044800pt;}
.ws1f_c00016{word-spacing:-0.038400pt;}
.ws1e_c00016{word-spacing:-0.034720pt;}
.ws14_c00016{word-spacing:-0.032000pt;}
.ws2a_c00016{word-spacing:-0.025600pt;}
.ws15_c00016{word-spacing:-0.012800pt;}
.ws24_c00016{word-spacing:-0.006944pt;}
.ws21_c00016{word-spacing:-0.006400pt;}
.wse_c00016{word-spacing:0.000000pt;}
.ws26_c00016{word-spacing:0.006400pt;}
.ws17_c00016{word-spacing:0.012800pt;}
.ws25_c00016{word-spacing:0.013888pt;}
.ws1c_c00016{word-spacing:0.044800pt;}
.ws1a_c00016{word-spacing:0.051200pt;}
.ws18_c00016{word-spacing:0.057600pt;}
.ws28_c00016{word-spacing:0.070400pt;}
.ws29_c00016{word-spacing:0.083200pt;}
.wsf_c00016{word-spacing:0.119616pt;}
.ws11_c00016{word-spacing:0.162336pt;}
.ws27_c00016{word-spacing:6.080000pt;}
.ws10_c00016{word-spacing:70.231680pt;}
._9_c00016{margin-left:-9.600000pt;}
._3_c00016{margin-left:-8.396800pt;}
._8_c00016{margin-left:-2.331264pt;}
._5_c00016{margin-left:-1.280000pt;}
._a_c00016{width:1.100800pt;}
._2_c00016{width:2.340992pt;}
._4_c00016{width:3.443200pt;}
._7_c00016{width:4.665600pt;}
._0_c00016{width:5.562144pt;}
._e_c00016{width:6.592000pt;}
._1_c00016{width:7.636864pt;}
._d_c00016{width:8.687328pt;}
._6_c00016{width:9.600000pt;}
._c_c00016{width:11.097600pt;}
._b_c00016{width:12.352000pt;}
.fs1_c00016{font-size:48.000000pt;}
.fs0_c00016{font-size:64.000000pt;}
.fs3_c00016{font-size:69.440000pt;}
.fs2_c00016{font-size:85.440000pt;}
.y0_c00016{bottom:0.000000pt;}
.y1_c00016{bottom:51.067067pt;}
.y32_c00016{bottom:109.867067pt;}
.y31_c00016{bottom:127.867067pt;}
.y30_c00016{bottom:145.867067pt;}
.y2f_c00016{bottom:163.867067pt;}
.y2e_c00016{bottom:181.867067pt;}
.y2d_c00016{bottom:199.867067pt;}
.y2c_c00016{bottom:217.867067pt;}
.y2b_c00016{bottom:235.867067pt;}
.y2a_c00016{bottom:253.867067pt;}
.y29_c00016{bottom:271.867067pt;}
.y28_c00016{bottom:289.867067pt;}
.y27_c00016{bottom:307.867067pt;}
.y26_c00016{bottom:325.867067pt;}
.y25_c00016{bottom:343.867067pt;}
.y24_c00016{bottom:361.867067pt;}
.y23_c00016{bottom:379.867067pt;}
.y22_c00016{bottom:397.867067pt;}
.y21_c00016{bottom:415.867067pt;}
.y20_c00016{bottom:433.867067pt;}
.y1f_c00016{bottom:451.867067pt;}
.y1e_c00016{bottom:469.867067pt;}
.y1d_c00016{bottom:487.867067pt;}
.y1c_c00016{bottom:505.867067pt;}
.y1b_c00016{bottom:523.867067pt;}
.y1a_c00016{bottom:541.867067pt;}
.y19_c00016{bottom:559.867067pt;}
.y18_c00016{bottom:577.867067pt;}
.y17_c00016{bottom:596.267067pt;}
.y16_c00016{bottom:623.387067pt;}
.y15_c00016{bottom:641.387067pt;}
.y14_c00016{bottom:659.387067pt;}
.y13_c00016{bottom:677.387067pt;}
.y12_c00016{bottom:695.387067pt;}
.y11_c00016{bottom:713.387067pt;}
.y10_c00016{bottom:731.387067pt;}
.yf_c00016{bottom:749.787067pt;}
.ye_c00016{bottom:776.907067pt;}
.yd_c00016{bottom:794.907067pt;}
.yc_c00016{bottom:812.907067pt;}
.yb_c00016{bottom:830.907067pt;}
.ya_c00016{bottom:848.907067pt;}
.y9_c00016{bottom:866.907067pt;}
.y8_c00016{bottom:884.907067pt;}
.y7_c00016{bottom:902.907067pt;}
.y6_c00016{bottom:920.907067pt;}
.y5_c00016{bottom:938.907067pt;}
.y4_c00016{bottom:957.227067pt;}
.y3_c00016{bottom:985.698427pt;}
.y2_c00016{bottom:1009.707067pt;}
.h4_c00016{height:53.562500pt;}
.h3_c00016{height:58.183125pt;}
.h1_c00016{height:64.142500pt;}
.h2_c00016{height:71.589375pt;}
.h0_c00016{height:1122.666667pt;}
.w1_c00016{width:793.333333pt;}
.w0_c00016{width:793.626667pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:113.440000pt;}
.x3_c00016{left:125.440000pt;}
.x4_c00016{left:139.920000pt;}
.x5_c00016{left:149.440000pt;}
.x6_c00016{left:151.294933pt;}
.x7_c00016{left:161.454933pt;}
.x2_c00016{left:173.439760pt;}
}





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

.ir_c00017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00017;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_8298b30a6ce087655629451a.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;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_c00017;src:url('chunks/assets/font_c27a62e20727095b947dca9c.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00017;src:url('chunks/assets/font_b205cfccee49615bd6f89664.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.v1_c00017{vertical-align:15.840000px;}
.ls1e_c00017{letter-spacing:-0.140616px;}
.ls16_c00017{letter-spacing:-0.117180px;}
.ls1b_c00017{letter-spacing:-0.109368px;}
.ls1d_c00017{letter-spacing:-0.085932px;}
.ls15_c00017{letter-spacing:-0.046872px;}
.ls1a_c00017{letter-spacing:-0.039060px;}
.ls1c_c00017{letter-spacing:-0.031248px;}
.ls18_c00017{letter-spacing:-0.028800px;}
.ls19_c00017{letter-spacing:-0.014400px;}
.ls13_c00017{letter-spacing:-0.007200px;}
.ls11_c00017{letter-spacing:0.000000px;}
.ls7_c00017{letter-spacing:0.007200px;}
.ls9_c00017{letter-spacing:0.014400px;}
.ls1_c00017{letter-spacing:0.028800px;}
.lse_c00017{letter-spacing:0.036000px;}
.lsd_c00017{letter-spacing:0.043200px;}
.ls3_c00017{letter-spacing:0.050400px;}
.ls12_c00017{letter-spacing:0.054000px;}
.ls6_c00017{letter-spacing:0.064800px;}
.ls4_c00017{letter-spacing:0.072000px;}
.lsc_c00017{letter-spacing:0.079200px;}
.ls8_c00017{letter-spacing:0.086400px;}
.ls5_c00017{letter-spacing:0.093600px;}
.ls14_c00017{letter-spacing:0.101556px;}
.lsa_c00017{letter-spacing:10.440000px;}
.ls17_c00017{letter-spacing:10.893600px;}
.ls10_c00017{letter-spacing:45.720000px;}
.lsf_c00017{letter-spacing:58.680000px;}
.ls2_c00017{letter-spacing:78.840000px;}
.lsb_c00017{letter-spacing:92.520000px;}
.ls0_c00017{letter-spacing:1205.640000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00017{word-spacing:-28.893600px;}
.ws4_c00017{word-spacing:-19.631556px;}
.ws5_c00017{word-spacing:-19.412820px;}
.wsa_c00017{word-spacing:-19.389384px;}
.ws2_c00017{word-spacing:-18.093600px;}
.ws8_c00017{word-spacing:-18.086400px;}
.ws9_c00017{word-spacing:-18.079200px;}
.ws1_c00017{word-spacing:-18.072000px;}
.wsb_c00017{word-spacing:-18.043200px;}
.ws0_c00017{word-spacing:-18.028800px;}
.ws7_c00017{word-spacing:-17.971200px;}
.ws3_c00017{word-spacing:-4.291200px;}
.ws21_c00017{word-spacing:-0.164052px;}
.ws16_c00017{word-spacing:-0.132804px;}
.ws1f_c00017{word-spacing:-0.117180px;}
.ws19_c00017{word-spacing:-0.086400px;}
.ws12_c00017{word-spacing:-0.079200px;}
.ws10_c00017{word-spacing:-0.072000px;}
.ws11_c00017{word-spacing:-0.064800px;}
.ws24_c00017{word-spacing:-0.062496px;}
.ws20_c00017{word-spacing:-0.054684px;}
.wsd_c00017{word-spacing:-0.050400px;}
.ws17_c00017{word-spacing:-0.046872px;}
.ws1d_c00017{word-spacing:-0.043200px;}
.ws1e_c00017{word-spacing:-0.036000px;}
.wsf_c00017{word-spacing:-0.028800px;}
.ws13_c00017{word-spacing:-0.014400px;}
.ws25_c00017{word-spacing:-0.007812px;}
.ws18_c00017{word-spacing:-0.007200px;}
.wsc_c00017{word-spacing:0.000000px;}
.wse_c00017{word-spacing:0.007200px;}
.ws1a_c00017{word-spacing:0.014400px;}
.ws14_c00017{word-spacing:0.036000px;}
.ws15_c00017{word-spacing:0.057600px;}
.ws1c_c00017{word-spacing:0.064800px;}
.ws22_c00017{word-spacing:0.079200px;}
.ws1b_c00017{word-spacing:0.115200px;}
.ws23_c00017{word-spacing:0.280800px;}
._9_c00017{margin-left:-10.864800px;}
._8_c00017{margin-left:-9.446400px;}
._c_c00017{margin-left:-2.671200px;}
._1_c00017{margin-left:-1.461600px;}
._7_c00017{width:1.397520px;}
._3_c00017{width:3.024000px;}
._6_c00017{width:4.484916px;}
._5_c00017{width:5.976000px;}
._e_c00017{width:7.128000px;}
._4_c00017{width:8.546400px;}
._a_c00017{width:9.576000px;}
._0_c00017{width:10.771200px;}
._b_c00017{width:11.779884px;}
._2_c00017{width:12.816000px;}
._d_c00017{width:15.087516px;}
.fc0_c00017{color:rgb(0,0,0);}
.fs1_c00017{font-size:54.000000px;}
.fs0_c00017{font-size:72.000000px;}
.fs2_c00017{font-size:78.120000px;}
.y0_c00017{bottom:0.000000px;}
.y2_c00017{bottom:57.450450px;}
.y34_c00017{bottom:116.850450px;}
.y33_c00017{bottom:137.100450px;}
.y32_c00017{bottom:157.350450px;}
.y31_c00017{bottom:177.600450px;}
.y30_c00017{bottom:197.850450px;}
.y2f_c00017{bottom:218.100450px;}
.y2e_c00017{bottom:238.800450px;}
.y2d_c00017{bottom:269.310450px;}
.y2c_c00017{bottom:289.560450px;}
.y2b_c00017{bottom:309.810450px;}
.y2a_c00017{bottom:330.060450px;}
.y29_c00017{bottom:350.310450px;}
.y28_c00017{bottom:370.560450px;}
.y27_c00017{bottom:390.810450px;}
.y26_c00017{bottom:411.060450px;}
.y25_c00017{bottom:431.310450px;}
.y24_c00017{bottom:452.010450px;}
.y23_c00017{bottom:482.520450px;}
.y22_c00017{bottom:502.770450px;}
.y21_c00017{bottom:523.020450px;}
.y20_c00017{bottom:543.270450px;}
.y1f_c00017{bottom:563.520450px;}
.y1e_c00017{bottom:583.770450px;}
.y1d_c00017{bottom:604.020450px;}
.y1c_c00017{bottom:624.270450px;}
.y1b_c00017{bottom:644.520450px;}
.y1a_c00017{bottom:664.770450px;}
.y19_c00017{bottom:685.020450px;}
.y18_c00017{bottom:705.270450px;}
.y17_c00017{bottom:725.520450px;}
.y16_c00017{bottom:745.770450px;}
.y15_c00017{bottom:766.020450px;}
.y14_c00017{bottom:786.270450px;}
.y13_c00017{bottom:806.520450px;}
.y12_c00017{bottom:826.770450px;}
.y11_c00017{bottom:847.020450px;}
.y10_c00017{bottom:867.630450px;}
.yf_c00017{bottom:898.140450px;}
.ye_c00017{bottom:918.390450px;}
.yd_c00017{bottom:938.640450px;}
.yc_c00017{bottom:958.890450px;}
.yb_c00017{bottom:979.140450px;}
.ya_c00017{bottom:999.390450px;}
.y9_c00017{bottom:1019.640450px;}
.y8_c00017{bottom:1039.890450px;}
.y7_c00017{bottom:1060.140450px;}
.y6_c00017{bottom:1080.390450px;}
.y5_c00017{bottom:1100.640450px;}
.y4_c00017{bottom:1120.890450px;}
.y3_c00017{bottom:1141.140450px;}
.y1_c00017{bottom:1193.250450px;}
.h1_c00017{height:47.988281px;}
.h3_c00017{height:60.257812px;}
.h4_c00017{height:65.456016px;}
.h2_c00017{height:72.160313px;}
.h0_c00017{height:1263.000000px;}
.w1_c00017{width:892.500000px;}
.w0_c00017{width:892.830000px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:127.620000px;}
.x3_c00017{left:141.120000px;}
.x4_c00017{left:157.410000px;}
.x5_c00017{left:170.172000px;}
.x2_c00017{left:181.620000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.v1_c00017{vertical-align:14.080000pt;}
.ls1e_c00017{letter-spacing:-0.124992pt;}
.ls16_c00017{letter-spacing:-0.104160pt;}
.ls1b_c00017{letter-spacing:-0.097216pt;}
.ls1d_c00017{letter-spacing:-0.076384pt;}
.ls15_c00017{letter-spacing:-0.041664pt;}
.ls1a_c00017{letter-spacing:-0.034720pt;}
.ls1c_c00017{letter-spacing:-0.027776pt;}
.ls18_c00017{letter-spacing:-0.025600pt;}
.ls19_c00017{letter-spacing:-0.012800pt;}
.ls13_c00017{letter-spacing:-0.006400pt;}
.ls11_c00017{letter-spacing:0.000000pt;}
.ls7_c00017{letter-spacing:0.006400pt;}
.ls9_c00017{letter-spacing:0.012800pt;}
.ls1_c00017{letter-spacing:0.025600pt;}
.lse_c00017{letter-spacing:0.032000pt;}
.lsd_c00017{letter-spacing:0.038400pt;}
.ls3_c00017{letter-spacing:0.044800pt;}
.ls12_c00017{letter-spacing:0.048000pt;}
.ls6_c00017{letter-spacing:0.057600pt;}
.ls4_c00017{letter-spacing:0.064000pt;}
.lsc_c00017{letter-spacing:0.070400pt;}
.ls8_c00017{letter-spacing:0.076800pt;}
.ls5_c00017{letter-spacing:0.083200pt;}
.ls14_c00017{letter-spacing:0.090272pt;}
.lsa_c00017{letter-spacing:9.280000pt;}
.ls17_c00017{letter-spacing:9.683200pt;}
.ls10_c00017{letter-spacing:40.640000pt;}
.lsf_c00017{letter-spacing:52.160000pt;}
.ls2_c00017{letter-spacing:70.080000pt;}
.lsb_c00017{letter-spacing:82.240000pt;}
.ls0_c00017{letter-spacing:1071.680000pt;}
.ws6_c00017{word-spacing:-25.683200pt;}
.ws4_c00017{word-spacing:-17.450272pt;}
.ws5_c00017{word-spacing:-17.255840pt;}
.wsa_c00017{word-spacing:-17.235008pt;}
.ws2_c00017{word-spacing:-16.083200pt;}
.ws8_c00017{word-spacing:-16.076800pt;}
.ws9_c00017{word-spacing:-16.070400pt;}
.ws1_c00017{word-spacing:-16.064000pt;}
.wsb_c00017{word-spacing:-16.038400pt;}
.ws0_c00017{word-spacing:-16.025600pt;}
.ws7_c00017{word-spacing:-15.974400pt;}
.ws3_c00017{word-spacing:-3.814400pt;}
.ws21_c00017{word-spacing:-0.145824pt;}
.ws16_c00017{word-spacing:-0.118048pt;}
.ws1f_c00017{word-spacing:-0.104160pt;}
.ws19_c00017{word-spacing:-0.076800pt;}
.ws12_c00017{word-spacing:-0.070400pt;}
.ws10_c00017{word-spacing:-0.064000pt;}
.ws11_c00017{word-spacing:-0.057600pt;}
.ws24_c00017{word-spacing:-0.055552pt;}
.ws20_c00017{word-spacing:-0.048608pt;}
.wsd_c00017{word-spacing:-0.044800pt;}
.ws17_c00017{word-spacing:-0.041664pt;}
.ws1d_c00017{word-spacing:-0.038400pt;}
.ws1e_c00017{word-spacing:-0.032000pt;}
.wsf_c00017{word-spacing:-0.025600pt;}
.ws13_c00017{word-spacing:-0.012800pt;}
.ws25_c00017{word-spacing:-0.006944pt;}
.ws18_c00017{word-spacing:-0.006400pt;}
.wsc_c00017{word-spacing:0.000000pt;}
.wse_c00017{word-spacing:0.006400pt;}
.ws1a_c00017{word-spacing:0.012800pt;}
.ws14_c00017{word-spacing:0.032000pt;}
.ws15_c00017{word-spacing:0.051200pt;}
.ws1c_c00017{word-spacing:0.057600pt;}
.ws22_c00017{word-spacing:0.070400pt;}
.ws1b_c00017{word-spacing:0.102400pt;}
.ws23_c00017{word-spacing:0.249600pt;}
._9_c00017{margin-left:-9.657600pt;}
._8_c00017{margin-left:-8.396800pt;}
._c_c00017{margin-left:-2.374400pt;}
._1_c00017{margin-left:-1.299200pt;}
._7_c00017{width:1.242240pt;}
._3_c00017{width:2.688000pt;}
._6_c00017{width:3.986592pt;}
._5_c00017{width:5.312000pt;}
._e_c00017{width:6.336000pt;}
._4_c00017{width:7.596800pt;}
._a_c00017{width:8.512000pt;}
._0_c00017{width:9.574400pt;}
._b_c00017{width:10.471008pt;}
._2_c00017{width:11.392000pt;}
._d_c00017{width:13.411125pt;}
.fs1_c00017{font-size:48.000000pt;}
.fs0_c00017{font-size:64.000000pt;}
.fs2_c00017{font-size:69.440000pt;}
.y0_c00017{bottom:0.000000pt;}
.y2_c00017{bottom:51.067067pt;}
.y34_c00017{bottom:103.867067pt;}
.y33_c00017{bottom:121.867067pt;}
.y32_c00017{bottom:139.867067pt;}
.y31_c00017{bottom:157.867067pt;}
.y30_c00017{bottom:175.867067pt;}
.y2f_c00017{bottom:193.867067pt;}
.y2e_c00017{bottom:212.267067pt;}
.y2d_c00017{bottom:239.387067pt;}
.y2c_c00017{bottom:257.387067pt;}
.y2b_c00017{bottom:275.387067pt;}
.y2a_c00017{bottom:293.387067pt;}
.y29_c00017{bottom:311.387067pt;}
.y28_c00017{bottom:329.387067pt;}
.y27_c00017{bottom:347.387067pt;}
.y26_c00017{bottom:365.387067pt;}
.y25_c00017{bottom:383.387067pt;}
.y24_c00017{bottom:401.787067pt;}
.y23_c00017{bottom:428.907067pt;}
.y22_c00017{bottom:446.907067pt;}
.y21_c00017{bottom:464.907067pt;}
.y20_c00017{bottom:482.907067pt;}
.y1f_c00017{bottom:500.907067pt;}
.y1e_c00017{bottom:518.907067pt;}
.y1d_c00017{bottom:536.907067pt;}
.y1c_c00017{bottom:554.907067pt;}
.y1b_c00017{bottom:572.907067pt;}
.y1a_c00017{bottom:590.907067pt;}
.y19_c00017{bottom:608.907067pt;}
.y18_c00017{bottom:626.907067pt;}
.y17_c00017{bottom:644.907067pt;}
.y16_c00017{bottom:662.907067pt;}
.y15_c00017{bottom:680.907067pt;}
.y14_c00017{bottom:698.907067pt;}
.y13_c00017{bottom:716.907067pt;}
.y12_c00017{bottom:734.907067pt;}
.y11_c00017{bottom:752.907067pt;}
.y10_c00017{bottom:771.227067pt;}
.yf_c00017{bottom:798.347067pt;}
.ye_c00017{bottom:816.347067pt;}
.yd_c00017{bottom:834.347067pt;}
.yc_c00017{bottom:852.347067pt;}
.yb_c00017{bottom:870.347067pt;}
.ya_c00017{bottom:888.347067pt;}
.y9_c00017{bottom:906.347067pt;}
.y8_c00017{bottom:924.347067pt;}
.y7_c00017{bottom:942.347067pt;}
.y6_c00017{bottom:960.347067pt;}
.y5_c00017{bottom:978.347067pt;}
.y4_c00017{bottom:996.347067pt;}
.y3_c00017{bottom:1014.347067pt;}
.y1_c00017{bottom:1060.667067pt;}
.h1_c00017{height:42.656250pt;}
.h3_c00017{height:53.562500pt;}
.h4_c00017{height:58.183125pt;}
.h2_c00017{height:64.142500pt;}
.h0_c00017{height:1122.666667pt;}
.w1_c00017{width:793.333333pt;}
.w0_c00017{width:793.626667pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:113.440000pt;}
.x3_c00017{left:125.440000pt;}
.x4_c00017{left:139.920000pt;}
.x5_c00017{left:151.264000pt;}
.x2_c00017{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_c00018 {
    display:none;
  }
  .loading-indicator_c00018.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00018 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00018 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00018" -> "#page-container .classname_c00018")
 */
.pf_c00018 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00018 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00018 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00018 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00018 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00018 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00018 {overflow:visible;}
  }
}
.c_c00018 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00018 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00018:after { /* webkit #35443 */
  content: '';
}
.t_c00018:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00018 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00018 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00018 { /* info for Javascript */
  display:none;
}
.l_c00018 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00018 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00018 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00018:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00018;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00018;src:url('chunks/assets/font_8298b30a6ce087655629451a.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;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_c00018;src:url('chunks/assets/font_217a781d77463fafe9af148a.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00018;src:url('chunks/assets/font_3d8add4585d78a25400cd08b.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00018;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00018{font-family:ff5_c00018;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00018{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.v1_c00018{vertical-align:15.840000px;}
.ls8_c00018{letter-spacing:-0.153792px;}
.ls9_c00018{letter-spacing:-0.076896px;}
.ls7_c00018{letter-spacing:0.000000px;}
.ls3_c00018{letter-spacing:0.036000px;}
.ls1_c00018{letter-spacing:0.043200px;}
.ls4_c00018{letter-spacing:0.072000px;}
.ls6_c00018{letter-spacing:0.086400px;}
.ls5_c00018{letter-spacing:0.093600px;}
.ls2_c00018{letter-spacing:45.720000px;}
.ls0_c00018{letter-spacing:1198.080000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00018{word-spacing:-18.093600px;}
.ws0_c00018{word-spacing:-18.043200px;}
.ws5_c00018{word-spacing:-0.072000px;}
.ws4_c00018{word-spacing:-0.036000px;}
.ws3_c00018{word-spacing:0.000000px;}
.ws6_c00018{word-spacing:0.086400px;}
.ws7_c00018{word-spacing:0.163404px;}
.ws8_c00018{word-spacing:0.240300px;}
.ws2_c00018{word-spacing:0.538272px;}
._4_c00018{margin-left:-9.446400px;}
._3_c00018{margin-left:-1.728000px;}
._6_c00018{width:2.309544px;}
._2_c00018{width:3.398400px;}
._5_c00018{width:8.733600px;}
._1_c00018{width:10.944000px;}
._0_c00018{width:13.910400px;}
.fc0_c00018{color:rgb(0,0,0);}
.fs1_c00018{font-size:54.000000px;}
.fs0_c00018{font-size:72.000000px;}
.fs2_c00018{font-size:96.120000px;}
.y0_c00018{bottom:0.000000px;}
.y1_c00018{bottom:57.450450px;}
.y8_c00018{bottom:877.170450px;}
.y7_c00018{bottom:913.170450px;}
.y6_c00018{bottom:976.170450px;}
.y5_c00018{bottom:1039.170450px;}
.y4_c00018{bottom:1100.640450px;}
.y3_c00018{bottom:1120.890450px;}
.y2_c00018{bottom:1141.140450px;}
.h2_c00018{height:60.257812px;}
.h1_c00018{height:72.160312px;}
.h3_c00018{height:80.538047px;}
.h0_c00018{height:1263.000000px;}
.w1_c00018{width:892.500000px;}
.w0_c00018{width:892.830000px;}
.x0_c00018{left:0.000000px;}
.x1_c00018{left:127.620000px;}
.x3_c00018{left:141.120000px;}
.x2_c00018{left:170.190000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.v1_c00018{vertical-align:14.080000pt;}
.ls8_c00018{letter-spacing:-0.136704pt;}
.ls9_c00018{letter-spacing:-0.068352pt;}
.ls7_c00018{letter-spacing:0.000000pt;}
.ls3_c00018{letter-spacing:0.032000pt;}
.ls1_c00018{letter-spacing:0.038400pt;}
.ls4_c00018{letter-spacing:0.064000pt;}
.ls6_c00018{letter-spacing:0.076800pt;}
.ls5_c00018{letter-spacing:0.083200pt;}
.ls2_c00018{letter-spacing:40.640000pt;}
.ls0_c00018{letter-spacing:1064.960000pt;}
.ws1_c00018{word-spacing:-16.083200pt;}
.ws0_c00018{word-spacing:-16.038400pt;}
.ws5_c00018{word-spacing:-0.064000pt;}
.ws4_c00018{word-spacing:-0.032000pt;}
.ws3_c00018{word-spacing:0.000000pt;}
.ws6_c00018{word-spacing:0.076800pt;}
.ws7_c00018{word-spacing:0.145248pt;}
.ws8_c00018{word-spacing:0.213600pt;}
.ws2_c00018{word-spacing:0.478464pt;}
._4_c00018{margin-left:-8.396800pt;}
._3_c00018{margin-left:-1.536000pt;}
._6_c00018{width:2.052928pt;}
._2_c00018{width:3.020800pt;}
._5_c00018{width:7.763200pt;}
._1_c00018{width:9.728000pt;}
._0_c00018{width:12.364800pt;}
.fs1_c00018{font-size:48.000000pt;}
.fs0_c00018{font-size:64.000000pt;}
.fs2_c00018{font-size:85.440000pt;}
.y0_c00018{bottom:0.000000pt;}
.y1_c00018{bottom:51.067067pt;}
.y8_c00018{bottom:779.707067pt;}
.y7_c00018{bottom:811.707067pt;}
.y6_c00018{bottom:867.707067pt;}
.y5_c00018{bottom:923.707067pt;}
.y4_c00018{bottom:978.347067pt;}
.y3_c00018{bottom:996.347067pt;}
.y2_c00018{bottom:1014.347067pt;}
.h2_c00018{height:53.562500pt;}
.h1_c00018{height:64.142500pt;}
.h3_c00018{height:71.589375pt;}
.h0_c00018{height:1122.666667pt;}
.w1_c00018{width:793.333333pt;}
.w0_c00018{width:793.626667pt;}
.x0_c00018{left:0.000000pt;}
.x1_c00018{left:113.440000pt;}
.x3_c00018{left:125.440000pt;}
.x2_c00018{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_c00019 {
    display:none;
  }
  .loading-indicator_c00019.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00019 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00019 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00019" -> "#page-container .classname_c00019")
 */
.pf_c00019 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00019 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00019 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00019 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00019 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00019 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00019 {overflow:visible;}
  }
}
.c_c00019 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00019 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00019:after { /* webkit #35443 */
  content: '';
}
.t_c00019:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00019 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00019 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00019 { /* info for Javascript */
  display:none;
}
.l_c00019 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00019 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00019 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00019:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00019;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00019;src:url('chunks/assets/font_fb2d1655d63ef794bd3788bd.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;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_c00019;src:url('chunks/assets/font_bd1ebcc87cc7fdbfec064b1b.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00019;src:url('chunks/assets/font_ffb21f2285a9de7aa2b376c4.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.v1_c00019{vertical-align:15.840000px;}
.lse_c00019{letter-spacing:-0.014400px;}
.lsd_c00019{letter-spacing:-0.007200px;}
.lsb_c00019{letter-spacing:0.000000px;}
.ls5_c00019{letter-spacing:0.007200px;}
.lsa_c00019{letter-spacing:0.028800px;}
.ls7_c00019{letter-spacing:0.036000px;}
.ls8_c00019{letter-spacing:0.050400px;}
.ls9_c00019{letter-spacing:0.057600px;}
.ls6_c00019{letter-spacing:0.064800px;}
.ls1_c00019{letter-spacing:0.072000px;}
.ls2_c00019{letter-spacing:0.079200px;}
.ls3_c00019{letter-spacing:0.086400px;}
.ls4_c00019{letter-spacing:0.093600px;}
.lsc_c00019{letter-spacing:0.118800px;}
.ls0_c00019{letter-spacing:1231.920000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00019{word-spacing:-18.093600px;}
.ws1_c00019{word-spacing:-3.160800px;}
.ws7_c00019{word-spacing:-0.194400px;}
.ws3_c00019{word-spacing:-0.115200px;}
.wsf_c00019{word-spacing:-0.100800px;}
.ws8_c00019{word-spacing:-0.086400px;}
.wsa_c00019{word-spacing:-0.079200px;}
.ws5_c00019{word-spacing:-0.072000px;}
.wsc_c00019{word-spacing:-0.064800px;}
.ws10_c00019{word-spacing:-0.057600px;}
.wse_c00019{word-spacing:-0.036000px;}
.ws11_c00019{word-spacing:-0.028800px;}
.wsd_c00019{word-spacing:-0.007200px;}
.ws2_c00019{word-spacing:0.000000px;}
.ws4_c00019{word-spacing:0.007200px;}
.ws6_c00019{word-spacing:0.014400px;}
.wsb_c00019{word-spacing:0.036000px;}
.ws9_c00019{word-spacing:0.057600px;}
._2_c00019{margin-left:-1.152000px;}
._4_c00019{width:1.944000px;}
._0_c00019{width:4.183200px;}
._3_c00019{width:6.048000px;}
._9_c00019{width:7.740000px;}
._5_c00019{width:9.288000px;}
._1_c00019{width:10.800000px;}
._6_c00019{width:12.218400px;}
._8_c00019{width:13.507200px;}
._7_c00019{width:15.264000px;}
.fc0_c00019{color:rgb(0,0,0);}
.fs1_c00019{font-size:54.000000px;}
.fs0_c00019{font-size:72.000000px;}
.fs2_c00019{font-size:144.000000px;}
.y0_c00019{bottom:0.000000px;}
.y2_c00019{bottom:57.450450px;}
.y1a_c00019{bottom:634.890450px;}
.y19_c00019{bottom:655.140450px;}
.y18_c00019{bottom:675.390450px;}
.y17_c00019{bottom:695.640450px;}
.y16_c00019{bottom:715.890450px;}
.y15_c00019{bottom:736.140450px;}
.y14_c00019{bottom:756.390450px;}
.y13_c00019{bottom:776.640450px;}
.y12_c00019{bottom:796.890450px;}
.y11_c00019{bottom:817.140450px;}
.y10_c00019{bottom:837.390450px;}
.yf_c00019{bottom:857.640450px;}
.ye_c00019{bottom:877.890450px;}
.yd_c00019{bottom:898.140450px;}
.yc_c00019{bottom:918.390450px;}
.yb_c00019{bottom:938.640450px;}
.ya_c00019{bottom:958.890450px;}
.y9_c00019{bottom:979.140450px;}
.y8_c00019{bottom:999.390450px;}
.y7_c00019{bottom:1019.640450px;}
.y6_c00019{bottom:1039.890450px;}
.y5_c00019{bottom:1060.140450px;}
.y4_c00019{bottom:1085.070450px;}
.y3_c00019{bottom:1125.570450px;}
.y1_c00019{bottom:1193.250450px;}
.h1_c00019{height:47.988281px;}
.h4_c00019{height:60.257812px;}
.h5_c00019{height:60.328125px;}
.h2_c00019{height:72.160313px;}
.h3_c00019{height:120.656250px;}
.h0_c00019{height:1263.000000px;}
.w1_c00019{width:892.500000px;}
.w0_c00019{width:892.830000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:127.620000px;}
.x2_c00019{left:816.120000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.v1_c00019{vertical-align:14.080000pt;}
.lse_c00019{letter-spacing:-0.012800pt;}
.lsd_c00019{letter-spacing:-0.006400pt;}
.lsb_c00019{letter-spacing:0.000000pt;}
.ls5_c00019{letter-spacing:0.006400pt;}
.lsa_c00019{letter-spacing:0.025600pt;}
.ls7_c00019{letter-spacing:0.032000pt;}
.ls8_c00019{letter-spacing:0.044800pt;}
.ls9_c00019{letter-spacing:0.051200pt;}
.ls6_c00019{letter-spacing:0.057600pt;}
.ls1_c00019{letter-spacing:0.064000pt;}
.ls2_c00019{letter-spacing:0.070400pt;}
.ls3_c00019{letter-spacing:0.076800pt;}
.ls4_c00019{letter-spacing:0.083200pt;}
.lsc_c00019{letter-spacing:0.105600pt;}
.ls0_c00019{letter-spacing:1095.040000pt;}
.ws0_c00019{word-spacing:-16.083200pt;}
.ws1_c00019{word-spacing:-2.809600pt;}
.ws7_c00019{word-spacing:-0.172800pt;}
.ws3_c00019{word-spacing:-0.102400pt;}
.wsf_c00019{word-spacing:-0.089600pt;}
.ws8_c00019{word-spacing:-0.076800pt;}
.wsa_c00019{word-spacing:-0.070400pt;}
.ws5_c00019{word-spacing:-0.064000pt;}
.wsc_c00019{word-spacing:-0.057600pt;}
.ws10_c00019{word-spacing:-0.051200pt;}
.wse_c00019{word-spacing:-0.032000pt;}
.ws11_c00019{word-spacing:-0.025600pt;}
.wsd_c00019{word-spacing:-0.006400pt;}
.ws2_c00019{word-spacing:0.000000pt;}
.ws4_c00019{word-spacing:0.006400pt;}
.ws6_c00019{word-spacing:0.012800pt;}
.wsb_c00019{word-spacing:0.032000pt;}
.ws9_c00019{word-spacing:0.051200pt;}
._2_c00019{margin-left:-1.024000pt;}
._4_c00019{width:1.728000pt;}
._0_c00019{width:3.718400pt;}
._3_c00019{width:5.376000pt;}
._9_c00019{width:6.880000pt;}
._5_c00019{width:8.256000pt;}
._1_c00019{width:9.600000pt;}
._6_c00019{width:10.860800pt;}
._8_c00019{width:12.006400pt;}
._7_c00019{width:13.568000pt;}
.fs1_c00019{font-size:48.000000pt;}
.fs0_c00019{font-size:64.000000pt;}
.fs2_c00019{font-size:128.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.y2_c00019{bottom:51.067067pt;}
.y1a_c00019{bottom:564.347067pt;}
.y19_c00019{bottom:582.347067pt;}
.y18_c00019{bottom:600.347067pt;}
.y17_c00019{bottom:618.347067pt;}
.y16_c00019{bottom:636.347067pt;}
.y15_c00019{bottom:654.347067pt;}
.y14_c00019{bottom:672.347067pt;}
.y13_c00019{bottom:690.347067pt;}
.y12_c00019{bottom:708.347067pt;}
.y11_c00019{bottom:726.347067pt;}
.y10_c00019{bottom:744.347067pt;}
.yf_c00019{bottom:762.347067pt;}
.ye_c00019{bottom:780.347067pt;}
.yd_c00019{bottom:798.347067pt;}
.yc_c00019{bottom:816.347067pt;}
.yb_c00019{bottom:834.347067pt;}
.ya_c00019{bottom:852.347067pt;}
.y9_c00019{bottom:870.347067pt;}
.y8_c00019{bottom:888.347067pt;}
.y7_c00019{bottom:906.347067pt;}
.y6_c00019{bottom:924.347067pt;}
.y5_c00019{bottom:942.347067pt;}
.y4_c00019{bottom:964.507067pt;}
.y3_c00019{bottom:1000.507067pt;}
.y1_c00019{bottom:1060.667067pt;}
.h1_c00019{height:42.656250pt;}
.h4_c00019{height:53.562500pt;}
.h5_c00019{height:53.625000pt;}
.h2_c00019{height:64.142500pt;}
.h3_c00019{height:107.250000pt;}
.h0_c00019{height:1122.666667pt;}
.w1_c00019{width:793.333333pt;}
.w0_c00019{width:793.626667pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:113.440000pt;}
.x2_c00019{left:725.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_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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00020;src:url('chunks/assets/font_5c3e1c18b163e195350517d7.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;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_c00020;src:url('chunks/assets/font_5faaa4f6b7d0d0eb5102899f.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00020;src:url('chunks/assets/font_bb95242c6fe67aacbbf55a4a.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:1.100098;font-style: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);}
.m1_c00020{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.v1_c00020{vertical-align:15.840000px;}
.lsf_c00020{letter-spacing:-0.021600px;}
.lse_c00020{letter-spacing:0.000000px;}
.ls7_c00020{letter-spacing:0.007200px;}
.ls3_c00020{letter-spacing:0.014400px;}
.ls8_c00020{letter-spacing:0.021600px;}
.lsc_c00020{letter-spacing:0.028800px;}
.lsb_c00020{letter-spacing:0.036000px;}
.lsa_c00020{letter-spacing:0.043200px;}
.lsd_c00020{letter-spacing:0.050400px;}
.ls6_c00020{letter-spacing:0.057600px;}
.ls5_c00020{letter-spacing:0.064800px;}
.ls4_c00020{letter-spacing:0.072000px;}
.ls1_c00020{letter-spacing:0.079200px;}
.ls9_c00020{letter-spacing:0.086400px;}
.ls2_c00020{letter-spacing:0.093600px;}
.ls10_c00020{letter-spacing:10.893600px;}
.ls0_c00020{letter-spacing:1239.480000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00020{word-spacing:-28.893600px;}
.ws1_c00020{word-spacing:-18.093600px;}
.ws3_c00020{word-spacing:-18.072000px;}
.ws0_c00020{word-spacing:-5.133600px;}
.ws19_c00020{word-spacing:-0.144000px;}
.ws13_c00020{word-spacing:-0.108000px;}
.ws14_c00020{word-spacing:-0.100800px;}
.ws11_c00020{word-spacing:-0.086400px;}
.wsc_c00020{word-spacing:-0.079200px;}
.ws8_c00020{word-spacing:-0.072000px;}
.wsf_c00020{word-spacing:-0.064800px;}
.ws18_c00020{word-spacing:-0.057600px;}
.ws17_c00020{word-spacing:-0.050400px;}
.ws12_c00020{word-spacing:-0.043200px;}
.ws15_c00020{word-spacing:-0.036000px;}
.ws16_c00020{word-spacing:-0.028800px;}
.ws10_c00020{word-spacing:-0.021600px;}
.ws5_c00020{word-spacing:-0.014400px;}
.ws6_c00020{word-spacing:-0.007200px;}
.ws4_c00020{word-spacing:0.000000px;}
.ws9_c00020{word-spacing:0.021600px;}
.wsb_c00020{word-spacing:0.028800px;}
.wse_c00020{word-spacing:0.043200px;}
.ws7_c00020{word-spacing:0.072000px;}
.wsa_c00020{word-spacing:0.115200px;}
.wsd_c00020{word-spacing:0.280800px;}
._a_c00020{margin-left:-11.599200px;}
._9_c00020{margin-left:-10.116000px;}
._1_c00020{margin-left:-2.246400px;}
._2_c00020{margin-left:-1.152000px;}
._0_c00020{width:1.224000px;}
._5_c00020{width:2.894400px;}
._7_c00020{width:4.492800px;}
._8_c00020{width:6.120000px;}
._b_c00020{width:7.668000px;}
._6_c00020{width:9.374400px;}
._4_c00020{width:10.800000px;}
._3_c00020{width:12.024000px;}
._c_c00020{width:13.377600px;}
._d_c00020{width:14.544000px;}
.fc0_c00020{color:rgb(0,0,0);}
.fs1_c00020{font-size:54.000000px;}
.fs0_c00020{font-size:72.000000px;}
.fs2_c00020{font-size:119.880000px;}
.fs3_c00020{font-size:144.000000px;}
.y0_c00020{bottom:0.000000px;}
.y1_c00020{bottom:57.450450px;}
.y26_c00020{bottom:378.390450px;}
.y25_c00020{bottom:398.640450px;}
.y24_c00020{bottom:418.890450px;}
.y23_c00020{bottom:439.140450px;}
.y22_c00020{bottom:459.390450px;}
.y21_c00020{bottom:479.640450px;}
.y20_c00020{bottom:499.890450px;}
.y1f_c00020{bottom:520.140450px;}
.y1e_c00020{bottom:540.390450px;}
.y1d_c00020{bottom:560.640450px;}
.y1c_c00020{bottom:580.890450px;}
.y1b_c00020{bottom:601.140450px;}
.y1a_c00020{bottom:621.390450px;}
.y19_c00020{bottom:641.640450px;}
.y18_c00020{bottom:661.890450px;}
.y17_c00020{bottom:682.140450px;}
.y16_c00020{bottom:702.390450px;}
.y15_c00020{bottom:722.640450px;}
.y14_c00020{bottom:742.890450px;}
.y13_c00020{bottom:763.140450px;}
.y12_c00020{bottom:783.390450px;}
.y11_c00020{bottom:803.640450px;}
.y10_c00020{bottom:823.890450px;}
.yf_c00020{bottom:844.140450px;}
.ye_c00020{bottom:864.390450px;}
.yd_c00020{bottom:884.640450px;}
.yc_c00020{bottom:904.890450px;}
.yb_c00020{bottom:925.140450px;}
.ya_c00020{bottom:945.390450px;}
.y9_c00020{bottom:965.640450px;}
.y8_c00020{bottom:985.890450px;}
.y7_c00020{bottom:1006.140450px;}
.y6_c00020{bottom:1026.390450px;}
.y5_c00020{bottom:1046.640450px;}
.y4_c00020{bottom:1066.890450px;}
.y3_c00020{bottom:1091.820450px;}
.y2_c00020{bottom:1130.790600px;}
.h4_c00020{height:60.257812px;}
.h5_c00020{height:60.328125px;}
.h1_c00020{height:72.160312px;}
.h2_c00020{height:100.446328px;}
.h3_c00020{height:120.656250px;}
.h0_c00020{height:1263.000000px;}
.w1_c00020{width:892.500000px;}
.w0_c00020{width:892.830000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:127.620000px;}
.x2_c00020{left:816.120000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.v1_c00020{vertical-align:14.080000pt;}
.lsf_c00020{letter-spacing:-0.019200pt;}
.lse_c00020{letter-spacing:0.000000pt;}
.ls7_c00020{letter-spacing:0.006400pt;}
.ls3_c00020{letter-spacing:0.012800pt;}
.ls8_c00020{letter-spacing:0.019200pt;}
.lsc_c00020{letter-spacing:0.025600pt;}
.lsb_c00020{letter-spacing:0.032000pt;}
.lsa_c00020{letter-spacing:0.038400pt;}
.lsd_c00020{letter-spacing:0.044800pt;}
.ls6_c00020{letter-spacing:0.051200pt;}
.ls5_c00020{letter-spacing:0.057600pt;}
.ls4_c00020{letter-spacing:0.064000pt;}
.ls1_c00020{letter-spacing:0.070400pt;}
.ls9_c00020{letter-spacing:0.076800pt;}
.ls2_c00020{letter-spacing:0.083200pt;}
.ls10_c00020{letter-spacing:9.683200pt;}
.ls0_c00020{letter-spacing:1101.760000pt;}
.ws2_c00020{word-spacing:-25.683200pt;}
.ws1_c00020{word-spacing:-16.083200pt;}
.ws3_c00020{word-spacing:-16.064000pt;}
.ws0_c00020{word-spacing:-4.563200pt;}
.ws19_c00020{word-spacing:-0.128000pt;}
.ws13_c00020{word-spacing:-0.096000pt;}
.ws14_c00020{word-spacing:-0.089600pt;}
.ws11_c00020{word-spacing:-0.076800pt;}
.wsc_c00020{word-spacing:-0.070400pt;}
.ws8_c00020{word-spacing:-0.064000pt;}
.wsf_c00020{word-spacing:-0.057600pt;}
.ws18_c00020{word-spacing:-0.051200pt;}
.ws17_c00020{word-spacing:-0.044800pt;}
.ws12_c00020{word-spacing:-0.038400pt;}
.ws15_c00020{word-spacing:-0.032000pt;}
.ws16_c00020{word-spacing:-0.025600pt;}
.ws10_c00020{word-spacing:-0.019200pt;}
.ws5_c00020{word-spacing:-0.012800pt;}
.ws6_c00020{word-spacing:-0.006400pt;}
.ws4_c00020{word-spacing:0.000000pt;}
.ws9_c00020{word-spacing:0.019200pt;}
.wsb_c00020{word-spacing:0.025600pt;}
.wse_c00020{word-spacing:0.038400pt;}
.ws7_c00020{word-spacing:0.064000pt;}
.wsa_c00020{word-spacing:0.102400pt;}
.wsd_c00020{word-spacing:0.249600pt;}
._a_c00020{margin-left:-10.310400pt;}
._9_c00020{margin-left:-8.992000pt;}
._1_c00020{margin-left:-1.996800pt;}
._2_c00020{margin-left:-1.024000pt;}
._0_c00020{width:1.088000pt;}
._5_c00020{width:2.572800pt;}
._7_c00020{width:3.993600pt;}
._8_c00020{width:5.440000pt;}
._b_c00020{width:6.816000pt;}
._6_c00020{width:8.332800pt;}
._4_c00020{width:9.600000pt;}
._3_c00020{width:10.688000pt;}
._c_c00020{width:11.891200pt;}
._d_c00020{width:12.928000pt;}
.fs1_c00020{font-size:48.000000pt;}
.fs0_c00020{font-size:64.000000pt;}
.fs2_c00020{font-size:106.560000pt;}
.fs3_c00020{font-size:128.000000pt;}
.y0_c00020{bottom:0.000000pt;}
.y1_c00020{bottom:51.067067pt;}
.y26_c00020{bottom:336.347067pt;}
.y25_c00020{bottom:354.347067pt;}
.y24_c00020{bottom:372.347067pt;}
.y23_c00020{bottom:390.347067pt;}
.y22_c00020{bottom:408.347067pt;}
.y21_c00020{bottom:426.347067pt;}
.y20_c00020{bottom:444.347067pt;}
.y1f_c00020{bottom:462.347067pt;}
.y1e_c00020{bottom:480.347067pt;}
.y1d_c00020{bottom:498.347067pt;}
.y1c_c00020{bottom:516.347067pt;}
.y1b_c00020{bottom:534.347067pt;}
.y1a_c00020{bottom:552.347067pt;}
.y19_c00020{bottom:570.347067pt;}
.y18_c00020{bottom:588.347067pt;}
.y17_c00020{bottom:606.347067pt;}
.y16_c00020{bottom:624.347067pt;}
.y15_c00020{bottom:642.347067pt;}
.y14_c00020{bottom:660.347067pt;}
.y13_c00020{bottom:678.347067pt;}
.y12_c00020{bottom:696.347067pt;}
.y11_c00020{bottom:714.347067pt;}
.y10_c00020{bottom:732.347067pt;}
.yf_c00020{bottom:750.347067pt;}
.ye_c00020{bottom:768.347067pt;}
.yd_c00020{bottom:786.347067pt;}
.yc_c00020{bottom:804.347067pt;}
.yb_c00020{bottom:822.347067pt;}
.ya_c00020{bottom:840.347067pt;}
.y9_c00020{bottom:858.347067pt;}
.y8_c00020{bottom:876.347067pt;}
.y7_c00020{bottom:894.347067pt;}
.y6_c00020{bottom:912.347067pt;}
.y5_c00020{bottom:930.347067pt;}
.y4_c00020{bottom:948.347067pt;}
.y3_c00020{bottom:970.507067pt;}
.y2_c00020{bottom:1005.147200pt;}
.h4_c00020{height:53.562500pt;}
.h5_c00020{height:53.625000pt;}
.h1_c00020{height:64.142500pt;}
.h2_c00020{height:89.285625pt;}
.h3_c00020{height:107.250000pt;}
.h0_c00020{height:1122.666667pt;}
.w1_c00020{width:793.333333pt;}
.w0_c00020{width:793.626667pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:113.440000pt;}
.x2_c00020{left:725.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_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_d8474d598f8984f1a1b1c906.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;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_c00021;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_a176a2c6fa8a40c032b66a06.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00021;src:url('chunks/assets/font_96c55bfb88a597f0fe31a985.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00021;src:url('chunks/assets/font_ecfcc2fcbc35916a1c9e22da.woff2')format("woff");}.ff5_c00021{font-family:ff5_c00021;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00021;src:url('chunks/assets/font_151ff4c912e65cfdeafa4dd5.woff2')format("woff");}.ff6_c00021{font-family:ff6_c00021;line-height:0.684570;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00021{vertical-align:15.840000px;}
.ls6_c00021{letter-spacing:-0.378000px;}
.lsa_c00021{letter-spacing:-0.050400px;}
.ls9_c00021{letter-spacing:-0.036000px;}
.ls8_c00021{letter-spacing:-0.028800px;}
.lsc_c00021{letter-spacing:-0.021600px;}
.lsb_c00021{letter-spacing:-0.014400px;}
.ls7_c00021{letter-spacing:-0.007200px;}
.ls5_c00021{letter-spacing:0.000000px;}
.ls1_c00021{letter-spacing:0.007200px;}
.ls2_c00021{letter-spacing:0.014400px;}
.ls3_c00021{letter-spacing:0.021600px;}
.ls4_c00021{letter-spacing:0.036000px;}
.ls0_c00021{letter-spacing:1231.920000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:0.000000px;}
.ws10_c00021{word-spacing:0.007200px;}
.ws6_c00021{word-spacing:0.043200px;}
.wsf_c00021{word-spacing:0.093600px;}
.ws25_c00021{word-spacing:0.720000px;}
.ws11_c00021{word-spacing:2.512800px;}
.ws12_c00021{word-spacing:2.642400px;}
.ws18_c00021{word-spacing:3.225600px;}
.ws16_c00021{word-spacing:3.240000px;}
.ws17_c00021{word-spacing:3.333600px;}
.ws23_c00021{word-spacing:3.578400px;}
.ws19_c00021{word-spacing:3.621600px;}
.ws24_c00021{word-spacing:3.657600px;}
.ws1a_c00021{word-spacing:3.672000px;}
.ws21_c00021{word-spacing:8.604000px;}
.ws22_c00021{word-spacing:8.683200px;}
.ws5_c00021{word-spacing:8.704800px;}
.ws4_c00021{word-spacing:8.791200px;}
.ws3_c00021{word-spacing:8.971200px;}
.ws2_c00021{word-spacing:9.028800px;}
.ws7_c00021{word-spacing:9.345600px;}
.ws1c_c00021{word-spacing:10.029600px;}
.ws1b_c00021{word-spacing:10.044000px;}
.wsd_c00021{word-spacing:11.541600px;}
.wse_c00021{word-spacing:11.577600px;}
.ws1e_c00021{word-spacing:11.858400px;}
.ws1d_c00021{word-spacing:11.901600px;}
.ws1_c00021{word-spacing:13.327200px;}
.wsa_c00021{word-spacing:14.767200px;}
.ws9_c00021{word-spacing:14.774400px;}
.ws8_c00021{word-spacing:14.810400px;}
.ws14_c00021{word-spacing:16.516800px;}
.ws13_c00021{word-spacing:16.588800px;}
.wsc_c00021{word-spacing:17.316000px;}
.wsb_c00021{word-spacing:17.352000px;}
.ws1f_c00021{word-spacing:21.240000px;}
.ws20_c00021{word-spacing:21.254400px;}
.ws15_c00021{word-spacing:33.876000px;}
._0_c00021{width:1.008000px;}
.fc0_c00021{color:rgb(0,0,0);}
.fs0_c00021{font-size:54.000000px;}
.fs1_c00021{font-size:72.000000px;}
.fs2_c00021{font-size:108.000000px;}
.y0_c00021{bottom:0.000000px;}
.y3_c00021{bottom:57.450450px;}
.y1a_c00021{bottom:132.600450px;}
.y19_c00021{bottom:167.070450px;}
.y18_c00021{bottom:201.450450px;}
.y17_c00021{bottom:235.920450px;}
.y16_c00021{bottom:270.300450px;}
.y15_c00021{bottom:304.770450px;}
.y14_c00021{bottom:339.150450px;}
.y13_c00021{bottom:373.620450px;}
.y12_c00021{bottom:408.000450px;}
.y11_c00021{bottom:442.470450px;}
.y10_c00021{bottom:476.850450px;}
.yf_c00021{bottom:511.320450px;}
.ye_c00021{bottom:554.700450px;}
.yd_c00021{bottom:589.170450px;}
.yc_c00021{bottom:623.550450px;}
.yb_c00021{bottom:667.020450px;}
.ya_c00021{bottom:701.400450px;}
.y9_c00021{bottom:735.870450px;}
.y8_c00021{bottom:779.250450px;}
.y7_c00021{bottom:813.720450px;}
.y6_c00021{bottom:848.100450px;}
.y5_c00021{bottom:882.570450px;}
.y4_c00021{bottom:983.370450px;}
.y2_c00021{bottom:1177.770450px;}
.y1_c00021{bottom:1197.300450px;}
.h2_c00021{height:47.988281px;}
.h1_c00021{height:56.320312px;}
.h5_c00021{height:60.257812px;}
.h6_c00021{height:60.890625px;}
.h3_c00021{height:72.160312px;}
.h4_c00021{height:90.492188px;}
.h0_c00021{height:1263.000000px;}
.w1_c00021{width:892.500000px;}
.w0_c00021{width:892.830000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:127.620000px;}
.x2_c00021{left:180.810000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.v1_c00021{vertical-align:14.080000pt;}
.ls6_c00021{letter-spacing:-0.336000pt;}
.lsa_c00021{letter-spacing:-0.044800pt;}
.ls9_c00021{letter-spacing:-0.032000pt;}
.ls8_c00021{letter-spacing:-0.025600pt;}
.lsc_c00021{letter-spacing:-0.019200pt;}
.lsb_c00021{letter-spacing:-0.012800pt;}
.ls7_c00021{letter-spacing:-0.006400pt;}
.ls5_c00021{letter-spacing:0.000000pt;}
.ls1_c00021{letter-spacing:0.006400pt;}
.ls2_c00021{letter-spacing:0.012800pt;}
.ls3_c00021{letter-spacing:0.019200pt;}
.ls4_c00021{letter-spacing:0.032000pt;}
.ls0_c00021{letter-spacing:1095.040000pt;}
.ws0_c00021{word-spacing:0.000000pt;}
.ws10_c00021{word-spacing:0.006400pt;}
.ws6_c00021{word-spacing:0.038400pt;}
.wsf_c00021{word-spacing:0.083200pt;}
.ws25_c00021{word-spacing:0.640000pt;}
.ws11_c00021{word-spacing:2.233600pt;}
.ws12_c00021{word-spacing:2.348800pt;}
.ws18_c00021{word-spacing:2.867200pt;}
.ws16_c00021{word-spacing:2.880000pt;}
.ws17_c00021{word-spacing:2.963200pt;}
.ws23_c00021{word-spacing:3.180800pt;}
.ws19_c00021{word-spacing:3.219200pt;}
.ws24_c00021{word-spacing:3.251200pt;}
.ws1a_c00021{word-spacing:3.264000pt;}
.ws21_c00021{word-spacing:7.648000pt;}
.ws22_c00021{word-spacing:7.718400pt;}
.ws5_c00021{word-spacing:7.737600pt;}
.ws4_c00021{word-spacing:7.814400pt;}
.ws3_c00021{word-spacing:7.974400pt;}
.ws2_c00021{word-spacing:8.025600pt;}
.ws7_c00021{word-spacing:8.307200pt;}
.ws1c_c00021{word-spacing:8.915200pt;}
.ws1b_c00021{word-spacing:8.928000pt;}
.wsd_c00021{word-spacing:10.259200pt;}
.wse_c00021{word-spacing:10.291200pt;}
.ws1e_c00021{word-spacing:10.540800pt;}
.ws1d_c00021{word-spacing:10.579200pt;}
.ws1_c00021{word-spacing:11.846400pt;}
.wsa_c00021{word-spacing:13.126400pt;}
.ws9_c00021{word-spacing:13.132800pt;}
.ws8_c00021{word-spacing:13.164800pt;}
.ws14_c00021{word-spacing:14.681600pt;}
.ws13_c00021{word-spacing:14.745600pt;}
.wsc_c00021{word-spacing:15.392000pt;}
.wsb_c00021{word-spacing:15.424000pt;}
.ws1f_c00021{word-spacing:18.880000pt;}
.ws20_c00021{word-spacing:18.892800pt;}
.ws15_c00021{word-spacing:30.112000pt;}
._0_c00021{width:0.896000pt;}
.fs0_c00021{font-size:48.000000pt;}
.fs1_c00021{font-size:64.000000pt;}
.fs2_c00021{font-size:96.000000pt;}
.y0_c00021{bottom:0.000000pt;}
.y3_c00021{bottom:51.067067pt;}
.y1a_c00021{bottom:117.867067pt;}
.y19_c00021{bottom:148.507067pt;}
.y18_c00021{bottom:179.067067pt;}
.y17_c00021{bottom:209.707067pt;}
.y16_c00021{bottom:240.267067pt;}
.y15_c00021{bottom:270.907067pt;}
.y14_c00021{bottom:301.467067pt;}
.y13_c00021{bottom:332.107067pt;}
.y12_c00021{bottom:362.667067pt;}
.y11_c00021{bottom:393.307067pt;}
.y10_c00021{bottom:423.867067pt;}
.yf_c00021{bottom:454.507067pt;}
.ye_c00021{bottom:493.067067pt;}
.yd_c00021{bottom:523.707067pt;}
.yc_c00021{bottom:554.267067pt;}
.yb_c00021{bottom:592.907067pt;}
.ya_c00021{bottom:623.467067pt;}
.y9_c00021{bottom:654.107067pt;}
.y8_c00021{bottom:692.667067pt;}
.y7_c00021{bottom:723.307067pt;}
.y6_c00021{bottom:753.867067pt;}
.y5_c00021{bottom:784.507067pt;}
.y4_c00021{bottom:874.107067pt;}
.y2_c00021{bottom:1046.907067pt;}
.y1_c00021{bottom:1064.267067pt;}
.h2_c00021{height:42.656250pt;}
.h1_c00021{height:50.062500pt;}
.h5_c00021{height:53.562500pt;}
.h6_c00021{height:54.125000pt;}
.h3_c00021{height:64.142500pt;}
.h4_c00021{height:80.437500pt;}
.h0_c00021{height:1122.666667pt;}
.w1_c00021{width:793.333333pt;}
.w0_c00021{width:793.626667pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:113.440000pt;}
.x2_c00021{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_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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00022;src:url('chunks/assets/font_fb2d1655d63ef794bd3788bd.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;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_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;}
.v1_c00022{vertical-align:15.840000px;}
.ls1_c00022{letter-spacing:-0.378000px;}
.ls0_c00022{letter-spacing:1224.360000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:-14.634000px;}
.ws1_c00022{word-spacing:0.000000px;}
.fc1_c00022{color:rgb(255,255,255);}
.fc0_c00022{color:rgb(0,0,0);}
.fs1_c00022{font-size:54.000000px;}
.fs0_c00022{font-size:72.000000px;}
.y0_c00022{bottom:0.000000px;}
.y1_c00022{bottom:57.450450px;}
.h1_c00022{height:72.160312px;}
.h0_c00022{height:1263.000000px;}
.w1_c00022{width:892.500000px;}
.w0_c00022{width:892.830000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:127.620000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.v1_c00022{vertical-align:14.080000pt;}
.ls1_c00022{letter-spacing:-0.336000pt;}
.ls0_c00022{letter-spacing:1088.320000pt;}
.ws0_c00022{word-spacing:-13.008000pt;}
.ws1_c00022{word-spacing:0.000000pt;}
.fs1_c00022{font-size:48.000000pt;}
.fs0_c00022{font-size:64.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y1_c00022{bottom:51.067067pt;}
.h1_c00022{height:64.142500pt;}
.h0_c00022{height:1122.666667pt;}
.w1_c00022{width:793.333333pt;}
.w0_c00022{width:793.626667pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{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_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_d8474d598f8984f1a1b1c906.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;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_c00023;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_c1bee22f18a2358c4780aa9a.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00023;src:url('chunks/assets/font_d6966967ed80a53a1abd91eb.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:1.100098;font-style: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;}
.v1_c00023{vertical-align:15.840000px;}
.lsb_c00023{letter-spacing:-0.043200px;}
.ls8_c00023{letter-spacing:-0.036000px;}
.ls7_c00023{letter-spacing:-0.028800px;}
.ls9_c00023{letter-spacing:-0.014400px;}
.lsa_c00023{letter-spacing:-0.007200px;}
.ls5_c00023{letter-spacing:0.000000px;}
.ls2_c00023{letter-spacing:0.007200px;}
.ls4_c00023{letter-spacing:0.014400px;}
.ls6_c00023{letter-spacing:0.021600px;}
.ls3_c00023{letter-spacing:0.079200px;}
.ls1_c00023{letter-spacing:0.118800px;}
.ls0_c00023{letter-spacing:1216.800000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:-15.130800px;}
.ws2_c00023{word-spacing:-0.021600px;}
.ws6_c00023{word-spacing:-0.007200px;}
.ws1_c00023{word-spacing:0.000000px;}
.ws5_c00023{word-spacing:0.014400px;}
.ws3_c00023{word-spacing:0.028800px;}
.ws4_c00023{word-spacing:0.036000px;}
.ws8_c00023{word-spacing:208.792800px;}
.ws7_c00023{word-spacing:235.072800px;}
.ws1a_c00023{word-spacing:285.508800px;}
.ws17_c00023{word-spacing:288.360000px;}
.wsa_c00023{word-spacing:295.948800px;}
.wsc_c00023{word-spacing:306.374400px;}
.ws19_c00023{word-spacing:311.774400px;}
.ws15_c00023{word-spacing:315.345600px;}
.wsf_c00023{word-spacing:320.047200px;}
.ws9_c00023{word-spacing:322.200000px;}
.ws13_c00023{word-spacing:325.072800px;}
.ws16_c00023{word-spacing:329.083200px;}
.wsb_c00023{word-spacing:332.640000px;}
.ws10_c00023{word-spacing:335.505600px;}
.wse_c00023{word-spacing:352.000800px;}
.ws11_c00023{word-spacing:353.520000px;}
.ws12_c00023{word-spacing:361.792800px;}
.ws18_c00023{word-spacing:365.040000px;}
.ws14_c00023{word-spacing:374.774400px;}
.wsd_c00023{word-spacing:375.400800px;}
.ws1b_c00023{word-spacing:383.788800px;}
._9_c00023{margin-left:-374.760000px;}
._e_c00023{margin-left:-365.040000px;}
._d_c00023{margin-left:-329.040000px;}
._c_c00023{margin-left:-315.360000px;}
._b_c00023{width:206.640000px;}
._4_c00023{width:210.240000px;}
._1_c00023{width:241.920000px;}
._5_c00023{width:245.520000px;}
._3_c00023{width:250.200000px;}
._2_c00023{width:263.088000px;}
._a_c00023{width:273.240000px;}
._0_c00023{width:302.040000px;}
._6_c00023{width:312.480000px;}
._7_c00023{width:321.480000px;}
._8_c00023{width:325.080000px;}
.fc0_c00023{color:rgb(0,0,0);}
.fs0_c00023{font-size:54.000000px;}
.fs1_c00023{font-size:72.000000px;}
.fs2_c00023{font-size:108.000000px;}
.y0_c00023{bottom:0.000000px;}
.y3_c00023{bottom:57.450450px;}
.y28_c00023{bottom:355.080450px;}
.y27_c00023{bottom:392.070450px;}
.y26_c00023{bottom:412.320450px;}
.y25_c00023{bottom:432.570450px;}
.y24_c00023{bottom:452.820450px;}
.y23_c00023{bottom:473.070450px;}
.y22_c00023{bottom:493.320450px;}
.y21_c00023{bottom:513.570450px;}
.y20_c00023{bottom:533.820450px;}
.y1f_c00023{bottom:554.070450px;}
.y1e_c00023{bottom:574.320450px;}
.y1d_c00023{bottom:594.570450px;}
.y1c_c00023{bottom:614.820450px;}
.y1b_c00023{bottom:635.070450px;}
.y1a_c00023{bottom:655.320450px;}
.y19_c00023{bottom:675.570450px;}
.y18_c00023{bottom:695.820450px;}
.y17_c00023{bottom:716.070450px;}
.y16_c00023{bottom:736.320450px;}
.y15_c00023{bottom:756.570450px;}
.y14_c00023{bottom:776.820450px;}
.y13_c00023{bottom:797.070450px;}
.y12_c00023{bottom:817.320450px;}
.y11_c00023{bottom:837.570450px;}
.y10_c00023{bottom:857.820450px;}
.yf_c00023{bottom:878.070450px;}
.ye_c00023{bottom:898.320450px;}
.yd_c00023{bottom:918.570450px;}
.yc_c00023{bottom:938.820450px;}
.yb_c00023{bottom:959.070450px;}
.ya_c00023{bottom:979.320450px;}
.y9_c00023{bottom:999.570450px;}
.y8_c00023{bottom:1019.820450px;}
.y7_c00023{bottom:1040.070450px;}
.y6_c00023{bottom:1060.320450px;}
.y5_c00023{bottom:1080.570450px;}
.y4_c00023{bottom:1133.400450px;}
.y2_c00023{bottom:1177.770450px;}
.y1_c00023{bottom:1197.300450px;}
.h2_c00023{height:47.988281px;}
.h1_c00023{height:56.320312px;}
.h5_c00023{height:60.257812px;}
.h3_c00023{height:72.160312px;}
.h4_c00023{height:90.492188px;}
.h0_c00023{height:1263.000000px;}
.w1_c00023{width:892.500000px;}
.w0_c00023{width:892.830000px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:127.620000px;}
.x4_c00023{left:141.120000px;}
.x2_c00023{left:180.810000px;}
.x3_c00023{left:222.030000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.v1_c00023{vertical-align:14.080000pt;}
.lsb_c00023{letter-spacing:-0.038400pt;}
.ls8_c00023{letter-spacing:-0.032000pt;}
.ls7_c00023{letter-spacing:-0.025600pt;}
.ls9_c00023{letter-spacing:-0.012800pt;}
.lsa_c00023{letter-spacing:-0.006400pt;}
.ls5_c00023{letter-spacing:0.000000pt;}
.ls2_c00023{letter-spacing:0.006400pt;}
.ls4_c00023{letter-spacing:0.012800pt;}
.ls6_c00023{letter-spacing:0.019200pt;}
.ls3_c00023{letter-spacing:0.070400pt;}
.ls1_c00023{letter-spacing:0.105600pt;}
.ls0_c00023{letter-spacing:1081.600000pt;}
.ws0_c00023{word-spacing:-13.449600pt;}
.ws2_c00023{word-spacing:-0.019200pt;}
.ws6_c00023{word-spacing:-0.006400pt;}
.ws1_c00023{word-spacing:0.000000pt;}
.ws5_c00023{word-spacing:0.012800pt;}
.ws3_c00023{word-spacing:0.025600pt;}
.ws4_c00023{word-spacing:0.032000pt;}
.ws8_c00023{word-spacing:185.593600pt;}
.ws7_c00023{word-spacing:208.953600pt;}
.ws1a_c00023{word-spacing:253.785600pt;}
.ws17_c00023{word-spacing:256.320000pt;}
.wsa_c00023{word-spacing:263.065600pt;}
.wsc_c00023{word-spacing:272.332800pt;}
.ws19_c00023{word-spacing:277.132800pt;}
.ws15_c00023{word-spacing:280.307200pt;}
.wsf_c00023{word-spacing:284.486400pt;}
.ws9_c00023{word-spacing:286.400000pt;}
.ws13_c00023{word-spacing:288.953600pt;}
.ws16_c00023{word-spacing:292.518400pt;}
.wsb_c00023{word-spacing:295.680000pt;}
.ws10_c00023{word-spacing:298.227200pt;}
.wse_c00023{word-spacing:312.889600pt;}
.ws11_c00023{word-spacing:314.240000pt;}
.ws12_c00023{word-spacing:321.593600pt;}
.ws18_c00023{word-spacing:324.480000pt;}
.ws14_c00023{word-spacing:333.132800pt;}
.wsd_c00023{word-spacing:333.689600pt;}
.ws1b_c00023{word-spacing:341.145600pt;}
._9_c00023{margin-left:-333.120000pt;}
._e_c00023{margin-left:-324.480000pt;}
._d_c00023{margin-left:-292.480000pt;}
._c_c00023{margin-left:-280.320000pt;}
._b_c00023{width:183.680000pt;}
._4_c00023{width:186.880000pt;}
._1_c00023{width:215.040000pt;}
._5_c00023{width:218.240000pt;}
._3_c00023{width:222.400000pt;}
._2_c00023{width:233.856000pt;}
._a_c00023{width:242.880000pt;}
._0_c00023{width:268.480000pt;}
._6_c00023{width:277.760000pt;}
._7_c00023{width:285.760000pt;}
._8_c00023{width:288.960000pt;}
.fs0_c00023{font-size:48.000000pt;}
.fs1_c00023{font-size:64.000000pt;}
.fs2_c00023{font-size:96.000000pt;}
.y0_c00023{bottom:0.000000pt;}
.y3_c00023{bottom:51.067067pt;}
.y28_c00023{bottom:315.627067pt;}
.y27_c00023{bottom:348.507067pt;}
.y26_c00023{bottom:366.507067pt;}
.y25_c00023{bottom:384.507067pt;}
.y24_c00023{bottom:402.507067pt;}
.y23_c00023{bottom:420.507067pt;}
.y22_c00023{bottom:438.507067pt;}
.y21_c00023{bottom:456.507067pt;}
.y20_c00023{bottom:474.507067pt;}
.y1f_c00023{bottom:492.507067pt;}
.y1e_c00023{bottom:510.507067pt;}
.y1d_c00023{bottom:528.507067pt;}
.y1c_c00023{bottom:546.507067pt;}
.y1b_c00023{bottom:564.507067pt;}
.y1a_c00023{bottom:582.507067pt;}
.y19_c00023{bottom:600.507067pt;}
.y18_c00023{bottom:618.507067pt;}
.y17_c00023{bottom:636.507067pt;}
.y16_c00023{bottom:654.507067pt;}
.y15_c00023{bottom:672.507067pt;}
.y14_c00023{bottom:690.507067pt;}
.y13_c00023{bottom:708.507067pt;}
.y12_c00023{bottom:726.507067pt;}
.y11_c00023{bottom:744.507067pt;}
.y10_c00023{bottom:762.507067pt;}
.yf_c00023{bottom:780.507067pt;}
.ye_c00023{bottom:798.507067pt;}
.yd_c00023{bottom:816.507067pt;}
.yc_c00023{bottom:834.507067pt;}
.yb_c00023{bottom:852.507067pt;}
.ya_c00023{bottom:870.507067pt;}
.y9_c00023{bottom:888.507067pt;}
.y8_c00023{bottom:906.507067pt;}
.y7_c00023{bottom:924.507067pt;}
.y6_c00023{bottom:942.507067pt;}
.y5_c00023{bottom:960.507067pt;}
.y4_c00023{bottom:1007.467067pt;}
.y2_c00023{bottom:1046.907067pt;}
.y1_c00023{bottom:1064.267067pt;}
.h2_c00023{height:42.656250pt;}
.h1_c00023{height:50.062500pt;}
.h5_c00023{height:53.562500pt;}
.h3_c00023{height:64.142500pt;}
.h4_c00023{height:80.437500pt;}
.h0_c00023{height:1122.666667pt;}
.w1_c00023{width:793.333333pt;}
.w0_c00023{width:793.626667pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:113.440000pt;}
.x4_c00023{left:125.440000pt;}
.x2_c00023{left:160.720000pt;}
.x3_c00023{left:197.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_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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00024;src:url('chunks/assets/font_5b279d09125225a84d4b6def.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;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_c00024;src:url('chunks/assets/font_c7980fbb680a8e5abb333ab3.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.100098;font-style: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;}
.v1_c00024{vertical-align:15.840000px;}
.ls1_c00024{letter-spacing:-0.378000px;}
.ls2_c00024{letter-spacing:0.000000px;}
.ls0_c00024{letter-spacing:1213.920000px;}
.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;}
}
.ws0_c00024{word-spacing:-14.634000px;}
.ws1_c00024{word-spacing:0.000000px;}
.fc1_c00024{color:rgb(255,255,255);}
.fc0_c00024{color:rgb(0,0,0);}
.fs1_c00024{font-size:54.000000px;}
.fs0_c00024{font-size:72.000000px;}
.y0_c00024{bottom:0.000000px;}
.y1_c00024{bottom:57.450450px;}
.y3_c00024{bottom:1097.760450px;}
.y2_c00024{bottom:1141.140450px;}
.h2_c00024{height:60.257812px;}
.h1_c00024{height:72.160312px;}
.h0_c00024{height:1263.000000px;}
.w1_c00024{width:892.500000px;}
.w0_c00024{width:892.830000px;}
.x0_c00024{left:0.000000px;}
.x1_c00024{left:127.620000px;}
.x2_c00024{left:180.810000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.v1_c00024{vertical-align:14.080000pt;}
.ls1_c00024{letter-spacing:-0.336000pt;}
.ls2_c00024{letter-spacing:0.000000pt;}
.ls0_c00024{letter-spacing:1079.040000pt;}
.ws0_c00024{word-spacing:-13.008000pt;}
.ws1_c00024{word-spacing:0.000000pt;}
.fs1_c00024{font-size:48.000000pt;}
.fs0_c00024{font-size:64.000000pt;}
.y0_c00024{bottom:0.000000pt;}
.y1_c00024{bottom:51.067067pt;}
.y3_c00024{bottom:975.787067pt;}
.y2_c00024{bottom:1014.347067pt;}
.h2_c00024{height:53.562500pt;}
.h1_c00024{height:64.142500pt;}
.h0_c00024{height:1122.666667pt;}
.w1_c00024{width:793.333333pt;}
.w0_c00024{width:793.626667pt;}
.x0_c00024{left:0.000000pt;}
.x1_c00024{left:113.440000pt;}
.x2_c00024{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_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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_f932f3a176b5f9d64d69b0aa.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;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_c00025;src:url('chunks/assets/font_f1119d8e4db5e67afb861149.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00025;src:url('chunks/assets/font_9c65118c2526a60db1162d7b.woff2')format("woff");}.ff4_c00025{font-family:ff4_c00025;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00025;src:url('chunks/assets/font_17624efe3215ddc2a4e5681b.woff2')format("woff");}.ff5_c00025{font-family:ff5_c00025;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_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;}
.v1_c00025{vertical-align:29.880600px;}
.ls24_c00025{letter-spacing:-0.373248px;}
.ls1e_c00025{letter-spacing:-0.028800px;}
.ls1a_c00025{letter-spacing:-0.021600px;}
.ls1f_c00025{letter-spacing:-0.014400px;}
.ls25_c00025{letter-spacing:-0.011664px;}
.ls22_c00025{letter-spacing:-0.009576px;}
.ls21_c00025{letter-spacing:-0.007776px;}
.ls1d_c00025{letter-spacing:-0.007200px;}
.ls23_c00025{letter-spacing:-0.003888px;}
.ls17_c00025{letter-spacing:0.000000px;}
.ls15_c00025{letter-spacing:0.004788px;}
.ls0_c00025{letter-spacing:0.007200px;}
.lsb_c00025{letter-spacing:0.009576px;}
.ls18_c00025{letter-spacing:0.010800px;}
.ls3_c00025{letter-spacing:0.014364px;}
.ls5_c00025{letter-spacing:0.019152px;}
.ls1b_c00025{letter-spacing:0.021600px;}
.lse_c00025{letter-spacing:0.023940px;}
.ls9_c00025{letter-spacing:0.028728px;}
.ls1_c00025{letter-spacing:0.028800px;}
.ls16_c00025{letter-spacing:0.033516px;}
.ls12_c00025{letter-spacing:0.038304px;}
.ls1c_c00025{letter-spacing:0.043200px;}
.ls2_c00025{letter-spacing:0.045720px;}
.ls8_c00025{letter-spacing:0.047880px;}
.ls19_c00025{letter-spacing:0.050328px;}
.ls11_c00025{letter-spacing:0.052668px;}
.lsc_c00025{letter-spacing:0.057456px;}
.lsa_c00025{letter-spacing:0.062244px;}
.ls7_c00025{letter-spacing:0.067032px;}
.ls10_c00025{letter-spacing:0.075960px;}
.ls20_c00025{letter-spacing:0.093600px;}
.ls6_c00025{letter-spacing:0.104040px;}
.lsd_c00025{letter-spacing:0.105336px;}
.lsf_c00025{letter-spacing:0.110124px;}
.ls4_c00025{letter-spacing:0.134064px;}
.ls13_c00025{letter-spacing:0.189360px;}
.ls14_c00025{letter-spacing:3.591360px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:-13.444704px;}
.ws4_c00025{word-spacing:-13.310640px;}
.ws1_c00025{word-spacing:-10.808640px;}
.ws2_c00025{word-spacing:-10.804752px;}
.ws3_c00025{word-spacing:-10.435392px;}
.ws6_c00025{word-spacing:-0.050328px;}
.ws37_c00025{word-spacing:-0.019152px;}
.ws5_c00025{word-spacing:0.000000px;}
.ws17_c00025{word-spacing:0.028800px;}
.ws2b_c00025{word-spacing:1.029420px;}
.ws2c_c00025{word-spacing:1.043784px;}
.ws2a_c00025{word-spacing:1.072512px;}
.ws1a_c00025{word-spacing:1.807200px;}
.ws1c_c00025{word-spacing:2.111508px;}
.ws1d_c00025{word-spacing:2.130660px;}
.ws1b_c00025{word-spacing:2.159388px;}
.ws32_c00025{word-spacing:3.198384px;}
.ws20_c00025{word-spacing:3.207960px;}
.ws1f_c00025{word-spacing:3.236688px;}
.ws34_c00025{word-spacing:3.251052px;}
.ws33_c00025{word-spacing:3.265416px;}
.ws1e_c00025{word-spacing:3.552696px;}
.ws22_c00025{word-spacing:3.557484px;}
.ws21_c00025{word-spacing:3.586212px;}
.ws23_c00025{word-spacing:3.605364px;}
.ws18_c00025{word-spacing:3.607200px;}
.ws19_c00025{word-spacing:3.664800px;}
.ws2d_c00025{word-spacing:3.940524px;}
.ws2e_c00025{word-spacing:3.954888px;}
.ws13_c00025{word-spacing:4.651200px;}
.ws15_c00025{word-spacing:4.687200px;}
.ws16_c00025{word-spacing:4.730400px;}
.ws14_c00025{word-spacing:4.802400px;}
.ws27_c00025{word-spacing:5.759964px;}
.ws29_c00025{word-spacing:5.788692px;}
.ws28_c00025{word-spacing:6.028092px;}
.wsc_c00025{word-spacing:6.796800px;}
.wsb_c00025{word-spacing:6.832800px;}
.wsa_c00025{word-spacing:6.883200px;}
.ws24_c00025{word-spacing:8.958348px;}
.ws26_c00025{word-spacing:8.991864px;}
.ws25_c00025{word-spacing:9.274356px;}
.ws36_c00025{word-spacing:9.686124px;}
.ws35_c00025{word-spacing:9.705276px;}
.ws31_c00025{word-spacing:11.472048px;}
.ws2f_c00025{word-spacing:11.486412px;}
.ws30_c00025{word-spacing:11.515140px;}
.ws9_c00025{word-spacing:12.160800px;}
.ws8_c00025{word-spacing:12.290400px;}
.ws11_c00025{word-spacing:14.392800px;}
.ws12_c00025{word-spacing:14.414400px;}
.ws7_c00025{word-spacing:14.421600px;}
.wsd_c00025{word-spacing:22.327200px;}
.wse_c00025{word-spacing:22.399200px;}
.ws10_c00025{word-spacing:29.548800px;}
.wsf_c00025{word-spacing:29.563200px;}
._0_c00025{width:1.238400px;}
._1_c00025{width:2.452392px;}
._2_c00025{width:4.204692px;}
._3_c00025{width:9.738792px;}
.fc0_c00025{color:rgb(0,0,0);}
.fs6_c00025{font-size:38.880000px;}
.fs4_c00025{font-size:42.120000px;}
.fs5_c00025{font-size:47.880000px;}
.fs1_c00025{font-size:54.000000px;}
.fs0_c00025{font-size:72.000000px;}
.fs3_c00025{font-size:83.880000px;}
.fs2_c00025{font-size:108.000000px;}
.y0_c00025{bottom:0.000000px;}
.y2_c00025{bottom:57.450450px;}
.y3_c00025{bottom:61.410450px;}
.y1e_c00025{bottom:113.703690px;}
.y1d_c00025{bottom:127.564950px;}
.y1c_c00025{bottom:141.334950px;}
.y1b_c00025{bottom:155.103690px;}
.y1a_c00025{bottom:168.964950px;}
.y19_c00025{bottom:182.730450px;}
.y18_c00025{bottom:196.506930px;}
.y17_c00025{bottom:210.368190px;}
.y16_c00025{bottom:224.133690px;}
.y15_c00025{bottom:237.899190px;}
.y14_c00025{bottom:251.760450px;}
.y13_c00025{bottom:266.970450px;}
.y12_c00025{bottom:287.580450px;}
.y11_c00025{bottom:308.280600px;}
.y10_c00025{bottom:331.860600px;}
.yf_c00025{bottom:366.240600px;}
.ye_c00025{bottom:409.710450px;}
.yd_c00025{bottom:444.090450px;}
.yc_c00025{bottom:478.560450px;}
.yb_c00025{bottom:512.940450px;}
.ya_c00025{bottom:547.410450px;}
.y9_c00025{bottom:581.790450px;}
.y8_c00025{bottom:616.260450px;}
.y7_c00025{bottom:650.640450px;}
.y6_c00025{bottom:685.110450px;}
.y5_c00025{bottom:726.960450px;}
.y4_c00025{bottom:875.370450px;}
.y1_c00025{bottom:1193.250450px;}
.h7_c00025{height:49.937344px;}
.h2_c00025{height:56.320312px;}
.h5_c00025{height:60.257812px;}
.h6_c00025{height:65.131420px;}
.h4_c00025{height:70.282266px;}
.h1_c00025{height:70.664062px;}
.h3_c00025{height:90.492188px;}
.h0_c00025{height:1263.000000px;}
.w1_c00025{width:892.500000px;}
.w0_c00025{width:892.830000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:127.620000px;}
.x5_c00025{left:141.119280px;}
.x4_c00025{left:180.810000px;}
.x3_c00025{left:442.710000px;}
.x2_c00025{left:446.490000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.v1_c00025{vertical-align:26.560533pt;}
.ls24_c00025{letter-spacing:-0.331776pt;}
.ls1e_c00025{letter-spacing:-0.025600pt;}
.ls1a_c00025{letter-spacing:-0.019200pt;}
.ls1f_c00025{letter-spacing:-0.012800pt;}
.ls25_c00025{letter-spacing:-0.010368pt;}
.ls22_c00025{letter-spacing:-0.008512pt;}
.ls21_c00025{letter-spacing:-0.006912pt;}
.ls1d_c00025{letter-spacing:-0.006400pt;}
.ls23_c00025{letter-spacing:-0.003456pt;}
.ls17_c00025{letter-spacing:0.000000pt;}
.ls15_c00025{letter-spacing:0.004256pt;}
.ls0_c00025{letter-spacing:0.006400pt;}
.lsb_c00025{letter-spacing:0.008512pt;}
.ls18_c00025{letter-spacing:0.009600pt;}
.ls3_c00025{letter-spacing:0.012768pt;}
.ls5_c00025{letter-spacing:0.017024pt;}
.ls1b_c00025{letter-spacing:0.019200pt;}
.lse_c00025{letter-spacing:0.021280pt;}
.ls9_c00025{letter-spacing:0.025536pt;}
.ls1_c00025{letter-spacing:0.025600pt;}
.ls16_c00025{letter-spacing:0.029792pt;}
.ls12_c00025{letter-spacing:0.034048pt;}
.ls1c_c00025{letter-spacing:0.038400pt;}
.ls2_c00025{letter-spacing:0.040640pt;}
.ls8_c00025{letter-spacing:0.042560pt;}
.ls19_c00025{letter-spacing:0.044736pt;}
.ls11_c00025{letter-spacing:0.046816pt;}
.lsc_c00025{letter-spacing:0.051072pt;}
.lsa_c00025{letter-spacing:0.055328pt;}
.ls7_c00025{letter-spacing:0.059584pt;}
.ls10_c00025{letter-spacing:0.067520pt;}
.ls20_c00025{letter-spacing:0.083200pt;}
.ls6_c00025{letter-spacing:0.092480pt;}
.lsd_c00025{letter-spacing:0.093632pt;}
.lsf_c00025{letter-spacing:0.097888pt;}
.ls4_c00025{letter-spacing:0.119168pt;}
.ls13_c00025{letter-spacing:0.168320pt;}
.ls14_c00025{letter-spacing:3.192320pt;}
.ws0_c00025{word-spacing:-11.950848pt;}
.ws4_c00025{word-spacing:-11.831680pt;}
.ws1_c00025{word-spacing:-9.607680pt;}
.ws2_c00025{word-spacing:-9.604224pt;}
.ws3_c00025{word-spacing:-9.275904pt;}
.ws6_c00025{word-spacing:-0.044736pt;}
.ws37_c00025{word-spacing:-0.017024pt;}
.ws5_c00025{word-spacing:0.000000pt;}
.ws17_c00025{word-spacing:0.025600pt;}
.ws2b_c00025{word-spacing:0.915040pt;}
.ws2c_c00025{word-spacing:0.927808pt;}
.ws2a_c00025{word-spacing:0.953344pt;}
.ws1a_c00025{word-spacing:1.606400pt;}
.ws1c_c00025{word-spacing:1.876896pt;}
.ws1d_c00025{word-spacing:1.893920pt;}
.ws1b_c00025{word-spacing:1.919456pt;}
.ws32_c00025{word-spacing:2.843008pt;}
.ws20_c00025{word-spacing:2.851520pt;}
.ws1f_c00025{word-spacing:2.877056pt;}
.ws34_c00025{word-spacing:2.889824pt;}
.ws33_c00025{word-spacing:2.902592pt;}
.ws1e_c00025{word-spacing:3.157952pt;}
.ws22_c00025{word-spacing:3.162208pt;}
.ws21_c00025{word-spacing:3.187744pt;}
.ws23_c00025{word-spacing:3.204768pt;}
.ws18_c00025{word-spacing:3.206400pt;}
.ws19_c00025{word-spacing:3.257600pt;}
.ws2d_c00025{word-spacing:3.502688pt;}
.ws2e_c00025{word-spacing:3.515456pt;}
.ws13_c00025{word-spacing:4.134400pt;}
.ws15_c00025{word-spacing:4.166400pt;}
.ws16_c00025{word-spacing:4.204800pt;}
.ws14_c00025{word-spacing:4.268800pt;}
.ws27_c00025{word-spacing:5.119968pt;}
.ws29_c00025{word-spacing:5.145504pt;}
.ws28_c00025{word-spacing:5.358304pt;}
.wsc_c00025{word-spacing:6.041600pt;}
.wsb_c00025{word-spacing:6.073600pt;}
.wsa_c00025{word-spacing:6.118400pt;}
.ws24_c00025{word-spacing:7.962976pt;}
.ws26_c00025{word-spacing:7.992768pt;}
.ws25_c00025{word-spacing:8.243872pt;}
.ws36_c00025{word-spacing:8.609888pt;}
.ws35_c00025{word-spacing:8.626912pt;}
.ws31_c00025{word-spacing:10.197376pt;}
.ws2f_c00025{word-spacing:10.210144pt;}
.ws30_c00025{word-spacing:10.235680pt;}
.ws9_c00025{word-spacing:10.809600pt;}
.ws8_c00025{word-spacing:10.924800pt;}
.ws11_c00025{word-spacing:12.793600pt;}
.ws12_c00025{word-spacing:12.812800pt;}
.ws7_c00025{word-spacing:12.819200pt;}
.wsd_c00025{word-spacing:19.846400pt;}
.wse_c00025{word-spacing:19.910400pt;}
.ws10_c00025{word-spacing:26.265600pt;}
.wsf_c00025{word-spacing:26.278400pt;}
._0_c00025{width:1.100800pt;}
._1_c00025{width:2.179904pt;}
._2_c00025{width:3.737504pt;}
._3_c00025{width:8.656704pt;}
.fs6_c00025{font-size:34.560000pt;}
.fs4_c00025{font-size:37.440000pt;}
.fs5_c00025{font-size:42.560000pt;}
.fs1_c00025{font-size:48.000000pt;}
.fs0_c00025{font-size:64.000000pt;}
.fs3_c00025{font-size:74.560000pt;}
.fs2_c00025{font-size:96.000000pt;}
.y0_c00025{bottom:0.000000pt;}
.y2_c00025{bottom:51.067067pt;}
.y3_c00025{bottom:54.587067pt;}
.y1e_c00025{bottom:101.069947pt;}
.y1d_c00025{bottom:113.391067pt;}
.y1c_c00025{bottom:125.631067pt;}
.y1b_c00025{bottom:137.869947pt;}
.y1a_c00025{bottom:150.191067pt;}
.y19_c00025{bottom:162.427067pt;}
.y18_c00025{bottom:174.672827pt;}
.y17_c00025{bottom:186.993947pt;}
.y16_c00025{bottom:199.229947pt;}
.y15_c00025{bottom:211.465947pt;}
.y14_c00025{bottom:223.787067pt;}
.y13_c00025{bottom:237.307067pt;}
.y12_c00025{bottom:255.627067pt;}
.y11_c00025{bottom:274.027200pt;}
.y10_c00025{bottom:294.987200pt;}
.yf_c00025{bottom:325.547200pt;}
.ye_c00025{bottom:364.187067pt;}
.yd_c00025{bottom:394.747067pt;}
.yc_c00025{bottom:425.387067pt;}
.yb_c00025{bottom:455.947067pt;}
.ya_c00025{bottom:486.587067pt;}
.y9_c00025{bottom:517.147067pt;}
.y8_c00025{bottom:547.787067pt;}
.y7_c00025{bottom:578.347067pt;}
.y6_c00025{bottom:608.987067pt;}
.y5_c00025{bottom:646.187067pt;}
.y4_c00025{bottom:778.107067pt;}
.y1_c00025{bottom:1060.667067pt;}
.h7_c00025{height:44.388750pt;}
.h2_c00025{height:50.062500pt;}
.h5_c00025{height:53.562500pt;}
.h6_c00025{height:57.894596pt;}
.h4_c00025{height:62.473125pt;}
.h1_c00025{height:62.812500pt;}
.h3_c00025{height:80.437500pt;}
.h0_c00025{height:1122.666667pt;}
.w1_c00025{width:793.333333pt;}
.w0_c00025{width:793.626667pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:113.440000pt;}
.x5_c00025{left:125.439360pt;}
.x4_c00025{left:160.720000pt;}
.x3_c00025{left:393.520000pt;}
.x2_c00025{left:396.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_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_ed8234e2e43120f2230d168c.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.100098;font-style:normal;font-weight:normal;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_4b1eee4a1a2fb3c23b16a658.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;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_c00026;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00026;src:url('chunks/assets/font_9e261605537d848c38679abd.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;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_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;}
.v1_c00026{vertical-align:15.840000px;}
.v2_c00026{vertical-align:29.880000px;}
.ls1d_c00026{letter-spacing:-0.043200px;}
.ls1e_c00026{letter-spacing:-0.036000px;}
.ls1b_c00026{letter-spacing:-0.028800px;}
.ls2b_c00026{letter-spacing:-0.023940px;}
.ls20_c00026{letter-spacing:-0.021600px;}
.ls1a_c00026{letter-spacing:-0.014400px;}
.ls2c_c00026{letter-spacing:-0.014364px;}
.ls27_c00026{letter-spacing:-0.011664px;}
.ls28_c00026{letter-spacing:-0.007776px;}
.ls1c_c00026{letter-spacing:-0.007200px;}
.ls29_c00026{letter-spacing:-0.004788px;}
.ls24_c00026{letter-spacing:-0.003888px;}
.ls19_c00026{letter-spacing:0.000000px;}
.ls16_c00026{letter-spacing:0.004788px;}
.ls2_c00026{letter-spacing:0.007200px;}
.ls11_c00026{letter-spacing:0.009576px;}
.lsa_c00026{letter-spacing:0.014364px;}
.ls3_c00026{letter-spacing:0.014400px;}
.lsb_c00026{letter-spacing:0.019152px;}
.ls5_c00026{letter-spacing:0.021600px;}
.ls12_c00026{letter-spacing:0.023940px;}
.ls14_c00026{letter-spacing:0.028728px;}
.ls21_c00026{letter-spacing:0.028800px;}
.ls7_c00026{letter-spacing:0.033516px;}
.lsf_c00026{letter-spacing:0.038304px;}
.ls9_c00026{letter-spacing:0.043092px;}
.ls4_c00026{letter-spacing:0.045720px;}
.ls6_c00026{letter-spacing:0.047880px;}
.ls0_c00026{letter-spacing:0.048096px;}
.lsd_c00026{letter-spacing:0.052668px;}
.ls22_c00026{letter-spacing:0.057456px;}
.ls10_c00026{letter-spacing:0.062244px;}
.ls8_c00026{letter-spacing:0.067032px;}
.ls17_c00026{letter-spacing:0.071820px;}
.lse_c00026{letter-spacing:0.076608px;}
.ls1f_c00026{letter-spacing:0.086400px;}
.ls23_c00026{letter-spacing:0.090972px;}
.lsc_c00026{letter-spacing:0.104040px;}
.ls18_c00026{letter-spacing:0.138852px;}
.ls26_c00026{letter-spacing:0.158004px;}
.ls15_c00026{letter-spacing:0.172368px;}
.ls25_c00026{letter-spacing:0.357696px;}
.ls2a_c00026{letter-spacing:0.378252px;}
.ls13_c00026{letter-spacing:0.435960px;}
.ls1_c00026{letter-spacing:1242.360000px;}
.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;}
}
.ws6_c00026{word-spacing:-13.483008px;}
.ws4_c00026{word-spacing:-13.363308px;}
.ws8_c00026{word-spacing:-13.348944px;}
.ws7_c00026{word-spacing:-13.339368px;}
.ws1_c00026{word-spacing:-13.310640px;}
.ws0_c00026{word-spacing:-11.166336px;}
.ws2_c00026{word-spacing:-10.804752px;}
.ws5_c00026{word-spacing:-10.800864px;}
.ws3_c00026{word-spacing:-10.796976px;}
.ws29_c00026{word-spacing:-0.038304px;}
.ws27_c00026{word-spacing:-0.028728px;}
.ws1f_c00026{word-spacing:-0.021600px;}
.ws28_c00026{word-spacing:-0.014364px;}
.wsa_c00026{word-spacing:0.000000px;}
.ws51_c00026{word-spacing:0.014364px;}
.wsc_c00026{word-spacing:0.014400px;}
.ws9_c00026{word-spacing:0.042084px;}
.wsb_c00026{word-spacing:0.338400px;}
.ws33_c00026{word-spacing:0.938448px;}
.ws2f_c00026{word-spacing:1.019844px;}
.ws31_c00026{word-spacing:1.034208px;}
.ws30_c00026{word-spacing:1.058148px;}
.ws58_c00026{word-spacing:1.316700px;}
.ws32_c00026{word-spacing:1.393308px;}
.ws57_c00026{word-spacing:1.417248px;}
.ws18_c00026{word-spacing:1.432800px;}
.ws19_c00026{word-spacing:1.454400px;}
.ws59_c00026{word-spacing:1.460340px;}
.ws2a_c00026{word-spacing:1.752408px;}
.ws34_c00026{word-spacing:1.771560px;}
.ws2b_c00026{word-spacing:1.776348px;}
.ws1a_c00026{word-spacing:1.800000px;}
.ws12_c00026{word-spacing:2.116800px;}
.ws53_c00026{word-spacing:2.125872px;}
.ws54_c00026{word-spacing:2.145024px;}
.ws52_c00026{word-spacing:2.154600px;}
.ws17_c00026{word-spacing:2.181600px;}
.ws13_c00026{word-spacing:2.203200px;}
.ws20_c00026{word-spacing:2.505600px;}
.ws21_c00026{word-spacing:2.613600px;}
.ws5b_c00026{word-spacing:2.853648px;}
.ws3a_c00026{word-spacing:2.863224px;}
.ws39_c00026{word-spacing:2.868012px;}
.ws38_c00026{word-spacing:2.872800px;}
.ws5c_c00026{word-spacing:2.911104px;}
.ws5a_c00026{word-spacing:2.920680px;}
.ws45_c00026{word-spacing:3.557484px;}
.ws40_c00026{word-spacing:3.567060px;}
.ws3f_c00026{word-spacing:3.571848px;}
.ws41_c00026{word-spacing:3.576636px;}
.ws42_c00026{word-spacing:3.586212px;}
.ws11_c00026{word-spacing:3.600000px;}
.ws43_c00026{word-spacing:3.610152px;}
.ws44_c00026{word-spacing:3.930948px;}
.ws16_c00026{word-spacing:3.996000px;}
.ws56_c00026{word-spacing:4.984308px;}
.ws55_c00026{word-spacing:5.013036px;}
.ws49_c00026{word-spacing:5.362560px;}
.ws4b_c00026{word-spacing:5.400864px;}
.ws4a_c00026{word-spacing:5.410440px;}
.ws2e_c00026{word-spacing:5.726448px;}
.ws47_c00026{word-spacing:5.731236px;}
.ws2d_c00026{word-spacing:5.759964px;}
.ws2c_c00026{word-spacing:5.764752px;}
.ws46_c00026{word-spacing:6.123852px;}
.ws48_c00026{word-spacing:6.813324px;}
.ws15_c00026{word-spacing:7.185600px;}
.ws14_c00026{word-spacing:7.192800px;}
.ws4f_c00026{word-spacing:7.517160px;}
.ws50_c00026{word-spacing:7.536312px;}
.ws4d_c00026{word-spacing:8.632764px;}
.ws4e_c00026{word-spacing:8.637552px;}
.ws4c_c00026{word-spacing:8.661492px;}
.ws3e_c00026{word-spacing:8.967924px;}
.ws3d_c00026{word-spacing:10.777788px;}
.ws3c_c00026{word-spacing:10.796940px;}
.ws3b_c00026{word-spacing:10.816092px;}
.ws37_c00026{word-spacing:12.563712px;}
.ws36_c00026{word-spacing:12.578076px;}
.ws22_c00026{word-spacing:12.621600px;}
.ws23_c00026{word-spacing:12.686400px;}
.ws35_c00026{word-spacing:12.965904px;}
.wsf_c00026{word-spacing:14.047200px;}
.ws10_c00026{word-spacing:14.083200px;}
.ws24_c00026{word-spacing:14.400000px;}
.ws25_c00026{word-spacing:14.407200px;}
.ws1d_c00026{word-spacing:14.774400px;}
.ws1e_c00026{word-spacing:14.781600px;}
.ws26_c00026{word-spacing:14.860800px;}
.ws1b_c00026{word-spacing:19.080000px;}
.ws1c_c00026{word-spacing:19.101600px;}
.wsd_c00026{word-spacing:33.091200px;}
.wse_c00026{word-spacing:33.134400px;}
._0_c00026{margin-left:-1.322640px;}
._1_c00026{width:1.080000px;}
._5_c00026{width:2.106720px;}
._3_c00026{width:3.114252px;}
._4_c00026{width:5.472684px;}
._2_c00026{width:6.573852px;}
.fc0_c00026{color:rgb(0,0,0);}
.fs5_c00026{font-size:38.880000px;}
.fs3_c00026{font-size:42.120000px;}
.fs4_c00026{font-size:47.880000px;}
.fs1_c00026{font-size:54.000000px;}
.fs0_c00026{font-size:60.120000px;}
.fs2_c00026{font-size:72.000000px;}
.y0_c00026{bottom:0.000000px;}
.y3_c00026{bottom:57.450450px;}
.y2e_c00026{bottom:109.203690px;}
.y2d_c00026{bottom:123.064950px;}
.y2c_c00026{bottom:136.840710px;}
.y2b_c00026{bottom:150.606210px;}
.y2a_c00026{bottom:168.968190px;}
.y29_c00026{bottom:182.733690px;}
.y28_c00026{bottom:196.499190px;}
.y27_c00026{bottom:210.360450px;}
.y26_c00026{bottom:224.147190px;}
.y25_c00026{bottom:237.912690px;}
.y24_c00026{bottom:251.773950px;}
.y23_c00026{bottom:265.539450px;}
.y22_c00026{bottom:279.304950px;}
.y21_c00026{bottom:293.069190px;}
.y20_c00026{bottom:306.934950px;}
.y1f_c00026{bottom:320.700450px;}
.y1e_c00026{bottom:334.469190px;}
.y1d_c00026{bottom:348.334950px;}
.y1c_c00026{bottom:362.102970px;}
.y1b_c00026{bottom:375.868470px;}
.y1a_c00026{bottom:394.230450px;}
.y19_c00026{bottom:409.440600px;}
.y18_c00026{bottom:430.140600px;}
.y17_c00026{bottom:450.840450px;}
.y16_c00026{bottom:494.490450px;}
.y15_c00026{bottom:528.960450px;}
.y14_c00026{bottom:563.340450px;}
.y13_c00026{bottom:597.810450px;}
.y12_c00026{bottom:641.190450px;}
.y11_c00026{bottom:675.660450px;}
.y10_c00026{bottom:710.040450px;}
.yf_c00026{bottom:744.510450px;}
.ye_c00026{bottom:778.890450px;}
.yd_c00026{bottom:813.360450px;}
.yc_c00026{bottom:856.740450px;}
.yb_c00026{bottom:891.210450px;}
.ya_c00026{bottom:925.590450px;}
.y9_c00026{bottom:960.060450px;}
.y8_c00026{bottom:994.440450px;}
.y7_c00026{bottom:1028.910450px;}
.y6_c00026{bottom:1063.290450px;}
.y5_c00026{bottom:1106.760450px;}
.y4_c00026{bottom:1141.140450px;}
.y2_c00026{bottom:1177.860450px;}
.y1_c00026{bottom:1196.850450px;}
.h9_c00026{height:49.937344px;}
.ha_c00026{height:49.942384px;}
.h1_c00026{height:50.315273px;}
.h2_c00026{height:56.320312px;}
.h4_c00026{height:60.257812px;}
.h5_c00026{height:65.130820px;}
.h6_c00026{height:65.131420px;}
.h8_c00026{height:70.664062px;}
.h7_c00026{height:70.664662px;}
.h3_c00026{height:72.160312px;}
.h0_c00026{height:1263.000000px;}
.w1_c00026{width:892.500000px;}
.w0_c00026{width:892.830000px;}
.x0_c00026{left:0.000000px;}
.x1_c00026{left:127.620000px;}
.x3_c00026{left:141.122160px;}
.x2_c00026{left:180.810000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.v1_c00026{vertical-align:14.080000pt;}
.v2_c00026{vertical-align:26.560000pt;}
.ls1d_c00026{letter-spacing:-0.038400pt;}
.ls1e_c00026{letter-spacing:-0.032000pt;}
.ls1b_c00026{letter-spacing:-0.025600pt;}
.ls2b_c00026{letter-spacing:-0.021280pt;}
.ls20_c00026{letter-spacing:-0.019200pt;}
.ls1a_c00026{letter-spacing:-0.012800pt;}
.ls2c_c00026{letter-spacing:-0.012768pt;}
.ls27_c00026{letter-spacing:-0.010368pt;}
.ls28_c00026{letter-spacing:-0.006912pt;}
.ls1c_c00026{letter-spacing:-0.006400pt;}
.ls29_c00026{letter-spacing:-0.004256pt;}
.ls24_c00026{letter-spacing:-0.003456pt;}
.ls19_c00026{letter-spacing:0.000000pt;}
.ls16_c00026{letter-spacing:0.004256pt;}
.ls2_c00026{letter-spacing:0.006400pt;}
.ls11_c00026{letter-spacing:0.008512pt;}
.lsa_c00026{letter-spacing:0.012768pt;}
.ls3_c00026{letter-spacing:0.012800pt;}
.lsb_c00026{letter-spacing:0.017024pt;}
.ls5_c00026{letter-spacing:0.019200pt;}
.ls12_c00026{letter-spacing:0.021280pt;}
.ls14_c00026{letter-spacing:0.025536pt;}
.ls21_c00026{letter-spacing:0.025600pt;}
.ls7_c00026{letter-spacing:0.029792pt;}
.lsf_c00026{letter-spacing:0.034048pt;}
.ls9_c00026{letter-spacing:0.038304pt;}
.ls4_c00026{letter-spacing:0.040640pt;}
.ls6_c00026{letter-spacing:0.042560pt;}
.ls0_c00026{letter-spacing:0.042752pt;}
.lsd_c00026{letter-spacing:0.046816pt;}
.ls22_c00026{letter-spacing:0.051072pt;}
.ls10_c00026{letter-spacing:0.055328pt;}
.ls8_c00026{letter-spacing:0.059584pt;}
.ls17_c00026{letter-spacing:0.063840pt;}
.lse_c00026{letter-spacing:0.068096pt;}
.ls1f_c00026{letter-spacing:0.076800pt;}
.ls23_c00026{letter-spacing:0.080864pt;}
.lsc_c00026{letter-spacing:0.092480pt;}
.ls18_c00026{letter-spacing:0.123424pt;}
.ls26_c00026{letter-spacing:0.140448pt;}
.ls15_c00026{letter-spacing:0.153216pt;}
.ls25_c00026{letter-spacing:0.317952pt;}
.ls2a_c00026{letter-spacing:0.336224pt;}
.ls13_c00026{letter-spacing:0.387520pt;}
.ls1_c00026{letter-spacing:1104.320000pt;}
.ws6_c00026{word-spacing:-11.984896pt;}
.ws4_c00026{word-spacing:-11.878496pt;}
.ws8_c00026{word-spacing:-11.865728pt;}
.ws7_c00026{word-spacing:-11.857216pt;}
.ws1_c00026{word-spacing:-11.831680pt;}
.ws0_c00026{word-spacing:-9.925632pt;}
.ws2_c00026{word-spacing:-9.604224pt;}
.ws5_c00026{word-spacing:-9.600768pt;}
.ws3_c00026{word-spacing:-9.597312pt;}
.ws29_c00026{word-spacing:-0.034048pt;}
.ws27_c00026{word-spacing:-0.025536pt;}
.ws1f_c00026{word-spacing:-0.019200pt;}
.ws28_c00026{word-spacing:-0.012768pt;}
.wsa_c00026{word-spacing:0.000000pt;}
.ws51_c00026{word-spacing:0.012768pt;}
.wsc_c00026{word-spacing:0.012800pt;}
.ws9_c00026{word-spacing:0.037408pt;}
.wsb_c00026{word-spacing:0.300800pt;}
.ws33_c00026{word-spacing:0.834176pt;}
.ws2f_c00026{word-spacing:0.906528pt;}
.ws31_c00026{word-spacing:0.919296pt;}
.ws30_c00026{word-spacing:0.940576pt;}
.ws58_c00026{word-spacing:1.170400pt;}
.ws32_c00026{word-spacing:1.238496pt;}
.ws57_c00026{word-spacing:1.259776pt;}
.ws18_c00026{word-spacing:1.273600pt;}
.ws19_c00026{word-spacing:1.292800pt;}
.ws59_c00026{word-spacing:1.298080pt;}
.ws2a_c00026{word-spacing:1.557696pt;}
.ws34_c00026{word-spacing:1.574720pt;}
.ws2b_c00026{word-spacing:1.578976pt;}
.ws1a_c00026{word-spacing:1.600000pt;}
.ws12_c00026{word-spacing:1.881600pt;}
.ws53_c00026{word-spacing:1.889664pt;}
.ws54_c00026{word-spacing:1.906688pt;}
.ws52_c00026{word-spacing:1.915200pt;}
.ws17_c00026{word-spacing:1.939200pt;}
.ws13_c00026{word-spacing:1.958400pt;}
.ws20_c00026{word-spacing:2.227200pt;}
.ws21_c00026{word-spacing:2.323200pt;}
.ws5b_c00026{word-spacing:2.536576pt;}
.ws3a_c00026{word-spacing:2.545088pt;}
.ws39_c00026{word-spacing:2.549344pt;}
.ws38_c00026{word-spacing:2.553600pt;}
.ws5c_c00026{word-spacing:2.587648pt;}
.ws5a_c00026{word-spacing:2.596160pt;}
.ws45_c00026{word-spacing:3.162208pt;}
.ws40_c00026{word-spacing:3.170720pt;}
.ws3f_c00026{word-spacing:3.174976pt;}
.ws41_c00026{word-spacing:3.179232pt;}
.ws42_c00026{word-spacing:3.187744pt;}
.ws11_c00026{word-spacing:3.200000pt;}
.ws43_c00026{word-spacing:3.209024pt;}
.ws44_c00026{word-spacing:3.494176pt;}
.ws16_c00026{word-spacing:3.552000pt;}
.ws56_c00026{word-spacing:4.430496pt;}
.ws55_c00026{word-spacing:4.456032pt;}
.ws49_c00026{word-spacing:4.766720pt;}
.ws4b_c00026{word-spacing:4.800768pt;}
.ws4a_c00026{word-spacing:4.809280pt;}
.ws2e_c00026{word-spacing:5.090176pt;}
.ws47_c00026{word-spacing:5.094432pt;}
.ws2d_c00026{word-spacing:5.119968pt;}
.ws2c_c00026{word-spacing:5.124224pt;}
.ws46_c00026{word-spacing:5.443424pt;}
.ws48_c00026{word-spacing:6.056288pt;}
.ws15_c00026{word-spacing:6.387200pt;}
.ws14_c00026{word-spacing:6.393600pt;}
.ws4f_c00026{word-spacing:6.681920pt;}
.ws50_c00026{word-spacing:6.698944pt;}
.ws4d_c00026{word-spacing:7.673568pt;}
.ws4e_c00026{word-spacing:7.677824pt;}
.ws4c_c00026{word-spacing:7.699104pt;}
.ws3e_c00026{word-spacing:7.971488pt;}
.ws3d_c00026{word-spacing:9.580256pt;}
.ws3c_c00026{word-spacing:9.597280pt;}
.ws3b_c00026{word-spacing:9.614304pt;}
.ws37_c00026{word-spacing:11.167744pt;}
.ws36_c00026{word-spacing:11.180512pt;}
.ws22_c00026{word-spacing:11.219200pt;}
.ws23_c00026{word-spacing:11.276800pt;}
.ws35_c00026{word-spacing:11.525248pt;}
.wsf_c00026{word-spacing:12.486400pt;}
.ws10_c00026{word-spacing:12.518400pt;}
.ws24_c00026{word-spacing:12.800000pt;}
.ws25_c00026{word-spacing:12.806400pt;}
.ws1d_c00026{word-spacing:13.132800pt;}
.ws1e_c00026{word-spacing:13.139200pt;}
.ws26_c00026{word-spacing:13.209600pt;}
.ws1b_c00026{word-spacing:16.960000pt;}
.ws1c_c00026{word-spacing:16.979200pt;}
.wsd_c00026{word-spacing:29.414400pt;}
.wse_c00026{word-spacing:29.452800pt;}
._0_c00026{margin-left:-1.175680pt;}
._1_c00026{width:0.960000pt;}
._5_c00026{width:1.872640pt;}
._3_c00026{width:2.768224pt;}
._4_c00026{width:4.864608pt;}
._2_c00026{width:5.843424pt;}
.fs5_c00026{font-size:34.560000pt;}
.fs3_c00026{font-size:37.440000pt;}
.fs4_c00026{font-size:42.560000pt;}
.fs1_c00026{font-size:48.000000pt;}
.fs0_c00026{font-size:53.440000pt;}
.fs2_c00026{font-size:64.000000pt;}
.y0_c00026{bottom:0.000000pt;}
.y3_c00026{bottom:51.067067pt;}
.y2e_c00026{bottom:97.069947pt;}
.y2d_c00026{bottom:109.391067pt;}
.y2c_c00026{bottom:121.636187pt;}
.y2b_c00026{bottom:133.872187pt;}
.y2a_c00026{bottom:150.193947pt;}
.y29_c00026{bottom:162.429947pt;}
.y28_c00026{bottom:174.665947pt;}
.y27_c00026{bottom:186.987067pt;}
.y26_c00026{bottom:199.241947pt;}
.y25_c00026{bottom:211.477947pt;}
.y24_c00026{bottom:223.799067pt;}
.y23_c00026{bottom:236.035067pt;}
.y22_c00026{bottom:248.271067pt;}
.y21_c00026{bottom:260.505947pt;}
.y20_c00026{bottom:272.831067pt;}
.y1f_c00026{bottom:285.067067pt;}
.y1e_c00026{bottom:297.305947pt;}
.y1d_c00026{bottom:309.631067pt;}
.y1c_c00026{bottom:321.869307pt;}
.y1b_c00026{bottom:334.105307pt;}
.y1a_c00026{bottom:350.427067pt;}
.y19_c00026{bottom:363.947200pt;}
.y18_c00026{bottom:382.347200pt;}
.y17_c00026{bottom:400.747067pt;}
.y16_c00026{bottom:439.547067pt;}
.y15_c00026{bottom:470.187067pt;}
.y14_c00026{bottom:500.747067pt;}
.y13_c00026{bottom:531.387067pt;}
.y12_c00026{bottom:569.947067pt;}
.y11_c00026{bottom:600.587067pt;}
.y10_c00026{bottom:631.147067pt;}
.yf_c00026{bottom:661.787067pt;}
.ye_c00026{bottom:692.347067pt;}
.yd_c00026{bottom:722.987067pt;}
.yc_c00026{bottom:761.547067pt;}
.yb_c00026{bottom:792.187067pt;}
.ya_c00026{bottom:822.747067pt;}
.y9_c00026{bottom:853.387067pt;}
.y8_c00026{bottom:883.947067pt;}
.y7_c00026{bottom:914.587067pt;}
.y6_c00026{bottom:945.147067pt;}
.y5_c00026{bottom:983.787067pt;}
.y4_c00026{bottom:1014.347067pt;}
.y2_c00026{bottom:1046.987067pt;}
.y1_c00026{bottom:1063.867067pt;}
.h9_c00026{height:44.388750pt;}
.ha_c00026{height:44.393230pt;}
.h1_c00026{height:44.724687pt;}
.h2_c00026{height:50.062500pt;}
.h4_c00026{height:53.562500pt;}
.h5_c00026{height:57.894063pt;}
.h6_c00026{height:57.894596pt;}
.h8_c00026{height:62.812500pt;}
.h7_c00026{height:62.813033pt;}
.h3_c00026{height:64.142500pt;}
.h0_c00026{height:1122.666667pt;}
.w1_c00026{width:793.333333pt;}
.w0_c00026{width:793.626667pt;}
.x0_c00026{left:0.000000pt;}
.x1_c00026{left:113.440000pt;}
.x3_c00026{left:125.441920pt;}
.x2_c00026{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_c00027 {
    display:none;
  }
  .loading-indicator_c00027.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00027 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00027 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00027" -> "#page-container .classname_c00027")
 */
.pf_c00027 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00027 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00027 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00027 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00027 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00027 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00027 {overflow:visible;}
  }
}
.c_c00027 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00027 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00027:after { /* webkit #35443 */
  content: '';
}
.t_c00027:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00027 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00027 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00027 { /* info for Javascript */
  display:none;
}
.l_c00027 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00027 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00027 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00027:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00027;src:url('chunks/assets/font_28ea3631a5c5e287ffaed01e.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00027;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_3876e1ad31db534b9582e012.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00027;src:url('chunks/assets/font_91530217fc2382f47fe50edf.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00027;src:url('chunks/assets/font_f99656f8da215b5c91c5b0a2.woff2')format("woff");}.ff5_c00027{font-family:ff5_c00027;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_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00027{vertical-align:-60.840000px;}
.v0_c00027{vertical-align:0.000000px;}
.v1_c00027{vertical-align:15.840000px;}
.v2_c00027{vertical-align:29.880000px;}
.ls1f_c00027{letter-spacing:-0.043200px;}
.ls17_c00027{letter-spacing:-0.036072px;}
.ls1e_c00027{letter-spacing:-0.036000px;}
.ls1a_c00027{letter-spacing:-0.028800px;}
.ls1d_c00027{letter-spacing:-0.021600px;}
.ls1b_c00027{letter-spacing:-0.014400px;}
.ls26_c00027{letter-spacing:-0.011664px;}
.ls22_c00027{letter-spacing:-0.007776px;}
.ls19_c00027{letter-spacing:-0.007200px;}
.ls23_c00027{letter-spacing:-0.003888px;}
.ls18_c00027{letter-spacing:0.000000px;}
.lsf_c00027{letter-spacing:0.004788px;}
.ls2_c00027{letter-spacing:0.007200px;}
.ls11_c00027{letter-spacing:0.014364px;}
.ls1_c00027{letter-spacing:0.014400px;}
.ls6_c00027{letter-spacing:0.019152px;}
.ls3_c00027{letter-spacing:0.021600px;}
.lsd_c00027{letter-spacing:0.023940px;}
.ls9_c00027{letter-spacing:0.028440px;}
.lsc_c00027{letter-spacing:0.028728px;}
.ls1c_c00027{letter-spacing:0.028800px;}
.ls8_c00027{letter-spacing:0.038304px;}
.ls21_c00027{letter-spacing:0.041940px;}
.ls12_c00027{letter-spacing:0.043092px;}
.lse_c00027{letter-spacing:0.057456px;}
.ls20_c00027{letter-spacing:0.057600px;}
.ls10_c00027{letter-spacing:0.062244px;}
.lsb_c00027{letter-spacing:0.067032px;}
.lsa_c00027{letter-spacing:0.071820px;}
.ls15_c00027{letter-spacing:0.075960px;}
.ls7_c00027{letter-spacing:0.076608px;}
.ls5_c00027{letter-spacing:0.104040px;}
.ls16_c00027{letter-spacing:0.105336px;}
.ls13_c00027{letter-spacing:0.172368px;}
.ls24_c00027{letter-spacing:0.282492px;}
.ls25_c00027{letter-spacing:0.369360px;}
.ls14_c00027{letter-spacing:0.378720px;}
.ls4_c00027{letter-spacing:36.000000px;}
.ls0_c00027{letter-spacing:1242.360000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00027{word-spacing:-13.483008px;}
.ws7_c00027{word-spacing:-13.339368px;}
.ws4_c00027{word-spacing:-13.315428px;}
.ws3_c00027{word-spacing:-11.178000px;}
.ws2_c00027{word-spacing:-10.808640px;}
.ws1_c00027{word-spacing:-10.804752px;}
.ws0_c00027{word-spacing:-10.800864px;}
.ws6_c00027{word-spacing:-10.796976px;}
.ws28_c00027{word-spacing:-0.134208px;}
.ws44_c00027{word-spacing:-0.023940px;}
.ws9_c00027{word-spacing:0.000000px;}
.ws1f_c00027{word-spacing:0.007200px;}
.ws2c_c00027{word-spacing:0.036000px;}
.ws2b_c00027{word-spacing:0.064800px;}
.ws20_c00027{word-spacing:0.100800px;}
.ws8_c00027{word-spacing:0.126252px;}
.ws2f_c00027{word-spacing:0.301644px;}
.ws30_c00027{word-spacing:0.339948px;}
.ws2e_c00027{word-spacing:0.359100px;}
.ws43_c00027{word-spacing:0.991116px;}
.ws40_c00027{word-spacing:1.058148px;}
.ws42_c00027{word-spacing:1.072512px;}
.ws41_c00027{word-spacing:1.077300px;}
.ws24_c00027{word-spacing:1.879200px;}
.ws25_c00027{word-spacing:1.900800px;}
.ws3c_c00027{word-spacing:2.135448px;}
.ws3b_c00027{word-spacing:2.164176px;}
.ws19_c00027{word-spacing:2.872800px;}
.wsf_c00027{word-spacing:3.232800px;}
.wse_c00027{word-spacing:3.268800px;}
.ws1e_c00027{word-spacing:4.672800px;}
.ws1d_c00027{word-spacing:4.701600px;}
.ws1a_c00027{word-spacing:5.515200px;}
.ws1b_c00027{word-spacing:5.544000px;}
.ws10_c00027{word-spacing:6.134400px;}
.ws3a_c00027{word-spacing:6.435072px;}
.ws37_c00027{word-spacing:6.439860px;}
.ws38_c00027{word-spacing:6.492528px;}
.ws3f_c00027{word-spacing:6.798960px;}
.ws3d_c00027{word-spacing:6.818112px;}
.ws39_c00027{word-spacing:6.842052px;}
.wsb_c00027{word-spacing:6.868800px;}
.ws26_c00027{word-spacing:6.897600px;}
.wsa_c00027{word-spacing:6.933600px;}
.ws1c_c00027{word-spacing:7.192800px;}
.ws3e_c00027{word-spacing:7.196364px;}
.ws32_c00027{word-spacing:8.374212px;}
.ws33_c00027{word-spacing:8.589672px;}
.ws34_c00027{word-spacing:8.627976px;}
.ws31_c00027{word-spacing:8.943984px;}
.ws35_c00027{word-spacing:8.987076px;}
.ws36_c00027{word-spacing:9.355752px;}
.ws12_c00027{word-spacing:12.571200px;}
.ws11_c00027{word-spacing:12.592800px;}
.ws23_c00027{word-spacing:13.341600px;}
.ws2a_c00027{word-spacing:14.032800px;}
.ws2d_c00027{word-spacing:14.054400px;}
.ws29_c00027{word-spacing:14.083200px;}
.ws15_c00027{word-spacing:20.865600px;}
.ws16_c00027{word-spacing:20.995200px;}
.ws22_c00027{word-spacing:21.542400px;}
.ws21_c00027{word-spacing:21.571200px;}
.ws27_c00027{word-spacing:23.824800px;}
.ws17_c00027{word-spacing:25.840800px;}
.ws18_c00027{word-spacing:26.028000px;}
.ws14_c00027{word-spacing:26.654400px;}
.ws13_c00027{word-spacing:26.776800px;}
.wsd_c00027{word-spacing:29.923200px;}
.wsc_c00027{word-spacing:29.937600px;}
._1_c00027{margin-left:-4.680000px;}
._2_c00027{margin-left:-1.251972px;}
._0_c00027{width:1.166400px;}
._3_c00027{width:6.425496px;}
.fc0_c00027{color:rgb(0,0,0);}
.fs6_c00027{font-size:38.880000px;}
.fs3_c00027{font-size:42.120000px;}
.fs5_c00027{font-size:47.880000px;}
.fs2_c00027{font-size:54.000000px;}
.fs0_c00027{font-size:60.120000px;}
.fs1_c00027{font-size:72.000000px;}
.fs4_c00027{font-size:83.880000px;}
.y0_c00027{bottom:0.000000px;}
.y3_c00027{bottom:57.450450px;}
.y25_c00027{bottom:113.699190px;}
.y24_c00027{bottom:127.564950px;}
.y23_c00027{bottom:141.333840px;}
.y22_c00027{bottom:155.099340px;}
.y21_c00027{bottom:168.964950px;}
.y20_c00027{bottom:182.734950px;}
.y1f_c00027{bottom:196.499190px;}
.y1e_c00027{bottom:225.570450px;}
.y1d_c00027{bottom:246.270450px;}
.y1c_c00027{bottom:266.970450px;}
.y1b_c00027{bottom:294.420450px;}
.y1a_c00027{bottom:328.800450px;}
.y19_c00027{bottom:363.270450px;}
.y18_c00027{bottom:405.030450px;}
.y17_c00027{bottom:469.110450px;}
.y16_c00027{bottom:503.490450px;}
.y15_c00027{bottom:537.960450px;}
.y14_c00027{bottom:572.340450px;}
.y13_c00027{bottom:606.810450px;}
.y12_c00027{bottom:641.190450px;}
.y11_c00027{bottom:684.660450px;}
.y10_c00027{bottom:719.040450px;}
.yf_c00027{bottom:753.510450px;}
.ye_c00027{bottom:787.890450px;}
.yd_c00027{bottom:822.360450px;}
.yc_c00027{bottom:856.740450px;}
.yb_c00027{bottom:891.210450px;}
.ya_c00027{bottom:925.590450px;}
.y9_c00027{bottom:969.060450px;}
.y8_c00027{bottom:1003.440450px;}
.y7_c00027{bottom:1037.910450px;}
.y6_c00027{bottom:1072.290450px;}
.y5_c00027{bottom:1106.760450px;}
.y4_c00027{bottom:1141.140450px;}
.y2_c00027{bottom:1173.810450px;}
.y1_c00027{bottom:1196.850450px;}
.h9_c00027{height:49.937344px;}
.h8_c00027{height:49.942384px;}
.h1_c00027{height:50.315273px;}
.h4_c00027{height:60.257812px;}
.h7_c00027{height:60.328125px;}
.h5_c00027{height:65.130820px;}
.h6_c00027{height:70.282266px;}
.h2_c00027{height:70.664062px;}
.h3_c00027{height:72.160313px;}
.h0_c00027{height:1263.000000px;}
.w1_c00027{width:892.500000px;}
.w0_c00027{width:892.830000px;}
.x0_c00027{left:0.000000px;}
.x2_c00027{left:127.620000px;}
.x4_c00027{left:141.117570px;}
.x3_c00027{left:180.810000px;}
.x1_c00027{left:689.310000px;}
@media print{
.v3_c00027{vertical-align:-54.080000pt;}
.v0_c00027{vertical-align:0.000000pt;}
.v1_c00027{vertical-align:14.080000pt;}
.v2_c00027{vertical-align:26.560000pt;}
.ls1f_c00027{letter-spacing:-0.038400pt;}
.ls17_c00027{letter-spacing:-0.032064pt;}
.ls1e_c00027{letter-spacing:-0.032000pt;}
.ls1a_c00027{letter-spacing:-0.025600pt;}
.ls1d_c00027{letter-spacing:-0.019200pt;}
.ls1b_c00027{letter-spacing:-0.012800pt;}
.ls26_c00027{letter-spacing:-0.010368pt;}
.ls22_c00027{letter-spacing:-0.006912pt;}
.ls19_c00027{letter-spacing:-0.006400pt;}
.ls23_c00027{letter-spacing:-0.003456pt;}
.ls18_c00027{letter-spacing:0.000000pt;}
.lsf_c00027{letter-spacing:0.004256pt;}
.ls2_c00027{letter-spacing:0.006400pt;}
.ls11_c00027{letter-spacing:0.012768pt;}
.ls1_c00027{letter-spacing:0.012800pt;}
.ls6_c00027{letter-spacing:0.017024pt;}
.ls3_c00027{letter-spacing:0.019200pt;}
.lsd_c00027{letter-spacing:0.021280pt;}
.ls9_c00027{letter-spacing:0.025280pt;}
.lsc_c00027{letter-spacing:0.025536pt;}
.ls1c_c00027{letter-spacing:0.025600pt;}
.ls8_c00027{letter-spacing:0.034048pt;}
.ls21_c00027{letter-spacing:0.037280pt;}
.ls12_c00027{letter-spacing:0.038304pt;}
.lse_c00027{letter-spacing:0.051072pt;}
.ls20_c00027{letter-spacing:0.051200pt;}
.ls10_c00027{letter-spacing:0.055328pt;}
.lsb_c00027{letter-spacing:0.059584pt;}
.lsa_c00027{letter-spacing:0.063840pt;}
.ls15_c00027{letter-spacing:0.067520pt;}
.ls7_c00027{letter-spacing:0.068096pt;}
.ls5_c00027{letter-spacing:0.092480pt;}
.ls16_c00027{letter-spacing:0.093632pt;}
.ls13_c00027{letter-spacing:0.153216pt;}
.ls24_c00027{letter-spacing:0.251104pt;}
.ls25_c00027{letter-spacing:0.328320pt;}
.ls14_c00027{letter-spacing:0.336640pt;}
.ls4_c00027{letter-spacing:32.000000pt;}
.ls0_c00027{letter-spacing:1104.320000pt;}
.ws5_c00027{word-spacing:-11.984896pt;}
.ws7_c00027{word-spacing:-11.857216pt;}
.ws4_c00027{word-spacing:-11.835936pt;}
.ws3_c00027{word-spacing:-9.936000pt;}
.ws2_c00027{word-spacing:-9.607680pt;}
.ws1_c00027{word-spacing:-9.604224pt;}
.ws0_c00027{word-spacing:-9.600768pt;}
.ws6_c00027{word-spacing:-9.597312pt;}
.ws28_c00027{word-spacing:-0.119296pt;}
.ws44_c00027{word-spacing:-0.021280pt;}
.ws9_c00027{word-spacing:0.000000pt;}
.ws1f_c00027{word-spacing:0.006400pt;}
.ws2c_c00027{word-spacing:0.032000pt;}
.ws2b_c00027{word-spacing:0.057600pt;}
.ws20_c00027{word-spacing:0.089600pt;}
.ws8_c00027{word-spacing:0.112224pt;}
.ws2f_c00027{word-spacing:0.268128pt;}
.ws30_c00027{word-spacing:0.302176pt;}
.ws2e_c00027{word-spacing:0.319200pt;}
.ws43_c00027{word-spacing:0.880992pt;}
.ws40_c00027{word-spacing:0.940576pt;}
.ws42_c00027{word-spacing:0.953344pt;}
.ws41_c00027{word-spacing:0.957600pt;}
.ws24_c00027{word-spacing:1.670400pt;}
.ws25_c00027{word-spacing:1.689600pt;}
.ws3c_c00027{word-spacing:1.898176pt;}
.ws3b_c00027{word-spacing:1.923712pt;}
.ws19_c00027{word-spacing:2.553600pt;}
.wsf_c00027{word-spacing:2.873600pt;}
.wse_c00027{word-spacing:2.905600pt;}
.ws1e_c00027{word-spacing:4.153600pt;}
.ws1d_c00027{word-spacing:4.179200pt;}
.ws1a_c00027{word-spacing:4.902400pt;}
.ws1b_c00027{word-spacing:4.928000pt;}
.ws10_c00027{word-spacing:5.452800pt;}
.ws3a_c00027{word-spacing:5.720064pt;}
.ws37_c00027{word-spacing:5.724320pt;}
.ws38_c00027{word-spacing:5.771136pt;}
.ws3f_c00027{word-spacing:6.043520pt;}
.ws3d_c00027{word-spacing:6.060544pt;}
.ws39_c00027{word-spacing:6.081824pt;}
.wsb_c00027{word-spacing:6.105600pt;}
.ws26_c00027{word-spacing:6.131200pt;}
.wsa_c00027{word-spacing:6.163200pt;}
.ws1c_c00027{word-spacing:6.393600pt;}
.ws3e_c00027{word-spacing:6.396768pt;}
.ws32_c00027{word-spacing:7.443744pt;}
.ws33_c00027{word-spacing:7.635264pt;}
.ws34_c00027{word-spacing:7.669312pt;}
.ws31_c00027{word-spacing:7.950208pt;}
.ws35_c00027{word-spacing:7.988512pt;}
.ws36_c00027{word-spacing:8.316224pt;}
.ws12_c00027{word-spacing:11.174400pt;}
.ws11_c00027{word-spacing:11.193600pt;}
.ws23_c00027{word-spacing:11.859200pt;}
.ws2a_c00027{word-spacing:12.473600pt;}
.ws2d_c00027{word-spacing:12.492800pt;}
.ws29_c00027{word-spacing:12.518400pt;}
.ws15_c00027{word-spacing:18.547200pt;}
.ws16_c00027{word-spacing:18.662400pt;}
.ws22_c00027{word-spacing:19.148800pt;}
.ws21_c00027{word-spacing:19.174400pt;}
.ws27_c00027{word-spacing:21.177600pt;}
.ws17_c00027{word-spacing:22.969600pt;}
.ws18_c00027{word-spacing:23.136000pt;}
.ws14_c00027{word-spacing:23.692800pt;}
.ws13_c00027{word-spacing:23.801600pt;}
.wsd_c00027{word-spacing:26.598400pt;}
.wsc_c00027{word-spacing:26.611200pt;}
._1_c00027{margin-left:-4.160000pt;}
._2_c00027{margin-left:-1.112864pt;}
._0_c00027{width:1.036800pt;}
._3_c00027{width:5.711552pt;}
.fs6_c00027{font-size:34.560000pt;}
.fs3_c00027{font-size:37.440000pt;}
.fs5_c00027{font-size:42.560000pt;}
.fs2_c00027{font-size:48.000000pt;}
.fs0_c00027{font-size:53.440000pt;}
.fs1_c00027{font-size:64.000000pt;}
.fs4_c00027{font-size:74.560000pt;}
.y0_c00027{bottom:0.000000pt;}
.y3_c00027{bottom:51.067067pt;}
.y25_c00027{bottom:101.065947pt;}
.y24_c00027{bottom:113.391067pt;}
.y23_c00027{bottom:125.630080pt;}
.y22_c00027{bottom:137.866080pt;}
.y21_c00027{bottom:150.191067pt;}
.y20_c00027{bottom:162.431067pt;}
.y1f_c00027{bottom:174.665947pt;}
.y1e_c00027{bottom:200.507067pt;}
.y1d_c00027{bottom:218.907067pt;}
.y1c_c00027{bottom:237.307067pt;}
.y1b_c00027{bottom:261.707067pt;}
.y1a_c00027{bottom:292.267067pt;}
.y19_c00027{bottom:322.907067pt;}
.y18_c00027{bottom:360.027067pt;}
.y17_c00027{bottom:416.987067pt;}
.y16_c00027{bottom:447.547067pt;}
.y15_c00027{bottom:478.187067pt;}
.y14_c00027{bottom:508.747067pt;}
.y13_c00027{bottom:539.387067pt;}
.y12_c00027{bottom:569.947067pt;}
.y11_c00027{bottom:608.587067pt;}
.y10_c00027{bottom:639.147067pt;}
.yf_c00027{bottom:669.787067pt;}
.ye_c00027{bottom:700.347067pt;}
.yd_c00027{bottom:730.987067pt;}
.yc_c00027{bottom:761.547067pt;}
.yb_c00027{bottom:792.187067pt;}
.ya_c00027{bottom:822.747067pt;}
.y9_c00027{bottom:861.387067pt;}
.y8_c00027{bottom:891.947067pt;}
.y7_c00027{bottom:922.587067pt;}
.y6_c00027{bottom:953.147067pt;}
.y5_c00027{bottom:983.787067pt;}
.y4_c00027{bottom:1014.347067pt;}
.y2_c00027{bottom:1043.387067pt;}
.y1_c00027{bottom:1063.867067pt;}
.h9_c00027{height:44.388750pt;}
.h8_c00027{height:44.393230pt;}
.h1_c00027{height:44.724687pt;}
.h4_c00027{height:53.562500pt;}
.h7_c00027{height:53.625000pt;}
.h5_c00027{height:57.894062pt;}
.h6_c00027{height:62.473125pt;}
.h2_c00027{height:62.812500pt;}
.h3_c00027{height:64.142500pt;}
.h0_c00027{height:1122.666667pt;}
.w1_c00027{width:793.333333pt;}
.w0_c00027{width:793.626667pt;}
.x0_c00027{left:0.000000pt;}
.x2_c00027{left:113.440000pt;}
.x4_c00027{left:125.437840pt;}
.x3_c00027{left:160.720000pt;}
.x1_c00027{left:612.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_c00028 {
    display:none;
  }
  .loading-indicator_c00028.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00028 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00028 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00028" -> "#page-container .classname_c00028")
 */
.pf_c00028 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00028 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00028 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00028 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00028 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00028 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00028 {overflow:visible;}
  }
}
.c_c00028 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00028 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00028:after { /* webkit #35443 */
  content: '';
}
.t_c00028:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00028 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00028 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00028 { /* info for Javascript */
  display:none;
}
.l_c00028 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00028 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00028 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00028:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00028;src:url('chunks/assets/font_b329a8315ceae83a710e2e4d.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00028;src:url('chunks/assets/font_a8807201ede465da190b430a.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;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_c00028;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00028;src:url('chunks/assets/font_9f02d1412c8dffa25123044a.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;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_c00028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.v1_c00028{vertical-align:15.840000px;}
.v2_c00028{vertical-align:29.880000px;}
.ls14_c00028{letter-spacing:-0.036000px;}
.ls12_c00028{letter-spacing:-0.028800px;}
.ls11_c00028{letter-spacing:-0.021600px;}
.ls10_c00028{letter-spacing:-0.014400px;}
.ls15_c00028{letter-spacing:-0.009576px;}
.ls13_c00028{letter-spacing:-0.007200px;}
.ls16_c00028{letter-spacing:-0.003888px;}
.lsf_c00028{letter-spacing:0.000000px;}
.ls2_c00028{letter-spacing:0.007200px;}
.ls7_c00028{letter-spacing:0.014364px;}
.ls5_c00028{letter-spacing:0.014400px;}
.ls9_c00028{letter-spacing:0.019152px;}
.ls4_c00028{letter-spacing:0.028800px;}
.lsc_c00028{letter-spacing:0.033516px;}
.lsb_c00028{letter-spacing:0.038304px;}
.ls3_c00028{letter-spacing:0.043200px;}
.ls6_c00028{letter-spacing:0.045720px;}
.lsa_c00028{letter-spacing:0.047880px;}
.ls0_c00028{letter-spacing:0.048096px;}
.lsd_c00028{letter-spacing:0.052668px;}
.lse_c00028{letter-spacing:0.075960px;}
.ls8_c00028{letter-spacing:0.134064px;}
.ls1_c00028{letter-spacing:1242.360000px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:-13.444704px;}
.ws2_c00028{word-spacing:-13.348944px;}
.ws1_c00028{word-spacing:-10.808640px;}
.ws18_c00028{word-spacing:-0.007200px;}
.ws4_c00028{word-spacing:0.000000px;}
.ws3_c00028{word-spacing:0.042084px;}
.ws17_c00028{word-spacing:0.050400px;}
.ws2b_c00028{word-spacing:1.800000px;}
.ws7_c00028{word-spacing:1.821600px;}
.ws15_c00028{word-spacing:2.196000px;}
.ws22_c00028{word-spacing:2.512800px;}
.ws21_c00028{word-spacing:2.599200px;}
.ws32_c00028{word-spacing:2.848860px;}
.ws31_c00028{word-spacing:2.877588px;}
.ws33_c00028{word-spacing:2.882376px;}
.ws28_c00028{word-spacing:2.908800px;}
.ws34_c00028{word-spacing:3.236688px;}
.ws6_c00028{word-spacing:3.254400px;}
.ws5_c00028{word-spacing:3.304800px;}
.ws10_c00028{word-spacing:3.556800px;}
.ws8_c00028{word-spacing:3.592800px;}
.ws16_c00028{word-spacing:3.607200px;}
.wsf_c00028{word-spacing:3.636000px;}
.ws20_c00028{word-spacing:3.916800px;}
.ws36_c00028{word-spacing:3.926160px;}
.ws35_c00028{word-spacing:3.945312px;}
.ws37_c00028{word-spacing:3.959676px;}
.ws1f_c00028{word-spacing:3.974400px;}
.wsb_c00028{word-spacing:4.327200px;}
.ws19_c00028{word-spacing:5.414400px;}
.ws1a_c00028{word-spacing:5.421600px;}
.ws26_c00028{word-spacing:5.731200px;}
.ws25_c00028{word-spacing:5.774400px;}
.wsa_c00028{word-spacing:7.876800px;}
.ws27_c00028{word-spacing:7.927200px;}
.ws9_c00028{word-spacing:8.128800px;}
.wse_c00028{word-spacing:8.287200px;}
.ws39_c00028{word-spacing:8.618400px;}
.ws38_c00028{word-spacing:8.666280px;}
.ws1c_c00028{word-spacing:8.892000px;}
.ws1b_c00028{word-spacing:9.014400px;}
.ws30_c00028{word-spacing:11.880000px;}
.ws13_c00028{word-spacing:12.607200px;}
.ws14_c00028{word-spacing:12.621600px;}
.ws11_c00028{word-spacing:13.312800px;}
.ws12_c00028{word-spacing:13.384800px;}
.wsd_c00028{word-spacing:13.924800px;}
.ws2e_c00028{word-spacing:14.040000px;}
.wsc_c00028{word-spacing:14.047200px;}
.ws2f_c00028{word-spacing:14.090400px;}
.ws1d_c00028{word-spacing:17.251200px;}
.ws1e_c00028{word-spacing:17.337600px;}
.ws2a_c00028{word-spacing:21.960000px;}
.ws29_c00028{word-spacing:21.974400px;}
.ws24_c00028{word-spacing:23.032800px;}
.ws23_c00028{word-spacing:23.097600px;}
.ws2d_c00028{word-spacing:23.385600px;}
.ws2c_c00028{word-spacing:23.594400px;}
._0_c00028{margin-left:-1.322640px;}
._1_c00028{width:1.080000px;}
._2_c00028{width:2.877588px;}
._3_c00028{width:8.915256px;}
.fc0_c00028{color:rgb(0,0,0);}
.fs5_c00028{font-size:38.880000px;}
.fs3_c00028{font-size:42.120000px;}
.fs4_c00028{font-size:47.880000px;}
.fs1_c00028{font-size:54.000000px;}
.fs0_c00028{font-size:60.120000px;}
.fs2_c00028{font-size:72.000000px;}
.y0_c00028{bottom:0.000000px;}
.y3_c00028{bottom:57.450450px;}
.y24_c00028{bottom:109.203690px;}
.y23_c00028{bottom:123.064950px;}
.y22_c00028{bottom:136.830450px;}
.y21_c00028{bottom:152.040450px;}
.y20_c00028{bottom:172.740450px;}
.y1f_c00028{bottom:193.440450px;}
.y1e_c00028{bottom:237.090450px;}
.y1d_c00028{bottom:271.560450px;}
.y1c_c00028{bottom:305.940450px;}
.y1b_c00028{bottom:340.410450px;}
.y1a_c00028{bottom:374.790450px;}
.y19_c00028{bottom:409.260450px;}
.y18_c00028{bottom:443.640450px;}
.y17_c00028{bottom:478.110450px;}
.y16_c00028{bottom:512.490450px;}
.y15_c00028{bottom:546.960450px;}
.y14_c00028{bottom:581.340450px;}
.y13_c00028{bottom:615.810450px;}
.y12_c00028{bottom:650.190450px;}
.y11_c00028{bottom:684.660450px;}
.y10_c00028{bottom:728.040450px;}
.yf_c00028{bottom:762.510450px;}
.ye_c00028{bottom:796.890450px;}
.yd_c00028{bottom:831.360450px;}
.yc_c00028{bottom:865.740450px;}
.yb_c00028{bottom:900.210450px;}
.ya_c00028{bottom:934.590450px;}
.y9_c00028{bottom:969.060450px;}
.y8_c00028{bottom:1003.440450px;}
.y7_c00028{bottom:1037.910450px;}
.y6_c00028{bottom:1072.290450px;}
.y5_c00028{bottom:1106.760450px;}
.y4_c00028{bottom:1141.140450px;}
.y2_c00028{bottom:1177.860450px;}
.y1_c00028{bottom:1196.850450px;}
.h7_c00028{height:49.937344px;}
.h1_c00028{height:50.315273px;}
.h2_c00028{height:56.320312px;}
.h4_c00028{height:60.257812px;}
.h5_c00028{height:65.130820px;}
.h6_c00028{height:70.664062px;}
.h3_c00028{height:72.160312px;}
.h0_c00028{height:1263.000000px;}
.w1_c00028{width:892.500000px;}
.w0_c00028{width:892.830000px;}
.x0_c00028{left:0.000000px;}
.x1_c00028{left:127.620000px;}
.x3_c00028{left:141.110010px;}
.x2_c00028{left:180.810000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.v1_c00028{vertical-align:14.080000pt;}
.v2_c00028{vertical-align:26.560000pt;}
.ls14_c00028{letter-spacing:-0.032000pt;}
.ls12_c00028{letter-spacing:-0.025600pt;}
.ls11_c00028{letter-spacing:-0.019200pt;}
.ls10_c00028{letter-spacing:-0.012800pt;}
.ls15_c00028{letter-spacing:-0.008512pt;}
.ls13_c00028{letter-spacing:-0.006400pt;}
.ls16_c00028{letter-spacing:-0.003456pt;}
.lsf_c00028{letter-spacing:0.000000pt;}
.ls2_c00028{letter-spacing:0.006400pt;}
.ls7_c00028{letter-spacing:0.012768pt;}
.ls5_c00028{letter-spacing:0.012800pt;}
.ls9_c00028{letter-spacing:0.017024pt;}
.ls4_c00028{letter-spacing:0.025600pt;}
.lsc_c00028{letter-spacing:0.029792pt;}
.lsb_c00028{letter-spacing:0.034048pt;}
.ls3_c00028{letter-spacing:0.038400pt;}
.ls6_c00028{letter-spacing:0.040640pt;}
.lsa_c00028{letter-spacing:0.042560pt;}
.ls0_c00028{letter-spacing:0.042752pt;}
.lsd_c00028{letter-spacing:0.046816pt;}
.lse_c00028{letter-spacing:0.067520pt;}
.ls8_c00028{letter-spacing:0.119168pt;}
.ls1_c00028{letter-spacing:1104.320000pt;}
.ws0_c00028{word-spacing:-11.950848pt;}
.ws2_c00028{word-spacing:-11.865728pt;}
.ws1_c00028{word-spacing:-9.607680pt;}
.ws18_c00028{word-spacing:-0.006400pt;}
.ws4_c00028{word-spacing:0.000000pt;}
.ws3_c00028{word-spacing:0.037408pt;}
.ws17_c00028{word-spacing:0.044800pt;}
.ws2b_c00028{word-spacing:1.600000pt;}
.ws7_c00028{word-spacing:1.619200pt;}
.ws15_c00028{word-spacing:1.952000pt;}
.ws22_c00028{word-spacing:2.233600pt;}
.ws21_c00028{word-spacing:2.310400pt;}
.ws32_c00028{word-spacing:2.532320pt;}
.ws31_c00028{word-spacing:2.557856pt;}
.ws33_c00028{word-spacing:2.562112pt;}
.ws28_c00028{word-spacing:2.585600pt;}
.ws34_c00028{word-spacing:2.877056pt;}
.ws6_c00028{word-spacing:2.892800pt;}
.ws5_c00028{word-spacing:2.937600pt;}
.ws10_c00028{word-spacing:3.161600pt;}
.ws8_c00028{word-spacing:3.193600pt;}
.ws16_c00028{word-spacing:3.206400pt;}
.wsf_c00028{word-spacing:3.232000pt;}
.ws20_c00028{word-spacing:3.481600pt;}
.ws36_c00028{word-spacing:3.489920pt;}
.ws35_c00028{word-spacing:3.506944pt;}
.ws37_c00028{word-spacing:3.519712pt;}
.ws1f_c00028{word-spacing:3.532800pt;}
.wsb_c00028{word-spacing:3.846400pt;}
.ws19_c00028{word-spacing:4.812800pt;}
.ws1a_c00028{word-spacing:4.819200pt;}
.ws26_c00028{word-spacing:5.094400pt;}
.ws25_c00028{word-spacing:5.132800pt;}
.wsa_c00028{word-spacing:7.001600pt;}
.ws27_c00028{word-spacing:7.046400pt;}
.ws9_c00028{word-spacing:7.225600pt;}
.wse_c00028{word-spacing:7.366400pt;}
.ws39_c00028{word-spacing:7.660800pt;}
.ws38_c00028{word-spacing:7.703360pt;}
.ws1c_c00028{word-spacing:7.904000pt;}
.ws1b_c00028{word-spacing:8.012800pt;}
.ws30_c00028{word-spacing:10.560000pt;}
.ws13_c00028{word-spacing:11.206400pt;}
.ws14_c00028{word-spacing:11.219200pt;}
.ws11_c00028{word-spacing:11.833600pt;}
.ws12_c00028{word-spacing:11.897600pt;}
.wsd_c00028{word-spacing:12.377600pt;}
.ws2e_c00028{word-spacing:12.480000pt;}
.wsc_c00028{word-spacing:12.486400pt;}
.ws2f_c00028{word-spacing:12.524800pt;}
.ws1d_c00028{word-spacing:15.334400pt;}
.ws1e_c00028{word-spacing:15.411200pt;}
.ws2a_c00028{word-spacing:19.520000pt;}
.ws29_c00028{word-spacing:19.532800pt;}
.ws24_c00028{word-spacing:20.473600pt;}
.ws23_c00028{word-spacing:20.531200pt;}
.ws2d_c00028{word-spacing:20.787200pt;}
.ws2c_c00028{word-spacing:20.972800pt;}
._0_c00028{margin-left:-1.175680pt;}
._1_c00028{width:0.960000pt;}
._2_c00028{width:2.557856pt;}
._3_c00028{width:7.924672pt;}
.fs5_c00028{font-size:34.560000pt;}
.fs3_c00028{font-size:37.440000pt;}
.fs4_c00028{font-size:42.560000pt;}
.fs1_c00028{font-size:48.000000pt;}
.fs0_c00028{font-size:53.440000pt;}
.fs2_c00028{font-size:64.000000pt;}
.y0_c00028{bottom:0.000000pt;}
.y3_c00028{bottom:51.067067pt;}
.y24_c00028{bottom:97.069947pt;}
.y23_c00028{bottom:109.391067pt;}
.y22_c00028{bottom:121.627067pt;}
.y21_c00028{bottom:135.147067pt;}
.y20_c00028{bottom:153.547067pt;}
.y1f_c00028{bottom:171.947067pt;}
.y1e_c00028{bottom:210.747067pt;}
.y1d_c00028{bottom:241.387067pt;}
.y1c_c00028{bottom:271.947067pt;}
.y1b_c00028{bottom:302.587067pt;}
.y1a_c00028{bottom:333.147067pt;}
.y19_c00028{bottom:363.787067pt;}
.y18_c00028{bottom:394.347067pt;}
.y17_c00028{bottom:424.987067pt;}
.y16_c00028{bottom:455.547067pt;}
.y15_c00028{bottom:486.187067pt;}
.y14_c00028{bottom:516.747067pt;}
.y13_c00028{bottom:547.387067pt;}
.y12_c00028{bottom:577.947067pt;}
.y11_c00028{bottom:608.587067pt;}
.y10_c00028{bottom:647.147067pt;}
.yf_c00028{bottom:677.787067pt;}
.ye_c00028{bottom:708.347067pt;}
.yd_c00028{bottom:738.987067pt;}
.yc_c00028{bottom:769.547067pt;}
.yb_c00028{bottom:800.187067pt;}
.ya_c00028{bottom:830.747067pt;}
.y9_c00028{bottom:861.387067pt;}
.y8_c00028{bottom:891.947067pt;}
.y7_c00028{bottom:922.587067pt;}
.y6_c00028{bottom:953.147067pt;}
.y5_c00028{bottom:983.787067pt;}
.y4_c00028{bottom:1014.347067pt;}
.y2_c00028{bottom:1046.987067pt;}
.y1_c00028{bottom:1063.867067pt;}
.h7_c00028{height:44.388750pt;}
.h1_c00028{height:44.724687pt;}
.h2_c00028{height:50.062500pt;}
.h4_c00028{height:53.562500pt;}
.h5_c00028{height:57.894062pt;}
.h6_c00028{height:62.812500pt;}
.h3_c00028{height:64.142500pt;}
.h0_c00028{height:1122.666667pt;}
.w1_c00028{width:793.333333pt;}
.w0_c00028{width:793.626667pt;}
.x0_c00028{left:0.000000pt;}
.x1_c00028{left:113.440000pt;}
.x3_c00028{left:125.431120pt;}
.x2_c00028{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_c00029 {
    display:none;
  }
  .loading-indicator_c00029.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00029 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00029 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00029" -> "#page-container .classname_c00029")
 */
.pf_c00029 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00029 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00029 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00029 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00029 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00029 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00029 {overflow:visible;}
  }
}
.c_c00029 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00029 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00029:after { /* webkit #35443 */
  content: '';
}
.t_c00029:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00029 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00029 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00029 { /* info for Javascript */
  display:none;
}
.l_c00029 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00029 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00029 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00029:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00029;src:url('chunks/assets/font_fec27f2253c0697aa277f81e.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00029;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00029;src:url('chunks/assets/font_f8ff18cbc0acff6fb6a7f44d.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00029;src:url('chunks/assets/font_e4d62bd7111ad0530a0e722e.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;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_c00029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00029{vertical-align:-60.840000px;}
.v0_c00029{vertical-align:0.000000px;}
.v1_c00029{vertical-align:15.840000px;}
.lsa_c00029{letter-spacing:-0.036072px;}
.ls10_c00029{letter-spacing:-0.036000px;}
.lsc_c00029{letter-spacing:-0.028800px;}
.lse_c00029{letter-spacing:-0.021600px;}
.lsf_c00029{letter-spacing:-0.014400px;}
.ls14_c00029{letter-spacing:-0.014364px;}
.ls12_c00029{letter-spacing:-0.007776px;}
.lsd_c00029{letter-spacing:-0.007200px;}
.lsb_c00029{letter-spacing:0.000000px;}
.ls6_c00029{letter-spacing:0.004788px;}
.ls1_c00029{letter-spacing:0.007200px;}
.ls9_c00029{letter-spacing:0.014364px;}
.ls2_c00029{letter-spacing:0.014400px;}
.ls11_c00029{letter-spacing:0.021600px;}
.ls8_c00029{letter-spacing:0.038304px;}
.ls4_c00029{letter-spacing:0.043092px;}
.ls5_c00029{letter-spacing:0.052668px;}
.ls7_c00029{letter-spacing:0.056160px;}
.ls13_c00029{letter-spacing:8.656704px;}
.ls3_c00029{letter-spacing:36.000000px;}
.ls0_c00029{letter-spacing:1242.360000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00029{word-spacing:-13.348944px;}
.ws1_c00029{word-spacing:-10.808640px;}
.ws0_c00029{word-spacing:-10.800864px;}
.ws18_c00029{word-spacing:-0.007200px;}
.ws4_c00029{word-spacing:0.000000px;}
.ws6_c00029{word-spacing:0.007200px;}
.ws3_c00029{word-spacing:0.126252px;}
.ws34_c00029{word-spacing:0.392616px;}
.ws1a_c00029{word-spacing:0.424800px;}
.ws19_c00029{word-spacing:0.576000px;}
.ws7_c00029{word-spacing:1.072800px;}
.ws8_c00029{word-spacing:1.101600px;}
.ws5_c00029{word-spacing:2.548800px;}
.wse_c00029{word-spacing:3.614400px;}
.wsb_c00029{word-spacing:4.003200px;}
.ws17_c00029{word-spacing:4.665600px;}
.ws13_c00029{word-spacing:4.694400px;}
.ws16_c00029{word-spacing:4.701600px;}
.ws14_c00029{word-spacing:4.737600px;}
.ws11_c00029{word-spacing:5.767200px;}
.ws12_c00029{word-spacing:5.817600px;}
.wsd_c00029{word-spacing:6.170400px;}
.wsc_c00029{word-spacing:6.184800px;}
.ws21_c00029{word-spacing:6.818400px;}
.ws2d_c00029{word-spacing:7.538400px;}
.ws2c_c00029{word-spacing:7.646400px;}
.ws31_c00029{word-spacing:8.613612px;}
.ws32_c00029{word-spacing:8.618400px;}
.ws33_c00029{word-spacing:8.642340px;}
.ws26_c00029{word-spacing:9.374400px;}
.ws1b_c00029{word-spacing:9.424800px;}
.ws1c_c00029{word-spacing:9.489600px;}
.ws27_c00029{word-spacing:9.496800px;}
.ws1f_c00029{word-spacing:10.080000px;}
.ws20_c00029{word-spacing:10.188000px;}
.ws10_c00029{word-spacing:10.382400px;}
.wsf_c00029{word-spacing:10.440000px;}
.ws29_c00029{word-spacing:11.505600px;}
.ws28_c00029{word-spacing:11.520000px;}
.ws2f_c00029{word-spacing:12.204612px;}
.ws2e_c00029{word-spacing:12.214188px;}
.ws30_c00029{word-spacing:12.252492px;}
.ws15_c00029{word-spacing:13.341600px;}
.ws9_c00029{word-spacing:13.377600px;}
.wsa_c00029{word-spacing:13.392000px;}
.ws2a_c00029{word-spacing:13.996800px;}
.ws2b_c00029{word-spacing:14.025600px;}
.ws23_c00029{word-spacing:15.530400px;}
.ws22_c00029{word-spacing:15.537600px;}
.ws24_c00029{word-spacing:19.072800px;}
.ws25_c00029{word-spacing:19.144800px;}
.ws1e_c00029{word-spacing:38.512800px;}
.ws1d_c00029{word-spacing:38.728800px;}
._3_c00029{margin-left:-8.497872px;}
._2_c00029{margin-left:-4.680000px;}
._0_c00029{margin-left:-1.094400px;}
._1_c00029{width:1.152000px;}
.fc0_c00029{color:rgb(0,0,0);}
.fs4_c00029{font-size:38.880000px;}
.fs3_c00029{font-size:47.880000px;}
.fs2_c00029{font-size:54.000000px;}
.fs0_c00029{font-size:60.120000px;}
.fs1_c00029{font-size:72.000000px;}
.y0_c00029{bottom:0.000000px;}
.y3_c00029{bottom:57.450450px;}
.y22_c00029{bottom:113.699190px;}
.y21_c00029{bottom:127.564950px;}
.y20_c00029{bottom:156.540450px;}
.y1f_c00029{bottom:177.240450px;}
.y1e_c00029{bottom:197.940450px;}
.y1d_c00029{bottom:253.560450px;}
.y1c_c00029{bottom:287.940450px;}
.y1b_c00029{bottom:322.410450px;}
.y1a_c00029{bottom:365.790450px;}
.y19_c00029{bottom:400.260450px;}
.y18_c00029{bottom:434.640450px;}
.y17_c00029{bottom:469.110450px;}
.y16_c00029{bottom:503.490450px;}
.y15_c00029{bottom:537.960450px;}
.y14_c00029{bottom:572.340450px;}
.y13_c00029{bottom:606.810450px;}
.y12_c00029{bottom:641.190450px;}
.y11_c00029{bottom:675.660450px;}
.y10_c00029{bottom:719.040450px;}
.yf_c00029{bottom:753.510450px;}
.ye_c00029{bottom:787.890450px;}
.yd_c00029{bottom:822.360450px;}
.yc_c00029{bottom:856.740450px;}
.yb_c00029{bottom:891.210450px;}
.ya_c00029{bottom:925.590450px;}
.y9_c00029{bottom:960.060450px;}
.y8_c00029{bottom:994.440450px;}
.y7_c00029{bottom:1028.910450px;}
.y6_c00029{bottom:1063.290450px;}
.y5_c00029{bottom:1106.760450px;}
.y4_c00029{bottom:1141.140450px;}
.y2_c00029{bottom:1173.810450px;}
.y1_c00029{bottom:1196.850450px;}
.h5_c00029{height:49.937344px;}
.h1_c00029{height:50.315273px;}
.h4_c00029{height:60.257812px;}
.h2_c00029{height:70.664062px;}
.h3_c00029{height:72.160313px;}
.h0_c00029{height:1263.000000px;}
.w1_c00029{width:892.500000px;}
.w0_c00029{width:892.830000px;}
.x0_c00029{left:0.000000px;}
.x2_c00029{left:127.620000px;}
.x4_c00029{left:141.131970px;}
.x3_c00029{left:180.810000px;}
.x1_c00029{left:689.310000px;}
@media print{
.v2_c00029{vertical-align:-54.080000pt;}
.v0_c00029{vertical-align:0.000000pt;}
.v1_c00029{vertical-align:14.080000pt;}
.lsa_c00029{letter-spacing:-0.032064pt;}
.ls10_c00029{letter-spacing:-0.032000pt;}
.lsc_c00029{letter-spacing:-0.025600pt;}
.lse_c00029{letter-spacing:-0.019200pt;}
.lsf_c00029{letter-spacing:-0.012800pt;}
.ls14_c00029{letter-spacing:-0.012768pt;}
.ls12_c00029{letter-spacing:-0.006912pt;}
.lsd_c00029{letter-spacing:-0.006400pt;}
.lsb_c00029{letter-spacing:0.000000pt;}
.ls6_c00029{letter-spacing:0.004256pt;}
.ls1_c00029{letter-spacing:0.006400pt;}
.ls9_c00029{letter-spacing:0.012768pt;}
.ls2_c00029{letter-spacing:0.012800pt;}
.ls11_c00029{letter-spacing:0.019200pt;}
.ls8_c00029{letter-spacing:0.034048pt;}
.ls4_c00029{letter-spacing:0.038304pt;}
.ls5_c00029{letter-spacing:0.046816pt;}
.ls7_c00029{letter-spacing:0.049920pt;}
.ls13_c00029{letter-spacing:7.694848pt;}
.ls3_c00029{letter-spacing:32.000000pt;}
.ls0_c00029{letter-spacing:1104.320000pt;}
.ws2_c00029{word-spacing:-11.865728pt;}
.ws1_c00029{word-spacing:-9.607680pt;}
.ws0_c00029{word-spacing:-9.600768pt;}
.ws18_c00029{word-spacing:-0.006400pt;}
.ws4_c00029{word-spacing:0.000000pt;}
.ws6_c00029{word-spacing:0.006400pt;}
.ws3_c00029{word-spacing:0.112224pt;}
.ws34_c00029{word-spacing:0.348992pt;}
.ws1a_c00029{word-spacing:0.377600pt;}
.ws19_c00029{word-spacing:0.512000pt;}
.ws7_c00029{word-spacing:0.953600pt;}
.ws8_c00029{word-spacing:0.979200pt;}
.ws5_c00029{word-spacing:2.265600pt;}
.wse_c00029{word-spacing:3.212800pt;}
.wsb_c00029{word-spacing:3.558400pt;}
.ws17_c00029{word-spacing:4.147200pt;}
.ws13_c00029{word-spacing:4.172800pt;}
.ws16_c00029{word-spacing:4.179200pt;}
.ws14_c00029{word-spacing:4.211200pt;}
.ws11_c00029{word-spacing:5.126400pt;}
.ws12_c00029{word-spacing:5.171200pt;}
.wsd_c00029{word-spacing:5.484800pt;}
.wsc_c00029{word-spacing:5.497600pt;}
.ws21_c00029{word-spacing:6.060800pt;}
.ws2d_c00029{word-spacing:6.700800pt;}
.ws2c_c00029{word-spacing:6.796800pt;}
.ws31_c00029{word-spacing:7.656544pt;}
.ws32_c00029{word-spacing:7.660800pt;}
.ws33_c00029{word-spacing:7.682080pt;}
.ws26_c00029{word-spacing:8.332800pt;}
.ws1b_c00029{word-spacing:8.377600pt;}
.ws1c_c00029{word-spacing:8.435200pt;}
.ws27_c00029{word-spacing:8.441600pt;}
.ws1f_c00029{word-spacing:8.960000pt;}
.ws20_c00029{word-spacing:9.056000pt;}
.ws10_c00029{word-spacing:9.228800pt;}
.wsf_c00029{word-spacing:9.280000pt;}
.ws29_c00029{word-spacing:10.227200pt;}
.ws28_c00029{word-spacing:10.240000pt;}
.ws2f_c00029{word-spacing:10.848544pt;}
.ws2e_c00029{word-spacing:10.857056pt;}
.ws30_c00029{word-spacing:10.891104pt;}
.ws15_c00029{word-spacing:11.859200pt;}
.ws9_c00029{word-spacing:11.891200pt;}
.wsa_c00029{word-spacing:11.904000pt;}
.ws2a_c00029{word-spacing:12.441600pt;}
.ws2b_c00029{word-spacing:12.467200pt;}
.ws23_c00029{word-spacing:13.804800pt;}
.ws22_c00029{word-spacing:13.811200pt;}
.ws24_c00029{word-spacing:16.953600pt;}
.ws25_c00029{word-spacing:17.017600pt;}
.ws1e_c00029{word-spacing:34.233600pt;}
.ws1d_c00029{word-spacing:34.425600pt;}
._3_c00029{margin-left:-7.553664pt;}
._2_c00029{margin-left:-4.160000pt;}
._0_c00029{margin-left:-0.972800pt;}
._1_c00029{width:1.024000pt;}
.fs4_c00029{font-size:34.560000pt;}
.fs3_c00029{font-size:42.560000pt;}
.fs2_c00029{font-size:48.000000pt;}
.fs0_c00029{font-size:53.440000pt;}
.fs1_c00029{font-size:64.000000pt;}
.y0_c00029{bottom:0.000000pt;}
.y3_c00029{bottom:51.067067pt;}
.y22_c00029{bottom:101.065947pt;}
.y21_c00029{bottom:113.391067pt;}
.y20_c00029{bottom:139.147067pt;}
.y1f_c00029{bottom:157.547067pt;}
.y1e_c00029{bottom:175.947067pt;}
.y1d_c00029{bottom:225.387067pt;}
.y1c_c00029{bottom:255.947067pt;}
.y1b_c00029{bottom:286.587067pt;}
.y1a_c00029{bottom:325.147067pt;}
.y19_c00029{bottom:355.787067pt;}
.y18_c00029{bottom:386.347067pt;}
.y17_c00029{bottom:416.987067pt;}
.y16_c00029{bottom:447.547067pt;}
.y15_c00029{bottom:478.187067pt;}
.y14_c00029{bottom:508.747067pt;}
.y13_c00029{bottom:539.387067pt;}
.y12_c00029{bottom:569.947067pt;}
.y11_c00029{bottom:600.587067pt;}
.y10_c00029{bottom:639.147067pt;}
.yf_c00029{bottom:669.787067pt;}
.ye_c00029{bottom:700.347067pt;}
.yd_c00029{bottom:730.987067pt;}
.yc_c00029{bottom:761.547067pt;}
.yb_c00029{bottom:792.187067pt;}
.ya_c00029{bottom:822.747067pt;}
.y9_c00029{bottom:853.387067pt;}
.y8_c00029{bottom:883.947067pt;}
.y7_c00029{bottom:914.587067pt;}
.y6_c00029{bottom:945.147067pt;}
.y5_c00029{bottom:983.787067pt;}
.y4_c00029{bottom:1014.347067pt;}
.y2_c00029{bottom:1043.387067pt;}
.y1_c00029{bottom:1063.867067pt;}
.h5_c00029{height:44.388750pt;}
.h1_c00029{height:44.724687pt;}
.h4_c00029{height:53.562500pt;}
.h2_c00029{height:62.812500pt;}
.h3_c00029{height:64.142500pt;}
.h0_c00029{height:1122.666667pt;}
.w1_c00029{width:793.333333pt;}
.w0_c00029{width:793.626667pt;}
.x0_c00029{left:0.000000pt;}
.x2_c00029{left:113.440000pt;}
.x4_c00029{left:125.450640pt;}
.x3_c00029{left:160.720000pt;}
.x1_c00029{left:612.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_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_228547523c9fdb09ae6d66dc.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.100098;font-style:normal;font-weight:normal;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_86f0935df77c0a4443953663.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;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_c00030;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00030;src:url('chunks/assets/font_6f902a79e88d8bb178fce51f.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00030{vertical-align:15.840000px;}
.lsc_c00030{letter-spacing:-0.043200px;}
.lsb_c00030{letter-spacing:-0.036000px;}
.ls8_c00030{letter-spacing:-0.021600px;}
.lsa_c00030{letter-spacing:-0.014400px;}
.ls9_c00030{letter-spacing:-0.007200px;}
.ls7_c00030{letter-spacing:0.000000px;}
.ls4_c00030{letter-spacing:0.007200px;}
.ls6_c00030{letter-spacing:0.014400px;}
.ls3_c00030{letter-spacing:0.021600px;}
.ls5_c00030{letter-spacing:0.028800px;}
.ls2_c00030{letter-spacing:0.043200px;}
.ls0_c00030{letter-spacing:0.048096px;}
.ls1_c00030{letter-spacing:1242.360000px;}
.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;}
}
.ws17_c00030{word-spacing:-0.021600px;}
.ws16_c00030{word-spacing:-0.014400px;}
.wsb_c00030{word-spacing:-0.007200px;}
.ws1_c00030{word-spacing:0.000000px;}
.ws2e_c00030{word-spacing:0.007200px;}
.ws0_c00030{word-spacing:0.042084px;}
.ws13_c00030{word-spacing:0.093600px;}
.ws22_c00030{word-spacing:1.036800px;}
.ws23_c00030{word-spacing:1.123200px;}
.ws32_c00030{word-spacing:2.196000px;}
.ws31_c00030{word-spacing:2.282400px;}
.ws28_c00030{word-spacing:2.851200px;}
.ws27_c00030{word-spacing:2.872800px;}
.ws2_c00030{word-spacing:3.261600px;}
.wsa_c00030{word-spacing:3.297600px;}
.ws2a_c00030{word-spacing:3.600000px;}
.ws2b_c00030{word-spacing:3.650400px;}
.ws1c_c00030{word-spacing:3.974400px;}
.ws2d_c00030{word-spacing:3.981600px;}
.ws2c_c00030{word-spacing:4.053600px;}
.ws8_c00030{word-spacing:4.327200px;}
.ws7_c00030{word-spacing:4.356000px;}
.ws19_c00030{word-spacing:4.651200px;}
.ws1e_c00030{word-spacing:4.687200px;}
.ws18_c00030{word-spacing:4.773600px;}
.ws1f_c00030{word-spacing:4.867200px;}
.ws5_c00030{word-spacing:5.047200px;}
.ws4_c00030{word-spacing:5.054400px;}
.ws12_c00030{word-spacing:5.068800px;}
.ws11_c00030{word-spacing:5.083200px;}
.ws6_c00030{word-spacing:7.214400px;}
.ws21_c00030{word-spacing:7.257600px;}
.ws20_c00030{word-spacing:7.279200px;}
.ws25_c00030{word-spacing:9.374400px;}
.ws24_c00030{word-spacing:9.396000px;}
.wsf_c00030{word-spacing:10.396800px;}
.wsd_c00030{word-spacing:10.454400px;}
.ws26_c00030{word-spacing:10.461600px;}
.wsc_c00030{word-spacing:10.476000px;}
.wse_c00030{word-spacing:10.533600px;}
.ws1d_c00030{word-spacing:10.800000px;}
.ws29_c00030{word-spacing:12.636000px;}
.ws10_c00030{word-spacing:13.687200px;}
.ws2f_c00030{word-spacing:15.415200px;}
.ws30_c00030{word-spacing:15.487200px;}
.ws9_c00030{word-spacing:15.847200px;}
.ws3_c00030{word-spacing:16.567200px;}
.ws15_c00030{word-spacing:21.247200px;}
.ws14_c00030{word-spacing:21.319200px;}
.ws1a_c00030{word-spacing:21.952800px;}
.ws1b_c00030{word-spacing:22.046400px;}
._0_c00030{margin-left:-1.322640px;}
._1_c00030{width:1.080000px;}
.fc0_c00030{color:rgb(0,0,0);}
.fs1_c00030{font-size:54.000000px;}
.fs0_c00030{font-size:60.120000px;}
.fs2_c00030{font-size:72.000000px;}
.y0_c00030{bottom:0.000000px;}
.y3_c00030{bottom:57.450450px;}
.y21_c00030{bottom:115.860450px;}
.y20_c00030{bottom:150.240450px;}
.y1f_c00030{bottom:193.710450px;}
.y1e_c00030{bottom:228.090450px;}
.y1d_c00030{bottom:262.560450px;}
.y1c_c00030{bottom:296.940450px;}
.y1b_c00030{bottom:331.410450px;}
.y1a_c00030{bottom:365.790450px;}
.y19_c00030{bottom:400.260450px;}
.y18_c00030{bottom:434.640450px;}
.y17_c00030{bottom:469.110450px;}
.y16_c00030{bottom:503.490450px;}
.y15_c00030{bottom:537.960450px;}
.y14_c00030{bottom:572.340450px;}
.y13_c00030{bottom:606.810450px;}
.y12_c00030{bottom:641.190450px;}
.y11_c00030{bottom:675.660450px;}
.y10_c00030{bottom:710.040450px;}
.yf_c00030{bottom:753.510450px;}
.ye_c00030{bottom:787.890450px;}
.yd_c00030{bottom:822.360450px;}
.yc_c00030{bottom:856.740450px;}
.yb_c00030{bottom:900.210450px;}
.ya_c00030{bottom:934.590450px;}
.y9_c00030{bottom:969.060450px;}
.y8_c00030{bottom:1003.440450px;}
.y7_c00030{bottom:1037.910450px;}
.y6_c00030{bottom:1072.290450px;}
.y5_c00030{bottom:1106.760450px;}
.y4_c00030{bottom:1141.140450px;}
.y2_c00030{bottom:1177.860450px;}
.y1_c00030{bottom:1196.850450px;}
.h1_c00030{height:50.315273px;}
.h2_c00030{height:56.320312px;}
.h4_c00030{height:60.257812px;}
.h5_c00030{height:60.328125px;}
.h3_c00030{height:72.160312px;}
.h0_c00030{height:1263.000000px;}
.w1_c00030{width:892.500000px;}
.w0_c00030{width:892.830000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:127.620000px;}
.x2_c00030{left:180.810000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.v1_c00030{vertical-align:14.080000pt;}
.lsc_c00030{letter-spacing:-0.038400pt;}
.lsb_c00030{letter-spacing:-0.032000pt;}
.ls8_c00030{letter-spacing:-0.019200pt;}
.lsa_c00030{letter-spacing:-0.012800pt;}
.ls9_c00030{letter-spacing:-0.006400pt;}
.ls7_c00030{letter-spacing:0.000000pt;}
.ls4_c00030{letter-spacing:0.006400pt;}
.ls6_c00030{letter-spacing:0.012800pt;}
.ls3_c00030{letter-spacing:0.019200pt;}
.ls5_c00030{letter-spacing:0.025600pt;}
.ls2_c00030{letter-spacing:0.038400pt;}
.ls0_c00030{letter-spacing:0.042752pt;}
.ls1_c00030{letter-spacing:1104.320000pt;}
.ws17_c00030{word-spacing:-0.019200pt;}
.ws16_c00030{word-spacing:-0.012800pt;}
.wsb_c00030{word-spacing:-0.006400pt;}
.ws1_c00030{word-spacing:0.000000pt;}
.ws2e_c00030{word-spacing:0.006400pt;}
.ws0_c00030{word-spacing:0.037408pt;}
.ws13_c00030{word-spacing:0.083200pt;}
.ws22_c00030{word-spacing:0.921600pt;}
.ws23_c00030{word-spacing:0.998400pt;}
.ws32_c00030{word-spacing:1.952000pt;}
.ws31_c00030{word-spacing:2.028800pt;}
.ws28_c00030{word-spacing:2.534400pt;}
.ws27_c00030{word-spacing:2.553600pt;}
.ws2_c00030{word-spacing:2.899200pt;}
.wsa_c00030{word-spacing:2.931200pt;}
.ws2a_c00030{word-spacing:3.200000pt;}
.ws2b_c00030{word-spacing:3.244800pt;}
.ws1c_c00030{word-spacing:3.532800pt;}
.ws2d_c00030{word-spacing:3.539200pt;}
.ws2c_c00030{word-spacing:3.603200pt;}
.ws8_c00030{word-spacing:3.846400pt;}
.ws7_c00030{word-spacing:3.872000pt;}
.ws19_c00030{word-spacing:4.134400pt;}
.ws1e_c00030{word-spacing:4.166400pt;}
.ws18_c00030{word-spacing:4.243200pt;}
.ws1f_c00030{word-spacing:4.326400pt;}
.ws5_c00030{word-spacing:4.486400pt;}
.ws4_c00030{word-spacing:4.492800pt;}
.ws12_c00030{word-spacing:4.505600pt;}
.ws11_c00030{word-spacing:4.518400pt;}
.ws6_c00030{word-spacing:6.412800pt;}
.ws21_c00030{word-spacing:6.451200pt;}
.ws20_c00030{word-spacing:6.470400pt;}
.ws25_c00030{word-spacing:8.332800pt;}
.ws24_c00030{word-spacing:8.352000pt;}
.wsf_c00030{word-spacing:9.241600pt;}
.wsd_c00030{word-spacing:9.292800pt;}
.ws26_c00030{word-spacing:9.299200pt;}
.wsc_c00030{word-spacing:9.312000pt;}
.wse_c00030{word-spacing:9.363200pt;}
.ws1d_c00030{word-spacing:9.600000pt;}
.ws29_c00030{word-spacing:11.232000pt;}
.ws10_c00030{word-spacing:12.166400pt;}
.ws2f_c00030{word-spacing:13.702400pt;}
.ws30_c00030{word-spacing:13.766400pt;}
.ws9_c00030{word-spacing:14.086400pt;}
.ws3_c00030{word-spacing:14.726400pt;}
.ws15_c00030{word-spacing:18.886400pt;}
.ws14_c00030{word-spacing:18.950400pt;}
.ws1a_c00030{word-spacing:19.513600pt;}
.ws1b_c00030{word-spacing:19.596800pt;}
._0_c00030{margin-left:-1.175680pt;}
._1_c00030{width:0.960000pt;}
.fs1_c00030{font-size:48.000000pt;}
.fs0_c00030{font-size:53.440000pt;}
.fs2_c00030{font-size:64.000000pt;}
.y0_c00030{bottom:0.000000pt;}
.y3_c00030{bottom:51.067067pt;}
.y21_c00030{bottom:102.987067pt;}
.y20_c00030{bottom:133.547067pt;}
.y1f_c00030{bottom:172.187067pt;}
.y1e_c00030{bottom:202.747067pt;}
.y1d_c00030{bottom:233.387067pt;}
.y1c_c00030{bottom:263.947067pt;}
.y1b_c00030{bottom:294.587067pt;}
.y1a_c00030{bottom:325.147067pt;}
.y19_c00030{bottom:355.787067pt;}
.y18_c00030{bottom:386.347067pt;}
.y17_c00030{bottom:416.987067pt;}
.y16_c00030{bottom:447.547067pt;}
.y15_c00030{bottom:478.187067pt;}
.y14_c00030{bottom:508.747067pt;}
.y13_c00030{bottom:539.387067pt;}
.y12_c00030{bottom:569.947067pt;}
.y11_c00030{bottom:600.587067pt;}
.y10_c00030{bottom:631.147067pt;}
.yf_c00030{bottom:669.787067pt;}
.ye_c00030{bottom:700.347067pt;}
.yd_c00030{bottom:730.987067pt;}
.yc_c00030{bottom:761.547067pt;}
.yb_c00030{bottom:800.187067pt;}
.ya_c00030{bottom:830.747067pt;}
.y9_c00030{bottom:861.387067pt;}
.y8_c00030{bottom:891.947067pt;}
.y7_c00030{bottom:922.587067pt;}
.y6_c00030{bottom:953.147067pt;}
.y5_c00030{bottom:983.787067pt;}
.y4_c00030{bottom:1014.347067pt;}
.y2_c00030{bottom:1046.987067pt;}
.y1_c00030{bottom:1063.867067pt;}
.h1_c00030{height:44.724687pt;}
.h2_c00030{height:50.062500pt;}
.h4_c00030{height:53.562500pt;}
.h5_c00030{height:53.625000pt;}
.h3_c00030{height:64.142500pt;}
.h0_c00030{height:1122.666667pt;}
.w1_c00030{width:793.333333pt;}
.w0_c00030{width:793.626667pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:113.440000pt;}
.x2_c00030{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_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_955cd98d0f8f783750f310f9.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.100098;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00031;src:url('chunks/assets/font_d5cfdb2933f9e38861d00bbc.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;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_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;}
.v1_c00031{vertical-align:15.840000px;}
.ls9_c00031{letter-spacing:-0.043200px;}
.ls4_c00031{letter-spacing:-0.036072px;}
.lsb_c00031{letter-spacing:-0.036000px;}
.lsa_c00031{letter-spacing:-0.028800px;}
.ls7_c00031{letter-spacing:-0.021600px;}
.ls6_c00031{letter-spacing:-0.014400px;}
.ls8_c00031{letter-spacing:-0.007200px;}
.ls5_c00031{letter-spacing:0.000000px;}
.ls3_c00031{letter-spacing:0.007200px;}
.ls2_c00031{letter-spacing:0.014400px;}
.lsc_c00031{letter-spacing:0.021600px;}
.lsd_c00031{letter-spacing:0.036000px;}
.ls1_c00031{letter-spacing:0.043200px;}
.ls0_c00031{letter-spacing:1242.360000px;}
.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;}
}
.ws16_c00031{word-spacing:-0.007200px;}
.ws1_c00031{word-spacing:0.000000px;}
.ws2_c00031{word-spacing:0.072000px;}
.ws0_c00031{word-spacing:0.126252px;}
.ws3_c00031{word-spacing:0.136800px;}
.ws20_c00031{word-spacing:0.367200px;}
.ws1f_c00031{word-spacing:0.381600px;}
.ws2a_c00031{word-spacing:0.468000px;}
.ws26_c00031{word-spacing:0.698400px;}
.ws25_c00031{word-spacing:0.792000px;}
.ws6_c00031{word-spacing:2.484000px;}
.ws1a_c00031{word-spacing:4.003200px;}
.ws19_c00031{word-spacing:4.068000px;}
.ws30_c00031{word-spacing:4.564800px;}
.ws31_c00031{word-spacing:4.615200px;}
.ws14_c00031{word-spacing:5.745600px;}
.ws13_c00031{word-spacing:5.968800px;}
.ws5_c00031{word-spacing:6.393600px;}
.ws4_c00031{word-spacing:6.508800px;}
.ws8_c00031{word-spacing:6.796800px;}
.wsd_c00031{word-spacing:6.854400px;}
.ws7_c00031{word-spacing:6.890400px;}
.wse_c00031{word-spacing:6.904800px;}
.wsf_c00031{word-spacing:8.294400px;}
.wsb_c00031{word-spacing:9.367200px;}
.wsc_c00031{word-spacing:9.460800px;}
.ws1d_c00031{word-spacing:9.720000px;}
.ws1e_c00031{word-spacing:9.777600px;}
.ws18_c00031{word-spacing:10.116000px;}
.ws17_c00031{word-spacing:10.123200px;}
.ws29_c00031{word-spacing:10.785600px;}
.ws27_c00031{word-spacing:10.900800px;}
.ws28_c00031{word-spacing:10.972800px;}
.wsa_c00031{word-spacing:11.109600px;}
.ws9_c00031{word-spacing:11.174400px;}
.ws15_c00031{word-spacing:11.901600px;}
.ws12_c00031{word-spacing:12.254400px;}
.ws11_c00031{word-spacing:12.319200px;}
.ws1b_c00031{word-spacing:13.377600px;}
.ws1c_c00031{word-spacing:13.392000px;}
.ws2f_c00031{word-spacing:15.516000px;}
.ws10_c00031{word-spacing:15.523200px;}
.ws2e_c00031{word-spacing:15.544800px;}
.ws32_c00031{word-spacing:17.568000px;}
.ws33_c00031{word-spacing:17.647200px;}
.ws2d_c00031{word-spacing:20.174400px;}
.ws24_c00031{word-spacing:20.880000px;}
.ws22_c00031{word-spacing:21.240000px;}
.ws21_c00031{word-spacing:21.297600px;}
.ws2c_c00031{word-spacing:27.316800px;}
.ws2b_c00031{word-spacing:27.367200px;}
.ws23_c00031{word-spacing:50.428800px;}
._0_c00031{width:1.080000px;}
.fc0_c00031{color:rgb(0,0,0);}
.fs2_c00031{font-size:54.000000px;}
.fs0_c00031{font-size:60.120000px;}
.fs1_c00031{font-size:72.000000px;}
.y0_c00031{bottom:0.000000px;}
.y3_c00031{bottom:57.450450px;}
.y21_c00031{bottom:124.860450px;}
.y20_c00031{bottom:159.240450px;}
.y1f_c00031{bottom:193.710450px;}
.y1e_c00031{bottom:228.090450px;}
.y1d_c00031{bottom:262.560450px;}
.y1c_c00031{bottom:296.940450px;}
.y1b_c00031{bottom:340.410450px;}
.y1a_c00031{bottom:374.790450px;}
.y19_c00031{bottom:409.260450px;}
.y18_c00031{bottom:443.640450px;}
.y17_c00031{bottom:478.110450px;}
.y16_c00031{bottom:512.490450px;}
.y15_c00031{bottom:546.960450px;}
.y14_c00031{bottom:581.340450px;}
.y13_c00031{bottom:615.810450px;}
.y12_c00031{bottom:650.190450px;}
.y11_c00031{bottom:684.660450px;}
.y10_c00031{bottom:728.040450px;}
.yf_c00031{bottom:762.510450px;}
.ye_c00031{bottom:796.890450px;}
.yd_c00031{bottom:831.360450px;}
.yc_c00031{bottom:865.740450px;}
.yb_c00031{bottom:900.210450px;}
.ya_c00031{bottom:934.590450px;}
.y9_c00031{bottom:969.060450px;}
.y8_c00031{bottom:1003.440450px;}
.y7_c00031{bottom:1037.910450px;}
.y6_c00031{bottom:1072.290450px;}
.y5_c00031{bottom:1106.760450px;}
.y4_c00031{bottom:1141.140450px;}
.y2_c00031{bottom:1173.810450px;}
.y1_c00031{bottom:1196.850450px;}
.h1_c00031{height:50.315273px;}
.h4_c00031{height:60.257812px;}
.h2_c00031{height:70.664062px;}
.h3_c00031{height:72.160313px;}
.h0_c00031{height:1263.000000px;}
.w1_c00031{width:892.500000px;}
.w0_c00031{width:892.830000px;}
.x0_c00031{left:0.000000px;}
.x2_c00031{left:127.620000px;}
.x3_c00031{left:180.810000px;}
.x1_c00031{left:689.310000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.v1_c00031{vertical-align:14.080000pt;}
.ls9_c00031{letter-spacing:-0.038400pt;}
.ls4_c00031{letter-spacing:-0.032064pt;}
.lsb_c00031{letter-spacing:-0.032000pt;}
.lsa_c00031{letter-spacing:-0.025600pt;}
.ls7_c00031{letter-spacing:-0.019200pt;}
.ls6_c00031{letter-spacing:-0.012800pt;}
.ls8_c00031{letter-spacing:-0.006400pt;}
.ls5_c00031{letter-spacing:0.000000pt;}
.ls3_c00031{letter-spacing:0.006400pt;}
.ls2_c00031{letter-spacing:0.012800pt;}
.lsc_c00031{letter-spacing:0.019200pt;}
.lsd_c00031{letter-spacing:0.032000pt;}
.ls1_c00031{letter-spacing:0.038400pt;}
.ls0_c00031{letter-spacing:1104.320000pt;}
.ws16_c00031{word-spacing:-0.006400pt;}
.ws1_c00031{word-spacing:0.000000pt;}
.ws2_c00031{word-spacing:0.064000pt;}
.ws0_c00031{word-spacing:0.112224pt;}
.ws3_c00031{word-spacing:0.121600pt;}
.ws20_c00031{word-spacing:0.326400pt;}
.ws1f_c00031{word-spacing:0.339200pt;}
.ws2a_c00031{word-spacing:0.416000pt;}
.ws26_c00031{word-spacing:0.620800pt;}
.ws25_c00031{word-spacing:0.704000pt;}
.ws6_c00031{word-spacing:2.208000pt;}
.ws1a_c00031{word-spacing:3.558400pt;}
.ws19_c00031{word-spacing:3.616000pt;}
.ws30_c00031{word-spacing:4.057600pt;}
.ws31_c00031{word-spacing:4.102400pt;}
.ws14_c00031{word-spacing:5.107200pt;}
.ws13_c00031{word-spacing:5.305600pt;}
.ws5_c00031{word-spacing:5.683200pt;}
.ws4_c00031{word-spacing:5.785600pt;}
.ws8_c00031{word-spacing:6.041600pt;}
.wsd_c00031{word-spacing:6.092800pt;}
.ws7_c00031{word-spacing:6.124800pt;}
.wse_c00031{word-spacing:6.137600pt;}
.wsf_c00031{word-spacing:7.372800pt;}
.wsb_c00031{word-spacing:8.326400pt;}
.wsc_c00031{word-spacing:8.409600pt;}
.ws1d_c00031{word-spacing:8.640000pt;}
.ws1e_c00031{word-spacing:8.691200pt;}
.ws18_c00031{word-spacing:8.992000pt;}
.ws17_c00031{word-spacing:8.998400pt;}
.ws29_c00031{word-spacing:9.587200pt;}
.ws27_c00031{word-spacing:9.689600pt;}
.ws28_c00031{word-spacing:9.753600pt;}
.wsa_c00031{word-spacing:9.875200pt;}
.ws9_c00031{word-spacing:9.932800pt;}
.ws15_c00031{word-spacing:10.579200pt;}
.ws12_c00031{word-spacing:10.892800pt;}
.ws11_c00031{word-spacing:10.950400pt;}
.ws1b_c00031{word-spacing:11.891200pt;}
.ws1c_c00031{word-spacing:11.904000pt;}
.ws2f_c00031{word-spacing:13.792000pt;}
.ws10_c00031{word-spacing:13.798400pt;}
.ws2e_c00031{word-spacing:13.817600pt;}
.ws32_c00031{word-spacing:15.616000pt;}
.ws33_c00031{word-spacing:15.686400pt;}
.ws2d_c00031{word-spacing:17.932800pt;}
.ws24_c00031{word-spacing:18.560000pt;}
.ws22_c00031{word-spacing:18.880000pt;}
.ws21_c00031{word-spacing:18.931200pt;}
.ws2c_c00031{word-spacing:24.281600pt;}
.ws2b_c00031{word-spacing:24.326400pt;}
.ws23_c00031{word-spacing:44.825600pt;}
._0_c00031{width:0.960000pt;}
.fs2_c00031{font-size:48.000000pt;}
.fs0_c00031{font-size:53.440000pt;}
.fs1_c00031{font-size:64.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y3_c00031{bottom:51.067067pt;}
.y21_c00031{bottom:110.987067pt;}
.y20_c00031{bottom:141.547067pt;}
.y1f_c00031{bottom:172.187067pt;}
.y1e_c00031{bottom:202.747067pt;}
.y1d_c00031{bottom:233.387067pt;}
.y1c_c00031{bottom:263.947067pt;}
.y1b_c00031{bottom:302.587067pt;}
.y1a_c00031{bottom:333.147067pt;}
.y19_c00031{bottom:363.787067pt;}
.y18_c00031{bottom:394.347067pt;}
.y17_c00031{bottom:424.987067pt;}
.y16_c00031{bottom:455.547067pt;}
.y15_c00031{bottom:486.187067pt;}
.y14_c00031{bottom:516.747067pt;}
.y13_c00031{bottom:547.387067pt;}
.y12_c00031{bottom:577.947067pt;}
.y11_c00031{bottom:608.587067pt;}
.y10_c00031{bottom:647.147067pt;}
.yf_c00031{bottom:677.787067pt;}
.ye_c00031{bottom:708.347067pt;}
.yd_c00031{bottom:738.987067pt;}
.yc_c00031{bottom:769.547067pt;}
.yb_c00031{bottom:800.187067pt;}
.ya_c00031{bottom:830.747067pt;}
.y9_c00031{bottom:861.387067pt;}
.y8_c00031{bottom:891.947067pt;}
.y7_c00031{bottom:922.587067pt;}
.y6_c00031{bottom:953.147067pt;}
.y5_c00031{bottom:983.787067pt;}
.y4_c00031{bottom:1014.347067pt;}
.y2_c00031{bottom:1043.387067pt;}
.y1_c00031{bottom:1063.867067pt;}
.h1_c00031{height:44.724687pt;}
.h4_c00031{height:53.562500pt;}
.h2_c00031{height:62.812500pt;}
.h3_c00031{height:64.142500pt;}
.h0_c00031{height:1122.666667pt;}
.w1_c00031{width:793.333333pt;}
.w0_c00031{width:793.626667pt;}
.x0_c00031{left:0.000000pt;}
.x2_c00031{left:113.440000pt;}
.x3_c00031{left:160.720000pt;}
.x1_c00031{left:612.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_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_76f384306cc8af943801c6db.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.100098;font-style:normal;font-weight:normal;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_e0d2d380570dad872a6c7f26.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;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_c00032;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00032;src:url('chunks/assets/font_b390114cbf1fcdd284c90610.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00032{vertical-align:15.840000px;}
.lsc_c00032{letter-spacing:-0.043200px;}
.lsb_c00032{letter-spacing:-0.036000px;}
.ls9_c00032{letter-spacing:-0.028800px;}
.lsa_c00032{letter-spacing:-0.021600px;}
.ls7_c00032{letter-spacing:-0.014400px;}
.ls8_c00032{letter-spacing:-0.007200px;}
.ls6_c00032{letter-spacing:0.000000px;}
.ls2_c00032{letter-spacing:0.007200px;}
.ls4_c00032{letter-spacing:0.014400px;}
.ls5_c00032{letter-spacing:0.021600px;}
.ls3_c00032{letter-spacing:0.028800px;}
.ls0_c00032{letter-spacing:0.048096px;}
.ls1_c00032{letter-spacing:1242.360000px;}
.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;}
}
.ws20_c00032{word-spacing:-0.043200px;}
.ws1_c00032{word-spacing:0.000000px;}
.ws11_c00032{word-spacing:0.007200px;}
.ws0_c00032{word-spacing:0.042084px;}
.ws2c_c00032{word-spacing:0.316800px;}
.ws2b_c00032{word-spacing:0.331200px;}
.ws2a_c00032{word-spacing:0.396000px;}
.ws25_c00032{word-spacing:0.734400px;}
.ws5_c00032{word-spacing:1.087200px;}
.ws6_c00032{word-spacing:1.144800px;}
.ws2d_c00032{word-spacing:2.534400px;}
.ws31_c00032{word-spacing:3.600000px;}
.ws32_c00032{word-spacing:3.672000px;}
.wsd_c00032{word-spacing:4.140000px;}
.wse_c00032{word-spacing:4.291200px;}
.ws1a_c00032{word-spacing:4.312800px;}
.wsc_c00032{word-spacing:4.341600px;}
.ws26_c00032{word-spacing:4.370400px;}
.ws29_c00032{word-spacing:4.694400px;}
.ws21_c00032{word-spacing:7.164000px;}
.ws22_c00032{word-spacing:7.214400px;}
.ws1b_c00032{word-spacing:7.560000px;}
.ws24_c00032{word-spacing:7.610400px;}
.ws23_c00032{word-spacing:7.653600px;}
.ws27_c00032{word-spacing:11.152800px;}
.ws28_c00032{word-spacing:11.232000px;}
.ws9_c00032{word-spacing:13.298400px;}
.ws8_c00032{word-spacing:13.420800px;}
.wsa_c00032{word-spacing:14.709600px;}
.ws2e_c00032{word-spacing:14.767200px;}
.wsb_c00032{word-spacing:14.860800px;}
.ws2_c00032{word-spacing:15.494400px;}
.ws1e_c00032{word-spacing:16.927200px;}
.ws1f_c00032{word-spacing:16.963200px;}
.ws4_c00032{word-spacing:17.265600px;}
.ws3_c00032{word-spacing:17.294400px;}
.ws2f_c00032{word-spacing:19.137600px;}
.ws30_c00032{word-spacing:19.180800px;}
.ws16_c00032{word-spacing:19.418400px;}
.ws15_c00032{word-spacing:19.454400px;}
.ws1c_c00032{word-spacing:19.771200px;}
.ws1d_c00032{word-spacing:19.864800px;}
.wsf_c00032{word-spacing:20.520000px;}
.ws10_c00032{word-spacing:20.541600px;}
.ws13_c00032{word-spacing:21.571200px;}
.ws14_c00032{word-spacing:21.628800px;}
.ws12_c00032{word-spacing:21.636000px;}
.ws17_c00032{word-spacing:23.356800px;}
.ws18_c00032{word-spacing:23.421600px;}
.ws7_c00032{word-spacing:30.614400px;}
.ws19_c00032{word-spacing:32.436000px;}
._0_c00032{margin-left:-1.322640px;}
._1_c00032{width:1.152000px;}
.fc0_c00032{color:rgb(0,0,0);}
.fs1_c00032{font-size:54.000000px;}
.fs0_c00032{font-size:60.120000px;}
.fs2_c00032{font-size:72.000000px;}
.y0_c00032{bottom:0.000000px;}
.y3_c00032{bottom:57.450450px;}
.y21_c00032{bottom:115.860450px;}
.y20_c00032{bottom:150.240450px;}
.y1f_c00032{bottom:184.710450px;}
.y1e_c00032{bottom:219.090450px;}
.y1d_c00032{bottom:253.560450px;}
.y1c_c00032{bottom:296.940450px;}
.y1b_c00032{bottom:331.410450px;}
.y1a_c00032{bottom:365.790450px;}
.y19_c00032{bottom:400.260450px;}
.y18_c00032{bottom:434.640450px;}
.y17_c00032{bottom:469.110450px;}
.y16_c00032{bottom:503.490450px;}
.y15_c00032{bottom:546.960450px;}
.y14_c00032{bottom:581.340450px;}
.y13_c00032{bottom:615.810450px;}
.y12_c00032{bottom:650.190450px;}
.y11_c00032{bottom:684.660450px;}
.y10_c00032{bottom:719.040450px;}
.yf_c00032{bottom:753.510450px;}
.ye_c00032{bottom:787.890450px;}
.yd_c00032{bottom:822.360450px;}
.yc_c00032{bottom:865.740450px;}
.yb_c00032{bottom:900.210450px;}
.ya_c00032{bottom:934.590450px;}
.y9_c00032{bottom:969.060450px;}
.y8_c00032{bottom:1003.440450px;}
.y7_c00032{bottom:1037.910450px;}
.y6_c00032{bottom:1072.290450px;}
.y5_c00032{bottom:1106.760450px;}
.y4_c00032{bottom:1141.140450px;}
.y2_c00032{bottom:1177.860450px;}
.y1_c00032{bottom:1196.850450px;}
.h1_c00032{height:50.315273px;}
.h2_c00032{height:56.320312px;}
.h4_c00032{height:60.257812px;}
.h5_c00032{height:60.328125px;}
.h3_c00032{height:72.160312px;}
.h0_c00032{height:1263.000000px;}
.w1_c00032{width:892.500000px;}
.w0_c00032{width:892.830000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:127.620000px;}
.x2_c00032{left:180.810000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.v1_c00032{vertical-align:14.080000pt;}
.lsc_c00032{letter-spacing:-0.038400pt;}
.lsb_c00032{letter-spacing:-0.032000pt;}
.ls9_c00032{letter-spacing:-0.025600pt;}
.lsa_c00032{letter-spacing:-0.019200pt;}
.ls7_c00032{letter-spacing:-0.012800pt;}
.ls8_c00032{letter-spacing:-0.006400pt;}
.ls6_c00032{letter-spacing:0.000000pt;}
.ls2_c00032{letter-spacing:0.006400pt;}
.ls4_c00032{letter-spacing:0.012800pt;}
.ls5_c00032{letter-spacing:0.019200pt;}
.ls3_c00032{letter-spacing:0.025600pt;}
.ls0_c00032{letter-spacing:0.042752pt;}
.ls1_c00032{letter-spacing:1104.320000pt;}
.ws20_c00032{word-spacing:-0.038400pt;}
.ws1_c00032{word-spacing:0.000000pt;}
.ws11_c00032{word-spacing:0.006400pt;}
.ws0_c00032{word-spacing:0.037408pt;}
.ws2c_c00032{word-spacing:0.281600pt;}
.ws2b_c00032{word-spacing:0.294400pt;}
.ws2a_c00032{word-spacing:0.352000pt;}
.ws25_c00032{word-spacing:0.652800pt;}
.ws5_c00032{word-spacing:0.966400pt;}
.ws6_c00032{word-spacing:1.017600pt;}
.ws2d_c00032{word-spacing:2.252800pt;}
.ws31_c00032{word-spacing:3.200000pt;}
.ws32_c00032{word-spacing:3.264000pt;}
.wsd_c00032{word-spacing:3.680000pt;}
.wse_c00032{word-spacing:3.814400pt;}
.ws1a_c00032{word-spacing:3.833600pt;}
.wsc_c00032{word-spacing:3.859200pt;}
.ws26_c00032{word-spacing:3.884800pt;}
.ws29_c00032{word-spacing:4.172800pt;}
.ws21_c00032{word-spacing:6.368000pt;}
.ws22_c00032{word-spacing:6.412800pt;}
.ws1b_c00032{word-spacing:6.720000pt;}
.ws24_c00032{word-spacing:6.764800pt;}
.ws23_c00032{word-spacing:6.803200pt;}
.ws27_c00032{word-spacing:9.913600pt;}
.ws28_c00032{word-spacing:9.984000pt;}
.ws9_c00032{word-spacing:11.820800pt;}
.ws8_c00032{word-spacing:11.929600pt;}
.wsa_c00032{word-spacing:13.075200pt;}
.ws2e_c00032{word-spacing:13.126400pt;}
.wsb_c00032{word-spacing:13.209600pt;}
.ws2_c00032{word-spacing:13.772800pt;}
.ws1e_c00032{word-spacing:15.046400pt;}
.ws1f_c00032{word-spacing:15.078400pt;}
.ws4_c00032{word-spacing:15.347200pt;}
.ws3_c00032{word-spacing:15.372800pt;}
.ws2f_c00032{word-spacing:17.011200pt;}
.ws30_c00032{word-spacing:17.049600pt;}
.ws16_c00032{word-spacing:17.260800pt;}
.ws15_c00032{word-spacing:17.292800pt;}
.ws1c_c00032{word-spacing:17.574400pt;}
.ws1d_c00032{word-spacing:17.657600pt;}
.wsf_c00032{word-spacing:18.240000pt;}
.ws10_c00032{word-spacing:18.259200pt;}
.ws13_c00032{word-spacing:19.174400pt;}
.ws14_c00032{word-spacing:19.225600pt;}
.ws12_c00032{word-spacing:19.232000pt;}
.ws17_c00032{word-spacing:20.761600pt;}
.ws18_c00032{word-spacing:20.819200pt;}
.ws7_c00032{word-spacing:27.212800pt;}
.ws19_c00032{word-spacing:28.832000pt;}
._0_c00032{margin-left:-1.175680pt;}
._1_c00032{width:1.024000pt;}
.fs1_c00032{font-size:48.000000pt;}
.fs0_c00032{font-size:53.440000pt;}
.fs2_c00032{font-size:64.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y3_c00032{bottom:51.067067pt;}
.y21_c00032{bottom:102.987067pt;}
.y20_c00032{bottom:133.547067pt;}
.y1f_c00032{bottom:164.187067pt;}
.y1e_c00032{bottom:194.747067pt;}
.y1d_c00032{bottom:225.387067pt;}
.y1c_c00032{bottom:263.947067pt;}
.y1b_c00032{bottom:294.587067pt;}
.y1a_c00032{bottom:325.147067pt;}
.y19_c00032{bottom:355.787067pt;}
.y18_c00032{bottom:386.347067pt;}
.y17_c00032{bottom:416.987067pt;}
.y16_c00032{bottom:447.547067pt;}
.y15_c00032{bottom:486.187067pt;}
.y14_c00032{bottom:516.747067pt;}
.y13_c00032{bottom:547.387067pt;}
.y12_c00032{bottom:577.947067pt;}
.y11_c00032{bottom:608.587067pt;}
.y10_c00032{bottom:639.147067pt;}
.yf_c00032{bottom:669.787067pt;}
.ye_c00032{bottom:700.347067pt;}
.yd_c00032{bottom:730.987067pt;}
.yc_c00032{bottom:769.547067pt;}
.yb_c00032{bottom:800.187067pt;}
.ya_c00032{bottom:830.747067pt;}
.y9_c00032{bottom:861.387067pt;}
.y8_c00032{bottom:891.947067pt;}
.y7_c00032{bottom:922.587067pt;}
.y6_c00032{bottom:953.147067pt;}
.y5_c00032{bottom:983.787067pt;}
.y4_c00032{bottom:1014.347067pt;}
.y2_c00032{bottom:1046.987067pt;}
.y1_c00032{bottom:1063.867067pt;}
.h1_c00032{height:44.724687pt;}
.h2_c00032{height:50.062500pt;}
.h4_c00032{height:53.562500pt;}
.h5_c00032{height:53.625000pt;}
.h3_c00032{height:64.142500pt;}
.h0_c00032{height:1122.666667pt;}
.w1_c00032{width:793.333333pt;}
.w0_c00032{width:793.626667pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:113.440000pt;}
.x2_c00032{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_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_23933e4da8b8fbba79bf6e59.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.100098;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_5112ecaa6f44b03738b00365.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00033;src:url('chunks/assets/font_816274781ce40bb924de0c49.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00033{vertical-align:15.840000px;}
.ls9_c00033{letter-spacing:-0.086400px;}
.lsb_c00033{letter-spacing:-0.057600px;}
.ls4_c00033{letter-spacing:-0.036072px;}
.lsa_c00033{letter-spacing:-0.036000px;}
.ls8_c00033{letter-spacing:-0.021600px;}
.ls6_c00033{letter-spacing:-0.014400px;}
.ls7_c00033{letter-spacing:-0.007200px;}
.ls5_c00033{letter-spacing:0.000000px;}
.ls2_c00033{letter-spacing:0.007200px;}
.ls1_c00033{letter-spacing:0.014400px;}
.ls3_c00033{letter-spacing:0.021600px;}
.ls0_c00033{letter-spacing:1242.360000px;}
.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;}
}
.wsf_c00033{word-spacing:-0.079200px;}
.ws1_c00033{word-spacing:0.000000px;}
.ws19_c00033{word-spacing:0.014400px;}
.ws1a_c00033{word-spacing:0.050400px;}
.wse_c00033{word-spacing:0.093600px;}
.ws0_c00033{word-spacing:0.126252px;}
.ws2a_c00033{word-spacing:1.036800px;}
.ws29_c00033{word-spacing:1.094400px;}
.ws17_c00033{word-spacing:1.101600px;}
.ws15_c00033{word-spacing:1.447200px;}
.ws16_c00033{word-spacing:1.497600px;}
.ws12_c00033{word-spacing:2.167200px;}
.ws13_c00033{word-spacing:2.217600px;}
.ws26_c00033{word-spacing:2.527200px;}
.ws11_c00033{word-spacing:2.563200px;}
.ws25_c00033{word-spacing:2.592000px;}
.ws4_c00033{word-spacing:2.908800px;}
.ws5_c00033{word-spacing:2.944800px;}
.ws9_c00033{word-spacing:3.247200px;}
.ws18_c00033{word-spacing:5.414400px;}
.ws2f_c00033{word-spacing:5.767200px;}
.ws30_c00033{word-spacing:5.860800px;}
.ws2b_c00033{word-spacing:7.135200px;}
.ws2c_c00033{word-spacing:7.207200px;}
.ws3_c00033{word-spacing:7.574400px;}
.ws2_c00033{word-spacing:7.646400px;}
.ws31_c00033{word-spacing:7.927200px;}
.ws6_c00033{word-spacing:7.941600px;}
.ws8_c00033{word-spacing:10.857600px;}
.ws24_c00033{word-spacing:12.211200px;}
.ws23_c00033{word-spacing:12.261600px;}
.ws1c_c00033{word-spacing:13.320000px;}
.ws10_c00033{word-spacing:13.341600px;}
.ws1b_c00033{word-spacing:13.406400px;}
.ws1d_c00033{word-spacing:13.420800px;}
.ws27_c00033{word-spacing:16.574400px;}
.ws28_c00033{word-spacing:16.617600px;}
.ws20_c00033{word-spacing:18.756000px;}
.ws1e_c00033{word-spacing:19.094400px;}
.ws1f_c00033{word-spacing:19.173600px;}
.wsa_c00033{word-spacing:19.749600px;}
.wsb_c00033{word-spacing:19.814400px;}
.ws7_c00033{word-spacing:20.232000px;}
.ws14_c00033{word-spacing:20.923200px;}
.ws2e_c00033{word-spacing:25.898400px;}
.ws2d_c00033{word-spacing:25.934400px;}
.wsc_c00033{word-spacing:35.640000px;}
.wsd_c00033{word-spacing:35.733600px;}
.ws21_c00033{word-spacing:42.818400px;}
.ws22_c00033{word-spacing:43.020000px;}
._1_c00033{margin-left:-1.080000px;}
._0_c00033{width:1.008000px;}
.fc0_c00033{color:rgb(0,0,0);}
.fs2_c00033{font-size:54.000000px;}
.fs0_c00033{font-size:60.120000px;}
.fs1_c00033{font-size:72.000000px;}
.y0_c00033{bottom:0.000000px;}
.y3_c00033{bottom:57.450450px;}
.y21_c00033{bottom:115.860450px;}
.y20_c00033{bottom:150.240450px;}
.y1f_c00033{bottom:184.710450px;}
.y1e_c00033{bottom:219.090450px;}
.y1d_c00033{bottom:262.560450px;}
.y1c_c00033{bottom:296.940450px;}
.y1b_c00033{bottom:331.410450px;}
.y1a_c00033{bottom:365.790450px;}
.y19_c00033{bottom:400.260450px;}
.y18_c00033{bottom:434.640450px;}
.y17_c00033{bottom:469.110450px;}
.y16_c00033{bottom:503.490450px;}
.y15_c00033{bottom:537.960450px;}
.y14_c00033{bottom:581.340450px;}
.y13_c00033{bottom:615.810450px;}
.y12_c00033{bottom:650.190450px;}
.y11_c00033{bottom:684.660450px;}
.y10_c00033{bottom:719.040450px;}
.yf_c00033{bottom:753.510450px;}
.ye_c00033{bottom:787.890450px;}
.yd_c00033{bottom:822.360450px;}
.yc_c00033{bottom:865.740450px;}
.yb_c00033{bottom:900.210450px;}
.ya_c00033{bottom:934.590450px;}
.y9_c00033{bottom:969.060450px;}
.y8_c00033{bottom:1003.440450px;}
.y7_c00033{bottom:1037.910450px;}
.y6_c00033{bottom:1072.290450px;}
.y5_c00033{bottom:1106.760450px;}
.y4_c00033{bottom:1141.140450px;}
.y2_c00033{bottom:1173.810450px;}
.y1_c00033{bottom:1196.850450px;}
.h1_c00033{height:50.315273px;}
.h4_c00033{height:60.257812px;}
.h5_c00033{height:60.328125px;}
.h2_c00033{height:70.664062px;}
.h3_c00033{height:72.160313px;}
.h0_c00033{height:1263.000000px;}
.w1_c00033{width:892.500000px;}
.w0_c00033{width:892.830000px;}
.x0_c00033{left:0.000000px;}
.x2_c00033{left:127.620000px;}
.x3_c00033{left:180.810000px;}
.x1_c00033{left:689.310000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.v1_c00033{vertical-align:14.080000pt;}
.ls9_c00033{letter-spacing:-0.076800pt;}
.lsb_c00033{letter-spacing:-0.051200pt;}
.ls4_c00033{letter-spacing:-0.032064pt;}
.lsa_c00033{letter-spacing:-0.032000pt;}
.ls8_c00033{letter-spacing:-0.019200pt;}
.ls6_c00033{letter-spacing:-0.012800pt;}
.ls7_c00033{letter-spacing:-0.006400pt;}
.ls5_c00033{letter-spacing:0.000000pt;}
.ls2_c00033{letter-spacing:0.006400pt;}
.ls1_c00033{letter-spacing:0.012800pt;}
.ls3_c00033{letter-spacing:0.019200pt;}
.ls0_c00033{letter-spacing:1104.320000pt;}
.wsf_c00033{word-spacing:-0.070400pt;}
.ws1_c00033{word-spacing:0.000000pt;}
.ws19_c00033{word-spacing:0.012800pt;}
.ws1a_c00033{word-spacing:0.044800pt;}
.wse_c00033{word-spacing:0.083200pt;}
.ws0_c00033{word-spacing:0.112224pt;}
.ws2a_c00033{word-spacing:0.921600pt;}
.ws29_c00033{word-spacing:0.972800pt;}
.ws17_c00033{word-spacing:0.979200pt;}
.ws15_c00033{word-spacing:1.286400pt;}
.ws16_c00033{word-spacing:1.331200pt;}
.ws12_c00033{word-spacing:1.926400pt;}
.ws13_c00033{word-spacing:1.971200pt;}
.ws26_c00033{word-spacing:2.246400pt;}
.ws11_c00033{word-spacing:2.278400pt;}
.ws25_c00033{word-spacing:2.304000pt;}
.ws4_c00033{word-spacing:2.585600pt;}
.ws5_c00033{word-spacing:2.617600pt;}
.ws9_c00033{word-spacing:2.886400pt;}
.ws18_c00033{word-spacing:4.812800pt;}
.ws2f_c00033{word-spacing:5.126400pt;}
.ws30_c00033{word-spacing:5.209600pt;}
.ws2b_c00033{word-spacing:6.342400pt;}
.ws2c_c00033{word-spacing:6.406400pt;}
.ws3_c00033{word-spacing:6.732800pt;}
.ws2_c00033{word-spacing:6.796800pt;}
.ws31_c00033{word-spacing:7.046400pt;}
.ws6_c00033{word-spacing:7.059200pt;}
.ws8_c00033{word-spacing:9.651200pt;}
.ws24_c00033{word-spacing:10.854400pt;}
.ws23_c00033{word-spacing:10.899200pt;}
.ws1c_c00033{word-spacing:11.840000pt;}
.ws10_c00033{word-spacing:11.859200pt;}
.ws1b_c00033{word-spacing:11.916800pt;}
.ws1d_c00033{word-spacing:11.929600pt;}
.ws27_c00033{word-spacing:14.732800pt;}
.ws28_c00033{word-spacing:14.771200pt;}
.ws20_c00033{word-spacing:16.672000pt;}
.ws1e_c00033{word-spacing:16.972800pt;}
.ws1f_c00033{word-spacing:17.043200pt;}
.wsa_c00033{word-spacing:17.555200pt;}
.wsb_c00033{word-spacing:17.612800pt;}
.ws7_c00033{word-spacing:17.984000pt;}
.ws14_c00033{word-spacing:18.598400pt;}
.ws2e_c00033{word-spacing:23.020800pt;}
.ws2d_c00033{word-spacing:23.052800pt;}
.wsc_c00033{word-spacing:31.680000pt;}
.wsd_c00033{word-spacing:31.763200pt;}
.ws21_c00033{word-spacing:38.060800pt;}
.ws22_c00033{word-spacing:38.240000pt;}
._1_c00033{margin-left:-0.960000pt;}
._0_c00033{width:0.896000pt;}
.fs2_c00033{font-size:48.000000pt;}
.fs0_c00033{font-size:53.440000pt;}
.fs1_c00033{font-size:64.000000pt;}
.y0_c00033{bottom:0.000000pt;}
.y3_c00033{bottom:51.067067pt;}
.y21_c00033{bottom:102.987067pt;}
.y20_c00033{bottom:133.547067pt;}
.y1f_c00033{bottom:164.187067pt;}
.y1e_c00033{bottom:194.747067pt;}
.y1d_c00033{bottom:233.387067pt;}
.y1c_c00033{bottom:263.947067pt;}
.y1b_c00033{bottom:294.587067pt;}
.y1a_c00033{bottom:325.147067pt;}
.y19_c00033{bottom:355.787067pt;}
.y18_c00033{bottom:386.347067pt;}
.y17_c00033{bottom:416.987067pt;}
.y16_c00033{bottom:447.547067pt;}
.y15_c00033{bottom:478.187067pt;}
.y14_c00033{bottom:516.747067pt;}
.y13_c00033{bottom:547.387067pt;}
.y12_c00033{bottom:577.947067pt;}
.y11_c00033{bottom:608.587067pt;}
.y10_c00033{bottom:639.147067pt;}
.yf_c00033{bottom:669.787067pt;}
.ye_c00033{bottom:700.347067pt;}
.yd_c00033{bottom:730.987067pt;}
.yc_c00033{bottom:769.547067pt;}
.yb_c00033{bottom:800.187067pt;}
.ya_c00033{bottom:830.747067pt;}
.y9_c00033{bottom:861.387067pt;}
.y8_c00033{bottom:891.947067pt;}
.y7_c00033{bottom:922.587067pt;}
.y6_c00033{bottom:953.147067pt;}
.y5_c00033{bottom:983.787067pt;}
.y4_c00033{bottom:1014.347067pt;}
.y2_c00033{bottom:1043.387067pt;}
.y1_c00033{bottom:1063.867067pt;}
.h1_c00033{height:44.724687pt;}
.h4_c00033{height:53.562500pt;}
.h5_c00033{height:53.625000pt;}
.h2_c00033{height:62.812500pt;}
.h3_c00033{height:64.142500pt;}
.h0_c00033{height:1122.666667pt;}
.w1_c00033{width:793.333333pt;}
.w0_c00033{width:793.626667pt;}
.x0_c00033{left:0.000000pt;}
.x2_c00033{left:113.440000pt;}
.x3_c00033{left:160.720000pt;}
.x1_c00033{left:612.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_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_4fe5501c5729a7f9129aada2.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.100098;font-style:normal;font-weight:normal;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_9dd607202f20a80b72d7f452.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;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_c00034;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00034{vertical-align:15.840000px;}
.ls7_c00034{letter-spacing:-0.151200px;}
.lsa_c00034{letter-spacing:-0.028800px;}
.lsb_c00034{letter-spacing:-0.021600px;}
.ls9_c00034{letter-spacing:-0.014400px;}
.ls8_c00034{letter-spacing:-0.007200px;}
.ls6_c00034{letter-spacing:0.000000px;}
.ls2_c00034{letter-spacing:0.007200px;}
.ls4_c00034{letter-spacing:0.014400px;}
.ls3_c00034{letter-spacing:0.021600px;}
.ls5_c00034{letter-spacing:0.043200px;}
.ls0_c00034{letter-spacing:0.048096px;}
.ls1_c00034{letter-spacing:1227.240000px;}
.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;}
}
.ws1_c00034{word-spacing:0.000000px;}
.wsa_c00034{word-spacing:0.007200px;}
.ws20_c00034{word-spacing:0.014400px;}
.ws0_c00034{word-spacing:0.042084px;}
.wsb_c00034{word-spacing:0.129600px;}
.ws34_c00034{word-spacing:0.396000px;}
.ws29_c00034{word-spacing:0.676800px;}
.ws28_c00034{word-spacing:0.856800px;}
.ws18_c00034{word-spacing:1.008000px;}
.ws1c_c00034{word-spacing:1.072800px;}
.ws17_c00034{word-spacing:1.101600px;}
.ws1d_c00034{word-spacing:1.144800px;}
.ws1a_c00034{word-spacing:1.447200px;}
.ws1b_c00034{word-spacing:1.461600px;}
.ws16_c00034{word-spacing:3.607200px;}
.ws27_c00034{word-spacing:5.436000px;}
.ws7_c00034{word-spacing:5.738400px;}
.ws24_c00034{word-spacing:6.177600px;}
.ws23_c00034{word-spacing:6.192000px;}
.wsf_c00034{word-spacing:6.264000px;}
.wse_c00034{word-spacing:6.487200px;}
.ws2d_c00034{word-spacing:6.868800px;}
.ws2c_c00034{word-spacing:6.897600px;}
.ws19_c00034{word-spacing:7.178400px;}
.ws9_c00034{word-spacing:7.200000px;}
.ws8_c00034{word-spacing:7.207200px;}
.ws25_c00034{word-spacing:7.920000px;}
.ws26_c00034{word-spacing:7.999200px;}
.wsc_c00034{word-spacing:9.007200px;}
.wsd_c00034{word-spacing:9.014400px;}
.ws2a_c00034{word-spacing:9.424800px;}
.ws2b_c00034{word-spacing:9.432000px;}
.ws6_c00034{word-spacing:9.712800px;}
.ws1f_c00034{word-spacing:9.727200px;}
.ws5_c00034{word-spacing:9.820800px;}
.ws13_c00034{word-spacing:11.534400px;}
.ws12_c00034{word-spacing:11.541600px;}
.ws15_c00034{word-spacing:14.378400px;}
.ws14_c00034{word-spacing:14.392800px;}
.ws1e_c00034{word-spacing:16.250400px;}
.ws2e_c00034{word-spacing:16.560000px;}
.ws2f_c00034{word-spacing:16.567200px;}
.ws10_c00034{word-spacing:18.338400px;}
.ws11_c00034{word-spacing:18.432000px;}
.ws33_c00034{word-spacing:19.447200px;}
.ws32_c00034{word-spacing:19.468800px;}
.ws4_c00034{word-spacing:21.664800px;}
.ws3_c00034{word-spacing:21.722400px;}
.ws30_c00034{word-spacing:22.334400px;}
.ws31_c00034{word-spacing:22.442400px;}
.ws2_c00034{word-spacing:23.752800px;}
.ws21_c00034{word-spacing:28.000800px;}
.ws22_c00034{word-spacing:28.080000px;}
._0_c00034{margin-left:-1.322640px;}
._1_c00034{width:1.080000px;}
.fc0_c00034{color:rgb(0,0,0);}
.fs1_c00034{font-size:54.000000px;}
.fs0_c00034{font-size:60.120000px;}
.fs2_c00034{font-size:72.000000px;}
.y0_c00034{bottom:0.000000px;}
.y3_c00034{bottom:57.450450px;}
.y21_c00034{bottom:124.860450px;}
.y20_c00034{bottom:159.240450px;}
.y1f_c00034{bottom:193.710450px;}
.y1e_c00034{bottom:228.090450px;}
.y1d_c00034{bottom:262.560450px;}
.y1c_c00034{bottom:296.940450px;}
.y1b_c00034{bottom:331.410450px;}
.y1a_c00034{bottom:365.790450px;}
.y19_c00034{bottom:400.260450px;}
.y18_c00034{bottom:434.640450px;}
.y17_c00034{bottom:469.110450px;}
.y16_c00034{bottom:512.490450px;}
.y15_c00034{bottom:546.960450px;}
.y14_c00034{bottom:581.340450px;}
.y13_c00034{bottom:615.810450px;}
.y12_c00034{bottom:650.190450px;}
.y11_c00034{bottom:684.660450px;}
.y10_c00034{bottom:719.040450px;}
.yf_c00034{bottom:753.510450px;}
.ye_c00034{bottom:787.890450px;}
.yd_c00034{bottom:822.360450px;}
.yc_c00034{bottom:856.740450px;}
.yb_c00034{bottom:891.210450px;}
.ya_c00034{bottom:925.590450px;}
.y9_c00034{bottom:969.060450px;}
.y8_c00034{bottom:1003.440450px;}
.y7_c00034{bottom:1037.910450px;}
.y6_c00034{bottom:1072.290450px;}
.y5_c00034{bottom:1106.760450px;}
.y4_c00034{bottom:1141.140450px;}
.y2_c00034{bottom:1177.860450px;}
.y1_c00034{bottom:1196.850450px;}
.h1_c00034{height:50.315273px;}
.h2_c00034{height:56.320312px;}
.h4_c00034{height:60.257812px;}
.h3_c00034{height:72.160312px;}
.h0_c00034{height:1263.000000px;}
.w1_c00034{width:892.500000px;}
.w0_c00034{width:892.830000px;}
.x0_c00034{left:0.000000px;}
.x1_c00034{left:127.620000px;}
.x2_c00034{left:180.810000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.v1_c00034{vertical-align:14.080000pt;}
.ls7_c00034{letter-spacing:-0.134400pt;}
.lsa_c00034{letter-spacing:-0.025600pt;}
.lsb_c00034{letter-spacing:-0.019200pt;}
.ls9_c00034{letter-spacing:-0.012800pt;}
.ls8_c00034{letter-spacing:-0.006400pt;}
.ls6_c00034{letter-spacing:0.000000pt;}
.ls2_c00034{letter-spacing:0.006400pt;}
.ls4_c00034{letter-spacing:0.012800pt;}
.ls3_c00034{letter-spacing:0.019200pt;}
.ls5_c00034{letter-spacing:0.038400pt;}
.ls0_c00034{letter-spacing:0.042752pt;}
.ls1_c00034{letter-spacing:1090.880000pt;}
.ws1_c00034{word-spacing:0.000000pt;}
.wsa_c00034{word-spacing:0.006400pt;}
.ws20_c00034{word-spacing:0.012800pt;}
.ws0_c00034{word-spacing:0.037408pt;}
.wsb_c00034{word-spacing:0.115200pt;}
.ws34_c00034{word-spacing:0.352000pt;}
.ws29_c00034{word-spacing:0.601600pt;}
.ws28_c00034{word-spacing:0.761600pt;}
.ws18_c00034{word-spacing:0.896000pt;}
.ws1c_c00034{word-spacing:0.953600pt;}
.ws17_c00034{word-spacing:0.979200pt;}
.ws1d_c00034{word-spacing:1.017600pt;}
.ws1a_c00034{word-spacing:1.286400pt;}
.ws1b_c00034{word-spacing:1.299200pt;}
.ws16_c00034{word-spacing:3.206400pt;}
.ws27_c00034{word-spacing:4.832000pt;}
.ws7_c00034{word-spacing:5.100800pt;}
.ws24_c00034{word-spacing:5.491200pt;}
.ws23_c00034{word-spacing:5.504000pt;}
.wsf_c00034{word-spacing:5.568000pt;}
.wse_c00034{word-spacing:5.766400pt;}
.ws2d_c00034{word-spacing:6.105600pt;}
.ws2c_c00034{word-spacing:6.131200pt;}
.ws19_c00034{word-spacing:6.380800pt;}
.ws9_c00034{word-spacing:6.400000pt;}
.ws8_c00034{word-spacing:6.406400pt;}
.ws25_c00034{word-spacing:7.040000pt;}
.ws26_c00034{word-spacing:7.110400pt;}
.wsc_c00034{word-spacing:8.006400pt;}
.wsd_c00034{word-spacing:8.012800pt;}
.ws2a_c00034{word-spacing:8.377600pt;}
.ws2b_c00034{word-spacing:8.384000pt;}
.ws6_c00034{word-spacing:8.633600pt;}
.ws1f_c00034{word-spacing:8.646400pt;}
.ws5_c00034{word-spacing:8.729600pt;}
.ws13_c00034{word-spacing:10.252800pt;}
.ws12_c00034{word-spacing:10.259200pt;}
.ws15_c00034{word-spacing:12.780800pt;}
.ws14_c00034{word-spacing:12.793600pt;}
.ws1e_c00034{word-spacing:14.444800pt;}
.ws2e_c00034{word-spacing:14.720000pt;}
.ws2f_c00034{word-spacing:14.726400pt;}
.ws10_c00034{word-spacing:16.300800pt;}
.ws11_c00034{word-spacing:16.384000pt;}
.ws33_c00034{word-spacing:17.286400pt;}
.ws32_c00034{word-spacing:17.305600pt;}
.ws4_c00034{word-spacing:19.257600pt;}
.ws3_c00034{word-spacing:19.308800pt;}
.ws30_c00034{word-spacing:19.852800pt;}
.ws31_c00034{word-spacing:19.948800pt;}
.ws2_c00034{word-spacing:21.113600pt;}
.ws21_c00034{word-spacing:24.889600pt;}
.ws22_c00034{word-spacing:24.960000pt;}
._0_c00034{margin-left:-1.175680pt;}
._1_c00034{width:0.960000pt;}
.fs1_c00034{font-size:48.000000pt;}
.fs0_c00034{font-size:53.440000pt;}
.fs2_c00034{font-size:64.000000pt;}
.y0_c00034{bottom:0.000000pt;}
.y3_c00034{bottom:51.067067pt;}
.y21_c00034{bottom:110.987067pt;}
.y20_c00034{bottom:141.547067pt;}
.y1f_c00034{bottom:172.187067pt;}
.y1e_c00034{bottom:202.747067pt;}
.y1d_c00034{bottom:233.387067pt;}
.y1c_c00034{bottom:263.947067pt;}
.y1b_c00034{bottom:294.587067pt;}
.y1a_c00034{bottom:325.147067pt;}
.y19_c00034{bottom:355.787067pt;}
.y18_c00034{bottom:386.347067pt;}
.y17_c00034{bottom:416.987067pt;}
.y16_c00034{bottom:455.547067pt;}
.y15_c00034{bottom:486.187067pt;}
.y14_c00034{bottom:516.747067pt;}
.y13_c00034{bottom:547.387067pt;}
.y12_c00034{bottom:577.947067pt;}
.y11_c00034{bottom:608.587067pt;}
.y10_c00034{bottom:639.147067pt;}
.yf_c00034{bottom:669.787067pt;}
.ye_c00034{bottom:700.347067pt;}
.yd_c00034{bottom:730.987067pt;}
.yc_c00034{bottom:761.547067pt;}
.yb_c00034{bottom:792.187067pt;}
.ya_c00034{bottom:822.747067pt;}
.y9_c00034{bottom:861.387067pt;}
.y8_c00034{bottom:891.947067pt;}
.y7_c00034{bottom:922.587067pt;}
.y6_c00034{bottom:953.147067pt;}
.y5_c00034{bottom:983.787067pt;}
.y4_c00034{bottom:1014.347067pt;}
.y2_c00034{bottom:1046.987067pt;}
.y1_c00034{bottom:1063.867067pt;}
.h1_c00034{height:44.724687pt;}
.h2_c00034{height:50.062500pt;}
.h4_c00034{height:53.562500pt;}
.h3_c00034{height:64.142500pt;}
.h0_c00034{height:1122.666667pt;}
.w1_c00034{width:793.333333pt;}
.w0_c00034{width:793.626667pt;}
.x0_c00034{left:0.000000pt;}
.x1_c00034{left:113.440000pt;}
.x2_c00034{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_c00035 {
    display:none;
  }
  .loading-indicator_c00035.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00035 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00035 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00035" -> "#page-container .classname_c00035")
 */
.pf_c00035 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00035 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00035 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00035 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00035 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00035 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00035 {overflow:visible;}
  }
}
.c_c00035 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00035 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00035:after { /* webkit #35443 */
  content: '';
}
.t_c00035:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00035 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00035 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00035 { /* info for Javascript */
  display:none;
}
.l_c00035 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00035 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00035 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00035:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00035;src:url('chunks/assets/font_667c748b8e184284727dc33e.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00035;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00035;src:url('chunks/assets/font_2c97495b1a06998bf5dbc308.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;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_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.v1_c00035{vertical-align:15.840000px;}
.ls6_c00035{letter-spacing:-0.151200px;}
.ls4_c00035{letter-spacing:-0.036072px;}
.lsa_c00035{letter-spacing:-0.036000px;}
.lsb_c00035{letter-spacing:-0.028800px;}
.ls9_c00035{letter-spacing:-0.021600px;}
.ls7_c00035{letter-spacing:-0.014400px;}
.ls8_c00035{letter-spacing:-0.007200px;}
.ls5_c00035{letter-spacing:0.000000px;}
.ls2_c00035{letter-spacing:0.007200px;}
.ls1_c00035{letter-spacing:0.014400px;}
.ls3_c00035{letter-spacing:0.028800px;}
.lsc_c00035{letter-spacing:0.043200px;}
.ls0_c00035{letter-spacing:1227.240000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d_c00035{word-spacing:-0.007200px;}
.ws1_c00035{word-spacing:0.000000px;}
.ws12_c00035{word-spacing:0.007200px;}
.ws11_c00035{word-spacing:0.057600px;}
.ws13_c00035{word-spacing:0.086400px;}
.ws0_c00035{word-spacing:0.126252px;}
.ws10_c00035{word-spacing:0.388800px;}
.ws15_c00035{word-spacing:0.734400px;}
.ws28_c00035{word-spacing:0.748800px;}
.wse_c00035{word-spacing:1.425600px;}
.wsd_c00035{word-spacing:1.476000px;}
.ws3_c00035{word-spacing:1.800000px;}
.ws8_c00035{word-spacing:1.807200px;}
.ws2_c00035{word-spacing:1.836000px;}
.ws17_c00035{word-spacing:2.505600px;}
.ws1c_c00035{word-spacing:2.520000px;}
.ws16_c00035{word-spacing:2.541600px;}
.wsb_c00035{word-spacing:2.880000px;}
.wsa_c00035{word-spacing:2.887200px;}
.ws9_c00035{word-spacing:3.240000px;}
.ws1b_c00035{word-spacing:3.254400px;}
.ws2a_c00035{word-spacing:3.607200px;}
.ws29_c00035{word-spacing:3.664800px;}
.ws27_c00035{word-spacing:3.960000px;}
.ws26_c00035{word-spacing:4.003200px;}
.ws5_c00035{word-spacing:4.680000px;}
.ws14_c00035{word-spacing:4.694400px;}
.ws4_c00035{word-spacing:4.708800px;}
.ws24_c00035{word-spacing:4.766400px;}
.ws23_c00035{word-spacing:4.780800px;}
.ws6_c00035{word-spacing:4.845600px;}
.ws21_c00035{word-spacing:5.414400px;}
.ws20_c00035{word-spacing:5.536800px;}
.ws2b_c00035{word-spacing:5.760000px;}
.ws2c_c00035{word-spacing:6.076800px;}
.ws2d_c00035{word-spacing:6.120000px;}
.wsc_c00035{word-spacing:6.170400px;}
.ws1e_c00035{word-spacing:8.632800px;}
.ws7_c00035{word-spacing:8.654400px;}
.ws1f_c00035{word-spacing:8.690400px;}
.ws25_c00035{word-spacing:14.040000px;}
.ws19_c00035{word-spacing:21.880800px;}
.ws1a_c00035{word-spacing:21.974400px;}
.ws18_c00035{word-spacing:22.665600px;}
.ws22_c00035{word-spacing:26.654400px;}
.wsf_c00035{word-spacing:31.327200px;}
._0_c00035{width:1.209600px;}
.fc0_c00035{color:rgb(0,0,0);}
.fs2_c00035{font-size:54.000000px;}
.fs0_c00035{font-size:60.120000px;}
.fs1_c00035{font-size:72.000000px;}
.y0_c00035{bottom:0.000000px;}
.y3_c00035{bottom:57.450450px;}
.y21_c00035{bottom:133.860450px;}
.y20_c00035{bottom:168.240450px;}
.y1f_c00035{bottom:202.710450px;}
.y1e_c00035{bottom:237.090450px;}
.y1d_c00035{bottom:271.560450px;}
.y1c_c00035{bottom:305.940450px;}
.y1b_c00035{bottom:340.410450px;}
.y1a_c00035{bottom:374.790450px;}
.y19_c00035{bottom:409.260450px;}
.y18_c00035{bottom:443.640450px;}
.y17_c00035{bottom:478.110450px;}
.y16_c00035{bottom:512.490450px;}
.y15_c00035{bottom:546.960450px;}
.y14_c00035{bottom:581.340450px;}
.y13_c00035{bottom:615.810450px;}
.y12_c00035{bottom:650.190450px;}
.y11_c00035{bottom:684.660450px;}
.y10_c00035{bottom:719.040450px;}
.yf_c00035{bottom:753.510450px;}
.ye_c00035{bottom:796.890450px;}
.yd_c00035{bottom:831.360450px;}
.yc_c00035{bottom:865.740450px;}
.yb_c00035{bottom:900.210450px;}
.ya_c00035{bottom:934.590450px;}
.y9_c00035{bottom:969.060450px;}
.y8_c00035{bottom:1003.440450px;}
.y7_c00035{bottom:1037.910450px;}
.y6_c00035{bottom:1072.290450px;}
.y5_c00035{bottom:1106.760450px;}
.y4_c00035{bottom:1141.140450px;}
.y2_c00035{bottom:1173.810450px;}
.y1_c00035{bottom:1196.850450px;}
.h1_c00035{height:50.315273px;}
.h4_c00035{height:60.257812px;}
.h2_c00035{height:70.664062px;}
.h3_c00035{height:72.160313px;}
.h0_c00035{height:1263.000000px;}
.w1_c00035{width:892.500000px;}
.w0_c00035{width:892.830000px;}
.x0_c00035{left:0.000000px;}
.x2_c00035{left:127.620000px;}
.x3_c00035{left:180.810000px;}
.x1_c00035{left:689.310000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.v1_c00035{vertical-align:14.080000pt;}
.ls6_c00035{letter-spacing:-0.134400pt;}
.ls4_c00035{letter-spacing:-0.032064pt;}
.lsa_c00035{letter-spacing:-0.032000pt;}
.lsb_c00035{letter-spacing:-0.025600pt;}
.ls9_c00035{letter-spacing:-0.019200pt;}
.ls7_c00035{letter-spacing:-0.012800pt;}
.ls8_c00035{letter-spacing:-0.006400pt;}
.ls5_c00035{letter-spacing:0.000000pt;}
.ls2_c00035{letter-spacing:0.006400pt;}
.ls1_c00035{letter-spacing:0.012800pt;}
.ls3_c00035{letter-spacing:0.025600pt;}
.lsc_c00035{letter-spacing:0.038400pt;}
.ls0_c00035{letter-spacing:1090.880000pt;}
.ws1d_c00035{word-spacing:-0.006400pt;}
.ws1_c00035{word-spacing:0.000000pt;}
.ws12_c00035{word-spacing:0.006400pt;}
.ws11_c00035{word-spacing:0.051200pt;}
.ws13_c00035{word-spacing:0.076800pt;}
.ws0_c00035{word-spacing:0.112224pt;}
.ws10_c00035{word-spacing:0.345600pt;}
.ws15_c00035{word-spacing:0.652800pt;}
.ws28_c00035{word-spacing:0.665600pt;}
.wse_c00035{word-spacing:1.267200pt;}
.wsd_c00035{word-spacing:1.312000pt;}
.ws3_c00035{word-spacing:1.600000pt;}
.ws8_c00035{word-spacing:1.606400pt;}
.ws2_c00035{word-spacing:1.632000pt;}
.ws17_c00035{word-spacing:2.227200pt;}
.ws1c_c00035{word-spacing:2.240000pt;}
.ws16_c00035{word-spacing:2.259200pt;}
.wsb_c00035{word-spacing:2.560000pt;}
.wsa_c00035{word-spacing:2.566400pt;}
.ws9_c00035{word-spacing:2.880000pt;}
.ws1b_c00035{word-spacing:2.892800pt;}
.ws2a_c00035{word-spacing:3.206400pt;}
.ws29_c00035{word-spacing:3.257600pt;}
.ws27_c00035{word-spacing:3.520000pt;}
.ws26_c00035{word-spacing:3.558400pt;}
.ws5_c00035{word-spacing:4.160000pt;}
.ws14_c00035{word-spacing:4.172800pt;}
.ws4_c00035{word-spacing:4.185600pt;}
.ws24_c00035{word-spacing:4.236800pt;}
.ws23_c00035{word-spacing:4.249600pt;}
.ws6_c00035{word-spacing:4.307200pt;}
.ws21_c00035{word-spacing:4.812800pt;}
.ws20_c00035{word-spacing:4.921600pt;}
.ws2b_c00035{word-spacing:5.120000pt;}
.ws2c_c00035{word-spacing:5.401600pt;}
.ws2d_c00035{word-spacing:5.440000pt;}
.wsc_c00035{word-spacing:5.484800pt;}
.ws1e_c00035{word-spacing:7.673600pt;}
.ws7_c00035{word-spacing:7.692800pt;}
.ws1f_c00035{word-spacing:7.724800pt;}
.ws25_c00035{word-spacing:12.480000pt;}
.ws19_c00035{word-spacing:19.449600pt;}
.ws1a_c00035{word-spacing:19.532800pt;}
.ws18_c00035{word-spacing:20.147200pt;}
.ws22_c00035{word-spacing:23.692800pt;}
.wsf_c00035{word-spacing:27.846400pt;}
._0_c00035{width:1.075200pt;}
.fs2_c00035{font-size:48.000000pt;}
.fs0_c00035{font-size:53.440000pt;}
.fs1_c00035{font-size:64.000000pt;}
.y0_c00035{bottom:0.000000pt;}
.y3_c00035{bottom:51.067067pt;}
.y21_c00035{bottom:118.987067pt;}
.y20_c00035{bottom:149.547067pt;}
.y1f_c00035{bottom:180.187067pt;}
.y1e_c00035{bottom:210.747067pt;}
.y1d_c00035{bottom:241.387067pt;}
.y1c_c00035{bottom:271.947067pt;}
.y1b_c00035{bottom:302.587067pt;}
.y1a_c00035{bottom:333.147067pt;}
.y19_c00035{bottom:363.787067pt;}
.y18_c00035{bottom:394.347067pt;}
.y17_c00035{bottom:424.987067pt;}
.y16_c00035{bottom:455.547067pt;}
.y15_c00035{bottom:486.187067pt;}
.y14_c00035{bottom:516.747067pt;}
.y13_c00035{bottom:547.387067pt;}
.y12_c00035{bottom:577.947067pt;}
.y11_c00035{bottom:608.587067pt;}
.y10_c00035{bottom:639.147067pt;}
.yf_c00035{bottom:669.787067pt;}
.ye_c00035{bottom:708.347067pt;}
.yd_c00035{bottom:738.987067pt;}
.yc_c00035{bottom:769.547067pt;}
.yb_c00035{bottom:800.187067pt;}
.ya_c00035{bottom:830.747067pt;}
.y9_c00035{bottom:861.387067pt;}
.y8_c00035{bottom:891.947067pt;}
.y7_c00035{bottom:922.587067pt;}
.y6_c00035{bottom:953.147067pt;}
.y5_c00035{bottom:983.787067pt;}
.y4_c00035{bottom:1014.347067pt;}
.y2_c00035{bottom:1043.387067pt;}
.y1_c00035{bottom:1063.867067pt;}
.h1_c00035{height:44.724687pt;}
.h4_c00035{height:53.562500pt;}
.h2_c00035{height:62.812500pt;}
.h3_c00035{height:64.142500pt;}
.h0_c00035{height:1122.666667pt;}
.w1_c00035{width:793.333333pt;}
.w0_c00035{width:793.626667pt;}
.x0_c00035{left:0.000000pt;}
.x2_c00035{left:113.440000pt;}
.x3_c00035{left:160.720000pt;}
.x1_c00035{left:612.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_c00036 {
    display:none;
  }
  .loading-indicator_c00036.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00036 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00036 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00036" -> "#page-container .classname_c00036")
 */
.pf_c00036 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00036 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00036 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00036 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00036 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00036 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00036 {overflow:visible;}
  }
}
.c_c00036 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00036 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00036:after { /* webkit #35443 */
  content: '';
}
.t_c00036:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00036 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00036 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00036 { /* info for Javascript */
  display:none;
}
.l_c00036 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00036 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00036 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00036:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00036;src:url('chunks/assets/font_4d13842194b80a8254211384.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00036;src:url('chunks/assets/font_a6fa945c7a2365b7aef22bfa.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00036;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.v1_c00036{vertical-align:15.840000px;}
.ls6_c00036{letter-spacing:-0.151200px;}
.lse_c00036{letter-spacing:-0.050400px;}
.lsa_c00036{letter-spacing:-0.028800px;}
.ls8_c00036{letter-spacing:-0.021600px;}
.ls7_c00036{letter-spacing:-0.014400px;}
.lsb_c00036{letter-spacing:-0.007200px;}
.ls5_c00036{letter-spacing:0.000000px;}
.ls2_c00036{letter-spacing:0.007200px;}
.ls9_c00036{letter-spacing:0.014400px;}
.ls3_c00036{letter-spacing:0.021600px;}
.ls4_c00036{letter-spacing:0.028800px;}
.lsc_c00036{letter-spacing:0.036000px;}
.ls0_c00036{letter-spacing:0.048096px;}
.lsd_c00036{letter-spacing:15.480000px;}
.ls1_c00036{letter-spacing:1227.240000px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00036{word-spacing:-0.100800px;}
.ws1_c00036{word-spacing:0.000000px;}
.ws8_c00036{word-spacing:0.014400px;}
.ws18_c00036{word-spacing:0.021600px;}
.ws0_c00036{word-spacing:0.042084px;}
.ws17_c00036{word-spacing:0.108000px;}
.ws20_c00036{word-spacing:0.324000px;}
.ws1f_c00036{word-spacing:0.381600px;}
.ws2_c00036{word-spacing:0.734400px;}
.ws2a_c00036{word-spacing:1.080000px;}
.ws7_c00036{word-spacing:1.101600px;}
.ws26_c00036{word-spacing:1.137600px;}
.ws1d_c00036{word-spacing:2.541600px;}
.ws11_c00036{word-spacing:3.218400px;}
.ws3_c00036{word-spacing:3.254400px;}
.ws4_c00036{word-spacing:3.290400px;}
.ws12_c00036{word-spacing:3.362400px;}
.ws6_c00036{word-spacing:4.392000px;}
.ws16_c00036{word-spacing:4.701600px;}
.wsd_c00036{word-spacing:5.342400px;}
.wsc_c00036{word-spacing:5.428800px;}
.wsf_c00036{word-spacing:5.464800px;}
.ws10_c00036{word-spacing:5.500800px;}
.wsa_c00036{word-spacing:6.148800px;}
.ws28_c00036{word-spacing:6.825600px;}
.ws27_c00036{word-spacing:6.912000px;}
.ws29_c00036{word-spacing:7.920000px;}
.wsb_c00036{word-spacing:11.181600px;}
.ws1a_c00036{word-spacing:11.476800px;}
.ws19_c00036{word-spacing:11.520000px;}
.ws5_c00036{word-spacing:11.541600px;}
.ws15_c00036{word-spacing:13.680000px;}
.ws25_c00036{word-spacing:15.494400px;}
.ws14_c00036{word-spacing:16.891200px;}
.ws13_c00036{word-spacing:16.977600px;}
.ws21_c00036{word-spacing:18.712800px;}
.ws22_c00036{word-spacing:18.784800px;}
.wse_c00036{word-spacing:20.872800px;}
.ws1e_c00036{word-spacing:20.887200px;}
.ws24_c00036{word-spacing:21.967200px;}
.ws23_c00036{word-spacing:21.981600px;}
.ws1b_c00036{word-spacing:24.847200px;}
.ws1c_c00036{word-spacing:24.854400px;}
._2_c00036{margin-left:-15.638400px;}
._3_c00036{margin-left:-14.544000px;}
._0_c00036{margin-left:-1.322640px;}
._1_c00036{width:1.080000px;}
.fc0_c00036{color:rgb(0,0,0);}
.fs1_c00036{font-size:54.000000px;}
.fs0_c00036{font-size:60.120000px;}
.fs2_c00036{font-size:72.000000px;}
.y0_c00036{bottom:0.000000px;}
.y3_c00036{bottom:57.450450px;}
.y20_c00036{bottom:159.240450px;}
.y1f_c00036{bottom:193.710450px;}
.y1e_c00036{bottom:228.090450px;}
.y1d_c00036{bottom:262.560450px;}
.y1c_c00036{bottom:296.940450px;}
.y1b_c00036{bottom:331.410450px;}
.y1a_c00036{bottom:365.790450px;}
.y19_c00036{bottom:400.260450px;}
.y18_c00036{bottom:434.640450px;}
.y17_c00036{bottom:478.110450px;}
.y16_c00036{bottom:512.490450px;}
.y15_c00036{bottom:546.960450px;}
.y14_c00036{bottom:581.340450px;}
.y13_c00036{bottom:615.810450px;}
.y12_c00036{bottom:650.190450px;}
.y11_c00036{bottom:684.660450px;}
.y10_c00036{bottom:719.040450px;}
.yf_c00036{bottom:753.510450px;}
.ye_c00036{bottom:787.890450px;}
.yd_c00036{bottom:822.360450px;}
.yc_c00036{bottom:856.740450px;}
.yb_c00036{bottom:891.210450px;}
.ya_c00036{bottom:925.590450px;}
.y9_c00036{bottom:969.060450px;}
.y8_c00036{bottom:1003.440450px;}
.y7_c00036{bottom:1037.910450px;}
.y6_c00036{bottom:1072.290450px;}
.y5_c00036{bottom:1106.760450px;}
.y4_c00036{bottom:1141.140450px;}
.y2_c00036{bottom:1177.860450px;}
.y1_c00036{bottom:1196.850450px;}
.h1_c00036{height:50.315273px;}
.h2_c00036{height:56.320312px;}
.h4_c00036{height:60.257812px;}
.h3_c00036{height:72.160312px;}
.h0_c00036{height:1263.000000px;}
.w1_c00036{width:892.500000px;}
.w0_c00036{width:892.830000px;}
.x0_c00036{left:0.000000px;}
.x1_c00036{left:127.620000px;}
.x2_c00036{left:180.810000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.v1_c00036{vertical-align:14.080000pt;}
.ls6_c00036{letter-spacing:-0.134400pt;}
.lse_c00036{letter-spacing:-0.044800pt;}
.lsa_c00036{letter-spacing:-0.025600pt;}
.ls8_c00036{letter-spacing:-0.019200pt;}
.ls7_c00036{letter-spacing:-0.012800pt;}
.lsb_c00036{letter-spacing:-0.006400pt;}
.ls5_c00036{letter-spacing:0.000000pt;}
.ls2_c00036{letter-spacing:0.006400pt;}
.ls9_c00036{letter-spacing:0.012800pt;}
.ls3_c00036{letter-spacing:0.019200pt;}
.ls4_c00036{letter-spacing:0.025600pt;}
.lsc_c00036{letter-spacing:0.032000pt;}
.ls0_c00036{letter-spacing:0.042752pt;}
.lsd_c00036{letter-spacing:13.760000pt;}
.ls1_c00036{letter-spacing:1090.880000pt;}
.ws9_c00036{word-spacing:-0.089600pt;}
.ws1_c00036{word-spacing:0.000000pt;}
.ws8_c00036{word-spacing:0.012800pt;}
.ws18_c00036{word-spacing:0.019200pt;}
.ws0_c00036{word-spacing:0.037408pt;}
.ws17_c00036{word-spacing:0.096000pt;}
.ws20_c00036{word-spacing:0.288000pt;}
.ws1f_c00036{word-spacing:0.339200pt;}
.ws2_c00036{word-spacing:0.652800pt;}
.ws2a_c00036{word-spacing:0.960000pt;}
.ws7_c00036{word-spacing:0.979200pt;}
.ws26_c00036{word-spacing:1.011200pt;}
.ws1d_c00036{word-spacing:2.259200pt;}
.ws11_c00036{word-spacing:2.860800pt;}
.ws3_c00036{word-spacing:2.892800pt;}
.ws4_c00036{word-spacing:2.924800pt;}
.ws12_c00036{word-spacing:2.988800pt;}
.ws6_c00036{word-spacing:3.904000pt;}
.ws16_c00036{word-spacing:4.179200pt;}
.wsd_c00036{word-spacing:4.748800pt;}
.wsc_c00036{word-spacing:4.825600pt;}
.wsf_c00036{word-spacing:4.857600pt;}
.ws10_c00036{word-spacing:4.889600pt;}
.wsa_c00036{word-spacing:5.465600pt;}
.ws28_c00036{word-spacing:6.067200pt;}
.ws27_c00036{word-spacing:6.144000pt;}
.ws29_c00036{word-spacing:7.040000pt;}
.wsb_c00036{word-spacing:9.939200pt;}
.ws1a_c00036{word-spacing:10.201600pt;}
.ws19_c00036{word-spacing:10.240000pt;}
.ws5_c00036{word-spacing:10.259200pt;}
.ws15_c00036{word-spacing:12.160000pt;}
.ws25_c00036{word-spacing:13.772800pt;}
.ws14_c00036{word-spacing:15.014400pt;}
.ws13_c00036{word-spacing:15.091200pt;}
.ws21_c00036{word-spacing:16.633600pt;}
.ws22_c00036{word-spacing:16.697600pt;}
.wse_c00036{word-spacing:18.553600pt;}
.ws1e_c00036{word-spacing:18.566400pt;}
.ws24_c00036{word-spacing:19.526400pt;}
.ws23_c00036{word-spacing:19.539200pt;}
.ws1b_c00036{word-spacing:22.086400pt;}
.ws1c_c00036{word-spacing:22.092800pt;}
._2_c00036{margin-left:-13.900800pt;}
._3_c00036{margin-left:-12.928000pt;}
._0_c00036{margin-left:-1.175680pt;}
._1_c00036{width:0.960000pt;}
.fs1_c00036{font-size:48.000000pt;}
.fs0_c00036{font-size:53.440000pt;}
.fs2_c00036{font-size:64.000000pt;}
.y0_c00036{bottom:0.000000pt;}
.y3_c00036{bottom:51.067067pt;}
.y20_c00036{bottom:141.547067pt;}
.y1f_c00036{bottom:172.187067pt;}
.y1e_c00036{bottom:202.747067pt;}
.y1d_c00036{bottom:233.387067pt;}
.y1c_c00036{bottom:263.947067pt;}
.y1b_c00036{bottom:294.587067pt;}
.y1a_c00036{bottom:325.147067pt;}
.y19_c00036{bottom:355.787067pt;}
.y18_c00036{bottom:386.347067pt;}
.y17_c00036{bottom:424.987067pt;}
.y16_c00036{bottom:455.547067pt;}
.y15_c00036{bottom:486.187067pt;}
.y14_c00036{bottom:516.747067pt;}
.y13_c00036{bottom:547.387067pt;}
.y12_c00036{bottom:577.947067pt;}
.y11_c00036{bottom:608.587067pt;}
.y10_c00036{bottom:639.147067pt;}
.yf_c00036{bottom:669.787067pt;}
.ye_c00036{bottom:700.347067pt;}
.yd_c00036{bottom:730.987067pt;}
.yc_c00036{bottom:761.547067pt;}
.yb_c00036{bottom:792.187067pt;}
.ya_c00036{bottom:822.747067pt;}
.y9_c00036{bottom:861.387067pt;}
.y8_c00036{bottom:891.947067pt;}
.y7_c00036{bottom:922.587067pt;}
.y6_c00036{bottom:953.147067pt;}
.y5_c00036{bottom:983.787067pt;}
.y4_c00036{bottom:1014.347067pt;}
.y2_c00036{bottom:1046.987067pt;}
.y1_c00036{bottom:1063.867067pt;}
.h1_c00036{height:44.724687pt;}
.h2_c00036{height:50.062500pt;}
.h4_c00036{height:53.562500pt;}
.h3_c00036{height:64.142500pt;}
.h0_c00036{height:1122.666667pt;}
.w1_c00036{width:793.333333pt;}
.w0_c00036{width:793.626667pt;}
.x0_c00036{left:0.000000pt;}
.x1_c00036{left:113.440000pt;}
.x2_c00036{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_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_f21f65479e2fc4046288ecae.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.100098;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00037;src:url('chunks/assets/font_6b7391eec6fa8e79477571fb.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;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_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;}
.v1_c00037{vertical-align:15.840000px;}
.ls8_c00037{letter-spacing:-0.151200px;}
.ls6_c00037{letter-spacing:-0.036072px;}
.lse_c00037{letter-spacing:-0.036000px;}
.lsb_c00037{letter-spacing:-0.028800px;}
.lsa_c00037{letter-spacing:-0.021600px;}
.lsc_c00037{letter-spacing:-0.014400px;}
.ls9_c00037{letter-spacing:-0.007200px;}
.ls7_c00037{letter-spacing:0.000000px;}
.ls1_c00037{letter-spacing:0.007200px;}
.ls2_c00037{letter-spacing:0.014400px;}
.ls4_c00037{letter-spacing:0.021600px;}
.lsd_c00037{letter-spacing:0.028800px;}
.ls3_c00037{letter-spacing:0.036000px;}
.ls5_c00037{letter-spacing:0.043200px;}
.ls0_c00037{letter-spacing:1227.240000px;}
.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;}
}
.ws1e_c00037{word-spacing:-0.021600px;}
.ws1_c00037{word-spacing:0.000000px;}
.ws5_c00037{word-spacing:0.007200px;}
.ws1c_c00037{word-spacing:0.043200px;}
.ws4_c00037{word-spacing:0.057600px;}
.ws2d_c00037{word-spacing:0.079200px;}
.ws1d_c00037{word-spacing:0.115200px;}
.ws0_c00037{word-spacing:0.126252px;}
.ws2f_c00037{word-spacing:0.360000px;}
.ws31_c00037{word-spacing:0.381600px;}
.ws30_c00037{word-spacing:0.388800px;}
.ws2e_c00037{word-spacing:0.511200px;}
.wsb_c00037{word-spacing:1.764000px;}
.wsa_c00037{word-spacing:1.843200px;}
.ws23_c00037{word-spacing:3.247200px;}
.ws24_c00037{word-spacing:3.924000px;}
.ws16_c00037{word-spacing:3.996000px;}
.ws18_c00037{word-spacing:4.687200px;}
.ws17_c00037{word-spacing:4.788000px;}
.ws2c_c00037{word-spacing:5.061600px;}
.ws12_c00037{word-spacing:5.385600px;}
.ws8_c00037{word-spacing:5.436000px;}
.ws9_c00037{word-spacing:5.464800px;}
.ws13_c00037{word-spacing:5.479200px;}
.ws14_c00037{word-spacing:5.486400px;}
.ws22_c00037{word-spacing:5.659200px;}
.ws7_c00037{word-spacing:5.702400px;}
.ws6_c00037{word-spacing:5.781600px;}
.ws2b_c00037{word-spacing:6.120000px;}
.ws2a_c00037{word-spacing:6.134400px;}
.ws11_c00037{word-spacing:7.178400px;}
.ws10_c00037{word-spacing:7.185600px;}
.wse_c00037{word-spacing:8.589600px;}
.wsf_c00037{word-spacing:8.596800px;}
.ws15_c00037{word-spacing:9.374400px;}
.wsc_c00037{word-spacing:9.777600px;}
.wsd_c00037{word-spacing:9.799200px;}
.ws32_c00037{word-spacing:10.036800px;}
.ws29_c00037{word-spacing:10.072800px;}
.ws33_c00037{word-spacing:10.080000px;}
.ws28_c00037{word-spacing:10.152000px;}
.ws1f_c00037{word-spacing:10.454400px;}
.ws1b_c00037{word-spacing:11.541600px;}
.ws25_c00037{word-spacing:11.894400px;}
.ws27_c00037{word-spacing:14.407200px;}
.ws26_c00037{word-spacing:14.414400px;}
.ws19_c00037{word-spacing:18.007200px;}
.ws1a_c00037{word-spacing:18.014400px;}
.ws2_c00037{word-spacing:18.590400px;}
.ws3_c00037{word-spacing:18.727200px;}
.ws21_c00037{word-spacing:27.676800px;}
.ws20_c00037{word-spacing:27.878400px;}
._0_c00037{width:1.152000px;}
.fc0_c00037{color:rgb(0,0,0);}
.fs2_c00037{font-size:54.000000px;}
.fs0_c00037{font-size:60.120000px;}
.fs1_c00037{font-size:72.000000px;}
.y0_c00037{bottom:0.000000px;}
.y3_c00037{bottom:57.450450px;}
.y21_c00037{bottom:115.860450px;}
.y20_c00037{bottom:150.240450px;}
.y1f_c00037{bottom:184.710450px;}
.y1e_c00037{bottom:228.090450px;}
.y1d_c00037{bottom:262.560450px;}
.y1c_c00037{bottom:296.940450px;}
.y1b_c00037{bottom:331.410450px;}
.y1a_c00037{bottom:365.790450px;}
.y19_c00037{bottom:400.260450px;}
.y18_c00037{bottom:434.640450px;}
.y17_c00037{bottom:469.110450px;}
.y16_c00037{bottom:503.490450px;}
.y15_c00037{bottom:537.960450px;}
.y14_c00037{bottom:572.340450px;}
.y13_c00037{bottom:606.810450px;}
.y12_c00037{bottom:641.190450px;}
.y11_c00037{bottom:684.660450px;}
.y10_c00037{bottom:719.040450px;}
.yf_c00037{bottom:753.510450px;}
.ye_c00037{bottom:787.890450px;}
.yd_c00037{bottom:822.360450px;}
.yc_c00037{bottom:856.740450px;}
.yb_c00037{bottom:891.210450px;}
.ya_c00037{bottom:925.590450px;}
.y9_c00037{bottom:960.060450px;}
.y8_c00037{bottom:994.440450px;}
.y7_c00037{bottom:1028.910450px;}
.y6_c00037{bottom:1063.290450px;}
.y5_c00037{bottom:1106.760450px;}
.y4_c00037{bottom:1141.140450px;}
.y2_c00037{bottom:1173.810450px;}
.y1_c00037{bottom:1196.850450px;}
.h1_c00037{height:50.315273px;}
.h4_c00037{height:60.257812px;}
.h2_c00037{height:70.664062px;}
.h3_c00037{height:72.160313px;}
.h0_c00037{height:1263.000000px;}
.w1_c00037{width:892.500000px;}
.w0_c00037{width:892.830000px;}
.x0_c00037{left:0.000000px;}
.x2_c00037{left:127.620000px;}
.x3_c00037{left:180.810000px;}
.x1_c00037{left:689.310000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.v1_c00037{vertical-align:14.080000pt;}
.ls8_c00037{letter-spacing:-0.134400pt;}
.ls6_c00037{letter-spacing:-0.032064pt;}
.lse_c00037{letter-spacing:-0.032000pt;}
.lsb_c00037{letter-spacing:-0.025600pt;}
.lsa_c00037{letter-spacing:-0.019200pt;}
.lsc_c00037{letter-spacing:-0.012800pt;}
.ls9_c00037{letter-spacing:-0.006400pt;}
.ls7_c00037{letter-spacing:0.000000pt;}
.ls1_c00037{letter-spacing:0.006400pt;}
.ls2_c00037{letter-spacing:0.012800pt;}
.ls4_c00037{letter-spacing:0.019200pt;}
.lsd_c00037{letter-spacing:0.025600pt;}
.ls3_c00037{letter-spacing:0.032000pt;}
.ls5_c00037{letter-spacing:0.038400pt;}
.ls0_c00037{letter-spacing:1090.880000pt;}
.ws1e_c00037{word-spacing:-0.019200pt;}
.ws1_c00037{word-spacing:0.000000pt;}
.ws5_c00037{word-spacing:0.006400pt;}
.ws1c_c00037{word-spacing:0.038400pt;}
.ws4_c00037{word-spacing:0.051200pt;}
.ws2d_c00037{word-spacing:0.070400pt;}
.ws1d_c00037{word-spacing:0.102400pt;}
.ws0_c00037{word-spacing:0.112224pt;}
.ws2f_c00037{word-spacing:0.320000pt;}
.ws31_c00037{word-spacing:0.339200pt;}
.ws30_c00037{word-spacing:0.345600pt;}
.ws2e_c00037{word-spacing:0.454400pt;}
.wsb_c00037{word-spacing:1.568000pt;}
.wsa_c00037{word-spacing:1.638400pt;}
.ws23_c00037{word-spacing:2.886400pt;}
.ws24_c00037{word-spacing:3.488000pt;}
.ws16_c00037{word-spacing:3.552000pt;}
.ws18_c00037{word-spacing:4.166400pt;}
.ws17_c00037{word-spacing:4.256000pt;}
.ws2c_c00037{word-spacing:4.499200pt;}
.ws12_c00037{word-spacing:4.787200pt;}
.ws8_c00037{word-spacing:4.832000pt;}
.ws9_c00037{word-spacing:4.857600pt;}
.ws13_c00037{word-spacing:4.870400pt;}
.ws14_c00037{word-spacing:4.876800pt;}
.ws22_c00037{word-spacing:5.030400pt;}
.ws7_c00037{word-spacing:5.068800pt;}
.ws6_c00037{word-spacing:5.139200pt;}
.ws2b_c00037{word-spacing:5.440000pt;}
.ws2a_c00037{word-spacing:5.452800pt;}
.ws11_c00037{word-spacing:6.380800pt;}
.ws10_c00037{word-spacing:6.387200pt;}
.wse_c00037{word-spacing:7.635200pt;}
.wsf_c00037{word-spacing:7.641600pt;}
.ws15_c00037{word-spacing:8.332800pt;}
.wsc_c00037{word-spacing:8.691200pt;}
.wsd_c00037{word-spacing:8.710400pt;}
.ws32_c00037{word-spacing:8.921600pt;}
.ws29_c00037{word-spacing:8.953600pt;}
.ws33_c00037{word-spacing:8.960000pt;}
.ws28_c00037{word-spacing:9.024000pt;}
.ws1f_c00037{word-spacing:9.292800pt;}
.ws1b_c00037{word-spacing:10.259200pt;}
.ws25_c00037{word-spacing:10.572800pt;}
.ws27_c00037{word-spacing:12.806400pt;}
.ws26_c00037{word-spacing:12.812800pt;}
.ws19_c00037{word-spacing:16.006400pt;}
.ws1a_c00037{word-spacing:16.012800pt;}
.ws2_c00037{word-spacing:16.524800pt;}
.ws3_c00037{word-spacing:16.646400pt;}
.ws21_c00037{word-spacing:24.601600pt;}
.ws20_c00037{word-spacing:24.780800pt;}
._0_c00037{width:1.024000pt;}
.fs2_c00037{font-size:48.000000pt;}
.fs0_c00037{font-size:53.440000pt;}
.fs1_c00037{font-size:64.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.y3_c00037{bottom:51.067067pt;}
.y21_c00037{bottom:102.987067pt;}
.y20_c00037{bottom:133.547067pt;}
.y1f_c00037{bottom:164.187067pt;}
.y1e_c00037{bottom:202.747067pt;}
.y1d_c00037{bottom:233.387067pt;}
.y1c_c00037{bottom:263.947067pt;}
.y1b_c00037{bottom:294.587067pt;}
.y1a_c00037{bottom:325.147067pt;}
.y19_c00037{bottom:355.787067pt;}
.y18_c00037{bottom:386.347067pt;}
.y17_c00037{bottom:416.987067pt;}
.y16_c00037{bottom:447.547067pt;}
.y15_c00037{bottom:478.187067pt;}
.y14_c00037{bottom:508.747067pt;}
.y13_c00037{bottom:539.387067pt;}
.y12_c00037{bottom:569.947067pt;}
.y11_c00037{bottom:608.587067pt;}
.y10_c00037{bottom:639.147067pt;}
.yf_c00037{bottom:669.787067pt;}
.ye_c00037{bottom:700.347067pt;}
.yd_c00037{bottom:730.987067pt;}
.yc_c00037{bottom:761.547067pt;}
.yb_c00037{bottom:792.187067pt;}
.ya_c00037{bottom:822.747067pt;}
.y9_c00037{bottom:853.387067pt;}
.y8_c00037{bottom:883.947067pt;}
.y7_c00037{bottom:914.587067pt;}
.y6_c00037{bottom:945.147067pt;}
.y5_c00037{bottom:983.787067pt;}
.y4_c00037{bottom:1014.347067pt;}
.y2_c00037{bottom:1043.387067pt;}
.y1_c00037{bottom:1063.867067pt;}
.h1_c00037{height:44.724687pt;}
.h4_c00037{height:53.562500pt;}
.h2_c00037{height:62.812500pt;}
.h3_c00037{height:64.142500pt;}
.h0_c00037{height:1122.666667pt;}
.w1_c00037{width:793.333333pt;}
.w0_c00037{width:793.626667pt;}
.x0_c00037{left:0.000000pt;}
.x2_c00037{left:113.440000pt;}
.x3_c00037{left:160.720000pt;}
.x1_c00037{left:612.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_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_539c868f8d1ab56b03899ed7.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.100098;font-style:normal;font-weight:normal;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_9b25916c93c020ec4ee6fd57.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;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_c00038;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00038{vertical-align:15.840000px;}
.ls6_c00038{letter-spacing:-0.151200px;}
.lsc_c00038{letter-spacing:-0.043200px;}
.ls7_c00038{letter-spacing:-0.028800px;}
.lsb_c00038{letter-spacing:-0.021600px;}
.ls9_c00038{letter-spacing:-0.014400px;}
.lsa_c00038{letter-spacing:-0.007200px;}
.ls5_c00038{letter-spacing:0.000000px;}
.ls3_c00038{letter-spacing:0.007200px;}
.ls2_c00038{letter-spacing:0.014400px;}
.ls8_c00038{letter-spacing:0.021600px;}
.ls4_c00038{letter-spacing:0.028800px;}
.ls0_c00038{letter-spacing:0.048096px;}
.lsd_c00038{letter-spacing:0.064800px;}
.ls1_c00038{letter-spacing:1227.240000px;}
.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;}
}
.ws2e_c00038{word-spacing:-0.064800px;}
.ws25_c00038{word-spacing:-0.007200px;}
.ws1_c00038{word-spacing:0.000000px;}
.ws0_c00038{word-spacing:0.042084px;}
.wsc_c00038{word-spacing:0.057600px;}
.wsd_c00038{word-spacing:0.079200px;}
.ws15_c00038{word-spacing:0.403200px;}
.ws14_c00038{word-spacing:0.446400px;}
.ws21_c00038{word-spacing:0.669600px;}
.ws20_c00038{word-spacing:0.734400px;}
.ws27_c00038{word-spacing:1.483200px;}
.ws28_c00038{word-spacing:1.512000px;}
.ws16_c00038{word-spacing:3.600000px;}
.wsb_c00038{word-spacing:3.636000px;}
.ws17_c00038{word-spacing:3.657600px;}
.ws1f_c00038{word-spacing:5.774400px;}
.ws6_c00038{word-spacing:6.048000px;}
.ws5_c00038{word-spacing:6.084000px;}
.ws18_c00038{word-spacing:6.465600px;}
.ws19_c00038{word-spacing:6.516000px;}
.ws2c_c00038{word-spacing:7.437600px;}
.ws2d_c00038{word-spacing:7.560000px;}
.ws2_c00038{word-spacing:7.588800px;}
.ws24_c00038{word-spacing:7.912800px;}
.ws23_c00038{word-spacing:7.920000px;}
.ws2b_c00038{word-spacing:7.927200px;}
.ws26_c00038{word-spacing:8.301600px;}
.ws8_c00038{word-spacing:8.359200px;}
.ws7_c00038{word-spacing:8.366400px;}
.ws10_c00038{word-spacing:9.014400px;}
.wsf_c00038{word-spacing:9.086400px;}
.ws12_c00038{word-spacing:14.032800px;}
.ws13_c00038{word-spacing:14.169600px;}
.ws3_c00038{word-spacing:16.178400px;}
.ws4_c00038{word-spacing:16.185600px;}
.ws11_c00038{word-spacing:19.080000px;}
.ws9_c00038{word-spacing:20.152800px;}
.wsa_c00038{word-spacing:20.210400px;}
.ws1c_c00038{word-spacing:20.527200px;}
.ws1d_c00038{word-spacing:20.584800px;}
.ws1b_c00038{word-spacing:22.752000px;}
.ws1a_c00038{word-spacing:22.780800px;}
.ws22_c00038{word-spacing:23.061600px;}
.wse_c00038{word-spacing:23.414400px;}
.ws1e_c00038{word-spacing:27.014400px;}
.ws2a_c00038{word-spacing:34.869600px;}
.ws29_c00038{word-spacing:34.948800px;}
._0_c00038{margin-left:-1.322640px;}
._1_c00038{width:1.080000px;}
.fc0_c00038{color:rgb(0,0,0);}
.fs1_c00038{font-size:54.000000px;}
.fs0_c00038{font-size:60.120000px;}
.fs2_c00038{font-size:72.000000px;}
.y0_c00038{bottom:0.000000px;}
.y3_c00038{bottom:57.450450px;}
.y20_c00038{bottom:150.240450px;}
.y1f_c00038{bottom:184.710450px;}
.y1e_c00038{bottom:219.090450px;}
.y1d_c00038{bottom:253.560450px;}
.y1c_c00038{bottom:287.940450px;}
.y1b_c00038{bottom:322.410450px;}
.y1a_c00038{bottom:365.790450px;}
.y19_c00038{bottom:400.260450px;}
.y18_c00038{bottom:434.640450px;}
.y17_c00038{bottom:469.110450px;}
.y16_c00038{bottom:503.490450px;}
.y15_c00038{bottom:537.960450px;}
.y14_c00038{bottom:572.340450px;}
.y13_c00038{bottom:606.810450px;}
.y12_c00038{bottom:650.190450px;}
.y11_c00038{bottom:684.660450px;}
.y10_c00038{bottom:719.040450px;}
.yf_c00038{bottom:753.510450px;}
.ye_c00038{bottom:787.890450px;}
.yd_c00038{bottom:822.360450px;}
.yc_c00038{bottom:856.740450px;}
.yb_c00038{bottom:891.210450px;}
.ya_c00038{bottom:934.590450px;}
.y9_c00038{bottom:969.060450px;}
.y8_c00038{bottom:1003.440450px;}
.y7_c00038{bottom:1037.910450px;}
.y6_c00038{bottom:1072.290450px;}
.y5_c00038{bottom:1106.760450px;}
.y4_c00038{bottom:1141.140450px;}
.y2_c00038{bottom:1177.860450px;}
.y1_c00038{bottom:1196.850450px;}
.h1_c00038{height:50.315273px;}
.h2_c00038{height:56.320312px;}
.h4_c00038{height:60.257812px;}
.h3_c00038{height:72.160312px;}
.h0_c00038{height:1263.000000px;}
.w1_c00038{width:892.500000px;}
.w0_c00038{width:892.830000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:127.620000px;}
.x2_c00038{left:180.810000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.v1_c00038{vertical-align:14.080000pt;}
.ls6_c00038{letter-spacing:-0.134400pt;}
.lsc_c00038{letter-spacing:-0.038400pt;}
.ls7_c00038{letter-spacing:-0.025600pt;}
.lsb_c00038{letter-spacing:-0.019200pt;}
.ls9_c00038{letter-spacing:-0.012800pt;}
.lsa_c00038{letter-spacing:-0.006400pt;}
.ls5_c00038{letter-spacing:0.000000pt;}
.ls3_c00038{letter-spacing:0.006400pt;}
.ls2_c00038{letter-spacing:0.012800pt;}
.ls8_c00038{letter-spacing:0.019200pt;}
.ls4_c00038{letter-spacing:0.025600pt;}
.ls0_c00038{letter-spacing:0.042752pt;}
.lsd_c00038{letter-spacing:0.057600pt;}
.ls1_c00038{letter-spacing:1090.880000pt;}
.ws2e_c00038{word-spacing:-0.057600pt;}
.ws25_c00038{word-spacing:-0.006400pt;}
.ws1_c00038{word-spacing:0.000000pt;}
.ws0_c00038{word-spacing:0.037408pt;}
.wsc_c00038{word-spacing:0.051200pt;}
.wsd_c00038{word-spacing:0.070400pt;}
.ws15_c00038{word-spacing:0.358400pt;}
.ws14_c00038{word-spacing:0.396800pt;}
.ws21_c00038{word-spacing:0.595200pt;}
.ws20_c00038{word-spacing:0.652800pt;}
.ws27_c00038{word-spacing:1.318400pt;}
.ws28_c00038{word-spacing:1.344000pt;}
.ws16_c00038{word-spacing:3.200000pt;}
.wsb_c00038{word-spacing:3.232000pt;}
.ws17_c00038{word-spacing:3.251200pt;}
.ws1f_c00038{word-spacing:5.132800pt;}
.ws6_c00038{word-spacing:5.376000pt;}
.ws5_c00038{word-spacing:5.408000pt;}
.ws18_c00038{word-spacing:5.747200pt;}
.ws19_c00038{word-spacing:5.792000pt;}
.ws2c_c00038{word-spacing:6.611200pt;}
.ws2d_c00038{word-spacing:6.720000pt;}
.ws2_c00038{word-spacing:6.745600pt;}
.ws24_c00038{word-spacing:7.033600pt;}
.ws23_c00038{word-spacing:7.040000pt;}
.ws2b_c00038{word-spacing:7.046400pt;}
.ws26_c00038{word-spacing:7.379200pt;}
.ws8_c00038{word-spacing:7.430400pt;}
.ws7_c00038{word-spacing:7.436800pt;}
.ws10_c00038{word-spacing:8.012800pt;}
.wsf_c00038{word-spacing:8.076800pt;}
.ws12_c00038{word-spacing:12.473600pt;}
.ws13_c00038{word-spacing:12.595200pt;}
.ws3_c00038{word-spacing:14.380800pt;}
.ws4_c00038{word-spacing:14.387200pt;}
.ws11_c00038{word-spacing:16.960000pt;}
.ws9_c00038{word-spacing:17.913600pt;}
.wsa_c00038{word-spacing:17.964800pt;}
.ws1c_c00038{word-spacing:18.246400pt;}
.ws1d_c00038{word-spacing:18.297600pt;}
.ws1b_c00038{word-spacing:20.224000pt;}
.ws1a_c00038{word-spacing:20.249600pt;}
.ws22_c00038{word-spacing:20.499200pt;}
.wse_c00038{word-spacing:20.812800pt;}
.ws1e_c00038{word-spacing:24.012800pt;}
.ws2a_c00038{word-spacing:30.995200pt;}
.ws29_c00038{word-spacing:31.065600pt;}
._0_c00038{margin-left:-1.175680pt;}
._1_c00038{width:0.960000pt;}
.fs1_c00038{font-size:48.000000pt;}
.fs0_c00038{font-size:53.440000pt;}
.fs2_c00038{font-size:64.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y3_c00038{bottom:51.067067pt;}
.y20_c00038{bottom:133.547067pt;}
.y1f_c00038{bottom:164.187067pt;}
.y1e_c00038{bottom:194.747067pt;}
.y1d_c00038{bottom:225.387067pt;}
.y1c_c00038{bottom:255.947067pt;}
.y1b_c00038{bottom:286.587067pt;}
.y1a_c00038{bottom:325.147067pt;}
.y19_c00038{bottom:355.787067pt;}
.y18_c00038{bottom:386.347067pt;}
.y17_c00038{bottom:416.987067pt;}
.y16_c00038{bottom:447.547067pt;}
.y15_c00038{bottom:478.187067pt;}
.y14_c00038{bottom:508.747067pt;}
.y13_c00038{bottom:539.387067pt;}
.y12_c00038{bottom:577.947067pt;}
.y11_c00038{bottom:608.587067pt;}
.y10_c00038{bottom:639.147067pt;}
.yf_c00038{bottom:669.787067pt;}
.ye_c00038{bottom:700.347067pt;}
.yd_c00038{bottom:730.987067pt;}
.yc_c00038{bottom:761.547067pt;}
.yb_c00038{bottom:792.187067pt;}
.ya_c00038{bottom:830.747067pt;}
.y9_c00038{bottom:861.387067pt;}
.y8_c00038{bottom:891.947067pt;}
.y7_c00038{bottom:922.587067pt;}
.y6_c00038{bottom:953.147067pt;}
.y5_c00038{bottom:983.787067pt;}
.y4_c00038{bottom:1014.347067pt;}
.y2_c00038{bottom:1046.987067pt;}
.y1_c00038{bottom:1063.867067pt;}
.h1_c00038{height:44.724687pt;}
.h2_c00038{height:50.062500pt;}
.h4_c00038{height:53.562500pt;}
.h3_c00038{height:64.142500pt;}
.h0_c00038{height:1122.666667pt;}
.w1_c00038{width:793.333333pt;}
.w0_c00038{width:793.626667pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:113.440000pt;}
.x2_c00038{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_c00039 {
    display:none;
  }
  .loading-indicator_c00039.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00039 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00039 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00039" -> "#page-container .classname_c00039")
 */
.pf_c00039 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00039 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00039 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00039 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00039 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00039 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00039 {overflow:visible;}
  }
}
.c_c00039 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00039 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00039:after { /* webkit #35443 */
  content: '';
}
.t_c00039:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00039 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00039 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00039 { /* info for Javascript */
  display:none;
}
.l_c00039 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00039 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00039 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00039:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00039;src:url('chunks/assets/font_fefc207c325f50b7f0bcd51e.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00039;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00039;src:url('chunks/assets/font_81ccaa0c5063da72eb4d5e98.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00039;src:url('chunks/assets/font_d59b3ef9148f4bf0a4b97201.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00039;src:url('chunks/assets/font_820dd5b15333a2fa5e62fe78.woff2')format("woff");}.ff5_c00039{font-family:ff5_c00039;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_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.v1_c00039{vertical-align:15.840000px;}
.v2_c00039{vertical-align:29.880000px;}
.ls24_c00039{letter-spacing:-0.151200px;}
.ls28_c00039{letter-spacing:-0.050400px;}
.ls22_c00039{letter-spacing:-0.036072px;}
.ls25_c00039{letter-spacing:-0.028800px;}
.ls29_c00039{letter-spacing:-0.021600px;}
.ls36_c00039{letter-spacing:-0.015552px;}
.ls2b_c00039{letter-spacing:-0.014400px;}
.ls34_c00039{letter-spacing:-0.014364px;}
.ls30_c00039{letter-spacing:-0.011664px;}
.ls31_c00039{letter-spacing:-0.009576px;}
.ls2f_c00039{letter-spacing:-0.007776px;}
.ls26_c00039{letter-spacing:-0.007200px;}
.ls37_c00039{letter-spacing:-0.004788px;}
.ls32_c00039{letter-spacing:-0.003888px;}
.ls23_c00039{letter-spacing:0.000000px;}
.ls1d_c00039{letter-spacing:0.004788px;}
.ls27_c00039{letter-spacing:0.007200px;}
.ls21_c00039{letter-spacing:0.007920px;}
.ls2d_c00039{letter-spacing:0.009576px;}
.ls9_c00039{letter-spacing:0.014364px;}
.ls4_c00039{letter-spacing:0.015480px;}
.ls5_c00039{letter-spacing:0.019152px;}
.ls10_c00039{letter-spacing:0.023940px;}
.lsb_c00039{letter-spacing:0.028728px;}
.lsc_c00039{letter-spacing:0.033516px;}
.lsa_c00039{letter-spacing:0.038304px;}
.ls8_c00039{letter-spacing:0.043092px;}
.ls2c_c00039{letter-spacing:0.043200px;}
.ls1_c00039{letter-spacing:0.045720px;}
.ls1f_c00039{letter-spacing:0.047880px;}
.ls2a_c00039{letter-spacing:0.050328px;}
.ls7_c00039{letter-spacing:0.052668px;}
.ls1b_c00039{letter-spacing:0.057456px;}
.lsd_c00039{letter-spacing:0.062244px;}
.ls6_c00039{letter-spacing:0.067032px;}
.ls11_c00039{letter-spacing:0.071820px;}
.ls15_c00039{letter-spacing:0.075960px;}
.ls1e_c00039{letter-spacing:0.081396px;}
.ls19_c00039{letter-spacing:0.086040px;}
.ls1c_c00039{letter-spacing:0.086400px;}
.lsf_c00039{letter-spacing:0.100548px;}
.ls13_c00039{letter-spacing:0.104040px;}
.ls18_c00039{letter-spacing:0.119700px;}
.ls3_c00039{letter-spacing:0.134064px;}
.ls14_c00039{letter-spacing:0.350640px;}
.ls2e_c00039{letter-spacing:0.357696px;}
.ls33_c00039{letter-spacing:0.378252px;}
.ls16_c00039{letter-spacing:0.464040px;}
.ls35_c00039{letter-spacing:0.737352px;}
.ls1a_c00039{letter-spacing:1.431360px;}
.ls2_c00039{letter-spacing:1.791360px;}
.ls17_c00039{letter-spacing:2.871360px;}
.ls39_c00039{letter-spacing:3.255840px;}
.ls12_c00039{letter-spacing:4.671360px;}
.lse_c00039{letter-spacing:5.031360px;}
.ls20_c00039{letter-spacing:5.391360px;}
.ls38_c00039{letter-spacing:6.856416px;}
.ls0_c00039{letter-spacing:1227.240000px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00039{word-spacing:-13.444704px;}
.ws6_c00039{word-spacing:-13.348944px;}
.ws0_c00039{word-spacing:-13.320216px;}
.ws2_c00039{word-spacing:-13.310640px;}
.ws3_c00039{word-spacing:-10.808640px;}
.ws7_c00039{word-spacing:-10.804752px;}
.ws5_c00039{word-spacing:-10.800864px;}
.ws4_c00039{word-spacing:-10.796976px;}
.ws13_c00039{word-spacing:-0.142596px;}
.ws56_c00039{word-spacing:-0.043092px;}
.ws34_c00039{word-spacing:-0.019152px;}
.ws54_c00039{word-spacing:-0.014364px;}
.ws77_c00039{word-spacing:-0.009576px;}
.ws9_c00039{word-spacing:0.000000px;}
.ws55_c00039{word-spacing:0.004788px;}
.ws78_c00039{word-spacing:0.023940px;}
.ws8_c00039{word-spacing:0.126252px;}
.ws3f_c00039{word-spacing:0.320796px;}
.ws6f_c00039{word-spacing:0.330372px;}
.ws6b_c00039{word-spacing:0.335160px;}
.ws43_c00039{word-spacing:0.344736px;}
.ws40_c00039{word-spacing:0.349524px;}
.ws42_c00039{word-spacing:0.354312px;}
.ws41_c00039{word-spacing:0.392616px;}
.ws33_c00039{word-spacing:1.024632px;}
.ws32_c00039{word-spacing:1.034208px;}
.ws6e_c00039{word-spacing:1.038996px;}
.ws3e_c00039{word-spacing:1.053360px;}
.ws31_c00039{word-spacing:1.072512px;}
.ws3d_c00039{word-spacing:1.082088px;}
.ws1a_c00039{word-spacing:1.752408px;}
.ws1b_c00039{word-spacing:1.766772px;}
.ws30_c00039{word-spacing:1.790712px;}
.ws19_c00039{word-spacing:1.800288px;}
.wsd_c00039{word-spacing:1.807200px;}
.wse_c00039{word-spacing:1.850400px;}
.ws4f_c00039{word-spacing:2.140236px;}
.ws50_c00039{word-spacing:2.149812px;}
.ws11_c00039{word-spacing:2.203200px;}
.ws12_c00039{word-spacing:2.232000px;}
.ws7c_c00039{word-spacing:2.470608px;}
.ws7d_c00039{word-spacing:2.484972px;}
.ws7b_c00039{word-spacing:2.489760px;}
.ws7a_c00039{word-spacing:2.519424px;}
.ws39_c00039{word-spacing:2.777040px;}
.ws3a_c00039{word-spacing:2.844072px;}
.ws38_c00039{word-spacing:2.906316px;}
.ws5b_c00039{word-spacing:3.212748px;}
.ws5c_c00039{word-spacing:3.231900px;}
.ws37_c00039{word-spacing:3.265416px;}
.ws61_c00039{word-spacing:3.562272px;}
.ws2a_c00039{word-spacing:3.576636px;}
.ws79_c00039{word-spacing:3.581424px;}
.ws2c_c00039{word-spacing:3.586212px;}
.ws5e_c00039{word-spacing:3.591000px;}
.ws2b_c00039{word-spacing:3.600576px;}
.ws60_c00039{word-spacing:3.921372px;}
.ws48_c00039{word-spacing:3.926160px;}
.ws5f_c00039{word-spacing:3.964464px;}
.ws4a_c00039{word-spacing:3.983616px;}
.ws72_c00039{word-spacing:4.290048px;}
.ws71_c00039{word-spacing:4.294836px;}
.ws47_c00039{word-spacing:4.299624px;}
.ws49_c00039{word-spacing:4.309200px;}
.ws73_c00039{word-spacing:4.323564px;}
.ws35_c00039{word-spacing:4.653936px;}
.ws14_c00039{word-spacing:4.701600px;}
.ws36_c00039{word-spacing:4.706604px;}
.ws27_c00039{word-spacing:5.013036px;}
.ws70_c00039{word-spacing:5.022612px;}
.ws28_c00039{word-spacing:5.027400px;}
.ws29_c00039{word-spacing:5.041764px;}
.ws76_c00039{word-spacing:5.372136px;}
.ws6d_c00039{word-spacing:5.376924px;}
.ws74_c00039{word-spacing:5.381712px;}
.ws6c_c00039{word-spacing:5.386500px;}
.ws75_c00039{word-spacing:5.391288px;}
.ws26_c00039{word-spacing:5.716872px;}
.ws25_c00039{word-spacing:5.736024px;}
.ws65_c00039{word-spacing:5.755176px;}
.ws64_c00039{word-spacing:5.759964px;}
.ws62_c00039{word-spacing:6.085548px;}
.ws63_c00039{word-spacing:6.099912px;}
.ws24_c00039{word-spacing:6.104700px;}
.ws20_c00039{word-spacing:6.444648px;}
.ws1f_c00039{word-spacing:6.459012px;}
.ws4c_c00039{word-spacing:6.798960px;}
.ws4b_c00039{word-spacing:6.813324px;}
.wsc_c00039{word-spacing:6.868800px;}
.wsb_c00039{word-spacing:7.041600px;}
.ws3b_c00039{word-spacing:7.531524px;}
.ws3c_c00039{word-spacing:7.555464px;}
.ws53_c00039{word-spacing:7.900200px;}
.ws52_c00039{word-spacing:7.909776px;}
.ws51_c00039{word-spacing:7.952868px;}
.ws2f_c00039{word-spacing:8.197056px;}
.ws2e_c00039{word-spacing:8.259300px;}
.ws2d_c00039{word-spacing:8.264088px;}
.ws68_c00039{word-spacing:8.594460px;}
.ws69_c00039{word-spacing:8.632764px;}
.ws6a_c00039{word-spacing:8.637552px;}
.wsa_c00039{word-spacing:8.668800px;}
.ws4d_c00039{word-spacing:9.355752px;}
.ws10_c00039{word-spacing:9.381600px;}
.ws4e_c00039{word-spacing:9.384480px;}
.wsf_c00039{word-spacing:9.410400px;}
.ws5d_c00039{word-spacing:10.452204px;}
.ws1c_c00039{word-spacing:10.753848px;}
.ws1d_c00039{word-spacing:10.773000px;}
.ws1e_c00039{word-spacing:10.801728px;}
.ws5a_c00039{word-spacing:11.103372px;}
.ws58_c00039{word-spacing:11.117736px;}
.ws59_c00039{word-spacing:11.156040px;}
.ws57_c00039{word-spacing:11.160828px;}
.ws66_c00039{word-spacing:11.495988px;}
.ws67_c00039{word-spacing:11.505564px;}
.ws21_c00039{word-spacing:12.922812px;}
.ws22_c00039{word-spacing:12.946752px;}
.ws23_c00039{word-spacing:12.975480px;}
.ws44_c00039{word-spacing:24.433164px;}
.ws46_c00039{word-spacing:24.452316px;}
.ws45_c00039{word-spacing:24.457104px;}
.ws18_c00039{word-spacing:36.316800px;}
.ws17_c00039{word-spacing:36.374400px;}
.ws16_c00039{word-spacing:36.381600px;}
.ws15_c00039{word-spacing:36.475200px;}
._5_c00039{margin-left:-6.366600px;}
._7_c00039{margin-left:-2.364984px;}
._1_c00039{margin-left:-1.015344px;}
._0_c00039{width:1.152000px;}
._3_c00039{width:3.182688px;}
._2_c00039{width:5.695704px;}
._6_c00039{width:8.005932px;}
._4_c00039{width:25.255512px;}
.fc0_c00039{color:rgb(0,0,0);}
.fs6_c00039{font-size:38.880000px;}
.fs4_c00039{font-size:42.120000px;}
.fs5_c00039{font-size:47.880000px;}
.fs2_c00039{font-size:54.000000px;}
.fs0_c00039{font-size:60.120000px;}
.fs1_c00039{font-size:72.000000px;}
.fs3_c00039{font-size:83.880000px;}
.y0_c00039{bottom:0.000000px;}
.y3_c00039{bottom:57.450450px;}
.y3c_c00039{bottom:109.199190px;}
.y3b_c00039{bottom:123.068730px;}
.y3a_c00039{bottom:141.334950px;}
.y39_c00039{bottom:155.151540px;}
.y38_c00039{bottom:169.012800px;}
.y37_c00039{bottom:182.778300px;}
.y36_c00039{bottom:196.460010px;}
.y35_c00039{bottom:210.405060px;}
.y34_c00039{bottom:224.170560px;}
.y33_c00039{bottom:237.936060px;}
.y32_c00039{bottom:251.797320px;}
.y31_c00039{bottom:265.562820px;}
.y30_c00039{bottom:279.328320px;}
.y2f_c00039{bottom:293.093820px;}
.y2e_c00039{bottom:306.955080px;}
.y2d_c00039{bottom:320.720580px;}
.y2c_c00039{bottom:334.486080px;}
.y2b_c00039{bottom:348.347340px;}
.y2a_c00039{bottom:362.112840px;}
.y29_c00039{bottom:375.878340px;}
.y28_c00039{bottom:389.739600px;}
.y27_c00039{bottom:403.505100px;}
.y26_c00039{bottom:417.269190px;}
.y25_c00039{bottom:431.139450px;}
.y24_c00039{bottom:444.904950px;}
.y23_c00039{bottom:458.673690px;}
.y22_c00039{bottom:472.534950px;}
.y21_c00039{bottom:486.304950px;}
.y20_c00039{bottom:500.069340px;}
.y1f_c00039{bottom:513.939450px;}
.y1e_c00039{bottom:527.704950px;}
.y1d_c00039{bottom:541.469190px;}
.y1c_c00039{bottom:555.350970px;}
.y1b_c00039{bottom:573.617190px;}
.y1a_c00039{bottom:587.382690px;}
.y19_c00039{bottom:601.243950px;}
.y18_c00039{bottom:615.009450px;}
.y17_c00039{bottom:628.774950px;}
.y16_c00039{bottom:642.551430px;}
.y15_c00039{bottom:656.412690px;}
.y14_c00039{bottom:670.178190px;}
.y13_c00039{bottom:683.943690px;}
.y12_c00039{bottom:697.804950px;}
.y11_c00039{bottom:711.574950px;}
.y10_c00039{bottom:725.340450px;}
.yf_c00039{bottom:740.550450px;}
.ye_c00039{bottom:761.250450px;}
.yd_c00039{bottom:781.950450px;}
.yc_c00039{bottom:828.750450px;}
.yb_c00039{bottom:863.220450px;}
.ya_c00039{bottom:904.980450px;}
.y9_c00039{bottom:969.060450px;}
.y8_c00039{bottom:1003.440450px;}
.y7_c00039{bottom:1037.910450px;}
.y6_c00039{bottom:1072.290450px;}
.y5_c00039{bottom:1106.760450px;}
.y4_c00039{bottom:1141.140450px;}
.y2_c00039{bottom:1173.810450px;}
.y1_c00039{bottom:1196.850450px;}
.h7_c00039{height:49.937344px;}
.h9_c00039{height:49.941784px;}
.h8_c00039{height:49.942384px;}
.ha_c00039{height:49.942984px;}
.h1_c00039{height:50.315273px;}
.h4_c00039{height:60.257812px;}
.h6_c00039{height:65.130820px;}
.h5_c00039{height:70.282266px;}
.h2_c00039{height:70.664062px;}
.h3_c00039{height:72.160313px;}
.h0_c00039{height:1263.000000px;}
.w1_c00039{width:892.500000px;}
.w0_c00039{width:892.830000px;}
.x0_c00039{left:0.000000px;}
.x2_c00039{left:127.620000px;}
.x4_c00039{left:141.120720px;}
.x3_c00039{left:180.810000px;}
.x1_c00039{left:689.310000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.v1_c00039{vertical-align:14.080000pt;}
.v2_c00039{vertical-align:26.560000pt;}
.ls24_c00039{letter-spacing:-0.134400pt;}
.ls28_c00039{letter-spacing:-0.044800pt;}
.ls22_c00039{letter-spacing:-0.032064pt;}
.ls25_c00039{letter-spacing:-0.025600pt;}
.ls29_c00039{letter-spacing:-0.019200pt;}
.ls36_c00039{letter-spacing:-0.013824pt;}
.ls2b_c00039{letter-spacing:-0.012800pt;}
.ls34_c00039{letter-spacing:-0.012768pt;}
.ls30_c00039{letter-spacing:-0.010368pt;}
.ls31_c00039{letter-spacing:-0.008512pt;}
.ls2f_c00039{letter-spacing:-0.006912pt;}
.ls26_c00039{letter-spacing:-0.006400pt;}
.ls37_c00039{letter-spacing:-0.004256pt;}
.ls32_c00039{letter-spacing:-0.003456pt;}
.ls23_c00039{letter-spacing:0.000000pt;}
.ls1d_c00039{letter-spacing:0.004256pt;}
.ls27_c00039{letter-spacing:0.006400pt;}
.ls21_c00039{letter-spacing:0.007040pt;}
.ls2d_c00039{letter-spacing:0.008512pt;}
.ls9_c00039{letter-spacing:0.012768pt;}
.ls4_c00039{letter-spacing:0.013760pt;}
.ls5_c00039{letter-spacing:0.017024pt;}
.ls10_c00039{letter-spacing:0.021280pt;}
.lsb_c00039{letter-spacing:0.025536pt;}
.lsc_c00039{letter-spacing:0.029792pt;}
.lsa_c00039{letter-spacing:0.034048pt;}
.ls8_c00039{letter-spacing:0.038304pt;}
.ls2c_c00039{letter-spacing:0.038400pt;}
.ls1_c00039{letter-spacing:0.040640pt;}
.ls1f_c00039{letter-spacing:0.042560pt;}
.ls2a_c00039{letter-spacing:0.044736pt;}
.ls7_c00039{letter-spacing:0.046816pt;}
.ls1b_c00039{letter-spacing:0.051072pt;}
.lsd_c00039{letter-spacing:0.055328pt;}
.ls6_c00039{letter-spacing:0.059584pt;}
.ls11_c00039{letter-spacing:0.063840pt;}
.ls15_c00039{letter-spacing:0.067520pt;}
.ls1e_c00039{letter-spacing:0.072352pt;}
.ls19_c00039{letter-spacing:0.076480pt;}
.ls1c_c00039{letter-spacing:0.076800pt;}
.lsf_c00039{letter-spacing:0.089376pt;}
.ls13_c00039{letter-spacing:0.092480pt;}
.ls18_c00039{letter-spacing:0.106400pt;}
.ls3_c00039{letter-spacing:0.119168pt;}
.ls14_c00039{letter-spacing:0.311680pt;}
.ls2e_c00039{letter-spacing:0.317952pt;}
.ls33_c00039{letter-spacing:0.336224pt;}
.ls16_c00039{letter-spacing:0.412480pt;}
.ls35_c00039{letter-spacing:0.655424pt;}
.ls1a_c00039{letter-spacing:1.272320pt;}
.ls2_c00039{letter-spacing:1.592320pt;}
.ls17_c00039{letter-spacing:2.552320pt;}
.ls39_c00039{letter-spacing:2.894080pt;}
.ls12_c00039{letter-spacing:4.152320pt;}
.lse_c00039{letter-spacing:4.472320pt;}
.ls20_c00039{letter-spacing:4.792320pt;}
.ls38_c00039{letter-spacing:6.094592pt;}
.ls0_c00039{letter-spacing:1090.880000pt;}
.ws1_c00039{word-spacing:-11.950848pt;}
.ws6_c00039{word-spacing:-11.865728pt;}
.ws0_c00039{word-spacing:-11.840192pt;}
.ws2_c00039{word-spacing:-11.831680pt;}
.ws3_c00039{word-spacing:-9.607680pt;}
.ws7_c00039{word-spacing:-9.604224pt;}
.ws5_c00039{word-spacing:-9.600768pt;}
.ws4_c00039{word-spacing:-9.597312pt;}
.ws13_c00039{word-spacing:-0.126752pt;}
.ws56_c00039{word-spacing:-0.038304pt;}
.ws34_c00039{word-spacing:-0.017024pt;}
.ws54_c00039{word-spacing:-0.012768pt;}
.ws77_c00039{word-spacing:-0.008512pt;}
.ws9_c00039{word-spacing:0.000000pt;}
.ws55_c00039{word-spacing:0.004256pt;}
.ws78_c00039{word-spacing:0.021280pt;}
.ws8_c00039{word-spacing:0.112224pt;}
.ws3f_c00039{word-spacing:0.285152pt;}
.ws6f_c00039{word-spacing:0.293664pt;}
.ws6b_c00039{word-spacing:0.297920pt;}
.ws43_c00039{word-spacing:0.306432pt;}
.ws40_c00039{word-spacing:0.310688pt;}
.ws42_c00039{word-spacing:0.314944pt;}
.ws41_c00039{word-spacing:0.348992pt;}
.ws33_c00039{word-spacing:0.910784pt;}
.ws32_c00039{word-spacing:0.919296pt;}
.ws6e_c00039{word-spacing:0.923552pt;}
.ws3e_c00039{word-spacing:0.936320pt;}
.ws31_c00039{word-spacing:0.953344pt;}
.ws3d_c00039{word-spacing:0.961856pt;}
.ws1a_c00039{word-spacing:1.557696pt;}
.ws1b_c00039{word-spacing:1.570464pt;}
.ws30_c00039{word-spacing:1.591744pt;}
.ws19_c00039{word-spacing:1.600256pt;}
.wsd_c00039{word-spacing:1.606400pt;}
.wse_c00039{word-spacing:1.644800pt;}
.ws4f_c00039{word-spacing:1.902432pt;}
.ws50_c00039{word-spacing:1.910944pt;}
.ws11_c00039{word-spacing:1.958400pt;}
.ws12_c00039{word-spacing:1.984000pt;}
.ws7c_c00039{word-spacing:2.196096pt;}
.ws7d_c00039{word-spacing:2.208864pt;}
.ws7b_c00039{word-spacing:2.213120pt;}
.ws7a_c00039{word-spacing:2.239488pt;}
.ws39_c00039{word-spacing:2.468480pt;}
.ws3a_c00039{word-spacing:2.528064pt;}
.ws38_c00039{word-spacing:2.583392pt;}
.ws5b_c00039{word-spacing:2.855776pt;}
.ws5c_c00039{word-spacing:2.872800pt;}
.ws37_c00039{word-spacing:2.902592pt;}
.ws61_c00039{word-spacing:3.166464pt;}
.ws2a_c00039{word-spacing:3.179232pt;}
.ws79_c00039{word-spacing:3.183488pt;}
.ws2c_c00039{word-spacing:3.187744pt;}
.ws5e_c00039{word-spacing:3.192000pt;}
.ws2b_c00039{word-spacing:3.200512pt;}
.ws60_c00039{word-spacing:3.485664pt;}
.ws48_c00039{word-spacing:3.489920pt;}
.ws5f_c00039{word-spacing:3.523968pt;}
.ws4a_c00039{word-spacing:3.540992pt;}
.ws72_c00039{word-spacing:3.813376pt;}
.ws71_c00039{word-spacing:3.817632pt;}
.ws47_c00039{word-spacing:3.821888pt;}
.ws49_c00039{word-spacing:3.830400pt;}
.ws73_c00039{word-spacing:3.843168pt;}
.ws35_c00039{word-spacing:4.136832pt;}
.ws14_c00039{word-spacing:4.179200pt;}
.ws36_c00039{word-spacing:4.183648pt;}
.ws27_c00039{word-spacing:4.456032pt;}
.ws70_c00039{word-spacing:4.464544pt;}
.ws28_c00039{word-spacing:4.468800pt;}
.ws29_c00039{word-spacing:4.481568pt;}
.ws76_c00039{word-spacing:4.775232pt;}
.ws6d_c00039{word-spacing:4.779488pt;}
.ws74_c00039{word-spacing:4.783744pt;}
.ws6c_c00039{word-spacing:4.788000pt;}
.ws75_c00039{word-spacing:4.792256pt;}
.ws26_c00039{word-spacing:5.081664pt;}
.ws25_c00039{word-spacing:5.098688pt;}
.ws65_c00039{word-spacing:5.115712pt;}
.ws64_c00039{word-spacing:5.119968pt;}
.ws62_c00039{word-spacing:5.409376pt;}
.ws63_c00039{word-spacing:5.422144pt;}
.ws24_c00039{word-spacing:5.426400pt;}
.ws20_c00039{word-spacing:5.728576pt;}
.ws1f_c00039{word-spacing:5.741344pt;}
.ws4c_c00039{word-spacing:6.043520pt;}
.ws4b_c00039{word-spacing:6.056288pt;}
.wsc_c00039{word-spacing:6.105600pt;}
.wsb_c00039{word-spacing:6.259200pt;}
.ws3b_c00039{word-spacing:6.694688pt;}
.ws3c_c00039{word-spacing:6.715968pt;}
.ws53_c00039{word-spacing:7.022400pt;}
.ws52_c00039{word-spacing:7.030912pt;}
.ws51_c00039{word-spacing:7.069216pt;}
.ws2f_c00039{word-spacing:7.286272pt;}
.ws2e_c00039{word-spacing:7.341600pt;}
.ws2d_c00039{word-spacing:7.345856pt;}
.ws68_c00039{word-spacing:7.639520pt;}
.ws69_c00039{word-spacing:7.673568pt;}
.ws6a_c00039{word-spacing:7.677824pt;}
.wsa_c00039{word-spacing:7.705600pt;}
.ws4d_c00039{word-spacing:8.316224pt;}
.ws10_c00039{word-spacing:8.339200pt;}
.ws4e_c00039{word-spacing:8.341760pt;}
.wsf_c00039{word-spacing:8.364800pt;}
.ws5d_c00039{word-spacing:9.290848pt;}
.ws1c_c00039{word-spacing:9.558976pt;}
.ws1d_c00039{word-spacing:9.576000pt;}
.ws1e_c00039{word-spacing:9.601536pt;}
.ws5a_c00039{word-spacing:9.869664pt;}
.ws58_c00039{word-spacing:9.882432pt;}
.ws59_c00039{word-spacing:9.916480pt;}
.ws57_c00039{word-spacing:9.920736pt;}
.ws66_c00039{word-spacing:10.218656pt;}
.ws67_c00039{word-spacing:10.227168pt;}
.ws21_c00039{word-spacing:11.486944pt;}
.ws22_c00039{word-spacing:11.508224pt;}
.ws23_c00039{word-spacing:11.533760pt;}
.ws44_c00039{word-spacing:21.718368pt;}
.ws46_c00039{word-spacing:21.735392pt;}
.ws45_c00039{word-spacing:21.739648pt;}
.ws18_c00039{word-spacing:32.281600pt;}
.ws17_c00039{word-spacing:32.332800pt;}
.ws16_c00039{word-spacing:32.339200pt;}
.ws15_c00039{word-spacing:32.422400pt;}
._5_c00039{margin-left:-5.659200pt;}
._7_c00039{margin-left:-2.102208pt;}
._1_c00039{margin-left:-0.902528pt;}
._0_c00039{width:1.024000pt;}
._3_c00039{width:2.829056pt;}
._2_c00039{width:5.062848pt;}
._6_c00039{width:7.116384pt;}
._4_c00039{width:22.449344pt;}
.fs6_c00039{font-size:34.560000pt;}
.fs4_c00039{font-size:37.440000pt;}
.fs5_c00039{font-size:42.560000pt;}
.fs2_c00039{font-size:48.000000pt;}
.fs0_c00039{font-size:53.440000pt;}
.fs1_c00039{font-size:64.000000pt;}
.fs3_c00039{font-size:74.560000pt;}
.y0_c00039{bottom:0.000000pt;}
.y3_c00039{bottom:51.067067pt;}
.y3c_c00039{bottom:97.065947pt;}
.y3b_c00039{bottom:109.394427pt;}
.y3a_c00039{bottom:125.631067pt;}
.y39_c00039{bottom:137.912480pt;}
.y38_c00039{bottom:150.233600pt;}
.y37_c00039{bottom:162.469600pt;}
.y36_c00039{bottom:174.631120pt;}
.y35_c00039{bottom:187.026720pt;}
.y34_c00039{bottom:199.262720pt;}
.y33_c00039{bottom:211.498720pt;}
.y32_c00039{bottom:223.819840pt;}
.y31_c00039{bottom:236.055840pt;}
.y30_c00039{bottom:248.291840pt;}
.y2f_c00039{bottom:260.527840pt;}
.y2e_c00039{bottom:272.848960pt;}
.y2d_c00039{bottom:285.084960pt;}
.y2c_c00039{bottom:297.320960pt;}
.y2b_c00039{bottom:309.642080pt;}
.y2a_c00039{bottom:321.878080pt;}
.y29_c00039{bottom:334.114080pt;}
.y28_c00039{bottom:346.435200pt;}
.y27_c00039{bottom:358.671200pt;}
.y26_c00039{bottom:370.905947pt;}
.y25_c00039{bottom:383.235067pt;}
.y24_c00039{bottom:395.471067pt;}
.y23_c00039{bottom:407.709947pt;}
.y22_c00039{bottom:420.031067pt;}
.y21_c00039{bottom:432.271067pt;}
.y20_c00039{bottom:444.506080pt;}
.y1f_c00039{bottom:456.835067pt;}
.y1e_c00039{bottom:469.071067pt;}
.y1d_c00039{bottom:481.305947pt;}
.y1c_c00039{bottom:493.645307pt;}
.y1b_c00039{bottom:509.881947pt;}
.y1a_c00039{bottom:522.117947pt;}
.y19_c00039{bottom:534.439067pt;}
.y18_c00039{bottom:546.675067pt;}
.y17_c00039{bottom:558.911067pt;}
.y16_c00039{bottom:571.156827pt;}
.y15_c00039{bottom:583.477947pt;}
.y14_c00039{bottom:595.713947pt;}
.y13_c00039{bottom:607.949947pt;}
.y12_c00039{bottom:620.271067pt;}
.y11_c00039{bottom:632.511067pt;}
.y10_c00039{bottom:644.747067pt;}
.yf_c00039{bottom:658.267067pt;}
.ye_c00039{bottom:676.667067pt;}
.yd_c00039{bottom:695.067067pt;}
.yc_c00039{bottom:736.667067pt;}
.yb_c00039{bottom:767.307067pt;}
.ya_c00039{bottom:804.427067pt;}
.y9_c00039{bottom:861.387067pt;}
.y8_c00039{bottom:891.947067pt;}
.y7_c00039{bottom:922.587067pt;}
.y6_c00039{bottom:953.147067pt;}
.y5_c00039{bottom:983.787067pt;}
.y4_c00039{bottom:1014.347067pt;}
.y2_c00039{bottom:1043.387067pt;}
.y1_c00039{bottom:1063.867067pt;}
.h7_c00039{height:44.388750pt;}
.h9_c00039{height:44.392697pt;}
.h8_c00039{height:44.393230pt;}
.ha_c00039{height:44.393763pt;}
.h1_c00039{height:44.724687pt;}
.h4_c00039{height:53.562500pt;}
.h6_c00039{height:57.894063pt;}
.h5_c00039{height:62.473125pt;}
.h2_c00039{height:62.812500pt;}
.h3_c00039{height:64.142500pt;}
.h0_c00039{height:1122.666667pt;}
.w1_c00039{width:793.333333pt;}
.w0_c00039{width:793.626667pt;}
.x0_c00039{left:0.000000pt;}
.x2_c00039{left:113.440000pt;}
.x4_c00039{left:125.440640pt;}
.x3_c00039{left:160.720000pt;}
.x1_c00039{left:612.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_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_03bea24952e7de99570a665b.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.100098;font-style:normal;font-weight:normal;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_183f6149de90f46bde280e62.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;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_c00040;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00040;src:url('chunks/assets/font_f5834e2df8e015e59f9bec5a.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.102051;font-style:normal;font-weight:normal;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_bb69a3025baef6e297b72a8c.woff2')format("woff");}.ff5_c00040{font-family:ff5_c00040;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_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);}
.v3_c00040{vertical-align:-60.840000px;}
.v0_c00040{vertical-align:0.000000px;}
.v1_c00040{vertical-align:15.840000px;}
.v2_c00040{vertical-align:29.880000px;}
.ls28_c00040{letter-spacing:-0.151200px;}
.ls2c_c00040{letter-spacing:-0.036000px;}
.ls2b_c00040{letter-spacing:-0.028800px;}
.ls3d_c00040{letter-spacing:-0.028728px;}
.ls35_c00040{letter-spacing:-0.023328px;}
.ls38_c00040{letter-spacing:-0.019152px;}
.ls3e_c00040{letter-spacing:-0.015552px;}
.ls2e_c00040{letter-spacing:-0.014400px;}
.ls32_c00040{letter-spacing:-0.011664px;}
.ls30_c00040{letter-spacing:-0.009576px;}
.ls2f_c00040{letter-spacing:-0.007776px;}
.ls29_c00040{letter-spacing:-0.007200px;}
.ls34_c00040{letter-spacing:-0.004788px;}
.ls31_c00040{letter-spacing:-0.003888px;}
.ls27_c00040{letter-spacing:0.000000px;}
.ls21_c00040{letter-spacing:0.003888px;}
.ls17_c00040{letter-spacing:0.004788px;}
.ls2_c00040{letter-spacing:0.007200px;}
.ls8_c00040{letter-spacing:0.009576px;}
.lsb_c00040{letter-spacing:0.014364px;}
.ls3_c00040{letter-spacing:0.014400px;}
.lsd_c00040{letter-spacing:0.019152px;}
.ls2d_c00040{letter-spacing:0.021600px;}
.ls6_c00040{letter-spacing:0.023940px;}
.ls11_c00040{letter-spacing:0.028728px;}
.ls4_c00040{letter-spacing:0.028800px;}
.lsf_c00040{letter-spacing:0.033516px;}
.ls1f_c00040{letter-spacing:0.038304px;}
.ls1b_c00040{letter-spacing:0.043092px;}
.ls9_c00040{letter-spacing:0.047880px;}
.ls0_c00040{letter-spacing:0.048096px;}
.ls14_c00040{letter-spacing:0.052668px;}
.ls2a_c00040{letter-spacing:0.054756px;}
.lsa_c00040{letter-spacing:0.057456px;}
.lse_c00040{letter-spacing:0.062244px;}
.ls12_c00040{letter-spacing:0.067032px;}
.ls19_c00040{letter-spacing:0.071820px;}
.ls1d_c00040{letter-spacing:0.075960px;}
.ls15_c00040{letter-spacing:0.076608px;}
.ls1e_c00040{letter-spacing:0.081396px;}
.ls23_c00040{letter-spacing:0.086184px;}
.ls18_c00040{letter-spacing:0.104040px;}
.lsc_c00040{letter-spacing:0.134064px;}
.ls7_c00040{letter-spacing:0.189360px;}
.ls3f_c00040{letter-spacing:0.342144px;}
.ls22_c00040{letter-spacing:0.346032px;}
.ls25_c00040{letter-spacing:0.350640px;}
.ls33_c00040{letter-spacing:0.353808px;}
.ls39_c00040{letter-spacing:0.361584px;}
.ls3c_c00040{letter-spacing:0.368676px;}
.ls13_c00040{letter-spacing:0.383040px;}
.ls20_c00040{letter-spacing:0.464040px;}
.ls24_c00040{letter-spacing:1.071360px;}
.ls10_c00040{letter-spacing:1.431360px;}
.ls37_c00040{letter-spacing:1.455552px;}
.ls16_c00040{letter-spacing:2.537640px;}
.ls1a_c00040{letter-spacing:3.591360px;}
.ls1c_c00040{letter-spacing:5.031360px;}
.ls26_c00040{letter-spacing:7.191360px;}
.ls3b_c00040{letter-spacing:7.938504px;}
.ls3a_c00040{letter-spacing:11.175192px;}
.ls36_c00040{letter-spacing:12.616380px;}
.ls5_c00040{letter-spacing:36.000000px;}
.ls1_c00040{letter-spacing:1227.240000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00040{word-spacing:-17.992800px;}
.ws3_c00040{word-spacing:-13.444704px;}
.wsa_c00040{word-spacing:-13.348944px;}
.ws4_c00040{word-spacing:-13.310640px;}
.wsb_c00040{word-spacing:-11.170224px;}
.ws6_c00040{word-spacing:-11.162448px;}
.wse_c00040{word-spacing:-11.154672px;}
.wsf_c00040{word-spacing:-11.150784px;}
.wsc_c00040{word-spacing:-10.812528px;}
.ws2_c00040{word-spacing:-10.808640px;}
.ws8_c00040{word-spacing:-10.804752px;}
.ws9_c00040{word-spacing:-10.800864px;}
.ws5_c00040{word-spacing:-10.796976px;}
.wsd_c00040{word-spacing:-10.793088px;}
.ws7_c00040{word-spacing:-10.785312px;}
.ws1_c00040{word-spacing:-10.584756px;}
.ws79_c00040{word-spacing:-0.043092px;}
.ws22_c00040{word-spacing:-0.038304px;}
.ws48_c00040{word-spacing:-0.033516px;}
.ws1e_c00040{word-spacing:-0.028800px;}
.ws5b_c00040{word-spacing:-0.028728px;}
.ws72_c00040{word-spacing:-0.023940px;}
.ws4c_c00040{word-spacing:-0.019152px;}
.ws49_c00040{word-spacing:-0.014364px;}
.ws11_c00040{word-spacing:0.000000px;}
.ws5c_c00040{word-spacing:0.023940px;}
.ws23_c00040{word-spacing:0.028728px;}
.ws10_c00040{word-spacing:0.042084px;}
.ws30_c00040{word-spacing:0.301644px;}
.ws2d_c00040{word-spacing:0.311220px;}
.ws2e_c00040{word-spacing:0.325584px;}
.ws2f_c00040{word-spacing:0.349524px;}
.ws78_c00040{word-spacing:0.675108px;}
.ws76_c00040{word-spacing:0.703836px;}
.ws8d_c00040{word-spacing:0.713412px;}
.ws8e_c00040{word-spacing:0.723168px;}
.ws77_c00040{word-spacing:0.766080px;}
.ws81_c00040{word-spacing:1.010268px;}
.ws41_c00040{word-spacing:1.034208px;}
.ws82_c00040{word-spacing:1.038996px;}
.ws95_c00040{word-spacing:1.043784px;}
.ws83_c00040{word-spacing:1.048572px;}
.ws43_c00040{word-spacing:1.053360px;}
.ws38_c00040{word-spacing:1.062936px;}
.ws42_c00040{word-spacing:1.067724px;}
.ws44_c00040{word-spacing:1.077300px;}
.ws94_c00040{word-spacing:1.378944px;}
.ws93_c00040{word-spacing:1.398096px;}
.ws56_c00040{word-spacing:1.422036px;}
.ws2c_c00040{word-spacing:1.426824px;}
.ws2b_c00040{word-spacing:1.431612px;}
.ws55_c00040{word-spacing:1.441188px;}
.ws69_c00040{word-spacing:1.450764px;}
.ws57_c00040{word-spacing:1.474704px;}
.ws3e_c00040{word-spacing:1.766772px;}
.ws40_c00040{word-spacing:1.776348px;}
.ws67_c00040{word-spacing:1.781136px;}
.ws68_c00040{word-spacing:1.785924px;}
.ws3f_c00040{word-spacing:1.800288px;}
.ws85_c00040{word-spacing:2.116296px;}
.ws84_c00040{word-spacing:2.121084px;}
.ws62_c00040{word-spacing:2.135448px;}
.ws7b_c00040{word-spacing:2.140236px;}
.ws61_c00040{word-spacing:2.149812px;}
.ws60_c00040{word-spacing:2.159388px;}
.ws7a_c00040{word-spacing:2.161728px;}
.ws6a_c00040{word-spacing:2.494548px;}
.ws31_c00040{word-spacing:2.523276px;}
.ws33_c00040{word-spacing:2.532852px;}
.ws32_c00040{word-spacing:2.542428px;}
.ws6f_c00040{word-spacing:2.834496px;}
.ws6e_c00040{word-spacing:2.839284px;}
.ws89_c00040{word-spacing:2.853648px;}
.ws6d_c00040{word-spacing:2.858436px;}
.ws66_c00040{word-spacing:2.863224px;}
.ws88_c00040{word-spacing:2.872800px;}
.ws39_c00040{word-spacing:3.552696px;}
.ws21_c00040{word-spacing:3.567060px;}
.ws3a_c00040{word-spacing:3.571848px;}
.ws1f_c00040{word-spacing:3.595788px;}
.ws20_c00040{word-spacing:3.610152px;}
.ws37_c00040{word-spacing:4.266108px;}
.ws36_c00040{word-spacing:4.275684px;}
.ws35_c00040{word-spacing:4.280472px;}
.ws34_c00040{word-spacing:4.290048px;}
.ws8f_c00040{word-spacing:4.304412px;}
.ws14_c00040{word-spacing:4.305600px;}
.ws13_c00040{word-spacing:4.312800px;}
.ws90_c00040{word-spacing:4.313988px;}
.ws12_c00040{word-spacing:4.348800px;}
.ws15_c00040{word-spacing:4.370400px;}
.ws46_c00040{word-spacing:5.008248px;}
.ws47_c00040{word-spacing:5.013036px;}
.ws45_c00040{word-spacing:5.036976px;}
.ws28_c00040{word-spacing:5.352984px;}
.ws27_c00040{word-spacing:5.367348px;}
.ws29_c00040{word-spacing:5.381712px;}
.ws2a_c00040{word-spacing:5.391288px;}
.ws24_c00040{word-spacing:5.396076px;}
.ws25_c00040{word-spacing:5.400432px;}
.ws26_c00040{word-spacing:5.405652px;}
.ws3d_c00040{word-spacing:5.726448px;}
.ws3c_c00040{word-spacing:5.731236px;}
.ws3b_c00040{word-spacing:5.755176px;}
.ws53_c00040{word-spacing:6.775020px;}
.ws52_c00040{word-spacing:6.789384px;}
.ws8b_c00040{word-spacing:6.798960px;}
.ws8c_c00040{word-spacing:6.808536px;}
.ws54_c00040{word-spacing:6.818112px;}
.ws8a_c00040{word-spacing:6.837264px;}
.ws6c_c00040{word-spacing:6.861204px;}
.ws6b_c00040{word-spacing:7.153272px;}
.ws16_c00040{word-spacing:7.480800px;}
.ws17_c00040{word-spacing:7.560000px;}
.ws65_c00040{word-spacing:7.866684px;}
.ws64_c00040{word-spacing:7.871472px;}
.ws70_c00040{word-spacing:7.876260px;}
.ws71_c00040{word-spacing:7.881048px;}
.ws63_c00040{word-spacing:7.928928px;}
.ws75_c00040{word-spacing:8.623188px;}
.ws74_c00040{word-spacing:8.632764px;}
.ws73_c00040{word-spacing:8.637552px;}
.ws51_c00040{word-spacing:8.963136px;}
.ws4f_c00040{word-spacing:8.967924px;}
.ws5f_c00040{word-spacing:8.977500px;}
.ws50_c00040{word-spacing:8.987076px;}
.ws4d_c00040{word-spacing:8.996652px;}
.ws4e_c00040{word-spacing:9.000720px;}
.ws1d_c00040{word-spacing:9.014400px;}
.ws87_c00040{word-spacing:9.676548px;}
.ws86_c00040{word-spacing:9.690912px;}
.ws7f_c00040{word-spacing:10.399536px;}
.ws5e_c00040{word-spacing:10.409112px;}
.ws80_c00040{word-spacing:10.418688px;}
.ws5d_c00040{word-spacing:10.437840px;}
.ws7e_c00040{word-spacing:10.773000px;}
.ws7c_c00040{word-spacing:10.777788px;}
.ws7d_c00040{word-spacing:10.820880px;}
.ws5a_c00040{word-spacing:11.132100px;}
.ws59_c00040{word-spacing:11.179980px;}
.ws58_c00040{word-spacing:11.184768px;}
.ws4b_c00040{word-spacing:12.573288px;}
.ws19_c00040{word-spacing:12.585600px;}
.ws4a_c00040{word-spacing:12.587652px;}
.ws18_c00040{word-spacing:12.636000px;}
.ws92_c00040{word-spacing:14.737464px;}
.ws91_c00040{word-spacing:14.747040px;}
.ws1c_c00040{word-spacing:21.578400px;}
.ws1b_c00040{word-spacing:21.693600px;}
.ws1a_c00040{word-spacing:22.687200px;}
._8_c00040{margin-left:-10.923768px;}
._a_c00040{margin-left:-7.377984px;}
._2_c00040{margin-left:-4.680000px;}
._0_c00040{margin-left:-1.322640px;}
._1_c00040{width:1.152000px;}
._5_c00040{width:2.591784px;}
._3_c00040{width:4.046220px;}
._4_c00040{width:5.415228px;}
._b_c00040{width:7.537320px;}
._7_c00040{width:8.991864px;}
._9_c00040{width:10.428264px;}
._6_c00040{width:12.947040px;}
._c_c00040{width:15.234624px;}
.fc0_c00040{color:rgb(0,0,0);}
.fs5_c00040{font-size:38.880000px;}
.fs3_c00040{font-size:42.120000px;}
.fs4_c00040{font-size:47.880000px;}
.fs1_c00040{font-size:54.000000px;}
.fs0_c00040{font-size:60.120000px;}
.fs2_c00040{font-size:72.000000px;}
.y0_c00040{bottom:0.000000px;}
.y3_c00040{bottom:57.450450px;}
.y41_c00040{bottom:113.699190px;}
.y40_c00040{bottom:127.568730px;}
.y3f_c00040{bottom:145.834950px;}
.y3e_c00040{bottom:159.603690px;}
.y3d_c00040{bottom:173.464950px;}
.y3c_c00040{bottom:187.234950px;}
.y3b_c00040{bottom:201.008190px;}
.y3a_c00040{bottom:214.869450px;}
.y39_c00040{bottom:228.634950px;}
.y38_c00040{bottom:242.400450px;}
.y37_c00040{bottom:256.268730px;}
.y36_c00040{bottom:274.534950px;}
.y35_c00040{bottom:288.304950px;}
.y34_c00040{bottom:302.069190px;}
.y33_c00040{bottom:315.937470px;}
.y32_c00040{bottom:334.203690px;}
.y31_c00040{bottom:347.969190px;}
.y30_c00040{bottom:361.838190px;}
.y2f_c00040{bottom:375.603690px;}
.y2e_c00040{bottom:389.285400px;}
.y2d_c00040{bottom:403.230450px;}
.y2c_c00040{bottom:417.012690px;}
.y2b_c00040{bottom:430.778190px;}
.y2a_c00040{bottom:444.639450px;}
.y29_c00040{bottom:458.404950px;}
.y28_c00040{bottom:472.178190px;}
.y27_c00040{bottom:486.039450px;}
.y26_c00040{bottom:499.804950px;}
.y25_c00040{bottom:513.572970px;}
.y24_c00040{bottom:531.934950px;}
.y23_c00040{bottom:545.704950px;}
.y22_c00040{bottom:559.466220px;}
.y21_c00040{bottom:573.327480px;}
.y20_c00040{bottom:587.009190px;}
.y1f_c00040{bottom:600.872970px;}
.y1e_c00040{bottom:619.234950px;}
.y1d_c00040{bottom:633.000450px;}
.y1c_c00040{bottom:633.008730px;}
.y1b_c00040{bottom:651.274950px;}
.y1a_c00040{bottom:665.043690px;}
.y19_c00040{bottom:678.904950px;}
.y18_c00040{bottom:692.673690px;}
.y17_c00040{bottom:706.439190px;}
.y16_c00040{bottom:720.309450px;}
.y15_c00040{bottom:734.074950px;}
.y14_c00040{bottom:747.840450px;}
.y13_c00040{bottom:761.709450px;}
.y12_c00040{bottom:775.474950px;}
.y11_c00040{bottom:789.243690px;}
.y10_c00040{bottom:803.104950px;}
.yf_c00040{bottom:816.872970px;}
.ye_c00040{bottom:835.139190px;}
.yd_c00040{bottom:864.210450px;}
.yc_c00040{bottom:884.910450px;}
.yb_c00040{bottom:905.610450px;}
.ya_c00040{bottom:934.590450px;}
.y9_c00040{bottom:969.060450px;}
.y8_c00040{bottom:1003.440450px;}
.y7_c00040{bottom:1037.910450px;}
.y6_c00040{bottom:1072.290450px;}
.y5_c00040{bottom:1106.760450px;}
.y4_c00040{bottom:1141.140450px;}
.y2_c00040{bottom:1177.860450px;}
.y1_c00040{bottom:1196.850450px;}
.h8_c00040{height:49.937344px;}
.ha_c00040{height:49.942384px;}
.h9_c00040{height:49.954264px;}
.h1_c00040{height:50.315273px;}
.h2_c00040{height:56.320312px;}
.h6_c00040{height:60.257812px;}
.h5_c00040{height:60.890625px;}
.h4_c00040{height:65.130820px;}
.h7_c00040{height:70.664062px;}
.h3_c00040{height:72.160312px;}
.h0_c00040{height:1263.000000px;}
.w1_c00040{width:892.500000px;}
.w0_c00040{width:892.830000px;}
.x0_c00040{left:0.000000px;}
.x1_c00040{left:127.620000px;}
.x2_c00040{left:141.121350px;}
.x3_c00040{left:186.570000px;}
@media print{
.v3_c00040{vertical-align:-54.080000pt;}
.v0_c00040{vertical-align:0.000000pt;}
.v1_c00040{vertical-align:14.080000pt;}
.v2_c00040{vertical-align:26.560000pt;}
.ls28_c00040{letter-spacing:-0.134400pt;}
.ls2c_c00040{letter-spacing:-0.032000pt;}
.ls2b_c00040{letter-spacing:-0.025600pt;}
.ls3d_c00040{letter-spacing:-0.025536pt;}
.ls35_c00040{letter-spacing:-0.020736pt;}
.ls38_c00040{letter-spacing:-0.017024pt;}
.ls3e_c00040{letter-spacing:-0.013824pt;}
.ls2e_c00040{letter-spacing:-0.012800pt;}
.ls32_c00040{letter-spacing:-0.010368pt;}
.ls30_c00040{letter-spacing:-0.008512pt;}
.ls2f_c00040{letter-spacing:-0.006912pt;}
.ls29_c00040{letter-spacing:-0.006400pt;}
.ls34_c00040{letter-spacing:-0.004256pt;}
.ls31_c00040{letter-spacing:-0.003456pt;}
.ls27_c00040{letter-spacing:0.000000pt;}
.ls21_c00040{letter-spacing:0.003456pt;}
.ls17_c00040{letter-spacing:0.004256pt;}
.ls2_c00040{letter-spacing:0.006400pt;}
.ls8_c00040{letter-spacing:0.008512pt;}
.lsb_c00040{letter-spacing:0.012768pt;}
.ls3_c00040{letter-spacing:0.012800pt;}
.lsd_c00040{letter-spacing:0.017024pt;}
.ls2d_c00040{letter-spacing:0.019200pt;}
.ls6_c00040{letter-spacing:0.021280pt;}
.ls11_c00040{letter-spacing:0.025536pt;}
.ls4_c00040{letter-spacing:0.025600pt;}
.lsf_c00040{letter-spacing:0.029792pt;}
.ls1f_c00040{letter-spacing:0.034048pt;}
.ls1b_c00040{letter-spacing:0.038304pt;}
.ls9_c00040{letter-spacing:0.042560pt;}
.ls0_c00040{letter-spacing:0.042752pt;}
.ls14_c00040{letter-spacing:0.046816pt;}
.ls2a_c00040{letter-spacing:0.048672pt;}
.lsa_c00040{letter-spacing:0.051072pt;}
.lse_c00040{letter-spacing:0.055328pt;}
.ls12_c00040{letter-spacing:0.059584pt;}
.ls19_c00040{letter-spacing:0.063840pt;}
.ls1d_c00040{letter-spacing:0.067520pt;}
.ls15_c00040{letter-spacing:0.068096pt;}
.ls1e_c00040{letter-spacing:0.072352pt;}
.ls23_c00040{letter-spacing:0.076608pt;}
.ls18_c00040{letter-spacing:0.092480pt;}
.lsc_c00040{letter-spacing:0.119168pt;}
.ls7_c00040{letter-spacing:0.168320pt;}
.ls3f_c00040{letter-spacing:0.304128pt;}
.ls22_c00040{letter-spacing:0.307584pt;}
.ls25_c00040{letter-spacing:0.311680pt;}
.ls33_c00040{letter-spacing:0.314496pt;}
.ls39_c00040{letter-spacing:0.321408pt;}
.ls3c_c00040{letter-spacing:0.327712pt;}
.ls13_c00040{letter-spacing:0.340480pt;}
.ls20_c00040{letter-spacing:0.412480pt;}
.ls24_c00040{letter-spacing:0.952320pt;}
.ls10_c00040{letter-spacing:1.272320pt;}
.ls37_c00040{letter-spacing:1.293824pt;}
.ls16_c00040{letter-spacing:2.255680pt;}
.ls1a_c00040{letter-spacing:3.192320pt;}
.ls1c_c00040{letter-spacing:4.472320pt;}
.ls26_c00040{letter-spacing:6.392320pt;}
.ls3b_c00040{letter-spacing:7.056448pt;}
.ls3a_c00040{letter-spacing:9.933504pt;}
.ls36_c00040{letter-spacing:11.214560pt;}
.ls5_c00040{letter-spacing:32.000000pt;}
.ls1_c00040{letter-spacing:1090.880000pt;}
.ws0_c00040{word-spacing:-15.993600pt;}
.ws3_c00040{word-spacing:-11.950848pt;}
.wsa_c00040{word-spacing:-11.865728pt;}
.ws4_c00040{word-spacing:-11.831680pt;}
.wsb_c00040{word-spacing:-9.929088pt;}
.ws6_c00040{word-spacing:-9.922176pt;}
.wse_c00040{word-spacing:-9.915264pt;}
.wsf_c00040{word-spacing:-9.911808pt;}
.wsc_c00040{word-spacing:-9.611136pt;}
.ws2_c00040{word-spacing:-9.607680pt;}
.ws8_c00040{word-spacing:-9.604224pt;}
.ws9_c00040{word-spacing:-9.600768pt;}
.ws5_c00040{word-spacing:-9.597312pt;}
.wsd_c00040{word-spacing:-9.593856pt;}
.ws7_c00040{word-spacing:-9.586944pt;}
.ws1_c00040{word-spacing:-9.408672pt;}
.ws79_c00040{word-spacing:-0.038304pt;}
.ws22_c00040{word-spacing:-0.034048pt;}
.ws48_c00040{word-spacing:-0.029792pt;}
.ws1e_c00040{word-spacing:-0.025600pt;}
.ws5b_c00040{word-spacing:-0.025536pt;}
.ws72_c00040{word-spacing:-0.021280pt;}
.ws4c_c00040{word-spacing:-0.017024pt;}
.ws49_c00040{word-spacing:-0.012768pt;}
.ws11_c00040{word-spacing:0.000000pt;}
.ws5c_c00040{word-spacing:0.021280pt;}
.ws23_c00040{word-spacing:0.025536pt;}
.ws10_c00040{word-spacing:0.037408pt;}
.ws30_c00040{word-spacing:0.268128pt;}
.ws2d_c00040{word-spacing:0.276640pt;}
.ws2e_c00040{word-spacing:0.289408pt;}
.ws2f_c00040{word-spacing:0.310688pt;}
.ws78_c00040{word-spacing:0.600096pt;}
.ws76_c00040{word-spacing:0.625632pt;}
.ws8d_c00040{word-spacing:0.634144pt;}
.ws8e_c00040{word-spacing:0.642816pt;}
.ws77_c00040{word-spacing:0.680960pt;}
.ws81_c00040{word-spacing:0.898016pt;}
.ws41_c00040{word-spacing:0.919296pt;}
.ws82_c00040{word-spacing:0.923552pt;}
.ws95_c00040{word-spacing:0.927808pt;}
.ws83_c00040{word-spacing:0.932064pt;}
.ws43_c00040{word-spacing:0.936320pt;}
.ws38_c00040{word-spacing:0.944832pt;}
.ws42_c00040{word-spacing:0.949088pt;}
.ws44_c00040{word-spacing:0.957600pt;}
.ws94_c00040{word-spacing:1.225728pt;}
.ws93_c00040{word-spacing:1.242752pt;}
.ws56_c00040{word-spacing:1.264032pt;}
.ws2c_c00040{word-spacing:1.268288pt;}
.ws2b_c00040{word-spacing:1.272544pt;}
.ws55_c00040{word-spacing:1.281056pt;}
.ws69_c00040{word-spacing:1.289568pt;}
.ws57_c00040{word-spacing:1.310848pt;}
.ws3e_c00040{word-spacing:1.570464pt;}
.ws40_c00040{word-spacing:1.578976pt;}
.ws67_c00040{word-spacing:1.583232pt;}
.ws68_c00040{word-spacing:1.587488pt;}
.ws3f_c00040{word-spacing:1.600256pt;}
.ws85_c00040{word-spacing:1.881152pt;}
.ws84_c00040{word-spacing:1.885408pt;}
.ws62_c00040{word-spacing:1.898176pt;}
.ws7b_c00040{word-spacing:1.902432pt;}
.ws61_c00040{word-spacing:1.910944pt;}
.ws60_c00040{word-spacing:1.919456pt;}
.ws7a_c00040{word-spacing:1.921536pt;}
.ws6a_c00040{word-spacing:2.217376pt;}
.ws31_c00040{word-spacing:2.242912pt;}
.ws33_c00040{word-spacing:2.251424pt;}
.ws32_c00040{word-spacing:2.259936pt;}
.ws6f_c00040{word-spacing:2.519552pt;}
.ws6e_c00040{word-spacing:2.523808pt;}
.ws89_c00040{word-spacing:2.536576pt;}
.ws6d_c00040{word-spacing:2.540832pt;}
.ws66_c00040{word-spacing:2.545088pt;}
.ws88_c00040{word-spacing:2.553600pt;}
.ws39_c00040{word-spacing:3.157952pt;}
.ws21_c00040{word-spacing:3.170720pt;}
.ws3a_c00040{word-spacing:3.174976pt;}
.ws1f_c00040{word-spacing:3.196256pt;}
.ws20_c00040{word-spacing:3.209024pt;}
.ws37_c00040{word-spacing:3.792096pt;}
.ws36_c00040{word-spacing:3.800608pt;}
.ws35_c00040{word-spacing:3.804864pt;}
.ws34_c00040{word-spacing:3.813376pt;}
.ws8f_c00040{word-spacing:3.826144pt;}
.ws14_c00040{word-spacing:3.827200pt;}
.ws13_c00040{word-spacing:3.833600pt;}
.ws90_c00040{word-spacing:3.834656pt;}
.ws12_c00040{word-spacing:3.865600pt;}
.ws15_c00040{word-spacing:3.884800pt;}
.ws46_c00040{word-spacing:4.451776pt;}
.ws47_c00040{word-spacing:4.456032pt;}
.ws45_c00040{word-spacing:4.477312pt;}
.ws28_c00040{word-spacing:4.758208pt;}
.ws27_c00040{word-spacing:4.770976pt;}
.ws29_c00040{word-spacing:4.783744pt;}
.ws2a_c00040{word-spacing:4.792256pt;}
.ws24_c00040{word-spacing:4.796512pt;}
.ws25_c00040{word-spacing:4.800384pt;}
.ws26_c00040{word-spacing:4.805024pt;}
.ws3d_c00040{word-spacing:5.090176pt;}
.ws3c_c00040{word-spacing:5.094432pt;}
.ws3b_c00040{word-spacing:5.115712pt;}
.ws53_c00040{word-spacing:6.022240pt;}
.ws52_c00040{word-spacing:6.035008pt;}
.ws8b_c00040{word-spacing:6.043520pt;}
.ws8c_c00040{word-spacing:6.052032pt;}
.ws54_c00040{word-spacing:6.060544pt;}
.ws8a_c00040{word-spacing:6.077568pt;}
.ws6c_c00040{word-spacing:6.098848pt;}
.ws6b_c00040{word-spacing:6.358464pt;}
.ws16_c00040{word-spacing:6.649600pt;}
.ws17_c00040{word-spacing:6.720000pt;}
.ws65_c00040{word-spacing:6.992608pt;}
.ws64_c00040{word-spacing:6.996864pt;}
.ws70_c00040{word-spacing:7.001120pt;}
.ws71_c00040{word-spacing:7.005376pt;}
.ws63_c00040{word-spacing:7.047936pt;}
.ws75_c00040{word-spacing:7.665056pt;}
.ws74_c00040{word-spacing:7.673568pt;}
.ws73_c00040{word-spacing:7.677824pt;}
.ws51_c00040{word-spacing:7.967232pt;}
.ws4f_c00040{word-spacing:7.971488pt;}
.ws5f_c00040{word-spacing:7.980000pt;}
.ws50_c00040{word-spacing:7.988512pt;}
.ws4d_c00040{word-spacing:7.997024pt;}
.ws4e_c00040{word-spacing:8.000640pt;}
.ws1d_c00040{word-spacing:8.012800pt;}
.ws87_c00040{word-spacing:8.601376pt;}
.ws86_c00040{word-spacing:8.614144pt;}
.ws7f_c00040{word-spacing:9.244032pt;}
.ws5e_c00040{word-spacing:9.252544pt;}
.ws80_c00040{word-spacing:9.261056pt;}
.ws5d_c00040{word-spacing:9.278080pt;}
.ws7e_c00040{word-spacing:9.576000pt;}
.ws7c_c00040{word-spacing:9.580256pt;}
.ws7d_c00040{word-spacing:9.618560pt;}
.ws5a_c00040{word-spacing:9.895200pt;}
.ws59_c00040{word-spacing:9.937760pt;}
.ws58_c00040{word-spacing:9.942016pt;}
.ws4b_c00040{word-spacing:11.176256pt;}
.ws19_c00040{word-spacing:11.187200pt;}
.ws4a_c00040{word-spacing:11.189024pt;}
.ws18_c00040{word-spacing:11.232000pt;}
.ws92_c00040{word-spacing:13.099968pt;}
.ws91_c00040{word-spacing:13.108480pt;}
.ws1c_c00040{word-spacing:19.180800pt;}
.ws1b_c00040{word-spacing:19.283200pt;}
.ws1a_c00040{word-spacing:20.166400pt;}
._8_c00040{margin-left:-9.710016pt;}
._a_c00040{margin-left:-6.558208pt;}
._2_c00040{margin-left:-4.160000pt;}
._0_c00040{margin-left:-1.175680pt;}
._1_c00040{width:1.024000pt;}
._5_c00040{width:2.303808pt;}
._3_c00040{width:3.596640pt;}
._4_c00040{width:4.813536pt;}
._b_c00040{width:6.699840pt;}
._7_c00040{width:7.992768pt;}
._9_c00040{width:9.269568pt;}
._6_c00040{width:11.508480pt;}
._c_c00040{width:13.541888pt;}
.fs5_c00040{font-size:34.560000pt;}
.fs3_c00040{font-size:37.440000pt;}
.fs4_c00040{font-size:42.560000pt;}
.fs1_c00040{font-size:48.000000pt;}
.fs0_c00040{font-size:53.440000pt;}
.fs2_c00040{font-size:64.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.y3_c00040{bottom:51.067067pt;}
.y41_c00040{bottom:101.065947pt;}
.y40_c00040{bottom:113.394427pt;}
.y3f_c00040{bottom:129.631067pt;}
.y3e_c00040{bottom:141.869947pt;}
.y3d_c00040{bottom:154.191067pt;}
.y3c_c00040{bottom:166.431067pt;}
.y3b_c00040{bottom:178.673947pt;}
.y3a_c00040{bottom:190.995067pt;}
.y39_c00040{bottom:203.231067pt;}
.y38_c00040{bottom:215.467067pt;}
.y37_c00040{bottom:227.794427pt;}
.y36_c00040{bottom:244.031067pt;}
.y35_c00040{bottom:256.271067pt;}
.y34_c00040{bottom:268.505947pt;}
.y33_c00040{bottom:280.833307pt;}
.y32_c00040{bottom:297.069947pt;}
.y31_c00040{bottom:309.305947pt;}
.y30_c00040{bottom:321.633947pt;}
.y2f_c00040{bottom:333.869947pt;}
.y2e_c00040{bottom:346.031467pt;}
.y2d_c00040{bottom:358.427067pt;}
.y2c_c00040{bottom:370.677947pt;}
.y2b_c00040{bottom:382.913947pt;}
.y2a_c00040{bottom:395.235067pt;}
.y29_c00040{bottom:407.471067pt;}
.y28_c00040{bottom:419.713947pt;}
.y27_c00040{bottom:432.035067pt;}
.y26_c00040{bottom:444.271067pt;}
.y25_c00040{bottom:456.509307pt;}
.y24_c00040{bottom:472.831067pt;}
.y23_c00040{bottom:485.071067pt;}
.y22_c00040{bottom:497.303307pt;}
.y21_c00040{bottom:509.624427pt;}
.y20_c00040{bottom:521.785947pt;}
.y1f_c00040{bottom:534.109307pt;}
.y1e_c00040{bottom:550.431067pt;}
.y1d_c00040{bottom:562.667067pt;}
.y1c_c00040{bottom:562.674427pt;}
.y1b_c00040{bottom:578.911067pt;}
.y1a_c00040{bottom:591.149947pt;}
.y19_c00040{bottom:603.471067pt;}
.y18_c00040{bottom:615.709947pt;}
.y17_c00040{bottom:627.945947pt;}
.y16_c00040{bottom:640.275067pt;}
.y15_c00040{bottom:652.511067pt;}
.y14_c00040{bottom:664.747067pt;}
.y13_c00040{bottom:677.075067pt;}
.y12_c00040{bottom:689.311067pt;}
.y11_c00040{bottom:701.549947pt;}
.y10_c00040{bottom:713.871067pt;}
.yf_c00040{bottom:726.109307pt;}
.ye_c00040{bottom:742.345947pt;}
.yd_c00040{bottom:768.187067pt;}
.yc_c00040{bottom:786.587067pt;}
.yb_c00040{bottom:804.987067pt;}
.ya_c00040{bottom:830.747067pt;}
.y9_c00040{bottom:861.387067pt;}
.y8_c00040{bottom:891.947067pt;}
.y7_c00040{bottom:922.587067pt;}
.y6_c00040{bottom:953.147067pt;}
.y5_c00040{bottom:983.787067pt;}
.y4_c00040{bottom:1014.347067pt;}
.y2_c00040{bottom:1046.987067pt;}
.y1_c00040{bottom:1063.867067pt;}
.h8_c00040{height:44.388750pt;}
.ha_c00040{height:44.393230pt;}
.h9_c00040{height:44.403790pt;}
.h1_c00040{height:44.724687pt;}
.h2_c00040{height:50.062500pt;}
.h6_c00040{height:53.562500pt;}
.h5_c00040{height:54.125000pt;}
.h4_c00040{height:57.894063pt;}
.h7_c00040{height:62.812500pt;}
.h3_c00040{height:64.142500pt;}
.h0_c00040{height:1122.666667pt;}
.w1_c00040{width:793.333333pt;}
.w0_c00040{width:793.626667pt;}
.x0_c00040{left:0.000000pt;}
.x1_c00040{left:113.440000pt;}
.x2_c00040{left:125.441200pt;}
.x3_c00040{left:165.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_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_7c726014e0b77d3ac8f9befc.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.100098;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00041;src:url('chunks/assets/font_6ccb178674aa869e011fe5c5.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00041;src:url('chunks/assets/font_c4084596c89b85801577f099.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00041;src:url('chunks/assets/font_3d2de5b4156c4bb8dd03867f.woff2')format("woff");}.ff5_c00041{font-family:ff5_c00041;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_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;}
.v1_c00041{vertical-align:15.840000px;}
.v2_c00041{vertical-align:29.880000px;}
.ls1c_c00041{letter-spacing:-0.151200px;}
.ls25_c00041{letter-spacing:-0.108000px;}
.ls29_c00041{letter-spacing:-0.057600px;}
.ls1d_c00041{letter-spacing:-0.050400px;}
.ls2a_c00041{letter-spacing:-0.043200px;}
.ls1a_c00041{letter-spacing:-0.036072px;}
.ls2b_c00041{letter-spacing:-0.036000px;}
.ls20_c00041{letter-spacing:-0.028800px;}
.ls1e_c00041{letter-spacing:-0.021600px;}
.ls24_c00041{letter-spacing:-0.014400px;}
.ls2e_c00041{letter-spacing:-0.011664px;}
.ls2d_c00041{letter-spacing:-0.007776px;}
.ls21_c00041{letter-spacing:-0.007200px;}
.ls2c_c00041{letter-spacing:-0.003888px;}
.ls1b_c00041{letter-spacing:0.000000px;}
.ls2_c00041{letter-spacing:0.007200px;}
.lse_c00041{letter-spacing:0.009576px;}
.ls7_c00041{letter-spacing:0.014364px;}
.ls1_c00041{letter-spacing:0.014400px;}
.ls12_c00041{letter-spacing:0.019152px;}
.ls4_c00041{letter-spacing:0.021600px;}
.ls16_c00041{letter-spacing:0.023940px;}
.ls6_c00041{letter-spacing:0.028800px;}
.ls19_c00041{letter-spacing:0.033516px;}
.ls9_c00041{letter-spacing:0.034560px;}
.ls5_c00041{letter-spacing:0.036000px;}
.ls17_c00041{letter-spacing:0.038304px;}
.lsc_c00041{letter-spacing:0.043092px;}
.ls3_c00041{letter-spacing:0.043200px;}
.lsd_c00041{letter-spacing:0.047880px;}
.lsb_c00041{letter-spacing:0.052668px;}
.ls22_c00041{letter-spacing:0.054756px;}
.ls14_c00041{letter-spacing:0.057456px;}
.ls10_c00041{letter-spacing:0.062244px;}
.ls1f_c00041{letter-spacing:0.072000px;}
.lsf_c00041{letter-spacing:0.075960px;}
.ls8_c00041{letter-spacing:0.076608px;}
.ls15_c00041{letter-spacing:0.090972px;}
.ls23_c00041{letter-spacing:0.093600px;}
.ls2f_c00041{letter-spacing:0.095760px;}
.lsa_c00041{letter-spacing:0.104040px;}
.ls11_c00041{letter-spacing:0.351360px;}
.ls13_c00041{letter-spacing:0.435960px;}
.ls18_c00041{letter-spacing:0.464040px;}
.ls28_c00041{letter-spacing:2.880000px;}
.ls26_c00041{letter-spacing:4.320000px;}
.ls27_c00041{letter-spacing:16.200000px;}
.ls0_c00041{letter-spacing:1227.240000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00041{word-spacing:-13.401612px;}
.ws6_c00041{word-spacing:-13.363308px;}
.ws8_c00041{word-spacing:-13.358520px;}
.ws2_c00041{word-spacing:-13.320216px;}
.ws4_c00041{word-spacing:-13.310640px;}
.ws1_c00041{word-spacing:-10.808640px;}
.ws7_c00041{word-spacing:-10.804752px;}
.ws3_c00041{word-spacing:-10.800864px;}
.ws0_c00041{word-spacing:-10.584756px;}
.ws18_c00041{word-spacing:-0.093600px;}
.ws3a_c00041{word-spacing:-0.043092px;}
.ws3c_c00041{word-spacing:-0.033516px;}
.ws3b_c00041{word-spacing:-0.023940px;}
.wsa_c00041{word-spacing:0.000000px;}
.ws17_c00041{word-spacing:0.007200px;}
.ws9_c00041{word-spacing:0.126252px;}
.ws14_c00041{word-spacing:0.316800px;}
.ws4a_c00041{word-spacing:0.320796px;}
.ws4b_c00041{word-spacing:0.330372px;}
.ws46_c00041{word-spacing:0.335160px;}
.ws49_c00041{word-spacing:0.339948px;}
.ws44_c00041{word-spacing:0.357696px;}
.ws39_c00041{word-spacing:0.363888px;}
.ws13_c00041{word-spacing:0.388800px;}
.ws45_c00041{word-spacing:0.722988px;}
.ws41_c00041{word-spacing:1.000692px;}
.ws40_c00041{word-spacing:1.048572px;}
.ws2e_c00041{word-spacing:1.058400px;}
.ws4c_c00041{word-spacing:1.062936px;}
.ws28_c00041{word-spacing:1.072800px;}
.ws2d_c00041{word-spacing:1.094400px;}
.ws2f_c00041{word-spacing:1.101600px;}
.ws27_c00041{word-spacing:1.137600px;}
.ws2a_c00041{word-spacing:1.454400px;}
.ws2b_c00041{word-spacing:1.540800px;}
.wsc_c00041{word-spacing:1.713600px;}
.wsd_c00041{word-spacing:1.778400px;}
.ws20_c00041{word-spacing:1.814400px;}
.wsf_c00041{word-spacing:1.821600px;}
.wse_c00041{word-spacing:1.843200px;}
.ws1f_c00041{word-spacing:1.850400px;}
.ws1a_c00041{word-spacing:2.160000px;}
.ws19_c00041{word-spacing:2.210400px;}
.ws31_c00041{word-spacing:2.462400px;}
.ws30_c00041{word-spacing:2.541600px;}
.ws32_c00041{word-spacing:2.563200px;}
.ws1b_c00041{word-spacing:2.570400px;}
.ws1c_c00041{word-spacing:2.628000px;}
.ws3f_c00041{word-spacing:2.805768px;}
.ws3e_c00041{word-spacing:2.839284px;}
.wsb_c00041{word-spacing:2.865600px;}
.ws3d_c00041{word-spacing:2.882376px;}
.ws2c_c00041{word-spacing:2.937600px;}
.ws47_c00041{word-spacing:3.203172px;}
.ws48_c00041{word-spacing:3.236688px;}
.ws1d_c00041{word-spacing:4.233600px;}
.ws1e_c00041{word-spacing:4.334400px;}
.ws16_c00041{word-spacing:4.680000px;}
.ws15_c00041{word-spacing:4.744800px;}
.ws22_c00041{word-spacing:5.731200px;}
.ws21_c00041{word-spacing:5.774400px;}
.ws36_c00041{word-spacing:6.085548px;}
.ws37_c00041{word-spacing:6.095124px;}
.ws33_c00041{word-spacing:6.854400px;}
.ws34_c00041{word-spacing:6.876000px;}
.ws35_c00041{word-spacing:6.890400px;}
.ws43_c00041{word-spacing:10.418688px;}
.ws42_c00041{word-spacing:10.433052px;}
.ws24_c00041{word-spacing:10.807200px;}
.ws4d_c00041{word-spacing:11.495988px;}
.ws4e_c00041{word-spacing:11.500776px;}
.ws38_c00041{word-spacing:12.927600px;}
.ws10_c00041{word-spacing:13.672800px;}
.ws12_c00041{word-spacing:13.723200px;}
.ws11_c00041{word-spacing:13.752000px;}
.ws29_c00041{word-spacing:16.164000px;}
.ws26_c00041{word-spacing:16.552800px;}
.ws25_c00041{word-spacing:16.646400px;}
.ws23_c00041{word-spacing:16.927200px;}
._4_c00041{margin-left:-16.200000px;}
._2_c00041{margin-left:-4.694400px;}
._3_c00041{margin-left:-3.340800px;}
._5_c00041{margin-left:-2.296800px;}
._0_c00041{margin-left:-1.173600px;}
._1_c00041{width:1.152000px;}
._6_c00041{width:3.110400px;}
._7_c00041{width:6.119064px;}
.fc0_c00041{color:rgb(0,0,0);}
.fs5_c00041{font-size:38.880000px;}
.fs3_c00041{font-size:42.120000px;}
.fs4_c00041{font-size:47.880000px;}
.fs2_c00041{font-size:54.000000px;}
.fs0_c00041{font-size:60.120000px;}
.fs1_c00041{font-size:72.000000px;}
.y0_c00041{bottom:0.000000px;}
.y3_c00041{bottom:57.450450px;}
.y2a_c00041{bottom:109.207080px;}
.y29_c00041{bottom:123.068340px;}
.y28_c00041{bottom:136.833840px;}
.y27_c00041{bottom:150.515550px;}
.y26_c00041{bottom:164.460000px;}
.y25_c00041{bottom:182.642430px;}
.y24_c00041{bottom:196.503690px;}
.y23_c00041{bottom:210.364950px;}
.y22_c00041{bottom:224.134230px;}
.y21_c00041{bottom:242.398470px;}
.y20_c00041{bottom:260.773230px;}
.y1f_c00041{bottom:279.039450px;}
.y1e_c00041{bottom:292.804950px;}
.y1d_c00041{bottom:306.570450px;}
.y1c_c00041{bottom:321.780450px;}
.y1b_c00041{bottom:342.480450px;}
.y1a_c00041{bottom:363.180450px;}
.y19_c00041{bottom:400.260600px;}
.y18_c00041{bottom:434.640600px;}
.y17_c00041{bottom:469.110450px;}
.y16_c00041{bottom:503.490450px;}
.y15_c00041{bottom:537.960450px;}
.y14_c00041{bottom:572.340450px;}
.y13_c00041{bottom:606.810450px;}
.y12_c00041{bottom:641.190450px;}
.y11_c00041{bottom:675.660450px;}
.y10_c00041{bottom:719.040600px;}
.yf_c00041{bottom:753.510600px;}
.ye_c00041{bottom:787.890600px;}
.yd_c00041{bottom:822.360450px;}
.yc_c00041{bottom:856.740450px;}
.yb_c00041{bottom:891.210450px;}
.ya_c00041{bottom:925.590450px;}
.y9_c00041{bottom:969.060450px;}
.y8_c00041{bottom:1003.440450px;}
.y7_c00041{bottom:1037.910450px;}
.y6_c00041{bottom:1072.290450px;}
.y5_c00041{bottom:1106.760450px;}
.y4_c00041{bottom:1141.140450px;}
.y2_c00041{bottom:1173.810450px;}
.y1_c00041{bottom:1196.850450px;}
.h8_c00041{height:49.937344px;}
.ha_c00041{height:49.939744px;}
.h9_c00041{height:49.945264px;}
.h1_c00041{height:50.315273px;}
.h4_c00041{height:60.257812px;}
.h5_c00041{height:60.890625px;}
.h7_c00041{height:65.130220px;}
.h6_c00041{height:65.130820px;}
.h2_c00041{height:70.664062px;}
.h3_c00041{height:72.160313px;}
.h0_c00041{height:1263.000000px;}
.w1_c00041{width:892.500000px;}
.w0_c00041{width:892.830000px;}
.x0_c00041{left:0.000000px;}
.x2_c00041{left:127.620000px;}
.x4_c00041{left:141.116850px;}
.x3_c00041{left:180.810000px;}
.x1_c00041{left:689.310000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.v1_c00041{vertical-align:14.080000pt;}
.v2_c00041{vertical-align:26.560000pt;}
.ls1c_c00041{letter-spacing:-0.134400pt;}
.ls25_c00041{letter-spacing:-0.096000pt;}
.ls29_c00041{letter-spacing:-0.051200pt;}
.ls1d_c00041{letter-spacing:-0.044800pt;}
.ls2a_c00041{letter-spacing:-0.038400pt;}
.ls1a_c00041{letter-spacing:-0.032064pt;}
.ls2b_c00041{letter-spacing:-0.032000pt;}
.ls20_c00041{letter-spacing:-0.025600pt;}
.ls1e_c00041{letter-spacing:-0.019200pt;}
.ls24_c00041{letter-spacing:-0.012800pt;}
.ls2e_c00041{letter-spacing:-0.010368pt;}
.ls2d_c00041{letter-spacing:-0.006912pt;}
.ls21_c00041{letter-spacing:-0.006400pt;}
.ls2c_c00041{letter-spacing:-0.003456pt;}
.ls1b_c00041{letter-spacing:0.000000pt;}
.ls2_c00041{letter-spacing:0.006400pt;}
.lse_c00041{letter-spacing:0.008512pt;}
.ls7_c00041{letter-spacing:0.012768pt;}
.ls1_c00041{letter-spacing:0.012800pt;}
.ls12_c00041{letter-spacing:0.017024pt;}
.ls4_c00041{letter-spacing:0.019200pt;}
.ls16_c00041{letter-spacing:0.021280pt;}
.ls6_c00041{letter-spacing:0.025600pt;}
.ls19_c00041{letter-spacing:0.029792pt;}
.ls9_c00041{letter-spacing:0.030720pt;}
.ls5_c00041{letter-spacing:0.032000pt;}
.ls17_c00041{letter-spacing:0.034048pt;}
.lsc_c00041{letter-spacing:0.038304pt;}
.ls3_c00041{letter-spacing:0.038400pt;}
.lsd_c00041{letter-spacing:0.042560pt;}
.lsb_c00041{letter-spacing:0.046816pt;}
.ls22_c00041{letter-spacing:0.048672pt;}
.ls14_c00041{letter-spacing:0.051072pt;}
.ls10_c00041{letter-spacing:0.055328pt;}
.ls1f_c00041{letter-spacing:0.064000pt;}
.lsf_c00041{letter-spacing:0.067520pt;}
.ls8_c00041{letter-spacing:0.068096pt;}
.ls15_c00041{letter-spacing:0.080864pt;}
.ls23_c00041{letter-spacing:0.083200pt;}
.ls2f_c00041{letter-spacing:0.085120pt;}
.lsa_c00041{letter-spacing:0.092480pt;}
.ls11_c00041{letter-spacing:0.312320pt;}
.ls13_c00041{letter-spacing:0.387520pt;}
.ls18_c00041{letter-spacing:0.412480pt;}
.ls28_c00041{letter-spacing:2.560000pt;}
.ls26_c00041{letter-spacing:3.840000pt;}
.ls27_c00041{letter-spacing:14.400000pt;}
.ls0_c00041{letter-spacing:1090.880000pt;}
.ws5_c00041{word-spacing:-11.912544pt;}
.ws6_c00041{word-spacing:-11.878496pt;}
.ws8_c00041{word-spacing:-11.874240pt;}
.ws2_c00041{word-spacing:-11.840192pt;}
.ws4_c00041{word-spacing:-11.831680pt;}
.ws1_c00041{word-spacing:-9.607680pt;}
.ws7_c00041{word-spacing:-9.604224pt;}
.ws3_c00041{word-spacing:-9.600768pt;}
.ws0_c00041{word-spacing:-9.408672pt;}
.ws18_c00041{word-spacing:-0.083200pt;}
.ws3a_c00041{word-spacing:-0.038304pt;}
.ws3c_c00041{word-spacing:-0.029792pt;}
.ws3b_c00041{word-spacing:-0.021280pt;}
.wsa_c00041{word-spacing:0.000000pt;}
.ws17_c00041{word-spacing:0.006400pt;}
.ws9_c00041{word-spacing:0.112224pt;}
.ws14_c00041{word-spacing:0.281600pt;}
.ws4a_c00041{word-spacing:0.285152pt;}
.ws4b_c00041{word-spacing:0.293664pt;}
.ws46_c00041{word-spacing:0.297920pt;}
.ws49_c00041{word-spacing:0.302176pt;}
.ws44_c00041{word-spacing:0.317952pt;}
.ws39_c00041{word-spacing:0.323456pt;}
.ws13_c00041{word-spacing:0.345600pt;}
.ws45_c00041{word-spacing:0.642656pt;}
.ws41_c00041{word-spacing:0.889504pt;}
.ws40_c00041{word-spacing:0.932064pt;}
.ws2e_c00041{word-spacing:0.940800pt;}
.ws4c_c00041{word-spacing:0.944832pt;}
.ws28_c00041{word-spacing:0.953600pt;}
.ws2d_c00041{word-spacing:0.972800pt;}
.ws2f_c00041{word-spacing:0.979200pt;}
.ws27_c00041{word-spacing:1.011200pt;}
.ws2a_c00041{word-spacing:1.292800pt;}
.ws2b_c00041{word-spacing:1.369600pt;}
.wsc_c00041{word-spacing:1.523200pt;}
.wsd_c00041{word-spacing:1.580800pt;}
.ws20_c00041{word-spacing:1.612800pt;}
.wsf_c00041{word-spacing:1.619200pt;}
.wse_c00041{word-spacing:1.638400pt;}
.ws1f_c00041{word-spacing:1.644800pt;}
.ws1a_c00041{word-spacing:1.920000pt;}
.ws19_c00041{word-spacing:1.964800pt;}
.ws31_c00041{word-spacing:2.188800pt;}
.ws30_c00041{word-spacing:2.259200pt;}
.ws32_c00041{word-spacing:2.278400pt;}
.ws1b_c00041{word-spacing:2.284800pt;}
.ws1c_c00041{word-spacing:2.336000pt;}
.ws3f_c00041{word-spacing:2.494016pt;}
.ws3e_c00041{word-spacing:2.523808pt;}
.wsb_c00041{word-spacing:2.547200pt;}
.ws3d_c00041{word-spacing:2.562112pt;}
.ws2c_c00041{word-spacing:2.611200pt;}
.ws47_c00041{word-spacing:2.847264pt;}
.ws48_c00041{word-spacing:2.877056pt;}
.ws1d_c00041{word-spacing:3.763200pt;}
.ws1e_c00041{word-spacing:3.852800pt;}
.ws16_c00041{word-spacing:4.160000pt;}
.ws15_c00041{word-spacing:4.217600pt;}
.ws22_c00041{word-spacing:5.094400pt;}
.ws21_c00041{word-spacing:5.132800pt;}
.ws36_c00041{word-spacing:5.409376pt;}
.ws37_c00041{word-spacing:5.417888pt;}
.ws33_c00041{word-spacing:6.092800pt;}
.ws34_c00041{word-spacing:6.112000pt;}
.ws35_c00041{word-spacing:6.124800pt;}
.ws43_c00041{word-spacing:9.261056pt;}
.ws42_c00041{word-spacing:9.273824pt;}
.ws24_c00041{word-spacing:9.606400pt;}
.ws4d_c00041{word-spacing:10.218656pt;}
.ws4e_c00041{word-spacing:10.222912pt;}
.ws38_c00041{word-spacing:11.491200pt;}
.ws10_c00041{word-spacing:12.153600pt;}
.ws12_c00041{word-spacing:12.198400pt;}
.ws11_c00041{word-spacing:12.224000pt;}
.ws29_c00041{word-spacing:14.368000pt;}
.ws26_c00041{word-spacing:14.713600pt;}
.ws25_c00041{word-spacing:14.796800pt;}
.ws23_c00041{word-spacing:15.046400pt;}
._4_c00041{margin-left:-14.400000pt;}
._2_c00041{margin-left:-4.172800pt;}
._3_c00041{margin-left:-2.969600pt;}
._5_c00041{margin-left:-2.041600pt;}
._0_c00041{margin-left:-1.043200pt;}
._1_c00041{width:1.024000pt;}
._6_c00041{width:2.764800pt;}
._7_c00041{width:5.439168pt;}
.fs5_c00041{font-size:34.560000pt;}
.fs3_c00041{font-size:37.440000pt;}
.fs4_c00041{font-size:42.560000pt;}
.fs2_c00041{font-size:48.000000pt;}
.fs0_c00041{font-size:53.440000pt;}
.fs1_c00041{font-size:64.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y3_c00041{bottom:51.067067pt;}
.y2a_c00041{bottom:97.072960pt;}
.y29_c00041{bottom:109.394080pt;}
.y28_c00041{bottom:121.630080pt;}
.y27_c00041{bottom:133.791600pt;}
.y26_c00041{bottom:146.186667pt;}
.y25_c00041{bottom:162.348827pt;}
.y24_c00041{bottom:174.669947pt;}
.y23_c00041{bottom:186.991067pt;}
.y22_c00041{bottom:199.230427pt;}
.y21_c00041{bottom:215.465307pt;}
.y20_c00041{bottom:231.798427pt;}
.y1f_c00041{bottom:248.035067pt;}
.y1e_c00041{bottom:260.271067pt;}
.y1d_c00041{bottom:272.507067pt;}
.y1c_c00041{bottom:286.027067pt;}
.y1b_c00041{bottom:304.427067pt;}
.y1a_c00041{bottom:322.827067pt;}
.y19_c00041{bottom:355.787200pt;}
.y18_c00041{bottom:386.347200pt;}
.y17_c00041{bottom:416.987067pt;}
.y16_c00041{bottom:447.547067pt;}
.y15_c00041{bottom:478.187067pt;}
.y14_c00041{bottom:508.747067pt;}
.y13_c00041{bottom:539.387067pt;}
.y12_c00041{bottom:569.947067pt;}
.y11_c00041{bottom:600.587067pt;}
.y10_c00041{bottom:639.147200pt;}
.yf_c00041{bottom:669.787200pt;}
.ye_c00041{bottom:700.347200pt;}
.yd_c00041{bottom:730.987067pt;}
.yc_c00041{bottom:761.547067pt;}
.yb_c00041{bottom:792.187067pt;}
.ya_c00041{bottom:822.747067pt;}
.y9_c00041{bottom:861.387067pt;}
.y8_c00041{bottom:891.947067pt;}
.y7_c00041{bottom:922.587067pt;}
.y6_c00041{bottom:953.147067pt;}
.y5_c00041{bottom:983.787067pt;}
.y4_c00041{bottom:1014.347067pt;}
.y2_c00041{bottom:1043.387067pt;}
.y1_c00041{bottom:1063.867067pt;}
.h8_c00041{height:44.388750pt;}
.ha_c00041{height:44.390883pt;}
.h9_c00041{height:44.395790pt;}
.h1_c00041{height:44.724687pt;}
.h4_c00041{height:53.562500pt;}
.h5_c00041{height:54.125000pt;}
.h7_c00041{height:57.893529pt;}
.h6_c00041{height:57.894062pt;}
.h2_c00041{height:62.812500pt;}
.h3_c00041{height:64.142500pt;}
.h0_c00041{height:1122.666667pt;}
.w1_c00041{width:793.333333pt;}
.w0_c00041{width:793.626667pt;}
.x0_c00041{left:0.000000pt;}
.x2_c00041{left:113.440000pt;}
.x4_c00041{left:125.437200pt;}
.x3_c00041{left:160.720000pt;}
.x1_c00041{left:612.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_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_d2fab1b1350055876310f7c0.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.100098;font-style:normal;font-weight:normal;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_9ad11c9553cd3a288bf66a57.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;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_c00042;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00042;src:url('chunks/assets/font_22bba3078e216c4430ed9681.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.102051;font-style:normal;font-weight:normal;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_8e977ab54e33c4bc3b355050.woff2')format("woff");}.ff5_c00042{font-family:ff5_c00042;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_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);}
.v4_c00042{vertical-align:-60.840600px;}
.v3_c00042{vertical-align:-29.880000px;}
.v0_c00042{vertical-align:0.000000px;}
.v1_c00042{vertical-align:15.840000px;}
.v2_c00042{vertical-align:29.880000px;}
.ls20_c00042{letter-spacing:-0.151200px;}
.ls2a_c00042{letter-spacing:-0.079200px;}
.ls24_c00042{letter-spacing:-0.050400px;}
.ls22_c00042{letter-spacing:-0.036000px;}
.ls25_c00042{letter-spacing:-0.028800px;}
.ls23_c00042{letter-spacing:-0.021600px;}
.ls31_c00042{letter-spacing:-0.019440px;}
.ls2f_c00042{letter-spacing:-0.019152px;}
.ls29_c00042{letter-spacing:-0.014400px;}
.ls30_c00042{letter-spacing:-0.011664px;}
.ls2d_c00042{letter-spacing:-0.007776px;}
.ls27_c00042{letter-spacing:-0.007200px;}
.ls2c_c00042{letter-spacing:-0.003888px;}
.ls1f_c00042{letter-spacing:0.000000px;}
.ls19_c00042{letter-spacing:0.003888px;}
.ls3_c00042{letter-spacing:0.007200px;}
.lsa_c00042{letter-spacing:0.009576px;}
.ls14_c00042{letter-spacing:0.014364px;}
.ls4_c00042{letter-spacing:0.014400px;}
.ls18_c00042{letter-spacing:0.019152px;}
.ls13_c00042{letter-spacing:0.023940px;}
.lsd_c00042{letter-spacing:0.028728px;}
.ls2_c00042{letter-spacing:0.028800px;}
.lsf_c00042{letter-spacing:0.033516px;}
.ls11_c00042{letter-spacing:0.038304px;}
.ls9_c00042{letter-spacing:0.043092px;}
.ls8_c00042{letter-spacing:0.047880px;}
.ls0_c00042{letter-spacing:0.048096px;}
.ls5_c00042{letter-spacing:0.050400px;}
.ls1c_c00042{letter-spacing:0.052668px;}
.ls21_c00042{letter-spacing:0.054756px;}
.ls12_c00042{letter-spacing:0.057456px;}
.ls6_c00042{letter-spacing:0.057600px;}
.ls10_c00042{letter-spacing:0.062244px;}
.lse_c00042{letter-spacing:0.067032px;}
.ls32_c00042{letter-spacing:0.071820px;}
.ls15_c00042{letter-spacing:0.075960px;}
.ls16_c00042{letter-spacing:0.076608px;}
.ls1e_c00042{letter-spacing:0.090972px;}
.ls28_c00042{letter-spacing:0.093600px;}
.lsc_c00042{letter-spacing:0.104040px;}
.ls1b_c00042{letter-spacing:0.105336px;}
.ls26_c00042{letter-spacing:0.158400px;}
.ls1d_c00042{letter-spacing:0.189360px;}
.ls1a_c00042{letter-spacing:0.350640px;}
.ls34_c00042{letter-spacing:0.353808px;}
.ls2e_c00042{letter-spacing:0.357696px;}
.ls35_c00042{letter-spacing:0.373464px;}
.ls17_c00042{letter-spacing:0.383040px;}
.lsb_c00042{letter-spacing:0.711360px;}
.ls33_c00042{letter-spacing:0.737352px;}
.ls2b_c00042{letter-spacing:16.243200px;}
.ls7_c00042{letter-spacing:36.000000px;}
.ls1_c00042{letter-spacing:1227.240000px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00042{word-spacing:-17.920800px;}
.ws4_c00042{word-spacing:-13.358520px;}
.ws5_c00042{word-spacing:-13.320216px;}
.ws2_c00042{word-spacing:-13.310640px;}
.ws8_c00042{word-spacing:-13.291488px;}
.ws7_c00042{word-spacing:-11.166336px;}
.wsa_c00042{word-spacing:-10.812528px;}
.ws3_c00042{word-spacing:-10.808640px;}
.ws6_c00042{word-spacing:-10.800864px;}
.ws9_c00042{word-spacing:-10.796976px;}
.wsb_c00042{word-spacing:-10.789200px;}
.ws0_c00042{word-spacing:-10.584756px;}
.ws17_c00042{word-spacing:-0.093600px;}
.ws46_c00042{word-spacing:-0.043092px;}
.ws55_c00042{word-spacing:-0.033516px;}
.ws59_c00042{word-spacing:-0.028728px;}
.ws54_c00042{word-spacing:-0.023940px;}
.ws4e_c00042{word-spacing:-0.019152px;}
.ws42_c00042{word-spacing:-0.004788px;}
.wsd_c00042{word-spacing:0.000000px;}
.ws4d_c00042{word-spacing:0.004788px;}
.ws48_c00042{word-spacing:0.009576px;}
.ws2e_c00042{word-spacing:0.028800px;}
.wsc_c00042{word-spacing:0.042084px;}
.ws15_c00042{word-spacing:0.072000px;}
.ws16_c00042{word-spacing:0.108000px;}
.ws58_c00042{word-spacing:0.287280px;}
.ws31_c00042{word-spacing:0.302400px;}
.ws3a_c00042{word-spacing:0.311220px;}
.ws57_c00042{word-spacing:0.316008px;}
.wse_c00042{word-spacing:0.331200px;}
.ws47_c00042{word-spacing:0.339948px;}
.ws56_c00042{word-spacing:0.344736px;}
.ws39_c00042{word-spacing:0.349524px;}
.wsf_c00042{word-spacing:0.360000px;}
.ws32_c00042{word-spacing:0.489600px;}
.ws3c_c00042{word-spacing:0.675108px;}
.ws53_c00042{word-spacing:0.679896px;}
.ws52_c00042{word-spacing:0.684684px;}
.ws3b_c00042{word-spacing:0.703836px;}
.ws33_c00042{word-spacing:1.447200px;}
.ws34_c00042{word-spacing:1.476000px;}
.ws35_c00042{word-spacing:1.836000px;}
.ws36_c00042{word-spacing:1.857600px;}
.ws50_c00042{word-spacing:2.073204px;}
.ws51_c00042{word-spacing:2.140236px;}
.ws4f_c00042{word-spacing:2.164176px;}
.ws26_c00042{word-spacing:2.872800px;}
.ws24_c00042{word-spacing:2.880000px;}
.ws30_c00042{word-spacing:2.894400px;}
.ws25_c00042{word-spacing:2.916000px;}
.ws19_c00042{word-spacing:3.175200px;}
.ws40_c00042{word-spacing:3.198384px;}
.ws1a_c00042{word-spacing:3.204000px;}
.ws41_c00042{word-spacing:3.212748px;}
.ws3f_c00042{word-spacing:3.217536px;}
.ws23_c00042{word-spacing:3.909600px;}
.ws22_c00042{word-spacing:3.988800px;}
.ws2a_c00042{word-spacing:4.665600px;}
.ws11_c00042{word-spacing:4.672800px;}
.ws1b_c00042{word-spacing:4.687200px;}
.ws10_c00042{word-spacing:4.701600px;}
.ws2b_c00042{word-spacing:4.730400px;}
.ws12_c00042{word-spacing:4.759200px;}
.ws1d_c00042{word-spacing:4.874400px;}
.ws1c_c00042{word-spacing:4.888800px;}
.ws3d_c00042{word-spacing:5.348196px;}
.ws3e_c00042{word-spacing:5.357772px;}
.ws2d_c00042{word-spacing:5.392800px;}
.ws2c_c00042{word-spacing:5.428800px;}
.ws13_c00042{word-spacing:6.840000px;}
.ws14_c00042{word-spacing:6.933600px;}
.ws20_c00042{word-spacing:7.502400px;}
.ws21_c00042{word-spacing:7.509600px;}
.ws1f_c00042{word-spacing:8.265600px;}
.ws1e_c00042{word-spacing:8.330400px;}
.ws4c_c00042{word-spacing:8.953560px;}
.ws29_c00042{word-spacing:8.956800px;}
.ws4b_c00042{word-spacing:8.977500px;}
.ws4a_c00042{word-spacing:8.982288px;}
.ws49_c00042{word-spacing:9.001440px;}
.ws28_c00042{word-spacing:9.007200px;}
.ws37_c00042{word-spacing:9.331812px;}
.ws38_c00042{word-spacing:9.336600px;}
.ws18_c00042{word-spacing:9.734400px;}
.ws45_c00042{word-spacing:11.132100px;}
.ws44_c00042{word-spacing:11.146464px;}
.ws43_c00042{word-spacing:11.160828px;}
.ws27_c00042{word-spacing:12.952800px;}
.ws2f_c00042{word-spacing:16.214400px;}
._3_c00042{margin-left:-16.272000px;}
._4_c00042{margin-left:-4.680000px;}
._0_c00042{margin-left:-1.322640px;}
._1_c00042{width:1.058400px;}
._6_c00042{width:2.108124px;}
._5_c00042{width:9.493416px;}
._2_c00042{width:16.329600px;}
.fc0_c00042{color:rgb(0,0,0);}
.fs5_c00042{font-size:38.880000px;}
.fs3_c00042{font-size:42.120000px;}
.fs4_c00042{font-size:47.880000px;}
.fs1_c00042{font-size:54.000000px;}
.fs0_c00042{font-size:60.120000px;}
.fs2_c00042{font-size:72.000000px;}
.y0_c00042{bottom:0.000000px;}
.y3_c00042{bottom:57.450450px;}
.y2d_c00042{bottom:113.703690px;}
.y2c_c00042{bottom:127.564950px;}
.y2b_c00042{bottom:141.334950px;}
.y2a_c00042{bottom:155.102970px;}
.y29_c00042{bottom:173.464950px;}
.y28_c00042{bottom:187.234230px;}
.y27_c00042{bottom:205.502970px;}
.y26_c00042{bottom:223.864950px;}
.y25_c00042{bottom:237.637470px;}
.y24_c00042{bottom:255.903690px;}
.y23_c00042{bottom:269.764950px;}
.y22_c00042{bottom:283.546470px;}
.y21_c00042{bottom:301.812690px;}
.y20_c00042{bottom:315.578190px;}
.y1f_c00042{bottom:329.343690px;}
.y1e_c00042{bottom:343.109190px;}
.y1d_c00042{bottom:356.972970px;}
.y1c_c00042{bottom:375.239190px;}
.y1b_c00042{bottom:404.310600px;}
.y1a_c00042{bottom:425.010600px;}
.y19_c00042{bottom:445.710450px;}
.y18_c00042{bottom:478.110450px;}
.y17_c00042{bottom:512.490450px;}
.y16_c00042{bottom:546.960450px;}
.y15_c00042{bottom:581.340450px;}
.y13_c00042{bottom:615.810450px;}
.y14_c00042{bottom:623.280450px;}
.y12_c00042{bottom:650.190450px;}
.y11_c00042{bottom:684.660600px;}
.y10_c00042{bottom:719.040600px;}
.yf_c00042{bottom:753.510600px;}
.ye_c00042{bottom:787.890600px;}
.yd_c00042{bottom:822.360450px;}
.yc_c00042{bottom:856.740450px;}
.yb_c00042{bottom:891.210450px;}
.ya_c00042{bottom:925.590450px;}
.y9_c00042{bottom:960.060450px;}
.y8_c00042{bottom:994.440450px;}
.y7_c00042{bottom:1037.910450px;}
.y6_c00042{bottom:1072.290450px;}
.y5_c00042{bottom:1106.760450px;}
.y4_c00042{bottom:1141.140450px;}
.y2_c00042{bottom:1177.860450px;}
.y1_c00042{bottom:1196.850450px;}
.h8_c00042{height:35.250820px;}
.hb_c00042{height:49.937344px;}
.h1_c00042{height:50.315273px;}
.h2_c00042{height:56.320312px;}
.h6_c00042{height:60.257812px;}
.h5_c00042{height:60.890625px;}
.h7_c00042{height:65.130220px;}
.h4_c00042{height:65.130820px;}
.ha_c00042{height:70.664062px;}
.h9_c00042{height:70.664663px;}
.h3_c00042{height:72.160312px;}
.h0_c00042{height:1263.000000px;}
.w1_c00042{width:892.500000px;}
.w0_c00042{width:892.830000px;}
.x0_c00042{left:0.000000px;}
.x1_c00042{left:127.620000px;}
.x4_c00042{left:141.123960px;}
.x2_c00042{left:180.810000px;}
.x3_c00042{left:544.770000px;}
@media print{
.v4_c00042{vertical-align:-54.080533pt;}
.v3_c00042{vertical-align:-26.560000pt;}
.v0_c00042{vertical-align:0.000000pt;}
.v1_c00042{vertical-align:14.080000pt;}
.v2_c00042{vertical-align:26.560000pt;}
.ls20_c00042{letter-spacing:-0.134400pt;}
.ls2a_c00042{letter-spacing:-0.070400pt;}
.ls24_c00042{letter-spacing:-0.044800pt;}
.ls22_c00042{letter-spacing:-0.032000pt;}
.ls25_c00042{letter-spacing:-0.025600pt;}
.ls23_c00042{letter-spacing:-0.019200pt;}
.ls31_c00042{letter-spacing:-0.017280pt;}
.ls2f_c00042{letter-spacing:-0.017024pt;}
.ls29_c00042{letter-spacing:-0.012800pt;}
.ls30_c00042{letter-spacing:-0.010368pt;}
.ls2d_c00042{letter-spacing:-0.006912pt;}
.ls27_c00042{letter-spacing:-0.006400pt;}
.ls2c_c00042{letter-spacing:-0.003456pt;}
.ls1f_c00042{letter-spacing:0.000000pt;}
.ls19_c00042{letter-spacing:0.003456pt;}
.ls3_c00042{letter-spacing:0.006400pt;}
.lsa_c00042{letter-spacing:0.008512pt;}
.ls14_c00042{letter-spacing:0.012768pt;}
.ls4_c00042{letter-spacing:0.012800pt;}
.ls18_c00042{letter-spacing:0.017024pt;}
.ls13_c00042{letter-spacing:0.021280pt;}
.lsd_c00042{letter-spacing:0.025536pt;}
.ls2_c00042{letter-spacing:0.025600pt;}
.lsf_c00042{letter-spacing:0.029792pt;}
.ls11_c00042{letter-spacing:0.034048pt;}
.ls9_c00042{letter-spacing:0.038304pt;}
.ls8_c00042{letter-spacing:0.042560pt;}
.ls0_c00042{letter-spacing:0.042752pt;}
.ls5_c00042{letter-spacing:0.044800pt;}
.ls1c_c00042{letter-spacing:0.046816pt;}
.ls21_c00042{letter-spacing:0.048672pt;}
.ls12_c00042{letter-spacing:0.051072pt;}
.ls6_c00042{letter-spacing:0.051200pt;}
.ls10_c00042{letter-spacing:0.055328pt;}
.lse_c00042{letter-spacing:0.059584pt;}
.ls32_c00042{letter-spacing:0.063840pt;}
.ls15_c00042{letter-spacing:0.067520pt;}
.ls16_c00042{letter-spacing:0.068096pt;}
.ls1e_c00042{letter-spacing:0.080864pt;}
.ls28_c00042{letter-spacing:0.083200pt;}
.lsc_c00042{letter-spacing:0.092480pt;}
.ls1b_c00042{letter-spacing:0.093632pt;}
.ls26_c00042{letter-spacing:0.140800pt;}
.ls1d_c00042{letter-spacing:0.168320pt;}
.ls1a_c00042{letter-spacing:0.311680pt;}
.ls34_c00042{letter-spacing:0.314496pt;}
.ls2e_c00042{letter-spacing:0.317952pt;}
.ls35_c00042{letter-spacing:0.331968pt;}
.ls17_c00042{letter-spacing:0.340480pt;}
.lsb_c00042{letter-spacing:0.632320pt;}
.ls33_c00042{letter-spacing:0.655424pt;}
.ls2b_c00042{letter-spacing:14.438400pt;}
.ls7_c00042{letter-spacing:32.000000pt;}
.ls1_c00042{letter-spacing:1090.880000pt;}
.ws1_c00042{word-spacing:-15.929600pt;}
.ws4_c00042{word-spacing:-11.874240pt;}
.ws5_c00042{word-spacing:-11.840192pt;}
.ws2_c00042{word-spacing:-11.831680pt;}
.ws8_c00042{word-spacing:-11.814656pt;}
.ws7_c00042{word-spacing:-9.925632pt;}
.wsa_c00042{word-spacing:-9.611136pt;}
.ws3_c00042{word-spacing:-9.607680pt;}
.ws6_c00042{word-spacing:-9.600768pt;}
.ws9_c00042{word-spacing:-9.597312pt;}
.wsb_c00042{word-spacing:-9.590400pt;}
.ws0_c00042{word-spacing:-9.408672pt;}
.ws17_c00042{word-spacing:-0.083200pt;}
.ws46_c00042{word-spacing:-0.038304pt;}
.ws55_c00042{word-spacing:-0.029792pt;}
.ws59_c00042{word-spacing:-0.025536pt;}
.ws54_c00042{word-spacing:-0.021280pt;}
.ws4e_c00042{word-spacing:-0.017024pt;}
.ws42_c00042{word-spacing:-0.004256pt;}
.wsd_c00042{word-spacing:0.000000pt;}
.ws4d_c00042{word-spacing:0.004256pt;}
.ws48_c00042{word-spacing:0.008512pt;}
.ws2e_c00042{word-spacing:0.025600pt;}
.wsc_c00042{word-spacing:0.037408pt;}
.ws15_c00042{word-spacing:0.064000pt;}
.ws16_c00042{word-spacing:0.096000pt;}
.ws58_c00042{word-spacing:0.255360pt;}
.ws31_c00042{word-spacing:0.268800pt;}
.ws3a_c00042{word-spacing:0.276640pt;}
.ws57_c00042{word-spacing:0.280896pt;}
.wse_c00042{word-spacing:0.294400pt;}
.ws47_c00042{word-spacing:0.302176pt;}
.ws56_c00042{word-spacing:0.306432pt;}
.ws39_c00042{word-spacing:0.310688pt;}
.wsf_c00042{word-spacing:0.320000pt;}
.ws32_c00042{word-spacing:0.435200pt;}
.ws3c_c00042{word-spacing:0.600096pt;}
.ws53_c00042{word-spacing:0.604352pt;}
.ws52_c00042{word-spacing:0.608608pt;}
.ws3b_c00042{word-spacing:0.625632pt;}
.ws33_c00042{word-spacing:1.286400pt;}
.ws34_c00042{word-spacing:1.312000pt;}
.ws35_c00042{word-spacing:1.632000pt;}
.ws36_c00042{word-spacing:1.651200pt;}
.ws50_c00042{word-spacing:1.842848pt;}
.ws51_c00042{word-spacing:1.902432pt;}
.ws4f_c00042{word-spacing:1.923712pt;}
.ws26_c00042{word-spacing:2.553600pt;}
.ws24_c00042{word-spacing:2.560000pt;}
.ws30_c00042{word-spacing:2.572800pt;}
.ws25_c00042{word-spacing:2.592000pt;}
.ws19_c00042{word-spacing:2.822400pt;}
.ws40_c00042{word-spacing:2.843008pt;}
.ws1a_c00042{word-spacing:2.848000pt;}
.ws41_c00042{word-spacing:2.855776pt;}
.ws3f_c00042{word-spacing:2.860032pt;}
.ws23_c00042{word-spacing:3.475200pt;}
.ws22_c00042{word-spacing:3.545600pt;}
.ws2a_c00042{word-spacing:4.147200pt;}
.ws11_c00042{word-spacing:4.153600pt;}
.ws1b_c00042{word-spacing:4.166400pt;}
.ws10_c00042{word-spacing:4.179200pt;}
.ws2b_c00042{word-spacing:4.204800pt;}
.ws12_c00042{word-spacing:4.230400pt;}
.ws1d_c00042{word-spacing:4.332800pt;}
.ws1c_c00042{word-spacing:4.345600pt;}
.ws3d_c00042{word-spacing:4.753952pt;}
.ws3e_c00042{word-spacing:4.762464pt;}
.ws2d_c00042{word-spacing:4.793600pt;}
.ws2c_c00042{word-spacing:4.825600pt;}
.ws13_c00042{word-spacing:6.080000pt;}
.ws14_c00042{word-spacing:6.163200pt;}
.ws20_c00042{word-spacing:6.668800pt;}
.ws21_c00042{word-spacing:6.675200pt;}
.ws1f_c00042{word-spacing:7.347200pt;}
.ws1e_c00042{word-spacing:7.404800pt;}
.ws4c_c00042{word-spacing:7.958720pt;}
.ws29_c00042{word-spacing:7.961600pt;}
.ws4b_c00042{word-spacing:7.980000pt;}
.ws4a_c00042{word-spacing:7.984256pt;}
.ws49_c00042{word-spacing:8.001280pt;}
.ws28_c00042{word-spacing:8.006400pt;}
.ws37_c00042{word-spacing:8.294944pt;}
.ws38_c00042{word-spacing:8.299200pt;}
.ws18_c00042{word-spacing:8.652800pt;}
.ws45_c00042{word-spacing:9.895200pt;}
.ws44_c00042{word-spacing:9.907968pt;}
.ws43_c00042{word-spacing:9.920736pt;}
.ws27_c00042{word-spacing:11.513600pt;}
.ws2f_c00042{word-spacing:14.412800pt;}
._3_c00042{margin-left:-14.464000pt;}
._4_c00042{margin-left:-4.160000pt;}
._0_c00042{margin-left:-1.175680pt;}
._1_c00042{width:0.940800pt;}
._6_c00042{width:1.873888pt;}
._5_c00042{width:8.438592pt;}
._2_c00042{width:14.515200pt;}
.fs5_c00042{font-size:34.560000pt;}
.fs3_c00042{font-size:37.440000pt;}
.fs4_c00042{font-size:42.560000pt;}
.fs1_c00042{font-size:48.000000pt;}
.fs0_c00042{font-size:53.440000pt;}
.fs2_c00042{font-size:64.000000pt;}
.y0_c00042{bottom:0.000000pt;}
.y3_c00042{bottom:51.067067pt;}
.y2d_c00042{bottom:101.069947pt;}
.y2c_c00042{bottom:113.391067pt;}
.y2b_c00042{bottom:125.631067pt;}
.y2a_c00042{bottom:137.869307pt;}
.y29_c00042{bottom:154.191067pt;}
.y28_c00042{bottom:166.430427pt;}
.y27_c00042{bottom:182.669307pt;}
.y26_c00042{bottom:198.991067pt;}
.y25_c00042{bottom:211.233307pt;}
.y24_c00042{bottom:227.469947pt;}
.y23_c00042{bottom:239.791067pt;}
.y22_c00042{bottom:252.041307pt;}
.y21_c00042{bottom:268.277947pt;}
.y20_c00042{bottom:280.513947pt;}
.y1f_c00042{bottom:292.749947pt;}
.y1e_c00042{bottom:304.985947pt;}
.y1d_c00042{bottom:317.309307pt;}
.y1c_c00042{bottom:333.545947pt;}
.y1b_c00042{bottom:359.387200pt;}
.y1a_c00042{bottom:377.787200pt;}
.y19_c00042{bottom:396.187067pt;}
.y18_c00042{bottom:424.987067pt;}
.y17_c00042{bottom:455.547067pt;}
.y16_c00042{bottom:486.187067pt;}
.y15_c00042{bottom:516.747067pt;}
.y13_c00042{bottom:547.387067pt;}
.y14_c00042{bottom:554.027067pt;}
.y12_c00042{bottom:577.947067pt;}
.y11_c00042{bottom:608.587200pt;}
.y10_c00042{bottom:639.147200pt;}
.yf_c00042{bottom:669.787200pt;}
.ye_c00042{bottom:700.347200pt;}
.yd_c00042{bottom:730.987067pt;}
.yc_c00042{bottom:761.547067pt;}
.yb_c00042{bottom:792.187067pt;}
.ya_c00042{bottom:822.747067pt;}
.y9_c00042{bottom:853.387067pt;}
.y8_c00042{bottom:883.947067pt;}
.y7_c00042{bottom:922.587067pt;}
.y6_c00042{bottom:953.147067pt;}
.y5_c00042{bottom:983.787067pt;}
.y4_c00042{bottom:1014.347067pt;}
.y2_c00042{bottom:1046.987067pt;}
.y1_c00042{bottom:1063.867067pt;}
.h8_c00042{height:31.334062pt;}
.hb_c00042{height:44.388750pt;}
.h1_c00042{height:44.724687pt;}
.h2_c00042{height:50.062500pt;}
.h6_c00042{height:53.562500pt;}
.h5_c00042{height:54.125000pt;}
.h7_c00042{height:57.893529pt;}
.h4_c00042{height:57.894063pt;}
.ha_c00042{height:62.812500pt;}
.h9_c00042{height:62.813033pt;}
.h3_c00042{height:64.142500pt;}
.h0_c00042{height:1122.666667pt;}
.w1_c00042{width:793.333333pt;}
.w0_c00042{width:793.626667pt;}
.x0_c00042{left:0.000000pt;}
.x1_c00042{left:113.440000pt;}
.x4_c00042{left:125.443520pt;}
.x2_c00042{left:160.720000pt;}
.x3_c00042{left:484.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_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_d9e2cd222f26c8e48b2d4c83.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.100098;font-style:normal;font-weight:normal;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_089510d0d6d8c3460deb1b9c.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00043;src:url('chunks/assets/font_b5ae68590ed7deebaec69fc4.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00043;src:url('chunks/assets/font_2ccff367dc3e03756d25890a.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00043;src:url('chunks/assets/font_69aab923cbdb5c0d643c55a5.woff2')format("woff");}.ff5_c00043{font-family:ff5_c00043;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00043;src:url('chunks/assets/font_b7a692881cd0a5d6a0a7940e.woff2')format("woff");}.ff6_c00043{font-family:ff6_c00043;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_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);}
.v3_c00043{vertical-align:-29.880000px;}
.v0_c00043{vertical-align:0.000000px;}
.v1_c00043{vertical-align:15.840000px;}
.v2_c00043{vertical-align:29.880000px;}
.ls14_c00043{letter-spacing:-0.151200px;}
.ls22_c00043{letter-spacing:-0.057600px;}
.ls1b_c00043{letter-spacing:-0.050400px;}
.ls20_c00043{letter-spacing:-0.043200px;}
.ls12_c00043{letter-spacing:-0.036072px;}
.ls1c_c00043{letter-spacing:-0.036000px;}
.ls1d_c00043{letter-spacing:-0.028800px;}
.ls16_c00043{letter-spacing:-0.021600px;}
.ls15_c00043{letter-spacing:-0.014400px;}
.ls24_c00043{letter-spacing:-0.011664px;}
.ls25_c00043{letter-spacing:-0.007776px;}
.ls17_c00043{letter-spacing:-0.007200px;}
.ls23_c00043{letter-spacing:-0.003888px;}
.ls13_c00043{letter-spacing:0.000000px;}
.ls1_c00043{letter-spacing:0.007200px;}
.lsd_c00043{letter-spacing:0.009576px;}
.ls4_c00043{letter-spacing:0.014364px;}
.ls1a_c00043{letter-spacing:0.016776px;}
.ls7_c00043{letter-spacing:0.018720px;}
.lsf_c00043{letter-spacing:0.019152px;}
.ls1e_c00043{letter-spacing:0.021600px;}
.ls1f_c00043{letter-spacing:0.028800px;}
.lse_c00043{letter-spacing:0.033516px;}
.ls28_c00043{letter-spacing:0.038304px;}
.ls8_c00043{letter-spacing:0.043092px;}
.lsb_c00043{letter-spacing:0.047880px;}
.ls9_c00043{letter-spacing:0.052668px;}
.ls18_c00043{letter-spacing:0.054756px;}
.lsa_c00043{letter-spacing:0.067032px;}
.ls10_c00043{letter-spacing:0.071820px;}
.ls5_c00043{letter-spacing:0.076608px;}
.ls6_c00043{letter-spacing:0.079920px;}
.ls21_c00043{letter-spacing:0.081900px;}
.ls19_c00043{letter-spacing:0.093600px;}
.lsc_c00043{letter-spacing:0.104040px;}
.ls2_c00043{letter-spacing:0.144000px;}
.ls27_c00043{letter-spacing:0.162792px;}
.ls26_c00043{letter-spacing:0.346032px;}
.ls29_c00043{letter-spacing:0.353808px;}
.ls2a_c00043{letter-spacing:0.378252px;}
.ls11_c00043{letter-spacing:0.464040px;}
.ls3_c00043{letter-spacing:65.304000px;}
.ls0_c00043{letter-spacing:1227.240000px;}
.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;}
}
.ws3_c00043{word-spacing:-13.320216px;}
.ws5_c00043{word-spacing:-13.310640px;}
.ws6_c00043{word-spacing:-11.162448px;}
.ws2_c00043{word-spacing:-11.154672px;}
.ws4_c00043{word-spacing:-10.804752px;}
.ws1_c00043{word-spacing:-10.796976px;}
.ws0_c00043{word-spacing:-10.584756px;}
.ws39_c00043{word-spacing:-0.052668px;}
.ws38_c00043{word-spacing:-0.028728px;}
.ws3a_c00043{word-spacing:-0.019152px;}
.ws3d_c00043{word-spacing:-0.014364px;}
.ws12_c00043{word-spacing:-0.007200px;}
.ws3e_c00043{word-spacing:-0.003888px;}
.ws8_c00043{word-spacing:0.000000px;}
.ws3c_c00043{word-spacing:0.004788px;}
.wsc_c00043{word-spacing:0.007200px;}
.ws3b_c00043{word-spacing:0.009576px;}
.ws17_c00043{word-spacing:0.064800px;}
.ws7_c00043{word-spacing:0.126252px;}
.wsd_c00043{word-spacing:0.251640px;}
.ws27_c00043{word-spacing:0.352800px;}
.ws3f_c00043{word-spacing:0.363888px;}
.ws28_c00043{word-spacing:0.388800px;}
.ws29_c00043{word-spacing:0.417600px;}
.ws1a_c00043{word-spacing:1.404000px;}
.ws19_c00043{word-spacing:1.454400px;}
.ws14_c00043{word-spacing:2.527200px;}
.ws15_c00043{word-spacing:2.649600px;}
.ws16_c00043{word-spacing:2.786400px;}
.ws2a_c00043{word-spacing:3.240000px;}
.ws21_c00043{word-spacing:4.680000px;}
.ws20_c00043{word-spacing:4.701600px;}
.ws34_c00043{word-spacing:5.008248px;}
.ws33_c00043{word-spacing:5.013036px;}
.ws2e_c00043{word-spacing:6.071184px;}
.ws2f_c00043{word-spacing:6.090336px;}
.ws32_c00043{word-spacing:6.104700px;}
.ws31_c00043{word-spacing:6.128640px;}
.wse_c00043{word-spacing:6.184800px;}
.wsf_c00043{word-spacing:6.228000px;}
.ws30_c00043{word-spacing:6.485184px;}
.ws35_c00043{word-spacing:7.526736px;}
.ws37_c00043{word-spacing:7.545888px;}
.ws36_c00043{word-spacing:7.560252px;}
.ws22_c00043{word-spacing:8.935200px;}
.ws23_c00043{word-spacing:9.122400px;}
.ws1e_c00043{word-spacing:9.338400px;}
.ws1d_c00043{word-spacing:9.396000px;}
.ws1f_c00043{word-spacing:10.454400px;}
.wsb_c00043{word-spacing:11.160000px;}
.ws1b_c00043{word-spacing:11.167200px;}
.ws1c_c00043{word-spacing:11.260800px;}
.ws13_c00043{word-spacing:11.872800px;}
.ws2c_c00043{word-spacing:13.286700px;}
.ws2b_c00043{word-spacing:13.296276px;}
.ws2d_c00043{word-spacing:13.325004px;}
.ws24_c00043{word-spacing:15.847200px;}
.ws26_c00043{word-spacing:15.854400px;}
.ws25_c00043{word-spacing:15.868800px;}
.ws9_c00043{word-spacing:16.624800px;}
.wsa_c00043{word-spacing:16.632000px;}
.ws10_c00043{word-spacing:17.330400px;}
.ws11_c00043{word-spacing:17.402400px;}
.ws18_c00043{word-spacing:48.650400px;}
._1_c00043{margin-left:-1.245600px;}
._0_c00043{width:1.368000px;}
._3_c00043{width:6.216480px;}
._2_c00043{width:13.178052px;}
.fc0_c00043{color:rgb(0,0,0);}
.fs7_c00043{font-size:38.880000px;}
.fs3_c00043{font-size:42.120000px;}
.fs6_c00043{font-size:47.880000px;}
.fs2_c00043{font-size:54.000000px;}
.fs0_c00043{font-size:60.120000px;}
.fs5_c00043{font-size:63.000000px;}
.fs1_c00043{font-size:72.000000px;}
.fs4_c00043{font-size:83.880000px;}
.y0_c00043{bottom:0.000000px;}
.y3_c00043{bottom:57.450450px;}
.y25_c00043{bottom:113.698470px;}
.y24_c00043{bottom:132.077550px;}
.y23_c00043{bottom:150.343770px;}
.y22_c00043{bottom:168.609990px;}
.y21_c00043{bottom:186.971970px;}
.y20_c00043{bottom:205.238190px;}
.y1f_c00043{bottom:219.003690px;}
.y1e_c00043{bottom:232.864950px;}
.y1d_c00043{bottom:246.634950px;}
.y1c_c00043{bottom:260.400450px;}
.y1b_c00043{bottom:275.610450px;}
.y1a_c00043{bottom:296.310450px;}
.y19_c00043{bottom:317.010600px;}
.y18_c00043{bottom:397.650600px;}
.y17_c00043{bottom:432.120600px;}
.y16_c00043{bottom:466.500450px;}
.y15_c00043{bottom:500.970450px;}
.y14_c00043{bottom:535.350450px;}
.y13_c00043{bottom:569.820450px;}
.y12_c00043{bottom:604.200450px;}
.y11_c00043{bottom:638.670450px;}
.y10_c00043{bottom:673.050450px;}
.yf_c00043{bottom:707.520450px;}
.ye_c00043{bottom:741.900450px;}
.yd_c00043{bottom:785.370450px;}
.yc_c00043{bottom:819.750450px;}
.yb_c00043{bottom:854.220450px;}
.ya_c00043{bottom:897.600450px;}
.y9_c00043{bottom:932.070450px;}
.y8_c00043{bottom:966.450450px;}
.y7_c00043{bottom:1008.300450px;}
.y6_c00043{bottom:1072.290450px;}
.y5_c00043{bottom:1106.760450px;}
.y4_c00043{bottom:1141.140450px;}
.y2_c00043{bottom:1173.810450px;}
.y1_c00043{bottom:1196.850450px;}
.h9_c00043{height:49.937344px;}
.ha_c00043{height:49.945264px;}
.h1_c00043{height:50.315273px;}
.h4_c00043{height:60.257812px;}
.h8_c00043{height:60.890625px;}
.h5_c00043{height:65.130820px;}
.h6_c00043{height:70.282266px;}
.h2_c00043{height:70.664062px;}
.h3_c00043{height:72.160313px;}
.h7_c00043{height:75.093750px;}
.h0_c00043{height:1263.000000px;}
.w1_c00043{width:892.500000px;}
.w0_c00043{width:892.830000px;}
.x0_c00043{left:0.000000px;}
.x2_c00043{left:127.620000px;}
.x6_c00043{left:141.118740px;}
.x3_c00043{left:180.810000px;}
.x4_c00043{left:207.540000px;}
.x5_c00043{left:235.710000px;}
.x1_c00043{left:689.310000px;}
@media print{
.v3_c00043{vertical-align:-26.560000pt;}
.v0_c00043{vertical-align:0.000000pt;}
.v1_c00043{vertical-align:14.080000pt;}
.v2_c00043{vertical-align:26.560000pt;}
.ls14_c00043{letter-spacing:-0.134400pt;}
.ls22_c00043{letter-spacing:-0.051200pt;}
.ls1b_c00043{letter-spacing:-0.044800pt;}
.ls20_c00043{letter-spacing:-0.038400pt;}
.ls12_c00043{letter-spacing:-0.032064pt;}
.ls1c_c00043{letter-spacing:-0.032000pt;}
.ls1d_c00043{letter-spacing:-0.025600pt;}
.ls16_c00043{letter-spacing:-0.019200pt;}
.ls15_c00043{letter-spacing:-0.012800pt;}
.ls24_c00043{letter-spacing:-0.010368pt;}
.ls25_c00043{letter-spacing:-0.006912pt;}
.ls17_c00043{letter-spacing:-0.006400pt;}
.ls23_c00043{letter-spacing:-0.003456pt;}
.ls13_c00043{letter-spacing:0.000000pt;}
.ls1_c00043{letter-spacing:0.006400pt;}
.lsd_c00043{letter-spacing:0.008512pt;}
.ls4_c00043{letter-spacing:0.012768pt;}
.ls1a_c00043{letter-spacing:0.014912pt;}
.ls7_c00043{letter-spacing:0.016640pt;}
.lsf_c00043{letter-spacing:0.017024pt;}
.ls1e_c00043{letter-spacing:0.019200pt;}
.ls1f_c00043{letter-spacing:0.025600pt;}
.lse_c00043{letter-spacing:0.029792pt;}
.ls28_c00043{letter-spacing:0.034048pt;}
.ls8_c00043{letter-spacing:0.038304pt;}
.lsb_c00043{letter-spacing:0.042560pt;}
.ls9_c00043{letter-spacing:0.046816pt;}
.ls18_c00043{letter-spacing:0.048672pt;}
.lsa_c00043{letter-spacing:0.059584pt;}
.ls10_c00043{letter-spacing:0.063840pt;}
.ls5_c00043{letter-spacing:0.068096pt;}
.ls6_c00043{letter-spacing:0.071040pt;}
.ls21_c00043{letter-spacing:0.072800pt;}
.ls19_c00043{letter-spacing:0.083200pt;}
.lsc_c00043{letter-spacing:0.092480pt;}
.ls2_c00043{letter-spacing:0.128000pt;}
.ls27_c00043{letter-spacing:0.144704pt;}
.ls26_c00043{letter-spacing:0.307584pt;}
.ls29_c00043{letter-spacing:0.314496pt;}
.ls2a_c00043{letter-spacing:0.336224pt;}
.ls11_c00043{letter-spacing:0.412480pt;}
.ls3_c00043{letter-spacing:58.048000pt;}
.ls0_c00043{letter-spacing:1090.880000pt;}
.ws3_c00043{word-spacing:-11.840192pt;}
.ws5_c00043{word-spacing:-11.831680pt;}
.ws6_c00043{word-spacing:-9.922176pt;}
.ws2_c00043{word-spacing:-9.915264pt;}
.ws4_c00043{word-spacing:-9.604224pt;}
.ws1_c00043{word-spacing:-9.597312pt;}
.ws0_c00043{word-spacing:-9.408672pt;}
.ws39_c00043{word-spacing:-0.046816pt;}
.ws38_c00043{word-spacing:-0.025536pt;}
.ws3a_c00043{word-spacing:-0.017024pt;}
.ws3d_c00043{word-spacing:-0.012768pt;}
.ws12_c00043{word-spacing:-0.006400pt;}
.ws3e_c00043{word-spacing:-0.003456pt;}
.ws8_c00043{word-spacing:0.000000pt;}
.ws3c_c00043{word-spacing:0.004256pt;}
.wsc_c00043{word-spacing:0.006400pt;}
.ws3b_c00043{word-spacing:0.008512pt;}
.ws17_c00043{word-spacing:0.057600pt;}
.ws7_c00043{word-spacing:0.112224pt;}
.wsd_c00043{word-spacing:0.223680pt;}
.ws27_c00043{word-spacing:0.313600pt;}
.ws3f_c00043{word-spacing:0.323456pt;}
.ws28_c00043{word-spacing:0.345600pt;}
.ws29_c00043{word-spacing:0.371200pt;}
.ws1a_c00043{word-spacing:1.248000pt;}
.ws19_c00043{word-spacing:1.292800pt;}
.ws14_c00043{word-spacing:2.246400pt;}
.ws15_c00043{word-spacing:2.355200pt;}
.ws16_c00043{word-spacing:2.476800pt;}
.ws2a_c00043{word-spacing:2.880000pt;}
.ws21_c00043{word-spacing:4.160000pt;}
.ws20_c00043{word-spacing:4.179200pt;}
.ws34_c00043{word-spacing:4.451776pt;}
.ws33_c00043{word-spacing:4.456032pt;}
.ws2e_c00043{word-spacing:5.396608pt;}
.ws2f_c00043{word-spacing:5.413632pt;}
.ws32_c00043{word-spacing:5.426400pt;}
.ws31_c00043{word-spacing:5.447680pt;}
.wse_c00043{word-spacing:5.497600pt;}
.wsf_c00043{word-spacing:5.536000pt;}
.ws30_c00043{word-spacing:5.764608pt;}
.ws35_c00043{word-spacing:6.690432pt;}
.ws37_c00043{word-spacing:6.707456pt;}
.ws36_c00043{word-spacing:6.720224pt;}
.ws22_c00043{word-spacing:7.942400pt;}
.ws23_c00043{word-spacing:8.108800pt;}
.ws1e_c00043{word-spacing:8.300800pt;}
.ws1d_c00043{word-spacing:8.352000pt;}
.ws1f_c00043{word-spacing:9.292800pt;}
.wsb_c00043{word-spacing:9.920000pt;}
.ws1b_c00043{word-spacing:9.926400pt;}
.ws1c_c00043{word-spacing:10.009600pt;}
.ws13_c00043{word-spacing:10.553600pt;}
.ws2c_c00043{word-spacing:11.810400pt;}
.ws2b_c00043{word-spacing:11.818912pt;}
.ws2d_c00043{word-spacing:11.844448pt;}
.ws24_c00043{word-spacing:14.086400pt;}
.ws26_c00043{word-spacing:14.092800pt;}
.ws25_c00043{word-spacing:14.105600pt;}
.ws9_c00043{word-spacing:14.777600pt;}
.wsa_c00043{word-spacing:14.784000pt;}
.ws10_c00043{word-spacing:15.404800pt;}
.ws11_c00043{word-spacing:15.468800pt;}
.ws18_c00043{word-spacing:43.244800pt;}
._1_c00043{margin-left:-1.107200pt;}
._0_c00043{width:1.216000pt;}
._3_c00043{width:5.525760pt;}
._2_c00043{width:11.713824pt;}
.fs7_c00043{font-size:34.560000pt;}
.fs3_c00043{font-size:37.440000pt;}
.fs6_c00043{font-size:42.560000pt;}
.fs2_c00043{font-size:48.000000pt;}
.fs0_c00043{font-size:53.440000pt;}
.fs5_c00043{font-size:56.000000pt;}
.fs1_c00043{font-size:64.000000pt;}
.fs4_c00043{font-size:74.560000pt;}
.y0_c00043{bottom:0.000000pt;}
.y3_c00043{bottom:51.067067pt;}
.y25_c00043{bottom:101.065307pt;}
.y24_c00043{bottom:117.402267pt;}
.y23_c00043{bottom:133.638907pt;}
.y22_c00043{bottom:149.875547pt;}
.y21_c00043{bottom:166.197307pt;}
.y20_c00043{bottom:182.433947pt;}
.y1f_c00043{bottom:194.669947pt;}
.y1e_c00043{bottom:206.991067pt;}
.y1d_c00043{bottom:219.231067pt;}
.y1c_c00043{bottom:231.467067pt;}
.y1b_c00043{bottom:244.987067pt;}
.y1a_c00043{bottom:263.387067pt;}
.y19_c00043{bottom:281.787200pt;}
.y18_c00043{bottom:353.467200pt;}
.y17_c00043{bottom:384.107200pt;}
.y16_c00043{bottom:414.667067pt;}
.y15_c00043{bottom:445.307067pt;}
.y14_c00043{bottom:475.867067pt;}
.y13_c00043{bottom:506.507067pt;}
.y12_c00043{bottom:537.067067pt;}
.y11_c00043{bottom:567.707067pt;}
.y10_c00043{bottom:598.267067pt;}
.yf_c00043{bottom:628.907067pt;}
.ye_c00043{bottom:659.467067pt;}
.yd_c00043{bottom:698.107067pt;}
.yc_c00043{bottom:728.667067pt;}
.yb_c00043{bottom:759.307067pt;}
.ya_c00043{bottom:797.867067pt;}
.y9_c00043{bottom:828.507067pt;}
.y8_c00043{bottom:859.067067pt;}
.y7_c00043{bottom:896.267067pt;}
.y6_c00043{bottom:953.147067pt;}
.y5_c00043{bottom:983.787067pt;}
.y4_c00043{bottom:1014.347067pt;}
.y2_c00043{bottom:1043.387067pt;}
.y1_c00043{bottom:1063.867067pt;}
.h9_c00043{height:44.388750pt;}
.ha_c00043{height:44.395790pt;}
.h1_c00043{height:44.724687pt;}
.h4_c00043{height:53.562500pt;}
.h8_c00043{height:54.125000pt;}
.h5_c00043{height:57.894062pt;}
.h6_c00043{height:62.473125pt;}
.h2_c00043{height:62.812500pt;}
.h3_c00043{height:64.142500pt;}
.h7_c00043{height:66.750000pt;}
.h0_c00043{height:1122.666667pt;}
.w1_c00043{width:793.333333pt;}
.w0_c00043{width:793.626667pt;}
.x0_c00043{left:0.000000pt;}
.x2_c00043{left:113.440000pt;}
.x6_c00043{left:125.438880pt;}
.x3_c00043{left:160.720000pt;}
.x4_c00043{left:184.480000pt;}
.x5_c00043{left:209.520000pt;}
.x1_c00043{left:612.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_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_66a1510ea590bb5f4dd0eccd.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.100098;font-style:normal;font-weight:normal;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_c8d9fdb60b7b5c2e9570ae5b.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;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_c00044;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_ebfc19d04c60181a1ee7f454.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.102051;font-style:normal;font-weight:normal;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_4256d29e0d13dfd2e2158928.woff2')format("woff");}.ff5_c00044{font-family:ff5_c00044;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_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;}
.v1_c00044{vertical-align:15.840000px;}
.v2_c00044{vertical-align:29.880000px;}
.ls16_c00044{letter-spacing:-0.151200px;}
.ls17_c00044{letter-spacing:-0.050400px;}
.ls1f_c00044{letter-spacing:-0.043200px;}
.ls1e_c00044{letter-spacing:-0.036000px;}
.ls1c_c00044{letter-spacing:-0.028800px;}
.ls1b_c00044{letter-spacing:-0.021600px;}
.ls1a_c00044{letter-spacing:-0.014400px;}
.ls26_c00044{letter-spacing:-0.014364px;}
.ls22_c00044{letter-spacing:-0.007776px;}
.ls19_c00044{letter-spacing:-0.007200px;}
.ls25_c00044{letter-spacing:-0.003888px;}
.ls15_c00044{letter-spacing:0.000000px;}
.lsd_c00044{letter-spacing:0.004788px;}
.ls2_c00044{letter-spacing:0.007200px;}
.ls8_c00044{letter-spacing:0.009576px;}
.ls6_c00044{letter-spacing:0.014400px;}
.ls10_c00044{letter-spacing:0.018720px;}
.ls12_c00044{letter-spacing:0.019152px;}
.ls7_c00044{letter-spacing:0.021600px;}
.lsc_c00044{letter-spacing:0.023940px;}
.ls24_c00044{letter-spacing:0.028728px;}
.lsb_c00044{letter-spacing:0.033516px;}
.ls20_c00044{letter-spacing:0.036000px;}
.ls11_c00044{letter-spacing:0.038304px;}
.lsa_c00044{letter-spacing:0.043092px;}
.ls3_c00044{letter-spacing:0.043200px;}
.ls14_c00044{letter-spacing:0.047880px;}
.ls0_c00044{letter-spacing:0.048096px;}
.ls18_c00044{letter-spacing:0.054756px;}
.ls13_c00044{letter-spacing:0.057456px;}
.ls21_c00044{letter-spacing:0.072000px;}
.lsf_c00044{letter-spacing:0.075960px;}
.ls1d_c00044{letter-spacing:0.093600px;}
.ls4_c00044{letter-spacing:0.144000px;}
.ls23_c00044{letter-spacing:0.373464px;}
.ls9_c00044{letter-spacing:8.271360px;}
.lse_c00044{letter-spacing:11.511360px;}
.ls5_c00044{letter-spacing:65.304000px;}
.ls1_c00044{letter-spacing:1227.240000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00044{word-spacing:-13.320216px;}
.ws2_c00044{word-spacing:-13.310640px;}
.ws4_c00044{word-spacing:-10.804752px;}
.ws3_c00044{word-spacing:-10.800864px;}
.ws0_c00044{word-spacing:-10.584756px;}
.ws19_c00044{word-spacing:-0.093600px;}
.ws3a_c00044{word-spacing:-0.038304px;}
.ws3b_c00044{word-spacing:-0.028728px;}
.ws38_c00044{word-spacing:-0.023940px;}
.ws39_c00044{word-spacing:-0.019152px;}
.ws37_c00044{word-spacing:-0.014364px;}
.ws30_c00044{word-spacing:-0.009576px;}
.ws6_c00044{word-spacing:0.000000px;}
.ws1c_c00044{word-spacing:0.007200px;}
.ws3c_c00044{word-spacing:0.009576px;}
.wsd_c00044{word-spacing:0.014400px;}
.ws5_c00044{word-spacing:0.042084px;}
.ws18_c00044{word-spacing:0.043200px;}
.ws17_c00044{word-spacing:0.806400px;}
.ws36_c00044{word-spacing:1.053360px;}
.ws35_c00044{word-spacing:1.072512px;}
.ws34_c00044{word-spacing:1.077300px;}
.ws14_c00044{word-spacing:1.461600px;}
.wsa_c00044{word-spacing:2.476800px;}
.wsb_c00044{word-spacing:2.527200px;}
.ws27_c00044{word-spacing:3.304800px;}
.ws28_c00044{word-spacing:3.319200px;}
.ws29_c00044{word-spacing:3.600000px;}
.ws8_c00044{word-spacing:4.312800px;}
.ws9_c00044{word-spacing:4.327200px;}
.ws7_c00044{word-spacing:4.370400px;}
.ws12_c00044{word-spacing:4.953600px;}
.ws21_c00044{word-spacing:5.004000px;}
.ws13_c00044{word-spacing:5.025600px;}
.ws2e_c00044{word-spacing:5.032188px;}
.ws20_c00044{word-spacing:5.032800px;}
.ws2f_c00044{word-spacing:5.051340px;}
.ws1e_c00044{word-spacing:5.083200px;}
.ws1f_c00044{word-spacing:5.140800px;}
.ws26_c00044{word-spacing:6.048000px;}
.ws24_c00044{word-spacing:6.112800px;}
.ws25_c00044{word-spacing:6.127200px;}
.ws23_c00044{word-spacing:7.178400px;}
.ws22_c00044{word-spacing:7.315200px;}
.ws2b_c00044{word-spacing:7.924140px;}
.ws2c_c00044{word-spacing:8.254512px;}
.ws2d_c00044{word-spacing:8.264088px;}
.ws33_c00044{word-spacing:11.500776px;}
.ws31_c00044{word-spacing:11.881728px;}
.ws32_c00044{word-spacing:11.912544px;}
.wsc_c00044{word-spacing:13.334400px;}
.ws2a_c00044{word-spacing:13.341600px;}
.wsf_c00044{word-spacing:14.349600px;}
.wse_c00044{word-spacing:14.414400px;}
.ws1b_c00044{word-spacing:19.087200px;}
.ws1a_c00044{word-spacing:19.116000px;}
.ws15_c00044{word-spacing:23.306400px;}
.ws16_c00044{word-spacing:23.428800px;}
.ws10_c00044{word-spacing:28.101600px;}
.ws1d_c00044{word-spacing:29.232000px;}
.ws11_c00044{word-spacing:49.024800px;}
._0_c00044{margin-left:-1.322640px;}
._1_c00044{width:1.152000px;}
._2_c00044{width:6.728328px;}
._3_c00044{width:8.132328px;}
.fc0_c00044{color:rgb(0,0,0);}
.fs5_c00044{font-size:38.880000px;}
.fs3_c00044{font-size:42.120000px;}
.fs4_c00044{font-size:47.880000px;}
.fs1_c00044{font-size:54.000000px;}
.fs0_c00044{font-size:60.120000px;}
.fs2_c00044{font-size:72.000000px;}
.y0_c00044{bottom:0.000000px;}
.y3_c00044{bottom:57.450450px;}
.y28_c00044{bottom:113.711070px;}
.y27_c00044{bottom:132.073050px;}
.y26_c00044{bottom:150.339270px;}
.y25_c00044{bottom:168.605490px;}
.y24_c00044{bottom:186.967470px;}
.y23_c00044{bottom:205.233690px;}
.y22_c00044{bottom:218.999190px;}
.y21_c00044{bottom:232.867470px;}
.y20_c00044{bottom:251.133690px;}
.y1f_c00044{bottom:264.899190px;}
.y1e_c00044{bottom:278.760450px;}
.y1d_c00044{bottom:293.970450px;}
.y1c_c00044{bottom:314.580450px;}
.y1b_c00044{bottom:335.280450px;}
.y1a_c00044{bottom:365.790450px;}
.y19_c00044{bottom:400.260450px;}
.y18_c00044{bottom:434.640450px;}
.y17_c00044{bottom:469.110450px;}
.y16_c00044{bottom:503.490450px;}
.y15_c00044{bottom:537.960450px;}
.y14_c00044{bottom:572.340450px;}
.y13_c00044{bottom:606.810450px;}
.y12_c00044{bottom:641.190450px;}
.y11_c00044{bottom:675.660450px;}
.y10_c00044{bottom:728.040450px;}
.yf_c00044{bottom:762.510450px;}
.ye_c00044{bottom:796.890450px;}
.yd_c00044{bottom:831.360450px;}
.yc_c00044{bottom:865.740450px;}
.yb_c00044{bottom:900.210450px;}
.ya_c00044{bottom:934.590450px;}
.y9_c00044{bottom:969.060450px;}
.y8_c00044{bottom:1003.440450px;}
.y7_c00044{bottom:1037.910450px;}
.y6_c00044{bottom:1072.290450px;}
.y5_c00044{bottom:1106.760450px;}
.y4_c00044{bottom:1141.140450px;}
.y2_c00044{bottom:1177.860450px;}
.y1_c00044{bottom:1196.850450px;}
.h9_c00044{height:49.937344px;}
.h1_c00044{height:50.315273px;}
.h2_c00044{height:56.320312px;}
.h5_c00044{height:60.257812px;}
.h4_c00044{height:65.130820px;}
.h7_c00044{height:65.131420px;}
.h8_c00044{height:70.664062px;}
.h3_c00044{height:72.160312px;}
.h6_c00044{height:75.093750px;}
.h0_c00044{height:1263.000000px;}
.w1_c00044{width:892.500000px;}
.w0_c00044{width:892.830000px;}
.x0_c00044{left:0.000000px;}
.x1_c00044{left:127.620000px;}
.x5_c00044{left:141.117390px;}
.x3_c00044{left:180.810000px;}
.x2_c00044{left:207.990000px;}
.x4_c00044{left:235.710000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.v1_c00044{vertical-align:14.080000pt;}
.v2_c00044{vertical-align:26.560000pt;}
.ls16_c00044{letter-spacing:-0.134400pt;}
.ls17_c00044{letter-spacing:-0.044800pt;}
.ls1f_c00044{letter-spacing:-0.038400pt;}
.ls1e_c00044{letter-spacing:-0.032000pt;}
.ls1c_c00044{letter-spacing:-0.025600pt;}
.ls1b_c00044{letter-spacing:-0.019200pt;}
.ls1a_c00044{letter-spacing:-0.012800pt;}
.ls26_c00044{letter-spacing:-0.012768pt;}
.ls22_c00044{letter-spacing:-0.006912pt;}
.ls19_c00044{letter-spacing:-0.006400pt;}
.ls25_c00044{letter-spacing:-0.003456pt;}
.ls15_c00044{letter-spacing:0.000000pt;}
.lsd_c00044{letter-spacing:0.004256pt;}
.ls2_c00044{letter-spacing:0.006400pt;}
.ls8_c00044{letter-spacing:0.008512pt;}
.ls6_c00044{letter-spacing:0.012800pt;}
.ls10_c00044{letter-spacing:0.016640pt;}
.ls12_c00044{letter-spacing:0.017024pt;}
.ls7_c00044{letter-spacing:0.019200pt;}
.lsc_c00044{letter-spacing:0.021280pt;}
.ls24_c00044{letter-spacing:0.025536pt;}
.lsb_c00044{letter-spacing:0.029792pt;}
.ls20_c00044{letter-spacing:0.032000pt;}
.ls11_c00044{letter-spacing:0.034048pt;}
.lsa_c00044{letter-spacing:0.038304pt;}
.ls3_c00044{letter-spacing:0.038400pt;}
.ls14_c00044{letter-spacing:0.042560pt;}
.ls0_c00044{letter-spacing:0.042752pt;}
.ls18_c00044{letter-spacing:0.048672pt;}
.ls13_c00044{letter-spacing:0.051072pt;}
.ls21_c00044{letter-spacing:0.064000pt;}
.lsf_c00044{letter-spacing:0.067520pt;}
.ls1d_c00044{letter-spacing:0.083200pt;}
.ls4_c00044{letter-spacing:0.128000pt;}
.ls23_c00044{letter-spacing:0.331968pt;}
.ls9_c00044{letter-spacing:7.352320pt;}
.lse_c00044{letter-spacing:10.232320pt;}
.ls5_c00044{letter-spacing:58.048000pt;}
.ls1_c00044{letter-spacing:1090.880000pt;}
.ws1_c00044{word-spacing:-11.840192pt;}
.ws2_c00044{word-spacing:-11.831680pt;}
.ws4_c00044{word-spacing:-9.604224pt;}
.ws3_c00044{word-spacing:-9.600768pt;}
.ws0_c00044{word-spacing:-9.408672pt;}
.ws19_c00044{word-spacing:-0.083200pt;}
.ws3a_c00044{word-spacing:-0.034048pt;}
.ws3b_c00044{word-spacing:-0.025536pt;}
.ws38_c00044{word-spacing:-0.021280pt;}
.ws39_c00044{word-spacing:-0.017024pt;}
.ws37_c00044{word-spacing:-0.012768pt;}
.ws30_c00044{word-spacing:-0.008512pt;}
.ws6_c00044{word-spacing:0.000000pt;}
.ws1c_c00044{word-spacing:0.006400pt;}
.ws3c_c00044{word-spacing:0.008512pt;}
.wsd_c00044{word-spacing:0.012800pt;}
.ws5_c00044{word-spacing:0.037408pt;}
.ws18_c00044{word-spacing:0.038400pt;}
.ws17_c00044{word-spacing:0.716800pt;}
.ws36_c00044{word-spacing:0.936320pt;}
.ws35_c00044{word-spacing:0.953344pt;}
.ws34_c00044{word-spacing:0.957600pt;}
.ws14_c00044{word-spacing:1.299200pt;}
.wsa_c00044{word-spacing:2.201600pt;}
.wsb_c00044{word-spacing:2.246400pt;}
.ws27_c00044{word-spacing:2.937600pt;}
.ws28_c00044{word-spacing:2.950400pt;}
.ws29_c00044{word-spacing:3.200000pt;}
.ws8_c00044{word-spacing:3.833600pt;}
.ws9_c00044{word-spacing:3.846400pt;}
.ws7_c00044{word-spacing:3.884800pt;}
.ws12_c00044{word-spacing:4.403200pt;}
.ws21_c00044{word-spacing:4.448000pt;}
.ws13_c00044{word-spacing:4.467200pt;}
.ws2e_c00044{word-spacing:4.473056pt;}
.ws20_c00044{word-spacing:4.473600pt;}
.ws2f_c00044{word-spacing:4.490080pt;}
.ws1e_c00044{word-spacing:4.518400pt;}
.ws1f_c00044{word-spacing:4.569600pt;}
.ws26_c00044{word-spacing:5.376000pt;}
.ws24_c00044{word-spacing:5.433600pt;}
.ws25_c00044{word-spacing:5.446400pt;}
.ws23_c00044{word-spacing:6.380800pt;}
.ws22_c00044{word-spacing:6.502400pt;}
.ws2b_c00044{word-spacing:7.043680pt;}
.ws2c_c00044{word-spacing:7.337344pt;}
.ws2d_c00044{word-spacing:7.345856pt;}
.ws33_c00044{word-spacing:10.222912pt;}
.ws31_c00044{word-spacing:10.561536pt;}
.ws32_c00044{word-spacing:10.588928pt;}
.wsc_c00044{word-spacing:11.852800pt;}
.ws2a_c00044{word-spacing:11.859200pt;}
.wsf_c00044{word-spacing:12.755200pt;}
.wse_c00044{word-spacing:12.812800pt;}
.ws1b_c00044{word-spacing:16.966400pt;}
.ws1a_c00044{word-spacing:16.992000pt;}
.ws15_c00044{word-spacing:20.716800pt;}
.ws16_c00044{word-spacing:20.825600pt;}
.ws10_c00044{word-spacing:24.979200pt;}
.ws1d_c00044{word-spacing:25.984000pt;}
.ws11_c00044{word-spacing:43.577600pt;}
._0_c00044{margin-left:-1.175680pt;}
._1_c00044{width:1.024000pt;}
._2_c00044{width:5.980736pt;}
._3_c00044{width:7.228736pt;}
.fs5_c00044{font-size:34.560000pt;}
.fs3_c00044{font-size:37.440000pt;}
.fs4_c00044{font-size:42.560000pt;}
.fs1_c00044{font-size:48.000000pt;}
.fs0_c00044{font-size:53.440000pt;}
.fs2_c00044{font-size:64.000000pt;}
.y0_c00044{bottom:0.000000pt;}
.y3_c00044{bottom:51.067067pt;}
.y28_c00044{bottom:101.076507pt;}
.y27_c00044{bottom:117.398267pt;}
.y26_c00044{bottom:133.634907pt;}
.y25_c00044{bottom:149.871547pt;}
.y24_c00044{bottom:166.193307pt;}
.y23_c00044{bottom:182.429947pt;}
.y22_c00044{bottom:194.665947pt;}
.y21_c00044{bottom:206.993307pt;}
.y20_c00044{bottom:223.229947pt;}
.y1f_c00044{bottom:235.465947pt;}
.y1e_c00044{bottom:247.787067pt;}
.y1d_c00044{bottom:261.307067pt;}
.y1c_c00044{bottom:279.627067pt;}
.y1b_c00044{bottom:298.027067pt;}
.y1a_c00044{bottom:325.147067pt;}
.y19_c00044{bottom:355.787067pt;}
.y18_c00044{bottom:386.347067pt;}
.y17_c00044{bottom:416.987067pt;}
.y16_c00044{bottom:447.547067pt;}
.y15_c00044{bottom:478.187067pt;}
.y14_c00044{bottom:508.747067pt;}
.y13_c00044{bottom:539.387067pt;}
.y12_c00044{bottom:569.947067pt;}
.y11_c00044{bottom:600.587067pt;}
.y10_c00044{bottom:647.147067pt;}
.yf_c00044{bottom:677.787067pt;}
.ye_c00044{bottom:708.347067pt;}
.yd_c00044{bottom:738.987067pt;}
.yc_c00044{bottom:769.547067pt;}
.yb_c00044{bottom:800.187067pt;}
.ya_c00044{bottom:830.747067pt;}
.y9_c00044{bottom:861.387067pt;}
.y8_c00044{bottom:891.947067pt;}
.y7_c00044{bottom:922.587067pt;}
.y6_c00044{bottom:953.147067pt;}
.y5_c00044{bottom:983.787067pt;}
.y4_c00044{bottom:1014.347067pt;}
.y2_c00044{bottom:1046.987067pt;}
.y1_c00044{bottom:1063.867067pt;}
.h9_c00044{height:44.388750pt;}
.h1_c00044{height:44.724687pt;}
.h2_c00044{height:50.062500pt;}
.h5_c00044{height:53.562500pt;}
.h4_c00044{height:57.894063pt;}
.h7_c00044{height:57.894596pt;}
.h8_c00044{height:62.812500pt;}
.h3_c00044{height:64.142500pt;}
.h6_c00044{height:66.750000pt;}
.h0_c00044{height:1122.666667pt;}
.w1_c00044{width:793.333333pt;}
.w0_c00044{width:793.626667pt;}
.x0_c00044{left:0.000000pt;}
.x1_c00044{left:113.440000pt;}
.x5_c00044{left:125.437680pt;}
.x3_c00044{left:160.720000pt;}
.x2_c00044{left:184.880000pt;}
.x4_c00044{left:209.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_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_e9ab4465259e5504b07255e8.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.100098;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00045;src:url('chunks/assets/font_d5cc0ec30edfa9eea382a920.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00045;src:url('chunks/assets/font_57911a476ecd34051f74bea4.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;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_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.v1_c00045{vertical-align:15.840000px;}
.v2_c00045{vertical-align:29.880000px;}
.ls15_c00045{letter-spacing:-0.151200px;}
.ls1d_c00045{letter-spacing:-0.064800px;}
.ls1c_c00045{letter-spacing:-0.043200px;}
.ls13_c00045{letter-spacing:-0.036072px;}
.ls1b_c00045{letter-spacing:-0.028800px;}
.ls1e_c00045{letter-spacing:-0.021600px;}
.ls20_c00045{letter-spacing:-0.019440px;}
.ls18_c00045{letter-spacing:-0.014400px;}
.ls21_c00045{letter-spacing:-0.009576px;}
.ls17_c00045{letter-spacing:-0.007200px;}
.ls1f_c00045{letter-spacing:-0.003888px;}
.ls14_c00045{letter-spacing:0.000000px;}
.lsd_c00045{letter-spacing:0.003888px;}
.ls1_c00045{letter-spacing:0.007200px;}
.ls9_c00045{letter-spacing:0.009360px;}
.ls7_c00045{letter-spacing:0.014364px;}
.ls16_c00045{letter-spacing:0.014400px;}
.lsc_c00045{letter-spacing:0.019152px;}
.ls11_c00045{letter-spacing:0.023940px;}
.lsb_c00045{letter-spacing:0.028728px;}
.ls4_c00045{letter-spacing:0.028800px;}
.lsa_c00045{letter-spacing:0.033516px;}
.lsf_c00045{letter-spacing:0.038304px;}
.ls10_c00045{letter-spacing:0.043092px;}
.ls19_c00045{letter-spacing:0.054756px;}
.ls12_c00045{letter-spacing:0.057456px;}
.ls5_c00045{letter-spacing:0.057600px;}
.lse_c00045{letter-spacing:0.062244px;}
.ls6_c00045{letter-spacing:0.072000px;}
.ls8_c00045{letter-spacing:0.075960px;}
.ls1a_c00045{letter-spacing:0.093600px;}
.ls2_c00045{letter-spacing:0.144000px;}
.ls3_c00045{letter-spacing:65.304000px;}
.ls0_c00045{letter-spacing:1227.240000px;}
.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;}
}
.ws3_c00045{word-spacing:-13.348944px;}
.ws2_c00045{word-spacing:-10.812528px;}
.ws1_c00045{word-spacing:-10.789200px;}
.ws0_c00045{word-spacing:-10.584756px;}
.wsc_c00045{word-spacing:-0.086400px;}
.wsb_c00045{word-spacing:-0.028800px;}
.ws30_c00045{word-spacing:-0.023940px;}
.ws8_c00045{word-spacing:-0.014400px;}
.ws28_c00045{word-spacing:-0.009576px;}
.ws5_c00045{word-spacing:0.000000px;}
.ws22_c00045{word-spacing:0.004788px;}
.ws19_c00045{word-spacing:0.014400px;}
.ws2b_c00045{word-spacing:0.028728px;}
.ws4_c00045{word-spacing:0.126252px;}
.ws25_c00045{word-spacing:0.349524px;}
.ws23_c00045{word-spacing:0.361584px;}
.ws24_c00045{word-spacing:0.708624px;}
.ws18_c00045{word-spacing:0.727200px;}
.ws7_c00045{word-spacing:1.800000px;}
.ws26_c00045{word-spacing:3.222324px;}
.wsa_c00045{word-spacing:3.564000px;}
.ws27_c00045{word-spacing:3.586212px;}
.ws6_c00045{word-spacing:3.960000px;}
.wsd_c00045{word-spacing:4.046400px;}
.ws15_c00045{word-spacing:4.320000px;}
.ws21_c00045{word-spacing:6.062400px;}
.ws20_c00045{word-spacing:6.120000px;}
.ws2f_c00045{word-spacing:6.798960px;}
.ws2e_c00045{word-spacing:6.813324px;}
.ws1d_c00045{word-spacing:7.286400px;}
.ws1c_c00045{word-spacing:7.293600px;}
.wsf_c00045{word-spacing:7.495200px;}
.wse_c00045{word-spacing:7.502400px;}
.ws17_c00045{word-spacing:8.661600px;}
.ws1a_c00045{word-spacing:9.748800px;}
.ws2c_c00045{word-spacing:11.132100px;}
.ws2d_c00045{word-spacing:11.146464px;}
.ws9_c00045{word-spacing:14.076000px;}
.ws2a_c00045{word-spacing:14.354424px;}
.ws29_c00045{word-spacing:14.402304px;}
.ws16_c00045{word-spacing:15.847200px;}
.ws14_c00045{word-spacing:17.251200px;}
.ws13_c00045{word-spacing:17.280000px;}
.ws1b_c00045{word-spacing:23.371200px;}
.ws1f_c00045{word-spacing:25.207200px;}
.ws1e_c00045{word-spacing:25.214400px;}
.ws12_c00045{word-spacing:25.228800px;}
.ws10_c00045{word-spacing:25.243200px;}
.ws11_c00045{word-spacing:25.264800px;}
._0_c00045{margin-left:-1.112472px;}
._1_c00045{width:1.087056px;}
.fc1_c00045{color:rgb(255,0,0);}
.fc0_c00045{color:rgb(0,0,0);}
.fs5_c00045{font-size:38.880000px;}
.fs3_c00045{font-size:42.120000px;}
.fs4_c00045{font-size:47.880000px;}
.fs2_c00045{font-size:54.000000px;}
.fs0_c00045{font-size:60.120000px;}
.fs1_c00045{font-size:72.000000px;}
.y0_c00045{bottom:0.000000px;}
.y3_c00045{bottom:57.450450px;}
.y2b_c00045{bottom:113.710710px;}
.y2a_c00045{bottom:127.571970px;}
.y29_c00045{bottom:141.337470px;}
.y28_c00045{bottom:155.102970px;}
.y27_c00045{bottom:173.464950px;}
.y26_c00045{bottom:187.250070px;}
.y25_c00045{bottom:205.516290px;}
.y24_c00045{bottom:223.878270px;}
.y23_c00045{bottom:237.643770px;}
.y22_c00045{bottom:251.409270px;}
.y21_c00045{bottom:269.771250px;}
.y20_c00045{bottom:283.536750px;}
.y1f_c00045{bottom:297.302250px;}
.y1e_c00045{bottom:315.568470px;}
.y1d_c00045{bottom:333.930450px;}
.y1c_c00045{bottom:349.140600px;}
.y1b_c00045{bottom:369.840600px;}
.y1a_c00045{bottom:390.540600px;}
.y19_c00045{bottom:418.260600px;}
.y18_c00045{bottom:452.640600px;}
.y17_c00045{bottom:487.110450px;}
.y16_c00045{bottom:521.490450px;}
.y15_c00045{bottom:555.960450px;}
.y14_c00045{bottom:590.340450px;}
.y13_c00045{bottom:624.810450px;}
.y12_c00045{bottom:659.190450px;}
.y11_c00045{bottom:693.660450px;}
.y10_c00045{bottom:728.040450px;}
.yf_c00045{bottom:762.510450px;}
.ye_c00045{bottom:796.890450px;}
.yd_c00045{bottom:831.360450px;}
.yc_c00045{bottom:865.740450px;}
.yb_c00045{bottom:900.210450px;}
.ya_c00045{bottom:934.590450px;}
.y9_c00045{bottom:969.060450px;}
.y8_c00045{bottom:1003.440450px;}
.y7_c00045{bottom:1037.910450px;}
.y6_c00045{bottom:1072.290450px;}
.y5_c00045{bottom:1106.760450px;}
.y4_c00045{bottom:1141.140450px;}
.y2_c00045{bottom:1173.810450px;}
.y1_c00045{bottom:1196.850450px;}
.h7_c00045{height:49.937344px;}
.h1_c00045{height:50.315273px;}
.h4_c00045{height:60.257812px;}
.h6_c00045{height:65.130820px;}
.h2_c00045{height:70.664062px;}
.h3_c00045{height:72.160313px;}
.h5_c00045{height:75.093750px;}
.h0_c00045{height:1263.000000px;}
.w1_c00045{width:892.500000px;}
.w0_c00045{width:892.830000px;}
.x0_c00045{left:0.000000px;}
.x2_c00045{left:127.620000px;}
.x6_c00045{left:141.125220px;}
.x3_c00045{left:180.810000px;}
.x4_c00045{left:207.540000px;}
.x5_c00045{left:235.710000px;}
.x1_c00045{left:689.310000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.v1_c00045{vertical-align:14.080000pt;}
.v2_c00045{vertical-align:26.560000pt;}
.ls15_c00045{letter-spacing:-0.134400pt;}
.ls1d_c00045{letter-spacing:-0.057600pt;}
.ls1c_c00045{letter-spacing:-0.038400pt;}
.ls13_c00045{letter-spacing:-0.032064pt;}
.ls1b_c00045{letter-spacing:-0.025600pt;}
.ls1e_c00045{letter-spacing:-0.019200pt;}
.ls20_c00045{letter-spacing:-0.017280pt;}
.ls18_c00045{letter-spacing:-0.012800pt;}
.ls21_c00045{letter-spacing:-0.008512pt;}
.ls17_c00045{letter-spacing:-0.006400pt;}
.ls1f_c00045{letter-spacing:-0.003456pt;}
.ls14_c00045{letter-spacing:0.000000pt;}
.lsd_c00045{letter-spacing:0.003456pt;}
.ls1_c00045{letter-spacing:0.006400pt;}
.ls9_c00045{letter-spacing:0.008320pt;}
.ls7_c00045{letter-spacing:0.012768pt;}
.ls16_c00045{letter-spacing:0.012800pt;}
.lsc_c00045{letter-spacing:0.017024pt;}
.ls11_c00045{letter-spacing:0.021280pt;}
.lsb_c00045{letter-spacing:0.025536pt;}
.ls4_c00045{letter-spacing:0.025600pt;}
.lsa_c00045{letter-spacing:0.029792pt;}
.lsf_c00045{letter-spacing:0.034048pt;}
.ls10_c00045{letter-spacing:0.038304pt;}
.ls19_c00045{letter-spacing:0.048672pt;}
.ls12_c00045{letter-spacing:0.051072pt;}
.ls5_c00045{letter-spacing:0.051200pt;}
.lse_c00045{letter-spacing:0.055328pt;}
.ls6_c00045{letter-spacing:0.064000pt;}
.ls8_c00045{letter-spacing:0.067520pt;}
.ls1a_c00045{letter-spacing:0.083200pt;}
.ls2_c00045{letter-spacing:0.128000pt;}
.ls3_c00045{letter-spacing:58.048000pt;}
.ls0_c00045{letter-spacing:1090.880000pt;}
.ws3_c00045{word-spacing:-11.865728pt;}
.ws2_c00045{word-spacing:-9.611136pt;}
.ws1_c00045{word-spacing:-9.590400pt;}
.ws0_c00045{word-spacing:-9.408672pt;}
.wsc_c00045{word-spacing:-0.076800pt;}
.wsb_c00045{word-spacing:-0.025600pt;}
.ws30_c00045{word-spacing:-0.021280pt;}
.ws8_c00045{word-spacing:-0.012800pt;}
.ws28_c00045{word-spacing:-0.008512pt;}
.ws5_c00045{word-spacing:0.000000pt;}
.ws22_c00045{word-spacing:0.004256pt;}
.ws19_c00045{word-spacing:0.012800pt;}
.ws2b_c00045{word-spacing:0.025536pt;}
.ws4_c00045{word-spacing:0.112224pt;}
.ws25_c00045{word-spacing:0.310688pt;}
.ws23_c00045{word-spacing:0.321408pt;}
.ws24_c00045{word-spacing:0.629888pt;}
.ws18_c00045{word-spacing:0.646400pt;}
.ws7_c00045{word-spacing:1.600000pt;}
.ws26_c00045{word-spacing:2.864288pt;}
.wsa_c00045{word-spacing:3.168000pt;}
.ws27_c00045{word-spacing:3.187744pt;}
.ws6_c00045{word-spacing:3.520000pt;}
.wsd_c00045{word-spacing:3.596800pt;}
.ws15_c00045{word-spacing:3.840000pt;}
.ws21_c00045{word-spacing:5.388800pt;}
.ws20_c00045{word-spacing:5.440000pt;}
.ws2f_c00045{word-spacing:6.043520pt;}
.ws2e_c00045{word-spacing:6.056288pt;}
.ws1d_c00045{word-spacing:6.476800pt;}
.ws1c_c00045{word-spacing:6.483200pt;}
.wsf_c00045{word-spacing:6.662400pt;}
.wse_c00045{word-spacing:6.668800pt;}
.ws17_c00045{word-spacing:7.699200pt;}
.ws1a_c00045{word-spacing:8.665600pt;}
.ws2c_c00045{word-spacing:9.895200pt;}
.ws2d_c00045{word-spacing:9.907968pt;}
.ws9_c00045{word-spacing:12.512000pt;}
.ws2a_c00045{word-spacing:12.759488pt;}
.ws29_c00045{word-spacing:12.802048pt;}
.ws16_c00045{word-spacing:14.086400pt;}
.ws14_c00045{word-spacing:15.334400pt;}
.ws13_c00045{word-spacing:15.360000pt;}
.ws1b_c00045{word-spacing:20.774400pt;}
.ws1f_c00045{word-spacing:22.406400pt;}
.ws1e_c00045{word-spacing:22.412800pt;}
.ws12_c00045{word-spacing:22.425600pt;}
.ws10_c00045{word-spacing:22.438400pt;}
.ws11_c00045{word-spacing:22.457600pt;}
._0_c00045{margin-left:-0.988864pt;}
._1_c00045{width:0.966272pt;}
.fs5_c00045{font-size:34.560000pt;}
.fs3_c00045{font-size:37.440000pt;}
.fs4_c00045{font-size:42.560000pt;}
.fs2_c00045{font-size:48.000000pt;}
.fs0_c00045{font-size:53.440000pt;}
.fs1_c00045{font-size:64.000000pt;}
.y0_c00045{bottom:0.000000pt;}
.y3_c00045{bottom:51.067067pt;}
.y2b_c00045{bottom:101.076187pt;}
.y2a_c00045{bottom:113.397307pt;}
.y29_c00045{bottom:125.633307pt;}
.y28_c00045{bottom:137.869307pt;}
.y27_c00045{bottom:154.191067pt;}
.y26_c00045{bottom:166.444507pt;}
.y25_c00045{bottom:182.681147pt;}
.y24_c00045{bottom:199.002907pt;}
.y23_c00045{bottom:211.238907pt;}
.y22_c00045{bottom:223.474907pt;}
.y21_c00045{bottom:239.796667pt;}
.y20_c00045{bottom:252.032667pt;}
.y1f_c00045{bottom:264.268667pt;}
.y1e_c00045{bottom:280.505307pt;}
.y1d_c00045{bottom:296.827067pt;}
.y1c_c00045{bottom:310.347200pt;}
.y1b_c00045{bottom:328.747200pt;}
.y1a_c00045{bottom:347.147200pt;}
.y19_c00045{bottom:371.787200pt;}
.y18_c00045{bottom:402.347200pt;}
.y17_c00045{bottom:432.987067pt;}
.y16_c00045{bottom:463.547067pt;}
.y15_c00045{bottom:494.187067pt;}
.y14_c00045{bottom:524.747067pt;}
.y13_c00045{bottom:555.387067pt;}
.y12_c00045{bottom:585.947067pt;}
.y11_c00045{bottom:616.587067pt;}
.y10_c00045{bottom:647.147067pt;}
.yf_c00045{bottom:677.787067pt;}
.ye_c00045{bottom:708.347067pt;}
.yd_c00045{bottom:738.987067pt;}
.yc_c00045{bottom:769.547067pt;}
.yb_c00045{bottom:800.187067pt;}
.ya_c00045{bottom:830.747067pt;}
.y9_c00045{bottom:861.387067pt;}
.y8_c00045{bottom:891.947067pt;}
.y7_c00045{bottom:922.587067pt;}
.y6_c00045{bottom:953.147067pt;}
.y5_c00045{bottom:983.787067pt;}
.y4_c00045{bottom:1014.347067pt;}
.y2_c00045{bottom:1043.387067pt;}
.y1_c00045{bottom:1063.867067pt;}
.h7_c00045{height:44.388750pt;}
.h1_c00045{height:44.724687pt;}
.h4_c00045{height:53.562500pt;}
.h6_c00045{height:57.894062pt;}
.h2_c00045{height:62.812500pt;}
.h3_c00045{height:64.142500pt;}
.h5_c00045{height:66.750000pt;}
.h0_c00045{height:1122.666667pt;}
.w1_c00045{width:793.333333pt;}
.w0_c00045{width:793.626667pt;}
.x0_c00045{left:0.000000pt;}
.x2_c00045{left:113.440000pt;}
.x6_c00045{left:125.444640pt;}
.x3_c00045{left:160.720000pt;}
.x4_c00045{left:184.480000pt;}
.x5_c00045{left:209.520000pt;}
.x1_c00045{left:612.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_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_d9cbc5b0059a8e5b0a8f5ee5.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.100098;font-style:normal;font-weight:normal;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_a3889676355eaf58718da382.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;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_c00046;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00046;src:url('chunks/assets/font_a260e4da2b7bdae4caeec961.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00046;src:url('chunks/assets/font_5572ab021995f8a7a40bb4c2.woff2')format("woff");}.ff5_c00046{font-family:ff5_c00046;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_c00046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.v1_c00046{vertical-align:15.840000px;}
.v2_c00046{vertical-align:29.880000px;}
.ls15_c00046{letter-spacing:-0.151200px;}
.ls19_c00046{letter-spacing:-0.050400px;}
.ls1c_c00046{letter-spacing:-0.043200px;}
.ls18_c00046{letter-spacing:-0.036000px;}
.ls1d_c00046{letter-spacing:-0.028800px;}
.ls1a_c00046{letter-spacing:-0.021600px;}
.ls17_c00046{letter-spacing:-0.014400px;}
.ls1e_c00046{letter-spacing:-0.007776px;}
.ls16_c00046{letter-spacing:-0.007200px;}
.ls14_c00046{letter-spacing:0.000000px;}
.ls7_c00046{letter-spacing:0.007200px;}
.lsf_c00046{letter-spacing:0.009360px;}
.ls8_c00046{letter-spacing:0.014364px;}
.ls2_c00046{letter-spacing:0.014400px;}
.lsc_c00046{letter-spacing:0.019152px;}
.lsa_c00046{letter-spacing:0.033516px;}
.ls3_c00046{letter-spacing:0.033552px;}
.ls11_c00046{letter-spacing:0.038304px;}
.ls4_c00046{letter-spacing:0.041940px;}
.ls12_c00046{letter-spacing:0.043092px;}
.ls0_c00046{letter-spacing:0.048096px;}
.lsd_c00046{letter-spacing:0.052668px;}
.ls1b_c00046{letter-spacing:0.054756px;}
.ls13_c00046{letter-spacing:0.067032px;}
.lsb_c00046{letter-spacing:0.071820px;}
.ls9_c00046{letter-spacing:0.076608px;}
.ls5_c00046{letter-spacing:0.144000px;}
.lse_c00046{letter-spacing:0.350640px;}
.ls10_c00046{letter-spacing:17.271360px;}
.ls6_c00046{letter-spacing:66.024000px;}
.ls1_c00046{letter-spacing:1227.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;}
}
.ws1_c00046{word-spacing:-13.310640px;}
.ws2_c00046{word-spacing:-10.800864px;}
.ws0_c00046{word-spacing:-10.584756px;}
.ws22_c00046{word-spacing:-0.172800px;}
.ws36_c00046{word-spacing:-0.033516px;}
.ws14_c00046{word-spacing:-0.016776px;}
.ws26_c00046{word-spacing:-0.014400px;}
.ws23_c00046{word-spacing:-0.007200px;}
.ws4_c00046{word-spacing:0.000000px;}
.ws31_c00046{word-spacing:0.004788px;}
.ws3_c00046{word-spacing:0.042084px;}
.ws13_c00046{word-spacing:0.050328px;}
.ws12_c00046{word-spacing:0.079200px;}
.ws1f_c00046{word-spacing:0.086400px;}
.ws18_c00046{word-spacing:0.129600px;}
.ws20_c00046{word-spacing:0.720000px;}
.ws21_c00046{word-spacing:0.734400px;}
.ws8_c00046{word-spacing:2.066400px;}
.ws7_c00046{word-spacing:2.174400px;}
.ws9_c00046{word-spacing:2.196000px;}
.ws27_c00046{word-spacing:2.613600px;}
.wsf_c00046{word-spacing:3.945600px;}
.wsa_c00046{word-spacing:4.039200px;}
.wsc_c00046{word-spacing:4.060800px;}
.wsb_c00046{word-spacing:4.125600px;}
.ws2f_c00046{word-spacing:4.644360px;}
.ws2e_c00046{word-spacing:4.677876px;}
.ws30_c00046{word-spacing:4.682664px;}
.ws2b_c00046{word-spacing:6.420708px;}
.ws2d_c00046{word-spacing:6.425496px;}
.ws2c_c00046{word-spacing:6.463800px;}
.ws29_c00046{word-spacing:6.482952px;}
.ws28_c00046{word-spacing:6.501600px;}
.ws2a_c00046{word-spacing:6.838992px;}
.ws16_c00046{word-spacing:7.941600px;}
.ws19_c00046{word-spacing:9.000000px;}
.ws1a_c00046{word-spacing:9.007200px;}
.wsd_c00046{word-spacing:9.367200px;}
.wse_c00046{word-spacing:9.424800px;}
.ws17_c00046{word-spacing:13.701600px;}
.ws24_c00046{word-spacing:15.386400px;}
.ws25_c00046{word-spacing:15.508800px;}
.ws1b_c00046{word-spacing:16.545600px;}
.ws1c_c00046{word-spacing:16.574400px;}
.ws1d_c00046{word-spacing:16.603200px;}
.ws1e_c00046{word-spacing:16.905600px;}
.ws35_c00046{word-spacing:17.232012px;}
.ws34_c00046{word-spacing:17.255952px;}
.ws33_c00046{word-spacing:17.260740px;}
.ws32_c00046{word-spacing:17.284680px;}
.ws15_c00046{word-spacing:18.360000px;}
.ws10_c00046{word-spacing:26.294400px;}
.ws11_c00046{word-spacing:26.352000px;}
.ws6_c00046{word-spacing:29.232000px;}
.ws5_c00046{word-spacing:29.253600px;}
._0_c00046{margin-left:-1.322640px;}
._1_c00046{width:1.008000px;}
._2_c00046{width:17.471052px;}
.fc0_c00046{color:rgb(0,0,0);}
.fs6_c00046{font-size:38.880000px;}
.fs4_c00046{font-size:42.120000px;}
.fs5_c00046{font-size:47.880000px;}
.fs1_c00046{font-size:54.000000px;}
.fs0_c00046{font-size:60.120000px;}
.fs2_c00046{font-size:72.000000px;}
.fs3_c00046{font-size:83.880000px;}
.y0_c00046{bottom:0.000000px;}
.y3_c00046{bottom:57.450450px;}
.y24_c00046{bottom:113.699190px;}
.y23_c00046{bottom:127.567620px;}
.y22_c00046{bottom:145.833840px;}
.y21_c00046{bottom:159.599340px;}
.y20_c00046{bottom:173.460600px;}
.y1f_c00046{bottom:188.670450px;}
.y1e_c00046{bottom:209.370450px;}
.y1d_c00046{bottom:230.070450px;}
.y1c_c00046{bottom:259.950450px;}
.y1b_c00046{bottom:294.420450px;}
.y1a_c00046{bottom:328.800450px;}
.y19_c00046{bottom:363.270450px;}
.y18_c00046{bottom:397.650450px;}
.y17_c00046{bottom:432.120450px;}
.y16_c00046{bottom:466.500450px;}
.y15_c00046{bottom:500.970450px;}
.y14_c00046{bottom:535.350450px;}
.y13_c00046{bottom:569.820450px;}
.y12_c00046{bottom:613.200450px;}
.y11_c00046{bottom:647.670450px;}
.y10_c00046{bottom:682.050450px;}
.yf_c00046{bottom:725.520450px;}
.ye_c00046{bottom:759.900450px;}
.yd_c00046{bottom:794.370450px;}
.yc_c00046{bottom:828.750450px;}
.yb_c00046{bottom:870.600450px;}
.ya_c00046{bottom:934.590450px;}
.y9_c00046{bottom:969.060450px;}
.y8_c00046{bottom:1003.440450px;}
.y7_c00046{bottom:1037.910450px;}
.y6_c00046{bottom:1072.290450px;}
.y5_c00046{bottom:1106.760450px;}
.y4_c00046{bottom:1141.140450px;}
.y2_c00046{bottom:1177.860450px;}
.y1_c00046{bottom:1196.850450px;}
.h9_c00046{height:49.937344px;}
.h1_c00046{height:50.315273px;}
.h2_c00046{height:56.320312px;}
.h4_c00046{height:60.257812px;}
.h6_c00046{height:65.130820px;}
.h5_c00046{height:70.282266px;}
.h8_c00046{height:70.664062px;}
.h3_c00046{height:72.160312px;}
.h7_c00046{height:75.093750px;}
.h0_c00046{height:1263.000000px;}
.w1_c00046{width:892.500000px;}
.w0_c00046{width:892.830000px;}
.x0_c00046{left:0.000000px;}
.x1_c00046{left:127.620000px;}
.x4_c00046{left:141.118380px;}
.x2_c00046{left:180.720000px;}
.x3_c00046{left:207.090000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.v1_c00046{vertical-align:14.080000pt;}
.v2_c00046{vertical-align:26.560000pt;}
.ls15_c00046{letter-spacing:-0.134400pt;}
.ls19_c00046{letter-spacing:-0.044800pt;}
.ls1c_c00046{letter-spacing:-0.038400pt;}
.ls18_c00046{letter-spacing:-0.032000pt;}
.ls1d_c00046{letter-spacing:-0.025600pt;}
.ls1a_c00046{letter-spacing:-0.019200pt;}
.ls17_c00046{letter-spacing:-0.012800pt;}
.ls1e_c00046{letter-spacing:-0.006912pt;}
.ls16_c00046{letter-spacing:-0.006400pt;}
.ls14_c00046{letter-spacing:0.000000pt;}
.ls7_c00046{letter-spacing:0.006400pt;}
.lsf_c00046{letter-spacing:0.008320pt;}
.ls8_c00046{letter-spacing:0.012768pt;}
.ls2_c00046{letter-spacing:0.012800pt;}
.lsc_c00046{letter-spacing:0.017024pt;}
.lsa_c00046{letter-spacing:0.029792pt;}
.ls3_c00046{letter-spacing:0.029824pt;}
.ls11_c00046{letter-spacing:0.034048pt;}
.ls4_c00046{letter-spacing:0.037280pt;}
.ls12_c00046{letter-spacing:0.038304pt;}
.ls0_c00046{letter-spacing:0.042752pt;}
.lsd_c00046{letter-spacing:0.046816pt;}
.ls1b_c00046{letter-spacing:0.048672pt;}
.ls13_c00046{letter-spacing:0.059584pt;}
.lsb_c00046{letter-spacing:0.063840pt;}
.ls9_c00046{letter-spacing:0.068096pt;}
.ls5_c00046{letter-spacing:0.128000pt;}
.lse_c00046{letter-spacing:0.311680pt;}
.ls10_c00046{letter-spacing:15.352320pt;}
.ls6_c00046{letter-spacing:58.688000pt;}
.ls1_c00046{letter-spacing:1090.880000pt;}
.ws1_c00046{word-spacing:-11.831680pt;}
.ws2_c00046{word-spacing:-9.600768pt;}
.ws0_c00046{word-spacing:-9.408672pt;}
.ws22_c00046{word-spacing:-0.153600pt;}
.ws36_c00046{word-spacing:-0.029792pt;}
.ws14_c00046{word-spacing:-0.014912pt;}
.ws26_c00046{word-spacing:-0.012800pt;}
.ws23_c00046{word-spacing:-0.006400pt;}
.ws4_c00046{word-spacing:0.000000pt;}
.ws31_c00046{word-spacing:0.004256pt;}
.ws3_c00046{word-spacing:0.037408pt;}
.ws13_c00046{word-spacing:0.044736pt;}
.ws12_c00046{word-spacing:0.070400pt;}
.ws1f_c00046{word-spacing:0.076800pt;}
.ws18_c00046{word-spacing:0.115200pt;}
.ws20_c00046{word-spacing:0.640000pt;}
.ws21_c00046{word-spacing:0.652800pt;}
.ws8_c00046{word-spacing:1.836800pt;}
.ws7_c00046{word-spacing:1.932800pt;}
.ws9_c00046{word-spacing:1.952000pt;}
.ws27_c00046{word-spacing:2.323200pt;}
.wsf_c00046{word-spacing:3.507200pt;}
.wsa_c00046{word-spacing:3.590400pt;}
.wsc_c00046{word-spacing:3.609600pt;}
.wsb_c00046{word-spacing:3.667200pt;}
.ws2f_c00046{word-spacing:4.128320pt;}
.ws2e_c00046{word-spacing:4.158112pt;}
.ws30_c00046{word-spacing:4.162368pt;}
.ws2b_c00046{word-spacing:5.707296pt;}
.ws2d_c00046{word-spacing:5.711552pt;}
.ws2c_c00046{word-spacing:5.745600pt;}
.ws29_c00046{word-spacing:5.762624pt;}
.ws28_c00046{word-spacing:5.779200pt;}
.ws2a_c00046{word-spacing:6.079104pt;}
.ws16_c00046{word-spacing:7.059200pt;}
.ws19_c00046{word-spacing:8.000000pt;}
.ws1a_c00046{word-spacing:8.006400pt;}
.wsd_c00046{word-spacing:8.326400pt;}
.wse_c00046{word-spacing:8.377600pt;}
.ws17_c00046{word-spacing:12.179200pt;}
.ws24_c00046{word-spacing:13.676800pt;}
.ws25_c00046{word-spacing:13.785600pt;}
.ws1b_c00046{word-spacing:14.707200pt;}
.ws1c_c00046{word-spacing:14.732800pt;}
.ws1d_c00046{word-spacing:14.758400pt;}
.ws1e_c00046{word-spacing:15.027200pt;}
.ws35_c00046{word-spacing:15.317344pt;}
.ws34_c00046{word-spacing:15.338624pt;}
.ws33_c00046{word-spacing:15.342880pt;}
.ws32_c00046{word-spacing:15.364160pt;}
.ws15_c00046{word-spacing:16.320000pt;}
.ws10_c00046{word-spacing:23.372800pt;}
.ws11_c00046{word-spacing:23.424000pt;}
.ws6_c00046{word-spacing:25.984000pt;}
.ws5_c00046{word-spacing:26.003200pt;}
._0_c00046{margin-left:-1.175680pt;}
._1_c00046{width:0.896000pt;}
._2_c00046{width:15.529824pt;}
.fs6_c00046{font-size:34.560000pt;}
.fs4_c00046{font-size:37.440000pt;}
.fs5_c00046{font-size:42.560000pt;}
.fs1_c00046{font-size:48.000000pt;}
.fs0_c00046{font-size:53.440000pt;}
.fs2_c00046{font-size:64.000000pt;}
.fs3_c00046{font-size:74.560000pt;}
.y0_c00046{bottom:0.000000pt;}
.y3_c00046{bottom:51.067067pt;}
.y24_c00046{bottom:101.065947pt;}
.y23_c00046{bottom:113.393440pt;}
.y22_c00046{bottom:129.630080pt;}
.y21_c00046{bottom:141.866080pt;}
.y20_c00046{bottom:154.187200pt;}
.y1f_c00046{bottom:167.707067pt;}
.y1e_c00046{bottom:186.107067pt;}
.y1d_c00046{bottom:204.507067pt;}
.y1c_c00046{bottom:231.067067pt;}
.y1b_c00046{bottom:261.707067pt;}
.y1a_c00046{bottom:292.267067pt;}
.y19_c00046{bottom:322.907067pt;}
.y18_c00046{bottom:353.467067pt;}
.y17_c00046{bottom:384.107067pt;}
.y16_c00046{bottom:414.667067pt;}
.y15_c00046{bottom:445.307067pt;}
.y14_c00046{bottom:475.867067pt;}
.y13_c00046{bottom:506.507067pt;}
.y12_c00046{bottom:545.067067pt;}
.y11_c00046{bottom:575.707067pt;}
.y10_c00046{bottom:606.267067pt;}
.yf_c00046{bottom:644.907067pt;}
.ye_c00046{bottom:675.467067pt;}
.yd_c00046{bottom:706.107067pt;}
.yc_c00046{bottom:736.667067pt;}
.yb_c00046{bottom:773.867067pt;}
.ya_c00046{bottom:830.747067pt;}
.y9_c00046{bottom:861.387067pt;}
.y8_c00046{bottom:891.947067pt;}
.y7_c00046{bottom:922.587067pt;}
.y6_c00046{bottom:953.147067pt;}
.y5_c00046{bottom:983.787067pt;}
.y4_c00046{bottom:1014.347067pt;}
.y2_c00046{bottom:1046.987067pt;}
.y1_c00046{bottom:1063.867067pt;}
.h9_c00046{height:44.388750pt;}
.h1_c00046{height:44.724687pt;}
.h2_c00046{height:50.062500pt;}
.h4_c00046{height:53.562500pt;}
.h6_c00046{height:57.894063pt;}
.h5_c00046{height:62.473125pt;}
.h8_c00046{height:62.812500pt;}
.h3_c00046{height:64.142500pt;}
.h7_c00046{height:66.750000pt;}
.h0_c00046{height:1122.666667pt;}
.w1_c00046{width:793.333333pt;}
.w0_c00046{width:793.626667pt;}
.x0_c00046{left:0.000000pt;}
.x1_c00046{left:113.440000pt;}
.x4_c00046{left:125.438560pt;}
.x2_c00046{left:160.640000pt;}
.x3_c00046{left:184.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cd0a9019bd58078593455b25.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.100098;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00047;src:url('chunks/assets/font_09bccb2444fbae4e4a88e4a2.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00047;src:url('chunks/assets/font_1f51295cf1b459ece980ae5a.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00047{vertical-align:15.840000px;}
.v2_c00047{vertical-align:29.880000px;}
.lsc_c00047{letter-spacing:-0.151200px;}
.ls12_c00047{letter-spacing:-0.043200px;}
.lsa_c00047{letter-spacing:-0.036072px;}
.ls10_c00047{letter-spacing:-0.036000px;}
.lsd_c00047{letter-spacing:-0.028800px;}
.lsf_c00047{letter-spacing:-0.014400px;}
.lse_c00047{letter-spacing:-0.007200px;}
.lsb_c00047{letter-spacing:0.000000px;}
.ls16_c00047{letter-spacing:0.003888px;}
.ls3_c00047{letter-spacing:0.007200px;}
.ls5_c00047{letter-spacing:0.009576px;}
.ls1_c00047{letter-spacing:0.014400px;}
.ls8_c00047{letter-spacing:0.019152px;}
.ls4_c00047{letter-spacing:0.021600px;}
.ls7_c00047{letter-spacing:0.038304px;}
.ls2_c00047{letter-spacing:0.043200px;}
.ls13_c00047{letter-spacing:0.050400px;}
.ls14_c00047{letter-spacing:0.054756px;}
.ls9_c00047{letter-spacing:0.067032px;}
.ls11_c00047{letter-spacing:0.067104px;}
.ls15_c00047{letter-spacing:0.105336px;}
.ls6_c00047{letter-spacing:19.431360px;}
.ls0_c00047{letter-spacing:1227.240000px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00047{word-spacing:-13.415976px;}
.ws1_c00047{word-spacing:-13.320216px;}
.ws3_c00047{word-spacing:-10.812528px;}
.ws0_c00047{word-spacing:-10.584756px;}
.ws1a_c00047{word-spacing:-0.411768px;}
.ws10_c00047{word-spacing:-0.159372px;}
.ws5_c00047{word-spacing:0.000000px;}
.ws1b_c00047{word-spacing:0.009576px;}
.ws4_c00047{word-spacing:0.126252px;}
.ws15_c00047{word-spacing:0.518400px;}
.ws16_c00047{word-spacing:0.727200px;}
.ws6_c00047{word-spacing:0.748800px;}
.ws14_c00047{word-spacing:6.069600px;}
.ws13_c00047{word-spacing:6.112800px;}
.ws8_c00047{word-spacing:7.185600px;}
.ws7_c00047{word-spacing:7.207200px;}
.ws9_c00047{word-spacing:7.272000px;}
.wsa_c00047{word-spacing:7.574400px;}
.ws12_c00047{word-spacing:10.072800px;}
.ws11_c00047{word-spacing:10.080000px;}
.wse_c00047{word-spacing:12.636000px;}
.wsf_c00047{word-spacing:12.700800px;}
.ws17_c00047{word-spacing:14.767200px;}
.wsb_c00047{word-spacing:16.905600px;}
.wsc_c00047{word-spacing:16.963200px;}
.wsd_c00047{word-spacing:17.092800px;}
.ws18_c00047{word-spacing:19.420128px;}
.ws19_c00047{word-spacing:19.439280px;}
._0_c00047{width:1.152000px;}
.fc0_c00047{color:rgb(0,0,0);}
.fs6_c00047{font-size:38.880000px;}
.fs4_c00047{font-size:42.120000px;}
.fs5_c00047{font-size:47.880000px;}
.fs2_c00047{font-size:54.000000px;}
.fs0_c00047{font-size:60.120000px;}
.fs1_c00047{font-size:72.000000px;}
.fs3_c00047{font-size:83.880000px;}
.y0_c00047{bottom:0.000000px;}
.y3_c00047{bottom:57.450450px;}
.y14_c00047{bottom:113.699190px;}
.y13_c00047{bottom:127.560450px;}
.y12_c00047{bottom:142.770450px;}
.y11_c00047{bottom:163.470450px;}
.y10_c00047{bottom:184.170450px;}
.yf_c00047{bottom:725.520450px;}
.ye_c00047{bottom:759.900450px;}
.yd_c00047{bottom:794.370450px;}
.yc_c00047{bottom:828.750450px;}
.yb_c00047{bottom:863.220450px;}
.ya_c00047{bottom:904.980450px;}
.y9_c00047{bottom:969.060450px;}
.y8_c00047{bottom:1003.440450px;}
.y7_c00047{bottom:1037.910450px;}
.y6_c00047{bottom:1072.290450px;}
.y5_c00047{bottom:1106.760450px;}
.y4_c00047{bottom:1141.140450px;}
.y2_c00047{bottom:1173.810450px;}
.y1_c00047{bottom:1196.850450px;}
.h7_c00047{height:49.937344px;}
.h1_c00047{height:50.315273px;}
.h4_c00047{height:60.257812px;}
.h6_c00047{height:65.130820px;}
.h5_c00047{height:70.282266px;}
.h2_c00047{height:70.664062px;}
.h3_c00047{height:72.160313px;}
.h0_c00047{height:1263.000000px;}
.w1_c00047{width:892.500000px;}
.w0_c00047{width:892.830000px;}
.x0_c00047{left:0.000000px;}
.x2_c00047{left:127.620000px;}
.x4_c00047{left:141.118830px;}
.x3_c00047{left:180.720000px;}
.x1_c00047{left:689.310000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.v1_c00047{vertical-align:14.080000pt;}
.v2_c00047{vertical-align:26.560000pt;}
.lsc_c00047{letter-spacing:-0.134400pt;}
.ls12_c00047{letter-spacing:-0.038400pt;}
.lsa_c00047{letter-spacing:-0.032064pt;}
.ls10_c00047{letter-spacing:-0.032000pt;}
.lsd_c00047{letter-spacing:-0.025600pt;}
.lsf_c00047{letter-spacing:-0.012800pt;}
.lse_c00047{letter-spacing:-0.006400pt;}
.lsb_c00047{letter-spacing:0.000000pt;}
.ls16_c00047{letter-spacing:0.003456pt;}
.ls3_c00047{letter-spacing:0.006400pt;}
.ls5_c00047{letter-spacing:0.008512pt;}
.ls1_c00047{letter-spacing:0.012800pt;}
.ls8_c00047{letter-spacing:0.017024pt;}
.ls4_c00047{letter-spacing:0.019200pt;}
.ls7_c00047{letter-spacing:0.034048pt;}
.ls2_c00047{letter-spacing:0.038400pt;}
.ls13_c00047{letter-spacing:0.044800pt;}
.ls14_c00047{letter-spacing:0.048672pt;}
.ls9_c00047{letter-spacing:0.059584pt;}
.ls11_c00047{letter-spacing:0.059648pt;}
.ls15_c00047{letter-spacing:0.093632pt;}
.ls6_c00047{letter-spacing:17.272320pt;}
.ls0_c00047{letter-spacing:1090.880000pt;}
.ws2_c00047{word-spacing:-11.925312pt;}
.ws1_c00047{word-spacing:-11.840192pt;}
.ws3_c00047{word-spacing:-9.611136pt;}
.ws0_c00047{word-spacing:-9.408672pt;}
.ws1a_c00047{word-spacing:-0.366016pt;}
.ws10_c00047{word-spacing:-0.141664pt;}
.ws5_c00047{word-spacing:0.000000pt;}
.ws1b_c00047{word-spacing:0.008512pt;}
.ws4_c00047{word-spacing:0.112224pt;}
.ws15_c00047{word-spacing:0.460800pt;}
.ws16_c00047{word-spacing:0.646400pt;}
.ws6_c00047{word-spacing:0.665600pt;}
.ws14_c00047{word-spacing:5.395200pt;}
.ws13_c00047{word-spacing:5.433600pt;}
.ws8_c00047{word-spacing:6.387200pt;}
.ws7_c00047{word-spacing:6.406400pt;}
.ws9_c00047{word-spacing:6.464000pt;}
.wsa_c00047{word-spacing:6.732800pt;}
.ws12_c00047{word-spacing:8.953600pt;}
.ws11_c00047{word-spacing:8.960000pt;}
.wse_c00047{word-spacing:11.232000pt;}
.wsf_c00047{word-spacing:11.289600pt;}
.ws17_c00047{word-spacing:13.126400pt;}
.wsb_c00047{word-spacing:15.027200pt;}
.wsc_c00047{word-spacing:15.078400pt;}
.wsd_c00047{word-spacing:15.193600pt;}
.ws18_c00047{word-spacing:17.262336pt;}
.ws19_c00047{word-spacing:17.279360pt;}
._0_c00047{width:1.024000pt;}
.fs6_c00047{font-size:34.560000pt;}
.fs4_c00047{font-size:37.440000pt;}
.fs5_c00047{font-size:42.560000pt;}
.fs2_c00047{font-size:48.000000pt;}
.fs0_c00047{font-size:53.440000pt;}
.fs1_c00047{font-size:64.000000pt;}
.fs3_c00047{font-size:74.560000pt;}
.y0_c00047{bottom:0.000000pt;}
.y3_c00047{bottom:51.067067pt;}
.y14_c00047{bottom:101.065947pt;}
.y13_c00047{bottom:113.387067pt;}
.y12_c00047{bottom:126.907067pt;}
.y11_c00047{bottom:145.307067pt;}
.y10_c00047{bottom:163.707067pt;}
.yf_c00047{bottom:644.907067pt;}
.ye_c00047{bottom:675.467067pt;}
.yd_c00047{bottom:706.107067pt;}
.yc_c00047{bottom:736.667067pt;}
.yb_c00047{bottom:767.307067pt;}
.ya_c00047{bottom:804.427067pt;}
.y9_c00047{bottom:861.387067pt;}
.y8_c00047{bottom:891.947067pt;}
.y7_c00047{bottom:922.587067pt;}
.y6_c00047{bottom:953.147067pt;}
.y5_c00047{bottom:983.787067pt;}
.y4_c00047{bottom:1014.347067pt;}
.y2_c00047{bottom:1043.387067pt;}
.y1_c00047{bottom:1063.867067pt;}
.h7_c00047{height:44.388750pt;}
.h1_c00047{height:44.724687pt;}
.h4_c00047{height:53.562500pt;}
.h6_c00047{height:57.894062pt;}
.h5_c00047{height:62.473125pt;}
.h2_c00047{height:62.812500pt;}
.h3_c00047{height:64.142500pt;}
.h0_c00047{height:1122.666667pt;}
.w1_c00047{width:793.333333pt;}
.w0_c00047{width:793.626667pt;}
.x0_c00047{left:0.000000pt;}
.x2_c00047{left:113.440000pt;}
.x4_c00047{left:125.438960pt;}
.x3_c00047{left:160.640000pt;}
.x1_c00047{left:612.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_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;}
.sc__c00048{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
}
.y0_c00048{bottom:0.000000px;}
.h0_c00048{height:1263.000000px;}
.w1_c00048{width:892.500000px;}
.w0_c00048{width:892.830000px;}
.x0_c00048{left:0.000000px;}
@media print{
.y0_c00048{bottom:0.000000pt;}
.h0_c00048{height:1122.666667pt;}
.w1_c00048{width:793.333333pt;}
.w0_c00048{width:793.626667pt;}
.x0_c00048{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_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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00049;src:url('chunks/assets/font_a69a79c4d3577f9a7af797bd.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;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_c00049;src:url('chunks/assets/font_548b254d5f39b614b03e6ca8.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00049;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00049;src:url('chunks/assets/font_3b82d1736559877638a0ee75.woff2')format("woff");}.ff5_c00049{font-family:ff5_c00049;line-height:1.100098;font-style: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;}
.ls6_c00049{letter-spacing:-0.151200px;}
.lsb_c00049{letter-spacing:-0.036000px;}
.ls9_c00049{letter-spacing:-0.021600px;}
.lsc_c00049{letter-spacing:-0.014400px;}
.ls7_c00049{letter-spacing:-0.010800px;}
.lsa_c00049{letter-spacing:-0.007200px;}
.ls5_c00049{letter-spacing:0.000000px;}
.ls2_c00049{letter-spacing:0.007200px;}
.ls1_c00049{letter-spacing:0.010800px;}
.ls3_c00049{letter-spacing:0.014400px;}
.ls4_c00049{letter-spacing:0.021600px;}
.lsd_c00049{letter-spacing:0.050400px;}
.ls8_c00049{letter-spacing:8.996400px;}
.ls0_c00049{letter-spacing:1967.976000px;}
.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;}
}
.ws2_c00049{word-spacing:-0.010800px;}
.ws0_c00049{word-spacing:0.000000px;}
.ws1_c00049{word-spacing:0.010800px;}
.ws15_c00049{word-spacing:0.014400px;}
.ws3_c00049{word-spacing:1.130400px;}
.wse_c00049{word-spacing:1.785600px;}
.wsd_c00049{word-spacing:1.814400px;}
.ws12_c00049{word-spacing:2.167200px;}
.ws7_c00049{word-spacing:4.356000px;}
.ws9_c00049{word-spacing:4.968000px;}
.ws8_c00049{word-spacing:5.061600px;}
.ws4_c00049{word-spacing:6.472800px;}
.ws5_c00049{word-spacing:6.602400px;}
.wsa_c00049{word-spacing:7.560000px;}
.ws11_c00049{word-spacing:9.309600px;}
.ws10_c00049{word-spacing:9.352800px;}
.wsf_c00049{word-spacing:9.381600px;}
.ws6_c00049{word-spacing:12.247200px;}
.ws14_c00049{word-spacing:12.585600px;}
.ws13_c00049{word-spacing:12.628800px;}
.wsb_c00049{word-spacing:30.369600px;}
.wsc_c00049{word-spacing:30.384000px;}
._1_c00049{margin-left:-10.044000px;}
._0_c00049{margin-left:-8.964000px;}
._2_c00049{margin-left:-7.884000px;}
._3_c00049{width:1.080000px;}
.fc0_c00049{color:rgb(0,0,0);}
.fs1_c00049{font-size:54.000000px;}
.fs0_c00049{font-size:72.000000px;}
.fs2_c00049{font-size:78.120000px;}
.fs3_c00049{font-size:108.000000px;}
.y0_c00049{bottom:0.000000px;}
.y2_c00049{bottom:57.450450px;}
.y3_c00049{bottom:61.410450px;}
.y14_c00049{bottom:237.000450px;}
.y13_c00049{bottom:271.470450px;}
.y12_c00049{bottom:305.850450px;}
.y11_c00049{bottom:340.320450px;}
.y10_c00049{bottom:374.700450px;}
.yf_c00049{bottom:409.170450px;}
.ye_c00049{bottom:443.550450px;}
.yd_c00049{bottom:478.020450px;}
.yc_c00049{bottom:512.400450px;}
.yb_c00049{bottom:555.870450px;}
.ya_c00049{bottom:590.250450px;}
.y9_c00049{bottom:624.720450px;}
.y8_c00049{bottom:659.100450px;}
.y7_c00049{bottom:783.750450px;}
.y6_c00049{bottom:814.071450px;}
.y5_c00049{bottom:844.500450px;}
.y4_c00049{bottom:1139.880450px;}
.y1_c00049{bottom:1193.250450px;}
.h1_c00049{height:47.988281px;}
.h2_c00049{height:56.320312px;}
.h6_c00049{height:60.257812px;}
.h3_c00049{height:65.456016px;}
.h5_c00049{height:90.492188px;}
.h4_c00049{height:112.640625px;}
.h0_c00049{height:1263.000000px;}
.w1_c00049{width:892.500000px;}
.w0_c00049{width:892.830000px;}
.x0_c00049{left:0.000000px;}
.x4_c00049{left:126.450000px;}
.x1_c00049{left:127.620000px;}
.x5_c00049{left:180.810000px;}
.x3_c00049{left:438.930000px;}
.x2_c00049{left:446.490000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls6_c00049{letter-spacing:-0.134400pt;}
.lsb_c00049{letter-spacing:-0.032000pt;}
.ls9_c00049{letter-spacing:-0.019200pt;}
.lsc_c00049{letter-spacing:-0.012800pt;}
.ls7_c00049{letter-spacing:-0.009600pt;}
.lsa_c00049{letter-spacing:-0.006400pt;}
.ls5_c00049{letter-spacing:0.000000pt;}
.ls2_c00049{letter-spacing:0.006400pt;}
.ls1_c00049{letter-spacing:0.009600pt;}
.ls3_c00049{letter-spacing:0.012800pt;}
.ls4_c00049{letter-spacing:0.019200pt;}
.lsd_c00049{letter-spacing:0.044800pt;}
.ls8_c00049{letter-spacing:7.996800pt;}
.ls0_c00049{letter-spacing:1749.312000pt;}
.ws2_c00049{word-spacing:-0.009600pt;}
.ws0_c00049{word-spacing:0.000000pt;}
.ws1_c00049{word-spacing:0.009600pt;}
.ws15_c00049{word-spacing:0.012800pt;}
.ws3_c00049{word-spacing:1.004800pt;}
.wse_c00049{word-spacing:1.587200pt;}
.wsd_c00049{word-spacing:1.612800pt;}
.ws12_c00049{word-spacing:1.926400pt;}
.ws7_c00049{word-spacing:3.872000pt;}
.ws9_c00049{word-spacing:4.416000pt;}
.ws8_c00049{word-spacing:4.499200pt;}
.ws4_c00049{word-spacing:5.753600pt;}
.ws5_c00049{word-spacing:5.868800pt;}
.wsa_c00049{word-spacing:6.720000pt;}
.ws11_c00049{word-spacing:8.275200pt;}
.ws10_c00049{word-spacing:8.313600pt;}
.wsf_c00049{word-spacing:8.339200pt;}
.ws6_c00049{word-spacing:10.886400pt;}
.ws14_c00049{word-spacing:11.187200pt;}
.ws13_c00049{word-spacing:11.225600pt;}
.wsb_c00049{word-spacing:26.995200pt;}
.wsc_c00049{word-spacing:27.008000pt;}
._1_c00049{margin-left:-8.928000pt;}
._0_c00049{margin-left:-7.968000pt;}
._2_c00049{margin-left:-7.008000pt;}
._3_c00049{width:0.960000pt;}
.fs1_c00049{font-size:48.000000pt;}
.fs0_c00049{font-size:64.000000pt;}
.fs2_c00049{font-size:69.440000pt;}
.fs3_c00049{font-size:96.000000pt;}
.y0_c00049{bottom:0.000000pt;}
.y2_c00049{bottom:51.067067pt;}
.y3_c00049{bottom:54.587067pt;}
.y14_c00049{bottom:210.667067pt;}
.y13_c00049{bottom:241.307067pt;}
.y12_c00049{bottom:271.867067pt;}
.y11_c00049{bottom:302.507067pt;}
.y10_c00049{bottom:333.067067pt;}
.yf_c00049{bottom:363.707067pt;}
.ye_c00049{bottom:394.267067pt;}
.yd_c00049{bottom:424.907067pt;}
.yc_c00049{bottom:455.467067pt;}
.yb_c00049{bottom:494.107067pt;}
.ya_c00049{bottom:524.667067pt;}
.y9_c00049{bottom:555.307067pt;}
.y8_c00049{bottom:585.867067pt;}
.y7_c00049{bottom:696.667067pt;}
.y6_c00049{bottom:723.619067pt;}
.y5_c00049{bottom:750.667067pt;}
.y4_c00049{bottom:1013.227067pt;}
.y1_c00049{bottom:1060.667067pt;}
.h1_c00049{height:42.656250pt;}
.h2_c00049{height:50.062500pt;}
.h6_c00049{height:53.562500pt;}
.h3_c00049{height:58.183125pt;}
.h5_c00049{height:80.437500pt;}
.h4_c00049{height:100.125000pt;}
.h0_c00049{height:1122.666667pt;}
.w1_c00049{width:793.333333pt;}
.w0_c00049{width:793.626667pt;}
.x0_c00049{left:0.000000pt;}
.x4_c00049{left:112.400000pt;}
.x1_c00049{left:113.440000pt;}
.x5_c00049{left:160.720000pt;}
.x3_c00049{left:390.160000pt;}
.x2_c00049{left:396.880000pt;}
}





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

.ir_c00050:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00050;src:url('chunks/assets/font_6b344939ae776bbe4a287337.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.100098;font-style:normal;font-weight:normal;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_8ff20280b0a8d04cdd301e86.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;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_c00050;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00050;src:url('chunks/assets/font_d4ca568e4829f9837a92e84f.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.102051;font-style:normal;font-weight:normal;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_26d43ab3273c73efc7ab317d.woff2')format("woff");}.ff5_c00050{font-family:ff5_c00050;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_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;}
.v1_c00050{vertical-align:15.840000px;}
.v2_c00050{vertical-align:29.880000px;}
.ls17_c00050{letter-spacing:-0.151200px;}
.ls1e_c00050{letter-spacing:-0.086400px;}
.ls1b_c00050{letter-spacing:-0.079200px;}
.ls1a_c00050{letter-spacing:-0.043200px;}
.ls20_c00050{letter-spacing:-0.036000px;}
.ls1d_c00050{letter-spacing:-0.028800px;}
.ls1c_c00050{letter-spacing:-0.021600px;}
.ls18_c00050{letter-spacing:-0.014400px;}
.ls22_c00050{letter-spacing:-0.007776px;}
.ls19_c00050{letter-spacing:-0.007200px;}
.ls21_c00050{letter-spacing:-0.003888px;}
.ls16_c00050{letter-spacing:0.000000px;}
.ls2_c00050{letter-spacing:0.007200px;}
.lsa_c00050{letter-spacing:0.014364px;}
.ls4_c00050{letter-spacing:0.014400px;}
.ls13_c00050{letter-spacing:0.019152px;}
.ls7_c00050{letter-spacing:0.021600px;}
.ls12_c00050{letter-spacing:0.023940px;}
.ls5_c00050{letter-spacing:0.028800px;}
.lsf_c00050{letter-spacing:0.033516px;}
.ls8_c00050{letter-spacing:0.036000px;}
.lsd_c00050{letter-spacing:0.038304px;}
.ls15_c00050{letter-spacing:0.043092px;}
.ls3_c00050{letter-spacing:0.045720px;}
.lsc_c00050{letter-spacing:0.047880px;}
.ls0_c00050{letter-spacing:0.048096px;}
.ls9_c00050{letter-spacing:0.052668px;}
.ls6_c00050{letter-spacing:0.057600px;}
.ls11_c00050{letter-spacing:0.062244px;}
.lse_c00050{letter-spacing:0.071820px;}
.ls10_c00050{letter-spacing:0.076608px;}
.ls25_c00050{letter-spacing:0.086184px;}
.ls1f_c00050{letter-spacing:0.086400px;}
.ls14_c00050{letter-spacing:0.095760px;}
.ls23_c00050{letter-spacing:0.349920px;}
.lsb_c00050{letter-spacing:0.350640px;}
.ls24_c00050{letter-spacing:0.361584px;}
.ls1_c00050{letter-spacing:1227.240000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00050{word-spacing:-18.028800px;}
.ws2_c00050{word-spacing:-13.310640px;}
.ws4_c00050{word-spacing:-11.170224px;}
.ws3_c00050{word-spacing:-11.158560px;}
.ws5_c00050{word-spacing:-10.808640px;}
.ws1_c00050{word-spacing:-10.800864px;}
.ws40_c00050{word-spacing:-0.067032px;}
.ws2a_c00050{word-spacing:-0.057600px;}
.ws39_c00050{word-spacing:-0.057456px;}
.ws36_c00050{word-spacing:-0.052668px;}
.ws3a_c00050{word-spacing:-0.043092px;}
.ws31_c00050{word-spacing:-0.033516px;}
.ws33_c00050{word-spacing:-0.028728px;}
.ws41_c00050{word-spacing:-0.023940px;}
.ws37_c00050{word-spacing:-0.014364px;}
.ws3b_c00050{word-spacing:-0.004788px;}
.ws7_c00050{word-spacing:0.000000px;}
.ws32_c00050{word-spacing:0.004788px;}
.ws14_c00050{word-spacing:0.021600px;}
.ws23_c00050{word-spacing:0.028800px;}
.ws6_c00050{word-spacing:0.042084px;}
.ws1e_c00050{word-spacing:0.086400px;}
.ws3e_c00050{word-spacing:0.282492px;}
.ws3f_c00050{word-spacing:0.339948px;}
.ws38_c00050{word-spacing:0.363888px;}
.ws3c_c00050{word-spacing:0.365472px;}
.ws25_c00050{word-spacing:0.698400px;}
.ws3d_c00050{word-spacing:0.718200px;}
.ws26_c00050{word-spacing:0.734400px;}
.ws30_c00050{word-spacing:0.748800px;}
.wsf_c00050{word-spacing:2.124000px;}
.wse_c00050{word-spacing:2.167200px;}
.ws24_c00050{word-spacing:2.196000px;}
.ws2d_c00050{word-spacing:2.484000px;}
.ws2e_c00050{word-spacing:2.606400px;}
.ws2f_c00050{word-spacing:2.786400px;}
.wsb_c00050{word-spacing:3.909600px;}
.wsc_c00050{word-spacing:4.003200px;}
.wsd_c00050{word-spacing:4.039200px;}
.ws29_c00050{word-spacing:4.291200px;}
.ws27_c00050{word-spacing:4.312800px;}
.ws28_c00050{word-spacing:4.399200px;}
.ws1f_c00050{word-spacing:4.694400px;}
.ws20_c00050{word-spacing:4.766400px;}
.ws8_c00050{word-spacing:7.214400px;}
.ws1d_c00050{word-spacing:8.532000px;}
.ws35_c00050{word-spacing:8.608824px;}
.ws34_c00050{word-spacing:8.618400px;}
.ws1c_c00050{word-spacing:8.625600px;}
.ws1b_c00050{word-spacing:8.654400px;}
.ws1a_c00050{word-spacing:10.807200px;}
.ws19_c00050{word-spacing:10.850400px;}
.ws10_c00050{word-spacing:12.528000px;}
.ws2b_c00050{word-spacing:12.578400px;}
.ws11_c00050{word-spacing:12.592800px;}
.ws2c_c00050{word-spacing:12.758400px;}
.ws22_c00050{word-spacing:12.974400px;}
.ws21_c00050{word-spacing:12.988800px;}
.ws18_c00050{word-spacing:13.701600px;}
.ws17_c00050{word-spacing:13.708800px;}
.ws13_c00050{word-spacing:16.221600px;}
.ws12_c00050{word-spacing:16.308000px;}
.ws15_c00050{word-spacing:16.869600px;}
.ws16_c00050{word-spacing:16.927200px;}
.ws9_c00050{word-spacing:18.712800px;}
.wsa_c00050{word-spacing:18.763200px;}
._0_c00050{margin-left:-1.322640px;}
._1_c00050{width:1.080000px;}
.fc0_c00050{color:rgb(0,0,0);}
.fs5_c00050{font-size:38.880000px;}
.fs3_c00050{font-size:42.120000px;}
.fs4_c00050{font-size:47.880000px;}
.fs1_c00050{font-size:54.000000px;}
.fs0_c00050{font-size:60.120000px;}
.fs2_c00050{font-size:72.000000px;}
.y0_c00050{bottom:0.000000px;}
.y3_c00050{bottom:57.450450px;}
.y24_c00050{bottom:113.699190px;}
.y23_c00050{bottom:127.564230px;}
.y22_c00050{bottom:145.840530px;}
.y21_c00050{bottom:164.106750px;}
.y20_c00050{bottom:182.468730px;}
.y1f_c00050{bottom:196.234230px;}
.y1e_c00050{bottom:214.498470px;}
.y1d_c00050{bottom:232.860450px;}
.y1c_c00050{bottom:248.070450px;}
.y1b_c00050{bottom:268.770450px;}
.y1a_c00050{bottom:289.470450px;}
.y19_c00050{bottom:382.260450px;}
.y18_c00050{bottom:416.640450px;}
.y17_c00050{bottom:451.110450px;}
.y16_c00050{bottom:494.490450px;}
.y15_c00050{bottom:528.960450px;}
.y14_c00050{bottom:563.340450px;}
.y13_c00050{bottom:597.810450px;}
.y12_c00050{bottom:641.190450px;}
.y11_c00050{bottom:675.660450px;}
.y10_c00050{bottom:710.040450px;}
.yf_c00050{bottom:753.510450px;}
.ye_c00050{bottom:787.890450px;}
.yd_c00050{bottom:822.360450px;}
.yc_c00050{bottom:856.740450px;}
.yb_c00050{bottom:891.210450px;}
.ya_c00050{bottom:934.590450px;}
.y9_c00050{bottom:969.060450px;}
.y8_c00050{bottom:1003.440450px;}
.y7_c00050{bottom:1037.910450px;}
.y6_c00050{bottom:1072.290450px;}
.y5_c00050{bottom:1106.760450px;}
.y4_c00050{bottom:1141.140450px;}
.y2_c00050{bottom:1177.860450px;}
.y1_c00050{bottom:1196.850450px;}
.h8_c00050{height:47.988281px;}
.h9_c00050{height:49.937344px;}
.ha_c00050{height:49.945264px;}
.h1_c00050{height:50.315273px;}
.h2_c00050{height:56.320312px;}
.h4_c00050{height:60.257812px;}
.h6_c00050{height:60.890625px;}
.h5_c00050{height:65.130820px;}
.h7_c00050{height:65.131420px;}
.h3_c00050{height:72.160312px;}
.h0_c00050{height:1263.000000px;}
.w1_c00050{width:892.500000px;}
.w0_c00050{width:892.830000px;}
.x0_c00050{left:0.000000px;}
.x1_c00050{left:127.620000px;}
.x3_c00050{left:141.116580px;}
.x2_c00050{left:180.810000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.v1_c00050{vertical-align:14.080000pt;}
.v2_c00050{vertical-align:26.560000pt;}
.ls17_c00050{letter-spacing:-0.134400pt;}
.ls1e_c00050{letter-spacing:-0.076800pt;}
.ls1b_c00050{letter-spacing:-0.070400pt;}
.ls1a_c00050{letter-spacing:-0.038400pt;}
.ls20_c00050{letter-spacing:-0.032000pt;}
.ls1d_c00050{letter-spacing:-0.025600pt;}
.ls1c_c00050{letter-spacing:-0.019200pt;}
.ls18_c00050{letter-spacing:-0.012800pt;}
.ls22_c00050{letter-spacing:-0.006912pt;}
.ls19_c00050{letter-spacing:-0.006400pt;}
.ls21_c00050{letter-spacing:-0.003456pt;}
.ls16_c00050{letter-spacing:0.000000pt;}
.ls2_c00050{letter-spacing:0.006400pt;}
.lsa_c00050{letter-spacing:0.012768pt;}
.ls4_c00050{letter-spacing:0.012800pt;}
.ls13_c00050{letter-spacing:0.017024pt;}
.ls7_c00050{letter-spacing:0.019200pt;}
.ls12_c00050{letter-spacing:0.021280pt;}
.ls5_c00050{letter-spacing:0.025600pt;}
.lsf_c00050{letter-spacing:0.029792pt;}
.ls8_c00050{letter-spacing:0.032000pt;}
.lsd_c00050{letter-spacing:0.034048pt;}
.ls15_c00050{letter-spacing:0.038304pt;}
.ls3_c00050{letter-spacing:0.040640pt;}
.lsc_c00050{letter-spacing:0.042560pt;}
.ls0_c00050{letter-spacing:0.042752pt;}
.ls9_c00050{letter-spacing:0.046816pt;}
.ls6_c00050{letter-spacing:0.051200pt;}
.ls11_c00050{letter-spacing:0.055328pt;}
.lse_c00050{letter-spacing:0.063840pt;}
.ls10_c00050{letter-spacing:0.068096pt;}
.ls25_c00050{letter-spacing:0.076608pt;}
.ls1f_c00050{letter-spacing:0.076800pt;}
.ls14_c00050{letter-spacing:0.085120pt;}
.ls23_c00050{letter-spacing:0.311040pt;}
.lsb_c00050{letter-spacing:0.311680pt;}
.ls24_c00050{letter-spacing:0.321408pt;}
.ls1_c00050{letter-spacing:1090.880000pt;}
.ws0_c00050{word-spacing:-16.025600pt;}
.ws2_c00050{word-spacing:-11.831680pt;}
.ws4_c00050{word-spacing:-9.929088pt;}
.ws3_c00050{word-spacing:-9.918720pt;}
.ws5_c00050{word-spacing:-9.607680pt;}
.ws1_c00050{word-spacing:-9.600768pt;}
.ws40_c00050{word-spacing:-0.059584pt;}
.ws2a_c00050{word-spacing:-0.051200pt;}
.ws39_c00050{word-spacing:-0.051072pt;}
.ws36_c00050{word-spacing:-0.046816pt;}
.ws3a_c00050{word-spacing:-0.038304pt;}
.ws31_c00050{word-spacing:-0.029792pt;}
.ws33_c00050{word-spacing:-0.025536pt;}
.ws41_c00050{word-spacing:-0.021280pt;}
.ws37_c00050{word-spacing:-0.012768pt;}
.ws3b_c00050{word-spacing:-0.004256pt;}
.ws7_c00050{word-spacing:0.000000pt;}
.ws32_c00050{word-spacing:0.004256pt;}
.ws14_c00050{word-spacing:0.019200pt;}
.ws23_c00050{word-spacing:0.025600pt;}
.ws6_c00050{word-spacing:0.037408pt;}
.ws1e_c00050{word-spacing:0.076800pt;}
.ws3e_c00050{word-spacing:0.251104pt;}
.ws3f_c00050{word-spacing:0.302176pt;}
.ws38_c00050{word-spacing:0.323456pt;}
.ws3c_c00050{word-spacing:0.324864pt;}
.ws25_c00050{word-spacing:0.620800pt;}
.ws3d_c00050{word-spacing:0.638400pt;}
.ws26_c00050{word-spacing:0.652800pt;}
.ws30_c00050{word-spacing:0.665600pt;}
.wsf_c00050{word-spacing:1.888000pt;}
.wse_c00050{word-spacing:1.926400pt;}
.ws24_c00050{word-spacing:1.952000pt;}
.ws2d_c00050{word-spacing:2.208000pt;}
.ws2e_c00050{word-spacing:2.316800pt;}
.ws2f_c00050{word-spacing:2.476800pt;}
.wsb_c00050{word-spacing:3.475200pt;}
.wsc_c00050{word-spacing:3.558400pt;}
.wsd_c00050{word-spacing:3.590400pt;}
.ws29_c00050{word-spacing:3.814400pt;}
.ws27_c00050{word-spacing:3.833600pt;}
.ws28_c00050{word-spacing:3.910400pt;}
.ws1f_c00050{word-spacing:4.172800pt;}
.ws20_c00050{word-spacing:4.236800pt;}
.ws8_c00050{word-spacing:6.412800pt;}
.ws1d_c00050{word-spacing:7.584000pt;}
.ws35_c00050{word-spacing:7.652288pt;}
.ws34_c00050{word-spacing:7.660800pt;}
.ws1c_c00050{word-spacing:7.667200pt;}
.ws1b_c00050{word-spacing:7.692800pt;}
.ws1a_c00050{word-spacing:9.606400pt;}
.ws19_c00050{word-spacing:9.644800pt;}
.ws10_c00050{word-spacing:11.136000pt;}
.ws2b_c00050{word-spacing:11.180800pt;}
.ws11_c00050{word-spacing:11.193600pt;}
.ws2c_c00050{word-spacing:11.340800pt;}
.ws22_c00050{word-spacing:11.532800pt;}
.ws21_c00050{word-spacing:11.545600pt;}
.ws18_c00050{word-spacing:12.179200pt;}
.ws17_c00050{word-spacing:12.185600pt;}
.ws13_c00050{word-spacing:14.419200pt;}
.ws12_c00050{word-spacing:14.496000pt;}
.ws15_c00050{word-spacing:14.995200pt;}
.ws16_c00050{word-spacing:15.046400pt;}
.ws9_c00050{word-spacing:16.633600pt;}
.wsa_c00050{word-spacing:16.678400pt;}
._0_c00050{margin-left:-1.175680pt;}
._1_c00050{width:0.960000pt;}
.fs5_c00050{font-size:34.560000pt;}
.fs3_c00050{font-size:37.440000pt;}
.fs4_c00050{font-size:42.560000pt;}
.fs1_c00050{font-size:48.000000pt;}
.fs0_c00050{font-size:53.440000pt;}
.fs2_c00050{font-size:64.000000pt;}
.y0_c00050{bottom:0.000000pt;}
.y3_c00050{bottom:51.067067pt;}
.y24_c00050{bottom:101.065947pt;}
.y23_c00050{bottom:113.390427pt;}
.y22_c00050{bottom:129.636027pt;}
.y21_c00050{bottom:145.872667pt;}
.y20_c00050{bottom:162.194427pt;}
.y1f_c00050{bottom:174.430427pt;}
.y1e_c00050{bottom:190.665307pt;}
.y1d_c00050{bottom:206.987067pt;}
.y1c_c00050{bottom:220.507067pt;}
.y1b_c00050{bottom:238.907067pt;}
.y1a_c00050{bottom:257.307067pt;}
.y19_c00050{bottom:339.787067pt;}
.y18_c00050{bottom:370.347067pt;}
.y17_c00050{bottom:400.987067pt;}
.y16_c00050{bottom:439.547067pt;}
.y15_c00050{bottom:470.187067pt;}
.y14_c00050{bottom:500.747067pt;}
.y13_c00050{bottom:531.387067pt;}
.y12_c00050{bottom:569.947067pt;}
.y11_c00050{bottom:600.587067pt;}
.y10_c00050{bottom:631.147067pt;}
.yf_c00050{bottom:669.787067pt;}
.ye_c00050{bottom:700.347067pt;}
.yd_c00050{bottom:730.987067pt;}
.yc_c00050{bottom:761.547067pt;}
.yb_c00050{bottom:792.187067pt;}
.ya_c00050{bottom:830.747067pt;}
.y9_c00050{bottom:861.387067pt;}
.y8_c00050{bottom:891.947067pt;}
.y7_c00050{bottom:922.587067pt;}
.y6_c00050{bottom:953.147067pt;}
.y5_c00050{bottom:983.787067pt;}
.y4_c00050{bottom:1014.347067pt;}
.y2_c00050{bottom:1046.987067pt;}
.y1_c00050{bottom:1063.867067pt;}
.h8_c00050{height:42.656250pt;}
.h9_c00050{height:44.388750pt;}
.ha_c00050{height:44.395790pt;}
.h1_c00050{height:44.724687pt;}
.h2_c00050{height:50.062500pt;}
.h4_c00050{height:53.562500pt;}
.h6_c00050{height:54.125000pt;}
.h5_c00050{height:57.894063pt;}
.h7_c00050{height:57.894596pt;}
.h3_c00050{height:64.142500pt;}
.h0_c00050{height:1122.666667pt;}
.w1_c00050{width:793.333333pt;}
.w0_c00050{width:793.626667pt;}
.x0_c00050{left:0.000000pt;}
.x1_c00050{left:113.440000pt;}
.x3_c00050{left:125.436960pt;}
.x2_c00050{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_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_228753e4ac7bdecc703aff45.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00051;src:url('chunks/assets/font_766ef154432db68f04e1ee01.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00051;src:url('chunks/assets/font_2f9ca285e0f23229f0f718fe.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00051;src:url('chunks/assets/font_bd8888615daab659d4b2b53a.woff2')format("woff");}.ff5_c00051{font-family:ff5_c00051;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00051;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00051{font-family:ff6_c00051;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00051;src:url('chunks/assets/font_7910d93f1a849a5872c892e8.woff2')format("woff");}.ff7_c00051{font-family:ff7_c00051;line-height:0.674805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00051;src:url('chunks/assets/font_c39dffe461170d5734fd3f77.woff2')format("woff");}.ff8_c00051{font-family:ff8_c00051;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_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;}
.v1_c00051{vertical-align:29.880000px;}
.ls20_c00051{letter-spacing:-0.151200px;}
.ls1e_c00051{letter-spacing:-0.048096px;}
.ls23_c00051{letter-spacing:-0.043200px;}
.ls22_c00051{letter-spacing:-0.036000px;}
.ls27_c00051{letter-spacing:-0.028800px;}
.ls28_c00051{letter-spacing:-0.021600px;}
.ls1d_c00051{letter-spacing:-0.018036px;}
.ls21_c00051{letter-spacing:-0.014400px;}
.ls2e_c00051{letter-spacing:-0.009576px;}
.ls29_c00051{letter-spacing:-0.007200px;}
.ls2b_c00051{letter-spacing:-0.003888px;}
.ls1f_c00051{letter-spacing:0.000000px;}
.ls2_c00051{letter-spacing:0.007200px;}
.ls2c_c00051{letter-spacing:0.009576px;}
.lsd_c00051{letter-spacing:0.014364px;}
.ls4_c00051{letter-spacing:0.014400px;}
.ls11_c00051{letter-spacing:0.019152px;}
.ls24_c00051{letter-spacing:0.021600px;}
.ls1b_c00051{letter-spacing:0.023940px;}
.ls8_c00051{letter-spacing:0.025164px;}
.lsf_c00051{letter-spacing:0.028728px;}
.ls5_c00051{letter-spacing:0.028800px;}
.ls25_c00051{letter-spacing:0.031248px;}
.ls16_c00051{letter-spacing:0.033516px;}
.ls9_c00051{letter-spacing:0.036000px;}
.ls0_c00051{letter-spacing:0.036072px;}
.ls13_c00051{letter-spacing:0.038304px;}
.ls7_c00051{letter-spacing:0.041940px;}
.ls14_c00051{letter-spacing:0.043092px;}
.ls1_c00051{letter-spacing:0.045720px;}
.lse_c00051{letter-spacing:0.047880px;}
.ls15_c00051{letter-spacing:0.052668px;}
.ls2a_c00051{letter-spacing:0.054756px;}
.ls17_c00051{letter-spacing:0.057456px;}
.ls1a_c00051{letter-spacing:0.062244px;}
.ls10_c00051{letter-spacing:0.067032px;}
.ls2d_c00051{letter-spacing:0.076608px;}
.ls26_c00051{letter-spacing:0.100656px;}
.ls19_c00051{letter-spacing:0.104040px;}
.lsb_c00051{letter-spacing:0.129600px;}
.lsa_c00051{letter-spacing:0.158400px;}
.ls3_c00051{letter-spacing:0.243000px;}
.ls1c_c00051{letter-spacing:0.373464px;}
.ls12_c00051{letter-spacing:0.464040px;}
.ls18_c00051{letter-spacing:2.151360px;}
.lsc_c00051{letter-spacing:15.120000px;}
.ls6_c00051{letter-spacing:29.072160px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00051{word-spacing:-19.561248px;}
.ws1_c00051{word-spacing:-18.129600px;}
.ws4_c00051{word-spacing:-13.358520px;}
.ws5_c00051{word-spacing:-13.320216px;}
.ws6_c00051{word-spacing:-13.310640px;}
.ws7_c00051{word-spacing:-10.808640px;}
.ws3_c00051{word-spacing:-10.804752px;}
.ws2_c00051{word-spacing:-10.584756px;}
.ws1d_c00051{word-spacing:-0.117432px;}
.ws1a_c00051{word-spacing:-0.028800px;}
.ws3f_c00051{word-spacing:-0.023940px;}
.ws49_c00051{word-spacing:-0.004788px;}
.wsb_c00051{word-spacing:0.000000px;}
.ws36_c00051{word-spacing:0.004788px;}
.ws27_c00051{word-spacing:0.014400px;}
.ws8_c00051{word-spacing:0.054108px;}
.ws9_c00051{word-spacing:0.108216px;}
.wsa_c00051{word-spacing:0.138276px;}
.wsc_c00051{word-spacing:0.338400px;}
.wse_c00051{word-spacing:0.352800px;}
.wsd_c00051{word-spacing:0.374400px;}
.ws4e_c00051{word-spacing:0.387828px;}
.ws43_c00051{word-spacing:0.675108px;}
.ws42_c00051{word-spacing:0.703836px;}
.ws11_c00051{word-spacing:1.116000px;}
.ws10_c00051{word-spacing:1.130400px;}
.wsf_c00051{word-spacing:1.231200px;}
.ws3a_c00051{word-spacing:1.776348px;}
.ws39_c00051{word-spacing:1.781136px;}
.ws38_c00051{word-spacing:1.796256px;}
.ws37_c00051{word-spacing:1.805076px;}
.ws41_c00051{word-spacing:2.130660px;}
.ws40_c00051{word-spacing:2.149812px;}
.ws4d_c00051{word-spacing:2.523276px;}
.ws4b_c00051{word-spacing:2.839284px;}
.ws4c_c00051{word-spacing:2.858436px;}
.ws4a_c00051{word-spacing:2.882376px;}
.ws2b_c00051{word-spacing:2.901600px;}
.ws2c_c00051{word-spacing:3.117600px;}
.ws47_c00051{word-spacing:3.198384px;}
.ws3b_c00051{word-spacing:3.203172px;}
.ws2a_c00051{word-spacing:3.204000px;}
.ws1f_c00051{word-spacing:3.211200px;}
.ws48_c00051{word-spacing:3.212748px;}
.ws46_c00051{word-spacing:3.217536px;}
.ws3c_c00051{word-spacing:3.236688px;}
.ws20_c00051{word-spacing:3.276000px;}
.ws2d_c00051{word-spacing:3.283200px;}
.ws31_c00051{word-spacing:3.938400px;}
.ws30_c00051{word-spacing:3.945600px;}
.ws22_c00051{word-spacing:4.327200px;}
.ws21_c00051{word-spacing:4.341600px;}
.ws28_c00051{word-spacing:4.723200px;}
.ws29_c00051{word-spacing:4.788000px;}
.ws44_c00051{word-spacing:5.348196px;}
.ws45_c00051{word-spacing:5.357772px;}
.ws24_c00051{word-spacing:5.392800px;}
.ws25_c00051{word-spacing:5.536800px;}
.ws15_c00051{word-spacing:5.738400px;}
.ws14_c00051{word-spacing:5.796000px;}
.ws12_c00051{word-spacing:5.846400px;}
.ws13_c00051{word-spacing:5.947200px;}
.ws19_c00051{word-spacing:7.236000px;}
.ws18_c00051{word-spacing:7.286400px;}
.ws23_c00051{word-spacing:7.956000px;}
.ws26_c00051{word-spacing:8.683200px;}
.ws3e_c00051{word-spacing:8.958348px;}
.ws3d_c00051{word-spacing:8.982288px;}
.ws35_c00051{word-spacing:8.996652px;}
.ws17_c00051{word-spacing:12.996000px;}
.ws1e_c00051{word-spacing:13.039200px;}
.ws16_c00051{word-spacing:13.183200px;}
.ws34_c00051{word-spacing:13.631436px;}
.ws32_c00051{word-spacing:13.650588px;}
.ws33_c00051{word-spacing:13.669740px;}
.ws2f_c00051{word-spacing:15.134400px;}
.ws2e_c00051{word-spacing:15.156000px;}
.ws1c_c00051{word-spacing:18.168408px;}
.ws1b_c00051{word-spacing:18.294228px;}
._0_c00051{margin-left:-1.142280px;}
._1_c00051{width:1.080000px;}
._2_c00051{width:2.496168px;}
.fc0_c00051{color:rgb(0,0,0);}
.fs8_c00051{font-size:38.880000px;}
.fs3_c00051{font-size:42.120000px;}
.fs7_c00051{font-size:47.880000px;}
.fs2_c00051{font-size:54.000000px;}
.fs0_c00051{font-size:60.120000px;}
.fs4_c00051{font-size:63.000000px;}
.fs1_c00051{font-size:72.000000px;}
.fs5_c00051{font-size:78.120000px;}
.fs6_c00051{font-size:83.880000px;}
.y0_c00051{bottom:0.000000px;}
.y3_c00051{bottom:57.450450px;}
.y4_c00051{bottom:61.410450px;}
.y28_c00051{bottom:107.974440px;}
.y27_c00051{bottom:121.851720px;}
.y26_c00051{bottom:140.117940px;}
.y25_c00051{bottom:153.883440px;}
.y24_c00051{bottom:167.648940px;}
.y23_c00051{bottom:181.414440px;}
.y22_c00051{bottom:195.281460px;}
.y21_c00051{bottom:213.643440px;}
.y20_c00051{bottom:227.408940px;}
.y1f_c00051{bottom:241.090650px;}
.y1e_c00051{bottom:255.048480px;}
.y1d_c00051{bottom:273.314700px;}
.y1c_c00051{bottom:287.080200px;}
.y1b_c00051{bottom:300.845700px;}
.y1a_c00051{bottom:316.055700px;}
.y19_c00051{bottom:336.755700px;}
.y18_c00051{bottom:357.455700px;}
.y17_c00051{bottom:459.335700px;}
.y16_c00051{bottom:493.715700px;}
.y15_c00051{bottom:528.185700px;}
.y14_c00051{bottom:562.565700px;}
.y13_c00051{bottom:606.035700px;}
.y12_c00051{bottom:640.415700px;}
.y11_c00051{bottom:674.885700px;}
.y10_c00051{bottom:709.265700px;}
.yf_c00051{bottom:743.735700px;}
.ye_c00051{bottom:778.115700px;}
.yd_c00051{bottom:812.585700px;}
.yc_c00051{bottom:861.677400px;}
.yb_c00051{bottom:904.980450px;}
.ya_c00051{bottom:969.060450px;}
.y9_c00051{bottom:1003.440450px;}
.y8_c00051{bottom:1037.910450px;}
.y7_c00051{bottom:1072.290450px;}
.y6_c00051{bottom:1106.760450px;}
.y5_c00051{bottom:1141.140450px;}
.y2_c00051{bottom:1173.810450px;}
.y1_c00051{bottom:1196.850450px;}
.h2_c00051{height:47.988281px;}
.h9_c00051{height:49.937344px;}
.h1_c00051{height:50.315273px;}
.h3_c00051{height:56.320312px;}
.h6_c00051{height:60.257812px;}
.h5_c00051{height:60.890625px;}
.h4_c00051{height:65.130820px;}
.h8_c00051{height:70.282266px;}
.h7_c00051{height:81.476719px;}
.h0_c00051{height:1263.000000px;}
.w1_c00051{width:892.500000px;}
.w0_c00051{width:892.830000px;}
.x0_c00051{left:0.000000px;}
.x2_c00051{left:127.620000px;}
.x6_c00051{left:141.122160px;}
.x1_c00051{left:145.440000px;}
.x5_c00051{left:180.810000px;}
.x4_c00051{left:439.020000px;}
.x3_c00051{left:446.490000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.v1_c00051{vertical-align:26.560000pt;}
.ls20_c00051{letter-spacing:-0.134400pt;}
.ls1e_c00051{letter-spacing:-0.042752pt;}
.ls23_c00051{letter-spacing:-0.038400pt;}
.ls22_c00051{letter-spacing:-0.032000pt;}
.ls27_c00051{letter-spacing:-0.025600pt;}
.ls28_c00051{letter-spacing:-0.019200pt;}
.ls1d_c00051{letter-spacing:-0.016032pt;}
.ls21_c00051{letter-spacing:-0.012800pt;}
.ls2e_c00051{letter-spacing:-0.008512pt;}
.ls29_c00051{letter-spacing:-0.006400pt;}
.ls2b_c00051{letter-spacing:-0.003456pt;}
.ls1f_c00051{letter-spacing:0.000000pt;}
.ls2_c00051{letter-spacing:0.006400pt;}
.ls2c_c00051{letter-spacing:0.008512pt;}
.lsd_c00051{letter-spacing:0.012768pt;}
.ls4_c00051{letter-spacing:0.012800pt;}
.ls11_c00051{letter-spacing:0.017024pt;}
.ls24_c00051{letter-spacing:0.019200pt;}
.ls1b_c00051{letter-spacing:0.021280pt;}
.ls8_c00051{letter-spacing:0.022368pt;}
.lsf_c00051{letter-spacing:0.025536pt;}
.ls5_c00051{letter-spacing:0.025600pt;}
.ls25_c00051{letter-spacing:0.027776pt;}
.ls16_c00051{letter-spacing:0.029792pt;}
.ls9_c00051{letter-spacing:0.032000pt;}
.ls0_c00051{letter-spacing:0.032064pt;}
.ls13_c00051{letter-spacing:0.034048pt;}
.ls7_c00051{letter-spacing:0.037280pt;}
.ls14_c00051{letter-spacing:0.038304pt;}
.ls1_c00051{letter-spacing:0.040640pt;}
.lse_c00051{letter-spacing:0.042560pt;}
.ls15_c00051{letter-spacing:0.046816pt;}
.ls2a_c00051{letter-spacing:0.048672pt;}
.ls17_c00051{letter-spacing:0.051072pt;}
.ls1a_c00051{letter-spacing:0.055328pt;}
.ls10_c00051{letter-spacing:0.059584pt;}
.ls2d_c00051{letter-spacing:0.068096pt;}
.ls26_c00051{letter-spacing:0.089472pt;}
.ls19_c00051{letter-spacing:0.092480pt;}
.lsb_c00051{letter-spacing:0.115200pt;}
.lsa_c00051{letter-spacing:0.140800pt;}
.ls3_c00051{letter-spacing:0.216000pt;}
.ls1c_c00051{letter-spacing:0.331968pt;}
.ls12_c00051{letter-spacing:0.412480pt;}
.ls18_c00051{letter-spacing:1.912320pt;}
.lsc_c00051{letter-spacing:13.440000pt;}
.ls6_c00051{letter-spacing:25.841920pt;}
.ws0_c00051{word-spacing:-17.387776pt;}
.ws1_c00051{word-spacing:-16.115200pt;}
.ws4_c00051{word-spacing:-11.874240pt;}
.ws5_c00051{word-spacing:-11.840192pt;}
.ws6_c00051{word-spacing:-11.831680pt;}
.ws7_c00051{word-spacing:-9.607680pt;}
.ws3_c00051{word-spacing:-9.604224pt;}
.ws2_c00051{word-spacing:-9.408672pt;}
.ws1d_c00051{word-spacing:-0.104384pt;}
.ws1a_c00051{word-spacing:-0.025600pt;}
.ws3f_c00051{word-spacing:-0.021280pt;}
.ws49_c00051{word-spacing:-0.004256pt;}
.wsb_c00051{word-spacing:0.000000pt;}
.ws36_c00051{word-spacing:0.004256pt;}
.ws27_c00051{word-spacing:0.012800pt;}
.ws8_c00051{word-spacing:0.048096pt;}
.ws9_c00051{word-spacing:0.096192pt;}
.wsa_c00051{word-spacing:0.122912pt;}
.wsc_c00051{word-spacing:0.300800pt;}
.wse_c00051{word-spacing:0.313600pt;}
.wsd_c00051{word-spacing:0.332800pt;}
.ws4e_c00051{word-spacing:0.344736pt;}
.ws43_c00051{word-spacing:0.600096pt;}
.ws42_c00051{word-spacing:0.625632pt;}
.ws11_c00051{word-spacing:0.992000pt;}
.ws10_c00051{word-spacing:1.004800pt;}
.wsf_c00051{word-spacing:1.094400pt;}
.ws3a_c00051{word-spacing:1.578976pt;}
.ws39_c00051{word-spacing:1.583232pt;}
.ws38_c00051{word-spacing:1.596672pt;}
.ws37_c00051{word-spacing:1.604512pt;}
.ws41_c00051{word-spacing:1.893920pt;}
.ws40_c00051{word-spacing:1.910944pt;}
.ws4d_c00051{word-spacing:2.242912pt;}
.ws4b_c00051{word-spacing:2.523808pt;}
.ws4c_c00051{word-spacing:2.540832pt;}
.ws4a_c00051{word-spacing:2.562112pt;}
.ws2b_c00051{word-spacing:2.579200pt;}
.ws2c_c00051{word-spacing:2.771200pt;}
.ws47_c00051{word-spacing:2.843008pt;}
.ws3b_c00051{word-spacing:2.847264pt;}
.ws2a_c00051{word-spacing:2.848000pt;}
.ws1f_c00051{word-spacing:2.854400pt;}
.ws48_c00051{word-spacing:2.855776pt;}
.ws46_c00051{word-spacing:2.860032pt;}
.ws3c_c00051{word-spacing:2.877056pt;}
.ws20_c00051{word-spacing:2.912000pt;}
.ws2d_c00051{word-spacing:2.918400pt;}
.ws31_c00051{word-spacing:3.500800pt;}
.ws30_c00051{word-spacing:3.507200pt;}
.ws22_c00051{word-spacing:3.846400pt;}
.ws21_c00051{word-spacing:3.859200pt;}
.ws28_c00051{word-spacing:4.198400pt;}
.ws29_c00051{word-spacing:4.256000pt;}
.ws44_c00051{word-spacing:4.753952pt;}
.ws45_c00051{word-spacing:4.762464pt;}
.ws24_c00051{word-spacing:4.793600pt;}
.ws25_c00051{word-spacing:4.921600pt;}
.ws15_c00051{word-spacing:5.100800pt;}
.ws14_c00051{word-spacing:5.152000pt;}
.ws12_c00051{word-spacing:5.196800pt;}
.ws13_c00051{word-spacing:5.286400pt;}
.ws19_c00051{word-spacing:6.432000pt;}
.ws18_c00051{word-spacing:6.476800pt;}
.ws23_c00051{word-spacing:7.072000pt;}
.ws26_c00051{word-spacing:7.718400pt;}
.ws3e_c00051{word-spacing:7.962976pt;}
.ws3d_c00051{word-spacing:7.984256pt;}
.ws35_c00051{word-spacing:7.997024pt;}
.ws17_c00051{word-spacing:11.552000pt;}
.ws1e_c00051{word-spacing:11.590400pt;}
.ws16_c00051{word-spacing:11.718400pt;}
.ws34_c00051{word-spacing:12.116832pt;}
.ws32_c00051{word-spacing:12.133856pt;}
.ws33_c00051{word-spacing:12.150880pt;}
.ws2f_c00051{word-spacing:13.452800pt;}
.ws2e_c00051{word-spacing:13.472000pt;}
.ws1c_c00051{word-spacing:16.149696pt;}
.ws1b_c00051{word-spacing:16.261536pt;}
._0_c00051{margin-left:-1.015360pt;}
._1_c00051{width:0.960000pt;}
._2_c00051{width:2.218816pt;}
.fs8_c00051{font-size:34.560000pt;}
.fs3_c00051{font-size:37.440000pt;}
.fs7_c00051{font-size:42.560000pt;}
.fs2_c00051{font-size:48.000000pt;}
.fs0_c00051{font-size:53.440000pt;}
.fs4_c00051{font-size:56.000000pt;}
.fs1_c00051{font-size:64.000000pt;}
.fs5_c00051{font-size:69.440000pt;}
.fs6_c00051{font-size:74.560000pt;}
.y0_c00051{bottom:0.000000pt;}
.y3_c00051{bottom:51.067067pt;}
.y4_c00051{bottom:54.587067pt;}
.y28_c00051{bottom:95.977280pt;}
.y27_c00051{bottom:108.312640pt;}
.y26_c00051{bottom:124.549280pt;}
.y25_c00051{bottom:136.785280pt;}
.y24_c00051{bottom:149.021280pt;}
.y23_c00051{bottom:161.257280pt;}
.y22_c00051{bottom:173.583520pt;}
.y21_c00051{bottom:189.905280pt;}
.y20_c00051{bottom:202.141280pt;}
.y1f_c00051{bottom:214.302800pt;}
.y1e_c00051{bottom:226.709760pt;}
.y1d_c00051{bottom:242.946400pt;}
.y1c_c00051{bottom:255.182400pt;}
.y1b_c00051{bottom:267.418400pt;}
.y1a_c00051{bottom:280.938400pt;}
.y19_c00051{bottom:299.338400pt;}
.y18_c00051{bottom:317.738400pt;}
.y17_c00051{bottom:408.298400pt;}
.y16_c00051{bottom:438.858400pt;}
.y15_c00051{bottom:469.498400pt;}
.y14_c00051{bottom:500.058400pt;}
.y13_c00051{bottom:538.698400pt;}
.y12_c00051{bottom:569.258400pt;}
.y11_c00051{bottom:599.898400pt;}
.y10_c00051{bottom:630.458400pt;}
.yf_c00051{bottom:661.098400pt;}
.ye_c00051{bottom:691.658400pt;}
.yd_c00051{bottom:722.298400pt;}
.yc_c00051{bottom:765.935467pt;}
.yb_c00051{bottom:804.427067pt;}
.ya_c00051{bottom:861.387067pt;}
.y9_c00051{bottom:891.947067pt;}
.y8_c00051{bottom:922.587067pt;}
.y7_c00051{bottom:953.147067pt;}
.y6_c00051{bottom:983.787067pt;}
.y5_c00051{bottom:1014.347067pt;}
.y2_c00051{bottom:1043.387067pt;}
.y1_c00051{bottom:1063.867067pt;}
.h2_c00051{height:42.656250pt;}
.h9_c00051{height:44.388750pt;}
.h1_c00051{height:44.724687pt;}
.h3_c00051{height:50.062500pt;}
.h6_c00051{height:53.562500pt;}
.h5_c00051{height:54.125000pt;}
.h4_c00051{height:57.894063pt;}
.h8_c00051{height:62.473125pt;}
.h7_c00051{height:72.423750pt;}
.h0_c00051{height:1122.666667pt;}
.w1_c00051{width:793.333333pt;}
.w0_c00051{width:793.626667pt;}
.x0_c00051{left:0.000000pt;}
.x2_c00051{left:113.440000pt;}
.x6_c00051{left:125.441920pt;}
.x1_c00051{left:129.280000pt;}
.x5_c00051{left:160.720000pt;}
.x4_c00051{left:390.240000pt;}
.x3_c00051{left:396.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_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_f95926a2d7e56641d2b799b0.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.100098;font-style:normal;font-weight:normal;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_859ba23ce3310b0617a19803.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;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_c00052;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00052;src:url('chunks/assets/font_3a091c8e65a6a7de5426ea2f.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:1.102051;font-style:normal;font-weight:normal;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_16edb9e9656af1722ace3956.woff2')format("woff");}.ff5_c00052{font-family:ff5_c00052;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_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.v1_c00052{vertical-align:15.840000px;}
.v2_c00052{vertical-align:29.880000px;}
.ls20_c00052{letter-spacing:-0.151200px;}
.ls28_c00052{letter-spacing:-0.050400px;}
.ls26_c00052{letter-spacing:-0.043200px;}
.ls2a_c00052{letter-spacing:-0.036072px;}
.ls27_c00052{letter-spacing:-0.028800px;}
.ls2b_c00052{letter-spacing:-0.024048px;}
.ls24_c00052{letter-spacing:-0.021600px;}
.ls21_c00052{letter-spacing:-0.014400px;}
.ls2d_c00052{letter-spacing:-0.012024px;}
.ls34_c00052{letter-spacing:-0.011664px;}
.ls37_c00052{letter-spacing:-0.009576px;}
.ls32_c00052{letter-spacing:-0.007776px;}
.ls29_c00052{letter-spacing:-0.006012px;}
.ls31_c00052{letter-spacing:-0.003888px;}
.ls1f_c00052{letter-spacing:0.000000px;}
.ls9_c00052{letter-spacing:0.006012px;}
.ls5_c00052{letter-spacing:0.007200px;}
.ls18_c00052{letter-spacing:0.009576px;}
.ls8_c00052{letter-spacing:0.012024px;}
.lsf_c00052{letter-spacing:0.014364px;}
.ls2_c00052{letter-spacing:0.014400px;}
.lsa_c00052{letter-spacing:0.018036px;}
.ls10_c00052{letter-spacing:0.019152px;}
.ls4_c00052{letter-spacing:0.021600px;}
.lsc_c00052{letter-spacing:0.030060px;}
.lse_c00052{letter-spacing:0.033516px;}
.ls3_c00052{letter-spacing:0.036000px;}
.ls6_c00052{letter-spacing:0.036072px;}
.ls11_c00052{letter-spacing:0.038304px;}
.ls13_c00052{letter-spacing:0.043092px;}
.ls19_c00052{letter-spacing:0.047880px;}
.ls0_c00052{letter-spacing:0.048096px;}
.ls25_c00052{letter-spacing:0.050400px;}
.ls17_c00052{letter-spacing:0.052668px;}
.ls22_c00052{letter-spacing:0.054756px;}
.lsb_c00052{letter-spacing:0.060120px;}
.ls1a_c00052{letter-spacing:0.062244px;}
.ls7_c00052{letter-spacing:0.066132px;}
.ls1b_c00052{letter-spacing:0.067032px;}
.ls30_c00052{letter-spacing:0.071820px;}
.ls1c_c00052{letter-spacing:0.076608px;}
.ls23_c00052{letter-spacing:0.093600px;}
.ls15_c00052{letter-spacing:0.104040px;}
.lsd_c00052{letter-spacing:0.108216px;}
.ls16_c00052{letter-spacing:0.114912px;}
.ls36_c00052{letter-spacing:0.134064px;}
.ls2e_c00052{letter-spacing:0.136080px;}
.ls2f_c00052{letter-spacing:0.168336px;}
.ls33_c00052{letter-spacing:0.338256px;}
.ls35_c00052{letter-spacing:0.342144px;}
.ls1e_c00052{letter-spacing:0.351360px;}
.ls12_c00052{letter-spacing:0.373464px;}
.ls2c_c00052{letter-spacing:1.887768px;}
.ls1d_c00052{letter-spacing:6.111360px;}
.ls14_c00052{letter-spacing:12.231360px;}
.ls1_c00052{letter-spacing:1227.240000px;}
.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;}
}
.ws8_c00052{word-spacing:-13.387248px;}
.wsa_c00052{word-spacing:-13.320216px;}
.ws2_c00052{word-spacing:-13.310640px;}
.ws7_c00052{word-spacing:-11.150784px;}
.ws5_c00052{word-spacing:-11.146896px;}
.ws3_c00052{word-spacing:-10.808640px;}
.ws9_c00052{word-spacing:-10.804752px;}
.ws4_c00052{word-spacing:-10.800864px;}
.ws6_c00052{word-spacing:-10.796976px;}
.ws0_c00052{word-spacing:-10.584756px;}
.ws1_c00052{word-spacing:-9.856080px;}
.ws5a_c00052{word-spacing:-0.033516px;}
.ws58_c00052{word-spacing:-0.028728px;}
.ws5b_c00052{word-spacing:-0.019152px;}
.ws3f_c00052{word-spacing:-0.018036px;}
.ws41_c00052{word-spacing:-0.014364px;}
.wsc_c00052{word-spacing:0.000000px;}
.ws59_c00052{word-spacing:0.004788px;}
.wsf_c00052{word-spacing:0.014400px;}
.ws28_c00052{word-spacing:0.024048px;}
.wsb_c00052{word-spacing:0.042084px;}
.ws25_c00052{word-spacing:0.064800px;}
.ws21_c00052{word-spacing:0.100800px;}
.ws40_c00052{word-spacing:0.114228px;}
.ws13_c00052{word-spacing:0.309600px;}
.ws12_c00052{word-spacing:0.324000px;}
.ws44_c00052{word-spacing:0.363888px;}
.ws4e_c00052{word-spacing:0.670320px;}
.ws4d_c00052{word-spacing:0.675108px;}
.ws4c_c00052{word-spacing:0.689472px;}
.ws43_c00052{word-spacing:0.699048px;}
.ws42_c00052{word-spacing:0.718200px;}
.ws4b_c00052{word-spacing:0.727776px;}
.ws27_c00052{word-spacing:1.136268px;}
.ws26_c00052{word-spacing:1.178352px;}
.ws2b_c00052{word-spacing:1.521036px;}
.ws2c_c00052{word-spacing:1.563120px;}
.ws3e_c00052{word-spacing:1.845684px;}
.ws36_c00052{word-spacing:1.857708px;}
.ws37_c00052{word-spacing:2.230452px;}
.ws2a_c00052{word-spacing:2.236464px;}
.ws29_c00052{word-spacing:2.248488px;}
.ws4a_c00052{word-spacing:2.484972px;}
.ws49_c00052{word-spacing:2.499336px;}
.ws1e_c00052{word-spacing:2.520000px;}
.ws1d_c00052{word-spacing:2.613600px;}
.ws54_c00052{word-spacing:3.203172px;}
.ws55_c00052{word-spacing:3.212748px;}
.ws53_c00052{word-spacing:3.222324px;}
.ws38_c00052{word-spacing:5.116212px;}
.ws3a_c00052{word-spacing:5.134248px;}
.ws39_c00052{word-spacing:5.140260px;}
.ws2e_c00052{word-spacing:5.470920px;}
.ws2f_c00052{word-spacing:5.488956px;}
.ws2d_c00052{word-spacing:5.513004px;}
.ws22_c00052{word-spacing:5.788800px;}
.ws3d_c00052{word-spacing:5.813604px;}
.ws24_c00052{word-spacing:5.875200px;}
.ws23_c00052{word-spacing:6.026400px;}
.ws50_c00052{word-spacing:6.090336px;}
.ws4f_c00052{word-spacing:6.104700px;}
.ws16_c00052{word-spacing:6.134400px;}
.ws17_c00052{word-spacing:6.163200px;}
.ws10_c00052{word-spacing:6.494400px;}
.ws11_c00052{word-spacing:6.559200px;}
.ws33_c00052{word-spacing:7.262496px;}
.ws32_c00052{word-spacing:7.286544px;}
.ws56_c00052{word-spacing:7.904988px;}
.ws57_c00052{word-spacing:7.919352px;}
.ws51_c00052{word-spacing:11.127312px;}
.ws52_c00052{word-spacing:11.184768px;}
.wsd_c00052{word-spacing:11.865600px;}
.wse_c00052{word-spacing:12.009600px;}
.ws48_c00052{word-spacing:12.142368px;}
.ws46_c00052{word-spacing:12.214188px;}
.ws45_c00052{word-spacing:12.257280px;}
.ws47_c00052{word-spacing:12.582864px;}
.ws20_c00052{word-spacing:14.004000px;}
.ws1f_c00052{word-spacing:14.040000px;}
.ws31_c00052{word-spacing:17.308548px;}
.ws19_c00052{word-spacing:17.344800px;}
.ws18_c00052{word-spacing:17.373600px;}
.ws3c_c00052{word-spacing:17.663256px;}
.ws3b_c00052{word-spacing:17.723376px;}
.ws30_c00052{word-spacing:17.753436px;}
.ws35_c00052{word-spacing:21.643200px;}
.ws34_c00052{word-spacing:21.727368px;}
.ws15_c00052{word-spacing:25.214400px;}
.ws14_c00052{word-spacing:25.228800px;}
.ws1c_c00052{word-spacing:29.138400px;}
.ws1a_c00052{word-spacing:29.152800px;}
.ws1b_c00052{word-spacing:29.354400px;}
._2_c00052{margin-left:-2.422836px;}
._0_c00052{margin-left:-1.322640px;}
._1_c00052{width:1.252800px;}
._4_c00052{width:6.742512px;}
._3_c00052{width:12.878280px;}
.fc0_c00052{color:rgb(0,0,0);}
.fs4_c00052{font-size:38.880000px;}
.fs3_c00052{font-size:42.120000px;}
.fs5_c00052{font-size:47.880000px;}
.fs1_c00052{font-size:54.000000px;}
.fs0_c00052{font-size:60.120000px;}
.fs2_c00052{font-size:72.000000px;}
.y0_c00052{bottom:0.000000px;}
.y3_c00052{bottom:57.450450px;}
.y2f_c00052{bottom:113.706750px;}
.y2e_c00052{bottom:132.068730px;}
.y2d_c00052{bottom:150.334950px;}
.y2c_c00052{bottom:164.108190px;}
.y2b_c00052{bottom:177.873690px;}
.y2a_c00052{bottom:191.734950px;}
.y29_c00052{bottom:205.499190px;}
.y28_c00052{bottom:219.364950px;}
.y27_c00052{bottom:233.134950px;}
.y26_c00052{bottom:246.900450px;}
.y25_c00052{bottom:260.764950px;}
.y24_c00052{bottom:274.534230px;}
.y23_c00052{bottom:292.800450px;}
.y22_c00052{bottom:308.010450px;}
.y21_c00052{bottom:328.710450px;}
.y20_c00052{bottom:349.410450px;}
.y1f_c00052{bottom:432.968790px;}
.y1e_c00052{bottom:449.802390px;}
.y1d_c00052{bottom:466.726170px;}
.y1c_c00052{bottom:483.559770px;}
.y1b_c00052{bottom:500.483550px;}
.y1a_c00052{bottom:517.317150px;}
.y19_c00052{bottom:534.240930px;}
.y18_c00052{bottom:551.074530px;}
.y17_c00052{bottom:567.998310px;}
.y16_c00052{bottom:584.831910px;}
.y15_c00052{bottom:601.755690px;}
.y14_c00052{bottom:618.589290px;}
.y13_c00052{bottom:635.513070px;}
.y12_c00052{bottom:652.346670px;}
.y11_c00052{bottom:669.270450px;}
.y10_c00052{bottom:710.040450px;}
.yf_c00052{bottom:744.510450px;}
.ye_c00052{bottom:787.890450px;}
.yd_c00052{bottom:822.360450px;}
.yc_c00052{bottom:856.740450px;}
.yb_c00052{bottom:891.210450px;}
.ya_c00052{bottom:925.590450px;}
.y9_c00052{bottom:960.060450px;}
.y8_c00052{bottom:994.440450px;}
.y7_c00052{bottom:1028.910450px;}
.y6_c00052{bottom:1063.290450px;}
.y5_c00052{bottom:1106.760450px;}
.y4_c00052{bottom:1141.140450px;}
.y2_c00052{bottom:1177.860450px;}
.y1_c00052{bottom:1196.850450px;}
.h8_c00052{height:47.988281px;}
.h9_c00052{height:49.937344px;}
.ha_c00052{height:49.942384px;}
.h1_c00052{height:50.315273px;}
.h7_c00052{height:50.522513px;}
.h2_c00052{height:56.320312px;}
.h4_c00052{height:60.257812px;}
.h6_c00052{height:60.890625px;}
.h5_c00052{height:65.130820px;}
.h3_c00052{height:72.160312px;}
.h0_c00052{height:1263.000000px;}
.w1_c00052{width:892.500000px;}
.w0_c00052{width:892.830000px;}
.x0_c00052{left:0.000000px;}
.x1_c00052{left:127.620000px;}
.x3_c00052{left:141.119910px;}
.x2_c00052{left:180.810000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.v1_c00052{vertical-align:14.080000pt;}
.v2_c00052{vertical-align:26.560000pt;}
.ls20_c00052{letter-spacing:-0.134400pt;}
.ls28_c00052{letter-spacing:-0.044800pt;}
.ls26_c00052{letter-spacing:-0.038400pt;}
.ls2a_c00052{letter-spacing:-0.032064pt;}
.ls27_c00052{letter-spacing:-0.025600pt;}
.ls2b_c00052{letter-spacing:-0.021376pt;}
.ls24_c00052{letter-spacing:-0.019200pt;}
.ls21_c00052{letter-spacing:-0.012800pt;}
.ls2d_c00052{letter-spacing:-0.010688pt;}
.ls34_c00052{letter-spacing:-0.010368pt;}
.ls37_c00052{letter-spacing:-0.008512pt;}
.ls32_c00052{letter-spacing:-0.006912pt;}
.ls29_c00052{letter-spacing:-0.005344pt;}
.ls31_c00052{letter-spacing:-0.003456pt;}
.ls1f_c00052{letter-spacing:0.000000pt;}
.ls9_c00052{letter-spacing:0.005344pt;}
.ls5_c00052{letter-spacing:0.006400pt;}
.ls18_c00052{letter-spacing:0.008512pt;}
.ls8_c00052{letter-spacing:0.010688pt;}
.lsf_c00052{letter-spacing:0.012768pt;}
.ls2_c00052{letter-spacing:0.012800pt;}
.lsa_c00052{letter-spacing:0.016032pt;}
.ls10_c00052{letter-spacing:0.017024pt;}
.ls4_c00052{letter-spacing:0.019200pt;}
.lsc_c00052{letter-spacing:0.026720pt;}
.lse_c00052{letter-spacing:0.029792pt;}
.ls3_c00052{letter-spacing:0.032000pt;}
.ls6_c00052{letter-spacing:0.032064pt;}
.ls11_c00052{letter-spacing:0.034048pt;}
.ls13_c00052{letter-spacing:0.038304pt;}
.ls19_c00052{letter-spacing:0.042560pt;}
.ls0_c00052{letter-spacing:0.042752pt;}
.ls25_c00052{letter-spacing:0.044800pt;}
.ls17_c00052{letter-spacing:0.046816pt;}
.ls22_c00052{letter-spacing:0.048672pt;}
.lsb_c00052{letter-spacing:0.053440pt;}
.ls1a_c00052{letter-spacing:0.055328pt;}
.ls7_c00052{letter-spacing:0.058784pt;}
.ls1b_c00052{letter-spacing:0.059584pt;}
.ls30_c00052{letter-spacing:0.063840pt;}
.ls1c_c00052{letter-spacing:0.068096pt;}
.ls23_c00052{letter-spacing:0.083200pt;}
.ls15_c00052{letter-spacing:0.092480pt;}
.lsd_c00052{letter-spacing:0.096192pt;}
.ls16_c00052{letter-spacing:0.102144pt;}
.ls36_c00052{letter-spacing:0.119168pt;}
.ls2e_c00052{letter-spacing:0.120960pt;}
.ls2f_c00052{letter-spacing:0.149632pt;}
.ls33_c00052{letter-spacing:0.300672pt;}
.ls35_c00052{letter-spacing:0.304128pt;}
.ls1e_c00052{letter-spacing:0.312320pt;}
.ls12_c00052{letter-spacing:0.331968pt;}
.ls2c_c00052{letter-spacing:1.678016pt;}
.ls1d_c00052{letter-spacing:5.432320pt;}
.ls14_c00052{letter-spacing:10.872320pt;}
.ls1_c00052{letter-spacing:1090.880000pt;}
.ws8_c00052{word-spacing:-11.899776pt;}
.wsa_c00052{word-spacing:-11.840192pt;}
.ws2_c00052{word-spacing:-11.831680pt;}
.ws7_c00052{word-spacing:-9.911808pt;}
.ws5_c00052{word-spacing:-9.908352pt;}
.ws3_c00052{word-spacing:-9.607680pt;}
.ws9_c00052{word-spacing:-9.604224pt;}
.ws4_c00052{word-spacing:-9.600768pt;}
.ws6_c00052{word-spacing:-9.597312pt;}
.ws0_c00052{word-spacing:-9.408672pt;}
.ws1_c00052{word-spacing:-8.760960pt;}
.ws5a_c00052{word-spacing:-0.029792pt;}
.ws58_c00052{word-spacing:-0.025536pt;}
.ws5b_c00052{word-spacing:-0.017024pt;}
.ws3f_c00052{word-spacing:-0.016032pt;}
.ws41_c00052{word-spacing:-0.012768pt;}
.wsc_c00052{word-spacing:0.000000pt;}
.ws59_c00052{word-spacing:0.004256pt;}
.wsf_c00052{word-spacing:0.012800pt;}
.ws28_c00052{word-spacing:0.021376pt;}
.wsb_c00052{word-spacing:0.037408pt;}
.ws25_c00052{word-spacing:0.057600pt;}
.ws21_c00052{word-spacing:0.089600pt;}
.ws40_c00052{word-spacing:0.101536pt;}
.ws13_c00052{word-spacing:0.275200pt;}
.ws12_c00052{word-spacing:0.288000pt;}
.ws44_c00052{word-spacing:0.323456pt;}
.ws4e_c00052{word-spacing:0.595840pt;}
.ws4d_c00052{word-spacing:0.600096pt;}
.ws4c_c00052{word-spacing:0.612864pt;}
.ws43_c00052{word-spacing:0.621376pt;}
.ws42_c00052{word-spacing:0.638400pt;}
.ws4b_c00052{word-spacing:0.646912pt;}
.ws27_c00052{word-spacing:1.010016pt;}
.ws26_c00052{word-spacing:1.047424pt;}
.ws2b_c00052{word-spacing:1.352032pt;}
.ws2c_c00052{word-spacing:1.389440pt;}
.ws3e_c00052{word-spacing:1.640608pt;}
.ws36_c00052{word-spacing:1.651296pt;}
.ws37_c00052{word-spacing:1.982624pt;}
.ws2a_c00052{word-spacing:1.987968pt;}
.ws29_c00052{word-spacing:1.998656pt;}
.ws4a_c00052{word-spacing:2.208864pt;}
.ws49_c00052{word-spacing:2.221632pt;}
.ws1e_c00052{word-spacing:2.240000pt;}
.ws1d_c00052{word-spacing:2.323200pt;}
.ws54_c00052{word-spacing:2.847264pt;}
.ws55_c00052{word-spacing:2.855776pt;}
.ws53_c00052{word-spacing:2.864288pt;}
.ws38_c00052{word-spacing:4.547744pt;}
.ws3a_c00052{word-spacing:4.563776pt;}
.ws39_c00052{word-spacing:4.569120pt;}
.ws2e_c00052{word-spacing:4.863040pt;}
.ws2f_c00052{word-spacing:4.879072pt;}
.ws2d_c00052{word-spacing:4.900448pt;}
.ws22_c00052{word-spacing:5.145600pt;}
.ws3d_c00052{word-spacing:5.167648pt;}
.ws24_c00052{word-spacing:5.222400pt;}
.ws23_c00052{word-spacing:5.356800pt;}
.ws50_c00052{word-spacing:5.413632pt;}
.ws4f_c00052{word-spacing:5.426400pt;}
.ws16_c00052{word-spacing:5.452800pt;}
.ws17_c00052{word-spacing:5.478400pt;}
.ws10_c00052{word-spacing:5.772800pt;}
.ws11_c00052{word-spacing:5.830400pt;}
.ws33_c00052{word-spacing:6.455552pt;}
.ws32_c00052{word-spacing:6.476928pt;}
.ws56_c00052{word-spacing:7.026656pt;}
.ws57_c00052{word-spacing:7.039424pt;}
.ws51_c00052{word-spacing:9.890944pt;}
.ws52_c00052{word-spacing:9.942016pt;}
.wsd_c00052{word-spacing:10.547200pt;}
.wse_c00052{word-spacing:10.675200pt;}
.ws48_c00052{word-spacing:10.793216pt;}
.ws46_c00052{word-spacing:10.857056pt;}
.ws45_c00052{word-spacing:10.895360pt;}
.ws47_c00052{word-spacing:11.184768pt;}
.ws20_c00052{word-spacing:12.448000pt;}
.ws1f_c00052{word-spacing:12.480000pt;}
.ws31_c00052{word-spacing:15.385376pt;}
.ws19_c00052{word-spacing:15.417600pt;}
.ws18_c00052{word-spacing:15.443200pt;}
.ws3c_c00052{word-spacing:15.700672pt;}
.ws3b_c00052{word-spacing:15.754112pt;}
.ws30_c00052{word-spacing:15.780832pt;}
.ws35_c00052{word-spacing:19.238400pt;}
.ws34_c00052{word-spacing:19.313216pt;}
.ws15_c00052{word-spacing:22.412800pt;}
.ws14_c00052{word-spacing:22.425600pt;}
.ws1c_c00052{word-spacing:25.900800pt;}
.ws1a_c00052{word-spacing:25.913600pt;}
.ws1b_c00052{word-spacing:26.092800pt;}
._2_c00052{margin-left:-2.153632pt;}
._0_c00052{margin-left:-1.175680pt;}
._1_c00052{width:1.113600pt;}
._4_c00052{width:5.993344pt;}
._3_c00052{width:11.447360pt;}
.fs4_c00052{font-size:34.560000pt;}
.fs3_c00052{font-size:37.440000pt;}
.fs5_c00052{font-size:42.560000pt;}
.fs1_c00052{font-size:48.000000pt;}
.fs0_c00052{font-size:53.440000pt;}
.fs2_c00052{font-size:64.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y3_c00052{bottom:51.067067pt;}
.y2f_c00052{bottom:101.072667pt;}
.y2e_c00052{bottom:117.394427pt;}
.y2d_c00052{bottom:133.631067pt;}
.y2c_c00052{bottom:145.873947pt;}
.y2b_c00052{bottom:158.109947pt;}
.y2a_c00052{bottom:170.431067pt;}
.y29_c00052{bottom:182.665947pt;}
.y28_c00052{bottom:194.991067pt;}
.y27_c00052{bottom:207.231067pt;}
.y26_c00052{bottom:219.467067pt;}
.y25_c00052{bottom:231.791067pt;}
.y24_c00052{bottom:244.030427pt;}
.y23_c00052{bottom:260.267067pt;}
.y22_c00052{bottom:273.787067pt;}
.y21_c00052{bottom:292.187067pt;}
.y20_c00052{bottom:310.587067pt;}
.y1f_c00052{bottom:384.861147pt;}
.y1e_c00052{bottom:399.824347pt;}
.y1d_c00052{bottom:414.867707pt;}
.y1c_c00052{bottom:429.830907pt;}
.y1b_c00052{bottom:444.874267pt;}
.y1a_c00052{bottom:459.837467pt;}
.y19_c00052{bottom:474.880827pt;}
.y18_c00052{bottom:489.844027pt;}
.y17_c00052{bottom:504.887387pt;}
.y16_c00052{bottom:519.850587pt;}
.y15_c00052{bottom:534.893947pt;}
.y14_c00052{bottom:549.857147pt;}
.y13_c00052{bottom:564.900507pt;}
.y12_c00052{bottom:579.863707pt;}
.y11_c00052{bottom:594.907067pt;}
.y10_c00052{bottom:631.147067pt;}
.yf_c00052{bottom:661.787067pt;}
.ye_c00052{bottom:700.347067pt;}
.yd_c00052{bottom:730.987067pt;}
.yc_c00052{bottom:761.547067pt;}
.yb_c00052{bottom:792.187067pt;}
.ya_c00052{bottom:822.747067pt;}
.y9_c00052{bottom:853.387067pt;}
.y8_c00052{bottom:883.947067pt;}
.y7_c00052{bottom:914.587067pt;}
.y6_c00052{bottom:945.147067pt;}
.y5_c00052{bottom:983.787067pt;}
.y4_c00052{bottom:1014.347067pt;}
.y2_c00052{bottom:1046.987067pt;}
.y1_c00052{bottom:1063.867067pt;}
.h8_c00052{height:42.656250pt;}
.h9_c00052{height:44.388750pt;}
.ha_c00052{height:44.393230pt;}
.h1_c00052{height:44.724687pt;}
.h7_c00052{height:44.908901pt;}
.h2_c00052{height:50.062500pt;}
.h4_c00052{height:53.562500pt;}
.h6_c00052{height:54.125000pt;}
.h5_c00052{height:57.894063pt;}
.h3_c00052{height:64.142500pt;}
.h0_c00052{height:1122.666667pt;}
.w1_c00052{width:793.333333pt;}
.w0_c00052{width:793.626667pt;}
.x0_c00052{left:0.000000pt;}
.x1_c00052{left:113.440000pt;}
.x3_c00052{left:125.439920pt;}
.x2_c00052{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_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_7bfc78e90570dd6aac846332.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00053;src:url('chunks/assets/font_7feb39769b35b63259e67842.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00053;src:url('chunks/assets/font_a0d9c9b235bd712ad0e5c0ec.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00053;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00053{font-family:ff5_c00053;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_c00053;src:url('chunks/assets/font_450bce00dbcf0868e34d79e0.woff2')format("woff");}.ff6_c00053{font-family:ff6_c00053;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_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;}
.v1_c00053{vertical-align:29.880000px;}
.ls15_c00053{letter-spacing:-0.151200px;}
.ls13_c00053{letter-spacing:-0.048096px;}
.ls19_c00053{letter-spacing:-0.036000px;}
.ls1d_c00053{letter-spacing:-0.031248px;}
.ls16_c00053{letter-spacing:-0.028800px;}
.ls1c_c00053{letter-spacing:-0.023436px;}
.ls1a_c00053{letter-spacing:-0.021600px;}
.ls12_c00053{letter-spacing:-0.018036px;}
.ls1b_c00053{letter-spacing:-0.014400px;}
.ls22_c00053{letter-spacing:-0.014364px;}
.ls20_c00053{letter-spacing:-0.011664px;}
.ls21_c00053{letter-spacing:-0.009576px;}
.ls1f_c00053{letter-spacing:-0.007776px;}
.ls17_c00053{letter-spacing:-0.007200px;}
.ls14_c00053{letter-spacing:0.000000px;}
.ls2_c00053{letter-spacing:0.007200px;}
.ls11_c00053{letter-spacing:0.014364px;}
.ls6_c00053{letter-spacing:0.014400px;}
.ls8_c00053{letter-spacing:0.019152px;}
.ls3_c00053{letter-spacing:0.021600px;}
.lsa_c00053{letter-spacing:0.028728px;}
.ls4_c00053{letter-spacing:0.028800px;}
.ls7_c00053{letter-spacing:0.033516px;}
.ls0_c00053{letter-spacing:0.036072px;}
.lsb_c00053{letter-spacing:0.038304px;}
.lsf_c00053{letter-spacing:0.043092px;}
.ls1e_c00053{letter-spacing:0.043200px;}
.ls10_c00053{letter-spacing:0.052668px;}
.ls18_c00053{letter-spacing:0.054756px;}
.ls9_c00053{letter-spacing:0.057456px;}
.lsc_c00053{letter-spacing:0.067032px;}
.lsd_c00053{letter-spacing:0.071820px;}
.lse_c00053{letter-spacing:0.076608px;}
.ls1_c00053{letter-spacing:0.093600px;}
.ls5_c00053{letter-spacing:88.822440px;}
.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;}
}
.ws1_c00053{word-spacing:-19.506564px;}
.ws2_c00053{word-spacing:-13.310640px;}
.ws3_c00053{word-spacing:-10.796976px;}
.ws0_c00053{word-spacing:-10.584756px;}
.ws1d_c00053{word-spacing:-0.062496px;}
.ws2a_c00053{word-spacing:-0.014364px;}
.ws24_c00053{word-spacing:-0.007200px;}
.ws7_c00053{word-spacing:0.000000px;}
.ws12_c00053{word-spacing:0.014400px;}
.ws1c_c00053{word-spacing:0.021600px;}
.ws3b_c00053{word-spacing:0.033516px;}
.ws4_c00053{word-spacing:0.054108px;}
.ws5_c00053{word-spacing:0.108216px;}
.ws6_c00053{word-spacing:0.138276px;}
.ws22_c00053{word-spacing:0.338400px;}
.ws21_c00053{word-spacing:0.381600px;}
.wse_c00053{word-spacing:0.424800px;}
.wsd_c00053{word-spacing:0.482400px;}
.ws17_c00053{word-spacing:1.058400px;}
.ws16_c00053{word-spacing:1.072800px;}
.ws18_c00053{word-spacing:1.224000px;}
.ws29_c00053{word-spacing:1.404000px;}
.ws28_c00053{word-spacing:1.454400px;}
.ws2f_c00053{word-spacing:1.781136px;}
.ws2e_c00053{word-spacing:1.790712px;}
.ws14_c00053{word-spacing:1.807200px;}
.ws23_c00053{word-spacing:1.828800px;}
.ws15_c00053{word-spacing:1.922400px;}
.ws2d_c00053{word-spacing:2.475396px;}
.ws2c_c00053{word-spacing:2.480184px;}
.ws2b_c00053{word-spacing:2.518488px;}
.ws9_c00053{word-spacing:3.247200px;}
.wsa_c00053{word-spacing:3.326400px;}
.ws37_c00053{word-spacing:5.003460px;}
.ws36_c00053{word-spacing:5.013036px;}
.ws3a_c00053{word-spacing:5.041764px;}
.ws38_c00053{word-spacing:5.065704px;}
.ws32_c00053{word-spacing:5.343408px;}
.ws31_c00053{word-spacing:5.348196px;}
.ws39_c00053{word-spacing:5.372136px;}
.ws30_c00053{word-spacing:5.376924px;}
.ws1a_c00053{word-spacing:5.752800px;}
.ws19_c00053{word-spacing:5.767200px;}
.ws1b_c00053{word-spacing:5.868000px;}
.ws26_c00053{word-spacing:5.983200px;}
.ws27_c00053{word-spacing:6.012000px;}
.ws34_c00053{word-spacing:7.138908px;}
.ws33_c00053{word-spacing:7.148484px;}
.ws35_c00053{word-spacing:7.182000px;}
.ws20_c00053{word-spacing:7.200000px;}
.ws11_c00053{word-spacing:8.179200px;}
.ws10_c00053{word-spacing:8.251200px;}
.wsf_c00053{word-spacing:8.301600px;}
.wsc_c00053{word-spacing:8.352000px;}
.ws13_c00053{word-spacing:9.000000px;}
.wsb_c00053{word-spacing:10.461600px;}
.ws8_c00053{word-spacing:10.468800px;}
.ws25_c00053{word-spacing:10.800000px;}
.ws1f_c00053{word-spacing:24.508800px;}
.ws1e_c00053{word-spacing:24.530400px;}
._0_c00053{margin-left:-1.142280px;}
._2_c00053{width:1.083528px;}
._4_c00053{width:5.389884px;}
._1_c00053{width:184.320000px;}
._3_c00053{width:185.760000px;}
.fc0_c00053{color:rgb(0,0,0);}
.fs6_c00053{font-size:38.880000px;}
.fs3_c00053{font-size:42.120000px;}
.fs5_c00053{font-size:47.880000px;}
.fs2_c00053{font-size:54.000000px;}
.fs0_c00053{font-size:60.120000px;}
.fs1_c00053{font-size:72.000000px;}
.fs4_c00053{font-size:78.120000px;}
.y0_c00053{bottom:0.000000px;}
.y3_c00053{bottom:57.450450px;}
.y4_c00053{bottom:61.410450px;}
.y25_c00053{bottom:113.699190px;}
.y24_c00053{bottom:127.578270px;}
.y23_c00053{bottom:141.343770px;}
.y22_c00053{bottom:155.109270px;}
.y21_c00053{bottom:168.970530px;}
.y20_c00053{bottom:182.736030px;}
.y1f_c00053{bottom:201.002250px;}
.y1e_c00053{bottom:219.364230px;}
.y1d_c00053{bottom:237.630450px;}
.y1c_c00053{bottom:252.840450px;}
.y1b_c00053{bottom:273.540450px;}
.y1a_c00053{bottom:294.240450px;}
.y19_c00053{bottom:395.760450px;}
.y18_c00053{bottom:430.230450px;}
.y17_c00053{bottom:464.610450px;}
.y16_c00053{bottom:508.080450px;}
.y15_c00053{bottom:542.460450px;}
.y14_c00053{bottom:576.930450px;}
.y13_c00053{bottom:611.310450px;}
.y12_c00053{bottom:645.780450px;}
.y11_c00053{bottom:690.780450px;}
.y10_c00053{bottom:753.510450px;}
.yf_c00053{bottom:787.890450px;}
.ye_c00053{bottom:822.360450px;}
.yd_c00053{bottom:856.740450px;}
.yc_c00053{bottom:891.210450px;}
.yb_c00053{bottom:934.590450px;}
.ya_c00053{bottom:969.060450px;}
.y9_c00053{bottom:1003.440450px;}
.y8_c00053{bottom:1037.910450px;}
.y7_c00053{bottom:1072.290450px;}
.y6_c00053{bottom:1106.760450px;}
.y5_c00053{bottom:1141.140450px;}
.y2_c00053{bottom:1173.810450px;}
.y1_c00053{bottom:1196.850450px;}
.h2_c00053{height:47.988281px;}
.h7_c00053{height:49.937344px;}
.h1_c00053{height:50.315273px;}
.h3_c00053{height:56.320312px;}
.h4_c00053{height:60.257812px;}
.h5_c00053{height:65.130820px;}
.h6_c00053{height:81.476719px;}
.h0_c00053{height:1263.000000px;}
.w1_c00053{width:892.500000px;}
.w0_c00053{width:892.830000px;}
.x0_c00053{left:0.000000px;}
.x2_c00053{left:127.620000px;}
.x6_c00053{left:141.122160px;}
.x1_c00053{left:145.440000px;}
.x5_c00053{left:180.810000px;}
.x4_c00053{left:439.020000px;}
.x3_c00053{left:446.490000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.v1_c00053{vertical-align:26.560000pt;}
.ls15_c00053{letter-spacing:-0.134400pt;}
.ls13_c00053{letter-spacing:-0.042752pt;}
.ls19_c00053{letter-spacing:-0.032000pt;}
.ls1d_c00053{letter-spacing:-0.027776pt;}
.ls16_c00053{letter-spacing:-0.025600pt;}
.ls1c_c00053{letter-spacing:-0.020832pt;}
.ls1a_c00053{letter-spacing:-0.019200pt;}
.ls12_c00053{letter-spacing:-0.016032pt;}
.ls1b_c00053{letter-spacing:-0.012800pt;}
.ls22_c00053{letter-spacing:-0.012768pt;}
.ls20_c00053{letter-spacing:-0.010368pt;}
.ls21_c00053{letter-spacing:-0.008512pt;}
.ls1f_c00053{letter-spacing:-0.006912pt;}
.ls17_c00053{letter-spacing:-0.006400pt;}
.ls14_c00053{letter-spacing:0.000000pt;}
.ls2_c00053{letter-spacing:0.006400pt;}
.ls11_c00053{letter-spacing:0.012768pt;}
.ls6_c00053{letter-spacing:0.012800pt;}
.ls8_c00053{letter-spacing:0.017024pt;}
.ls3_c00053{letter-spacing:0.019200pt;}
.lsa_c00053{letter-spacing:0.025536pt;}
.ls4_c00053{letter-spacing:0.025600pt;}
.ls7_c00053{letter-spacing:0.029792pt;}
.ls0_c00053{letter-spacing:0.032064pt;}
.lsb_c00053{letter-spacing:0.034048pt;}
.lsf_c00053{letter-spacing:0.038304pt;}
.ls1e_c00053{letter-spacing:0.038400pt;}
.ls10_c00053{letter-spacing:0.046816pt;}
.ls18_c00053{letter-spacing:0.048672pt;}
.ls9_c00053{letter-spacing:0.051072pt;}
.lsc_c00053{letter-spacing:0.059584pt;}
.lsd_c00053{letter-spacing:0.063840pt;}
.lse_c00053{letter-spacing:0.068096pt;}
.ls1_c00053{letter-spacing:0.083200pt;}
.ls5_c00053{letter-spacing:78.953280pt;}
.ws1_c00053{word-spacing:-17.339168pt;}
.ws2_c00053{word-spacing:-11.831680pt;}
.ws3_c00053{word-spacing:-9.597312pt;}
.ws0_c00053{word-spacing:-9.408672pt;}
.ws1d_c00053{word-spacing:-0.055552pt;}
.ws2a_c00053{word-spacing:-0.012768pt;}
.ws24_c00053{word-spacing:-0.006400pt;}
.ws7_c00053{word-spacing:0.000000pt;}
.ws12_c00053{word-spacing:0.012800pt;}
.ws1c_c00053{word-spacing:0.019200pt;}
.ws3b_c00053{word-spacing:0.029792pt;}
.ws4_c00053{word-spacing:0.048096pt;}
.ws5_c00053{word-spacing:0.096192pt;}
.ws6_c00053{word-spacing:0.122912pt;}
.ws22_c00053{word-spacing:0.300800pt;}
.ws21_c00053{word-spacing:0.339200pt;}
.wse_c00053{word-spacing:0.377600pt;}
.wsd_c00053{word-spacing:0.428800pt;}
.ws17_c00053{word-spacing:0.940800pt;}
.ws16_c00053{word-spacing:0.953600pt;}
.ws18_c00053{word-spacing:1.088000pt;}
.ws29_c00053{word-spacing:1.248000pt;}
.ws28_c00053{word-spacing:1.292800pt;}
.ws2f_c00053{word-spacing:1.583232pt;}
.ws2e_c00053{word-spacing:1.591744pt;}
.ws14_c00053{word-spacing:1.606400pt;}
.ws23_c00053{word-spacing:1.625600pt;}
.ws15_c00053{word-spacing:1.708800pt;}
.ws2d_c00053{word-spacing:2.200352pt;}
.ws2c_c00053{word-spacing:2.204608pt;}
.ws2b_c00053{word-spacing:2.238656pt;}
.ws9_c00053{word-spacing:2.886400pt;}
.wsa_c00053{word-spacing:2.956800pt;}
.ws37_c00053{word-spacing:4.447520pt;}
.ws36_c00053{word-spacing:4.456032pt;}
.ws3a_c00053{word-spacing:4.481568pt;}
.ws38_c00053{word-spacing:4.502848pt;}
.ws32_c00053{word-spacing:4.749696pt;}
.ws31_c00053{word-spacing:4.753952pt;}
.ws39_c00053{word-spacing:4.775232pt;}
.ws30_c00053{word-spacing:4.779488pt;}
.ws1a_c00053{word-spacing:5.113600pt;}
.ws19_c00053{word-spacing:5.126400pt;}
.ws1b_c00053{word-spacing:5.216000pt;}
.ws26_c00053{word-spacing:5.318400pt;}
.ws27_c00053{word-spacing:5.344000pt;}
.ws34_c00053{word-spacing:6.345696pt;}
.ws33_c00053{word-spacing:6.354208pt;}
.ws35_c00053{word-spacing:6.384000pt;}
.ws20_c00053{word-spacing:6.400000pt;}
.ws11_c00053{word-spacing:7.270400pt;}
.ws10_c00053{word-spacing:7.334400pt;}
.wsf_c00053{word-spacing:7.379200pt;}
.wsc_c00053{word-spacing:7.424000pt;}
.ws13_c00053{word-spacing:8.000000pt;}
.wsb_c00053{word-spacing:9.299200pt;}
.ws8_c00053{word-spacing:9.305600pt;}
.ws25_c00053{word-spacing:9.600000pt;}
.ws1f_c00053{word-spacing:21.785600pt;}
.ws1e_c00053{word-spacing:21.804800pt;}
._0_c00053{margin-left:-1.015360pt;}
._2_c00053{width:0.963136pt;}
._4_c00053{width:4.791008pt;}
._1_c00053{width:163.840000pt;}
._3_c00053{width:165.120000pt;}
.fs6_c00053{font-size:34.560000pt;}
.fs3_c00053{font-size:37.440000pt;}
.fs5_c00053{font-size:42.560000pt;}
.fs2_c00053{font-size:48.000000pt;}
.fs0_c00053{font-size:53.440000pt;}
.fs1_c00053{font-size:64.000000pt;}
.fs4_c00053{font-size:69.440000pt;}
.y0_c00053{bottom:0.000000pt;}
.y3_c00053{bottom:51.067067pt;}
.y4_c00053{bottom:54.587067pt;}
.y25_c00053{bottom:101.065947pt;}
.y24_c00053{bottom:113.402907pt;}
.y23_c00053{bottom:125.638907pt;}
.y22_c00053{bottom:137.874907pt;}
.y21_c00053{bottom:150.196027pt;}
.y20_c00053{bottom:162.432027pt;}
.y1f_c00053{bottom:178.668667pt;}
.y1e_c00053{bottom:194.990427pt;}
.y1d_c00053{bottom:211.227067pt;}
.y1c_c00053{bottom:224.747067pt;}
.y1b_c00053{bottom:243.147067pt;}
.y1a_c00053{bottom:261.547067pt;}
.y19_c00053{bottom:351.787067pt;}
.y18_c00053{bottom:382.427067pt;}
.y17_c00053{bottom:412.987067pt;}
.y16_c00053{bottom:451.627067pt;}
.y15_c00053{bottom:482.187067pt;}
.y14_c00053{bottom:512.827067pt;}
.y13_c00053{bottom:543.387067pt;}
.y12_c00053{bottom:574.027067pt;}
.y11_c00053{bottom:614.027067pt;}
.y10_c00053{bottom:669.787067pt;}
.yf_c00053{bottom:700.347067pt;}
.ye_c00053{bottom:730.987067pt;}
.yd_c00053{bottom:761.547067pt;}
.yc_c00053{bottom:792.187067pt;}
.yb_c00053{bottom:830.747067pt;}
.ya_c00053{bottom:861.387067pt;}
.y9_c00053{bottom:891.947067pt;}
.y8_c00053{bottom:922.587067pt;}
.y7_c00053{bottom:953.147067pt;}
.y6_c00053{bottom:983.787067pt;}
.y5_c00053{bottom:1014.347067pt;}
.y2_c00053{bottom:1043.387067pt;}
.y1_c00053{bottom:1063.867067pt;}
.h2_c00053{height:42.656250pt;}
.h7_c00053{height:44.388750pt;}
.h1_c00053{height:44.724687pt;}
.h3_c00053{height:50.062500pt;}
.h4_c00053{height:53.562500pt;}
.h5_c00053{height:57.894063pt;}
.h6_c00053{height:72.423750pt;}
.h0_c00053{height:1122.666667pt;}
.w1_c00053{width:793.333333pt;}
.w0_c00053{width:793.626667pt;}
.x0_c00053{left:0.000000pt;}
.x2_c00053{left:113.440000pt;}
.x6_c00053{left:125.441920pt;}
.x1_c00053{left:129.280000pt;}
.x5_c00053{left:160.720000pt;}
.x4_c00053{left:390.240000pt;}
.x3_c00053{left:396.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_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_c308825cb12c7ba71f9f6f37.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.100098;font-style:normal;font-weight:normal;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_28a1d3d5789aaea5426e25b1.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;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_c00054;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00054;src:url('chunks/assets/font_c79343104658bae50692b53a.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00054;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00054{font-family:ff5_c00054;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_c00054;src:url('chunks/assets/font_7a1131e2291b10f1b7ed014a.woff2')format("woff");}.ff6_c00054{font-family:ff6_c00054;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_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;}
.v1_c00054{vertical-align:15.840000px;}
.v2_c00054{vertical-align:29.880000px;}
.ls11_c00054{letter-spacing:-0.151200px;}
.ls18_c00054{letter-spacing:-0.039060px;}
.ls15_c00054{letter-spacing:-0.036000px;}
.ls14_c00054{letter-spacing:-0.028800px;}
.ls1b_c00054{letter-spacing:-0.023328px;}
.ls12_c00054{letter-spacing:-0.021600px;}
.ls19_c00054{letter-spacing:-0.015624px;}
.ls16_c00054{letter-spacing:-0.014400px;}
.ls17_c00054{letter-spacing:-0.007200px;}
.ls10_c00054{letter-spacing:0.000000px;}
.ls4_c00054{letter-spacing:0.007200px;}
.ls9_c00054{letter-spacing:0.014364px;}
.ls2_c00054{letter-spacing:0.014400px;}
.lsa_c00054{letter-spacing:0.019152px;}
.ls7_c00054{letter-spacing:0.021600px;}
.ls3_c00054{letter-spacing:0.028800px;}
.lsf_c00054{letter-spacing:0.033516px;}
.ls5_c00054{letter-spacing:0.036000px;}
.lse_c00054{letter-spacing:0.043092px;}
.lsc_c00054{letter-spacing:0.047880px;}
.ls0_c00054{letter-spacing:0.048096px;}
.ls13_c00054{letter-spacing:0.054756px;}
.ls1a_c00054{letter-spacing:0.071820px;}
.ls6_c00054{letter-spacing:0.093600px;}
.lsb_c00054{letter-spacing:0.104040px;}
.lsd_c00054{letter-spacing:0.342144px;}
.ls8_c00054{letter-spacing:40.544280px;}
.ls1_c00054{letter-spacing:1227.240000px;}
.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;}
}
.ws2_c00054{word-spacing:-19.490940px;}
.ws1_c00054{word-spacing:-18.093600px;}
.ws4_c00054{word-spacing:-11.150784px;}
.ws3_c00054{word-spacing:-10.785312px;}
.ws0_c00054{word-spacing:-10.584756px;}
.ws21_c00054{word-spacing:-0.078120px;}
.ws2b_c00054{word-spacing:-0.023940px;}
.ws9_c00054{word-spacing:-0.014400px;}
.ws2c_c00054{word-spacing:-0.014364px;}
.ws6_c00054{word-spacing:0.000000px;}
.ws2a_c00054{word-spacing:0.004788px;}
.ws15_c00054{word-spacing:0.014400px;}
.ws5_c00054{word-spacing:0.042084px;}
.ws20_c00054{word-spacing:0.043200px;}
.wsf_c00054{word-spacing:0.072000px;}
.ws29_c00054{word-spacing:0.689472px;}
.ws28_c00054{word-spacing:0.718200px;}
.ws19_c00054{word-spacing:1.850400px;}
.ws10_c00054{word-spacing:3.585600px;}
.ws27_c00054{word-spacing:4.262400px;}
.ws26_c00054{word-spacing:4.356000px;}
.wsd_c00054{word-spacing:6.120000px;}
.wse_c00054{word-spacing:6.192000px;}
.ws24_c00054{word-spacing:7.617600px;}
.ws25_c00054{word-spacing:7.639200px;}
.ws17_c00054{word-spacing:10.144800px;}
.ws18_c00054{word-spacing:10.152000px;}
.ws1b_c00054{word-spacing:10.404000px;}
.ws1a_c00054{word-spacing:10.483200px;}
.ws8_c00054{word-spacing:12.240000px;}
.ws7_c00054{word-spacing:12.319200px;}
.ws1f_c00054{word-spacing:14.320800px;}
.ws1e_c00054{word-spacing:14.356800px;}
.wsc_c00054{word-spacing:15.868800px;}
.ws1d_c00054{word-spacing:16.178400px;}
.ws1c_c00054{word-spacing:16.264800px;}
.ws16_c00054{word-spacing:17.287200px;}
.ws14_c00054{word-spacing:19.044000px;}
.ws13_c00054{word-spacing:19.087200px;}
.wsa_c00054{word-spacing:22.996800px;}
.wsb_c00054{word-spacing:23.011200px;}
.ws12_c00054{word-spacing:23.630400px;}
.ws11_c00054{word-spacing:23.796000px;}
.ws22_c00054{word-spacing:25.970400px;}
.ws23_c00054{word-spacing:54.388800px;}
._0_c00054{margin-left:-1.322640px;}
._1_c00054{width:1.310400px;}
.fc0_c00054{color:rgb(0,0,0);}
.fs6_c00054{font-size:38.880000px;}
.fs3_c00054{font-size:42.120000px;}
.fs5_c00054{font-size:47.880000px;}
.fs1_c00054{font-size:54.000000px;}
.fs0_c00054{font-size:60.120000px;}
.fs2_c00054{font-size:72.000000px;}
.fs4_c00054{font-size:78.120000px;}
.y0_c00054{bottom:0.000000px;}
.y3_c00054{bottom:57.450450px;}
.y24_c00054{bottom:113.698470px;}
.y23_c00054{bottom:132.066180px;}
.y22_c00054{bottom:150.332400px;}
.y21_c00054{bottom:168.598620px;}
.y20_c00054{bottom:186.968730px;}
.y1f_c00054{bottom:205.234950px;}
.y1e_c00054{bottom:219.000450px;}
.y1d_c00054{bottom:234.210450px;}
.y1c_c00054{bottom:254.910450px;}
.y1b_c00054{bottom:275.610450px;}
.y1a_c00054{bottom:308.910450px;}
.y19_c00054{bottom:343.380450px;}
.y18_c00054{bottom:377.760450px;}
.y17_c00054{bottom:412.230450px;}
.y16_c00054{bottom:457.230450px;}
.y15_c00054{bottom:519.960450px;}
.y14_c00054{bottom:554.340450px;}
.y13_c00054{bottom:588.810450px;}
.y12_c00054{bottom:632.190450px;}
.y11_c00054{bottom:666.660450px;}
.y10_c00054{bottom:701.040600px;}
.yf_c00054{bottom:735.510600px;}
.ye_c00054{bottom:769.890600px;}
.yd_c00054{bottom:813.360450px;}
.yc_c00054{bottom:847.740450px;}
.yb_c00054{bottom:882.210450px;}
.ya_c00054{bottom:916.590450px;}
.y9_c00054{bottom:960.060450px;}
.y8_c00054{bottom:994.440450px;}
.y7_c00054{bottom:1028.910450px;}
.y6_c00054{bottom:1063.290450px;}
.y5_c00054{bottom:1106.760450px;}
.y4_c00054{bottom:1141.140450px;}
.y2_c00054{bottom:1177.860450px;}
.y1_c00054{bottom:1196.850450px;}
.h9_c00054{height:47.988281px;}
.ha_c00054{height:49.937344px;}
.h1_c00054{height:50.315273px;}
.h2_c00054{height:56.320312px;}
.h4_c00054{height:60.257812px;}
.h7_c00054{height:65.130220px;}
.h5_c00054{height:65.130820px;}
.h6_c00054{height:65.131420px;}
.h3_c00054{height:72.160312px;}
.h8_c00054{height:81.476719px;}
.h0_c00054{height:1263.000000px;}
.w1_c00054{width:892.500000px;}
.w0_c00054{width:892.830000px;}
.x0_c00054{left:0.000000px;}
.x1_c00054{left:127.620000px;}
.x3_c00054{left:141.119370px;}
.x2_c00054{left:180.810000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.v1_c00054{vertical-align:14.080000pt;}
.v2_c00054{vertical-align:26.560000pt;}
.ls11_c00054{letter-spacing:-0.134400pt;}
.ls18_c00054{letter-spacing:-0.034720pt;}
.ls15_c00054{letter-spacing:-0.032000pt;}
.ls14_c00054{letter-spacing:-0.025600pt;}
.ls1b_c00054{letter-spacing:-0.020736pt;}
.ls12_c00054{letter-spacing:-0.019200pt;}
.ls19_c00054{letter-spacing:-0.013888pt;}
.ls16_c00054{letter-spacing:-0.012800pt;}
.ls17_c00054{letter-spacing:-0.006400pt;}
.ls10_c00054{letter-spacing:0.000000pt;}
.ls4_c00054{letter-spacing:0.006400pt;}
.ls9_c00054{letter-spacing:0.012768pt;}
.ls2_c00054{letter-spacing:0.012800pt;}
.lsa_c00054{letter-spacing:0.017024pt;}
.ls7_c00054{letter-spacing:0.019200pt;}
.ls3_c00054{letter-spacing:0.025600pt;}
.lsf_c00054{letter-spacing:0.029792pt;}
.ls5_c00054{letter-spacing:0.032000pt;}
.lse_c00054{letter-spacing:0.038304pt;}
.lsc_c00054{letter-spacing:0.042560pt;}
.ls0_c00054{letter-spacing:0.042752pt;}
.ls13_c00054{letter-spacing:0.048672pt;}
.ls1a_c00054{letter-spacing:0.063840pt;}
.ls6_c00054{letter-spacing:0.083200pt;}
.lsb_c00054{letter-spacing:0.092480pt;}
.lsd_c00054{letter-spacing:0.304128pt;}
.ls8_c00054{letter-spacing:36.039360pt;}
.ls1_c00054{letter-spacing:1090.880000pt;}
.ws2_c00054{word-spacing:-17.325280pt;}
.ws1_c00054{word-spacing:-16.083200pt;}
.ws4_c00054{word-spacing:-9.911808pt;}
.ws3_c00054{word-spacing:-9.586944pt;}
.ws0_c00054{word-spacing:-9.408672pt;}
.ws21_c00054{word-spacing:-0.069440pt;}
.ws2b_c00054{word-spacing:-0.021280pt;}
.ws9_c00054{word-spacing:-0.012800pt;}
.ws2c_c00054{word-spacing:-0.012768pt;}
.ws6_c00054{word-spacing:0.000000pt;}
.ws2a_c00054{word-spacing:0.004256pt;}
.ws15_c00054{word-spacing:0.012800pt;}
.ws5_c00054{word-spacing:0.037408pt;}
.ws20_c00054{word-spacing:0.038400pt;}
.wsf_c00054{word-spacing:0.064000pt;}
.ws29_c00054{word-spacing:0.612864pt;}
.ws28_c00054{word-spacing:0.638400pt;}
.ws19_c00054{word-spacing:1.644800pt;}
.ws10_c00054{word-spacing:3.187200pt;}
.ws27_c00054{word-spacing:3.788800pt;}
.ws26_c00054{word-spacing:3.872000pt;}
.wsd_c00054{word-spacing:5.440000pt;}
.wse_c00054{word-spacing:5.504000pt;}
.ws24_c00054{word-spacing:6.771200pt;}
.ws25_c00054{word-spacing:6.790400pt;}
.ws17_c00054{word-spacing:9.017600pt;}
.ws18_c00054{word-spacing:9.024000pt;}
.ws1b_c00054{word-spacing:9.248000pt;}
.ws1a_c00054{word-spacing:9.318400pt;}
.ws8_c00054{word-spacing:10.880000pt;}
.ws7_c00054{word-spacing:10.950400pt;}
.ws1f_c00054{word-spacing:12.729600pt;}
.ws1e_c00054{word-spacing:12.761600pt;}
.wsc_c00054{word-spacing:14.105600pt;}
.ws1d_c00054{word-spacing:14.380800pt;}
.ws1c_c00054{word-spacing:14.457600pt;}
.ws16_c00054{word-spacing:15.366400pt;}
.ws14_c00054{word-spacing:16.928000pt;}
.ws13_c00054{word-spacing:16.966400pt;}
.wsa_c00054{word-spacing:20.441600pt;}
.wsb_c00054{word-spacing:20.454400pt;}
.ws12_c00054{word-spacing:21.004800pt;}
.ws11_c00054{word-spacing:21.152000pt;}
.ws22_c00054{word-spacing:23.084800pt;}
.ws23_c00054{word-spacing:48.345600pt;}
._0_c00054{margin-left:-1.175680pt;}
._1_c00054{width:1.164800pt;}
.fs6_c00054{font-size:34.560000pt;}
.fs3_c00054{font-size:37.440000pt;}
.fs5_c00054{font-size:42.560000pt;}
.fs1_c00054{font-size:48.000000pt;}
.fs0_c00054{font-size:53.440000pt;}
.fs2_c00054{font-size:64.000000pt;}
.fs4_c00054{font-size:69.440000pt;}
.y0_c00054{bottom:0.000000pt;}
.y3_c00054{bottom:51.067067pt;}
.y24_c00054{bottom:101.065307pt;}
.y23_c00054{bottom:117.392160pt;}
.y22_c00054{bottom:133.628800pt;}
.y21_c00054{bottom:149.865440pt;}
.y20_c00054{bottom:166.194427pt;}
.y1f_c00054{bottom:182.431067pt;}
.y1e_c00054{bottom:194.667067pt;}
.y1d_c00054{bottom:208.187067pt;}
.y1c_c00054{bottom:226.587067pt;}
.y1b_c00054{bottom:244.987067pt;}
.y1a_c00054{bottom:274.587067pt;}
.y19_c00054{bottom:305.227067pt;}
.y18_c00054{bottom:335.787067pt;}
.y17_c00054{bottom:366.427067pt;}
.y16_c00054{bottom:406.427067pt;}
.y15_c00054{bottom:462.187067pt;}
.y14_c00054{bottom:492.747067pt;}
.y13_c00054{bottom:523.387067pt;}
.y12_c00054{bottom:561.947067pt;}
.y11_c00054{bottom:592.587067pt;}
.y10_c00054{bottom:623.147200pt;}
.yf_c00054{bottom:653.787200pt;}
.ye_c00054{bottom:684.347200pt;}
.yd_c00054{bottom:722.987067pt;}
.yc_c00054{bottom:753.547067pt;}
.yb_c00054{bottom:784.187067pt;}
.ya_c00054{bottom:814.747067pt;}
.y9_c00054{bottom:853.387067pt;}
.y8_c00054{bottom:883.947067pt;}
.y7_c00054{bottom:914.587067pt;}
.y6_c00054{bottom:945.147067pt;}
.y5_c00054{bottom:983.787067pt;}
.y4_c00054{bottom:1014.347067pt;}
.y2_c00054{bottom:1046.987067pt;}
.y1_c00054{bottom:1063.867067pt;}
.h9_c00054{height:42.656250pt;}
.ha_c00054{height:44.388750pt;}
.h1_c00054{height:44.724687pt;}
.h2_c00054{height:50.062500pt;}
.h4_c00054{height:53.562500pt;}
.h7_c00054{height:57.893529pt;}
.h5_c00054{height:57.894063pt;}
.h6_c00054{height:57.894596pt;}
.h3_c00054{height:64.142500pt;}
.h8_c00054{height:72.423750pt;}
.h0_c00054{height:1122.666667pt;}
.w1_c00054{width:793.333333pt;}
.w0_c00054{width:793.626667pt;}
.x0_c00054{left:0.000000pt;}
.x1_c00054{left:113.440000pt;}
.x3_c00054{left:125.439440pt;}
.x2_c00054{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_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_fbb290e33b045715ec3f77d9.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_12600a801fc0f6b6dcb51c72.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00055;src:url('chunks/assets/font_7a822b8648b0be607421321f.woff2')format("woff");}.ff4_c00055{font-family:ff4_c00055;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00055;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00055{font-family:ff5_c00055;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00055;src:url('chunks/assets/font_8e024c9bd5384c8aed0a1acd.woff2')format("woff");}.ff6_c00055{font-family:ff6_c00055;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.v1_c00055{vertical-align:29.880000px;}
.ls1e_c00055{letter-spacing:-0.266400px;}
.ls17_c00055{letter-spacing:-0.151200px;}
.ls20_c00055{letter-spacing:-0.085932px;}
.ls21_c00055{letter-spacing:-0.057600px;}
.ls15_c00055{letter-spacing:-0.048096px;}
.ls19_c00055{letter-spacing:-0.036000px;}
.ls1a_c00055{letter-spacing:-0.028800px;}
.ls18_c00055{letter-spacing:-0.021600px;}
.ls14_c00055{letter-spacing:-0.018036px;}
.ls1f_c00055{letter-spacing:-0.015624px;}
.ls1c_c00055{letter-spacing:-0.014400px;}
.ls22_c00055{letter-spacing:-0.007776px;}
.ls1d_c00055{letter-spacing:-0.007200px;}
.ls23_c00055{letter-spacing:-0.003888px;}
.ls16_c00055{letter-spacing:0.000000px;}
.ls7_c00055{letter-spacing:0.007200px;}
.lse_c00055{letter-spacing:0.009576px;}
.ls8_c00055{letter-spacing:0.014364px;}
.ls2_c00055{letter-spacing:0.014400px;}
.ls1_c00055{letter-spacing:0.021600px;}
.lsb_c00055{letter-spacing:0.023940px;}
.lsc_c00055{letter-spacing:0.033516px;}
.ls0_c00055{letter-spacing:0.036072px;}
.ls10_c00055{letter-spacing:0.038304px;}
.ls5_c00055{letter-spacing:0.039060px;}
.ls13_c00055{letter-spacing:0.043092px;}
.ls6_c00055{letter-spacing:0.043200px;}
.ls1b_c00055{letter-spacing:0.054756px;}
.lsf_c00055{letter-spacing:0.057456px;}
.ls12_c00055{letter-spacing:0.062244px;}
.ls11_c00055{letter-spacing:0.075960px;}
.ls9_c00055{letter-spacing:0.104040px;}
.lsd_c00055{letter-spacing:0.189360px;}
.ls3_c00055{letter-spacing:0.216000px;}
.lsa_c00055{letter-spacing:0.342144px;}
.ls4_c00055{letter-spacing:35.154000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00055{word-spacing:-19.569060px;}
.ws2_c00055{word-spacing:-19.514376px;}
.ws4_c00055{word-spacing:-19.444068px;}
.ws5_c00055{word-spacing:-18.043200px;}
.ws1_c00055{word-spacing:-17.978400px;}
.ws8_c00055{word-spacing:-13.320216px;}
.ws6_c00055{word-spacing:-11.150784px;}
.ws9_c00055{word-spacing:-10.808640px;}
.ws7_c00055{word-spacing:-10.804752px;}
.ws0_c00055{word-spacing:-10.584756px;}
.ws33_c00055{word-spacing:-0.038304px;}
.ws3f_c00055{word-spacing:-0.023940px;}
.ws2e_c00055{word-spacing:-0.014364px;}
.ws2d_c00055{word-spacing:-0.004788px;}
.wsd_c00055{word-spacing:0.000000px;}
.ws2c_c00055{word-spacing:0.004788px;}
.ws34_c00055{word-spacing:0.009576px;}
.ws17_c00055{word-spacing:0.021600px;}
.ws2b_c00055{word-spacing:0.050400px;}
.wsa_c00055{word-spacing:0.054108px;}
.wse_c00055{word-spacing:0.072000px;}
.wsb_c00055{word-spacing:0.108216px;}
.wsc_c00055{word-spacing:0.138276px;}
.ws18_c00055{word-spacing:0.266400px;}
.ws1b_c00055{word-spacing:1.468800px;}
.ws3c_c00055{word-spacing:1.757196px;}
.ws3b_c00055{word-spacing:1.785924px;}
.ws3a_c00055{word-spacing:1.804032px;}
.ws39_c00055{word-spacing:1.805076px;}
.ws15_c00055{word-spacing:1.814400px;}
.ws14_c00055{word-spacing:1.857600px;}
.ws31_c00055{word-spacing:2.145024px;}
.ws30_c00055{word-spacing:2.154600px;}
.ws2f_c00055{word-spacing:2.164176px;}
.ws32_c00055{word-spacing:2.168964px;}
.ws1d_c00055{word-spacing:2.527200px;}
.ws1e_c00055{word-spacing:2.577600px;}
.ws1c_c00055{word-spacing:2.664000px;}
.ws3e_c00055{word-spacing:2.853648px;}
.ws3d_c00055{word-spacing:2.863224px;}
.ws29_c00055{word-spacing:3.592800px;}
.ws2a_c00055{word-spacing:3.607200px;}
.ws19_c00055{word-spacing:3.967200px;}
.ws22_c00055{word-spacing:3.974400px;}
.ws1a_c00055{word-spacing:4.089600px;}
.ws24_c00055{word-spacing:5.032800px;}
.ws23_c00055{word-spacing:5.047200px;}
.ws27_c00055{word-spacing:5.068800px;}
.ws28_c00055{word-spacing:5.133600px;}
.ws20_c00055{word-spacing:7.185600px;}
.ws1f_c00055{word-spacing:7.293600px;}
.ws16_c00055{word-spacing:9.727200px;}
.wsf_c00055{word-spacing:9.756000px;}
.ws38_c00055{word-spacing:11.495988px;}
.ws37_c00055{word-spacing:11.500776px;}
.ws36_c00055{word-spacing:11.505564px;}
.ws35_c00055{word-spacing:11.524716px;}
.ws12_c00055{word-spacing:14.824800px;}
.ws13_c00055{word-spacing:14.889600px;}
.ws25_c00055{word-spacing:17.661600px;}
.ws26_c00055{word-spacing:17.697600px;}
.ws10_c00055{word-spacing:22.658400px;}
.ws11_c00055{word-spacing:22.975200px;}
.ws21_c00055{word-spacing:45.079200px;}
._0_c00055{margin-left:-1.142280px;}
._1_c00055{width:1.044000px;}
._2_c00055{width:2.513484px;}
.fc0_c00055{color:rgb(0,0,0);}
.fs6_c00055{font-size:38.880000px;}
.fs3_c00055{font-size:42.120000px;}
.fs5_c00055{font-size:47.880000px;}
.fs2_c00055{font-size:54.000000px;}
.fs0_c00055{font-size:60.120000px;}
.fs1_c00055{font-size:72.000000px;}
.fs4_c00055{font-size:78.120000px;}
.y0_c00055{bottom:0.000000px;}
.y3_c00055{bottom:57.450450px;}
.y4_c00055{bottom:61.410450px;}
.y27_c00055{bottom:113.703690px;}
.y26_c00055{bottom:127.469190px;}
.y25_c00055{bottom:141.333120px;}
.y24_c00055{bottom:159.599340px;}
.y23_c00055{bottom:173.467470px;}
.y22_c00055{bottom:191.733690px;}
.y21_c00055{bottom:205.415400px;}
.y20_c00055{bottom:219.364230px;}
.y1f_c00055{bottom:237.636030px;}
.y1e_c00055{bottom:255.902250px;}
.y1d_c00055{bottom:274.264230px;}
.y1c_c00055{bottom:292.530450px;}
.y1b_c00055{bottom:307.740450px;}
.y1a_c00055{bottom:328.440450px;}
.y19_c00055{bottom:349.140600px;}
.y18_c00055{bottom:439.230600px;}
.y17_c00055{bottom:473.610450px;}
.y16_c00055{bottom:508.080450px;}
.y15_c00055{bottom:542.460450px;}
.y14_c00055{bottom:576.930450px;}
.y13_c00055{bottom:611.310450px;}
.y12_c00055{bottom:656.400450px;}
.y11_c00055{bottom:719.040450px;}
.y10_c00055{bottom:753.510450px;}
.yf_c00055{bottom:787.890450px;}
.ye_c00055{bottom:822.360450px;}
.yd_c00055{bottom:856.740450px;}
.yc_c00055{bottom:891.210450px;}
.yb_c00055{bottom:934.590450px;}
.ya_c00055{bottom:969.060450px;}
.y9_c00055{bottom:1003.440450px;}
.y8_c00055{bottom:1037.910450px;}
.y7_c00055{bottom:1072.290450px;}
.y6_c00055{bottom:1106.760450px;}
.y5_c00055{bottom:1141.140450px;}
.y2_c00055{bottom:1173.810450px;}
.y1_c00055{bottom:1196.850450px;}
.h2_c00055{height:47.988281px;}
.h7_c00055{height:49.937344px;}
.h1_c00055{height:50.315273px;}
.h3_c00055{height:56.320312px;}
.h4_c00055{height:60.257812px;}
.h5_c00055{height:65.130820px;}
.h6_c00055{height:81.476719px;}
.h0_c00055{height:1263.000000px;}
.w1_c00055{width:892.500000px;}
.w0_c00055{width:892.830000px;}
.x0_c00055{left:0.000000px;}
.x2_c00055{left:127.620000px;}
.x6_c00055{left:141.112980px;}
.x1_c00055{left:145.440000px;}
.x5_c00055{left:180.810000px;}
.x4_c00055{left:439.020000px;}
.x3_c00055{left:446.490000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.v1_c00055{vertical-align:26.560000pt;}
.ls1e_c00055{letter-spacing:-0.236800pt;}
.ls17_c00055{letter-spacing:-0.134400pt;}
.ls20_c00055{letter-spacing:-0.076384pt;}
.ls21_c00055{letter-spacing:-0.051200pt;}
.ls15_c00055{letter-spacing:-0.042752pt;}
.ls19_c00055{letter-spacing:-0.032000pt;}
.ls1a_c00055{letter-spacing:-0.025600pt;}
.ls18_c00055{letter-spacing:-0.019200pt;}
.ls14_c00055{letter-spacing:-0.016032pt;}
.ls1f_c00055{letter-spacing:-0.013888pt;}
.ls1c_c00055{letter-spacing:-0.012800pt;}
.ls22_c00055{letter-spacing:-0.006912pt;}
.ls1d_c00055{letter-spacing:-0.006400pt;}
.ls23_c00055{letter-spacing:-0.003456pt;}
.ls16_c00055{letter-spacing:0.000000pt;}
.ls7_c00055{letter-spacing:0.006400pt;}
.lse_c00055{letter-spacing:0.008512pt;}
.ls8_c00055{letter-spacing:0.012768pt;}
.ls2_c00055{letter-spacing:0.012800pt;}
.ls1_c00055{letter-spacing:0.019200pt;}
.lsb_c00055{letter-spacing:0.021280pt;}
.lsc_c00055{letter-spacing:0.029792pt;}
.ls0_c00055{letter-spacing:0.032064pt;}
.ls10_c00055{letter-spacing:0.034048pt;}
.ls5_c00055{letter-spacing:0.034720pt;}
.ls13_c00055{letter-spacing:0.038304pt;}
.ls6_c00055{letter-spacing:0.038400pt;}
.ls1b_c00055{letter-spacing:0.048672pt;}
.lsf_c00055{letter-spacing:0.051072pt;}
.ls12_c00055{letter-spacing:0.055328pt;}
.ls11_c00055{letter-spacing:0.067520pt;}
.ls9_c00055{letter-spacing:0.092480pt;}
.lsd_c00055{letter-spacing:0.168320pt;}
.ls3_c00055{letter-spacing:0.192000pt;}
.lsa_c00055{letter-spacing:0.304128pt;}
.ls4_c00055{letter-spacing:31.248000pt;}
.ws3_c00055{word-spacing:-17.394720pt;}
.ws2_c00055{word-spacing:-17.346112pt;}
.ws4_c00055{word-spacing:-17.283616pt;}
.ws5_c00055{word-spacing:-16.038400pt;}
.ws1_c00055{word-spacing:-15.980800pt;}
.ws8_c00055{word-spacing:-11.840192pt;}
.ws6_c00055{word-spacing:-9.911808pt;}
.ws9_c00055{word-spacing:-9.607680pt;}
.ws7_c00055{word-spacing:-9.604224pt;}
.ws0_c00055{word-spacing:-9.408672pt;}
.ws33_c00055{word-spacing:-0.034048pt;}
.ws3f_c00055{word-spacing:-0.021280pt;}
.ws2e_c00055{word-spacing:-0.012768pt;}
.ws2d_c00055{word-spacing:-0.004256pt;}
.wsd_c00055{word-spacing:0.000000pt;}
.ws2c_c00055{word-spacing:0.004256pt;}
.ws34_c00055{word-spacing:0.008512pt;}
.ws17_c00055{word-spacing:0.019200pt;}
.ws2b_c00055{word-spacing:0.044800pt;}
.wsa_c00055{word-spacing:0.048096pt;}
.wse_c00055{word-spacing:0.064000pt;}
.wsb_c00055{word-spacing:0.096192pt;}
.wsc_c00055{word-spacing:0.122912pt;}
.ws18_c00055{word-spacing:0.236800pt;}
.ws1b_c00055{word-spacing:1.305600pt;}
.ws3c_c00055{word-spacing:1.561952pt;}
.ws3b_c00055{word-spacing:1.587488pt;}
.ws3a_c00055{word-spacing:1.603584pt;}
.ws39_c00055{word-spacing:1.604512pt;}
.ws15_c00055{word-spacing:1.612800pt;}
.ws14_c00055{word-spacing:1.651200pt;}
.ws31_c00055{word-spacing:1.906688pt;}
.ws30_c00055{word-spacing:1.915200pt;}
.ws2f_c00055{word-spacing:1.923712pt;}
.ws32_c00055{word-spacing:1.927968pt;}
.ws1d_c00055{word-spacing:2.246400pt;}
.ws1e_c00055{word-spacing:2.291200pt;}
.ws1c_c00055{word-spacing:2.368000pt;}
.ws3e_c00055{word-spacing:2.536576pt;}
.ws3d_c00055{word-spacing:2.545088pt;}
.ws29_c00055{word-spacing:3.193600pt;}
.ws2a_c00055{word-spacing:3.206400pt;}
.ws19_c00055{word-spacing:3.526400pt;}
.ws22_c00055{word-spacing:3.532800pt;}
.ws1a_c00055{word-spacing:3.635200pt;}
.ws24_c00055{word-spacing:4.473600pt;}
.ws23_c00055{word-spacing:4.486400pt;}
.ws27_c00055{word-spacing:4.505600pt;}
.ws28_c00055{word-spacing:4.563200pt;}
.ws20_c00055{word-spacing:6.387200pt;}
.ws1f_c00055{word-spacing:6.483200pt;}
.ws16_c00055{word-spacing:8.646400pt;}
.wsf_c00055{word-spacing:8.672000pt;}
.ws38_c00055{word-spacing:10.218656pt;}
.ws37_c00055{word-spacing:10.222912pt;}
.ws36_c00055{word-spacing:10.227168pt;}
.ws35_c00055{word-spacing:10.244192pt;}
.ws12_c00055{word-spacing:13.177600pt;}
.ws13_c00055{word-spacing:13.235200pt;}
.ws25_c00055{word-spacing:15.699200pt;}
.ws26_c00055{word-spacing:15.731200pt;}
.ws10_c00055{word-spacing:20.140800pt;}
.ws11_c00055{word-spacing:20.422400pt;}
.ws21_c00055{word-spacing:40.070400pt;}
._0_c00055{margin-left:-1.015360pt;}
._1_c00055{width:0.928000pt;}
._2_c00055{width:2.234208pt;}
.fs6_c00055{font-size:34.560000pt;}
.fs3_c00055{font-size:37.440000pt;}
.fs5_c00055{font-size:42.560000pt;}
.fs2_c00055{font-size:48.000000pt;}
.fs0_c00055{font-size:53.440000pt;}
.fs1_c00055{font-size:64.000000pt;}
.fs4_c00055{font-size:69.440000pt;}
.y0_c00055{bottom:0.000000pt;}
.y3_c00055{bottom:51.067067pt;}
.y4_c00055{bottom:54.587067pt;}
.y27_c00055{bottom:101.069947pt;}
.y26_c00055{bottom:113.305947pt;}
.y25_c00055{bottom:125.629440pt;}
.y24_c00055{bottom:141.866080pt;}
.y23_c00055{bottom:154.193307pt;}
.y22_c00055{bottom:170.429947pt;}
.y21_c00055{bottom:182.591467pt;}
.y20_c00055{bottom:194.990427pt;}
.y1f_c00055{bottom:211.232027pt;}
.y1e_c00055{bottom:227.468667pt;}
.y1d_c00055{bottom:243.790427pt;}
.y1c_c00055{bottom:260.027067pt;}
.y1b_c00055{bottom:273.547067pt;}
.y1a_c00055{bottom:291.947067pt;}
.y19_c00055{bottom:310.347200pt;}
.y18_c00055{bottom:390.427200pt;}
.y17_c00055{bottom:420.987067pt;}
.y16_c00055{bottom:451.627067pt;}
.y15_c00055{bottom:482.187067pt;}
.y14_c00055{bottom:512.827067pt;}
.y13_c00055{bottom:543.387067pt;}
.y12_c00055{bottom:583.467067pt;}
.y11_c00055{bottom:639.147067pt;}
.y10_c00055{bottom:669.787067pt;}
.yf_c00055{bottom:700.347067pt;}
.ye_c00055{bottom:730.987067pt;}
.yd_c00055{bottom:761.547067pt;}
.yc_c00055{bottom:792.187067pt;}
.yb_c00055{bottom:830.747067pt;}
.ya_c00055{bottom:861.387067pt;}
.y9_c00055{bottom:891.947067pt;}
.y8_c00055{bottom:922.587067pt;}
.y7_c00055{bottom:953.147067pt;}
.y6_c00055{bottom:983.787067pt;}
.y5_c00055{bottom:1014.347067pt;}
.y2_c00055{bottom:1043.387067pt;}
.y1_c00055{bottom:1063.867067pt;}
.h2_c00055{height:42.656250pt;}
.h7_c00055{height:44.388750pt;}
.h1_c00055{height:44.724687pt;}
.h3_c00055{height:50.062500pt;}
.h4_c00055{height:53.562500pt;}
.h5_c00055{height:57.894062pt;}
.h6_c00055{height:72.423750pt;}
.h0_c00055{height:1122.666667pt;}
.w1_c00055{width:793.333333pt;}
.w0_c00055{width:793.626667pt;}
.x0_c00055{left:0.000000pt;}
.x2_c00055{left:113.440000pt;}
.x6_c00055{left:125.433760pt;}
.x1_c00055{left:129.280000pt;}
.x5_c00055{left:160.720000pt;}
.x4_c00055{left:390.240000pt;}
.x3_c00055{left:396.880000pt;}
}





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

.ir_c00056:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00056;src:url('chunks/assets/font_e6498c03592126b1b73e45f3.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.100098;font-style:normal;font-weight:normal;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_992f1170e0b12759b76baa6d.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;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_c00056;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00056;src:url('chunks/assets/font_0af7302ec9742a1ae8c29284.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;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_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;}
.v1_c00056{vertical-align:15.840000px;}
.v2_c00056{vertical-align:29.880000px;}
.ls14_c00056{letter-spacing:-0.151200px;}
.ls1a_c00056{letter-spacing:-0.028800px;}
.ls15_c00056{letter-spacing:-0.021600px;}
.ls23_c00056{letter-spacing:-0.019152px;}
.ls22_c00056{letter-spacing:-0.015552px;}
.ls19_c00056{letter-spacing:-0.014400px;}
.ls20_c00056{letter-spacing:-0.011664px;}
.ls21_c00056{letter-spacing:-0.009576px;}
.ls1f_c00056{letter-spacing:-0.007776px;}
.ls16_c00056{letter-spacing:-0.007200px;}
.ls1e_c00056{letter-spacing:-0.003888px;}
.ls13_c00056{letter-spacing:0.000000px;}
.ls5_c00056{letter-spacing:0.014364px;}
.ls4_c00056{letter-spacing:0.014400px;}
.lsf_c00056{letter-spacing:0.018720px;}
.ls8_c00056{letter-spacing:0.019152px;}
.ls3_c00056{letter-spacing:0.021600px;}
.lsd_c00056{letter-spacing:0.023940px;}
.ls2_c00056{letter-spacing:0.028800px;}
.lsc_c00056{letter-spacing:0.033516px;}
.ls1d_c00056{letter-spacing:0.036000px;}
.lsb_c00056{letter-spacing:0.038304px;}
.ls6_c00056{letter-spacing:0.043092px;}
.ls1c_c00056{letter-spacing:0.043200px;}
.ls24_c00056{letter-spacing:0.047880px;}
.ls0_c00056{letter-spacing:0.048096px;}
.ls1b_c00056{letter-spacing:0.050400px;}
.ls17_c00056{letter-spacing:0.054756px;}
.ls12_c00056{letter-spacing:0.062244px;}
.ls10_c00056{letter-spacing:0.071820px;}
.ls11_c00056{letter-spacing:0.086184px;}
.ls7_c00056{letter-spacing:0.090972px;}
.ls18_c00056{letter-spacing:0.093600px;}
.lsa_c00056{letter-spacing:0.104040px;}
.ls25_c00056{letter-spacing:0.346032px;}
.ls9_c00056{letter-spacing:0.350640px;}
.lse_c00056{letter-spacing:2.871360px;}
.ls1_c00056{letter-spacing:1227.240000px;}
.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;}
}
.ws1_c00056{word-spacing:-10.804752px;}
.ws2_c00056{word-spacing:-10.796976px;}
.ws3_c00056{word-spacing:-10.793088px;}
.ws0_c00056{word-spacing:-10.584756px;}
.ws2e_c00056{word-spacing:-0.071820px;}
.ws2d_c00056{word-spacing:-0.023940px;}
.ws5_c00056{word-spacing:0.000000px;}
.ws2c_c00056{word-spacing:0.004788px;}
.wsa_c00056{word-spacing:0.007200px;}
.wse_c00056{word-spacing:0.014400px;}
.ws4_c00056{word-spacing:0.042084px;}
.ws26_c00056{word-spacing:0.057600px;}
.ws1b_c00056{word-spacing:0.064800px;}
.ws25_c00056{word-spacing:0.129600px;}
.ws36_c00056{word-spacing:0.689472px;}
.ws35_c00056{word-spacing:0.703836px;}
.ws9_c00056{word-spacing:0.741600px;}
.ws24_c00056{word-spacing:1.821600px;}
.ws23_c00056{word-spacing:1.879200px;}
.ws31_c00056{word-spacing:2.494548px;}
.ws34_c00056{word-spacing:2.499336px;}
.ws2f_c00056{word-spacing:2.518488px;}
.ws32_c00056{word-spacing:2.537640px;}
.ws38_c00056{word-spacing:2.853648px;}
.ws39_c00056{word-spacing:2.858436px;}
.ws37_c00056{word-spacing:2.872800px;}
.ws30_c00056{word-spacing:2.906316px;}
.ws33_c00056{word-spacing:2.911104px;}
.ws3d_c00056{word-spacing:3.892644px;}
.ws3f_c00056{word-spacing:3.954888px;}
.ws3e_c00056{word-spacing:4.275684px;}
.ws21_c00056{word-spacing:4.644000px;}
.ws20_c00056{word-spacing:4.737600px;}
.wsf_c00056{word-spacing:4.917600px;}
.ws11_c00056{word-spacing:4.946400px;}
.ws10_c00056{word-spacing:4.989600px;}
.ws22_c00056{word-spacing:5.421600px;}
.wsd_c00056{word-spacing:6.508800px;}
.wsc_c00056{word-spacing:6.552000px;}
.ws15_c00056{word-spacing:7.207200px;}
.ws16_c00056{word-spacing:7.236000px;}
.ws2b_c00056{word-spacing:7.257600px;}
.ws2a_c00056{word-spacing:7.293600px;}
.ws14_c00056{word-spacing:7.344000px;}
.ws19_c00056{word-spacing:8.287200px;}
.ws1f_c00056{word-spacing:9.331200px;}
.ws1e_c00056{word-spacing:9.381600px;}
.ws18_c00056{word-spacing:10.036800px;}
.ws17_c00056{word-spacing:10.087200px;}
.ws3b_c00056{word-spacing:10.796940px;}
.ws3a_c00056{word-spacing:10.801728px;}
.ws3c_c00056{word-spacing:11.103372px;}
.ws8_c00056{word-spacing:15.120000px;}
.ws7_c00056{word-spacing:15.213600px;}
.ws12_c00056{word-spacing:16.516800px;}
.ws13_c00056{word-spacing:16.560000px;}
.ws1d_c00056{word-spacing:20.865600px;}
.ws1c_c00056{word-spacing:20.894400px;}
.ws28_c00056{word-spacing:23.536800px;}
.ws29_c00056{word-spacing:23.558400px;}
.ws1a_c00056{word-spacing:24.494400px;}
.ws27_c00056{word-spacing:25.905600px;}
.wsb_c00056{word-spacing:29.880000px;}
.ws6_c00056{word-spacing:32.040000px;}
._0_c00056{margin-left:-1.322640px;}
._1_c00056{width:1.008000px;}
._2_c00056{width:2.508912px;}
.fc0_c00056{color:rgb(0,0,0);}
.fs5_c00056{font-size:38.880000px;}
.fs3_c00056{font-size:42.120000px;}
.fs4_c00056{font-size:47.880000px;}
.fs1_c00056{font-size:54.000000px;}
.fs0_c00056{font-size:60.120000px;}
.fs2_c00056{font-size:72.000000px;}
.y0_c00056{bottom:0.000000px;}
.y3_c00056{bottom:57.450450px;}
.y26_c00056{bottom:113.698470px;}
.y25_c00056{bottom:132.071970px;}
.y24_c00056{bottom:150.338190px;}
.y23_c00056{bottom:164.103690px;}
.y22_c00056{bottom:177.964950px;}
.y21_c00056{bottom:191.733690px;}
.y20_c00056{bottom:205.499190px;}
.y1f_c00056{bottom:219.364230px;}
.y1e_c00056{bottom:237.630450px;}
.y1d_c00056{bottom:252.840450px;}
.y1c_c00056{bottom:273.540450px;}
.y1b_c00056{bottom:294.240600px;}
.y1a_c00056{bottom:347.790600px;}
.y19_c00056{bottom:382.260600px;}
.y18_c00056{bottom:416.640600px;}
.y17_c00056{bottom:460.110450px;}
.y16_c00056{bottom:494.490450px;}
.y15_c00056{bottom:528.960450px;}
.y14_c00056{bottom:563.340450px;}
.y13_c00056{bottom:597.810450px;}
.y12_c00056{bottom:632.190450px;}
.y11_c00056{bottom:675.660450px;}
.y10_c00056{bottom:710.040450px;}
.yf_c00056{bottom:744.510450px;}
.ye_c00056{bottom:778.890450px;}
.yd_c00056{bottom:813.360450px;}
.yc_c00056{bottom:847.740450px;}
.yb_c00056{bottom:882.210450px;}
.ya_c00056{bottom:925.590450px;}
.y9_c00056{bottom:960.060450px;}
.y8_c00056{bottom:994.440450px;}
.y7_c00056{bottom:1037.910450px;}
.y6_c00056{bottom:1072.290450px;}
.y5_c00056{bottom:1106.760450px;}
.y4_c00056{bottom:1141.140450px;}
.y2_c00056{bottom:1177.860450px;}
.y1_c00056{bottom:1196.850450px;}
.h6_c00056{height:47.988281px;}
.h7_c00056{height:49.937344px;}
.h8_c00056{height:49.945264px;}
.h1_c00056{height:50.315273px;}
.h2_c00056{height:56.320312px;}
.h4_c00056{height:60.257812px;}
.h5_c00056{height:65.130820px;}
.h3_c00056{height:72.160312px;}
.h0_c00056{height:1263.000000px;}
.w1_c00056{width:892.500000px;}
.w0_c00056{width:892.830000px;}
.x0_c00056{left:0.000000px;}
.x1_c00056{left:127.620000px;}
.x3_c00056{left:141.119460px;}
.x2_c00056{left:180.810000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.v1_c00056{vertical-align:14.080000pt;}
.v2_c00056{vertical-align:26.560000pt;}
.ls14_c00056{letter-spacing:-0.134400pt;}
.ls1a_c00056{letter-spacing:-0.025600pt;}
.ls15_c00056{letter-spacing:-0.019200pt;}
.ls23_c00056{letter-spacing:-0.017024pt;}
.ls22_c00056{letter-spacing:-0.013824pt;}
.ls19_c00056{letter-spacing:-0.012800pt;}
.ls20_c00056{letter-spacing:-0.010368pt;}
.ls21_c00056{letter-spacing:-0.008512pt;}
.ls1f_c00056{letter-spacing:-0.006912pt;}
.ls16_c00056{letter-spacing:-0.006400pt;}
.ls1e_c00056{letter-spacing:-0.003456pt;}
.ls13_c00056{letter-spacing:0.000000pt;}
.ls5_c00056{letter-spacing:0.012768pt;}
.ls4_c00056{letter-spacing:0.012800pt;}
.lsf_c00056{letter-spacing:0.016640pt;}
.ls8_c00056{letter-spacing:0.017024pt;}
.ls3_c00056{letter-spacing:0.019200pt;}
.lsd_c00056{letter-spacing:0.021280pt;}
.ls2_c00056{letter-spacing:0.025600pt;}
.lsc_c00056{letter-spacing:0.029792pt;}
.ls1d_c00056{letter-spacing:0.032000pt;}
.lsb_c00056{letter-spacing:0.034048pt;}
.ls6_c00056{letter-spacing:0.038304pt;}
.ls1c_c00056{letter-spacing:0.038400pt;}
.ls24_c00056{letter-spacing:0.042560pt;}
.ls0_c00056{letter-spacing:0.042752pt;}
.ls1b_c00056{letter-spacing:0.044800pt;}
.ls17_c00056{letter-spacing:0.048672pt;}
.ls12_c00056{letter-spacing:0.055328pt;}
.ls10_c00056{letter-spacing:0.063840pt;}
.ls11_c00056{letter-spacing:0.076608pt;}
.ls7_c00056{letter-spacing:0.080864pt;}
.ls18_c00056{letter-spacing:0.083200pt;}
.lsa_c00056{letter-spacing:0.092480pt;}
.ls25_c00056{letter-spacing:0.307584pt;}
.ls9_c00056{letter-spacing:0.311680pt;}
.lse_c00056{letter-spacing:2.552320pt;}
.ls1_c00056{letter-spacing:1090.880000pt;}
.ws1_c00056{word-spacing:-9.604224pt;}
.ws2_c00056{word-spacing:-9.597312pt;}
.ws3_c00056{word-spacing:-9.593856pt;}
.ws0_c00056{word-spacing:-9.408672pt;}
.ws2e_c00056{word-spacing:-0.063840pt;}
.ws2d_c00056{word-spacing:-0.021280pt;}
.ws5_c00056{word-spacing:0.000000pt;}
.ws2c_c00056{word-spacing:0.004256pt;}
.wsa_c00056{word-spacing:0.006400pt;}
.wse_c00056{word-spacing:0.012800pt;}
.ws4_c00056{word-spacing:0.037408pt;}
.ws26_c00056{word-spacing:0.051200pt;}
.ws1b_c00056{word-spacing:0.057600pt;}
.ws25_c00056{word-spacing:0.115200pt;}
.ws36_c00056{word-spacing:0.612864pt;}
.ws35_c00056{word-spacing:0.625632pt;}
.ws9_c00056{word-spacing:0.659200pt;}
.ws24_c00056{word-spacing:1.619200pt;}
.ws23_c00056{word-spacing:1.670400pt;}
.ws31_c00056{word-spacing:2.217376pt;}
.ws34_c00056{word-spacing:2.221632pt;}
.ws2f_c00056{word-spacing:2.238656pt;}
.ws32_c00056{word-spacing:2.255680pt;}
.ws38_c00056{word-spacing:2.536576pt;}
.ws39_c00056{word-spacing:2.540832pt;}
.ws37_c00056{word-spacing:2.553600pt;}
.ws30_c00056{word-spacing:2.583392pt;}
.ws33_c00056{word-spacing:2.587648pt;}
.ws3d_c00056{word-spacing:3.460128pt;}
.ws3f_c00056{word-spacing:3.515456pt;}
.ws3e_c00056{word-spacing:3.800608pt;}
.ws21_c00056{word-spacing:4.128000pt;}
.ws20_c00056{word-spacing:4.211200pt;}
.wsf_c00056{word-spacing:4.371200pt;}
.ws11_c00056{word-spacing:4.396800pt;}
.ws10_c00056{word-spacing:4.435200pt;}
.ws22_c00056{word-spacing:4.819200pt;}
.wsd_c00056{word-spacing:5.785600pt;}
.wsc_c00056{word-spacing:5.824000pt;}
.ws15_c00056{word-spacing:6.406400pt;}
.ws16_c00056{word-spacing:6.432000pt;}
.ws2b_c00056{word-spacing:6.451200pt;}
.ws2a_c00056{word-spacing:6.483200pt;}
.ws14_c00056{word-spacing:6.528000pt;}
.ws19_c00056{word-spacing:7.366400pt;}
.ws1f_c00056{word-spacing:8.294400pt;}
.ws1e_c00056{word-spacing:8.339200pt;}
.ws18_c00056{word-spacing:8.921600pt;}
.ws17_c00056{word-spacing:8.966400pt;}
.ws3b_c00056{word-spacing:9.597280pt;}
.ws3a_c00056{word-spacing:9.601536pt;}
.ws3c_c00056{word-spacing:9.869664pt;}
.ws8_c00056{word-spacing:13.440000pt;}
.ws7_c00056{word-spacing:13.523200pt;}
.ws12_c00056{word-spacing:14.681600pt;}
.ws13_c00056{word-spacing:14.720000pt;}
.ws1d_c00056{word-spacing:18.547200pt;}
.ws1c_c00056{word-spacing:18.572800pt;}
.ws28_c00056{word-spacing:20.921600pt;}
.ws29_c00056{word-spacing:20.940800pt;}
.ws1a_c00056{word-spacing:21.772800pt;}
.ws27_c00056{word-spacing:23.027200pt;}
.wsb_c00056{word-spacing:26.560000pt;}
.ws6_c00056{word-spacing:28.480000pt;}
._0_c00056{margin-left:-1.175680pt;}
._1_c00056{width:0.896000pt;}
._2_c00056{width:2.230144pt;}
.fs5_c00056{font-size:34.560000pt;}
.fs3_c00056{font-size:37.440000pt;}
.fs4_c00056{font-size:42.560000pt;}
.fs1_c00056{font-size:48.000000pt;}
.fs0_c00056{font-size:53.440000pt;}
.fs2_c00056{font-size:64.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y3_c00056{bottom:51.067067pt;}
.y26_c00056{bottom:101.065307pt;}
.y25_c00056{bottom:117.397307pt;}
.y24_c00056{bottom:133.633947pt;}
.y23_c00056{bottom:145.869947pt;}
.y22_c00056{bottom:158.191067pt;}
.y21_c00056{bottom:170.429947pt;}
.y20_c00056{bottom:182.665947pt;}
.y1f_c00056{bottom:194.990427pt;}
.y1e_c00056{bottom:211.227067pt;}
.y1d_c00056{bottom:224.747067pt;}
.y1c_c00056{bottom:243.147067pt;}
.y1b_c00056{bottom:261.547200pt;}
.y1a_c00056{bottom:309.147200pt;}
.y19_c00056{bottom:339.787200pt;}
.y18_c00056{bottom:370.347200pt;}
.y17_c00056{bottom:408.987067pt;}
.y16_c00056{bottom:439.547067pt;}
.y15_c00056{bottom:470.187067pt;}
.y14_c00056{bottom:500.747067pt;}
.y13_c00056{bottom:531.387067pt;}
.y12_c00056{bottom:561.947067pt;}
.y11_c00056{bottom:600.587067pt;}
.y10_c00056{bottom:631.147067pt;}
.yf_c00056{bottom:661.787067pt;}
.ye_c00056{bottom:692.347067pt;}
.yd_c00056{bottom:722.987067pt;}
.yc_c00056{bottom:753.547067pt;}
.yb_c00056{bottom:784.187067pt;}
.ya_c00056{bottom:822.747067pt;}
.y9_c00056{bottom:853.387067pt;}
.y8_c00056{bottom:883.947067pt;}
.y7_c00056{bottom:922.587067pt;}
.y6_c00056{bottom:953.147067pt;}
.y5_c00056{bottom:983.787067pt;}
.y4_c00056{bottom:1014.347067pt;}
.y2_c00056{bottom:1046.987067pt;}
.y1_c00056{bottom:1063.867067pt;}
.h6_c00056{height:42.656250pt;}
.h7_c00056{height:44.388750pt;}
.h8_c00056{height:44.395790pt;}
.h1_c00056{height:44.724687pt;}
.h2_c00056{height:50.062500pt;}
.h4_c00056{height:53.562500pt;}
.h5_c00056{height:57.894063pt;}
.h3_c00056{height:64.142500pt;}
.h0_c00056{height:1122.666667pt;}
.w1_c00056{width:793.333333pt;}
.w0_c00056{width:793.626667pt;}
.x0_c00056{left:0.000000pt;}
.x1_c00056{left:113.440000pt;}
.x3_c00056{left:125.439520pt;}
.x2_c00056{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_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_48f4c04a3006b242ce448803.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_4ee02212681fabb65f89c4dd.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00057;src:url('chunks/assets/font_6a847e3aa7f6c21d0b54914d.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;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_c00057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.v1_c00057{vertical-align:29.880000px;}
.ls11_c00057{letter-spacing:-0.151200px;}
.lsf_c00057{letter-spacing:-0.048096px;}
.ls17_c00057{letter-spacing:-0.036000px;}
.ls16_c00057{letter-spacing:-0.028800px;}
.ls12_c00057{letter-spacing:-0.021600px;}
.lse_c00057{letter-spacing:-0.018036px;}
.ls15_c00057{letter-spacing:-0.014400px;}
.ls18_c00057{letter-spacing:-0.007200px;}
.ls19_c00057{letter-spacing:-0.003888px;}
.ls10_c00057{letter-spacing:0.000000px;}
.ls4_c00057{letter-spacing:0.007200px;}
.ls6_c00057{letter-spacing:0.014364px;}
.ls3_c00057{letter-spacing:0.014400px;}
.ls1_c00057{letter-spacing:0.021600px;}
.ls9_c00057{letter-spacing:0.028728px;}
.lsc_c00057{letter-spacing:0.033516px;}
.ls5_c00057{letter-spacing:0.036000px;}
.ls0_c00057{letter-spacing:0.036072px;}
.lsb_c00057{letter-spacing:0.038304px;}
.ls7_c00057{letter-spacing:0.043092px;}
.ls2_c00057{letter-spacing:0.043200px;}
.ls13_c00057{letter-spacing:0.054756px;}
.lsa_c00057{letter-spacing:0.057456px;}
.lsd_c00057{letter-spacing:0.071820px;}
.ls8_c00057{letter-spacing:0.081396px;}
.ls14_c00057{letter-spacing:0.093600px;}
.ls1a_c00057{letter-spacing:0.357696px;}
.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;}
}
.ws2_c00057{word-spacing:-13.310640px;}
.ws3_c00057{word-spacing:-11.166336px;}
.ws1_c00057{word-spacing:-10.804752px;}
.ws0_c00057{word-spacing:-10.584756px;}
.ws29_c00057{word-spacing:-0.062244px;}
.ws33_c00057{word-spacing:-0.052668px;}
.ws28_c00057{word-spacing:-0.023940px;}
.ws7_c00057{word-spacing:0.000000px;}
.ws27_c00057{word-spacing:0.004788px;}
.ws22_c00057{word-spacing:0.007200px;}
.wsa_c00057{word-spacing:0.021600px;}
.ws4_c00057{word-spacing:0.054108px;}
.ws13_c00057{word-spacing:0.072000px;}
.ws5_c00057{word-spacing:0.108216px;}
.ws6_c00057{word-spacing:0.138276px;}
.ws2e_c00057{word-spacing:0.335160px;}
.ws2f_c00057{word-spacing:0.344736px;}
.ws32_c00057{word-spacing:0.363888px;}
.ws15_c00057{word-spacing:0.727200px;}
.ws16_c00057{word-spacing:0.763200px;}
.ws23_c00057{word-spacing:1.447200px;}
.ws1b_c00057{word-spacing:1.461600px;}
.ws1c_c00057{word-spacing:1.519200px;}
.ws1d_c00057{word-spacing:1.562400px;}
.wsb_c00057{word-spacing:1.821600px;}
.wsc_c00057{word-spacing:1.886400px;}
.ws12_c00057{word-spacing:2.138400px;}
.ws11_c00057{word-spacing:2.174400px;}
.ws31_c00057{word-spacing:2.839284px;}
.ws30_c00057{word-spacing:2.863224px;}
.ws1a_c00057{word-spacing:3.290400px;}
.wsd_c00057{word-spacing:5.716800px;}
.ws18_c00057{word-spacing:6.134400px;}
.ws1f_c00057{word-spacing:6.796800px;}
.ws1e_c00057{word-spacing:6.890400px;}
.ws19_c00057{word-spacing:7.192800px;}
.ws2c_c00057{word-spacing:8.240148px;}
.ws2d_c00057{word-spacing:8.259300px;}
.ws2b_c00057{word-spacing:8.268876px;}
.ws2a_c00057{word-spacing:8.283240px;}
.wsf_c00057{word-spacing:10.425600px;}
.wse_c00057{word-spacing:10.526400px;}
.ws10_c00057{word-spacing:10.706400px;}
.ws25_c00057{word-spacing:11.584800px;}
.ws26_c00057{word-spacing:11.635200px;}
.ws14_c00057{word-spacing:12.254400px;}
.ws21_c00057{word-spacing:12.650400px;}
.ws20_c00057{word-spacing:12.801600px;}
.ws9_c00057{word-spacing:15.796800px;}
.ws8_c00057{word-spacing:15.818400px;}
.ws17_c00057{word-spacing:17.647200px;}
.ws24_c00057{word-spacing:24.134400px;}
._0_c00057{margin-left:-1.142280px;}
._1_c00057{width:1.224000px;}
._2_c00057{width:8.721180px;}
.fc0_c00057{color:rgb(0,0,0);}
.fs5_c00057{font-size:38.880000px;}
.fs3_c00057{font-size:42.120000px;}
.fs4_c00057{font-size:47.880000px;}
.fs2_c00057{font-size:54.000000px;}
.fs0_c00057{font-size:60.120000px;}
.fs1_c00057{font-size:72.000000px;}
.y0_c00057{bottom:0.000000px;}
.y3_c00057{bottom:57.450450px;}
.y4_c00057{bottom:61.410450px;}
.y25_c00057{bottom:113.698470px;}
.y24_c00057{bottom:132.064230px;}
.y23_c00057{bottom:150.330000px;}
.y22_c00057{bottom:168.596220px;}
.y21_c00057{bottom:182.457480px;}
.y20_c00057{bottom:196.139190px;}
.y1f_c00057{bottom:209.998470px;}
.y1e_c00057{bottom:228.360450px;}
.y1d_c00057{bottom:243.570450px;}
.y1c_c00057{bottom:264.270450px;}
.y1b_c00057{bottom:284.970450px;}
.y1a_c00057{bottom:382.260450px;}
.y19_c00057{bottom:416.640450px;}
.y18_c00057{bottom:451.110450px;}
.y17_c00057{bottom:485.490450px;}
.y16_c00057{bottom:528.960450px;}
.y15_c00057{bottom:563.340450px;}
.y14_c00057{bottom:597.810450px;}
.y13_c00057{bottom:632.190450px;}
.y12_c00057{bottom:666.660450px;}
.y11_c00057{bottom:710.040450px;}
.y10_c00057{bottom:744.510450px;}
.yf_c00057{bottom:778.890450px;}
.ye_c00057{bottom:813.360450px;}
.yd_c00057{bottom:847.740450px;}
.yc_c00057{bottom:882.210450px;}
.yb_c00057{bottom:925.590450px;}
.ya_c00057{bottom:960.060450px;}
.y9_c00057{bottom:994.440450px;}
.y8_c00057{bottom:1028.910450px;}
.y7_c00057{bottom:1063.290450px;}
.y6_c00057{bottom:1106.760450px;}
.y5_c00057{bottom:1141.140450px;}
.y2_c00057{bottom:1173.810450px;}
.y1_c00057{bottom:1196.850450px;}
.h2_c00057{height:47.988281px;}
.h6_c00057{height:49.937344px;}
.h8_c00057{height:49.939144px;}
.h7_c00057{height:49.945264px;}
.h1_c00057{height:50.315273px;}
.h3_c00057{height:56.320312px;}
.h4_c00057{height:60.257812px;}
.h5_c00057{height:65.130820px;}
.h0_c00057{height:1263.000000px;}
.w1_c00057{width:892.500000px;}
.w0_c00057{width:892.830000px;}
.x0_c00057{left:0.000000px;}
.x2_c00057{left:127.620000px;}
.x6_c00057{left:141.133320px;}
.x1_c00057{left:145.440000px;}
.x5_c00057{left:180.810000px;}
.x4_c00057{left:439.020000px;}
.x3_c00057{left:446.490000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.v1_c00057{vertical-align:26.560000pt;}
.ls11_c00057{letter-spacing:-0.134400pt;}
.lsf_c00057{letter-spacing:-0.042752pt;}
.ls17_c00057{letter-spacing:-0.032000pt;}
.ls16_c00057{letter-spacing:-0.025600pt;}
.ls12_c00057{letter-spacing:-0.019200pt;}
.lse_c00057{letter-spacing:-0.016032pt;}
.ls15_c00057{letter-spacing:-0.012800pt;}
.ls18_c00057{letter-spacing:-0.006400pt;}
.ls19_c00057{letter-spacing:-0.003456pt;}
.ls10_c00057{letter-spacing:0.000000pt;}
.ls4_c00057{letter-spacing:0.006400pt;}
.ls6_c00057{letter-spacing:0.012768pt;}
.ls3_c00057{letter-spacing:0.012800pt;}
.ls1_c00057{letter-spacing:0.019200pt;}
.ls9_c00057{letter-spacing:0.025536pt;}
.lsc_c00057{letter-spacing:0.029792pt;}
.ls5_c00057{letter-spacing:0.032000pt;}
.ls0_c00057{letter-spacing:0.032064pt;}
.lsb_c00057{letter-spacing:0.034048pt;}
.ls7_c00057{letter-spacing:0.038304pt;}
.ls2_c00057{letter-spacing:0.038400pt;}
.ls13_c00057{letter-spacing:0.048672pt;}
.lsa_c00057{letter-spacing:0.051072pt;}
.lsd_c00057{letter-spacing:0.063840pt;}
.ls8_c00057{letter-spacing:0.072352pt;}
.ls14_c00057{letter-spacing:0.083200pt;}
.ls1a_c00057{letter-spacing:0.317952pt;}
.ws2_c00057{word-spacing:-11.831680pt;}
.ws3_c00057{word-spacing:-9.925632pt;}
.ws1_c00057{word-spacing:-9.604224pt;}
.ws0_c00057{word-spacing:-9.408672pt;}
.ws29_c00057{word-spacing:-0.055328pt;}
.ws33_c00057{word-spacing:-0.046816pt;}
.ws28_c00057{word-spacing:-0.021280pt;}
.ws7_c00057{word-spacing:0.000000pt;}
.ws27_c00057{word-spacing:0.004256pt;}
.ws22_c00057{word-spacing:0.006400pt;}
.wsa_c00057{word-spacing:0.019200pt;}
.ws4_c00057{word-spacing:0.048096pt;}
.ws13_c00057{word-spacing:0.064000pt;}
.ws5_c00057{word-spacing:0.096192pt;}
.ws6_c00057{word-spacing:0.122912pt;}
.ws2e_c00057{word-spacing:0.297920pt;}
.ws2f_c00057{word-spacing:0.306432pt;}
.ws32_c00057{word-spacing:0.323456pt;}
.ws15_c00057{word-spacing:0.646400pt;}
.ws16_c00057{word-spacing:0.678400pt;}
.ws23_c00057{word-spacing:1.286400pt;}
.ws1b_c00057{word-spacing:1.299200pt;}
.ws1c_c00057{word-spacing:1.350400pt;}
.ws1d_c00057{word-spacing:1.388800pt;}
.wsb_c00057{word-spacing:1.619200pt;}
.wsc_c00057{word-spacing:1.676800pt;}
.ws12_c00057{word-spacing:1.900800pt;}
.ws11_c00057{word-spacing:1.932800pt;}
.ws31_c00057{word-spacing:2.523808pt;}
.ws30_c00057{word-spacing:2.545088pt;}
.ws1a_c00057{word-spacing:2.924800pt;}
.wsd_c00057{word-spacing:5.081600pt;}
.ws18_c00057{word-spacing:5.452800pt;}
.ws1f_c00057{word-spacing:6.041600pt;}
.ws1e_c00057{word-spacing:6.124800pt;}
.ws19_c00057{word-spacing:6.393600pt;}
.ws2c_c00057{word-spacing:7.324576pt;}
.ws2d_c00057{word-spacing:7.341600pt;}
.ws2b_c00057{word-spacing:7.350112pt;}
.ws2a_c00057{word-spacing:7.362880pt;}
.wsf_c00057{word-spacing:9.267200pt;}
.wse_c00057{word-spacing:9.356800pt;}
.ws10_c00057{word-spacing:9.516800pt;}
.ws25_c00057{word-spacing:10.297600pt;}
.ws26_c00057{word-spacing:10.342400pt;}
.ws14_c00057{word-spacing:10.892800pt;}
.ws21_c00057{word-spacing:11.244800pt;}
.ws20_c00057{word-spacing:11.379200pt;}
.ws9_c00057{word-spacing:14.041600pt;}
.ws8_c00057{word-spacing:14.060800pt;}
.ws17_c00057{word-spacing:15.686400pt;}
.ws24_c00057{word-spacing:21.452800pt;}
._0_c00057{margin-left:-1.015360pt;}
._1_c00057{width:1.088000pt;}
._2_c00057{width:7.752160pt;}
.fs5_c00057{font-size:34.560000pt;}
.fs3_c00057{font-size:37.440000pt;}
.fs4_c00057{font-size:42.560000pt;}
.fs2_c00057{font-size:48.000000pt;}
.fs0_c00057{font-size:53.440000pt;}
.fs1_c00057{font-size:64.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y3_c00057{bottom:51.067067pt;}
.y4_c00057{bottom:54.587067pt;}
.y25_c00057{bottom:101.065307pt;}
.y24_c00057{bottom:117.390427pt;}
.y23_c00057{bottom:133.626667pt;}
.y22_c00057{bottom:149.863307pt;}
.y21_c00057{bottom:162.184427pt;}
.y20_c00057{bottom:174.345947pt;}
.y1f_c00057{bottom:186.665307pt;}
.y1e_c00057{bottom:202.987067pt;}
.y1d_c00057{bottom:216.507067pt;}
.y1c_c00057{bottom:234.907067pt;}
.y1b_c00057{bottom:253.307067pt;}
.y1a_c00057{bottom:339.787067pt;}
.y19_c00057{bottom:370.347067pt;}
.y18_c00057{bottom:400.987067pt;}
.y17_c00057{bottom:431.547067pt;}
.y16_c00057{bottom:470.187067pt;}
.y15_c00057{bottom:500.747067pt;}
.y14_c00057{bottom:531.387067pt;}
.y13_c00057{bottom:561.947067pt;}
.y12_c00057{bottom:592.587067pt;}
.y11_c00057{bottom:631.147067pt;}
.y10_c00057{bottom:661.787067pt;}
.yf_c00057{bottom:692.347067pt;}
.ye_c00057{bottom:722.987067pt;}
.yd_c00057{bottom:753.547067pt;}
.yc_c00057{bottom:784.187067pt;}
.yb_c00057{bottom:822.747067pt;}
.ya_c00057{bottom:853.387067pt;}
.y9_c00057{bottom:883.947067pt;}
.y8_c00057{bottom:914.587067pt;}
.y7_c00057{bottom:945.147067pt;}
.y6_c00057{bottom:983.787067pt;}
.y5_c00057{bottom:1014.347067pt;}
.y2_c00057{bottom:1043.387067pt;}
.y1_c00057{bottom:1063.867067pt;}
.h2_c00057{height:42.656250pt;}
.h6_c00057{height:44.388750pt;}
.h8_c00057{height:44.390350pt;}
.h7_c00057{height:44.395790pt;}
.h1_c00057{height:44.724687pt;}
.h3_c00057{height:50.062500pt;}
.h4_c00057{height:53.562500pt;}
.h5_c00057{height:57.894063pt;}
.h0_c00057{height:1122.666667pt;}
.w1_c00057{width:793.333333pt;}
.w0_c00057{width:793.626667pt;}
.x0_c00057{left:0.000000pt;}
.x2_c00057{left:113.440000pt;}
.x6_c00057{left:125.451840pt;}
.x1_c00057{left:129.280000pt;}
.x5_c00057{left:160.720000pt;}
.x4_c00057{left:390.240000pt;}
.x3_c00057{left:396.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_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_083b44e823d01ac98e3add36.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.100098;font-style:normal;font-weight:normal;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_521921dff50086ffc52e4c23.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;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_c00058;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00058;src:url('chunks/assets/font_0178a89f14d86cda627fcabe.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:1.102051;font-style:normal;font-weight:normal;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_fc41ffb085b9c1faa5ce959f.woff2')format("woff");}.ff5_c00058{font-family:ff5_c00058;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_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;}
.v1_c00058{vertical-align:15.840000px;}
.v2_c00058{vertical-align:29.880000px;}
.lsa_c00058{letter-spacing:-0.151200px;}
.ls11_c00058{letter-spacing:-0.057600px;}
.lsc_c00058{letter-spacing:-0.036000px;}
.ls13_c00058{letter-spacing:-0.028800px;}
.ls12_c00058{letter-spacing:-0.021600px;}
.lsf_c00058{letter-spacing:-0.014400px;}
.lsd_c00058{letter-spacing:-0.007200px;}
.ls15_c00058{letter-spacing:-0.003888px;}
.ls9_c00058{letter-spacing:0.000000px;}
.ls3_c00058{letter-spacing:0.007200px;}
.ls6_c00058{letter-spacing:0.014364px;}
.ls4_c00058{letter-spacing:0.014400px;}
.ls5_c00058{letter-spacing:0.021600px;}
.ls10_c00058{letter-spacing:0.028800px;}
.ls8_c00058{letter-spacing:0.033516px;}
.lsb_c00058{letter-spacing:0.036000px;}
.ls2_c00058{letter-spacing:0.043200px;}
.ls0_c00058{letter-spacing:0.048096px;}
.lse_c00058{letter-spacing:0.054756px;}
.ls7_c00058{letter-spacing:0.071820px;}
.ls14_c00058{letter-spacing:0.093600px;}
.ls16_c00058{letter-spacing:0.357696px;}
.ls1_c00058{letter-spacing:1227.240000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00058{word-spacing:-18.043200px;}
.ws2_c00058{word-spacing:-17.942400px;}
.ws3_c00058{word-spacing:-13.310640px;}
.ws4_c00058{word-spacing:-11.166336px;}
.ws1_c00058{word-spacing:-10.584756px;}
.ws31_c00058{word-spacing:-0.052668px;}
.ws32_c00058{word-spacing:-0.014364px;}
.ws1b_c00058{word-spacing:-0.007200px;}
.ws6_c00058{word-spacing:0.000000px;}
.ws2f_c00058{word-spacing:0.004788px;}
.ws2e_c00058{word-spacing:0.021600px;}
.ws26_c00058{word-spacing:0.036000px;}
.ws5_c00058{word-spacing:0.042084px;}
.ws2a_c00058{word-spacing:0.050400px;}
.ws7_c00058{word-spacing:0.360000px;}
.ws30_c00058{word-spacing:0.363888px;}
.ws8_c00058{word-spacing:0.410400px;}
.ws2d_c00058{word-spacing:0.741600px;}
.ws24_c00058{word-spacing:1.108800px;}
.ws25_c00058{word-spacing:1.137600px;}
.ws12_c00058{word-spacing:1.425600px;}
.ws14_c00058{word-spacing:1.440000px;}
.wsb_c00058{word-spacing:1.447200px;}
.ws13_c00058{word-spacing:1.490400px;}
.ws23_c00058{word-spacing:1.540800px;}
.ws11_c00058{word-spacing:1.792800px;}
.ws10_c00058{word-spacing:1.807200px;}
.ws1c_c00058{word-spacing:3.240000px;}
.wsf_c00058{word-spacing:3.981600px;}
.wse_c00058{word-spacing:4.176000px;}
.wsa_c00058{word-spacing:4.298400px;}
.wsd_c00058{word-spacing:4.312800px;}
.ws9_c00058{word-spacing:4.406400px;}
.wsc_c00058{word-spacing:6.487200px;}
.ws29_c00058{word-spacing:7.596000px;}
.ws22_c00058{word-spacing:9.662400px;}
.ws21_c00058{word-spacing:9.734400px;}
.ws17_c00058{word-spacing:10.764000px;}
.ws28_c00058{word-spacing:10.821600px;}
.ws15_c00058{word-spacing:10.836000px;}
.ws16_c00058{word-spacing:10.857600px;}
.ws27_c00058{word-spacing:10.879200px;}
.ws1e_c00058{word-spacing:11.822400px;}
.ws1d_c00058{word-spacing:11.894400px;}
.ws1a_c00058{word-spacing:14.774400px;}
.ws2c_c00058{word-spacing:15.508800px;}
.ws1f_c00058{word-spacing:15.832800px;}
.ws20_c00058{word-spacing:15.890400px;}
.ws2b_c00058{word-spacing:18.720000px;}
.ws18_c00058{word-spacing:27.007200px;}
.ws19_c00058{word-spacing:27.014400px;}
._0_c00058{margin-left:-1.322640px;}
._1_c00058{width:1.008000px;}
.fc0_c00058{color:rgb(0,0,0);}
.fs5_c00058{font-size:38.880000px;}
.fs3_c00058{font-size:42.120000px;}
.fs4_c00058{font-size:47.880000px;}
.fs1_c00058{font-size:54.000000px;}
.fs0_c00058{font-size:60.120000px;}
.fs2_c00058{font-size:72.000000px;}
.y0_c00058{bottom:0.000000px;}
.y3_c00058{bottom:57.450450px;}
.y24_c00058{bottom:113.704230px;}
.y23_c00058{bottom:131.974230px;}
.y22_c00058{bottom:150.238470px;}
.y21_c00058{bottom:168.604380px;}
.y20_c00058{bottom:186.870600px;}
.y1f_c00058{bottom:202.080450px;}
.y1e_c00058{bottom:222.780450px;}
.y1d_c00058{bottom:243.480450px;}
.y1c_c00058{bottom:287.940600px;}
.y1b_c00058{bottom:322.410600px;}
.y1a_c00058{bottom:356.790600px;}
.y19_c00058{bottom:391.260600px;}
.y18_c00058{bottom:434.640600px;}
.y17_c00058{bottom:469.110450px;}
.y16_c00058{bottom:503.490450px;}
.y15_c00058{bottom:546.960450px;}
.y14_c00058{bottom:581.340450px;}
.y13_c00058{bottom:615.810450px;}
.y12_c00058{bottom:650.190450px;}
.y11_c00058{bottom:684.660450px;}
.y10_c00058{bottom:719.040450px;}
.yf_c00058{bottom:753.510450px;}
.ye_c00058{bottom:796.890450px;}
.yd_c00058{bottom:831.360450px;}
.yc_c00058{bottom:865.740450px;}
.yb_c00058{bottom:900.210450px;}
.ya_c00058{bottom:934.590450px;}
.y9_c00058{bottom:969.060450px;}
.y8_c00058{bottom:1003.440450px;}
.y7_c00058{bottom:1037.910450px;}
.y6_c00058{bottom:1072.290450px;}
.y5_c00058{bottom:1106.760450px;}
.y4_c00058{bottom:1141.140450px;}
.y2_c00058{bottom:1177.860450px;}
.y1_c00058{bottom:1196.850450px;}
.h8_c00058{height:47.988281px;}
.h9_c00058{height:49.937344px;}
.ha_c00058{height:49.945264px;}
.h1_c00058{height:50.315273px;}
.h2_c00058{height:56.320312px;}
.h4_c00058{height:60.257812px;}
.h6_c00058{height:60.890625px;}
.h7_c00058{height:65.130220px;}
.h5_c00058{height:65.130820px;}
.h3_c00058{height:72.160312px;}
.h0_c00058{height:1263.000000px;}
.w1_c00058{width:892.500000px;}
.w0_c00058{width:892.830000px;}
.x0_c00058{left:0.000000px;}
.x1_c00058{left:127.620000px;}
.x2_c00058{left:180.810000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.v1_c00058{vertical-align:14.080000pt;}
.v2_c00058{vertical-align:26.560000pt;}
.lsa_c00058{letter-spacing:-0.134400pt;}
.ls11_c00058{letter-spacing:-0.051200pt;}
.lsc_c00058{letter-spacing:-0.032000pt;}
.ls13_c00058{letter-spacing:-0.025600pt;}
.ls12_c00058{letter-spacing:-0.019200pt;}
.lsf_c00058{letter-spacing:-0.012800pt;}
.lsd_c00058{letter-spacing:-0.006400pt;}
.ls15_c00058{letter-spacing:-0.003456pt;}
.ls9_c00058{letter-spacing:0.000000pt;}
.ls3_c00058{letter-spacing:0.006400pt;}
.ls6_c00058{letter-spacing:0.012768pt;}
.ls4_c00058{letter-spacing:0.012800pt;}
.ls5_c00058{letter-spacing:0.019200pt;}
.ls10_c00058{letter-spacing:0.025600pt;}
.ls8_c00058{letter-spacing:0.029792pt;}
.lsb_c00058{letter-spacing:0.032000pt;}
.ls2_c00058{letter-spacing:0.038400pt;}
.ls0_c00058{letter-spacing:0.042752pt;}
.lse_c00058{letter-spacing:0.048672pt;}
.ls7_c00058{letter-spacing:0.063840pt;}
.ls14_c00058{letter-spacing:0.083200pt;}
.ls16_c00058{letter-spacing:0.317952pt;}
.ls1_c00058{letter-spacing:1090.880000pt;}
.ws0_c00058{word-spacing:-16.038400pt;}
.ws2_c00058{word-spacing:-15.948800pt;}
.ws3_c00058{word-spacing:-11.831680pt;}
.ws4_c00058{word-spacing:-9.925632pt;}
.ws1_c00058{word-spacing:-9.408672pt;}
.ws31_c00058{word-spacing:-0.046816pt;}
.ws32_c00058{word-spacing:-0.012768pt;}
.ws1b_c00058{word-spacing:-0.006400pt;}
.ws6_c00058{word-spacing:0.000000pt;}
.ws2f_c00058{word-spacing:0.004256pt;}
.ws2e_c00058{word-spacing:0.019200pt;}
.ws26_c00058{word-spacing:0.032000pt;}
.ws5_c00058{word-spacing:0.037408pt;}
.ws2a_c00058{word-spacing:0.044800pt;}
.ws7_c00058{word-spacing:0.320000pt;}
.ws30_c00058{word-spacing:0.323456pt;}
.ws8_c00058{word-spacing:0.364800pt;}
.ws2d_c00058{word-spacing:0.659200pt;}
.ws24_c00058{word-spacing:0.985600pt;}
.ws25_c00058{word-spacing:1.011200pt;}
.ws12_c00058{word-spacing:1.267200pt;}
.ws14_c00058{word-spacing:1.280000pt;}
.wsb_c00058{word-spacing:1.286400pt;}
.ws13_c00058{word-spacing:1.324800pt;}
.ws23_c00058{word-spacing:1.369600pt;}
.ws11_c00058{word-spacing:1.593600pt;}
.ws10_c00058{word-spacing:1.606400pt;}
.ws1c_c00058{word-spacing:2.880000pt;}
.wsf_c00058{word-spacing:3.539200pt;}
.wse_c00058{word-spacing:3.712000pt;}
.wsa_c00058{word-spacing:3.820800pt;}
.wsd_c00058{word-spacing:3.833600pt;}
.ws9_c00058{word-spacing:3.916800pt;}
.wsc_c00058{word-spacing:5.766400pt;}
.ws29_c00058{word-spacing:6.752000pt;}
.ws22_c00058{word-spacing:8.588800pt;}
.ws21_c00058{word-spacing:8.652800pt;}
.ws17_c00058{word-spacing:9.568000pt;}
.ws28_c00058{word-spacing:9.619200pt;}
.ws15_c00058{word-spacing:9.632000pt;}
.ws16_c00058{word-spacing:9.651200pt;}
.ws27_c00058{word-spacing:9.670400pt;}
.ws1e_c00058{word-spacing:10.508800pt;}
.ws1d_c00058{word-spacing:10.572800pt;}
.ws1a_c00058{word-spacing:13.132800pt;}
.ws2c_c00058{word-spacing:13.785600pt;}
.ws1f_c00058{word-spacing:14.073600pt;}
.ws20_c00058{word-spacing:14.124800pt;}
.ws2b_c00058{word-spacing:16.640000pt;}
.ws18_c00058{word-spacing:24.006400pt;}
.ws19_c00058{word-spacing:24.012800pt;}
._0_c00058{margin-left:-1.175680pt;}
._1_c00058{width:0.896000pt;}
.fs5_c00058{font-size:34.560000pt;}
.fs3_c00058{font-size:37.440000pt;}
.fs4_c00058{font-size:42.560000pt;}
.fs1_c00058{font-size:48.000000pt;}
.fs0_c00058{font-size:53.440000pt;}
.fs2_c00058{font-size:64.000000pt;}
.y0_c00058{bottom:0.000000pt;}
.y3_c00058{bottom:51.067067pt;}
.y24_c00058{bottom:101.070427pt;}
.y23_c00058{bottom:117.310427pt;}
.y22_c00058{bottom:133.545307pt;}
.y21_c00058{bottom:149.870560pt;}
.y20_c00058{bottom:166.107200pt;}
.y1f_c00058{bottom:179.627067pt;}
.y1e_c00058{bottom:198.027067pt;}
.y1d_c00058{bottom:216.427067pt;}
.y1c_c00058{bottom:255.947200pt;}
.y1b_c00058{bottom:286.587200pt;}
.y1a_c00058{bottom:317.147200pt;}
.y19_c00058{bottom:347.787200pt;}
.y18_c00058{bottom:386.347200pt;}
.y17_c00058{bottom:416.987067pt;}
.y16_c00058{bottom:447.547067pt;}
.y15_c00058{bottom:486.187067pt;}
.y14_c00058{bottom:516.747067pt;}
.y13_c00058{bottom:547.387067pt;}
.y12_c00058{bottom:577.947067pt;}
.y11_c00058{bottom:608.587067pt;}
.y10_c00058{bottom:639.147067pt;}
.yf_c00058{bottom:669.787067pt;}
.ye_c00058{bottom:708.347067pt;}
.yd_c00058{bottom:738.987067pt;}
.yc_c00058{bottom:769.547067pt;}
.yb_c00058{bottom:800.187067pt;}
.ya_c00058{bottom:830.747067pt;}
.y9_c00058{bottom:861.387067pt;}
.y8_c00058{bottom:891.947067pt;}
.y7_c00058{bottom:922.587067pt;}
.y6_c00058{bottom:953.147067pt;}
.y5_c00058{bottom:983.787067pt;}
.y4_c00058{bottom:1014.347067pt;}
.y2_c00058{bottom:1046.987067pt;}
.y1_c00058{bottom:1063.867067pt;}
.h8_c00058{height:42.656250pt;}
.h9_c00058{height:44.388750pt;}
.ha_c00058{height:44.395790pt;}
.h1_c00058{height:44.724687pt;}
.h2_c00058{height:50.062500pt;}
.h4_c00058{height:53.562500pt;}
.h6_c00058{height:54.125000pt;}
.h7_c00058{height:57.893529pt;}
.h5_c00058{height:57.894063pt;}
.h3_c00058{height:64.142500pt;}
.h0_c00058{height:1122.666667pt;}
.w1_c00058{width:793.333333pt;}
.w0_c00058{width:793.626667pt;}
.x0_c00058{left:0.000000pt;}
.x1_c00058{left:113.440000pt;}
.x2_c00058{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_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_cb41f6de7daae9a94cb0f3d9.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00059;src:url('chunks/assets/font_b4c105b18863e325a8ebc966.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00059;src:url('chunks/assets/font_1cef5057cc40493cec1486fc.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00059;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;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_c00059;src:url('chunks/assets/font_ec41fa6549e4445988385795.woff2')format("woff");}.ff6_c00059{font-family:ff6_c00059;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00059;src:url('chunks/assets/font_e99d206e6a11cd3a898852d6.woff2')format("woff");}.ff7_c00059{font-family:ff7_c00059;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_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;}
.v1_c00059{vertical-align:15.163920px;}
.v2_c00059{vertical-align:29.879400px;}
.ls12_c00059{letter-spacing:-0.151200px;}
.ls1e_c00059{letter-spacing:-0.057600px;}
.ls24_c00059{letter-spacing:-0.054108px;}
.ls10_c00059{letter-spacing:-0.048096px;}
.ls21_c00059{letter-spacing:-0.043200px;}
.ls14_c00059{letter-spacing:-0.042084px;}
.ls1b_c00059{letter-spacing:-0.031248px;}
.ls23_c00059{letter-spacing:-0.030060px;}
.ls18_c00059{letter-spacing:-0.028800px;}
.ls1d_c00059{letter-spacing:-0.021600px;}
.lsf_c00059{letter-spacing:-0.018036px;}
.ls1a_c00059{letter-spacing:-0.015624px;}
.ls1c_c00059{letter-spacing:-0.014400px;}
.ls25_c00059{letter-spacing:-0.012024px;}
.ls17_c00059{letter-spacing:-0.007200px;}
.ls13_c00059{letter-spacing:-0.006012px;}
.ls11_c00059{letter-spacing:0.000000px;}
.ls2_c00059{letter-spacing:0.006012px;}
.ls5_c00059{letter-spacing:0.007200px;}
.lsc_c00059{letter-spacing:0.009576px;}
.ls8_c00059{letter-spacing:0.012024px;}
.lsa_c00059{letter-spacing:0.014364px;}
.ls19_c00059{letter-spacing:0.014400px;}
.ls4_c00059{letter-spacing:0.021600px;}
.ls9_c00059{letter-spacing:0.023940px;}
.ls3_c00059{letter-spacing:0.024048px;}
.lsd_c00059{letter-spacing:0.033516px;}
.ls0_c00059{letter-spacing:0.036072px;}
.ls7_c00059{letter-spacing:0.039060px;}
.lse_c00059{letter-spacing:0.043092px;}
.lsb_c00059{letter-spacing:0.047880px;}
.ls1f_c00059{letter-spacing:0.054756px;}
.ls1_c00059{letter-spacing:0.060120px;}
.ls20_c00059{letter-spacing:0.093600px;}
.ls22_c00059{letter-spacing:0.108000px;}
.ls15_c00059{letter-spacing:0.136080px;}
.ls16_c00059{letter-spacing:0.168336px;}
.ls6_c00059{letter-spacing:35.154000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00059{word-spacing:-19.569060px;}
.ws1_c00059{word-spacing:-19.514376px;}
.ws3_c00059{word-spacing:-19.498752px;}
.ws4_c00059{word-spacing:-10.584756px;}
.ws0_c00059{word-spacing:-9.856080px;}
.ws31_c00059{word-spacing:-0.258516px;}
.ws3c_c00059{word-spacing:-0.023940px;}
.ws15_c00059{word-spacing:-0.014400px;}
.ws3b_c00059{word-spacing:-0.014364px;}
.ws39_c00059{word-spacing:-0.004788px;}
.ws8_c00059{word-spacing:0.000000px;}
.ws34_c00059{word-spacing:0.007200px;}
.ws35_c00059{word-spacing:0.014400px;}
.ws25_c00059{word-spacing:0.021600px;}
.ws5_c00059{word-spacing:0.054108px;}
.ws6_c00059{word-spacing:0.108216px;}
.wsd_c00059{word-spacing:0.132264px;}
.ws7_c00059{word-spacing:0.138276px;}
.ws3a_c00059{word-spacing:0.330372px;}
.ws36_c00059{word-spacing:1.807200px;}
.ws37_c00059{word-spacing:1.929600px;}
.wsc_c00059{word-spacing:3.306600px;}
.ws2e_c00059{word-spacing:3.318624px;}
.ws2d_c00059{word-spacing:3.342672px;}
.ws2f_c00059{word-spacing:3.372732px;}
.ws26_c00059{word-spacing:3.685356px;}
.ws30_c00059{word-spacing:3.691368px;}
.ws27_c00059{word-spacing:3.709404px;}
.wsa_c00059{word-spacing:4.406796px;}
.wsf_c00059{word-spacing:4.716000px;}
.wsb_c00059{word-spacing:4.773528px;}
.wse_c00059{word-spacing:4.838400px;}
.ws12_c00059{word-spacing:5.378400px;}
.ws11_c00059{word-spacing:5.392800px;}
.ws10_c00059{word-spacing:5.407200px;}
.ws13_c00059{word-spacing:5.709600px;}
.ws14_c00059{word-spacing:5.788800px;}
.ws1a_c00059{word-spacing:7.560000px;}
.ws19_c00059{word-spacing:7.668000px;}
.ws38_c00059{word-spacing:8.632800px;}
.ws29_c00059{word-spacing:9.480924px;}
.ws1c_c00059{word-spacing:9.777600px;}
.ws1b_c00059{word-spacing:9.799200px;}
.ws28_c00059{word-spacing:9.853668px;}
.ws2a_c00059{word-spacing:9.865692px;}
.ws1f_c00059{word-spacing:10.137600px;}
.ws1e_c00059{word-spacing:10.173600px;}
.ws9_c00059{word-spacing:12.270492px;}
.ws32_c00059{word-spacing:13.730400px;}
.ws2b_c00059{word-spacing:13.761468px;}
.ws2c_c00059{word-spacing:13.767480px;}
.ws1d_c00059{word-spacing:14.443200px;}
.ws24_c00059{word-spacing:15.372000px;}
.ws23_c00059{word-spacing:15.508800px;}
.ws22_c00059{word-spacing:15.566400px;}
.ws33_c00059{word-spacing:16.567200px;}
.ws16_c00059{word-spacing:16.790400px;}
.ws17_c00059{word-spacing:16.934400px;}
.ws18_c00059{word-spacing:16.941600px;}
.ws21_c00059{word-spacing:17.632800px;}
.ws20_c00059{word-spacing:17.704800px;}
._0_c00059{margin-left:-1.142280px;}
._3_c00059{width:1.008000px;}
._2_c00059{width:48.384000px;}
._1_c00059{width:94.824000px;}
.fc0_c00059{color:rgb(0,0,0);}
.fs3_c00059{font-size:38.880000px;}
.fs5_c00059{font-size:42.120000px;}
.fs6_c00059{font-size:47.880000px;}
.fs2_c00059{font-size:54.000000px;}
.fs0_c00059{font-size:60.120000px;}
.fs1_c00059{font-size:72.000000px;}
.fs4_c00059{font-size:78.120000px;}
.y0_c00059{bottom:0.000000px;}
.y3_c00059{bottom:57.450450px;}
.y4_c00059{bottom:61.410450px;}
.y29_c00059{bottom:113.708550px;}
.y28_c00059{bottom:132.070530px;}
.y27_c00059{bottom:150.336750px;}
.y26_c00059{bottom:168.602970px;}
.y25_c00059{bottom:182.464230px;}
.y24_c00059{bottom:200.730450px;}
.y23_c00059{bottom:215.940450px;}
.y22_c00059{bottom:236.640450px;}
.y21_c00059{bottom:257.340450px;}
.y20_c00059{bottom:285.330450px;}
.y1f_c00059{bottom:319.710450px;}
.y1e_c00059{bottom:363.180450px;}
.y1d_c00059{bottom:397.560450px;}
.y1c_c00059{bottom:432.030450px;}
.y1b_c00059{bottom:469.451910px;}
.y1a_c00059{bottom:486.375690px;}
.y19_c00059{bottom:503.209290px;}
.y18_c00059{bottom:520.133070px;}
.y17_c00059{bottom:536.966670px;}
.y16_c00059{bottom:553.890450px;}
.y15_c00059{bottom:594.660450px;}
.y14_c00059{bottom:629.130450px;}
.y13_c00059{bottom:663.510450px;}
.y12_c00059{bottom:697.980450px;}
.y11_c00059{bottom:732.360450px;}
.y10_c00059{bottom:766.830450px;}
.yf_c00059{bottom:801.210600px;}
.ye_c00059{bottom:835.680600px;}
.yd_c00059{bottom:880.680600px;}
.yc_c00059{bottom:943.410450px;}
.yb_c00059{bottom:977.790450px;}
.ya_c00059{bottom:1012.260450px;}
.y9_c00059{bottom:1046.640450px;}
.y8_c00059{bottom:1093.159470px;}
.y7_c00059{bottom:1109.993070px;}
.y6_c00059{bottom:1126.916850px;}
.y5_c00059{bottom:1143.750450px;}
.y2_c00059{bottom:1173.810450px;}
.y1_c00059{bottom:1196.850450px;}
.h2_c00059{height:47.988281px;}
.hb_c00059{height:49.937344px;}
.h1_c00059{height:50.315273px;}
.h4_c00059{height:50.359193px;}
.ha_c00059{height:50.389433px;}
.h3_c00059{height:56.320312px;}
.h5_c00059{height:60.257812px;}
.h7_c00059{height:60.890625px;}
.h8_c00059{height:65.130220px;}
.h9_c00059{height:65.130820px;}
.h6_c00059{height:81.476719px;}
.h0_c00059{height:1263.000000px;}
.w1_c00059{width:892.500000px;}
.w0_c00059{width:892.830000px;}
.x0_c00059{left:0.000000px;}
.x2_c00059{left:127.620000px;}
.x6_c00059{left:141.122160px;}
.x1_c00059{left:145.440000px;}
.x5_c00059{left:180.810000px;}
.x4_c00059{left:439.020000px;}
.x3_c00059{left:446.490000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.v1_c00059{vertical-align:13.479040pt;}
.v2_c00059{vertical-align:26.559467pt;}
.ls12_c00059{letter-spacing:-0.134400pt;}
.ls1e_c00059{letter-spacing:-0.051200pt;}
.ls24_c00059{letter-spacing:-0.048096pt;}
.ls10_c00059{letter-spacing:-0.042752pt;}
.ls21_c00059{letter-spacing:-0.038400pt;}
.ls14_c00059{letter-spacing:-0.037408pt;}
.ls1b_c00059{letter-spacing:-0.027776pt;}
.ls23_c00059{letter-spacing:-0.026720pt;}
.ls18_c00059{letter-spacing:-0.025600pt;}
.ls1d_c00059{letter-spacing:-0.019200pt;}
.lsf_c00059{letter-spacing:-0.016032pt;}
.ls1a_c00059{letter-spacing:-0.013888pt;}
.ls1c_c00059{letter-spacing:-0.012800pt;}
.ls25_c00059{letter-spacing:-0.010688pt;}
.ls17_c00059{letter-spacing:-0.006400pt;}
.ls13_c00059{letter-spacing:-0.005344pt;}
.ls11_c00059{letter-spacing:0.000000pt;}
.ls2_c00059{letter-spacing:0.005344pt;}
.ls5_c00059{letter-spacing:0.006400pt;}
.lsc_c00059{letter-spacing:0.008512pt;}
.ls8_c00059{letter-spacing:0.010688pt;}
.lsa_c00059{letter-spacing:0.012768pt;}
.ls19_c00059{letter-spacing:0.012800pt;}
.ls4_c00059{letter-spacing:0.019200pt;}
.ls9_c00059{letter-spacing:0.021280pt;}
.ls3_c00059{letter-spacing:0.021376pt;}
.lsd_c00059{letter-spacing:0.029792pt;}
.ls0_c00059{letter-spacing:0.032064pt;}
.ls7_c00059{letter-spacing:0.034720pt;}
.lse_c00059{letter-spacing:0.038304pt;}
.lsb_c00059{letter-spacing:0.042560pt;}
.ls1f_c00059{letter-spacing:0.048672pt;}
.ls1_c00059{letter-spacing:0.053440pt;}
.ls20_c00059{letter-spacing:0.083200pt;}
.ls22_c00059{letter-spacing:0.096000pt;}
.ls15_c00059{letter-spacing:0.120960pt;}
.ls16_c00059{letter-spacing:0.149632pt;}
.ls6_c00059{letter-spacing:31.248000pt;}
.ws2_c00059{word-spacing:-17.394720pt;}
.ws1_c00059{word-spacing:-17.346112pt;}
.ws3_c00059{word-spacing:-17.332224pt;}
.ws4_c00059{word-spacing:-9.408672pt;}
.ws0_c00059{word-spacing:-8.760960pt;}
.ws31_c00059{word-spacing:-0.229792pt;}
.ws3c_c00059{word-spacing:-0.021280pt;}
.ws15_c00059{word-spacing:-0.012800pt;}
.ws3b_c00059{word-spacing:-0.012768pt;}
.ws39_c00059{word-spacing:-0.004256pt;}
.ws8_c00059{word-spacing:0.000000pt;}
.ws34_c00059{word-spacing:0.006400pt;}
.ws35_c00059{word-spacing:0.012800pt;}
.ws25_c00059{word-spacing:0.019200pt;}
.ws5_c00059{word-spacing:0.048096pt;}
.ws6_c00059{word-spacing:0.096192pt;}
.wsd_c00059{word-spacing:0.117568pt;}
.ws7_c00059{word-spacing:0.122912pt;}
.ws3a_c00059{word-spacing:0.293664pt;}
.ws36_c00059{word-spacing:1.606400pt;}
.ws37_c00059{word-spacing:1.715200pt;}
.wsc_c00059{word-spacing:2.939200pt;}
.ws2e_c00059{word-spacing:2.949888pt;}
.ws2d_c00059{word-spacing:2.971264pt;}
.ws2f_c00059{word-spacing:2.997984pt;}
.ws26_c00059{word-spacing:3.275872pt;}
.ws30_c00059{word-spacing:3.281216pt;}
.ws27_c00059{word-spacing:3.297248pt;}
.wsa_c00059{word-spacing:3.917152pt;}
.wsf_c00059{word-spacing:4.192000pt;}
.wsb_c00059{word-spacing:4.243136pt;}
.wse_c00059{word-spacing:4.300800pt;}
.ws12_c00059{word-spacing:4.780800pt;}
.ws11_c00059{word-spacing:4.793600pt;}
.ws10_c00059{word-spacing:4.806400pt;}
.ws13_c00059{word-spacing:5.075200pt;}
.ws14_c00059{word-spacing:5.145600pt;}
.ws1a_c00059{word-spacing:6.720000pt;}
.ws19_c00059{word-spacing:6.816000pt;}
.ws38_c00059{word-spacing:7.673600pt;}
.ws29_c00059{word-spacing:8.427488pt;}
.ws1c_c00059{word-spacing:8.691200pt;}
.ws1b_c00059{word-spacing:8.710400pt;}
.ws28_c00059{word-spacing:8.758816pt;}
.ws2a_c00059{word-spacing:8.769504pt;}
.ws1f_c00059{word-spacing:9.011200pt;}
.ws1e_c00059{word-spacing:9.043200pt;}
.ws9_c00059{word-spacing:10.907104pt;}
.ws32_c00059{word-spacing:12.204800pt;}
.ws2b_c00059{word-spacing:12.232416pt;}
.ws2c_c00059{word-spacing:12.237760pt;}
.ws1d_c00059{word-spacing:12.838400pt;}
.ws24_c00059{word-spacing:13.664000pt;}
.ws23_c00059{word-spacing:13.785600pt;}
.ws22_c00059{word-spacing:13.836800pt;}
.ws33_c00059{word-spacing:14.726400pt;}
.ws16_c00059{word-spacing:14.924800pt;}
.ws17_c00059{word-spacing:15.052800pt;}
.ws18_c00059{word-spacing:15.059200pt;}
.ws21_c00059{word-spacing:15.673600pt;}
.ws20_c00059{word-spacing:15.737600pt;}
._0_c00059{margin-left:-1.015360pt;}
._3_c00059{width:0.896000pt;}
._2_c00059{width:43.008000pt;}
._1_c00059{width:84.288000pt;}
.fs3_c00059{font-size:34.560000pt;}
.fs5_c00059{font-size:37.440000pt;}
.fs6_c00059{font-size:42.560000pt;}
.fs2_c00059{font-size:48.000000pt;}
.fs0_c00059{font-size:53.440000pt;}
.fs1_c00059{font-size:64.000000pt;}
.fs4_c00059{font-size:69.440000pt;}
.y0_c00059{bottom:0.000000pt;}
.y3_c00059{bottom:51.067067pt;}
.y4_c00059{bottom:54.587067pt;}
.y29_c00059{bottom:101.074267pt;}
.y28_c00059{bottom:117.396027pt;}
.y27_c00059{bottom:133.632667pt;}
.y26_c00059{bottom:149.869307pt;}
.y25_c00059{bottom:162.190427pt;}
.y24_c00059{bottom:178.427067pt;}
.y23_c00059{bottom:191.947067pt;}
.y22_c00059{bottom:210.347067pt;}
.y21_c00059{bottom:228.747067pt;}
.y20_c00059{bottom:253.627067pt;}
.y1f_c00059{bottom:284.187067pt;}
.y1e_c00059{bottom:322.827067pt;}
.y1d_c00059{bottom:353.387067pt;}
.y1c_c00059{bottom:384.027067pt;}
.y1b_c00059{bottom:417.290587pt;}
.y1a_c00059{bottom:432.333947pt;}
.y19_c00059{bottom:447.297147pt;}
.y18_c00059{bottom:462.340507pt;}
.y17_c00059{bottom:477.303707pt;}
.y16_c00059{bottom:492.347067pt;}
.y15_c00059{bottom:528.587067pt;}
.y14_c00059{bottom:559.227067pt;}
.y13_c00059{bottom:589.787067pt;}
.y12_c00059{bottom:620.427067pt;}
.y11_c00059{bottom:650.987067pt;}
.y10_c00059{bottom:681.627067pt;}
.yf_c00059{bottom:712.187200pt;}
.ye_c00059{bottom:742.827200pt;}
.yd_c00059{bottom:782.827200pt;}
.yc_c00059{bottom:838.587067pt;}
.yb_c00059{bottom:869.147067pt;}
.ya_c00059{bottom:899.787067pt;}
.y9_c00059{bottom:930.347067pt;}
.y8_c00059{bottom:971.697307pt;}
.y7_c00059{bottom:986.660507pt;}
.y6_c00059{bottom:1001.703867pt;}
.y5_c00059{bottom:1016.667067pt;}
.y2_c00059{bottom:1043.387067pt;}
.y1_c00059{bottom:1063.867067pt;}
.h2_c00059{height:42.656250pt;}
.hb_c00059{height:44.388750pt;}
.h1_c00059{height:44.724687pt;}
.h4_c00059{height:44.763728pt;}
.ha_c00059{height:44.790607pt;}
.h3_c00059{height:50.062500pt;}
.h5_c00059{height:53.562500pt;}
.h7_c00059{height:54.125000pt;}
.h8_c00059{height:57.893529pt;}
.h9_c00059{height:57.894062pt;}
.h6_c00059{height:72.423750pt;}
.h0_c00059{height:1122.666667pt;}
.w1_c00059{width:793.333333pt;}
.w0_c00059{width:793.626667pt;}
.x0_c00059{left:0.000000pt;}
.x2_c00059{left:113.440000pt;}
.x6_c00059{left:125.441920pt;}
.x1_c00059{left:129.280000pt;}
.x5_c00059{left:160.720000pt;}
.x4_c00059{left:390.240000pt;}
.x3_c00059{left:396.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_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_b2db6980bc135c33eca3ec91.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.100098;font-style:normal;font-weight:normal;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_9569b9f49d1b5f15fccd3319.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;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_c00060;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00060;src:url('chunks/assets/font_b12e249e45e3143a80d4de8d.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;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_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.v1_c00060{vertical-align:15.840000px;}
.v2_c00060{vertical-align:29.880000px;}
.ls1a_c00060{letter-spacing:-0.318636px;}
.ls20_c00060{letter-spacing:-0.306612px;}
.ls19_c00060{letter-spacing:-0.180360px;}
.ls16_c00060{letter-spacing:-0.151200px;}
.ls21_c00060{letter-spacing:-0.060120px;}
.ls1c_c00060{letter-spacing:-0.054108px;}
.ls25_c00060{letter-spacing:-0.042084px;}
.ls24_c00060{letter-spacing:-0.030060px;}
.ls18_c00060{letter-spacing:-0.028800px;}
.ls23_c00060{letter-spacing:-0.021600px;}
.ls1b_c00060{letter-spacing:-0.018036px;}
.ls26_c00060{letter-spacing:-0.014400px;}
.ls1f_c00060{letter-spacing:-0.012024px;}
.ls1e_c00060{letter-spacing:-0.007200px;}
.ls15_c00060{letter-spacing:0.000000px;}
.ls4_c00060{letter-spacing:0.006012px;}
.ls5_c00060{letter-spacing:0.012024px;}
.ls28_c00060{letter-spacing:0.014364px;}
.ls2_c00060{letter-spacing:0.014400px;}
.ls9_c00060{letter-spacing:0.018036px;}
.ls13_c00060{letter-spacing:0.019152px;}
.lsf_c00060{letter-spacing:0.024048px;}
.ls11_c00060{letter-spacing:0.028728px;}
.ls3_c00060{letter-spacing:0.028800px;}
.ls6_c00060{letter-spacing:0.030060px;}
.ls14_c00060{letter-spacing:0.033516px;}
.lsc_c00060{letter-spacing:0.036072px;}
.ls8_c00060{letter-spacing:0.042084px;}
.ls12_c00060{letter-spacing:0.043092px;}
.ls0_c00060{letter-spacing:0.048096px;}
.lsd_c00060{letter-spacing:0.054108px;}
.ls17_c00060{letter-spacing:0.054756px;}
.lsa_c00060{letter-spacing:0.072144px;}
.ls10_c00060{letter-spacing:0.078156px;}
.lse_c00060{letter-spacing:0.090180px;}
.ls27_c00060{letter-spacing:0.093600px;}
.ls7_c00060{letter-spacing:0.108216px;}
.ls1d_c00060{letter-spacing:0.136080px;}
.lsb_c00060{letter-spacing:0.153720px;}
.ls22_c00060{letter-spacing:0.168336px;}
.ls1_c00060{letter-spacing:1227.240000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:-18.028800px;}
.ws1_c00060{word-spacing:-10.584756px;}
.ws2_c00060{word-spacing:-9.856080px;}
.ws39_c00060{word-spacing:-0.288576px;}
.ws27_c00060{word-spacing:-0.276552px;}
.ws3e_c00060{word-spacing:-0.023940px;}
.ws3f_c00060{word-spacing:-0.014364px;}
.ws3d_c00060{word-spacing:-0.009576px;}
.ws4_c00060{word-spacing:0.000000px;}
.ws1b_c00060{word-spacing:0.007200px;}
.ws7_c00060{word-spacing:0.028800px;}
.ws3_c00060{word-spacing:0.042084px;}
.ws1a_c00060{word-spacing:0.043200px;}
.ws17_c00060{word-spacing:0.084168px;}
.ws18_c00060{word-spacing:0.144288px;}
.wsd_c00060{word-spacing:0.342684px;}
.wse_c00060{word-spacing:0.450900px;}
.ws16_c00060{word-spacing:0.739476px;}
.ws28_c00060{word-spacing:0.777600px;}
.ws29_c00060{word-spacing:0.820800px;}
.ws15_c00060{word-spacing:0.829656px;}
.ws3a_c00060{word-spacing:1.094400px;}
.ws2d_c00060{word-spacing:1.118232px;}
.ws10_c00060{word-spacing:1.130256px;}
.ws2c_c00060{word-spacing:1.148292px;}
.wsf_c00060{word-spacing:1.160316px;}
.ws2e_c00060{word-spacing:1.202400px;}
.ws25_c00060{word-spacing:1.797588px;}
.ws24_c00060{word-spacing:1.845684px;}
.ws23_c00060{word-spacing:1.857708px;}
.ws9_c00060{word-spacing:1.875744px;}
.ws8_c00060{word-spacing:1.881756px;}
.wsa_c00060{word-spacing:2.068128px;}
.ws20_c00060{word-spacing:2.555100px;}
.ws11_c00060{word-spacing:2.591172px;}
.ws19_c00060{word-spacing:3.290400px;}
.ws22_c00060{word-spacing:3.390768px;}
.ws21_c00060{word-spacing:3.637260px;}
.ws32_c00060{word-spacing:4.003992px;}
.ws13_c00060{word-spacing:4.034052px;}
.ws12_c00060{word-spacing:4.052088px;}
.ws1e_c00060{word-spacing:4.364712px;}
.ws38_c00060{word-spacing:4.370724px;}
.ws1f_c00060{word-spacing:4.394772px;}
.ws33_c00060{word-spacing:4.424832px;}
.ws34_c00060{word-spacing:4.430844px;}
.ws26_c00060{word-spacing:5.440860px;}
.ws2b_c00060{word-spacing:6.156000px;}
.ws2a_c00060{word-spacing:6.170400px;}
.ws36_c00060{word-spacing:6.498972px;}
.ws6_c00060{word-spacing:6.811200px;}
.ws5_c00060{word-spacing:6.868800px;}
.ws35_c00060{word-spacing:6.943860px;}
.ws37_c00060{word-spacing:6.973920px;}
.ws30_c00060{word-spacing:9.733428px;}
.wsc_c00060{word-spacing:9.781524px;}
.ws31_c00060{word-spacing:10.118196px;}
.wsb_c00060{word-spacing:10.130220px;}
.ws14_c00060{word-spacing:12.649248px;}
.ws2f_c00060{word-spacing:13.719384px;}
.ws1d_c00060{word-spacing:15.174288px;}
.ws1c_c00060{word-spacing:15.222384px;}
.ws3c_c00060{word-spacing:23.025600px;}
.ws3b_c00060{word-spacing:23.040000px;}
._0_c00060{margin-left:-1.322640px;}
._1_c00060{width:1.250496px;}
.fc0_c00060{color:rgb(0,0,0);}
.fs4_c00060{font-size:38.880000px;}
.fs3_c00060{font-size:42.120000px;}
.fs5_c00060{font-size:47.880000px;}
.fs1_c00060{font-size:54.000000px;}
.fs0_c00060{font-size:60.120000px;}
.fs2_c00060{font-size:72.000000px;}
.y0_c00060{bottom:0.000000px;}
.y3_c00060{bottom:57.450450px;}
.y2e_c00060{bottom:113.706030px;}
.y2d_c00060{bottom:132.068010px;}
.y2c_c00060{bottom:150.334230px;}
.y2b_c00060{bottom:168.600450px;}
.y2a_c00060{bottom:183.810600px;}
.y29_c00060{bottom:204.510600px;}
.y28_c00060{bottom:225.210450px;}
.y27_c00060{bottom:285.060450px;}
.y26_c00060{bottom:319.440450px;}
.y25_c00060{bottom:353.910450px;}
.y24_c00060{bottom:391.324680px;}
.y23_c00060{bottom:408.248460px;}
.y22_c00060{bottom:425.082060px;}
.y21_c00060{bottom:442.005840px;}
.y20_c00060{bottom:458.839440px;}
.y1f_c00060{bottom:475.763220px;}
.y1e_c00060{bottom:492.596820px;}
.y1d_c00060{bottom:509.520600px;}
.y1c_c00060{bottom:550.290450px;}
.y1b_c00060{bottom:593.760450px;}
.y1a_c00060{bottom:628.140450px;}
.y19_c00060{bottom:662.610450px;}
.y18_c00060{bottom:700.024530px;}
.y17_c00060{bottom:716.948310px;}
.y16_c00060{bottom:733.781910px;}
.y15_c00060{bottom:750.705690px;}
.y14_c00060{bottom:767.539290px;}
.y13_c00060{bottom:784.463070px;}
.y12_c00060{bottom:801.296670px;}
.y11_c00060{bottom:818.220450px;}
.y10_c00060{bottom:858.990450px;}
.yf_c00060{bottom:893.460450px;}
.ye_c00060{bottom:930.870930px;}
.yd_c00060{bottom:947.794710px;}
.yc_c00060{bottom:964.628310px;}
.yb_c00060{bottom:981.552090px;}
.ya_c00060{bottom:998.385690px;}
.y9_c00060{bottom:1015.309470px;}
.y8_c00060{bottom:1032.143070px;}
.y7_c00060{bottom:1049.066850px;}
.y6_c00060{bottom:1065.900450px;}
.y5_c00060{bottom:1106.760450px;}
.y4_c00060{bottom:1141.140450px;}
.y2_c00060{bottom:1177.860450px;}
.y1_c00060{bottom:1196.850450px;}
.h9_c00060{height:47.988281px;}
.h8_c00060{height:47.988881px;}
.ha_c00060{height:49.937344px;}
.h1_c00060{height:50.315273px;}
.h7_c00060{height:50.418953px;}
.h2_c00060{height:56.320312px;}
.h4_c00060{height:60.257812px;}
.h6_c00060{height:60.375893px;}
.h5_c00060{height:65.130820px;}
.h3_c00060{height:72.160312px;}
.h0_c00060{height:1263.000000px;}
.w1_c00060{width:892.500000px;}
.w0_c00060{width:892.830000px;}
.x0_c00060{left:0.000000px;}
.x1_c00060{left:127.620000px;}
.x2_c00060{left:180.810000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.v1_c00060{vertical-align:14.080000pt;}
.v2_c00060{vertical-align:26.560000pt;}
.ls1a_c00060{letter-spacing:-0.283232pt;}
.ls20_c00060{letter-spacing:-0.272544pt;}
.ls19_c00060{letter-spacing:-0.160320pt;}
.ls16_c00060{letter-spacing:-0.134400pt;}
.ls21_c00060{letter-spacing:-0.053440pt;}
.ls1c_c00060{letter-spacing:-0.048096pt;}
.ls25_c00060{letter-spacing:-0.037408pt;}
.ls24_c00060{letter-spacing:-0.026720pt;}
.ls18_c00060{letter-spacing:-0.025600pt;}
.ls23_c00060{letter-spacing:-0.019200pt;}
.ls1b_c00060{letter-spacing:-0.016032pt;}
.ls26_c00060{letter-spacing:-0.012800pt;}
.ls1f_c00060{letter-spacing:-0.010688pt;}
.ls1e_c00060{letter-spacing:-0.006400pt;}
.ls15_c00060{letter-spacing:0.000000pt;}
.ls4_c00060{letter-spacing:0.005344pt;}
.ls5_c00060{letter-spacing:0.010688pt;}
.ls28_c00060{letter-spacing:0.012768pt;}
.ls2_c00060{letter-spacing:0.012800pt;}
.ls9_c00060{letter-spacing:0.016032pt;}
.ls13_c00060{letter-spacing:0.017024pt;}
.lsf_c00060{letter-spacing:0.021376pt;}
.ls11_c00060{letter-spacing:0.025536pt;}
.ls3_c00060{letter-spacing:0.025600pt;}
.ls6_c00060{letter-spacing:0.026720pt;}
.ls14_c00060{letter-spacing:0.029792pt;}
.lsc_c00060{letter-spacing:0.032064pt;}
.ls8_c00060{letter-spacing:0.037408pt;}
.ls12_c00060{letter-spacing:0.038304pt;}
.ls0_c00060{letter-spacing:0.042752pt;}
.lsd_c00060{letter-spacing:0.048096pt;}
.ls17_c00060{letter-spacing:0.048672pt;}
.lsa_c00060{letter-spacing:0.064128pt;}
.ls10_c00060{letter-spacing:0.069472pt;}
.lse_c00060{letter-spacing:0.080160pt;}
.ls27_c00060{letter-spacing:0.083200pt;}
.ls7_c00060{letter-spacing:0.096192pt;}
.ls1d_c00060{letter-spacing:0.120960pt;}
.lsb_c00060{letter-spacing:0.136640pt;}
.ls22_c00060{letter-spacing:0.149632pt;}
.ls1_c00060{letter-spacing:1090.880000pt;}
.ws0_c00060{word-spacing:-16.025600pt;}
.ws1_c00060{word-spacing:-9.408672pt;}
.ws2_c00060{word-spacing:-8.760960pt;}
.ws39_c00060{word-spacing:-0.256512pt;}
.ws27_c00060{word-spacing:-0.245824pt;}
.ws3e_c00060{word-spacing:-0.021280pt;}
.ws3f_c00060{word-spacing:-0.012768pt;}
.ws3d_c00060{word-spacing:-0.008512pt;}
.ws4_c00060{word-spacing:0.000000pt;}
.ws1b_c00060{word-spacing:0.006400pt;}
.ws7_c00060{word-spacing:0.025600pt;}
.ws3_c00060{word-spacing:0.037408pt;}
.ws1a_c00060{word-spacing:0.038400pt;}
.ws17_c00060{word-spacing:0.074816pt;}
.ws18_c00060{word-spacing:0.128256pt;}
.wsd_c00060{word-spacing:0.304608pt;}
.wse_c00060{word-spacing:0.400800pt;}
.ws16_c00060{word-spacing:0.657312pt;}
.ws28_c00060{word-spacing:0.691200pt;}
.ws29_c00060{word-spacing:0.729600pt;}
.ws15_c00060{word-spacing:0.737472pt;}
.ws3a_c00060{word-spacing:0.972800pt;}
.ws2d_c00060{word-spacing:0.993984pt;}
.ws10_c00060{word-spacing:1.004672pt;}
.ws2c_c00060{word-spacing:1.020704pt;}
.wsf_c00060{word-spacing:1.031392pt;}
.ws2e_c00060{word-spacing:1.068800pt;}
.ws25_c00060{word-spacing:1.597856pt;}
.ws24_c00060{word-spacing:1.640608pt;}
.ws23_c00060{word-spacing:1.651296pt;}
.ws9_c00060{word-spacing:1.667328pt;}
.ws8_c00060{word-spacing:1.672672pt;}
.wsa_c00060{word-spacing:1.838336pt;}
.ws20_c00060{word-spacing:2.271200pt;}
.ws11_c00060{word-spacing:2.303264pt;}
.ws19_c00060{word-spacing:2.924800pt;}
.ws22_c00060{word-spacing:3.014016pt;}
.ws21_c00060{word-spacing:3.233120pt;}
.ws32_c00060{word-spacing:3.559104pt;}
.ws13_c00060{word-spacing:3.585824pt;}
.ws12_c00060{word-spacing:3.601856pt;}
.ws1e_c00060{word-spacing:3.879744pt;}
.ws38_c00060{word-spacing:3.885088pt;}
.ws1f_c00060{word-spacing:3.906464pt;}
.ws33_c00060{word-spacing:3.933184pt;}
.ws34_c00060{word-spacing:3.938528pt;}
.ws26_c00060{word-spacing:4.836320pt;}
.ws2b_c00060{word-spacing:5.472000pt;}
.ws2a_c00060{word-spacing:5.484800pt;}
.ws36_c00060{word-spacing:5.776864pt;}
.ws6_c00060{word-spacing:6.054400pt;}
.ws5_c00060{word-spacing:6.105600pt;}
.ws35_c00060{word-spacing:6.172320pt;}
.ws37_c00060{word-spacing:6.199040pt;}
.ws30_c00060{word-spacing:8.651936pt;}
.wsc_c00060{word-spacing:8.694688pt;}
.ws31_c00060{word-spacing:8.993952pt;}
.wsb_c00060{word-spacing:9.004640pt;}
.ws14_c00060{word-spacing:11.243776pt;}
.ws2f_c00060{word-spacing:12.195008pt;}
.ws1d_c00060{word-spacing:13.488256pt;}
.ws1c_c00060{word-spacing:13.531008pt;}
.ws3c_c00060{word-spacing:20.467200pt;}
.ws3b_c00060{word-spacing:20.480000pt;}
._0_c00060{margin-left:-1.175680pt;}
._1_c00060{width:1.111552pt;}
.fs4_c00060{font-size:34.560000pt;}
.fs3_c00060{font-size:37.440000pt;}
.fs5_c00060{font-size:42.560000pt;}
.fs1_c00060{font-size:48.000000pt;}
.fs0_c00060{font-size:53.440000pt;}
.fs2_c00060{font-size:64.000000pt;}
.y0_c00060{bottom:0.000000pt;}
.y3_c00060{bottom:51.067067pt;}
.y2e_c00060{bottom:101.072027pt;}
.y2d_c00060{bottom:117.393787pt;}
.y2c_c00060{bottom:133.630427pt;}
.y2b_c00060{bottom:149.867067pt;}
.y2a_c00060{bottom:163.387200pt;}
.y29_c00060{bottom:181.787200pt;}
.y28_c00060{bottom:200.187067pt;}
.y27_c00060{bottom:253.387067pt;}
.y26_c00060{bottom:283.947067pt;}
.y25_c00060{bottom:314.587067pt;}
.y24_c00060{bottom:347.844160pt;}
.y23_c00060{bottom:362.887520pt;}
.y22_c00060{bottom:377.850720pt;}
.y21_c00060{bottom:392.894080pt;}
.y20_c00060{bottom:407.857280pt;}
.y1f_c00060{bottom:422.900640pt;}
.y1e_c00060{bottom:437.863840pt;}
.y1d_c00060{bottom:452.907200pt;}
.y1c_c00060{bottom:489.147067pt;}
.y1b_c00060{bottom:527.787067pt;}
.y1a_c00060{bottom:558.347067pt;}
.y19_c00060{bottom:588.987067pt;}
.y18_c00060{bottom:622.244027pt;}
.y17_c00060{bottom:637.287387pt;}
.y16_c00060{bottom:652.250587pt;}
.y15_c00060{bottom:667.293947pt;}
.y14_c00060{bottom:682.257147pt;}
.y13_c00060{bottom:697.300507pt;}
.y12_c00060{bottom:712.263707pt;}
.y11_c00060{bottom:727.307067pt;}
.y10_c00060{bottom:763.547067pt;}
.yf_c00060{bottom:794.187067pt;}
.ye_c00060{bottom:827.440827pt;}
.yd_c00060{bottom:842.484187pt;}
.yc_c00060{bottom:857.447387pt;}
.yb_c00060{bottom:872.490747pt;}
.ya_c00060{bottom:887.453947pt;}
.y9_c00060{bottom:902.497307pt;}
.y8_c00060{bottom:917.460507pt;}
.y7_c00060{bottom:932.503867pt;}
.y6_c00060{bottom:947.467067pt;}
.y5_c00060{bottom:983.787067pt;}
.y4_c00060{bottom:1014.347067pt;}
.y2_c00060{bottom:1046.987067pt;}
.y1_c00060{bottom:1063.867067pt;}
.h9_c00060{height:42.656250pt;}
.h8_c00060{height:42.656783pt;}
.ha_c00060{height:44.388750pt;}
.h1_c00060{height:44.724687pt;}
.h7_c00060{height:44.816847pt;}
.h2_c00060{height:50.062500pt;}
.h4_c00060{height:53.562500pt;}
.h6_c00060{height:53.667460pt;}
.h5_c00060{height:57.894063pt;}
.h3_c00060{height:64.142500pt;}
.h0_c00060{height:1122.666667pt;}
.w1_c00060{width:793.333333pt;}
.w0_c00060{width:793.626667pt;}
.x0_c00060{left:0.000000pt;}
.x1_c00060{left:113.440000pt;}
.x2_c00060{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_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_c59157fb18bbbb622ac10e98.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00061;src:url('chunks/assets/font_43dde89c75e12064a97aff14.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00061;src:url('chunks/assets/font_c414f5cfa2645e57d13a5ef4.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;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_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00061{vertical-align:-15.120000px;}
.v0_c00061{vertical-align:0.000000px;}
.v1_c00061{vertical-align:15.294600px;}
.v4_c00061{vertical-align:24.119400px;}
.v3_c00061{vertical-align:29.880000px;}
.ls15_c00061{letter-spacing:-0.151200px;}
.ls1d_c00061{letter-spacing:-0.054108px;}
.ls13_c00061{letter-spacing:-0.048096px;}
.ls2b_c00061{letter-spacing:-0.047880px;}
.ls26_c00061{letter-spacing:-0.043200px;}
.ls1e_c00061{letter-spacing:-0.036072px;}
.ls17_c00061{letter-spacing:-0.036000px;}
.ls1a_c00061{letter-spacing:-0.030060px;}
.ls21_c00061{letter-spacing:-0.028800px;}
.ls1c_c00061{letter-spacing:-0.024048px;}
.ls18_c00061{letter-spacing:-0.021600px;}
.ls12_c00061{letter-spacing:-0.018036px;}
.ls19_c00061{letter-spacing:-0.014400px;}
.ls27_c00061{letter-spacing:-0.011664px;}
.ls2a_c00061{letter-spacing:-0.009576px;}
.ls29_c00061{letter-spacing:-0.007776px;}
.ls23_c00061{letter-spacing:-0.007200px;}
.ls1b_c00061{letter-spacing:-0.006012px;}
.ls28_c00061{letter-spacing:-0.003888px;}
.ls14_c00061{letter-spacing:0.000000px;}
.ls8_c00061{letter-spacing:0.006012px;}
.lsa_c00061{letter-spacing:0.019152px;}
.ls1_c00061{letter-spacing:0.021600px;}
.ls7_c00061{letter-spacing:0.024048px;}
.lsd_c00061{letter-spacing:0.028728px;}
.ls3_c00061{letter-spacing:0.030060px;}
.ls9_c00061{letter-spacing:0.033516px;}
.ls25_c00061{letter-spacing:0.036000px;}
.ls0_c00061{letter-spacing:0.036072px;}
.lsb_c00061{letter-spacing:0.043092px;}
.ls5_c00061{letter-spacing:0.048096px;}
.ls16_c00061{letter-spacing:0.050400px;}
.lsc_c00061{letter-spacing:0.052668px;}
.ls6_c00061{letter-spacing:0.054108px;}
.ls22_c00061{letter-spacing:0.054756px;}
.ls4_c00061{letter-spacing:0.060120px;}
.ls11_c00061{letter-spacing:0.071820px;}
.ls2_c00061{letter-spacing:0.078156px;}
.ls24_c00061{letter-spacing:0.093600px;}
.lse_c00061{letter-spacing:0.104040px;}
.ls1f_c00061{letter-spacing:0.136080px;}
.ls20_c00061{letter-spacing:0.168336px;}
.ls10_c00061{letter-spacing:0.306720px;}
.lsf_c00061{letter-spacing:0.464040px;}
.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;}
}
.ws2_c00061{word-spacing:-10.800864px;}
.ws1_c00061{word-spacing:-10.584756px;}
.ws0_c00061{word-spacing:-9.856080px;}
.ws31_c00061{word-spacing:-0.014364px;}
.ws32_c00061{word-spacing:-0.009576px;}
.ws21_c00061{word-spacing:-0.007200px;}
.ws6_c00061{word-spacing:0.000000px;}
.ws1d_c00061{word-spacing:0.042084px;}
.ws3_c00061{word-spacing:0.054108px;}
.wsc_c00061{word-spacing:0.057600px;}
.wse_c00061{word-spacing:0.066132px;}
.ws30_c00061{word-spacing:0.072000px;}
.wsb_c00061{word-spacing:0.108000px;}
.ws4_c00061{word-spacing:0.108216px;}
.ws5_c00061{word-spacing:0.138276px;}
.wsd_c00061{word-spacing:0.372744px;}
.ws11_c00061{word-spacing:0.751500px;}
.ws34_c00061{word-spacing:1.043784px;}
.ws33_c00061{word-spacing:1.053360px;}
.ws18_c00061{word-spacing:1.142280px;}
.ws17_c00061{word-spacing:1.166328px;}
.ws19_c00061{word-spacing:1.196388px;}
.ws1a_c00061{word-spacing:1.226448px;}
.ws1c_c00061{word-spacing:1.490976px;}
.ws12_c00061{word-spacing:1.839672px;}
.ws1b_c00061{word-spacing:1.923840px;}
.ws25_c00061{word-spacing:2.124000px;}
.ws24_c00061{word-spacing:2.232000px;}
.ws2c_c00061{word-spacing:3.600000px;}
.ws2b_c00061{word-spacing:3.823200px;}
.ws8_c00061{word-spacing:4.269600px;}
.ws7_c00061{word-spacing:4.298400px;}
.ws13_c00061{word-spacing:4.382748px;}
.ws14_c00061{word-spacing:5.074128px;}
.ws16_c00061{word-spacing:7.268508px;}
.ws15_c00061{word-spacing:7.298568px;}
.ws28_c00061{word-spacing:7.862400px;}
.ws27_c00061{word-spacing:7.927200px;}
.ws2e_c00061{word-spacing:8.186400px;}
.ws2d_c00061{word-spacing:8.272800px;}
.ws35_c00061{word-spacing:8.963136px;}
.ws36_c00061{word-spacing:8.972712px;}
.ws26_c00061{word-spacing:9.734400px;}
.ws1e_c00061{word-spacing:12.268800px;}
.ws29_c00061{word-spacing:12.607200px;}
.ws2a_c00061{word-spacing:12.693600px;}
.wsf_c00061{word-spacing:13.021992px;}
.ws10_c00061{word-spacing:13.082112px;}
.ws9_c00061{word-spacing:17.229600px;}
.wsa_c00061{word-spacing:17.416800px;}
.ws2f_c00061{word-spacing:20.887200px;}
.ws1f_c00061{word-spacing:28.440000px;}
.ws20_c00061{word-spacing:28.447200px;}
.ws23_c00061{word-spacing:30.823200px;}
.ws22_c00061{word-spacing:31.060800px;}
.ws3b_c00061{word-spacing:49.627620px;}
.ws39_c00061{word-spacing:49.646772px;}
.ws37_c00061{word-spacing:49.670712px;}
.ws3a_c00061{word-spacing:49.747320px;}
.ws38_c00061{word-spacing:50.068116px;}
._0_c00061{margin-left:-1.142280px;}
._1_c00061{width:1.080000px;}
._2_c00061{width:50.402232px;}
.fc0_c00061{color:rgb(0,0,0);}
.fs6_c00061{font-size:29.880000px;}
.fs3_c00061{font-size:38.880000px;}
.fs4_c00061{font-size:42.120000px;}
.fs5_c00061{font-size:47.880000px;}
.fs2_c00061{font-size:54.000000px;}
.fs0_c00061{font-size:60.120000px;}
.fs1_c00061{font-size:72.000000px;}
.y0_c00061{bottom:0.000000px;}
.y3_c00061{bottom:57.450450px;}
.y4_c00061{bottom:61.410450px;}
.y2c_c00061{bottom:113.704920px;}
.y2b_c00061{bottom:132.066900px;}
.y2a_c00061{bottom:150.333120px;}
.y29_c00061{bottom:168.599340px;}
.y28_c00061{bottom:182.475030px;}
.y27_c00061{bottom:196.240530px;}
.y26_c00061{bottom:210.006030px;}
.y25_c00061{bottom:228.368010px;}
.y24_c00061{bottom:246.634230px;}
.y23_c00061{bottom:264.900450px;}
.y22_c00061{bottom:280.110450px;}
.y21_c00061{bottom:300.810450px;}
.y20_c00061{bottom:321.510450px;}
.y1f_c00061{bottom:411.690600px;}
.y1e_c00061{bottom:446.160600px;}
.y1d_c00061{bottom:480.540450px;}
.y1c_c00061{bottom:515.010450px;}
.y1b_c00061{bottom:549.390450px;}
.y1a_c00061{bottom:583.860450px;}
.y19_c00061{bottom:618.240450px;}
.y18_c00061{bottom:652.710450px;}
.y17_c00061{bottom:687.090450px;}
.y16_c00061{bottom:730.560450px;}
.y15_c00061{bottom:764.940450px;}
.y14_c00061{bottom:799.410450px;}
.y13_c00061{bottom:836.806800px;}
.y12_c00061{bottom:853.730580px;}
.y11_c00061{bottom:870.564180px;}
.y10_c00061{bottom:887.487960px;}
.yf_c00061{bottom:904.321560px;}
.ye_c00061{bottom:921.245340px;}
.yd_c00061{bottom:938.078940px;}
.yc_c00061{bottom:955.002720px;}
.yb_c00061{bottom:971.836320px;}
.ya_c00061{bottom:988.760100px;}
.y9_c00061{bottom:1014.596670px;}
.y8_c00061{bottom:1031.520450px;}
.y7_c00061{bottom:1072.290450px;}
.y6_c00061{bottom:1106.760450px;}
.y5_c00061{bottom:1141.140450px;}
.y2_c00061{bottom:1173.810450px;}
.y1_c00061{bottom:1196.850450px;}
.h2_c00061{height:47.988281px;}
.h7_c00061{height:49.937344px;}
.h1_c00061{height:50.315273px;}
.h5_c00061{height:50.489873px;}
.h8_c00061{height:55.225586px;}
.h3_c00061{height:56.320312px;}
.h4_c00061{height:60.257812px;}
.h6_c00061{height:65.130820px;}
.h0_c00061{height:1263.000000px;}
.w1_c00061{width:892.500000px;}
.w0_c00061{width:892.830000px;}
.x0_c00061{left:0.000000px;}
.x2_c00061{left:127.620000px;}
.x7_c00061{left:141.110190px;}
.x1_c00061{left:145.440000px;}
.x6_c00061{left:154.620000px;}
.x5_c00061{left:180.810000px;}
.x4_c00061{left:439.020000px;}
.x3_c00061{left:446.490000px;}
@media print{
.v2_c00061{vertical-align:-13.440000pt;}
.v0_c00061{vertical-align:0.000000pt;}
.v1_c00061{vertical-align:13.595200pt;}
.v4_c00061{vertical-align:21.439467pt;}
.v3_c00061{vertical-align:26.560000pt;}
.ls15_c00061{letter-spacing:-0.134400pt;}
.ls1d_c00061{letter-spacing:-0.048096pt;}
.ls13_c00061{letter-spacing:-0.042752pt;}
.ls2b_c00061{letter-spacing:-0.042560pt;}
.ls26_c00061{letter-spacing:-0.038400pt;}
.ls1e_c00061{letter-spacing:-0.032064pt;}
.ls17_c00061{letter-spacing:-0.032000pt;}
.ls1a_c00061{letter-spacing:-0.026720pt;}
.ls21_c00061{letter-spacing:-0.025600pt;}
.ls1c_c00061{letter-spacing:-0.021376pt;}
.ls18_c00061{letter-spacing:-0.019200pt;}
.ls12_c00061{letter-spacing:-0.016032pt;}
.ls19_c00061{letter-spacing:-0.012800pt;}
.ls27_c00061{letter-spacing:-0.010368pt;}
.ls2a_c00061{letter-spacing:-0.008512pt;}
.ls29_c00061{letter-spacing:-0.006912pt;}
.ls23_c00061{letter-spacing:-0.006400pt;}
.ls1b_c00061{letter-spacing:-0.005344pt;}
.ls28_c00061{letter-spacing:-0.003456pt;}
.ls14_c00061{letter-spacing:0.000000pt;}
.ls8_c00061{letter-spacing:0.005344pt;}
.lsa_c00061{letter-spacing:0.017024pt;}
.ls1_c00061{letter-spacing:0.019200pt;}
.ls7_c00061{letter-spacing:0.021376pt;}
.lsd_c00061{letter-spacing:0.025536pt;}
.ls3_c00061{letter-spacing:0.026720pt;}
.ls9_c00061{letter-spacing:0.029792pt;}
.ls25_c00061{letter-spacing:0.032000pt;}
.ls0_c00061{letter-spacing:0.032064pt;}
.lsb_c00061{letter-spacing:0.038304pt;}
.ls5_c00061{letter-spacing:0.042752pt;}
.ls16_c00061{letter-spacing:0.044800pt;}
.lsc_c00061{letter-spacing:0.046816pt;}
.ls6_c00061{letter-spacing:0.048096pt;}
.ls22_c00061{letter-spacing:0.048672pt;}
.ls4_c00061{letter-spacing:0.053440pt;}
.ls11_c00061{letter-spacing:0.063840pt;}
.ls2_c00061{letter-spacing:0.069472pt;}
.ls24_c00061{letter-spacing:0.083200pt;}
.lse_c00061{letter-spacing:0.092480pt;}
.ls1f_c00061{letter-spacing:0.120960pt;}
.ls20_c00061{letter-spacing:0.149632pt;}
.ls10_c00061{letter-spacing:0.272640pt;}
.lsf_c00061{letter-spacing:0.412480pt;}
.ws2_c00061{word-spacing:-9.600768pt;}
.ws1_c00061{word-spacing:-9.408672pt;}
.ws0_c00061{word-spacing:-8.760960pt;}
.ws31_c00061{word-spacing:-0.012768pt;}
.ws32_c00061{word-spacing:-0.008512pt;}
.ws21_c00061{word-spacing:-0.006400pt;}
.ws6_c00061{word-spacing:0.000000pt;}
.ws1d_c00061{word-spacing:0.037408pt;}
.ws3_c00061{word-spacing:0.048096pt;}
.wsc_c00061{word-spacing:0.051200pt;}
.wse_c00061{word-spacing:0.058784pt;}
.ws30_c00061{word-spacing:0.064000pt;}
.wsb_c00061{word-spacing:0.096000pt;}
.ws4_c00061{word-spacing:0.096192pt;}
.ws5_c00061{word-spacing:0.122912pt;}
.wsd_c00061{word-spacing:0.331328pt;}
.ws11_c00061{word-spacing:0.668000pt;}
.ws34_c00061{word-spacing:0.927808pt;}
.ws33_c00061{word-spacing:0.936320pt;}
.ws18_c00061{word-spacing:1.015360pt;}
.ws17_c00061{word-spacing:1.036736pt;}
.ws19_c00061{word-spacing:1.063456pt;}
.ws1a_c00061{word-spacing:1.090176pt;}
.ws1c_c00061{word-spacing:1.325312pt;}
.ws12_c00061{word-spacing:1.635264pt;}
.ws1b_c00061{word-spacing:1.710080pt;}
.ws25_c00061{word-spacing:1.888000pt;}
.ws24_c00061{word-spacing:1.984000pt;}
.ws2c_c00061{word-spacing:3.200000pt;}
.ws2b_c00061{word-spacing:3.398400pt;}
.ws8_c00061{word-spacing:3.795200pt;}
.ws7_c00061{word-spacing:3.820800pt;}
.ws13_c00061{word-spacing:3.895776pt;}
.ws14_c00061{word-spacing:4.510336pt;}
.ws16_c00061{word-spacing:6.460896pt;}
.ws15_c00061{word-spacing:6.487616pt;}
.ws28_c00061{word-spacing:6.988800pt;}
.ws27_c00061{word-spacing:7.046400pt;}
.ws2e_c00061{word-spacing:7.276800pt;}
.ws2d_c00061{word-spacing:7.353600pt;}
.ws35_c00061{word-spacing:7.967232pt;}
.ws36_c00061{word-spacing:7.975744pt;}
.ws26_c00061{word-spacing:8.652800pt;}
.ws1e_c00061{word-spacing:10.905600pt;}
.ws29_c00061{word-spacing:11.206400pt;}
.ws2a_c00061{word-spacing:11.283200pt;}
.wsf_c00061{word-spacing:11.575104pt;}
.ws10_c00061{word-spacing:11.628544pt;}
.ws9_c00061{word-spacing:15.315200pt;}
.wsa_c00061{word-spacing:15.481600pt;}
.ws2f_c00061{word-spacing:18.566400pt;}
.ws1f_c00061{word-spacing:25.280000pt;}
.ws20_c00061{word-spacing:25.286400pt;}
.ws23_c00061{word-spacing:27.398400pt;}
.ws22_c00061{word-spacing:27.609600pt;}
.ws3b_c00061{word-spacing:44.113440pt;}
.ws39_c00061{word-spacing:44.130464pt;}
.ws37_c00061{word-spacing:44.151744pt;}
.ws3a_c00061{word-spacing:44.219840pt;}
.ws38_c00061{word-spacing:44.504992pt;}
._0_c00061{margin-left:-1.015360pt;}
._1_c00061{width:0.960000pt;}
._2_c00061{width:44.801984pt;}
.fs6_c00061{font-size:26.560000pt;}
.fs3_c00061{font-size:34.560000pt;}
.fs4_c00061{font-size:37.440000pt;}
.fs5_c00061{font-size:42.560000pt;}
.fs2_c00061{font-size:48.000000pt;}
.fs0_c00061{font-size:53.440000pt;}
.fs1_c00061{font-size:64.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y3_c00061{bottom:51.067067pt;}
.y4_c00061{bottom:54.587067pt;}
.y2c_c00061{bottom:101.071040pt;}
.y2b_c00061{bottom:117.392800pt;}
.y2a_c00061{bottom:133.629440pt;}
.y29_c00061{bottom:149.866080pt;}
.y28_c00061{bottom:162.200027pt;}
.y27_c00061{bottom:174.436027pt;}
.y26_c00061{bottom:186.672027pt;}
.y25_c00061{bottom:202.993787pt;}
.y24_c00061{bottom:219.230427pt;}
.y23_c00061{bottom:235.467067pt;}
.y22_c00061{bottom:248.987067pt;}
.y21_c00061{bottom:267.387067pt;}
.y20_c00061{bottom:285.787067pt;}
.y1f_c00061{bottom:365.947200pt;}
.y1e_c00061{bottom:396.587200pt;}
.y1d_c00061{bottom:427.147067pt;}
.y1c_c00061{bottom:457.787067pt;}
.y1b_c00061{bottom:488.347067pt;}
.y1a_c00061{bottom:518.987067pt;}
.y19_c00061{bottom:549.547067pt;}
.y18_c00061{bottom:580.187067pt;}
.y17_c00061{bottom:610.747067pt;}
.y16_c00061{bottom:649.387067pt;}
.y15_c00061{bottom:679.947067pt;}
.y14_c00061{bottom:710.587067pt;}
.y13_c00061{bottom:743.828267pt;}
.y12_c00061{bottom:758.871627pt;}
.y11_c00061{bottom:773.834827pt;}
.y10_c00061{bottom:788.878187pt;}
.yf_c00061{bottom:803.841387pt;}
.ye_c00061{bottom:818.884747pt;}
.yd_c00061{bottom:833.847947pt;}
.yc_c00061{bottom:848.891307pt;}
.yb_c00061{bottom:863.854507pt;}
.ya_c00061{bottom:878.897867pt;}
.y9_c00061{bottom:901.863707pt;}
.y8_c00061{bottom:916.907067pt;}
.y7_c00061{bottom:953.147067pt;}
.y6_c00061{bottom:983.787067pt;}
.y5_c00061{bottom:1014.347067pt;}
.y2_c00061{bottom:1043.387067pt;}
.y1_c00061{bottom:1063.867067pt;}
.h2_c00061{height:42.656250pt;}
.h7_c00061{height:44.388750pt;}
.h1_c00061{height:44.724687pt;}
.h5_c00061{height:44.879887pt;}
.h8_c00061{height:49.089410pt;}
.h3_c00061{height:50.062500pt;}
.h4_c00061{height:53.562500pt;}
.h6_c00061{height:57.894063pt;}
.h0_c00061{height:1122.666667pt;}
.w1_c00061{width:793.333333pt;}
.w0_c00061{width:793.626667pt;}
.x0_c00061{left:0.000000pt;}
.x2_c00061{left:113.440000pt;}
.x7_c00061{left:125.431280pt;}
.x1_c00061{left:129.280000pt;}
.x6_c00061{left:137.440000pt;}
.x5_c00061{left:160.720000pt;}
.x4_c00061{left:390.240000pt;}
.x3_c00061{left:396.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_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_d62bd0a2bf262838b15a799c.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.100098;font-style:normal;font-weight:normal;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_fc901a17dbd52b63a1d7dc9d.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;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_c00062;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00062;src:url('chunks/assets/font_0594f7ae49128a1fc4a6fb14.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00062;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00062{font-family:ff5_c00062;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_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;}
.v1_c00062{vertical-align:15.840000px;}
.v2_c00062{vertical-align:29.880000px;}
.ls8_c00062{letter-spacing:-0.151200px;}
.lsf_c00062{letter-spacing:-0.036000px;}
.lse_c00062{letter-spacing:-0.031248px;}
.ls13_c00062{letter-spacing:-0.028800px;}
.ls9_c00062{letter-spacing:-0.021600px;}
.lsc_c00062{letter-spacing:-0.015624px;}
.lsa_c00062{letter-spacing:-0.014400px;}
.ls12_c00062{letter-spacing:-0.007200px;}
.ls7_c00062{letter-spacing:0.000000px;}
.ls4_c00062{letter-spacing:0.007200px;}
.ls3_c00062{letter-spacing:0.014400px;}
.lsb_c00062{letter-spacing:0.021600px;}
.ls5_c00062{letter-spacing:0.033516px;}
.ls6_c00062{letter-spacing:0.043092px;}
.ls0_c00062{letter-spacing:0.048096px;}
.lsd_c00062{letter-spacing:0.054684px;}
.ls10_c00062{letter-spacing:0.054756px;}
.ls11_c00062{letter-spacing:0.093600px;}
.ls2_c00062{letter-spacing:35.154000px;}
.ls1_c00062{letter-spacing:1227.240000px;}
.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:-19.514376px;}
.ws2_c00062{word-spacing:-17.985600px;}
.ws1_c00062{word-spacing:-10.584756px;}
.ws14_c00062{word-spacing:-0.093600px;}
.wsa_c00062{word-spacing:-0.062496px;}
.ws2e_c00062{word-spacing:-0.023940px;}
.ws9_c00062{word-spacing:-0.021600px;}
.wsc_c00062{word-spacing:-0.014400px;}
.ws2d_c00062{word-spacing:-0.014364px;}
.ws22_c00062{word-spacing:-0.007200px;}
.ws4_c00062{word-spacing:0.000000px;}
.ws3_c00062{word-spacing:0.042084px;}
.ws13_c00062{word-spacing:0.072000px;}
.ws8_c00062{word-spacing:0.108000px;}
.ws21_c00062{word-spacing:0.115200px;}
.ws15_c00062{word-spacing:0.352800px;}
.ws17_c00062{word-spacing:1.029600px;}
.ws16_c00062{word-spacing:1.137600px;}
.ws24_c00062{word-spacing:2.152800px;}
.wsb_c00062{word-spacing:2.210400px;}
.ws23_c00062{word-spacing:2.217600px;}
.ws12_c00062{word-spacing:2.923200px;}
.wse_c00062{word-spacing:4.658400px;}
.wsd_c00062{word-spacing:4.672800px;}
.ws28_c00062{word-spacing:7.574400px;}
.ws2a_c00062{word-spacing:8.949600px;}
.ws29_c00062{word-spacing:8.978400px;}
.wsf_c00062{word-spacing:10.008000px;}
.ws10_c00062{word-spacing:10.144800px;}
.ws18_c00062{word-spacing:10.375200px;}
.ws19_c00062{word-spacing:10.382400px;}
.ws1a_c00062{word-spacing:10.461600px;}
.ws20_c00062{word-spacing:12.967200px;}
.ws11_c00062{word-spacing:13.701600px;}
.ws1b_c00062{word-spacing:13.730400px;}
.ws1c_c00062{word-spacing:13.766400px;}
.ws1f_c00062{word-spacing:17.690400px;}
.ws27_c00062{word-spacing:21.981600px;}
.ws5_c00062{word-spacing:25.221600px;}
.ws6_c00062{word-spacing:25.272000px;}
.ws2c_c00062{word-spacing:25.574400px;}
.ws2b_c00062{word-spacing:25.617600px;}
.ws7_c00062{word-spacing:27.734400px;}
.ws1e_c00062{word-spacing:28.454400px;}
.ws1d_c00062{word-spacing:28.519200px;}
.ws25_c00062{word-spacing:28.807200px;}
.ws26_c00062{word-spacing:28.828800px;}
._0_c00062{margin-left:-1.322640px;}
._1_c00062{width:1.008000px;}
.fc0_c00062{color:rgb(0,0,0);}
.fs4_c00062{font-size:42.120000px;}
.fs5_c00062{font-size:47.880000px;}
.fs1_c00062{font-size:54.000000px;}
.fs0_c00062{font-size:60.120000px;}
.fs2_c00062{font-size:72.000000px;}
.fs3_c00062{font-size:78.120000px;}
.y0_c00062{bottom:0.000000px;}
.y3_c00062{bottom:57.450450px;}
.y22_c00062{bottom:113.702250px;}
.y21_c00062{bottom:132.064230px;}
.y20_c00062{bottom:150.330450px;}
.y1f_c00062{bottom:165.540450px;}
.y1e_c00062{bottom:186.240450px;}
.y1d_c00062{bottom:206.940450px;}
.y1c_c00062{bottom:258.060450px;}
.y1b_c00062{bottom:292.530450px;}
.y1a_c00062{bottom:326.910450px;}
.y19_c00062{bottom:361.380450px;}
.y18_c00062{bottom:395.760450px;}
.y17_c00062{bottom:430.230450px;}
.y16_c00062{bottom:473.610450px;}
.y15_c00062{bottom:508.080450px;}
.y14_c00062{bottom:542.460450px;}
.y13_c00062{bottom:576.930450px;}
.y12_c00062{bottom:611.310450px;}
.y11_c00062{bottom:645.780450px;}
.y10_c00062{bottom:680.160450px;}
.yf_c00062{bottom:714.630450px;}
.ye_c00062{bottom:758.010450px;}
.yd_c00062{bottom:792.480450px;}
.yc_c00062{bottom:826.860450px;}
.yb_c00062{bottom:861.330450px;}
.ya_c00062{bottom:895.710450px;}
.y9_c00062{bottom:930.180450px;}
.y8_c00062{bottom:964.560450px;}
.y7_c00062{bottom:1009.650450px;}
.y6_c00062{bottom:1072.290450px;}
.y5_c00062{bottom:1106.760450px;}
.y4_c00062{bottom:1141.140450px;}
.y2_c00062{bottom:1177.860450px;}
.y1_c00062{bottom:1196.850450px;}
.h7_c00062{height:47.988281px;}
.h8_c00062{height:49.937344px;}
.h1_c00062{height:50.315273px;}
.h2_c00062{height:56.320312px;}
.h4_c00062{height:60.257812px;}
.h6_c00062{height:65.130820px;}
.h3_c00062{height:72.160312px;}
.h5_c00062{height:81.476719px;}
.h0_c00062{height:1263.000000px;}
.w1_c00062{width:892.500000px;}
.w0_c00062{width:892.830000px;}
.x0_c00062{left:0.000000px;}
.x1_c00062{left:127.620000px;}
.x2_c00062{left:180.720000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.v1_c00062{vertical-align:14.080000pt;}
.v2_c00062{vertical-align:26.560000pt;}
.ls8_c00062{letter-spacing:-0.134400pt;}
.lsf_c00062{letter-spacing:-0.032000pt;}
.lse_c00062{letter-spacing:-0.027776pt;}
.ls13_c00062{letter-spacing:-0.025600pt;}
.ls9_c00062{letter-spacing:-0.019200pt;}
.lsc_c00062{letter-spacing:-0.013888pt;}
.lsa_c00062{letter-spacing:-0.012800pt;}
.ls12_c00062{letter-spacing:-0.006400pt;}
.ls7_c00062{letter-spacing:0.000000pt;}
.ls4_c00062{letter-spacing:0.006400pt;}
.ls3_c00062{letter-spacing:0.012800pt;}
.lsb_c00062{letter-spacing:0.019200pt;}
.ls5_c00062{letter-spacing:0.029792pt;}
.ls6_c00062{letter-spacing:0.038304pt;}
.ls0_c00062{letter-spacing:0.042752pt;}
.lsd_c00062{letter-spacing:0.048608pt;}
.ls10_c00062{letter-spacing:0.048672pt;}
.ls11_c00062{letter-spacing:0.083200pt;}
.ls2_c00062{letter-spacing:31.248000pt;}
.ls1_c00062{letter-spacing:1090.880000pt;}
.ws0_c00062{word-spacing:-17.346112pt;}
.ws2_c00062{word-spacing:-15.987200pt;}
.ws1_c00062{word-spacing:-9.408672pt;}
.ws14_c00062{word-spacing:-0.083200pt;}
.wsa_c00062{word-spacing:-0.055552pt;}
.ws2e_c00062{word-spacing:-0.021280pt;}
.ws9_c00062{word-spacing:-0.019200pt;}
.wsc_c00062{word-spacing:-0.012800pt;}
.ws2d_c00062{word-spacing:-0.012768pt;}
.ws22_c00062{word-spacing:-0.006400pt;}
.ws4_c00062{word-spacing:0.000000pt;}
.ws3_c00062{word-spacing:0.037408pt;}
.ws13_c00062{word-spacing:0.064000pt;}
.ws8_c00062{word-spacing:0.096000pt;}
.ws21_c00062{word-spacing:0.102400pt;}
.ws15_c00062{word-spacing:0.313600pt;}
.ws17_c00062{word-spacing:0.915200pt;}
.ws16_c00062{word-spacing:1.011200pt;}
.ws24_c00062{word-spacing:1.913600pt;}
.wsb_c00062{word-spacing:1.964800pt;}
.ws23_c00062{word-spacing:1.971200pt;}
.ws12_c00062{word-spacing:2.598400pt;}
.wse_c00062{word-spacing:4.140800pt;}
.wsd_c00062{word-spacing:4.153600pt;}
.ws28_c00062{word-spacing:6.732800pt;}
.ws2a_c00062{word-spacing:7.955200pt;}
.ws29_c00062{word-spacing:7.980800pt;}
.wsf_c00062{word-spacing:8.896000pt;}
.ws10_c00062{word-spacing:9.017600pt;}
.ws18_c00062{word-spacing:9.222400pt;}
.ws19_c00062{word-spacing:9.228800pt;}
.ws1a_c00062{word-spacing:9.299200pt;}
.ws20_c00062{word-spacing:11.526400pt;}
.ws11_c00062{word-spacing:12.179200pt;}
.ws1b_c00062{word-spacing:12.204800pt;}
.ws1c_c00062{word-spacing:12.236800pt;}
.ws1f_c00062{word-spacing:15.724800pt;}
.ws27_c00062{word-spacing:19.539200pt;}
.ws5_c00062{word-spacing:22.419200pt;}
.ws6_c00062{word-spacing:22.464000pt;}
.ws2c_c00062{word-spacing:22.732800pt;}
.ws2b_c00062{word-spacing:22.771200pt;}
.ws7_c00062{word-spacing:24.652800pt;}
.ws1e_c00062{word-spacing:25.292800pt;}
.ws1d_c00062{word-spacing:25.350400pt;}
.ws25_c00062{word-spacing:25.606400pt;}
.ws26_c00062{word-spacing:25.625600pt;}
._0_c00062{margin-left:-1.175680pt;}
._1_c00062{width:0.896000pt;}
.fs4_c00062{font-size:37.440000pt;}
.fs5_c00062{font-size:42.560000pt;}
.fs1_c00062{font-size:48.000000pt;}
.fs0_c00062{font-size:53.440000pt;}
.fs2_c00062{font-size:64.000000pt;}
.fs3_c00062{font-size:69.440000pt;}
.y0_c00062{bottom:0.000000pt;}
.y3_c00062{bottom:51.067067pt;}
.y22_c00062{bottom:101.068667pt;}
.y21_c00062{bottom:117.390427pt;}
.y20_c00062{bottom:133.627067pt;}
.y1f_c00062{bottom:147.147067pt;}
.y1e_c00062{bottom:165.547067pt;}
.y1d_c00062{bottom:183.947067pt;}
.y1c_c00062{bottom:229.387067pt;}
.y1b_c00062{bottom:260.027067pt;}
.y1a_c00062{bottom:290.587067pt;}
.y19_c00062{bottom:321.227067pt;}
.y18_c00062{bottom:351.787067pt;}
.y17_c00062{bottom:382.427067pt;}
.y16_c00062{bottom:420.987067pt;}
.y15_c00062{bottom:451.627067pt;}
.y14_c00062{bottom:482.187067pt;}
.y13_c00062{bottom:512.827067pt;}
.y12_c00062{bottom:543.387067pt;}
.y11_c00062{bottom:574.027067pt;}
.y10_c00062{bottom:604.587067pt;}
.yf_c00062{bottom:635.227067pt;}
.ye_c00062{bottom:673.787067pt;}
.yd_c00062{bottom:704.427067pt;}
.yc_c00062{bottom:734.987067pt;}
.yb_c00062{bottom:765.627067pt;}
.ya_c00062{bottom:796.187067pt;}
.y9_c00062{bottom:826.827067pt;}
.y8_c00062{bottom:857.387067pt;}
.y7_c00062{bottom:897.467067pt;}
.y6_c00062{bottom:953.147067pt;}
.y5_c00062{bottom:983.787067pt;}
.y4_c00062{bottom:1014.347067pt;}
.y2_c00062{bottom:1046.987067pt;}
.y1_c00062{bottom:1063.867067pt;}
.h7_c00062{height:42.656250pt;}
.h8_c00062{height:44.388750pt;}
.h1_c00062{height:44.724687pt;}
.h2_c00062{height:50.062500pt;}
.h4_c00062{height:53.562500pt;}
.h6_c00062{height:57.894063pt;}
.h3_c00062{height:64.142500pt;}
.h5_c00062{height:72.423750pt;}
.h0_c00062{height:1122.666667pt;}
.w1_c00062{width:793.333333pt;}
.w0_c00062{width:793.626667pt;}
.x0_c00062{left:0.000000pt;}
.x1_c00062{left:113.440000pt;}
.x2_c00062{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_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_681a02e477c329443e591538.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00063;src:url('chunks/assets/font_97306ce83c5adbe23d53dcd3.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00063;src:url('chunks/assets/font_aaa7aa44c5ad3a4ceafb0152.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;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_c00063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.v1_c00063{vertical-align:29.880000px;}
.ls15_c00063{letter-spacing:-0.151200px;}
.ls17_c00063{letter-spacing:-0.057600px;}
.ls13_c00063{letter-spacing:-0.048096px;}
.ls16_c00063{letter-spacing:-0.036000px;}
.ls1c_c00063{letter-spacing:-0.028800px;}
.ls1a_c00063{letter-spacing:-0.021600px;}
.ls12_c00063{letter-spacing:-0.018036px;}
.ls1f_c00063{letter-spacing:-0.015552px;}
.ls1d_c00063{letter-spacing:-0.014400px;}
.ls21_c00063{letter-spacing:-0.011664px;}
.ls1b_c00063{letter-spacing:-0.007200px;}
.ls20_c00063{letter-spacing:-0.003888px;}
.ls14_c00063{letter-spacing:0.000000px;}
.lsa_c00063{letter-spacing:0.004788px;}
.ls1_c00063{letter-spacing:0.007200px;}
.ls4_c00063{letter-spacing:0.007776px;}
.ls3_c00063{letter-spacing:0.014364px;}
.ls2_c00063{letter-spacing:0.014400px;}
.ls8_c00063{letter-spacing:0.019152px;}
.ls1e_c00063{letter-spacing:0.021600px;}
.ls9_c00063{letter-spacing:0.023940px;}
.ls5_c00063{letter-spacing:0.033516px;}
.ls0_c00063{letter-spacing:0.036072px;}
.ls11_c00063{letter-spacing:0.038304px;}
.ls7_c00063{letter-spacing:0.043092px;}
.ls18_c00063{letter-spacing:0.054756px;}
.lse_c00063{letter-spacing:0.057456px;}
.ls6_c00063{letter-spacing:0.062244px;}
.ls22_c00063{letter-spacing:0.071820px;}
.ls19_c00063{letter-spacing:0.093600px;}
.lsb_c00063{letter-spacing:0.104040px;}
.ls10_c00063{letter-spacing:0.105336px;}
.lsd_c00063{letter-spacing:0.189360px;}
.ls23_c00063{letter-spacing:0.346032px;}
.lsc_c00063{letter-spacing:0.369360px;}
.lsf_c00063{letter-spacing:0.464040px;}
.ls24_c00063{letter-spacing:0.737352px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00063{word-spacing:-17.942400px;}
.ws5_c00063{word-spacing:-13.344156px;}
.ws2_c00063{word-spacing:-13.310640px;}
.ws3_c00063{word-spacing:-10.816416px;}
.ws4_c00063{word-spacing:-10.804752px;}
.ws6_c00063{word-spacing:-10.793088px;}
.ws1_c00063{word-spacing:-10.584756px;}
.ws37_c00063{word-spacing:-0.014364px;}
.ws34_c00063{word-spacing:-0.004788px;}
.wsa_c00063{word-spacing:0.000000px;}
.ws35_c00063{word-spacing:0.004788px;}
.ws36_c00063{word-spacing:0.014364px;}
.ws12_c00063{word-spacing:0.036000px;}
.ws7_c00063{word-spacing:0.054108px;}
.ws8_c00063{word-spacing:0.108216px;}
.ws2d_c00063{word-spacing:0.122400px;}
.ws9_c00063{word-spacing:0.138276px;}
.ws19_c00063{word-spacing:1.620000px;}
.ws18_c00063{word-spacing:1.742400px;}
.ws17_c00063{word-spacing:1.814400px;}
.ws3e_c00063{word-spacing:2.073204px;}
.ws3f_c00063{word-spacing:2.116296px;}
.ws3b_c00063{word-spacing:2.154600px;}
.ws3c_c00063{word-spacing:2.173392px;}
.ws3d_c00063{word-spacing:2.519424px;}
.ws13_c00063{word-spacing:2.527200px;}
.ws14_c00063{word-spacing:2.563200px;}
.ws32_c00063{word-spacing:2.834496px;}
.ws31_c00063{word-spacing:2.853648px;}
.ws33_c00063{word-spacing:2.863224px;}
.wse_c00063{word-spacing:2.887200px;}
.wsf_c00063{word-spacing:2.930400px;}
.ws27_c00063{word-spacing:3.254400px;}
.ws10_c00063{word-spacing:3.945600px;}
.ws11_c00063{word-spacing:3.981600px;}
.ws3a_c00063{word-spacing:6.439860px;}
.ws39_c00063{word-spacing:6.463800px;}
.ws1b_c00063{word-spacing:6.472800px;}
.ws38_c00063{word-spacing:6.478164px;}
.ws1a_c00063{word-spacing:6.544800px;}
.ws1e_c00063{word-spacing:8.071200px;}
.ws1d_c00063{word-spacing:8.193600px;}
.ws1c_c00063{word-spacing:8.294400px;}
.ws2b_c00063{word-spacing:9.007200px;}
.ws2c_c00063{word-spacing:9.043200px;}
.ws25_c00063{word-spacing:9.360000px;}
.ws26_c00063{word-spacing:9.403200px;}
.ws29_c00063{word-spacing:9.777600px;}
.ws28_c00063{word-spacing:9.828000px;}
.wsd_c00063{word-spacing:10.101600px;}
.ws23_c00063{word-spacing:12.168000px;}
.ws30_c00063{word-spacing:12.195036px;}
.ws2f_c00063{word-spacing:12.223764px;}
.ws2e_c00063{word-spacing:12.242916px;}
.ws24_c00063{word-spacing:12.304800px;}
.ws15_c00063{word-spacing:13.276800px;}
.ws16_c00063{word-spacing:13.291200px;}
.ws22_c00063{word-spacing:14.018400px;}
.ws21_c00063{word-spacing:14.140800px;}
.ws2a_c00063{word-spacing:14.760000px;}
.ws20_c00063{word-spacing:35.265600px;}
.ws1f_c00063{word-spacing:35.388000px;}
.wsc_c00063{word-spacing:35.568000px;}
.wsb_c00063{word-spacing:35.676000px;}
._0_c00063{margin-left:-1.142280px;}
._1_c00063{width:1.296000px;}
._3_c00063{width:6.435072px;}
._2_c00063{width:12.341016px;}
.fc0_c00063{color:rgb(0,0,0);}
.fs5_c00063{font-size:38.880000px;}
.fs3_c00063{font-size:42.120000px;}
.fs4_c00063{font-size:47.880000px;}
.fs2_c00063{font-size:54.000000px;}
.fs0_c00063{font-size:60.120000px;}
.fs1_c00063{font-size:72.000000px;}
.y0_c00063{bottom:0.000000px;}
.y3_c00063{bottom:57.450450px;}
.y4_c00063{bottom:61.410450px;}
.y26_c00063{bottom:113.699190px;}
.y25_c00063{bottom:127.564950px;}
.y24_c00063{bottom:141.334230px;}
.y23_c00063{bottom:159.602250px;}
.y22_c00063{bottom:177.964230px;}
.y21_c00063{bottom:196.237470px;}
.y20_c00063{bottom:214.503690px;}
.y1f_c00063{bottom:228.269190px;}
.y1e_c00063{bottom:242.130450px;}
.y1d_c00063{bottom:257.340450px;}
.y1c_c00063{bottom:278.040450px;}
.y1b_c00063{bottom:298.740450px;}
.y1a_c00063{bottom:391.260450px;}
.y19_c00063{bottom:425.640450px;}
.y18_c00063{bottom:460.110450px;}
.y17_c00063{bottom:494.490450px;}
.y16_c00063{bottom:528.960450px;}
.y15_c00063{bottom:563.340450px;}
.y14_c00063{bottom:597.810450px;}
.y13_c00063{bottom:632.190450px;}
.y12_c00063{bottom:666.660450px;}
.y11_c00063{bottom:701.040450px;}
.y10_c00063{bottom:744.510450px;}
.yf_c00063{bottom:778.890450px;}
.ye_c00063{bottom:813.360450px;}
.yd_c00063{bottom:847.740450px;}
.yc_c00063{bottom:882.210450px;}
.yb_c00063{bottom:916.590450px;}
.ya_c00063{bottom:960.060450px;}
.y9_c00063{bottom:994.440450px;}
.y8_c00063{bottom:1028.910450px;}
.y7_c00063{bottom:1063.290450px;}
.y6_c00063{bottom:1106.760450px;}
.y5_c00063{bottom:1141.140450px;}
.y2_c00063{bottom:1173.810450px;}
.y1_c00063{bottom:1196.850450px;}
.h2_c00063{height:47.988281px;}
.h7_c00063{height:49.937344px;}
.h1_c00063{height:50.315273px;}
.h3_c00063{height:56.320312px;}
.h4_c00063{height:60.257812px;}
.h5_c00063{height:65.130820px;}
.h6_c00063{height:65.131420px;}
.h0_c00063{height:1263.000000px;}
.w1_c00063{width:892.500000px;}
.w0_c00063{width:892.830000px;}
.x0_c00063{left:0.000000px;}
.x2_c00063{left:127.620000px;}
.x6_c00063{left:141.115320px;}
.x1_c00063{left:145.440000px;}
.x5_c00063{left:180.810000px;}
.x4_c00063{left:439.020000px;}
.x3_c00063{left:446.490000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.v1_c00063{vertical-align:26.560000pt;}
.ls15_c00063{letter-spacing:-0.134400pt;}
.ls17_c00063{letter-spacing:-0.051200pt;}
.ls13_c00063{letter-spacing:-0.042752pt;}
.ls16_c00063{letter-spacing:-0.032000pt;}
.ls1c_c00063{letter-spacing:-0.025600pt;}
.ls1a_c00063{letter-spacing:-0.019200pt;}
.ls12_c00063{letter-spacing:-0.016032pt;}
.ls1f_c00063{letter-spacing:-0.013824pt;}
.ls1d_c00063{letter-spacing:-0.012800pt;}
.ls21_c00063{letter-spacing:-0.010368pt;}
.ls1b_c00063{letter-spacing:-0.006400pt;}
.ls20_c00063{letter-spacing:-0.003456pt;}
.ls14_c00063{letter-spacing:0.000000pt;}
.lsa_c00063{letter-spacing:0.004256pt;}
.ls1_c00063{letter-spacing:0.006400pt;}
.ls4_c00063{letter-spacing:0.006912pt;}
.ls3_c00063{letter-spacing:0.012768pt;}
.ls2_c00063{letter-spacing:0.012800pt;}
.ls8_c00063{letter-spacing:0.017024pt;}
.ls1e_c00063{letter-spacing:0.019200pt;}
.ls9_c00063{letter-spacing:0.021280pt;}
.ls5_c00063{letter-spacing:0.029792pt;}
.ls0_c00063{letter-spacing:0.032064pt;}
.ls11_c00063{letter-spacing:0.034048pt;}
.ls7_c00063{letter-spacing:0.038304pt;}
.ls18_c00063{letter-spacing:0.048672pt;}
.lse_c00063{letter-spacing:0.051072pt;}
.ls6_c00063{letter-spacing:0.055328pt;}
.ls22_c00063{letter-spacing:0.063840pt;}
.ls19_c00063{letter-spacing:0.083200pt;}
.lsb_c00063{letter-spacing:0.092480pt;}
.ls10_c00063{letter-spacing:0.093632pt;}
.lsd_c00063{letter-spacing:0.168320pt;}
.ls23_c00063{letter-spacing:0.307584pt;}
.lsc_c00063{letter-spacing:0.328320pt;}
.lsf_c00063{letter-spacing:0.412480pt;}
.ls24_c00063{letter-spacing:0.655424pt;}
.ws0_c00063{word-spacing:-15.948800pt;}
.ws5_c00063{word-spacing:-11.861472pt;}
.ws2_c00063{word-spacing:-11.831680pt;}
.ws3_c00063{word-spacing:-9.614592pt;}
.ws4_c00063{word-spacing:-9.604224pt;}
.ws6_c00063{word-spacing:-9.593856pt;}
.ws1_c00063{word-spacing:-9.408672pt;}
.ws37_c00063{word-spacing:-0.012768pt;}
.ws34_c00063{word-spacing:-0.004256pt;}
.wsa_c00063{word-spacing:0.000000pt;}
.ws35_c00063{word-spacing:0.004256pt;}
.ws36_c00063{word-spacing:0.012768pt;}
.ws12_c00063{word-spacing:0.032000pt;}
.ws7_c00063{word-spacing:0.048096pt;}
.ws8_c00063{word-spacing:0.096192pt;}
.ws2d_c00063{word-spacing:0.108800pt;}
.ws9_c00063{word-spacing:0.122912pt;}
.ws19_c00063{word-spacing:1.440000pt;}
.ws18_c00063{word-spacing:1.548800pt;}
.ws17_c00063{word-spacing:1.612800pt;}
.ws3e_c00063{word-spacing:1.842848pt;}
.ws3f_c00063{word-spacing:1.881152pt;}
.ws3b_c00063{word-spacing:1.915200pt;}
.ws3c_c00063{word-spacing:1.931904pt;}
.ws3d_c00063{word-spacing:2.239488pt;}
.ws13_c00063{word-spacing:2.246400pt;}
.ws14_c00063{word-spacing:2.278400pt;}
.ws32_c00063{word-spacing:2.519552pt;}
.ws31_c00063{word-spacing:2.536576pt;}
.ws33_c00063{word-spacing:2.545088pt;}
.wse_c00063{word-spacing:2.566400pt;}
.wsf_c00063{word-spacing:2.604800pt;}
.ws27_c00063{word-spacing:2.892800pt;}
.ws10_c00063{word-spacing:3.507200pt;}
.ws11_c00063{word-spacing:3.539200pt;}
.ws3a_c00063{word-spacing:5.724320pt;}
.ws39_c00063{word-spacing:5.745600pt;}
.ws1b_c00063{word-spacing:5.753600pt;}
.ws38_c00063{word-spacing:5.758368pt;}
.ws1a_c00063{word-spacing:5.817600pt;}
.ws1e_c00063{word-spacing:7.174400pt;}
.ws1d_c00063{word-spacing:7.283200pt;}
.ws1c_c00063{word-spacing:7.372800pt;}
.ws2b_c00063{word-spacing:8.006400pt;}
.ws2c_c00063{word-spacing:8.038400pt;}
.ws25_c00063{word-spacing:8.320000pt;}
.ws26_c00063{word-spacing:8.358400pt;}
.ws29_c00063{word-spacing:8.691200pt;}
.ws28_c00063{word-spacing:8.736000pt;}
.wsd_c00063{word-spacing:8.979200pt;}
.ws23_c00063{word-spacing:10.816000pt;}
.ws30_c00063{word-spacing:10.840032pt;}
.ws2f_c00063{word-spacing:10.865568pt;}
.ws2e_c00063{word-spacing:10.882592pt;}
.ws24_c00063{word-spacing:10.937600pt;}
.ws15_c00063{word-spacing:11.801600pt;}
.ws16_c00063{word-spacing:11.814400pt;}
.ws22_c00063{word-spacing:12.460800pt;}
.ws21_c00063{word-spacing:12.569600pt;}
.ws2a_c00063{word-spacing:13.120000pt;}
.ws20_c00063{word-spacing:31.347200pt;}
.ws1f_c00063{word-spacing:31.456000pt;}
.wsc_c00063{word-spacing:31.616000pt;}
.wsb_c00063{word-spacing:31.712000pt;}
._0_c00063{margin-left:-1.015360pt;}
._1_c00063{width:1.152000pt;}
._3_c00063{width:5.720064pt;}
._2_c00063{width:10.969792pt;}
.fs5_c00063{font-size:34.560000pt;}
.fs3_c00063{font-size:37.440000pt;}
.fs4_c00063{font-size:42.560000pt;}
.fs2_c00063{font-size:48.000000pt;}
.fs0_c00063{font-size:53.440000pt;}
.fs1_c00063{font-size:64.000000pt;}
.y0_c00063{bottom:0.000000pt;}
.y3_c00063{bottom:51.067067pt;}
.y4_c00063{bottom:54.587067pt;}
.y26_c00063{bottom:101.065947pt;}
.y25_c00063{bottom:113.391067pt;}
.y24_c00063{bottom:125.630427pt;}
.y23_c00063{bottom:141.868667pt;}
.y22_c00063{bottom:158.190427pt;}
.y21_c00063{bottom:174.433307pt;}
.y20_c00063{bottom:190.669947pt;}
.y1f_c00063{bottom:202.905947pt;}
.y1e_c00063{bottom:215.227067pt;}
.y1d_c00063{bottom:228.747067pt;}
.y1c_c00063{bottom:247.147067pt;}
.y1b_c00063{bottom:265.547067pt;}
.y1a_c00063{bottom:347.787067pt;}
.y19_c00063{bottom:378.347067pt;}
.y18_c00063{bottom:408.987067pt;}
.y17_c00063{bottom:439.547067pt;}
.y16_c00063{bottom:470.187067pt;}
.y15_c00063{bottom:500.747067pt;}
.y14_c00063{bottom:531.387067pt;}
.y13_c00063{bottom:561.947067pt;}
.y12_c00063{bottom:592.587067pt;}
.y11_c00063{bottom:623.147067pt;}
.y10_c00063{bottom:661.787067pt;}
.yf_c00063{bottom:692.347067pt;}
.ye_c00063{bottom:722.987067pt;}
.yd_c00063{bottom:753.547067pt;}
.yc_c00063{bottom:784.187067pt;}
.yb_c00063{bottom:814.747067pt;}
.ya_c00063{bottom:853.387067pt;}
.y9_c00063{bottom:883.947067pt;}
.y8_c00063{bottom:914.587067pt;}
.y7_c00063{bottom:945.147067pt;}
.y6_c00063{bottom:983.787067pt;}
.y5_c00063{bottom:1014.347067pt;}
.y2_c00063{bottom:1043.387067pt;}
.y1_c00063{bottom:1063.867067pt;}
.h2_c00063{height:42.656250pt;}
.h7_c00063{height:44.388750pt;}
.h1_c00063{height:44.724687pt;}
.h3_c00063{height:50.062500pt;}
.h4_c00063{height:53.562500pt;}
.h5_c00063{height:57.894063pt;}
.h6_c00063{height:57.894596pt;}
.h0_c00063{height:1122.666667pt;}
.w1_c00063{width:793.333333pt;}
.w0_c00063{width:793.626667pt;}
.x0_c00063{left:0.000000pt;}
.x2_c00063{left:113.440000pt;}
.x6_c00063{left:125.435840pt;}
.x1_c00063{left:129.280000pt;}
.x5_c00063{left:160.720000pt;}
.x4_c00063{left:390.240000pt;}
.x3_c00063{left:396.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_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_f203b06f76268f907ce9285b.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.100098;font-style:normal;font-weight:normal;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_e04da54a9bfe6fd194307206.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;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_c00064;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00064;src:url('chunks/assets/font_0a14c26aa6a2850bc1f7755e.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;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_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;}
.v1_c00064{vertical-align:15.840000px;}
.v2_c00064{vertical-align:29.880000px;}
.ls14_c00064{letter-spacing:-0.151200px;}
.ls1f_c00064{letter-spacing:-0.047880px;}
.ls1c_c00064{letter-spacing:-0.043200px;}
.ls16_c00064{letter-spacing:-0.028800px;}
.ls1a_c00064{letter-spacing:-0.021600px;}
.ls20_c00064{letter-spacing:-0.015552px;}
.ls17_c00064{letter-spacing:-0.014400px;}
.ls1d_c00064{letter-spacing:-0.007776px;}
.ls15_c00064{letter-spacing:-0.007200px;}
.ls21_c00064{letter-spacing:-0.003888px;}
.ls13_c00064{letter-spacing:0.000000px;}
.lse_c00064{letter-spacing:0.004788px;}
.ls5_c00064{letter-spacing:0.007200px;}
.ls7_c00064{letter-spacing:0.014364px;}
.ls2_c00064{letter-spacing:0.014400px;}
.ls9_c00064{letter-spacing:0.028728px;}
.ls6_c00064{letter-spacing:0.028800px;}
.lsd_c00064{letter-spacing:0.033516px;}
.ls1b_c00064{letter-spacing:0.036000px;}
.ls12_c00064{letter-spacing:0.038304px;}
.lsc_c00064{letter-spacing:0.043092px;}
.lsa_c00064{letter-spacing:0.047880px;}
.ls0_c00064{letter-spacing:0.048096px;}
.lsf_c00064{letter-spacing:0.052668px;}
.ls18_c00064{letter-spacing:0.054756px;}
.ls10_c00064{letter-spacing:0.057456px;}
.ls11_c00064{letter-spacing:0.062244px;}
.ls19_c00064{letter-spacing:0.093600px;}
.lsb_c00064{letter-spacing:0.114912px;}
.ls3_c00064{letter-spacing:0.144000px;}
.ls1e_c00064{letter-spacing:0.346032px;}
.ls8_c00064{letter-spacing:0.350640px;}
.ls22_c00064{letter-spacing:0.378252px;}
.ls4_c00064{letter-spacing:62.784000px;}
.ls1_c00064{letter-spacing:1227.240000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00064{word-spacing:-17.956800px;}
.ws4_c00064{word-spacing:-13.310640px;}
.ws2_c00064{word-spacing:-11.154672px;}
.ws3_c00064{word-spacing:-10.808640px;}
.ws5_c00064{word-spacing:-10.804752px;}
.ws0_c00064{word-spacing:-10.584756px;}
.ws32_c00064{word-spacing:-0.095760px;}
.ws37_c00064{word-spacing:-0.014364px;}
.ws7_c00064{word-spacing:0.000000px;}
.ws38_c00064{word-spacing:0.004788px;}
.ws18_c00064{word-spacing:0.007200px;}
.ws39_c00064{word-spacing:0.014364px;}
.wsd_c00064{word-spacing:0.014400px;}
.ws6_c00064{word-spacing:0.042084px;}
.ws26_c00064{word-spacing:0.100800px;}
.ws25_c00064{word-spacing:0.108000px;}
.ws20_c00064{word-spacing:0.367200px;}
.ws21_c00064{word-spacing:0.417600px;}
.ws16_c00064{word-spacing:0.705600px;}
.ws17_c00064{word-spacing:0.828000px;}
.ws15_c00064{word-spacing:0.835200px;}
.ws3e_c00064{word-spacing:1.393308px;}
.ws3f_c00064{word-spacing:1.417248px;}
.wsf_c00064{word-spacing:1.720800px;}
.ws10_c00064{word-spacing:1.792800px;}
.ws1b_c00064{word-spacing:2.491200px;}
.ws1c_c00064{word-spacing:2.563200px;}
.ws13_c00064{word-spacing:2.908800px;}
.ws14_c00064{word-spacing:2.959200px;}
.ws2b_c00064{word-spacing:3.585600px;}
.ws2c_c00064{word-spacing:3.621600px;}
.ws24_c00064{word-spacing:4.629600px;}
.ws23_c00064{word-spacing:4.636800px;}
.wsb_c00064{word-spacing:4.975200px;}
.wsc_c00064{word-spacing:5.011200px;}
.ws36_c00064{word-spacing:5.367348px;}
.ws34_c00064{word-spacing:5.372136px;}
.ws35_c00064{word-spacing:5.386500px;}
.ws33_c00064{word-spacing:5.400864px;}
.ws22_c00064{word-spacing:6.141600px;}
.ws31_c00064{word-spacing:6.808536px;}
.ws30_c00064{word-spacing:6.827688px;}
.ws2d_c00064{word-spacing:6.842052px;}
.ws2e_c00064{word-spacing:6.846768px;}
.ws1f_c00064{word-spacing:7.185600px;}
.ws1e_c00064{word-spacing:7.200000px;}
.ws2f_c00064{word-spacing:7.263396px;}
.ws3b_c00064{word-spacing:7.526736px;}
.ws3a_c00064{word-spacing:7.545888px;}
.ws19_c00064{word-spacing:9.345600px;}
.ws1a_c00064{word-spacing:9.360000px;}
.wse_c00064{word-spacing:12.564000px;}
.ws12_c00064{word-spacing:13.327200px;}
.ws11_c00064{word-spacing:13.334400px;}
.ws27_c00064{word-spacing:14.076000px;}
.ws28_c00064{word-spacing:14.119200px;}
.ws8_c00064{word-spacing:14.385600px;}
.ws9_c00064{word-spacing:14.464800px;}
.wsa_c00064{word-spacing:16.588800px;}
.ws29_c00064{word-spacing:17.251200px;}
.ws2a_c00064{word-spacing:17.323200px;}
.ws1d_c00064{word-spacing:19.814400px;}
.ws3d_c00064{word-spacing:20.473488px;}
.ws3c_c00064{word-spacing:20.478276px;}
._0_c00064{margin-left:-1.322640px;}
._1_c00064{width:1.008000px;}
._2_c00064{width:5.871348px;}
.fc0_c00064{color:rgb(0,0,0);}
.fs5_c00064{font-size:38.880000px;}
.fs3_c00064{font-size:42.120000px;}
.fs4_c00064{font-size:47.880000px;}
.fs1_c00064{font-size:54.000000px;}
.fs0_c00064{font-size:60.120000px;}
.fs2_c00064{font-size:72.000000px;}
.y0_c00064{bottom:0.000000px;}
.y3_c00064{bottom:57.450450px;}
.y26_c00064{bottom:109.207470px;}
.y25_c00064{bottom:123.068730px;}
.y24_c00064{bottom:136.834230px;}
.y23_c00064{bottom:155.106750px;}
.y22_c00064{bottom:173.468730px;}
.y21_c00064{bottom:191.734950px;}
.y20_c00064{bottom:205.502970px;}
.y1f_c00064{bottom:223.864950px;}
.y1e_c00064{bottom:237.630450px;}
.y1d_c00064{bottom:252.840450px;}
.y1c_c00064{bottom:273.540450px;}
.y1b_c00064{bottom:294.240600px;}
.y1a_c00064{bottom:356.790600px;}
.y19_c00064{bottom:391.260600px;}
.y18_c00064{bottom:425.640600px;}
.y17_c00064{bottom:469.110600px;}
.y16_c00064{bottom:503.490600px;}
.y15_c00064{bottom:537.960600px;}
.y14_c00064{bottom:572.340600px;}
.y13_c00064{bottom:606.810600px;}
.y12_c00064{bottom:641.190600px;}
.y11_c00064{bottom:675.660600px;}
.y10_c00064{bottom:710.040600px;}
.yf_c00064{bottom:744.510600px;}
.ye_c00064{bottom:778.890600px;}
.yd_c00064{bottom:822.360450px;}
.yc_c00064{bottom:856.740450px;}
.yb_c00064{bottom:891.210450px;}
.ya_c00064{bottom:925.590450px;}
.y9_c00064{bottom:960.060450px;}
.y8_c00064{bottom:994.440450px;}
.y7_c00064{bottom:1037.910450px;}
.y6_c00064{bottom:1072.290450px;}
.y5_c00064{bottom:1106.760450px;}
.y4_c00064{bottom:1141.140450px;}
.y2_c00064{bottom:1177.860450px;}
.y1_c00064{bottom:1196.850450px;}
.h8_c00064{height:47.988281px;}
.h9_c00064{height:49.937344px;}
.h1_c00064{height:50.315273px;}
.h2_c00064{height:56.320312px;}
.h4_c00064{height:60.257812px;}
.h7_c00064{height:65.130220px;}
.h5_c00064{height:65.130820px;}
.h3_c00064{height:72.160312px;}
.h6_c00064{height:75.093750px;}
.h0_c00064{height:1263.000000px;}
.w1_c00064{width:892.500000px;}
.w0_c00064{width:892.830000px;}
.x0_c00064{left:0.000000px;}
.x1_c00064{left:127.620000px;}
.x5_c00064{left:141.120090px;}
.x3_c00064{left:154.440000px;}
.x2_c00064{left:180.810000px;}
.x4_c00064{left:234.000000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.v1_c00064{vertical-align:14.080000pt;}
.v2_c00064{vertical-align:26.560000pt;}
.ls14_c00064{letter-spacing:-0.134400pt;}
.ls1f_c00064{letter-spacing:-0.042560pt;}
.ls1c_c00064{letter-spacing:-0.038400pt;}
.ls16_c00064{letter-spacing:-0.025600pt;}
.ls1a_c00064{letter-spacing:-0.019200pt;}
.ls20_c00064{letter-spacing:-0.013824pt;}
.ls17_c00064{letter-spacing:-0.012800pt;}
.ls1d_c00064{letter-spacing:-0.006912pt;}
.ls15_c00064{letter-spacing:-0.006400pt;}
.ls21_c00064{letter-spacing:-0.003456pt;}
.ls13_c00064{letter-spacing:0.000000pt;}
.lse_c00064{letter-spacing:0.004256pt;}
.ls5_c00064{letter-spacing:0.006400pt;}
.ls7_c00064{letter-spacing:0.012768pt;}
.ls2_c00064{letter-spacing:0.012800pt;}
.ls9_c00064{letter-spacing:0.025536pt;}
.ls6_c00064{letter-spacing:0.025600pt;}
.lsd_c00064{letter-spacing:0.029792pt;}
.ls1b_c00064{letter-spacing:0.032000pt;}
.ls12_c00064{letter-spacing:0.034048pt;}
.lsc_c00064{letter-spacing:0.038304pt;}
.lsa_c00064{letter-spacing:0.042560pt;}
.ls0_c00064{letter-spacing:0.042752pt;}
.lsf_c00064{letter-spacing:0.046816pt;}
.ls18_c00064{letter-spacing:0.048672pt;}
.ls10_c00064{letter-spacing:0.051072pt;}
.ls11_c00064{letter-spacing:0.055328pt;}
.ls19_c00064{letter-spacing:0.083200pt;}
.lsb_c00064{letter-spacing:0.102144pt;}
.ls3_c00064{letter-spacing:0.128000pt;}
.ls1e_c00064{letter-spacing:0.307584pt;}
.ls8_c00064{letter-spacing:0.311680pt;}
.ls22_c00064{letter-spacing:0.336224pt;}
.ls4_c00064{letter-spacing:55.808000pt;}
.ls1_c00064{letter-spacing:1090.880000pt;}
.ws1_c00064{word-spacing:-15.961600pt;}
.ws4_c00064{word-spacing:-11.831680pt;}
.ws2_c00064{word-spacing:-9.915264pt;}
.ws3_c00064{word-spacing:-9.607680pt;}
.ws5_c00064{word-spacing:-9.604224pt;}
.ws0_c00064{word-spacing:-9.408672pt;}
.ws32_c00064{word-spacing:-0.085120pt;}
.ws37_c00064{word-spacing:-0.012768pt;}
.ws7_c00064{word-spacing:0.000000pt;}
.ws38_c00064{word-spacing:0.004256pt;}
.ws18_c00064{word-spacing:0.006400pt;}
.ws39_c00064{word-spacing:0.012768pt;}
.wsd_c00064{word-spacing:0.012800pt;}
.ws6_c00064{word-spacing:0.037408pt;}
.ws26_c00064{word-spacing:0.089600pt;}
.ws25_c00064{word-spacing:0.096000pt;}
.ws20_c00064{word-spacing:0.326400pt;}
.ws21_c00064{word-spacing:0.371200pt;}
.ws16_c00064{word-spacing:0.627200pt;}
.ws17_c00064{word-spacing:0.736000pt;}
.ws15_c00064{word-spacing:0.742400pt;}
.ws3e_c00064{word-spacing:1.238496pt;}
.ws3f_c00064{word-spacing:1.259776pt;}
.wsf_c00064{word-spacing:1.529600pt;}
.ws10_c00064{word-spacing:1.593600pt;}
.ws1b_c00064{word-spacing:2.214400pt;}
.ws1c_c00064{word-spacing:2.278400pt;}
.ws13_c00064{word-spacing:2.585600pt;}
.ws14_c00064{word-spacing:2.630400pt;}
.ws2b_c00064{word-spacing:3.187200pt;}
.ws2c_c00064{word-spacing:3.219200pt;}
.ws24_c00064{word-spacing:4.115200pt;}
.ws23_c00064{word-spacing:4.121600pt;}
.wsb_c00064{word-spacing:4.422400pt;}
.wsc_c00064{word-spacing:4.454400pt;}
.ws36_c00064{word-spacing:4.770976pt;}
.ws34_c00064{word-spacing:4.775232pt;}
.ws35_c00064{word-spacing:4.788000pt;}
.ws33_c00064{word-spacing:4.800768pt;}
.ws22_c00064{word-spacing:5.459200pt;}
.ws31_c00064{word-spacing:6.052032pt;}
.ws30_c00064{word-spacing:6.069056pt;}
.ws2d_c00064{word-spacing:6.081824pt;}
.ws2e_c00064{word-spacing:6.086016pt;}
.ws1f_c00064{word-spacing:6.387200pt;}
.ws1e_c00064{word-spacing:6.400000pt;}
.ws2f_c00064{word-spacing:6.456352pt;}
.ws3b_c00064{word-spacing:6.690432pt;}
.ws3a_c00064{word-spacing:6.707456pt;}
.ws19_c00064{word-spacing:8.307200pt;}
.ws1a_c00064{word-spacing:8.320000pt;}
.wse_c00064{word-spacing:11.168000pt;}
.ws12_c00064{word-spacing:11.846400pt;}
.ws11_c00064{word-spacing:11.852800pt;}
.ws27_c00064{word-spacing:12.512000pt;}
.ws28_c00064{word-spacing:12.550400pt;}
.ws8_c00064{word-spacing:12.787200pt;}
.ws9_c00064{word-spacing:12.857600pt;}
.wsa_c00064{word-spacing:14.745600pt;}
.ws29_c00064{word-spacing:15.334400pt;}
.ws2a_c00064{word-spacing:15.398400pt;}
.ws1d_c00064{word-spacing:17.612800pt;}
.ws3d_c00064{word-spacing:18.198656pt;}
.ws3c_c00064{word-spacing:18.202912pt;}
._0_c00064{margin-left:-1.175680pt;}
._1_c00064{width:0.896000pt;}
._2_c00064{width:5.218976pt;}
.fs5_c00064{font-size:34.560000pt;}
.fs3_c00064{font-size:37.440000pt;}
.fs4_c00064{font-size:42.560000pt;}
.fs1_c00064{font-size:48.000000pt;}
.fs0_c00064{font-size:53.440000pt;}
.fs2_c00064{font-size:64.000000pt;}
.y0_c00064{bottom:0.000000pt;}
.y3_c00064{bottom:51.067067pt;}
.y26_c00064{bottom:97.073307pt;}
.y25_c00064{bottom:109.394427pt;}
.y24_c00064{bottom:121.630427pt;}
.y23_c00064{bottom:137.872667pt;}
.y22_c00064{bottom:154.194427pt;}
.y21_c00064{bottom:170.431067pt;}
.y20_c00064{bottom:182.669307pt;}
.y1f_c00064{bottom:198.991067pt;}
.y1e_c00064{bottom:211.227067pt;}
.y1d_c00064{bottom:224.747067pt;}
.y1c_c00064{bottom:243.147067pt;}
.y1b_c00064{bottom:261.547200pt;}
.y1a_c00064{bottom:317.147200pt;}
.y19_c00064{bottom:347.787200pt;}
.y18_c00064{bottom:378.347200pt;}
.y17_c00064{bottom:416.987200pt;}
.y16_c00064{bottom:447.547200pt;}
.y15_c00064{bottom:478.187200pt;}
.y14_c00064{bottom:508.747200pt;}
.y13_c00064{bottom:539.387200pt;}
.y12_c00064{bottom:569.947200pt;}
.y11_c00064{bottom:600.587200pt;}
.y10_c00064{bottom:631.147200pt;}
.yf_c00064{bottom:661.787200pt;}
.ye_c00064{bottom:692.347200pt;}
.yd_c00064{bottom:730.987067pt;}
.yc_c00064{bottom:761.547067pt;}
.yb_c00064{bottom:792.187067pt;}
.ya_c00064{bottom:822.747067pt;}
.y9_c00064{bottom:853.387067pt;}
.y8_c00064{bottom:883.947067pt;}
.y7_c00064{bottom:922.587067pt;}
.y6_c00064{bottom:953.147067pt;}
.y5_c00064{bottom:983.787067pt;}
.y4_c00064{bottom:1014.347067pt;}
.y2_c00064{bottom:1046.987067pt;}
.y1_c00064{bottom:1063.867067pt;}
.h8_c00064{height:42.656250pt;}
.h9_c00064{height:44.388750pt;}
.h1_c00064{height:44.724687pt;}
.h2_c00064{height:50.062500pt;}
.h4_c00064{height:53.562500pt;}
.h7_c00064{height:57.893529pt;}
.h5_c00064{height:57.894063pt;}
.h3_c00064{height:64.142500pt;}
.h6_c00064{height:66.750000pt;}
.h0_c00064{height:1122.666667pt;}
.w1_c00064{width:793.333333pt;}
.w0_c00064{width:793.626667pt;}
.x0_c00064{left:0.000000pt;}
.x1_c00064{left:113.440000pt;}
.x5_c00064{left:125.440080pt;}
.x3_c00064{left:137.280000pt;}
.x2_c00064{left:160.720000pt;}
.x4_c00064{left:208.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_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_52f382f4c777f8eb0b4fcf92.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00065;src:url('chunks/assets/font_fd0109da179f155afd77053a.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00065;src:url('chunks/assets/font_b8381646a8f5ea2141bea024.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;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_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00065{vertical-align:-60.840600px;}
.v0_c00065{vertical-align:0.000000px;}
.v1_c00065{vertical-align:29.880000px;}
.ls18_c00065{letter-spacing:-0.151200px;}
.ls1a_c00065{letter-spacing:-0.050400px;}
.ls16_c00065{letter-spacing:-0.048096px;}
.ls20_c00065{letter-spacing:-0.043200px;}
.ls1b_c00065{letter-spacing:-0.021600px;}
.ls15_c00065{letter-spacing:-0.018036px;}
.ls23_c00065{letter-spacing:-0.015552px;}
.ls19_c00065{letter-spacing:-0.014400px;}
.ls1f_c00065{letter-spacing:-0.007200px;}
.ls22_c00065{letter-spacing:-0.003888px;}
.ls17_c00065{letter-spacing:0.000000px;}
.ls11_c00065{letter-spacing:0.004788px;}
.ls1_c00065{letter-spacing:0.007200px;}
.lse_c00065{letter-spacing:0.009576px;}
.ls8_c00065{letter-spacing:0.014364px;}
.lsf_c00065{letter-spacing:0.023940px;}
.ls10_c00065{letter-spacing:0.028728px;}
.ls1e_c00065{letter-spacing:0.028800px;}
.lsa_c00065{letter-spacing:0.033516px;}
.ls21_c00065{letter-spacing:0.036000px;}
.ls0_c00065{letter-spacing:0.036072px;}
.lsc_c00065{letter-spacing:0.038304px;}
.ls6_c00065{letter-spacing:0.043092px;}
.ls5_c00065{letter-spacing:0.047880px;}
.lsb_c00065{letter-spacing:0.052668px;}
.ls1c_c00065{letter-spacing:0.054756px;}
.ls9_c00065{letter-spacing:0.057456px;}
.lsd_c00065{letter-spacing:0.062244px;}
.ls12_c00065{letter-spacing:0.076608px;}
.ls1d_c00065{letter-spacing:0.093600px;}
.ls7_c00065{letter-spacing:0.114912px;}
.ls2_c00065{letter-spacing:0.144000px;}
.ls13_c00065{letter-spacing:0.149400px;}
.ls14_c00065{letter-spacing:0.265320px;}
.ls4_c00065{letter-spacing:36.000000px;}
.ls3_c00065{letter-spacing:62.064000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00065{word-spacing:-10.804752px;}
.ws0_c00065{word-spacing:-10.584756px;}
.ws22_c00065{word-spacing:-0.095760px;}
.ws3b_c00065{word-spacing:-0.023940px;}
.ws2a_c00065{word-spacing:-0.019152px;}
.ws3a_c00065{word-spacing:-0.014364px;}
.ws39_c00065{word-spacing:-0.009576px;}
.ws5_c00065{word-spacing:0.000000px;}
.ws3d_c00065{word-spacing:0.004788px;}
.ws17_c00065{word-spacing:0.007200px;}
.ws13_c00065{word-spacing:0.014400px;}
.ws2_c00065{word-spacing:0.054108px;}
.wsf_c00065{word-spacing:0.057600px;}
.ws3_c00065{word-spacing:0.108216px;}
.ws4_c00065{word-spacing:0.138276px;}
.ws3c_c00065{word-spacing:0.320796px;}
.ws2b_c00065{word-spacing:0.675108px;}
.ws2c_c00065{word-spacing:0.699048px;}
.ws12_c00065{word-spacing:0.720000px;}
.ws14_c00065{word-spacing:1.094400px;}
.ws9_c00065{word-spacing:1.123200px;}
.ws29_c00065{word-spacing:2.484972px;}
.ws28_c00065{word-spacing:2.489760px;}
.ws26_c00065{word-spacing:2.494548px;}
.ws27_c00065{word-spacing:2.504124px;}
.ws16_c00065{word-spacing:2.872800px;}
.wsb_c00065{word-spacing:2.952000px;}
.wsc_c00065{word-spacing:2.995200px;}
.ws20_c00065{word-spacing:3.930948px;}
.ws21_c00065{word-spacing:3.935736px;}
.ws10_c00065{word-spacing:4.672800px;}
.ws11_c00065{word-spacing:4.701600px;}
.wse_c00065{word-spacing:5.054400px;}
.ws1a_c00065{word-spacing:5.767200px;}
.ws1b_c00065{word-spacing:5.954400px;}
.ws34_c00065{word-spacing:7.536312px;}
.ws33_c00065{word-spacing:7.550676px;}
.ws8_c00065{word-spacing:7.920000px;}
.ws1d_c00065{word-spacing:8.244000px;}
.ws2e_c00065{word-spacing:8.264088px;}
.ws2d_c00065{word-spacing:8.283240px;}
.ws1c_c00065{word-spacing:8.294400px;}
.ws2f_c00065{word-spacing:8.982288px;}
.ws30_c00065{word-spacing:9.006228px;}
.ws25_c00065{word-spacing:9.681336px;}
.ws24_c00065{word-spacing:9.695700px;}
.ws23_c00065{word-spacing:9.724428px;}
.ws1f_c00065{word-spacing:9.727200px;}
.ws32_c00065{word-spacing:10.433052px;}
.ws31_c00065{word-spacing:10.447416px;}
.ws35_c00065{word-spacing:11.859876px;}
.ws36_c00065{word-spacing:11.883816px;}
.wsd_c00065{word-spacing:12.261600px;}
.ws18_c00065{word-spacing:12.607200px;}
.ws19_c00065{word-spacing:12.700800px;}
.ws1e_c00065{word-spacing:15.832800px;}
.ws7_c00065{word-spacing:16.250400px;}
.ws6_c00065{word-spacing:16.286400px;}
.ws37_c00065{word-spacing:17.998092px;}
.ws38_c00065{word-spacing:18.012456px;}
.wsa_c00065{word-spacing:24.861600px;}
.ws15_c00065{word-spacing:31.723200px;}
._2_c00065{margin-left:-4.680000px;}
._0_c00065{margin-left:-1.142280px;}
._1_c00065{width:1.152000px;}
.fc0_c00065{color:rgb(0,0,0);}
.fs5_c00065{font-size:38.880000px;}
.fs3_c00065{font-size:42.120000px;}
.fs4_c00065{font-size:47.880000px;}
.fs2_c00065{font-size:54.000000px;}
.fs0_c00065{font-size:60.120000px;}
.fs1_c00065{font-size:72.000000px;}
.y0_c00065{bottom:0.000000px;}
.y3_c00065{bottom:57.450450px;}
.y4_c00065{bottom:61.410450px;}
.y2a_c00065{bottom:113.729970px;}
.y29_c00065{bottom:132.091950px;}
.y28_c00065{bottom:145.857450px;}
.y27_c00065{bottom:159.622950px;}
.y26_c00065{bottom:173.484210px;}
.y25_c00065{bottom:187.249710px;}
.y24_c00065{bottom:201.015210px;}
.y23_c00065{bottom:214.876470px;}
.y22_c00065{bottom:228.641970px;}
.y21_c00065{bottom:246.908190px;}
.y20_c00065{bottom:260.769450px;}
.y1f_c00065{bottom:274.534950px;}
.y1e_c00065{bottom:288.302970px;}
.y1d_c00065{bottom:306.569190px;}
.y1c_c00065{bottom:335.640600px;}
.y1b_c00065{bottom:356.340600px;}
.y1a_c00065{bottom:377.040450px;}
.y19_c00065{bottom:425.640450px;}
.y18_c00065{bottom:460.110450px;}
.y17_c00065{bottom:494.490450px;}
.y16_c00065{bottom:528.960450px;}
.y15_c00065{bottom:563.340450px;}
.y14_c00065{bottom:597.810450px;}
.y13_c00065{bottom:641.190450px;}
.y12_c00065{bottom:675.660450px;}
.y11_c00065{bottom:710.040450px;}
.y10_c00065{bottom:744.510450px;}
.yf_c00065{bottom:787.890450px;}
.ye_c00065{bottom:822.360450px;}
.yd_c00065{bottom:856.740450px;}
.yc_c00065{bottom:900.210450px;}
.yb_c00065{bottom:934.590450px;}
.ya_c00065{bottom:969.060450px;}
.y9_c00065{bottom:1003.440450px;}
.y8_c00065{bottom:1037.910450px;}
.y7_c00065{bottom:1072.290450px;}
.y6_c00065{bottom:1106.760450px;}
.y5_c00065{bottom:1141.140450px;}
.y2_c00065{bottom:1173.810450px;}
.y1_c00065{bottom:1196.850450px;}
.h2_c00065{height:47.988281px;}
.h8_c00065{height:47.988881px;}
.h9_c00065{height:49.937344px;}
.h1_c00065{height:50.315273px;}
.h3_c00065{height:56.320312px;}
.h4_c00065{height:60.257812px;}
.h5_c00065{height:65.130820px;}
.h7_c00065{height:65.131420px;}
.h6_c00065{height:75.093750px;}
.h0_c00065{height:1263.000000px;}
.w1_c00065{width:892.500000px;}
.w0_c00065{width:892.830000px;}
.x0_c00065{left:0.000000px;}
.x2_c00065{left:127.620000px;}
.x8_c00065{left:141.120000px;}
.x1_c00065{left:145.440000px;}
.x7_c00065{left:154.620000px;}
.x6_c00065{left:180.810000px;}
.x5_c00065{left:208.620000px;}
.x4_c00065{left:439.020000px;}
.x3_c00065{left:446.490000px;}
@media print{
.v2_c00065{vertical-align:-54.080533pt;}
.v0_c00065{vertical-align:0.000000pt;}
.v1_c00065{vertical-align:26.560000pt;}
.ls18_c00065{letter-spacing:-0.134400pt;}
.ls1a_c00065{letter-spacing:-0.044800pt;}
.ls16_c00065{letter-spacing:-0.042752pt;}
.ls20_c00065{letter-spacing:-0.038400pt;}
.ls1b_c00065{letter-spacing:-0.019200pt;}
.ls15_c00065{letter-spacing:-0.016032pt;}
.ls23_c00065{letter-spacing:-0.013824pt;}
.ls19_c00065{letter-spacing:-0.012800pt;}
.ls1f_c00065{letter-spacing:-0.006400pt;}
.ls22_c00065{letter-spacing:-0.003456pt;}
.ls17_c00065{letter-spacing:0.000000pt;}
.ls11_c00065{letter-spacing:0.004256pt;}
.ls1_c00065{letter-spacing:0.006400pt;}
.lse_c00065{letter-spacing:0.008512pt;}
.ls8_c00065{letter-spacing:0.012768pt;}
.lsf_c00065{letter-spacing:0.021280pt;}
.ls10_c00065{letter-spacing:0.025536pt;}
.ls1e_c00065{letter-spacing:0.025600pt;}
.lsa_c00065{letter-spacing:0.029792pt;}
.ls21_c00065{letter-spacing:0.032000pt;}
.ls0_c00065{letter-spacing:0.032064pt;}
.lsc_c00065{letter-spacing:0.034048pt;}
.ls6_c00065{letter-spacing:0.038304pt;}
.ls5_c00065{letter-spacing:0.042560pt;}
.lsb_c00065{letter-spacing:0.046816pt;}
.ls1c_c00065{letter-spacing:0.048672pt;}
.ls9_c00065{letter-spacing:0.051072pt;}
.lsd_c00065{letter-spacing:0.055328pt;}
.ls12_c00065{letter-spacing:0.068096pt;}
.ls1d_c00065{letter-spacing:0.083200pt;}
.ls7_c00065{letter-spacing:0.102144pt;}
.ls2_c00065{letter-spacing:0.128000pt;}
.ls13_c00065{letter-spacing:0.132800pt;}
.ls14_c00065{letter-spacing:0.235840pt;}
.ls4_c00065{letter-spacing:32.000000pt;}
.ls3_c00065{letter-spacing:55.168000pt;}
.ws1_c00065{word-spacing:-9.604224pt;}
.ws0_c00065{word-spacing:-9.408672pt;}
.ws22_c00065{word-spacing:-0.085120pt;}
.ws3b_c00065{word-spacing:-0.021280pt;}
.ws2a_c00065{word-spacing:-0.017024pt;}
.ws3a_c00065{word-spacing:-0.012768pt;}
.ws39_c00065{word-spacing:-0.008512pt;}
.ws5_c00065{word-spacing:0.000000pt;}
.ws3d_c00065{word-spacing:0.004256pt;}
.ws17_c00065{word-spacing:0.006400pt;}
.ws13_c00065{word-spacing:0.012800pt;}
.ws2_c00065{word-spacing:0.048096pt;}
.wsf_c00065{word-spacing:0.051200pt;}
.ws3_c00065{word-spacing:0.096192pt;}
.ws4_c00065{word-spacing:0.122912pt;}
.ws3c_c00065{word-spacing:0.285152pt;}
.ws2b_c00065{word-spacing:0.600096pt;}
.ws2c_c00065{word-spacing:0.621376pt;}
.ws12_c00065{word-spacing:0.640000pt;}
.ws14_c00065{word-spacing:0.972800pt;}
.ws9_c00065{word-spacing:0.998400pt;}
.ws29_c00065{word-spacing:2.208864pt;}
.ws28_c00065{word-spacing:2.213120pt;}
.ws26_c00065{word-spacing:2.217376pt;}
.ws27_c00065{word-spacing:2.225888pt;}
.ws16_c00065{word-spacing:2.553600pt;}
.wsb_c00065{word-spacing:2.624000pt;}
.wsc_c00065{word-spacing:2.662400pt;}
.ws20_c00065{word-spacing:3.494176pt;}
.ws21_c00065{word-spacing:3.498432pt;}
.ws10_c00065{word-spacing:4.153600pt;}
.ws11_c00065{word-spacing:4.179200pt;}
.wse_c00065{word-spacing:4.492800pt;}
.ws1a_c00065{word-spacing:5.126400pt;}
.ws1b_c00065{word-spacing:5.292800pt;}
.ws34_c00065{word-spacing:6.698944pt;}
.ws33_c00065{word-spacing:6.711712pt;}
.ws8_c00065{word-spacing:7.040000pt;}
.ws1d_c00065{word-spacing:7.328000pt;}
.ws2e_c00065{word-spacing:7.345856pt;}
.ws2d_c00065{word-spacing:7.362880pt;}
.ws1c_c00065{word-spacing:7.372800pt;}
.ws2f_c00065{word-spacing:7.984256pt;}
.ws30_c00065{word-spacing:8.005536pt;}
.ws25_c00065{word-spacing:8.605632pt;}
.ws24_c00065{word-spacing:8.618400pt;}
.ws23_c00065{word-spacing:8.643936pt;}
.ws1f_c00065{word-spacing:8.646400pt;}
.ws32_c00065{word-spacing:9.273824pt;}
.ws31_c00065{word-spacing:9.286592pt;}
.ws35_c00065{word-spacing:10.542112pt;}
.ws36_c00065{word-spacing:10.563392pt;}
.wsd_c00065{word-spacing:10.899200pt;}
.ws18_c00065{word-spacing:11.206400pt;}
.ws19_c00065{word-spacing:11.289600pt;}
.ws1e_c00065{word-spacing:14.073600pt;}
.ws7_c00065{word-spacing:14.444800pt;}
.ws6_c00065{word-spacing:14.476800pt;}
.ws37_c00065{word-spacing:15.998304pt;}
.ws38_c00065{word-spacing:16.011072pt;}
.wsa_c00065{word-spacing:22.099200pt;}
.ws15_c00065{word-spacing:28.198400pt;}
._2_c00065{margin-left:-4.160000pt;}
._0_c00065{margin-left:-1.015360pt;}
._1_c00065{width:1.024000pt;}
.fs5_c00065{font-size:34.560000pt;}
.fs3_c00065{font-size:37.440000pt;}
.fs4_c00065{font-size:42.560000pt;}
.fs2_c00065{font-size:48.000000pt;}
.fs0_c00065{font-size:53.440000pt;}
.fs1_c00065{font-size:64.000000pt;}
.y0_c00065{bottom:0.000000pt;}
.y3_c00065{bottom:51.067067pt;}
.y4_c00065{bottom:54.587067pt;}
.y2a_c00065{bottom:101.093307pt;}
.y29_c00065{bottom:117.415067pt;}
.y28_c00065{bottom:129.651067pt;}
.y27_c00065{bottom:141.887067pt;}
.y26_c00065{bottom:154.208187pt;}
.y25_c00065{bottom:166.444187pt;}
.y24_c00065{bottom:178.680187pt;}
.y23_c00065{bottom:191.001307pt;}
.y22_c00065{bottom:203.237307pt;}
.y21_c00065{bottom:219.473947pt;}
.y20_c00065{bottom:231.795067pt;}
.y1f_c00065{bottom:244.031067pt;}
.y1e_c00065{bottom:256.269307pt;}
.y1d_c00065{bottom:272.505947pt;}
.y1c_c00065{bottom:298.347200pt;}
.y1b_c00065{bottom:316.747200pt;}
.y1a_c00065{bottom:335.147067pt;}
.y19_c00065{bottom:378.347067pt;}
.y18_c00065{bottom:408.987067pt;}
.y17_c00065{bottom:439.547067pt;}
.y16_c00065{bottom:470.187067pt;}
.y15_c00065{bottom:500.747067pt;}
.y14_c00065{bottom:531.387067pt;}
.y13_c00065{bottom:569.947067pt;}
.y12_c00065{bottom:600.587067pt;}
.y11_c00065{bottom:631.147067pt;}
.y10_c00065{bottom:661.787067pt;}
.yf_c00065{bottom:700.347067pt;}
.ye_c00065{bottom:730.987067pt;}
.yd_c00065{bottom:761.547067pt;}
.yc_c00065{bottom:800.187067pt;}
.yb_c00065{bottom:830.747067pt;}
.ya_c00065{bottom:861.387067pt;}
.y9_c00065{bottom:891.947067pt;}
.y8_c00065{bottom:922.587067pt;}
.y7_c00065{bottom:953.147067pt;}
.y6_c00065{bottom:983.787067pt;}
.y5_c00065{bottom:1014.347067pt;}
.y2_c00065{bottom:1043.387067pt;}
.y1_c00065{bottom:1063.867067pt;}
.h2_c00065{height:42.656250pt;}
.h8_c00065{height:42.656783pt;}
.h9_c00065{height:44.388750pt;}
.h1_c00065{height:44.724687pt;}
.h3_c00065{height:50.062500pt;}
.h4_c00065{height:53.562500pt;}
.h5_c00065{height:57.894063pt;}
.h7_c00065{height:57.894596pt;}
.h6_c00065{height:66.750000pt;}
.h0_c00065{height:1122.666667pt;}
.w1_c00065{width:793.333333pt;}
.w0_c00065{width:793.626667pt;}
.x0_c00065{left:0.000000pt;}
.x2_c00065{left:113.440000pt;}
.x8_c00065{left:125.440000pt;}
.x1_c00065{left:129.280000pt;}
.x7_c00065{left:137.440000pt;}
.x6_c00065{left:160.720000pt;}
.x5_c00065{left:185.440000pt;}
.x4_c00065{left:390.240000pt;}
.x3_c00065{left:396.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_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_eecc0e96a16a1f461f127cbc.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.100098;font-style:normal;font-weight:normal;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_41dd57c9c5d8a66e23c041c5.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;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_c00066;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00066;src:url('chunks/assets/font_7cca9010b7b698eafc671d58.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;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_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;}
.v1_c00066{vertical-align:15.840000px;}
.v2_c00066{vertical-align:29.880000px;}
.ls14_c00066{letter-spacing:-0.151200px;}
.ls1b_c00066{letter-spacing:-0.036000px;}
.ls19_c00066{letter-spacing:-0.028800px;}
.ls1d_c00066{letter-spacing:-0.023328px;}
.ls1a_c00066{letter-spacing:-0.021600px;}
.ls18_c00066{letter-spacing:-0.014400px;}
.ls15_c00066{letter-spacing:-0.007200px;}
.ls1c_c00066{letter-spacing:-0.003888px;}
.ls13_c00066{letter-spacing:0.000000px;}
.ls4_c00066{letter-spacing:0.007200px;}
.lse_c00066{letter-spacing:0.009576px;}
.ls6_c00066{letter-spacing:0.014364px;}
.ls2_c00066{letter-spacing:0.014400px;}
.ls12_c00066{letter-spacing:0.019152px;}
.lsc_c00066{letter-spacing:0.023940px;}
.ls3_c00066{letter-spacing:0.028800px;}
.ls5_c00066{letter-spacing:0.033516px;}
.lsf_c00066{letter-spacing:0.038304px;}
.ls9_c00066{letter-spacing:0.043092px;}
.ls8_c00066{letter-spacing:0.047880px;}
.ls0_c00066{letter-spacing:0.048096px;}
.lsb_c00066{letter-spacing:0.052668px;}
.ls16_c00066{letter-spacing:0.054756px;}
.ls11_c00066{letter-spacing:0.057456px;}
.lsd_c00066{letter-spacing:0.062244px;}
.lsa_c00066{letter-spacing:0.086184px;}
.ls17_c00066{letter-spacing:0.093600px;}
.ls7_c00066{letter-spacing:0.104040px;}
.ls10_c00066{letter-spacing:8.271360px;}
.ls1_c00066{letter-spacing:1227.240000px;}
.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;}
}
.ws1_c00066{word-spacing:-17.971200px;}
.ws2_c00066{word-spacing:-10.785312px;}
.ws0_c00066{word-spacing:-10.584756px;}
.wsa_c00066{word-spacing:-0.093600px;}
.ws30_c00066{word-spacing:-0.038304px;}
.ws26_c00066{word-spacing:-0.014364px;}
.ws4_c00066{word-spacing:0.000000px;}
.ws19_c00066{word-spacing:0.007200px;}
.ws3_c00066{word-spacing:0.042084px;}
.ws2c_c00066{word-spacing:0.316008px;}
.ws2a_c00066{word-spacing:0.325584px;}
.ws2b_c00066{word-spacing:0.354312px;}
.ws29_c00066{word-spacing:1.010268px;}
.ws28_c00066{word-spacing:1.048572px;}
.ws23_c00066{word-spacing:1.072800px;}
.ws27_c00066{word-spacing:1.082088px;}
.ws24_c00066{word-spacing:1.296000px;}
.ws1b_c00066{word-spacing:1.440000px;}
.ws13_c00066{word-spacing:1.454400px;}
.ws1a_c00066{word-spacing:1.519200px;}
.ws16_c00066{word-spacing:2.548800px;}
.ws8_c00066{word-spacing:4.320000px;}
.ws7_c00066{word-spacing:4.341600px;}
.ws14_c00066{word-spacing:4.989600px;}
.ws15_c00066{word-spacing:5.032800px;}
.ws5_c00066{word-spacing:6.422400px;}
.ws1e_c00066{word-spacing:6.847200px;}
.ws10_c00066{word-spacing:7.185600px;}
.ws22_c00066{word-spacing:7.214400px;}
.ws12_c00066{word-spacing:7.488000px;}
.ws11_c00066{word-spacing:7.574400px;}
.ws2f_c00066{word-spacing:8.249724px;}
.ws2e_c00066{word-spacing:8.259300px;}
.ws2d_c00066{word-spacing:8.288028px;}
.ws1d_c00066{word-spacing:8.388000px;}
.ws1c_c00066{word-spacing:8.575200px;}
.ws21_c00066{word-spacing:10.807200px;}
.ws6_c00066{word-spacing:11.865600px;}
.ws1f_c00066{word-spacing:15.120000px;}
.ws20_c00066{word-spacing:15.141600px;}
.wse_c00066{word-spacing:16.488000px;}
.wsf_c00066{word-spacing:16.567200px;}
.ws9_c00066{word-spacing:16.617600px;}
.wsd_c00066{word-spacing:17.294400px;}
.ws18_c00066{word-spacing:18.777600px;}
.ws17_c00066{word-spacing:18.849600px;}
.wsb_c00066{word-spacing:24.112800px;}
.ws25_c00066{word-spacing:24.508800px;}
.wsc_c00066{word-spacing:42.847200px;}
._0_c00066{margin-left:-1.322640px;}
._1_c00066{width:1.008000px;}
.fc0_c00066{color:rgb(0,0,0);}
.fs5_c00066{font-size:38.880000px;}
.fs3_c00066{font-size:42.120000px;}
.fs4_c00066{font-size:47.880000px;}
.fs1_c00066{font-size:54.000000px;}
.fs0_c00066{font-size:60.120000px;}
.fs2_c00066{font-size:72.000000px;}
.y0_c00066{bottom:0.000000px;}
.y3_c00066{bottom:57.450450px;}
.y25_c00066{bottom:113.699190px;}
.y24_c00066{bottom:127.569450px;}
.y23_c00066{bottom:141.334950px;}
.y22_c00066{bottom:155.102250px;}
.y21_c00066{bottom:173.464230px;}
.y20_c00066{bottom:191.730450px;}
.y1f_c00066{bottom:206.940450px;}
.y1e_c00066{bottom:227.640450px;}
.y1d_c00066{bottom:248.340450px;}
.y1c_c00066{bottom:296.940450px;}
.y1b_c00066{bottom:331.410450px;}
.y1a_c00066{bottom:365.790450px;}
.y19_c00066{bottom:400.260450px;}
.y18_c00066{bottom:434.640450px;}
.y17_c00066{bottom:469.110450px;}
.y16_c00066{bottom:503.490450px;}
.y15_c00066{bottom:537.960450px;}
.y14_c00066{bottom:572.340450px;}
.y13_c00066{bottom:615.810450px;}
.y12_c00066{bottom:650.190450px;}
.y11_c00066{bottom:684.660450px;}
.y10_c00066{bottom:719.040450px;}
.yf_c00066{bottom:753.510450px;}
.ye_c00066{bottom:787.890450px;}
.yd_c00066{bottom:822.360450px;}
.yc_c00066{bottom:856.740450px;}
.yb_c00066{bottom:891.210450px;}
.ya_c00066{bottom:925.590450px;}
.y9_c00066{bottom:960.060450px;}
.y8_c00066{bottom:1003.440450px;}
.y7_c00066{bottom:1037.910450px;}
.y6_c00066{bottom:1072.290450px;}
.y5_c00066{bottom:1106.760450px;}
.y4_c00066{bottom:1141.140450px;}
.y2_c00066{bottom:1177.860450px;}
.y1_c00066{bottom:1196.850450px;}
.h6_c00066{height:47.988281px;}
.h7_c00066{height:49.937344px;}
.h1_c00066{height:50.315273px;}
.h2_c00066{height:56.320312px;}
.h4_c00066{height:60.257812px;}
.h5_c00066{height:65.130820px;}
.h3_c00066{height:72.160312px;}
.h0_c00066{height:1263.000000px;}
.w1_c00066{width:892.500000px;}
.w0_c00066{width:892.830000px;}
.x0_c00066{left:0.000000px;}
.x1_c00066{left:127.620000px;}
.x4_c00066{left:141.111270px;}
.x3_c00066{left:181.620000px;}
.x2_c00066{left:208.620000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.v1_c00066{vertical-align:14.080000pt;}
.v2_c00066{vertical-align:26.560000pt;}
.ls14_c00066{letter-spacing:-0.134400pt;}
.ls1b_c00066{letter-spacing:-0.032000pt;}
.ls19_c00066{letter-spacing:-0.025600pt;}
.ls1d_c00066{letter-spacing:-0.020736pt;}
.ls1a_c00066{letter-spacing:-0.019200pt;}
.ls18_c00066{letter-spacing:-0.012800pt;}
.ls15_c00066{letter-spacing:-0.006400pt;}
.ls1c_c00066{letter-spacing:-0.003456pt;}
.ls13_c00066{letter-spacing:0.000000pt;}
.ls4_c00066{letter-spacing:0.006400pt;}
.lse_c00066{letter-spacing:0.008512pt;}
.ls6_c00066{letter-spacing:0.012768pt;}
.ls2_c00066{letter-spacing:0.012800pt;}
.ls12_c00066{letter-spacing:0.017024pt;}
.lsc_c00066{letter-spacing:0.021280pt;}
.ls3_c00066{letter-spacing:0.025600pt;}
.ls5_c00066{letter-spacing:0.029792pt;}
.lsf_c00066{letter-spacing:0.034048pt;}
.ls9_c00066{letter-spacing:0.038304pt;}
.ls8_c00066{letter-spacing:0.042560pt;}
.ls0_c00066{letter-spacing:0.042752pt;}
.lsb_c00066{letter-spacing:0.046816pt;}
.ls16_c00066{letter-spacing:0.048672pt;}
.ls11_c00066{letter-spacing:0.051072pt;}
.lsd_c00066{letter-spacing:0.055328pt;}
.lsa_c00066{letter-spacing:0.076608pt;}
.ls17_c00066{letter-spacing:0.083200pt;}
.ls7_c00066{letter-spacing:0.092480pt;}
.ls10_c00066{letter-spacing:7.352320pt;}
.ls1_c00066{letter-spacing:1090.880000pt;}
.ws1_c00066{word-spacing:-15.974400pt;}
.ws2_c00066{word-spacing:-9.586944pt;}
.ws0_c00066{word-spacing:-9.408672pt;}
.wsa_c00066{word-spacing:-0.083200pt;}
.ws30_c00066{word-spacing:-0.034048pt;}
.ws26_c00066{word-spacing:-0.012768pt;}
.ws4_c00066{word-spacing:0.000000pt;}
.ws19_c00066{word-spacing:0.006400pt;}
.ws3_c00066{word-spacing:0.037408pt;}
.ws2c_c00066{word-spacing:0.280896pt;}
.ws2a_c00066{word-spacing:0.289408pt;}
.ws2b_c00066{word-spacing:0.314944pt;}
.ws29_c00066{word-spacing:0.898016pt;}
.ws28_c00066{word-spacing:0.932064pt;}
.ws23_c00066{word-spacing:0.953600pt;}
.ws27_c00066{word-spacing:0.961856pt;}
.ws24_c00066{word-spacing:1.152000pt;}
.ws1b_c00066{word-spacing:1.280000pt;}
.ws13_c00066{word-spacing:1.292800pt;}
.ws1a_c00066{word-spacing:1.350400pt;}
.ws16_c00066{word-spacing:2.265600pt;}
.ws8_c00066{word-spacing:3.840000pt;}
.ws7_c00066{word-spacing:3.859200pt;}
.ws14_c00066{word-spacing:4.435200pt;}
.ws15_c00066{word-spacing:4.473600pt;}
.ws5_c00066{word-spacing:5.708800pt;}
.ws1e_c00066{word-spacing:6.086400pt;}
.ws10_c00066{word-spacing:6.387200pt;}
.ws22_c00066{word-spacing:6.412800pt;}
.ws12_c00066{word-spacing:6.656000pt;}
.ws11_c00066{word-spacing:6.732800pt;}
.ws2f_c00066{word-spacing:7.333088pt;}
.ws2e_c00066{word-spacing:7.341600pt;}
.ws2d_c00066{word-spacing:7.367136pt;}
.ws1d_c00066{word-spacing:7.456000pt;}
.ws1c_c00066{word-spacing:7.622400pt;}
.ws21_c00066{word-spacing:9.606400pt;}
.ws6_c00066{word-spacing:10.547200pt;}
.ws1f_c00066{word-spacing:13.440000pt;}
.ws20_c00066{word-spacing:13.459200pt;}
.wse_c00066{word-spacing:14.656000pt;}
.wsf_c00066{word-spacing:14.726400pt;}
.ws9_c00066{word-spacing:14.771200pt;}
.wsd_c00066{word-spacing:15.372800pt;}
.ws18_c00066{word-spacing:16.691200pt;}
.ws17_c00066{word-spacing:16.755200pt;}
.wsb_c00066{word-spacing:21.433600pt;}
.ws25_c00066{word-spacing:21.785600pt;}
.wsc_c00066{word-spacing:38.086400pt;}
._0_c00066{margin-left:-1.175680pt;}
._1_c00066{width:0.896000pt;}
.fs5_c00066{font-size:34.560000pt;}
.fs3_c00066{font-size:37.440000pt;}
.fs4_c00066{font-size:42.560000pt;}
.fs1_c00066{font-size:48.000000pt;}
.fs0_c00066{font-size:53.440000pt;}
.fs2_c00066{font-size:64.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y3_c00066{bottom:51.067067pt;}
.y25_c00066{bottom:101.065947pt;}
.y24_c00066{bottom:113.395067pt;}
.y23_c00066{bottom:125.631067pt;}
.y22_c00066{bottom:137.868667pt;}
.y21_c00066{bottom:154.190427pt;}
.y20_c00066{bottom:170.427067pt;}
.y1f_c00066{bottom:183.947067pt;}
.y1e_c00066{bottom:202.347067pt;}
.y1d_c00066{bottom:220.747067pt;}
.y1c_c00066{bottom:263.947067pt;}
.y1b_c00066{bottom:294.587067pt;}
.y1a_c00066{bottom:325.147067pt;}
.y19_c00066{bottom:355.787067pt;}
.y18_c00066{bottom:386.347067pt;}
.y17_c00066{bottom:416.987067pt;}
.y16_c00066{bottom:447.547067pt;}
.y15_c00066{bottom:478.187067pt;}
.y14_c00066{bottom:508.747067pt;}
.y13_c00066{bottom:547.387067pt;}
.y12_c00066{bottom:577.947067pt;}
.y11_c00066{bottom:608.587067pt;}
.y10_c00066{bottom:639.147067pt;}
.yf_c00066{bottom:669.787067pt;}
.ye_c00066{bottom:700.347067pt;}
.yd_c00066{bottom:730.987067pt;}
.yc_c00066{bottom:761.547067pt;}
.yb_c00066{bottom:792.187067pt;}
.ya_c00066{bottom:822.747067pt;}
.y9_c00066{bottom:853.387067pt;}
.y8_c00066{bottom:891.947067pt;}
.y7_c00066{bottom:922.587067pt;}
.y6_c00066{bottom:953.147067pt;}
.y5_c00066{bottom:983.787067pt;}
.y4_c00066{bottom:1014.347067pt;}
.y2_c00066{bottom:1046.987067pt;}
.y1_c00066{bottom:1063.867067pt;}
.h6_c00066{height:42.656250pt;}
.h7_c00066{height:44.388750pt;}
.h1_c00066{height:44.724687pt;}
.h2_c00066{height:50.062500pt;}
.h4_c00066{height:53.562500pt;}
.h5_c00066{height:57.894062pt;}
.h3_c00066{height:64.142500pt;}
.h0_c00066{height:1122.666667pt;}
.w1_c00066{width:793.333333pt;}
.w0_c00066{width:793.626667pt;}
.x0_c00066{left:0.000000pt;}
.x1_c00066{left:113.440000pt;}
.x4_c00066{left:125.432240pt;}
.x3_c00066{left:161.440000pt;}
.x2_c00066{left:185.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_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_59622bc6f9edabb1fe1729b0.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00067;src:url('chunks/assets/font_8fd59e25c3764187d8d29cf3.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00067;src:url('chunks/assets/font_57911a476ecd34051f74bea4.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;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_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;}
.v1_c00067{vertical-align:29.880000px;}
.lse_c00067{letter-spacing:-0.151200px;}
.ls15_c00067{letter-spacing:-0.050400px;}
.lsc_c00067{letter-spacing:-0.048096px;}
.ls14_c00067{letter-spacing:-0.036000px;}
.lsf_c00067{letter-spacing:-0.021600px;}
.lsb_c00067{letter-spacing:-0.018036px;}
.ls10_c00067{letter-spacing:-0.014400px;}
.ls18_c00067{letter-spacing:-0.011664px;}
.ls17_c00067{letter-spacing:-0.007776px;}
.ls11_c00067{letter-spacing:-0.007200px;}
.ls19_c00067{letter-spacing:-0.003888px;}
.lsd_c00067{letter-spacing:0.000000px;}
.lsa_c00067{letter-spacing:0.009576px;}
.ls4_c00067{letter-spacing:0.014364px;}
.ls3_c00067{letter-spacing:0.014400px;}
.ls9_c00067{letter-spacing:0.033516px;}
.ls0_c00067{letter-spacing:0.036072px;}
.ls6_c00067{letter-spacing:0.038304px;}
.ls7_c00067{letter-spacing:0.043092px;}
.ls12_c00067{letter-spacing:0.054756px;}
.ls13_c00067{letter-spacing:0.093600px;}
.ls5_c00067{letter-spacing:0.104040px;}
.ls1_c00067{letter-spacing:0.144000px;}
.ls16_c00067{letter-spacing:0.338256px;}
.ls8_c00067{letter-spacing:0.342144px;}
.ls2_c00067{letter-spacing:65.304000px;}
.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;}
}
.ws5_c00067{word-spacing:-13.348944px;}
.ws2_c00067{word-spacing:-11.150784px;}
.ws1_c00067{word-spacing:-11.146896px;}
.ws4_c00067{word-spacing:-10.804752px;}
.ws3_c00067{word-spacing:-10.796976px;}
.ws0_c00067{word-spacing:-10.584756px;}
.ws1e_c00067{word-spacing:-0.086400px;}
.ws2f_c00067{word-spacing:-0.014364px;}
.ws9_c00067{word-spacing:0.000000px;}
.ws2e_c00067{word-spacing:0.004788px;}
.ws27_c00067{word-spacing:0.007200px;}
.ws17_c00067{word-spacing:0.043200px;}
.ws6_c00067{word-spacing:0.054108px;}
.ws7_c00067{word-spacing:0.108216px;}
.ws8_c00067{word-spacing:0.138276px;}
.ws1d_c00067{word-spacing:0.151200px;}
.ws1f_c00067{word-spacing:1.000800px;}
.ws20_c00067{word-spacing:1.101600px;}
.ws25_c00067{word-spacing:1.814400px;}
.ws21_c00067{word-spacing:1.821600px;}
.ws22_c00067{word-spacing:1.836000px;}
.ws24_c00067{word-spacing:1.900800px;}
.ws26_c00067{word-spacing:2.181600px;}
.ws31_c00067{word-spacing:2.858436px;}
.ws30_c00067{word-spacing:2.882376px;}
.ws32_c00067{word-spacing:2.887164px;}
.wsf_c00067{word-spacing:2.908800px;}
.ws11_c00067{word-spacing:3.240000px;}
.ws2d_c00067{word-spacing:5.736024px;}
.ws2c_c00067{word-spacing:5.740812px;}
.ws2b_c00067{word-spacing:5.764752px;}
.ws29_c00067{word-spacing:6.480000px;}
.ws2a_c00067{word-spacing:6.544800px;}
.ws1a_c00067{word-spacing:6.847200px;}
.wsd_c00067{word-spacing:7.214400px;}
.wse_c00067{word-spacing:7.279200px;}
.ws10_c00067{word-spacing:7.567200px;}
.wsb_c00067{word-spacing:8.344800px;}
.ws16_c00067{word-spacing:9.720000px;}
.ws19_c00067{word-spacing:9.792000px;}
.ws1c_c00067{word-spacing:10.036800px;}
.ws1b_c00067{word-spacing:10.101600px;}
.wsc_c00067{word-spacing:11.570400px;}
.ws23_c00067{word-spacing:13.701600px;}
.wsa_c00067{word-spacing:15.120000px;}
.ws28_c00067{word-spacing:16.200000px;}
.ws18_c00067{word-spacing:17.683200px;}
.ws12_c00067{word-spacing:24.141600px;}
.ws13_c00067{word-spacing:24.278400px;}
.ws14_c00067{word-spacing:27.367200px;}
.ws15_c00067{word-spacing:27.432000px;}
._0_c00067{margin-left:-1.142280px;}
._1_c00067{width:1.080000px;}
._2_c00067{width:6.072948px;}
.fc0_c00067{color:rgb(0,0,0);}
.fs5_c00067{font-size:38.880000px;}
.fs3_c00067{font-size:42.120000px;}
.fs4_c00067{font-size:47.880000px;}
.fs2_c00067{font-size:54.000000px;}
.fs0_c00067{font-size:60.120000px;}
.fs1_c00067{font-size:72.000000px;}
.y0_c00067{bottom:0.000000px;}
.y3_c00067{bottom:57.450450px;}
.y4_c00067{bottom:61.410450px;}
.y26_c00067{bottom:113.699190px;}
.y25_c00067{bottom:127.564230px;}
.y24_c00067{bottom:145.834230px;}
.y23_c00067{bottom:164.102970px;}
.y22_c00067{bottom:182.464950px;}
.y21_c00067{bottom:196.230450px;}
.y20_c00067{bottom:211.440450px;}
.y1f_c00067{bottom:232.140450px;}
.y1e_c00067{bottom:252.840600px;}
.y1d_c00067{bottom:278.940600px;}
.y1c_c00067{bottom:313.410600px;}
.y1b_c00067{bottom:356.790450px;}
.y1a_c00067{bottom:391.260450px;}
.y19_c00067{bottom:425.640450px;}
.y18_c00067{bottom:460.110450px;}
.y17_c00067{bottom:494.490450px;}
.y16_c00067{bottom:528.960450px;}
.y15_c00067{bottom:572.340450px;}
.y14_c00067{bottom:606.810450px;}
.y13_c00067{bottom:641.190450px;}
.y12_c00067{bottom:675.660450px;}
.y11_c00067{bottom:710.040450px;}
.y10_c00067{bottom:753.510450px;}
.yf_c00067{bottom:787.890450px;}
.ye_c00067{bottom:822.360450px;}
.yd_c00067{bottom:856.740450px;}
.yc_c00067{bottom:900.210450px;}
.yb_c00067{bottom:934.590450px;}
.ya_c00067{bottom:969.060450px;}
.y9_c00067{bottom:1003.440450px;}
.y8_c00067{bottom:1037.910450px;}
.y7_c00067{bottom:1072.290450px;}
.y6_c00067{bottom:1106.760450px;}
.y5_c00067{bottom:1141.140450px;}
.y2_c00067{bottom:1173.810450px;}
.y1_c00067{bottom:1196.850450px;}
.h2_c00067{height:47.988281px;}
.h7_c00067{height:49.937344px;}
.h1_c00067{height:50.315273px;}
.h3_c00067{height:56.320312px;}
.h4_c00067{height:60.257812px;}
.h5_c00067{height:65.130820px;}
.h6_c00067{height:75.093750px;}
.h0_c00067{height:1263.000000px;}
.w1_c00067{width:892.500000px;}
.w0_c00067{width:892.830000px;}
.x0_c00067{left:0.000000px;}
.x2_c00067{left:127.620000px;}
.x9_c00067{left:141.110910px;}
.x1_c00067{left:145.440000px;}
.x7_c00067{left:154.620000px;}
.x6_c00067{left:181.620000px;}
.x5_c00067{left:208.620000px;}
.x8_c00067{left:234.000000px;}
.x4_c00067{left:439.020000px;}
.x3_c00067{left:446.490000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.v1_c00067{vertical-align:26.560000pt;}
.lse_c00067{letter-spacing:-0.134400pt;}
.ls15_c00067{letter-spacing:-0.044800pt;}
.lsc_c00067{letter-spacing:-0.042752pt;}
.ls14_c00067{letter-spacing:-0.032000pt;}
.lsf_c00067{letter-spacing:-0.019200pt;}
.lsb_c00067{letter-spacing:-0.016032pt;}
.ls10_c00067{letter-spacing:-0.012800pt;}
.ls18_c00067{letter-spacing:-0.010368pt;}
.ls17_c00067{letter-spacing:-0.006912pt;}
.ls11_c00067{letter-spacing:-0.006400pt;}
.ls19_c00067{letter-spacing:-0.003456pt;}
.lsd_c00067{letter-spacing:0.000000pt;}
.lsa_c00067{letter-spacing:0.008512pt;}
.ls4_c00067{letter-spacing:0.012768pt;}
.ls3_c00067{letter-spacing:0.012800pt;}
.ls9_c00067{letter-spacing:0.029792pt;}
.ls0_c00067{letter-spacing:0.032064pt;}
.ls6_c00067{letter-spacing:0.034048pt;}
.ls7_c00067{letter-spacing:0.038304pt;}
.ls12_c00067{letter-spacing:0.048672pt;}
.ls13_c00067{letter-spacing:0.083200pt;}
.ls5_c00067{letter-spacing:0.092480pt;}
.ls1_c00067{letter-spacing:0.128000pt;}
.ls16_c00067{letter-spacing:0.300672pt;}
.ls8_c00067{letter-spacing:0.304128pt;}
.ls2_c00067{letter-spacing:58.048000pt;}
.ws5_c00067{word-spacing:-11.865728pt;}
.ws2_c00067{word-spacing:-9.911808pt;}
.ws1_c00067{word-spacing:-9.908352pt;}
.ws4_c00067{word-spacing:-9.604224pt;}
.ws3_c00067{word-spacing:-9.597312pt;}
.ws0_c00067{word-spacing:-9.408672pt;}
.ws1e_c00067{word-spacing:-0.076800pt;}
.ws2f_c00067{word-spacing:-0.012768pt;}
.ws9_c00067{word-spacing:0.000000pt;}
.ws2e_c00067{word-spacing:0.004256pt;}
.ws27_c00067{word-spacing:0.006400pt;}
.ws17_c00067{word-spacing:0.038400pt;}
.ws6_c00067{word-spacing:0.048096pt;}
.ws7_c00067{word-spacing:0.096192pt;}
.ws8_c00067{word-spacing:0.122912pt;}
.ws1d_c00067{word-spacing:0.134400pt;}
.ws1f_c00067{word-spacing:0.889600pt;}
.ws20_c00067{word-spacing:0.979200pt;}
.ws25_c00067{word-spacing:1.612800pt;}
.ws21_c00067{word-spacing:1.619200pt;}
.ws22_c00067{word-spacing:1.632000pt;}
.ws24_c00067{word-spacing:1.689600pt;}
.ws26_c00067{word-spacing:1.939200pt;}
.ws31_c00067{word-spacing:2.540832pt;}
.ws30_c00067{word-spacing:2.562112pt;}
.ws32_c00067{word-spacing:2.566368pt;}
.wsf_c00067{word-spacing:2.585600pt;}
.ws11_c00067{word-spacing:2.880000pt;}
.ws2d_c00067{word-spacing:5.098688pt;}
.ws2c_c00067{word-spacing:5.102944pt;}
.ws2b_c00067{word-spacing:5.124224pt;}
.ws29_c00067{word-spacing:5.760000pt;}
.ws2a_c00067{word-spacing:5.817600pt;}
.ws1a_c00067{word-spacing:6.086400pt;}
.wsd_c00067{word-spacing:6.412800pt;}
.wse_c00067{word-spacing:6.470400pt;}
.ws10_c00067{word-spacing:6.726400pt;}
.wsb_c00067{word-spacing:7.417600pt;}
.ws16_c00067{word-spacing:8.640000pt;}
.ws19_c00067{word-spacing:8.704000pt;}
.ws1c_c00067{word-spacing:8.921600pt;}
.ws1b_c00067{word-spacing:8.979200pt;}
.wsc_c00067{word-spacing:10.284800pt;}
.ws23_c00067{word-spacing:12.179200pt;}
.wsa_c00067{word-spacing:13.440000pt;}
.ws28_c00067{word-spacing:14.400000pt;}
.ws18_c00067{word-spacing:15.718400pt;}
.ws12_c00067{word-spacing:21.459200pt;}
.ws13_c00067{word-spacing:21.580800pt;}
.ws14_c00067{word-spacing:24.326400pt;}
.ws15_c00067{word-spacing:24.384000pt;}
._0_c00067{margin-left:-1.015360pt;}
._1_c00067{width:0.960000pt;}
._2_c00067{width:5.398176pt;}
.fs5_c00067{font-size:34.560000pt;}
.fs3_c00067{font-size:37.440000pt;}
.fs4_c00067{font-size:42.560000pt;}
.fs2_c00067{font-size:48.000000pt;}
.fs0_c00067{font-size:53.440000pt;}
.fs1_c00067{font-size:64.000000pt;}
.y0_c00067{bottom:0.000000pt;}
.y3_c00067{bottom:51.067067pt;}
.y4_c00067{bottom:54.587067pt;}
.y26_c00067{bottom:101.065947pt;}
.y25_c00067{bottom:113.390427pt;}
.y24_c00067{bottom:129.630427pt;}
.y23_c00067{bottom:145.869307pt;}
.y22_c00067{bottom:162.191067pt;}
.y21_c00067{bottom:174.427067pt;}
.y20_c00067{bottom:187.947067pt;}
.y1f_c00067{bottom:206.347067pt;}
.y1e_c00067{bottom:224.747200pt;}
.y1d_c00067{bottom:247.947200pt;}
.y1c_c00067{bottom:278.587200pt;}
.y1b_c00067{bottom:317.147067pt;}
.y1a_c00067{bottom:347.787067pt;}
.y19_c00067{bottom:378.347067pt;}
.y18_c00067{bottom:408.987067pt;}
.y17_c00067{bottom:439.547067pt;}
.y16_c00067{bottom:470.187067pt;}
.y15_c00067{bottom:508.747067pt;}
.y14_c00067{bottom:539.387067pt;}
.y13_c00067{bottom:569.947067pt;}
.y12_c00067{bottom:600.587067pt;}
.y11_c00067{bottom:631.147067pt;}
.y10_c00067{bottom:669.787067pt;}
.yf_c00067{bottom:700.347067pt;}
.ye_c00067{bottom:730.987067pt;}
.yd_c00067{bottom:761.547067pt;}
.yc_c00067{bottom:800.187067pt;}
.yb_c00067{bottom:830.747067pt;}
.ya_c00067{bottom:861.387067pt;}
.y9_c00067{bottom:891.947067pt;}
.y8_c00067{bottom:922.587067pt;}
.y7_c00067{bottom:953.147067pt;}
.y6_c00067{bottom:983.787067pt;}
.y5_c00067{bottom:1014.347067pt;}
.y2_c00067{bottom:1043.387067pt;}
.y1_c00067{bottom:1063.867067pt;}
.h2_c00067{height:42.656250pt;}
.h7_c00067{height:44.388750pt;}
.h1_c00067{height:44.724687pt;}
.h3_c00067{height:50.062500pt;}
.h4_c00067{height:53.562500pt;}
.h5_c00067{height:57.894063pt;}
.h6_c00067{height:66.750000pt;}
.h0_c00067{height:1122.666667pt;}
.w1_c00067{width:793.333333pt;}
.w0_c00067{width:793.626667pt;}
.x0_c00067{left:0.000000pt;}
.x2_c00067{left:113.440000pt;}
.x9_c00067{left:125.431920pt;}
.x1_c00067{left:129.280000pt;}
.x7_c00067{left:137.440000pt;}
.x6_c00067{left:161.440000pt;}
.x5_c00067{left:185.440000pt;}
.x8_c00067{left:208.000000pt;}
.x4_c00067{left:390.240000pt;}
.x3_c00067{left:396.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_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_1f3af4be64a5149a9ec2f5e4.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.100098;font-style:normal;font-weight:normal;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_48b230ec769ba87872cd948a.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;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_c00068;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00068;src:url('chunks/assets/font_621cd118eb7572c5f664e6c5.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00068;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00068{font-family:ff5_c00068;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_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;}
.v1_c00068{vertical-align:15.840000px;}
.v2_c00068{vertical-align:29.880000px;}
.ls10_c00068{letter-spacing:-0.151200px;}
.ls18_c00068{letter-spacing:-0.050400px;}
.ls16_c00068{letter-spacing:-0.036000px;}
.ls15_c00068{letter-spacing:-0.028800px;}
.ls1c_c00068{letter-spacing:-0.023940px;}
.ls11_c00068{letter-spacing:-0.021600px;}
.ls1d_c00068{letter-spacing:-0.015552px;}
.ls14_c00068{letter-spacing:-0.014400px;}
.ls1f_c00068{letter-spacing:-0.009576px;}
.ls19_c00068{letter-spacing:-0.007776px;}
.ls17_c00068{letter-spacing:-0.007200px;}
.ls1b_c00068{letter-spacing:-0.004788px;}
.lsf_c00068{letter-spacing:0.000000px;}
.ls4_c00068{letter-spacing:0.007200px;}
.ls5_c00068{letter-spacing:0.008424px;}
.ls8_c00068{letter-spacing:0.014364px;}
.ls7_c00068{letter-spacing:0.014400px;}
.lsc_c00068{letter-spacing:0.028728px;}
.ls9_c00068{letter-spacing:0.038304px;}
.lsa_c00068{letter-spacing:0.043092px;}
.ls6_c00068{letter-spacing:0.043200px;}
.ls0_c00068{letter-spacing:0.048096px;}
.lse_c00068{letter-spacing:0.052668px;}
.ls12_c00068{letter-spacing:0.054756px;}
.lsb_c00068{letter-spacing:0.057456px;}
.ls13_c00068{letter-spacing:0.093600px;}
.ls2_c00068{letter-spacing:0.144000px;}
.ls1a_c00068{letter-spacing:0.349920px;}
.ls1e_c00068{letter-spacing:0.378252px;}
.lsd_c00068{letter-spacing:0.464040px;}
.ls3_c00068{letter-spacing:65.304000px;}
.ls1_c00068{letter-spacing:1227.240000px;}
.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;}
}
.ws3_c00068{word-spacing:-13.348944px;}
.ws1_c00068{word-spacing:-13.310640px;}
.ws5_c00068{word-spacing:-13.286700px;}
.ws2_c00068{word-spacing:-11.158560px;}
.ws4_c00068{word-spacing:-10.808640px;}
.ws0_c00068{word-spacing:-10.584756px;}
.wse_c00068{word-spacing:-0.096876px;}
.wsf_c00068{word-spacing:-0.093600px;}
.ws27_c00068{word-spacing:-0.019152px;}
.ws2d_c00068{word-spacing:-0.009576px;}
.ws7_c00068{word-spacing:0.000000px;}
.ws26_c00068{word-spacing:0.004788px;}
.ws18_c00068{word-spacing:0.014400px;}
.ws28_c00068{word-spacing:0.023940px;}
.ws31_c00068{word-spacing:0.028728px;}
.wsd_c00068{word-spacing:0.028800px;}
.ws6_c00068{word-spacing:0.042084px;}
.ws9_c00068{word-spacing:0.043200px;}
.ws2b_c00068{word-spacing:0.320796px;}
.ws2a_c00068{word-spacing:0.335160px;}
.ws29_c00068{word-spacing:0.363888px;}
.ws2c_c00068{word-spacing:0.378252px;}
.ws30_c00068{word-spacing:0.684684px;}
.ws2f_c00068{word-spacing:0.708624px;}
.wsa_c00068{word-spacing:0.712800px;}
.ws2e_c00068{word-spacing:0.722988px;}
.ws8_c00068{word-spacing:1.101600px;}
.ws15_c00068{word-spacing:2.160000px;}
.ws25_c00068{word-spacing:3.628800px;}
.ws24_c00068{word-spacing:3.650400px;}
.ws12_c00068{word-spacing:4.341600px;}
.ws11_c00068{word-spacing:4.356000px;}
.wsb_c00068{word-spacing:5.414400px;}
.ws10_c00068{word-spacing:5.428800px;}
.wsc_c00068{word-spacing:5.493600px;}
.ws22_c00068{word-spacing:5.724000px;}
.ws16_c00068{word-spacing:5.774400px;}
.ws21_c00068{word-spacing:5.796000px;}
.ws23_c00068{word-spacing:6.825600px;}
.ws17_c00068{word-spacing:7.948800px;}
.ws20_c00068{word-spacing:8.661600px;}
.ws1b_c00068{word-spacing:12.967200px;}
.ws1f_c00068{word-spacing:13.341600px;}
.ws14_c00068{word-spacing:13.996800px;}
.ws13_c00068{word-spacing:14.032800px;}
.ws1c_c00068{word-spacing:15.487200px;}
.ws1d_c00068{word-spacing:15.552000px;}
.ws19_c00068{word-spacing:16.912800px;}
.ws1a_c00068{word-spacing:16.934400px;}
.ws1e_c00068{word-spacing:20.865600px;}
._0_c00068{margin-left:-1.322640px;}
._1_c00068{width:1.152000px;}
.fc0_c00068{color:rgb(0,0,0);}
.fs5_c00068{font-size:38.880000px;}
.fs3_c00068{font-size:42.120000px;}
.fs4_c00068{font-size:47.880000px;}
.fs1_c00068{font-size:54.000000px;}
.fs0_c00068{font-size:60.120000px;}
.fs2_c00068{font-size:72.000000px;}
.y0_c00068{bottom:0.000000px;}
.y3_c00068{bottom:57.450450px;}
.y24_c00068{bottom:113.699190px;}
.y23_c00068{bottom:127.566900px;}
.y22_c00068{bottom:145.833120px;}
.y21_c00068{bottom:164.099340px;}
.y20_c00068{bottom:177.964230px;}
.y1f_c00068{bottom:196.230450px;}
.y1e_c00068{bottom:211.440450px;}
.y1d_c00068{bottom:232.140450px;}
.y1c_c00068{bottom:252.840450px;}
.y1b_c00068{bottom:295.410450px;}
.y1a_c00068{bottom:329.790450px;}
.y19_c00068{bottom:364.260450px;}
.y18_c00068{bottom:398.640450px;}
.y17_c00068{bottom:433.110450px;}
.y16_c00068{bottom:467.490450px;}
.y15_c00068{bottom:510.960450px;}
.y14_c00068{bottom:545.340450px;}
.y13_c00068{bottom:579.810450px;}
.y12_c00068{bottom:614.190450px;}
.y11_c00068{bottom:648.660450px;}
.y10_c00068{bottom:701.040450px;}
.yf_c00068{bottom:735.510450px;}
.ye_c00068{bottom:769.890450px;}
.yd_c00068{bottom:804.360450px;}
.yc_c00068{bottom:847.740450px;}
.yb_c00068{bottom:882.210450px;}
.ya_c00068{bottom:916.590450px;}
.y9_c00068{bottom:951.060450px;}
.y8_c00068{bottom:994.440450px;}
.y7_c00068{bottom:1028.910450px;}
.y6_c00068{bottom:1063.290450px;}
.y5_c00068{bottom:1106.760450px;}
.y4_c00068{bottom:1141.140450px;}
.y2_c00068{bottom:1177.860450px;}
.y1_c00068{bottom:1196.850450px;}
.h7_c00068{height:47.988281px;}
.h8_c00068{height:49.937344px;}
.h1_c00068{height:50.315273px;}
.h2_c00068{height:56.320312px;}
.h4_c00068{height:60.257812px;}
.h5_c00068{height:65.130820px;}
.h3_c00068{height:72.160312px;}
.h6_c00068{height:75.093750px;}
.h0_c00068{height:1263.000000px;}
.w1_c00068{width:892.500000px;}
.w0_c00068{width:892.830000px;}
.x0_c00068{left:0.000000px;}
.x1_c00068{left:127.620000px;}
.x5_c00068{left:141.127830px;}
.x3_c00068{left:154.620000px;}
.x2_c00068{left:180.810000px;}
.x4_c00068{left:208.620000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.v1_c00068{vertical-align:14.080000pt;}
.v2_c00068{vertical-align:26.560000pt;}
.ls10_c00068{letter-spacing:-0.134400pt;}
.ls18_c00068{letter-spacing:-0.044800pt;}
.ls16_c00068{letter-spacing:-0.032000pt;}
.ls15_c00068{letter-spacing:-0.025600pt;}
.ls1c_c00068{letter-spacing:-0.021280pt;}
.ls11_c00068{letter-spacing:-0.019200pt;}
.ls1d_c00068{letter-spacing:-0.013824pt;}
.ls14_c00068{letter-spacing:-0.012800pt;}
.ls1f_c00068{letter-spacing:-0.008512pt;}
.ls19_c00068{letter-spacing:-0.006912pt;}
.ls17_c00068{letter-spacing:-0.006400pt;}
.ls1b_c00068{letter-spacing:-0.004256pt;}
.lsf_c00068{letter-spacing:0.000000pt;}
.ls4_c00068{letter-spacing:0.006400pt;}
.ls5_c00068{letter-spacing:0.007488pt;}
.ls8_c00068{letter-spacing:0.012768pt;}
.ls7_c00068{letter-spacing:0.012800pt;}
.lsc_c00068{letter-spacing:0.025536pt;}
.ls9_c00068{letter-spacing:0.034048pt;}
.lsa_c00068{letter-spacing:0.038304pt;}
.ls6_c00068{letter-spacing:0.038400pt;}
.ls0_c00068{letter-spacing:0.042752pt;}
.lse_c00068{letter-spacing:0.046816pt;}
.ls12_c00068{letter-spacing:0.048672pt;}
.lsb_c00068{letter-spacing:0.051072pt;}
.ls13_c00068{letter-spacing:0.083200pt;}
.ls2_c00068{letter-spacing:0.128000pt;}
.ls1a_c00068{letter-spacing:0.311040pt;}
.ls1e_c00068{letter-spacing:0.336224pt;}
.lsd_c00068{letter-spacing:0.412480pt;}
.ls3_c00068{letter-spacing:58.048000pt;}
.ls1_c00068{letter-spacing:1090.880000pt;}
.ws3_c00068{word-spacing:-11.865728pt;}
.ws1_c00068{word-spacing:-11.831680pt;}
.ws5_c00068{word-spacing:-11.810400pt;}
.ws2_c00068{word-spacing:-9.918720pt;}
.ws4_c00068{word-spacing:-9.607680pt;}
.ws0_c00068{word-spacing:-9.408672pt;}
.wse_c00068{word-spacing:-0.086112pt;}
.wsf_c00068{word-spacing:-0.083200pt;}
.ws27_c00068{word-spacing:-0.017024pt;}
.ws2d_c00068{word-spacing:-0.008512pt;}
.ws7_c00068{word-spacing:0.000000pt;}
.ws26_c00068{word-spacing:0.004256pt;}
.ws18_c00068{word-spacing:0.012800pt;}
.ws28_c00068{word-spacing:0.021280pt;}
.ws31_c00068{word-spacing:0.025536pt;}
.wsd_c00068{word-spacing:0.025600pt;}
.ws6_c00068{word-spacing:0.037408pt;}
.ws9_c00068{word-spacing:0.038400pt;}
.ws2b_c00068{word-spacing:0.285152pt;}
.ws2a_c00068{word-spacing:0.297920pt;}
.ws29_c00068{word-spacing:0.323456pt;}
.ws2c_c00068{word-spacing:0.336224pt;}
.ws30_c00068{word-spacing:0.608608pt;}
.ws2f_c00068{word-spacing:0.629888pt;}
.wsa_c00068{word-spacing:0.633600pt;}
.ws2e_c00068{word-spacing:0.642656pt;}
.ws8_c00068{word-spacing:0.979200pt;}
.ws15_c00068{word-spacing:1.920000pt;}
.ws25_c00068{word-spacing:3.225600pt;}
.ws24_c00068{word-spacing:3.244800pt;}
.ws12_c00068{word-spacing:3.859200pt;}
.ws11_c00068{word-spacing:3.872000pt;}
.wsb_c00068{word-spacing:4.812800pt;}
.ws10_c00068{word-spacing:4.825600pt;}
.wsc_c00068{word-spacing:4.883200pt;}
.ws22_c00068{word-spacing:5.088000pt;}
.ws16_c00068{word-spacing:5.132800pt;}
.ws21_c00068{word-spacing:5.152000pt;}
.ws23_c00068{word-spacing:6.067200pt;}
.ws17_c00068{word-spacing:7.065600pt;}
.ws20_c00068{word-spacing:7.699200pt;}
.ws1b_c00068{word-spacing:11.526400pt;}
.ws1f_c00068{word-spacing:11.859200pt;}
.ws14_c00068{word-spacing:12.441600pt;}
.ws13_c00068{word-spacing:12.473600pt;}
.ws1c_c00068{word-spacing:13.766400pt;}
.ws1d_c00068{word-spacing:13.824000pt;}
.ws19_c00068{word-spacing:15.033600pt;}
.ws1a_c00068{word-spacing:15.052800pt;}
.ws1e_c00068{word-spacing:18.547200pt;}
._0_c00068{margin-left:-1.175680pt;}
._1_c00068{width:1.024000pt;}
.fs5_c00068{font-size:34.560000pt;}
.fs3_c00068{font-size:37.440000pt;}
.fs4_c00068{font-size:42.560000pt;}
.fs1_c00068{font-size:48.000000pt;}
.fs0_c00068{font-size:53.440000pt;}
.fs2_c00068{font-size:64.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y3_c00068{bottom:51.067067pt;}
.y24_c00068{bottom:101.065947pt;}
.y23_c00068{bottom:113.392800pt;}
.y22_c00068{bottom:129.629440pt;}
.y21_c00068{bottom:145.866080pt;}
.y20_c00068{bottom:158.190427pt;}
.y1f_c00068{bottom:174.427067pt;}
.y1e_c00068{bottom:187.947067pt;}
.y1d_c00068{bottom:206.347067pt;}
.y1c_c00068{bottom:224.747067pt;}
.y1b_c00068{bottom:262.587067pt;}
.y1a_c00068{bottom:293.147067pt;}
.y19_c00068{bottom:323.787067pt;}
.y18_c00068{bottom:354.347067pt;}
.y17_c00068{bottom:384.987067pt;}
.y16_c00068{bottom:415.547067pt;}
.y15_c00068{bottom:454.187067pt;}
.y14_c00068{bottom:484.747067pt;}
.y13_c00068{bottom:515.387067pt;}
.y12_c00068{bottom:545.947067pt;}
.y11_c00068{bottom:576.587067pt;}
.y10_c00068{bottom:623.147067pt;}
.yf_c00068{bottom:653.787067pt;}
.ye_c00068{bottom:684.347067pt;}
.yd_c00068{bottom:714.987067pt;}
.yc_c00068{bottom:753.547067pt;}
.yb_c00068{bottom:784.187067pt;}
.ya_c00068{bottom:814.747067pt;}
.y9_c00068{bottom:845.387067pt;}
.y8_c00068{bottom:883.947067pt;}
.y7_c00068{bottom:914.587067pt;}
.y6_c00068{bottom:945.147067pt;}
.y5_c00068{bottom:983.787067pt;}
.y4_c00068{bottom:1014.347067pt;}
.y2_c00068{bottom:1046.987067pt;}
.y1_c00068{bottom:1063.867067pt;}
.h7_c00068{height:42.656250pt;}
.h8_c00068{height:44.388750pt;}
.h1_c00068{height:44.724687pt;}
.h2_c00068{height:50.062500pt;}
.h4_c00068{height:53.562500pt;}
.h5_c00068{height:57.894063pt;}
.h3_c00068{height:64.142500pt;}
.h6_c00068{height:66.750000pt;}
.h0_c00068{height:1122.666667pt;}
.w1_c00068{width:793.333333pt;}
.w0_c00068{width:793.626667pt;}
.x0_c00068{left:0.000000pt;}
.x1_c00068{left:113.440000pt;}
.x5_c00068{left:125.446960pt;}
.x3_c00068{left:137.440000pt;}
.x2_c00068{left:160.720000pt;}
.x4_c00068{left:185.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_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_92c7b1575ad95ec08b2e1d65.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00069;src:url('chunks/assets/font_f767b536814b6d944471d930.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00069;src:url('chunks/assets/font_356ac2430f0089cb57b0e658.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00069;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00069{font-family:ff5_c00069;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_c00069;src:url('chunks/assets/font_75ec1161d6dcbfbfb2bf2dbb.woff2')format("woff");}.ff6_c00069{font-family:ff6_c00069;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_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;}
.v1_c00069{vertical-align:29.880000px;}
.ls12_c00069{letter-spacing:-0.151200px;}
.ls1d_c00069{letter-spacing:-0.070308px;}
.ls1b_c00069{letter-spacing:-0.064800px;}
.ls10_c00069{letter-spacing:-0.048096px;}
.ls19_c00069{letter-spacing:-0.028800px;}
.ls17_c00069{letter-spacing:-0.021600px;}
.lsf_c00069{letter-spacing:-0.018036px;}
.ls25_c00069{letter-spacing:-0.015552px;}
.ls14_c00069{letter-spacing:-0.014400px;}
.ls22_c00069{letter-spacing:-0.009576px;}
.ls1f_c00069{letter-spacing:-0.007776px;}
.ls16_c00069{letter-spacing:-0.007200px;}
.ls23_c00069{letter-spacing:-0.003888px;}
.ls11_c00069{letter-spacing:0.000000px;}
.ls21_c00069{letter-spacing:0.003888px;}
.lse_c00069{letter-spacing:0.004788px;}
.ls2_c00069{letter-spacing:0.007200px;}
.ls6_c00069{letter-spacing:0.014364px;}
.ls13_c00069{letter-spacing:0.014400px;}
.ls3_c00069{letter-spacing:0.015624px;}
.ls24_c00069{letter-spacing:0.019152px;}
.ls1_c00069{letter-spacing:0.021600px;}
.lsc_c00069{letter-spacing:0.033516px;}
.ls1e_c00069{letter-spacing:0.036000px;}
.ls0_c00069{letter-spacing:0.036072px;}
.lsb_c00069{letter-spacing:0.038304px;}
.lsa_c00069{letter-spacing:0.043092px;}
.ls18_c00069{letter-spacing:0.043200px;}
.lsd_c00069{letter-spacing:0.052668px;}
.ls15_c00069{letter-spacing:0.054756px;}
.ls1a_c00069{letter-spacing:0.057600px;}
.ls9_c00069{letter-spacing:0.062244px;}
.ls5_c00069{letter-spacing:0.070308px;}
.ls8_c00069{letter-spacing:0.071820px;}
.ls1c_c00069{letter-spacing:0.093600px;}
.ls7_c00069{letter-spacing:0.104040px;}
.ls20_c00069{letter-spacing:2.178540px;}
.ls4_c00069{letter-spacing:83.041560px;}
.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;}
}
.ws3_c00069{word-spacing:-19.600308px;}
.ws2_c00069{word-spacing:-19.545624px;}
.ws1_c00069{word-spacing:-17.978400px;}
.ws8_c00069{word-spacing:-13.310640px;}
.ws6_c00069{word-spacing:-10.812528px;}
.ws4_c00069{word-spacing:-10.808640px;}
.ws7_c00069{word-spacing:-10.804752px;}
.ws5_c00069{word-spacing:-10.800864px;}
.ws0_c00069{word-spacing:-10.584756px;}
.ws35_c00069{word-spacing:-0.023940px;}
.ws2b_c00069{word-spacing:-0.023436px;}
.ws37_c00069{word-spacing:-0.019152px;}
.ws3c_c00069{word-spacing:-0.014364px;}
.wsc_c00069{word-spacing:0.000000px;}
.ws36_c00069{word-spacing:0.004788px;}
.ws10_c00069{word-spacing:0.007200px;}
.ws3d_c00069{word-spacing:0.014364px;}
.wsf_c00069{word-spacing:0.014400px;}
.ws9_c00069{word-spacing:0.054108px;}
.wsa_c00069{word-spacing:0.108216px;}
.wsb_c00069{word-spacing:0.138276px;}
.ws34_c00069{word-spacing:0.316008px;}
.ws3b_c00069{word-spacing:0.387828px;}
.ws22_c00069{word-spacing:1.864800px;}
.ws21_c00069{word-spacing:1.922400px;}
.ws39_c00069{word-spacing:2.125872px;}
.ws3a_c00069{word-spacing:2.140236px;}
.ws38_c00069{word-spacing:2.164176px;}
.ws26_c00069{word-spacing:2.498400px;}
.ws25_c00069{word-spacing:2.512800px;}
.ws11_c00069{word-spacing:2.887200px;}
.ws1d_c00069{word-spacing:2.894400px;}
.ws1e_c00069{word-spacing:2.952000px;}
.ws15_c00069{word-spacing:5.767200px;}
.ws16_c00069{word-spacing:5.774400px;}
.ws1c_c00069{word-spacing:7.855200px;}
.ws1b_c00069{word-spacing:7.941600px;}
.ws2f_c00069{word-spacing:8.625600px;}
.ws2e_c00069{word-spacing:8.647200px;}
.ws2d_c00069{word-spacing:8.964000px;}
.ws2c_c00069{word-spacing:9.021600px;}
.ws27_c00069{word-spacing:9.043200px;}
.ws28_c00069{word-spacing:9.057600px;}
.ws20_c00069{word-spacing:10.418400px;}
.ws1f_c00069{word-spacing:10.440000px;}
.ws13_c00069{word-spacing:12.600000px;}
.ws14_c00069{word-spacing:12.614400px;}
.ws31_c00069{word-spacing:12.903660px;}
.ws32_c00069{word-spacing:12.913236px;}
.ws33_c00069{word-spacing:12.932388px;}
.ws30_c00069{word-spacing:12.961116px;}
.wsd_c00069{word-spacing:14.025600px;}
.wse_c00069{word-spacing:14.068800px;}
.ws29_c00069{word-spacing:15.840000px;}
.ws2a_c00069{word-spacing:15.890400px;}
.ws24_c00069{word-spacing:16.178400px;}
.ws23_c00069{word-spacing:16.250400px;}
.ws1a_c00069{word-spacing:19.756800px;}
.ws17_c00069{word-spacing:19.800000px;}
.ws18_c00069{word-spacing:19.872000px;}
.ws19_c00069{word-spacing:19.886400px;}
.ws12_c00069{word-spacing:24.141600px;}
._0_c00069{margin-left:-1.142280px;}
._1_c00069{width:1.008000px;}
._2_c00069{width:13.423680px;}
.fc0_c00069{color:rgb(0,0,0);}
.fs6_c00069{font-size:38.880000px;}
.fs3_c00069{font-size:42.120000px;}
.fs5_c00069{font-size:47.880000px;}
.fs2_c00069{font-size:54.000000px;}
.fs0_c00069{font-size:60.120000px;}
.fs1_c00069{font-size:72.000000px;}
.fs4_c00069{font-size:78.120000px;}
.y0_c00069{bottom:0.000000px;}
.y3_c00069{bottom:57.450450px;}
.y4_c00069{bottom:61.410450px;}
.y27_c00069{bottom:113.698470px;}
.y26_c00069{bottom:132.068730px;}
.y25_c00069{bottom:150.334950px;}
.y24_c00069{bottom:164.101080px;}
.y23_c00069{bottom:182.463060px;}
.y22_c00069{bottom:200.729280px;}
.y21_c00069{bottom:218.995500px;}
.y20_c00069{bottom:237.357480px;}
.y1f_c00069{bottom:251.039190px;}
.y1e_c00069{bottom:264.900450px;}
.y1d_c00069{bottom:280.110450px;}
.y1c_c00069{bottom:300.810450px;}
.y1b_c00069{bottom:321.510450px;}
.y1a_c00069{bottom:370.380450px;}
.y19_c00069{bottom:404.760450px;}
.y18_c00069{bottom:439.230450px;}
.y17_c00069{bottom:484.230450px;}
.y16_c00069{bottom:546.960450px;}
.y15_c00069{bottom:581.340450px;}
.y14_c00069{bottom:615.810450px;}
.y13_c00069{bottom:650.190450px;}
.y12_c00069{bottom:684.660450px;}
.y11_c00069{bottom:719.040450px;}
.y10_c00069{bottom:753.510450px;}
.yf_c00069{bottom:787.890450px;}
.ye_c00069{bottom:822.360450px;}
.yd_c00069{bottom:856.740450px;}
.yc_c00069{bottom:891.210450px;}
.yb_c00069{bottom:925.590450px;}
.ya_c00069{bottom:960.060450px;}
.y9_c00069{bottom:994.440450px;}
.y8_c00069{bottom:1028.910450px;}
.y7_c00069{bottom:1063.290450px;}
.y6_c00069{bottom:1106.760450px;}
.y5_c00069{bottom:1141.140450px;}
.y2_c00069{bottom:1173.810450px;}
.y1_c00069{bottom:1196.850450px;}
.h2_c00069{height:47.988281px;}
.h7_c00069{height:49.937344px;}
.h8_c00069{height:49.945264px;}
.h1_c00069{height:50.315273px;}
.h3_c00069{height:56.320312px;}
.h4_c00069{height:60.257812px;}
.h5_c00069{height:65.130820px;}
.h6_c00069{height:81.476719px;}
.h0_c00069{height:1263.000000px;}
.w1_c00069{width:892.500000px;}
.w0_c00069{width:892.830000px;}
.x0_c00069{left:0.000000px;}
.x2_c00069{left:127.620000px;}
.x6_c00069{left:141.114150px;}
.x1_c00069{left:145.440000px;}
.x5_c00069{left:180.810000px;}
.x4_c00069{left:439.020000px;}
.x3_c00069{left:446.490000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.v1_c00069{vertical-align:26.560000pt;}
.ls12_c00069{letter-spacing:-0.134400pt;}
.ls1d_c00069{letter-spacing:-0.062496pt;}
.ls1b_c00069{letter-spacing:-0.057600pt;}
.ls10_c00069{letter-spacing:-0.042752pt;}
.ls19_c00069{letter-spacing:-0.025600pt;}
.ls17_c00069{letter-spacing:-0.019200pt;}
.lsf_c00069{letter-spacing:-0.016032pt;}
.ls25_c00069{letter-spacing:-0.013824pt;}
.ls14_c00069{letter-spacing:-0.012800pt;}
.ls22_c00069{letter-spacing:-0.008512pt;}
.ls1f_c00069{letter-spacing:-0.006912pt;}
.ls16_c00069{letter-spacing:-0.006400pt;}
.ls23_c00069{letter-spacing:-0.003456pt;}
.ls11_c00069{letter-spacing:0.000000pt;}
.ls21_c00069{letter-spacing:0.003456pt;}
.lse_c00069{letter-spacing:0.004256pt;}
.ls2_c00069{letter-spacing:0.006400pt;}
.ls6_c00069{letter-spacing:0.012768pt;}
.ls13_c00069{letter-spacing:0.012800pt;}
.ls3_c00069{letter-spacing:0.013888pt;}
.ls24_c00069{letter-spacing:0.017024pt;}
.ls1_c00069{letter-spacing:0.019200pt;}
.lsc_c00069{letter-spacing:0.029792pt;}
.ls1e_c00069{letter-spacing:0.032000pt;}
.ls0_c00069{letter-spacing:0.032064pt;}
.lsb_c00069{letter-spacing:0.034048pt;}
.lsa_c00069{letter-spacing:0.038304pt;}
.ls18_c00069{letter-spacing:0.038400pt;}
.lsd_c00069{letter-spacing:0.046816pt;}
.ls15_c00069{letter-spacing:0.048672pt;}
.ls1a_c00069{letter-spacing:0.051200pt;}
.ls9_c00069{letter-spacing:0.055328pt;}
.ls5_c00069{letter-spacing:0.062496pt;}
.ls8_c00069{letter-spacing:0.063840pt;}
.ls1c_c00069{letter-spacing:0.083200pt;}
.ls7_c00069{letter-spacing:0.092480pt;}
.ls20_c00069{letter-spacing:1.936480pt;}
.ls4_c00069{letter-spacing:73.814720pt;}
.ws3_c00069{word-spacing:-17.422496pt;}
.ws2_c00069{word-spacing:-17.373888pt;}
.ws1_c00069{word-spacing:-15.980800pt;}
.ws8_c00069{word-spacing:-11.831680pt;}
.ws6_c00069{word-spacing:-9.611136pt;}
.ws4_c00069{word-spacing:-9.607680pt;}
.ws7_c00069{word-spacing:-9.604224pt;}
.ws5_c00069{word-spacing:-9.600768pt;}
.ws0_c00069{word-spacing:-9.408672pt;}
.ws35_c00069{word-spacing:-0.021280pt;}
.ws2b_c00069{word-spacing:-0.020832pt;}
.ws37_c00069{word-spacing:-0.017024pt;}
.ws3c_c00069{word-spacing:-0.012768pt;}
.wsc_c00069{word-spacing:0.000000pt;}
.ws36_c00069{word-spacing:0.004256pt;}
.ws10_c00069{word-spacing:0.006400pt;}
.ws3d_c00069{word-spacing:0.012768pt;}
.wsf_c00069{word-spacing:0.012800pt;}
.ws9_c00069{word-spacing:0.048096pt;}
.wsa_c00069{word-spacing:0.096192pt;}
.wsb_c00069{word-spacing:0.122912pt;}
.ws34_c00069{word-spacing:0.280896pt;}
.ws3b_c00069{word-spacing:0.344736pt;}
.ws22_c00069{word-spacing:1.657600pt;}
.ws21_c00069{word-spacing:1.708800pt;}
.ws39_c00069{word-spacing:1.889664pt;}
.ws3a_c00069{word-spacing:1.902432pt;}
.ws38_c00069{word-spacing:1.923712pt;}
.ws26_c00069{word-spacing:2.220800pt;}
.ws25_c00069{word-spacing:2.233600pt;}
.ws11_c00069{word-spacing:2.566400pt;}
.ws1d_c00069{word-spacing:2.572800pt;}
.ws1e_c00069{word-spacing:2.624000pt;}
.ws15_c00069{word-spacing:5.126400pt;}
.ws16_c00069{word-spacing:5.132800pt;}
.ws1c_c00069{word-spacing:6.982400pt;}
.ws1b_c00069{word-spacing:7.059200pt;}
.ws2f_c00069{word-spacing:7.667200pt;}
.ws2e_c00069{word-spacing:7.686400pt;}
.ws2d_c00069{word-spacing:7.968000pt;}
.ws2c_c00069{word-spacing:8.019200pt;}
.ws27_c00069{word-spacing:8.038400pt;}
.ws28_c00069{word-spacing:8.051200pt;}
.ws20_c00069{word-spacing:9.260800pt;}
.ws1f_c00069{word-spacing:9.280000pt;}
.ws13_c00069{word-spacing:11.200000pt;}
.ws14_c00069{word-spacing:11.212800pt;}
.ws31_c00069{word-spacing:11.469920pt;}
.ws32_c00069{word-spacing:11.478432pt;}
.ws33_c00069{word-spacing:11.495456pt;}
.ws30_c00069{word-spacing:11.520992pt;}
.wsd_c00069{word-spacing:12.467200pt;}
.wse_c00069{word-spacing:12.505600pt;}
.ws29_c00069{word-spacing:14.080000pt;}
.ws2a_c00069{word-spacing:14.124800pt;}
.ws24_c00069{word-spacing:14.380800pt;}
.ws23_c00069{word-spacing:14.444800pt;}
.ws1a_c00069{word-spacing:17.561600pt;}
.ws17_c00069{word-spacing:17.600000pt;}
.ws18_c00069{word-spacing:17.664000pt;}
.ws19_c00069{word-spacing:17.676800pt;}
.ws12_c00069{word-spacing:21.459200pt;}
._0_c00069{margin-left:-1.015360pt;}
._1_c00069{width:0.896000pt;}
._2_c00069{width:11.932160pt;}
.fs6_c00069{font-size:34.560000pt;}
.fs3_c00069{font-size:37.440000pt;}
.fs5_c00069{font-size:42.560000pt;}
.fs2_c00069{font-size:48.000000pt;}
.fs0_c00069{font-size:53.440000pt;}
.fs1_c00069{font-size:64.000000pt;}
.fs4_c00069{font-size:69.440000pt;}
.y0_c00069{bottom:0.000000pt;}
.y3_c00069{bottom:51.067067pt;}
.y4_c00069{bottom:54.587067pt;}
.y27_c00069{bottom:101.065307pt;}
.y26_c00069{bottom:117.394427pt;}
.y25_c00069{bottom:133.631067pt;}
.y24_c00069{bottom:145.867627pt;}
.y23_c00069{bottom:162.189387pt;}
.y22_c00069{bottom:178.426027pt;}
.y21_c00069{bottom:194.662667pt;}
.y20_c00069{bottom:210.984427pt;}
.y1f_c00069{bottom:223.145947pt;}
.y1e_c00069{bottom:235.467067pt;}
.y1d_c00069{bottom:248.987067pt;}
.y1c_c00069{bottom:267.387067pt;}
.y1b_c00069{bottom:285.787067pt;}
.y1a_c00069{bottom:329.227067pt;}
.y19_c00069{bottom:359.787067pt;}
.y18_c00069{bottom:390.427067pt;}
.y17_c00069{bottom:430.427067pt;}
.y16_c00069{bottom:486.187067pt;}
.y15_c00069{bottom:516.747067pt;}
.y14_c00069{bottom:547.387067pt;}
.y13_c00069{bottom:577.947067pt;}
.y12_c00069{bottom:608.587067pt;}
.y11_c00069{bottom:639.147067pt;}
.y10_c00069{bottom:669.787067pt;}
.yf_c00069{bottom:700.347067pt;}
.ye_c00069{bottom:730.987067pt;}
.yd_c00069{bottom:761.547067pt;}
.yc_c00069{bottom:792.187067pt;}
.yb_c00069{bottom:822.747067pt;}
.ya_c00069{bottom:853.387067pt;}
.y9_c00069{bottom:883.947067pt;}
.y8_c00069{bottom:914.587067pt;}
.y7_c00069{bottom:945.147067pt;}
.y6_c00069{bottom:983.787067pt;}
.y5_c00069{bottom:1014.347067pt;}
.y2_c00069{bottom:1043.387067pt;}
.y1_c00069{bottom:1063.867067pt;}
.h2_c00069{height:42.656250pt;}
.h7_c00069{height:44.388750pt;}
.h8_c00069{height:44.395790pt;}
.h1_c00069{height:44.724687pt;}
.h3_c00069{height:50.062500pt;}
.h4_c00069{height:53.562500pt;}
.h5_c00069{height:57.894063pt;}
.h6_c00069{height:72.423750pt;}
.h0_c00069{height:1122.666667pt;}
.w1_c00069{width:793.333333pt;}
.w0_c00069{width:793.626667pt;}
.x0_c00069{left:0.000000pt;}
.x2_c00069{left:113.440000pt;}
.x6_c00069{left:125.434800pt;}
.x1_c00069{left:129.280000pt;}
.x5_c00069{left:160.720000pt;}
.x4_c00069{left:390.240000pt;}
.x3_c00069{left:396.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_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_d0d9d41c0023e5313799cde2.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.100098;font-style:normal;font-weight:normal;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_3235fcf0e4688cb16f50d6ce.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;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_c00070;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00070;src:url('chunks/assets/font_19f8c4f19d3c21a3d0955765.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00070;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00070{font-family:ff5_c00070;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_c00070;src:url('chunks/assets/font_b2a2edbfb00aded688fc7b3e.woff2')format("woff");}.ff6_c00070{font-family:ff6_c00070;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_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;}
.v1_c00070{vertical-align:15.840000px;}
.v2_c00070{vertical-align:29.880000px;}
.ls17_c00070{letter-spacing:-0.266400px;}
.lse_c00070{letter-spacing:-0.151200px;}
.ls16_c00070{letter-spacing:-0.036000px;}
.ls18_c00070{letter-spacing:-0.031248px;}
.ls11_c00070{letter-spacing:-0.028800px;}
.ls15_c00070{letter-spacing:-0.021600px;}
.ls10_c00070{letter-spacing:-0.014400px;}
.ls19_c00070{letter-spacing:-0.007776px;}
.lsf_c00070{letter-spacing:-0.007200px;}
.lsd_c00070{letter-spacing:0.000000px;}
.ls2_c00070{letter-spacing:0.007200px;}
.ls9_c00070{letter-spacing:0.009576px;}
.ls3_c00070{letter-spacing:0.014400px;}
.ls4_c00070{letter-spacing:0.021600px;}
.ls13_c00070{letter-spacing:0.028800px;}
.ls8_c00070{letter-spacing:0.033516px;}
.ls14_c00070{letter-spacing:0.036000px;}
.ls7_c00070{letter-spacing:0.039060px;}
.lsb_c00070{letter-spacing:0.043092px;}
.lsc_c00070{letter-spacing:0.047880px;}
.ls0_c00070{letter-spacing:0.048096px;}
.ls5_c00070{letter-spacing:0.054756px;}
.ls12_c00070{letter-spacing:0.093600px;}
.lsa_c00070{letter-spacing:0.110124px;}
.ls6_c00070{letter-spacing:35.154000px;}
.ls1_c00070{letter-spacing:1227.240000px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00070{word-spacing:-19.569060px;}
.ws1_c00070{word-spacing:-19.498752px;}
.ws3_c00070{word-spacing:-13.320216px;}
.ws4_c00070{word-spacing:-13.310640px;}
.ws5_c00070{word-spacing:-10.800864px;}
.ws0_c00070{word-spacing:-10.584756px;}
.ws10_c00070{word-spacing:-0.093600px;}
.ws2d_c00070{word-spacing:-0.090972px;}
.ws2f_c00070{word-spacing:-0.028728px;}
.ws2e_c00070{word-spacing:-0.023940px;}
.ws2c_c00070{word-spacing:-0.014364px;}
.ws7_c00070{word-spacing:0.000000px;}
.wsf_c00070{word-spacing:0.028800px;}
.ws27_c00070{word-spacing:0.036000px;}
.ws6_c00070{word-spacing:0.042084px;}
.ws19_c00070{word-spacing:0.050400px;}
.ws1a_c00070{word-spacing:2.095200px;}
.ws1b_c00070{word-spacing:2.239200px;}
.ws20_c00070{word-spacing:3.254400px;}
.ws1c_c00070{word-spacing:3.628800px;}
.ws1d_c00070{word-spacing:3.650400px;}
.ws22_c00070{word-spacing:3.938400px;}
.ws17_c00070{word-spacing:3.945600px;}
.ws18_c00070{word-spacing:3.952800px;}
.ws23_c00070{word-spacing:4.161600px;}
.ws1f_c00070{word-spacing:6.487200px;}
.ws1e_c00070{word-spacing:6.494400px;}
.ws13_c00070{word-spacing:6.854400px;}
.ws14_c00070{word-spacing:6.883200px;}
.ws24_c00070{word-spacing:9.043200px;}
.ws25_c00070{word-spacing:9.100800px;}
.ws16_c00070{word-spacing:9.684000px;}
.ws15_c00070{word-spacing:9.748800px;}
.ws21_c00070{word-spacing:11.181600px;}
.wsd_c00070{word-spacing:12.240000px;}
.ws26_c00070{word-spacing:12.326400px;}
.ws9_c00070{word-spacing:14.040000px;}
.wsa_c00070{word-spacing:14.083200px;}
.ws8_c00070{word-spacing:15.163200px;}
.wsb_c00070{word-spacing:15.854400px;}
.wsc_c00070{word-spacing:15.912000px;}
.ws12_c00070{word-spacing:17.323200px;}
.ws11_c00070{word-spacing:17.632800px;}
.wse_c00070{word-spacing:18.374400px;}
.ws2a_c00070{word-spacing:23.320800px;}
.ws2b_c00070{word-spacing:23.414400px;}
.ws29_c00070{word-spacing:26.661600px;}
.ws28_c00070{word-spacing:26.726400px;}
._0_c00070{margin-left:-1.322640px;}
._1_c00070{width:1.008000px;}
.fc0_c00070{color:rgb(0,0,0);}
.fs6_c00070{font-size:38.880000px;}
.fs3_c00070{font-size:42.120000px;}
.fs5_c00070{font-size:47.880000px;}
.fs1_c00070{font-size:54.000000px;}
.fs0_c00070{font-size:60.120000px;}
.fs2_c00070{font-size:72.000000px;}
.fs4_c00070{font-size:78.120000px;}
.y0_c00070{bottom:0.000000px;}
.y3_c00070{bottom:57.450450px;}
.y24_c00070{bottom:113.707830px;}
.y23_c00070{bottom:132.069810px;}
.y22_c00070{bottom:150.336030px;}
.y21_c00070{bottom:168.602250px;}
.y20_c00070{bottom:186.964230px;}
.y1f_c00070{bottom:205.230450px;}
.y1e_c00070{bottom:220.440450px;}
.y1d_c00070{bottom:241.140450px;}
.y1c_c00070{bottom:261.840450px;}
.y1b_c00070{bottom:283.530450px;}
.y1a_c00070{bottom:317.910450px;}
.y19_c00070{bottom:363.000600px;}
.y18_c00070{bottom:425.640600px;}
.y17_c00070{bottom:460.110450px;}
.y16_c00070{bottom:494.490450px;}
.y15_c00070{bottom:528.960450px;}
.y14_c00070{bottom:563.340450px;}
.y13_c00070{bottom:606.810450px;}
.y12_c00070{bottom:641.190450px;}
.y11_c00070{bottom:675.660450px;}
.y10_c00070{bottom:710.040450px;}
.yf_c00070{bottom:744.510450px;}
.ye_c00070{bottom:787.890450px;}
.yd_c00070{bottom:822.360450px;}
.yc_c00070{bottom:856.740450px;}
.yb_c00070{bottom:891.210450px;}
.ya_c00070{bottom:925.590450px;}
.y9_c00070{bottom:969.060450px;}
.y8_c00070{bottom:1003.440450px;}
.y7_c00070{bottom:1037.910450px;}
.y6_c00070{bottom:1072.290450px;}
.y5_c00070{bottom:1106.760450px;}
.y4_c00070{bottom:1141.140450px;}
.y2_c00070{bottom:1177.860450px;}
.y1_c00070{bottom:1196.850450px;}
.h8_c00070{height:47.988281px;}
.h9_c00070{height:49.937344px;}
.h1_c00070{height:50.315273px;}
.h2_c00070{height:56.320312px;}
.h4_c00070{height:60.257812px;}
.h5_c00070{height:65.130820px;}
.h6_c00070{height:65.131420px;}
.h3_c00070{height:72.160312px;}
.h7_c00070{height:81.476719px;}
.h0_c00070{height:1263.000000px;}
.w1_c00070{width:892.500000px;}
.w0_c00070{width:892.830000px;}
.x0_c00070{left:0.000000px;}
.x1_c00070{left:127.620000px;}
.x2_c00070{left:180.810000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.v1_c00070{vertical-align:14.080000pt;}
.v2_c00070{vertical-align:26.560000pt;}
.ls17_c00070{letter-spacing:-0.236800pt;}
.lse_c00070{letter-spacing:-0.134400pt;}
.ls16_c00070{letter-spacing:-0.032000pt;}
.ls18_c00070{letter-spacing:-0.027776pt;}
.ls11_c00070{letter-spacing:-0.025600pt;}
.ls15_c00070{letter-spacing:-0.019200pt;}
.ls10_c00070{letter-spacing:-0.012800pt;}
.ls19_c00070{letter-spacing:-0.006912pt;}
.lsf_c00070{letter-spacing:-0.006400pt;}
.lsd_c00070{letter-spacing:0.000000pt;}
.ls2_c00070{letter-spacing:0.006400pt;}
.ls9_c00070{letter-spacing:0.008512pt;}
.ls3_c00070{letter-spacing:0.012800pt;}
.ls4_c00070{letter-spacing:0.019200pt;}
.ls13_c00070{letter-spacing:0.025600pt;}
.ls8_c00070{letter-spacing:0.029792pt;}
.ls14_c00070{letter-spacing:0.032000pt;}
.ls7_c00070{letter-spacing:0.034720pt;}
.lsb_c00070{letter-spacing:0.038304pt;}
.lsc_c00070{letter-spacing:0.042560pt;}
.ls0_c00070{letter-spacing:0.042752pt;}
.ls5_c00070{letter-spacing:0.048672pt;}
.ls12_c00070{letter-spacing:0.083200pt;}
.lsa_c00070{letter-spacing:0.097888pt;}
.ls6_c00070{letter-spacing:31.248000pt;}
.ls1_c00070{letter-spacing:1090.880000pt;}
.ws2_c00070{word-spacing:-17.394720pt;}
.ws1_c00070{word-spacing:-17.332224pt;}
.ws3_c00070{word-spacing:-11.840192pt;}
.ws4_c00070{word-spacing:-11.831680pt;}
.ws5_c00070{word-spacing:-9.600768pt;}
.ws0_c00070{word-spacing:-9.408672pt;}
.ws10_c00070{word-spacing:-0.083200pt;}
.ws2d_c00070{word-spacing:-0.080864pt;}
.ws2f_c00070{word-spacing:-0.025536pt;}
.ws2e_c00070{word-spacing:-0.021280pt;}
.ws2c_c00070{word-spacing:-0.012768pt;}
.ws7_c00070{word-spacing:0.000000pt;}
.wsf_c00070{word-spacing:0.025600pt;}
.ws27_c00070{word-spacing:0.032000pt;}
.ws6_c00070{word-spacing:0.037408pt;}
.ws19_c00070{word-spacing:0.044800pt;}
.ws1a_c00070{word-spacing:1.862400pt;}
.ws1b_c00070{word-spacing:1.990400pt;}
.ws20_c00070{word-spacing:2.892800pt;}
.ws1c_c00070{word-spacing:3.225600pt;}
.ws1d_c00070{word-spacing:3.244800pt;}
.ws22_c00070{word-spacing:3.500800pt;}
.ws17_c00070{word-spacing:3.507200pt;}
.ws18_c00070{word-spacing:3.513600pt;}
.ws23_c00070{word-spacing:3.699200pt;}
.ws1f_c00070{word-spacing:5.766400pt;}
.ws1e_c00070{word-spacing:5.772800pt;}
.ws13_c00070{word-spacing:6.092800pt;}
.ws14_c00070{word-spacing:6.118400pt;}
.ws24_c00070{word-spacing:8.038400pt;}
.ws25_c00070{word-spacing:8.089600pt;}
.ws16_c00070{word-spacing:8.608000pt;}
.ws15_c00070{word-spacing:8.665600pt;}
.ws21_c00070{word-spacing:9.939200pt;}
.wsd_c00070{word-spacing:10.880000pt;}
.ws26_c00070{word-spacing:10.956800pt;}
.ws9_c00070{word-spacing:12.480000pt;}
.wsa_c00070{word-spacing:12.518400pt;}
.ws8_c00070{word-spacing:13.478400pt;}
.wsb_c00070{word-spacing:14.092800pt;}
.wsc_c00070{word-spacing:14.144000pt;}
.ws12_c00070{word-spacing:15.398400pt;}
.ws11_c00070{word-spacing:15.673600pt;}
.wse_c00070{word-spacing:16.332800pt;}
.ws2a_c00070{word-spacing:20.729600pt;}
.ws2b_c00070{word-spacing:20.812800pt;}
.ws29_c00070{word-spacing:23.699200pt;}
.ws28_c00070{word-spacing:23.756800pt;}
._0_c00070{margin-left:-1.175680pt;}
._1_c00070{width:0.896000pt;}
.fs6_c00070{font-size:34.560000pt;}
.fs3_c00070{font-size:37.440000pt;}
.fs5_c00070{font-size:42.560000pt;}
.fs1_c00070{font-size:48.000000pt;}
.fs0_c00070{font-size:53.440000pt;}
.fs2_c00070{font-size:64.000000pt;}
.fs4_c00070{font-size:69.440000pt;}
.y0_c00070{bottom:0.000000pt;}
.y3_c00070{bottom:51.067067pt;}
.y24_c00070{bottom:101.073627pt;}
.y23_c00070{bottom:117.395387pt;}
.y22_c00070{bottom:133.632027pt;}
.y21_c00070{bottom:149.868667pt;}
.y20_c00070{bottom:166.190427pt;}
.y1f_c00070{bottom:182.427067pt;}
.y1e_c00070{bottom:195.947067pt;}
.y1d_c00070{bottom:214.347067pt;}
.y1c_c00070{bottom:232.747067pt;}
.y1b_c00070{bottom:252.027067pt;}
.y1a_c00070{bottom:282.587067pt;}
.y19_c00070{bottom:322.667200pt;}
.y18_c00070{bottom:378.347200pt;}
.y17_c00070{bottom:408.987067pt;}
.y16_c00070{bottom:439.547067pt;}
.y15_c00070{bottom:470.187067pt;}
.y14_c00070{bottom:500.747067pt;}
.y13_c00070{bottom:539.387067pt;}
.y12_c00070{bottom:569.947067pt;}
.y11_c00070{bottom:600.587067pt;}
.y10_c00070{bottom:631.147067pt;}
.yf_c00070{bottom:661.787067pt;}
.ye_c00070{bottom:700.347067pt;}
.yd_c00070{bottom:730.987067pt;}
.yc_c00070{bottom:761.547067pt;}
.yb_c00070{bottom:792.187067pt;}
.ya_c00070{bottom:822.747067pt;}
.y9_c00070{bottom:861.387067pt;}
.y8_c00070{bottom:891.947067pt;}
.y7_c00070{bottom:922.587067pt;}
.y6_c00070{bottom:953.147067pt;}
.y5_c00070{bottom:983.787067pt;}
.y4_c00070{bottom:1014.347067pt;}
.y2_c00070{bottom:1046.987067pt;}
.y1_c00070{bottom:1063.867067pt;}
.h8_c00070{height:42.656250pt;}
.h9_c00070{height:44.388750pt;}
.h1_c00070{height:44.724687pt;}
.h2_c00070{height:50.062500pt;}
.h4_c00070{height:53.562500pt;}
.h5_c00070{height:57.894062pt;}
.h6_c00070{height:57.894596pt;}
.h3_c00070{height:64.142500pt;}
.h7_c00070{height:72.423750pt;}
.h0_c00070{height:1122.666667pt;}
.w1_c00070{width:793.333333pt;}
.w0_c00070{width:793.626667pt;}
.x0_c00070{left:0.000000pt;}
.x1_c00070{left:113.440000pt;}
.x2_c00070{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_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_98e168baf3834f0a1a2ad76a.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00071;src:url('chunks/assets/font_cb262c82ee498c3346938447.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00071;src:url('chunks/assets/font_96bc0d50118d90452bd896fb.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;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_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;}
.v1_c00071{vertical-align:29.880000px;}
.ls15_c00071{letter-spacing:-0.151200px;}
.ls1d_c00071{letter-spacing:-0.064800px;}
.ls13_c00071{letter-spacing:-0.048096px;}
.ls1c_c00071{letter-spacing:-0.043200px;}
.ls1a_c00071{letter-spacing:-0.036000px;}
.ls18_c00071{letter-spacing:-0.028800px;}
.ls19_c00071{letter-spacing:-0.021600px;}
.ls12_c00071{letter-spacing:-0.018036px;}
.ls16_c00071{letter-spacing:-0.014400px;}
.ls1e_c00071{letter-spacing:-0.014364px;}
.ls17_c00071{letter-spacing:-0.007200px;}
.ls14_c00071{letter-spacing:0.000000px;}
.ls1_c00071{letter-spacing:0.007200px;}
.ls10_c00071{letter-spacing:0.009576px;}
.lsf_c00071{letter-spacing:0.014364px;}
.ls4_c00071{letter-spacing:0.014400px;}
.lsd_c00071{letter-spacing:0.019152px;}
.ls3_c00071{letter-spacing:0.021600px;}
.ls11_c00071{letter-spacing:0.023940px;}
.lse_c00071{letter-spacing:0.028728px;}
.ls6_c00071{letter-spacing:0.028800px;}
.ls7_c00071{letter-spacing:0.033516px;}
.ls5_c00071{letter-spacing:0.036000px;}
.ls0_c00071{letter-spacing:0.036072px;}
.lsa_c00071{letter-spacing:0.038304px;}
.ls8_c00071{letter-spacing:0.043092px;}
.lsc_c00071{letter-spacing:0.047880px;}
.ls9_c00071{letter-spacing:0.052668px;}
.ls2_c00071{letter-spacing:0.054756px;}
.lsb_c00071{letter-spacing:0.076608px;}
.ls1b_c00071{letter-spacing:0.093600px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00071{word-spacing:-17.964000px;}
.ws1_c00071{word-spacing:-10.584756px;}
.wsf_c00071{word-spacing:-0.093600px;}
.ws2f_c00071{word-spacing:-0.009576px;}
.ws37_c00071{word-spacing:-0.004788px;}
.ws5_c00071{word-spacing:0.000000px;}
.ws9_c00071{word-spacing:0.007200px;}
.ws36_c00071{word-spacing:0.033516px;}
.ws2_c00071{word-spacing:0.054108px;}
.ws1f_c00071{word-spacing:0.100800px;}
.ws3_c00071{word-spacing:0.108216px;}
.ws4_c00071{word-spacing:0.138276px;}
.ws2d_c00071{word-spacing:0.301644px;}
.ws2e_c00071{word-spacing:0.330372px;}
.ws6_c00071{word-spacing:0.360000px;}
.ws7_c00071{word-spacing:0.424800px;}
.ws2b_c00071{word-spacing:0.684684px;}
.ws2c_c00071{word-spacing:0.699048px;}
.ws19_c00071{word-spacing:0.741600px;}
.ws8_c00071{word-spacing:0.748800px;}
.ws1a_c00071{word-spacing:0.770400px;}
.ws23_c00071{word-spacing:1.116000px;}
.ws32_c00071{word-spacing:1.407672px;}
.ws34_c00071{word-spacing:2.499336px;}
.ws35_c00071{word-spacing:2.508912px;}
.ws33_c00071{word-spacing:2.528064px;}
.ws2a_c00071{word-spacing:3.576636px;}
.ws29_c00071{word-spacing:3.586212px;}
.ws10_c00071{word-spacing:3.794400px;}
.ws11_c00071{word-spacing:3.988800px;}
.ws1b_c00071{word-spacing:4.636800px;}
.ws1c_c00071{word-spacing:4.651200px;}
.ws15_c00071{word-spacing:5.004000px;}
.ws25_c00071{word-spacing:5.032800px;}
.ws14_c00071{word-spacing:5.083200px;}
.ws24_c00071{word-spacing:5.284800px;}
.ws18_c00071{word-spacing:6.854400px;}
.ws1d_c00071{word-spacing:7.192800px;}
.ws1e_c00071{word-spacing:7.286400px;}
.ws30_c00071{word-spacing:7.536312px;}
.ws31_c00071{word-spacing:7.550676px;}
.ws26_c00071{word-spacing:10.008000px;}
.ws27_c00071{word-spacing:10.036800px;}
.ws28_c00071{word-spacing:10.108800px;}
.ws12_c00071{word-spacing:12.592800px;}
.ws13_c00071{word-spacing:12.621600px;}
.wsc_c00071{word-spacing:15.919200px;}
.ws20_c00071{word-spacing:16.228800px;}
.wse_c00071{word-spacing:17.179200px;}
.wsd_c00071{word-spacing:17.287200px;}
.wsb_c00071{word-spacing:19.432800px;}
.wsa_c00071{word-spacing:19.540800px;}
.ws17_c00071{word-spacing:20.152800px;}
.ws16_c00071{word-spacing:20.253600px;}
.ws22_c00071{word-spacing:27.669600px;}
.ws21_c00071{word-spacing:27.741600px;}
._0_c00071{margin-left:-1.142280px;}
._1_c00071{width:1.296000px;}
._2_c00071{width:7.588980px;}
.fc0_c00071{color:rgb(0,0,0);}
.fs3_c00071{font-size:42.120000px;}
.fs4_c00071{font-size:47.880000px;}
.fs2_c00071{font-size:54.000000px;}
.fs0_c00071{font-size:60.120000px;}
.fs1_c00071{font-size:72.000000px;}
.y0_c00071{bottom:0.000000px;}
.y3_c00071{bottom:57.450450px;}
.y4_c00071{bottom:61.410450px;}
.y29_c00071{bottom:113.707560px;}
.y28_c00071{bottom:132.069540px;}
.y27_c00071{bottom:150.335760px;}
.y26_c00071{bottom:168.601980px;}
.y25_c00071{bottom:182.463240px;}
.y24_c00071{bottom:196.144950px;}
.y23_c00071{bottom:210.006210px;}
.y22_c00071{bottom:228.368190px;}
.y21_c00071{bottom:242.133690px;}
.y20_c00071{bottom:255.899190px;}
.y1f_c00071{bottom:269.760450px;}
.y1e_c00071{bottom:284.970450px;}
.y1d_c00071{bottom:305.580450px;}
.y1c_c00071{bottom:326.280450px;}
.y1b_c00071{bottom:347.790450px;}
.y1a_c00071{bottom:382.260450px;}
.y19_c00071{bottom:416.640450px;}
.y18_c00071{bottom:451.110450px;}
.y17_c00071{bottom:485.490450px;}
.y16_c00071{bottom:519.960450px;}
.y15_c00071{bottom:563.340450px;}
.y14_c00071{bottom:597.810450px;}
.y13_c00071{bottom:632.190450px;}
.y12_c00071{bottom:666.660450px;}
.y11_c00071{bottom:701.040450px;}
.y10_c00071{bottom:735.510450px;}
.yf_c00071{bottom:778.890450px;}
.ye_c00071{bottom:813.360450px;}
.yd_c00071{bottom:847.740450px;}
.yc_c00071{bottom:882.210450px;}
.yb_c00071{bottom:925.590450px;}
.ya_c00071{bottom:960.060450px;}
.y9_c00071{bottom:994.440450px;}
.y8_c00071{bottom:1028.910450px;}
.y7_c00071{bottom:1072.290450px;}
.y6_c00071{bottom:1106.760450px;}
.y5_c00071{bottom:1141.140450px;}
.y2_c00071{bottom:1173.810450px;}
.y1_c00071{bottom:1196.850450px;}
.h2_c00071{height:47.988281px;}
.h7_c00071{height:49.937344px;}
.h1_c00071{height:50.315273px;}
.h3_c00071{height:56.320312px;}
.h4_c00071{height:60.257812px;}
.h5_c00071{height:65.130820px;}
.h6_c00071{height:65.131420px;}
.h0_c00071{height:1263.000000px;}
.w1_c00071{width:892.500000px;}
.w0_c00071{width:892.830000px;}
.x0_c00071{left:0.000000px;}
.x2_c00071{left:127.620000px;}
.x1_c00071{left:145.440000px;}
.x6_c00071{left:154.624320px;}
.x5_c00071{left:180.810000px;}
.x4_c00071{left:439.020000px;}
.x3_c00071{left:446.490000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.v1_c00071{vertical-align:26.560000pt;}
.ls15_c00071{letter-spacing:-0.134400pt;}
.ls1d_c00071{letter-spacing:-0.057600pt;}
.ls13_c00071{letter-spacing:-0.042752pt;}
.ls1c_c00071{letter-spacing:-0.038400pt;}
.ls1a_c00071{letter-spacing:-0.032000pt;}
.ls18_c00071{letter-spacing:-0.025600pt;}
.ls19_c00071{letter-spacing:-0.019200pt;}
.ls12_c00071{letter-spacing:-0.016032pt;}
.ls16_c00071{letter-spacing:-0.012800pt;}
.ls1e_c00071{letter-spacing:-0.012768pt;}
.ls17_c00071{letter-spacing:-0.006400pt;}
.ls14_c00071{letter-spacing:0.000000pt;}
.ls1_c00071{letter-spacing:0.006400pt;}
.ls10_c00071{letter-spacing:0.008512pt;}
.lsf_c00071{letter-spacing:0.012768pt;}
.ls4_c00071{letter-spacing:0.012800pt;}
.lsd_c00071{letter-spacing:0.017024pt;}
.ls3_c00071{letter-spacing:0.019200pt;}
.ls11_c00071{letter-spacing:0.021280pt;}
.lse_c00071{letter-spacing:0.025536pt;}
.ls6_c00071{letter-spacing:0.025600pt;}
.ls7_c00071{letter-spacing:0.029792pt;}
.ls5_c00071{letter-spacing:0.032000pt;}
.ls0_c00071{letter-spacing:0.032064pt;}
.lsa_c00071{letter-spacing:0.034048pt;}
.ls8_c00071{letter-spacing:0.038304pt;}
.lsc_c00071{letter-spacing:0.042560pt;}
.ls9_c00071{letter-spacing:0.046816pt;}
.ls2_c00071{letter-spacing:0.048672pt;}
.lsb_c00071{letter-spacing:0.068096pt;}
.ls1b_c00071{letter-spacing:0.083200pt;}
.ws0_c00071{word-spacing:-15.968000pt;}
.ws1_c00071{word-spacing:-9.408672pt;}
.wsf_c00071{word-spacing:-0.083200pt;}
.ws2f_c00071{word-spacing:-0.008512pt;}
.ws37_c00071{word-spacing:-0.004256pt;}
.ws5_c00071{word-spacing:0.000000pt;}
.ws9_c00071{word-spacing:0.006400pt;}
.ws36_c00071{word-spacing:0.029792pt;}
.ws2_c00071{word-spacing:0.048096pt;}
.ws1f_c00071{word-spacing:0.089600pt;}
.ws3_c00071{word-spacing:0.096192pt;}
.ws4_c00071{word-spacing:0.122912pt;}
.ws2d_c00071{word-spacing:0.268128pt;}
.ws2e_c00071{word-spacing:0.293664pt;}
.ws6_c00071{word-spacing:0.320000pt;}
.ws7_c00071{word-spacing:0.377600pt;}
.ws2b_c00071{word-spacing:0.608608pt;}
.ws2c_c00071{word-spacing:0.621376pt;}
.ws19_c00071{word-spacing:0.659200pt;}
.ws8_c00071{word-spacing:0.665600pt;}
.ws1a_c00071{word-spacing:0.684800pt;}
.ws23_c00071{word-spacing:0.992000pt;}
.ws32_c00071{word-spacing:1.251264pt;}
.ws34_c00071{word-spacing:2.221632pt;}
.ws35_c00071{word-spacing:2.230144pt;}
.ws33_c00071{word-spacing:2.247168pt;}
.ws2a_c00071{word-spacing:3.179232pt;}
.ws29_c00071{word-spacing:3.187744pt;}
.ws10_c00071{word-spacing:3.372800pt;}
.ws11_c00071{word-spacing:3.545600pt;}
.ws1b_c00071{word-spacing:4.121600pt;}
.ws1c_c00071{word-spacing:4.134400pt;}
.ws15_c00071{word-spacing:4.448000pt;}
.ws25_c00071{word-spacing:4.473600pt;}
.ws14_c00071{word-spacing:4.518400pt;}
.ws24_c00071{word-spacing:4.697600pt;}
.ws18_c00071{word-spacing:6.092800pt;}
.ws1d_c00071{word-spacing:6.393600pt;}
.ws1e_c00071{word-spacing:6.476800pt;}
.ws30_c00071{word-spacing:6.698944pt;}
.ws31_c00071{word-spacing:6.711712pt;}
.ws26_c00071{word-spacing:8.896000pt;}
.ws27_c00071{word-spacing:8.921600pt;}
.ws28_c00071{word-spacing:8.985600pt;}
.ws12_c00071{word-spacing:11.193600pt;}
.ws13_c00071{word-spacing:11.219200pt;}
.wsc_c00071{word-spacing:14.150400pt;}
.ws20_c00071{word-spacing:14.425600pt;}
.wse_c00071{word-spacing:15.270400pt;}
.wsd_c00071{word-spacing:15.366400pt;}
.wsb_c00071{word-spacing:17.273600pt;}
.wsa_c00071{word-spacing:17.369600pt;}
.ws17_c00071{word-spacing:17.913600pt;}
.ws16_c00071{word-spacing:18.003200pt;}
.ws22_c00071{word-spacing:24.595200pt;}
.ws21_c00071{word-spacing:24.659200pt;}
._0_c00071{margin-left:-1.015360pt;}
._1_c00071{width:1.152000pt;}
._2_c00071{width:6.745760pt;}
.fs3_c00071{font-size:37.440000pt;}
.fs4_c00071{font-size:42.560000pt;}
.fs2_c00071{font-size:48.000000pt;}
.fs0_c00071{font-size:53.440000pt;}
.fs1_c00071{font-size:64.000000pt;}
.y0_c00071{bottom:0.000000pt;}
.y3_c00071{bottom:51.067067pt;}
.y4_c00071{bottom:54.587067pt;}
.y29_c00071{bottom:101.073387pt;}
.y28_c00071{bottom:117.395147pt;}
.y27_c00071{bottom:133.631787pt;}
.y26_c00071{bottom:149.868427pt;}
.y25_c00071{bottom:162.189547pt;}
.y24_c00071{bottom:174.351067pt;}
.y23_c00071{bottom:186.672187pt;}
.y22_c00071{bottom:202.993947pt;}
.y21_c00071{bottom:215.229947pt;}
.y20_c00071{bottom:227.465947pt;}
.y1f_c00071{bottom:239.787067pt;}
.y1e_c00071{bottom:253.307067pt;}
.y1d_c00071{bottom:271.627067pt;}
.y1c_c00071{bottom:290.027067pt;}
.y1b_c00071{bottom:309.147067pt;}
.y1a_c00071{bottom:339.787067pt;}
.y19_c00071{bottom:370.347067pt;}
.y18_c00071{bottom:400.987067pt;}
.y17_c00071{bottom:431.547067pt;}
.y16_c00071{bottom:462.187067pt;}
.y15_c00071{bottom:500.747067pt;}
.y14_c00071{bottom:531.387067pt;}
.y13_c00071{bottom:561.947067pt;}
.y12_c00071{bottom:592.587067pt;}
.y11_c00071{bottom:623.147067pt;}
.y10_c00071{bottom:653.787067pt;}
.yf_c00071{bottom:692.347067pt;}
.ye_c00071{bottom:722.987067pt;}
.yd_c00071{bottom:753.547067pt;}
.yc_c00071{bottom:784.187067pt;}
.yb_c00071{bottom:822.747067pt;}
.ya_c00071{bottom:853.387067pt;}
.y9_c00071{bottom:883.947067pt;}
.y8_c00071{bottom:914.587067pt;}
.y7_c00071{bottom:953.147067pt;}
.y6_c00071{bottom:983.787067pt;}
.y5_c00071{bottom:1014.347067pt;}
.y2_c00071{bottom:1043.387067pt;}
.y1_c00071{bottom:1063.867067pt;}
.h2_c00071{height:42.656250pt;}
.h7_c00071{height:44.388750pt;}
.h1_c00071{height:44.724687pt;}
.h3_c00071{height:50.062500pt;}
.h4_c00071{height:53.562500pt;}
.h5_c00071{height:57.894062pt;}
.h6_c00071{height:57.894596pt;}
.h0_c00071{height:1122.666667pt;}
.w1_c00071{width:793.333333pt;}
.w0_c00071{width:793.626667pt;}
.x0_c00071{left:0.000000pt;}
.x2_c00071{left:113.440000pt;}
.x1_c00071{left:129.280000pt;}
.x6_c00071{left:137.443840pt;}
.x5_c00071{left:160.720000pt;}
.x4_c00071{left:390.240000pt;}
.x3_c00071{left:396.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_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_a28accce6c8a25387b166b8f.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.100098;font-style:normal;font-weight:normal;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_de4acc4428ab311aa9617c0d.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;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_c00072;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00072;src:url('chunks/assets/font_fac2748f3674aa7543bc4911.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00072;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00072{font-family:ff5_c00072;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_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);}
.v3_c00072{vertical-align:-15.120000px;}
.v0_c00072{vertical-align:0.000000px;}
.v1_c00072{vertical-align:15.840000px;}
.v2_c00072{vertical-align:29.880000px;}
.ls15_c00072{letter-spacing:-0.151200px;}
.ls1e_c00072{letter-spacing:-0.085932px;}
.ls1d_c00072{letter-spacing:-0.036000px;}
.ls17_c00072{letter-spacing:-0.028800px;}
.ls1a_c00072{letter-spacing:-0.024048px;}
.ls16_c00072{letter-spacing:-0.021600px;}
.ls19_c00072{letter-spacing:-0.018036px;}
.ls18_c00072{letter-spacing:-0.014400px;}
.ls1c_c00072{letter-spacing:-0.007200px;}
.ls14_c00072{letter-spacing:0.000000px;}
.ls6_c00072{letter-spacing:0.006012px;}
.lsc_c00072{letter-spacing:0.007200px;}
.ls7_c00072{letter-spacing:0.012024px;}
.lsf_c00072{letter-spacing:0.014400px;}
.ls2_c00072{letter-spacing:0.021600px;}
.ls11_c00072{letter-spacing:0.023940px;}
.ls8_c00072{letter-spacing:0.024048px;}
.ls10_c00072{letter-spacing:0.028728px;}
.lse_c00072{letter-spacing:0.028800px;}
.ls12_c00072{letter-spacing:0.033516px;}
.ls13_c00072{letter-spacing:0.038304px;}
.lsb_c00072{letter-spacing:0.039060px;}
.ls4_c00072{letter-spacing:0.042084px;}
.ls0_c00072{letter-spacing:0.048096px;}
.lsd_c00072{letter-spacing:0.050400px;}
.ls5_c00072{letter-spacing:0.054108px;}
.ls3_c00072{letter-spacing:0.054756px;}
.ls1f_c00072{letter-spacing:0.093600px;}
.ls9_c00072{letter-spacing:0.136080px;}
.ls1b_c00072{letter-spacing:0.168336px;}
.lsa_c00072{letter-spacing:29.373120px;}
.ls1_c00072{letter-spacing:1227.240000px;}
.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;}
}
.ws3_c00072{word-spacing:-19.569060px;}
.ws2_c00072{word-spacing:-19.530000px;}
.ws4_c00072{word-spacing:-19.444068px;}
.ws5_c00072{word-spacing:-18.014400px;}
.ws0_c00072{word-spacing:-10.584756px;}
.ws1_c00072{word-spacing:-9.856080px;}
.ws32_c00072{word-spacing:-0.019152px;}
.wsa_c00072{word-spacing:-0.014400px;}
.ws31_c00072{word-spacing:-0.014364px;}
.ws2f_c00072{word-spacing:-0.009576px;}
.ws30_c00072{word-spacing:-0.004788px;}
.ws7_c00072{word-spacing:0.000000px;}
.ws26_c00072{word-spacing:0.007200px;}
.ws6_c00072{word-spacing:0.042084px;}
.ws18_c00072{word-spacing:0.057600px;}
.ws13_c00072{word-spacing:0.066132px;}
.ws12_c00072{word-spacing:0.078156px;}
.wsd_c00072{word-spacing:0.108216px;}
.ws8_c00072{word-spacing:0.338400px;}
.ws9_c00072{word-spacing:0.381600px;}
.ws17_c00072{word-spacing:1.447200px;}
.ws16_c00072{word-spacing:1.504800px;}
.ws10_c00072{word-spacing:1.521036px;}
.ws11_c00072{word-spacing:1.551096px;}
.ws1a_c00072{word-spacing:2.534400px;}
.ws19_c00072{word-spacing:2.592000px;}
.ws1e_c00072{word-spacing:3.592800px;}
.ws1d_c00072{word-spacing:3.600000px;}
.ws1f_c00072{word-spacing:3.657600px;}
.ws25_c00072{word-spacing:3.967200px;}
.ws24_c00072{word-spacing:3.988800px;}
.ws21_c00072{word-spacing:4.291200px;}
.ws20_c00072{word-spacing:4.384800px;}
.ws2e_c00072{word-spacing:5.767200px;}
.ws2d_c00072{word-spacing:5.774400px;}
.wsf_c00072{word-spacing:8.675316px;}
.wse_c00072{word-spacing:8.687340px;}
.ws27_c00072{word-spacing:11.131200px;}
.ws28_c00072{word-spacing:11.275200px;}
.wsc_c00072{word-spacing:14.054400px;}
.wsb_c00072{word-spacing:14.068800px;}
.ws29_c00072{word-spacing:18.000000px;}
.ws2a_c00072{word-spacing:18.036000px;}
.ws1b_c00072{word-spacing:19.389600px;}
.ws1c_c00072{word-spacing:19.468800px;}
.ws23_c00072{word-spacing:21.909600px;}
.ws22_c00072{word-spacing:22.017600px;}
.ws14_c00072{word-spacing:22.687200px;}
.ws15_c00072{word-spacing:22.716000px;}
.ws2b_c00072{word-spacing:23.407200px;}
.ws2c_c00072{word-spacing:23.421600px;}
._0_c00072{margin-left:-1.322640px;}
._1_c00072{width:1.005480px;}
.fc0_c00072{color:rgb(0,0,0);}
.fs4_c00072{font-size:38.880000px;}
.fs3_c00072{font-size:42.120000px;}
.fs6_c00072{font-size:47.880000px;}
.fs1_c00072{font-size:54.000000px;}
.fs0_c00072{font-size:60.120000px;}
.fs2_c00072{font-size:72.000000px;}
.fs5_c00072{font-size:78.120000px;}
.y0_c00072{bottom:0.000000px;}
.y3_c00072{bottom:57.450450px;}
.y25_c00072{bottom:110.477370px;}
.y24_c00072{bottom:128.743590px;}
.y23_c00072{bottom:147.009810px;}
.y22_c00072{bottom:165.371790px;}
.y21_c00072{bottom:183.638010px;}
.y20_c00072{bottom:201.904230px;}
.y1f_c00072{bottom:220.170450px;}
.y1e_c00072{bottom:235.380450px;}
.y1d_c00072{bottom:256.080450px;}
.y1c_c00072{bottom:276.780450px;}
.y1b_c00072{bottom:335.280450px;}
.y1a_c00072{bottom:369.660450px;}
.y19_c00072{bottom:404.130450px;}
.y18_c00072{bottom:438.510450px;}
.y17_c00072{bottom:481.980450px;}
.y16_c00072{bottom:516.360450px;}
.y15_c00072{bottom:550.830450px;}
.y14_c00072{bottom:585.210450px;}
.y13_c00072{bottom:619.680450px;}
.y12_c00072{bottom:654.060450px;}
.y11_c00072{bottom:688.530450px;}
.y10_c00072{bottom:733.530450px;}
.yf_c00072{bottom:796.260600px;}
.ye_c00072{bottom:830.640600px;}
.yd_c00072{bottom:865.110600px;}
.yc_c00072{bottom:911.532720px;}
.yb_c00072{bottom:928.456500px;}
.ya_c00072{bottom:945.290100px;}
.y9_c00072{bottom:962.213880px;}
.y8_c00072{bottom:988.050450px;}
.y7_c00072{bottom:1028.910450px;}
.y6_c00072{bottom:1063.290450px;}
.y5_c00072{bottom:1106.760450px;}
.y4_c00072{bottom:1141.140450px;}
.y2_c00072{bottom:1177.860450px;}
.y1_c00072{bottom:1196.850450px;}
.h9_c00072{height:47.988281px;}
.ha_c00072{height:49.937344px;}
.h1_c00072{height:50.315273px;}
.h6_c00072{height:50.386193px;}
.h2_c00072{height:56.320312px;}
.h5_c00072{height:60.257812px;}
.h4_c00072{height:65.130820px;}
.h8_c00072{height:65.131420px;}
.h3_c00072{height:72.160312px;}
.h7_c00072{height:81.476719px;}
.h0_c00072{height:1263.000000px;}
.w1_c00072{width:892.500000px;}
.w0_c00072{width:892.830000px;}
.x0_c00072{left:0.000000px;}
.x1_c00072{left:127.620000px;}
.x3_c00072{left:154.710000px;}
.x2_c00072{left:180.810000px;}
@media print{
.v3_c00072{vertical-align:-13.440000pt;}
.v0_c00072{vertical-align:0.000000pt;}
.v1_c00072{vertical-align:14.080000pt;}
.v2_c00072{vertical-align:26.560000pt;}
.ls15_c00072{letter-spacing:-0.134400pt;}
.ls1e_c00072{letter-spacing:-0.076384pt;}
.ls1d_c00072{letter-spacing:-0.032000pt;}
.ls17_c00072{letter-spacing:-0.025600pt;}
.ls1a_c00072{letter-spacing:-0.021376pt;}
.ls16_c00072{letter-spacing:-0.019200pt;}
.ls19_c00072{letter-spacing:-0.016032pt;}
.ls18_c00072{letter-spacing:-0.012800pt;}
.ls1c_c00072{letter-spacing:-0.006400pt;}
.ls14_c00072{letter-spacing:0.000000pt;}
.ls6_c00072{letter-spacing:0.005344pt;}
.lsc_c00072{letter-spacing:0.006400pt;}
.ls7_c00072{letter-spacing:0.010688pt;}
.lsf_c00072{letter-spacing:0.012800pt;}
.ls2_c00072{letter-spacing:0.019200pt;}
.ls11_c00072{letter-spacing:0.021280pt;}
.ls8_c00072{letter-spacing:0.021376pt;}
.ls10_c00072{letter-spacing:0.025536pt;}
.lse_c00072{letter-spacing:0.025600pt;}
.ls12_c00072{letter-spacing:0.029792pt;}
.ls13_c00072{letter-spacing:0.034048pt;}
.lsb_c00072{letter-spacing:0.034720pt;}
.ls4_c00072{letter-spacing:0.037408pt;}
.ls0_c00072{letter-spacing:0.042752pt;}
.lsd_c00072{letter-spacing:0.044800pt;}
.ls5_c00072{letter-spacing:0.048096pt;}
.ls3_c00072{letter-spacing:0.048672pt;}
.ls1f_c00072{letter-spacing:0.083200pt;}
.ls9_c00072{letter-spacing:0.120960pt;}
.ls1b_c00072{letter-spacing:0.149632pt;}
.lsa_c00072{letter-spacing:26.109440pt;}
.ls1_c00072{letter-spacing:1090.880000pt;}
.ws3_c00072{word-spacing:-17.394720pt;}
.ws2_c00072{word-spacing:-17.360000pt;}
.ws4_c00072{word-spacing:-17.283616pt;}
.ws5_c00072{word-spacing:-16.012800pt;}
.ws0_c00072{word-spacing:-9.408672pt;}
.ws1_c00072{word-spacing:-8.760960pt;}
.ws32_c00072{word-spacing:-0.017024pt;}
.wsa_c00072{word-spacing:-0.012800pt;}
.ws31_c00072{word-spacing:-0.012768pt;}
.ws2f_c00072{word-spacing:-0.008512pt;}
.ws30_c00072{word-spacing:-0.004256pt;}
.ws7_c00072{word-spacing:0.000000pt;}
.ws26_c00072{word-spacing:0.006400pt;}
.ws6_c00072{word-spacing:0.037408pt;}
.ws18_c00072{word-spacing:0.051200pt;}
.ws13_c00072{word-spacing:0.058784pt;}
.ws12_c00072{word-spacing:0.069472pt;}
.wsd_c00072{word-spacing:0.096192pt;}
.ws8_c00072{word-spacing:0.300800pt;}
.ws9_c00072{word-spacing:0.339200pt;}
.ws17_c00072{word-spacing:1.286400pt;}
.ws16_c00072{word-spacing:1.337600pt;}
.ws10_c00072{word-spacing:1.352032pt;}
.ws11_c00072{word-spacing:1.378752pt;}
.ws1a_c00072{word-spacing:2.252800pt;}
.ws19_c00072{word-spacing:2.304000pt;}
.ws1e_c00072{word-spacing:3.193600pt;}
.ws1d_c00072{word-spacing:3.200000pt;}
.ws1f_c00072{word-spacing:3.251200pt;}
.ws25_c00072{word-spacing:3.526400pt;}
.ws24_c00072{word-spacing:3.545600pt;}
.ws21_c00072{word-spacing:3.814400pt;}
.ws20_c00072{word-spacing:3.897600pt;}
.ws2e_c00072{word-spacing:5.126400pt;}
.ws2d_c00072{word-spacing:5.132800pt;}
.wsf_c00072{word-spacing:7.711392pt;}
.wse_c00072{word-spacing:7.722080pt;}
.ws27_c00072{word-spacing:9.894400pt;}
.ws28_c00072{word-spacing:10.022400pt;}
.wsc_c00072{word-spacing:12.492800pt;}
.wsb_c00072{word-spacing:12.505600pt;}
.ws29_c00072{word-spacing:16.000000pt;}
.ws2a_c00072{word-spacing:16.032000pt;}
.ws1b_c00072{word-spacing:17.235200pt;}
.ws1c_c00072{word-spacing:17.305600pt;}
.ws23_c00072{word-spacing:19.475200pt;}
.ws22_c00072{word-spacing:19.571200pt;}
.ws14_c00072{word-spacing:20.166400pt;}
.ws15_c00072{word-spacing:20.192000pt;}
.ws2b_c00072{word-spacing:20.806400pt;}
.ws2c_c00072{word-spacing:20.819200pt;}
._0_c00072{margin-left:-1.175680pt;}
._1_c00072{width:0.893760pt;}
.fs4_c00072{font-size:34.560000pt;}
.fs3_c00072{font-size:37.440000pt;}
.fs6_c00072{font-size:42.560000pt;}
.fs1_c00072{font-size:48.000000pt;}
.fs0_c00072{font-size:53.440000pt;}
.fs2_c00072{font-size:64.000000pt;}
.fs5_c00072{font-size:69.440000pt;}
.y0_c00072{bottom:0.000000pt;}
.y3_c00072{bottom:51.067067pt;}
.y25_c00072{bottom:98.202107pt;}
.y24_c00072{bottom:114.438747pt;}
.y23_c00072{bottom:130.675387pt;}
.y22_c00072{bottom:146.997147pt;}
.y21_c00072{bottom:163.233787pt;}
.y20_c00072{bottom:179.470427pt;}
.y1f_c00072{bottom:195.707067pt;}
.y1e_c00072{bottom:209.227067pt;}
.y1d_c00072{bottom:227.627067pt;}
.y1c_c00072{bottom:246.027067pt;}
.y1b_c00072{bottom:298.027067pt;}
.y1a_c00072{bottom:328.587067pt;}
.y19_c00072{bottom:359.227067pt;}
.y18_c00072{bottom:389.787067pt;}
.y17_c00072{bottom:428.427067pt;}
.y16_c00072{bottom:458.987067pt;}
.y15_c00072{bottom:489.627067pt;}
.y14_c00072{bottom:520.187067pt;}
.y13_c00072{bottom:550.827067pt;}
.y12_c00072{bottom:581.387067pt;}
.y11_c00072{bottom:612.027067pt;}
.y10_c00072{bottom:652.027067pt;}
.yf_c00072{bottom:707.787200pt;}
.ye_c00072{bottom:738.347200pt;}
.yd_c00072{bottom:768.987200pt;}
.yc_c00072{bottom:810.251307pt;}
.yb_c00072{bottom:825.294667pt;}
.ya_c00072{bottom:840.257867pt;}
.y9_c00072{bottom:855.301227pt;}
.y8_c00072{bottom:878.267067pt;}
.y7_c00072{bottom:914.587067pt;}
.y6_c00072{bottom:945.147067pt;}
.y5_c00072{bottom:983.787067pt;}
.y4_c00072{bottom:1014.347067pt;}
.y2_c00072{bottom:1046.987067pt;}
.y1_c00072{bottom:1063.867067pt;}
.h9_c00072{height:42.656250pt;}
.ha_c00072{height:44.388750pt;}
.h1_c00072{height:44.724687pt;}
.h6_c00072{height:44.787728pt;}
.h2_c00072{height:50.062500pt;}
.h5_c00072{height:53.562500pt;}
.h4_c00072{height:57.894063pt;}
.h8_c00072{height:57.894596pt;}
.h3_c00072{height:64.142500pt;}
.h7_c00072{height:72.423750pt;}
.h0_c00072{height:1122.666667pt;}
.w1_c00072{width:793.333333pt;}
.w0_c00072{width:793.626667pt;}
.x0_c00072{left:0.000000pt;}
.x1_c00072{left:113.440000pt;}
.x3_c00072{left:137.520000pt;}
.x2_c00072{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_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_2c1fdffd7334bc9954d976bc.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_f0a3dc55db0867c8a42eda0b.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;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_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;}
.v1_c00073{vertical-align:29.880000px;}
.lsc_c00073{letter-spacing:-0.266400px;}
.lsb_c00073{letter-spacing:-0.151200px;}
.lsd_c00073{letter-spacing:-0.050400px;}
.ls9_c00073{letter-spacing:-0.048096px;}
.ls10_c00073{letter-spacing:-0.043200px;}
.lse_c00073{letter-spacing:-0.036000px;}
.ls15_c00073{letter-spacing:-0.028800px;}
.ls12_c00073{letter-spacing:-0.021600px;}
.ls8_c00073{letter-spacing:-0.018036px;}
.ls14_c00073{letter-spacing:-0.014400px;}
.ls11_c00073{letter-spacing:-0.007200px;}
.lsa_c00073{letter-spacing:0.000000px;}
.ls4_c00073{letter-spacing:0.007200px;}
.ls3_c00073{letter-spacing:0.014400px;}
.ls5_c00073{letter-spacing:0.023940px;}
.ls7_c00073{letter-spacing:0.028728px;}
.ls1_c00073{letter-spacing:0.028800px;}
.ls0_c00073{letter-spacing:0.036072px;}
.ls6_c00073{letter-spacing:0.038304px;}
.ls13_c00073{letter-spacing:0.050400px;}
.ls2_c00073{letter-spacing:0.054756px;}
.lsf_c00073{letter-spacing:0.093600px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00073{word-spacing:-10.584756px;}
.ws8_c00073{word-spacing:-0.021600px;}
.ws2b_c00073{word-spacing:-0.019152px;}
.ws2c_c00073{word-spacing:-0.009576px;}
.ws1b_c00073{word-spacing:-0.007200px;}
.ws2a_c00073{word-spacing:-0.004788px;}
.ws4_c00073{word-spacing:0.000000px;}
.wsc_c00073{word-spacing:0.043200px;}
.ws1_c00073{word-spacing:0.054108px;}
.ws21_c00073{word-spacing:0.057600px;}
.ws2_c00073{word-spacing:0.108216px;}
.ws3_c00073{word-spacing:0.138276px;}
.ws1a_c00073{word-spacing:1.267200px;}
.ws19_c00073{word-spacing:1.368000px;}
.ws1d_c00073{word-spacing:1.396800px;}
.ws18_c00073{word-spacing:1.411200px;}
.ws14_c00073{word-spacing:1.447200px;}
.ws1e_c00073{word-spacing:1.461600px;}
.ws22_c00073{word-spacing:1.468800px;}
.ws15_c00073{word-spacing:1.476000px;}
.ws9_c00073{word-spacing:1.490400px;}
.ws29_c00073{word-spacing:1.504800px;}
.ws1c_c00073{word-spacing:2.116800px;}
.ws7_c00073{word-spacing:2.491200px;}
.ws5_c00073{word-spacing:2.520000px;}
.ws6_c00073{word-spacing:2.606400px;}
.ws25_c00073{word-spacing:3.247200px;}
.ws26_c00073{word-spacing:3.268800px;}
.ws24_c00073{word-spacing:3.981600px;}
.ws23_c00073{word-spacing:3.996000px;}
.wse_c00073{word-spacing:5.011200px;}
.wsd_c00073{word-spacing:5.032800px;}
.wsf_c00073{word-spacing:5.443200px;}
.ws13_c00073{word-spacing:7.200000px;}
.ws12_c00073{word-spacing:7.221600px;}
.ws20_c00073{word-spacing:8.301600px;}
.ws1f_c00073{word-spacing:8.330400px;}
.ws10_c00073{word-spacing:8.647200px;}
.ws28_c00073{word-spacing:8.654400px;}
.ws11_c00073{word-spacing:8.661600px;}
.ws27_c00073{word-spacing:8.683200px;}
.wsb_c00073{word-spacing:10.821600px;}
.wsa_c00073{word-spacing:10.987200px;}
.ws17_c00073{word-spacing:19.080000px;}
.ws16_c00073{word-spacing:19.101600px;}
._0_c00073{margin-left:-1.142280px;}
._1_c00073{width:1.238400px;}
.fc0_c00073{color:rgb(0,0,0);}
.fs3_c00073{font-size:42.120000px;}
.fs4_c00073{font-size:47.880000px;}
.fs2_c00073{font-size:54.000000px;}
.fs0_c00073{font-size:60.120000px;}
.fs1_c00073{font-size:72.000000px;}
.y0_c00073{bottom:0.000000px;}
.y3_c00073{bottom:57.450450px;}
.y4_c00073{bottom:61.410450px;}
.y26_c00073{bottom:113.709780px;}
.y25_c00073{bottom:132.071760px;}
.y24_c00073{bottom:150.337980px;}
.y23_c00073{bottom:168.604200px;}
.y22_c00073{bottom:186.966180px;}
.y21_c00073{bottom:205.232400px;}
.y20_c00073{bottom:223.498620px;}
.y1f_c00073{bottom:241.860600px;}
.y1e_c00073{bottom:257.070450px;}
.y1d_c00073{bottom:277.770450px;}
.y1c_c00073{bottom:298.470600px;}
.y1b_c00073{bottom:347.790600px;}
.y1a_c00073{bottom:382.260600px;}
.y19_c00073{bottom:416.640600px;}
.y18_c00073{bottom:451.110450px;}
.y17_c00073{bottom:485.490450px;}
.y16_c00073{bottom:519.960450px;}
.y15_c00073{bottom:563.340450px;}
.y14_c00073{bottom:597.810450px;}
.y13_c00073{bottom:632.190450px;}
.y12_c00073{bottom:666.660450px;}
.y11_c00073{bottom:710.040450px;}
.y10_c00073{bottom:744.510450px;}
.yf_c00073{bottom:778.890600px;}
.ye_c00073{bottom:813.360450px;}
.yd_c00073{bottom:847.740450px;}
.yc_c00073{bottom:882.210450px;}
.yb_c00073{bottom:916.590450px;}
.ya_c00073{bottom:951.060450px;}
.y9_c00073{bottom:994.440450px;}
.y8_c00073{bottom:1028.910450px;}
.y7_c00073{bottom:1063.290450px;}
.y6_c00073{bottom:1106.760450px;}
.y5_c00073{bottom:1141.140450px;}
.y2_c00073{bottom:1173.810450px;}
.y1_c00073{bottom:1196.850450px;}
.h2_c00073{height:47.988281px;}
.h6_c00073{height:49.937344px;}
.h1_c00073{height:50.315273px;}
.h3_c00073{height:56.320312px;}
.h4_c00073{height:60.257812px;}
.h5_c00073{height:65.130820px;}
.h0_c00073{height:1263.000000px;}
.w1_c00073{width:892.500000px;}
.w0_c00073{width:892.830000px;}
.x0_c00073{left:0.000000px;}
.x2_c00073{left:127.620000px;}
.x1_c00073{left:145.440000px;}
.x5_c00073{left:180.810000px;}
.x4_c00073{left:439.020000px;}
.x3_c00073{left:446.490000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.v1_c00073{vertical-align:26.560000pt;}
.lsc_c00073{letter-spacing:-0.236800pt;}
.lsb_c00073{letter-spacing:-0.134400pt;}
.lsd_c00073{letter-spacing:-0.044800pt;}
.ls9_c00073{letter-spacing:-0.042752pt;}
.ls10_c00073{letter-spacing:-0.038400pt;}
.lse_c00073{letter-spacing:-0.032000pt;}
.ls15_c00073{letter-spacing:-0.025600pt;}
.ls12_c00073{letter-spacing:-0.019200pt;}
.ls8_c00073{letter-spacing:-0.016032pt;}
.ls14_c00073{letter-spacing:-0.012800pt;}
.ls11_c00073{letter-spacing:-0.006400pt;}
.lsa_c00073{letter-spacing:0.000000pt;}
.ls4_c00073{letter-spacing:0.006400pt;}
.ls3_c00073{letter-spacing:0.012800pt;}
.ls5_c00073{letter-spacing:0.021280pt;}
.ls7_c00073{letter-spacing:0.025536pt;}
.ls1_c00073{letter-spacing:0.025600pt;}
.ls0_c00073{letter-spacing:0.032064pt;}
.ls6_c00073{letter-spacing:0.034048pt;}
.ls13_c00073{letter-spacing:0.044800pt;}
.ls2_c00073{letter-spacing:0.048672pt;}
.lsf_c00073{letter-spacing:0.083200pt;}
.ws0_c00073{word-spacing:-9.408672pt;}
.ws8_c00073{word-spacing:-0.019200pt;}
.ws2b_c00073{word-spacing:-0.017024pt;}
.ws2c_c00073{word-spacing:-0.008512pt;}
.ws1b_c00073{word-spacing:-0.006400pt;}
.ws2a_c00073{word-spacing:-0.004256pt;}
.ws4_c00073{word-spacing:0.000000pt;}
.wsc_c00073{word-spacing:0.038400pt;}
.ws1_c00073{word-spacing:0.048096pt;}
.ws21_c00073{word-spacing:0.051200pt;}
.ws2_c00073{word-spacing:0.096192pt;}
.ws3_c00073{word-spacing:0.122912pt;}
.ws1a_c00073{word-spacing:1.126400pt;}
.ws19_c00073{word-spacing:1.216000pt;}
.ws1d_c00073{word-spacing:1.241600pt;}
.ws18_c00073{word-spacing:1.254400pt;}
.ws14_c00073{word-spacing:1.286400pt;}
.ws1e_c00073{word-spacing:1.299200pt;}
.ws22_c00073{word-spacing:1.305600pt;}
.ws15_c00073{word-spacing:1.312000pt;}
.ws9_c00073{word-spacing:1.324800pt;}
.ws29_c00073{word-spacing:1.337600pt;}
.ws1c_c00073{word-spacing:1.881600pt;}
.ws7_c00073{word-spacing:2.214400pt;}
.ws5_c00073{word-spacing:2.240000pt;}
.ws6_c00073{word-spacing:2.316800pt;}
.ws25_c00073{word-spacing:2.886400pt;}
.ws26_c00073{word-spacing:2.905600pt;}
.ws24_c00073{word-spacing:3.539200pt;}
.ws23_c00073{word-spacing:3.552000pt;}
.wse_c00073{word-spacing:4.454400pt;}
.wsd_c00073{word-spacing:4.473600pt;}
.wsf_c00073{word-spacing:4.838400pt;}
.ws13_c00073{word-spacing:6.400000pt;}
.ws12_c00073{word-spacing:6.419200pt;}
.ws20_c00073{word-spacing:7.379200pt;}
.ws1f_c00073{word-spacing:7.404800pt;}
.ws10_c00073{word-spacing:7.686400pt;}
.ws28_c00073{word-spacing:7.692800pt;}
.ws11_c00073{word-spacing:7.699200pt;}
.ws27_c00073{word-spacing:7.718400pt;}
.wsb_c00073{word-spacing:9.619200pt;}
.wsa_c00073{word-spacing:9.766400pt;}
.ws17_c00073{word-spacing:16.960000pt;}
.ws16_c00073{word-spacing:16.979200pt;}
._0_c00073{margin-left:-1.015360pt;}
._1_c00073{width:1.100800pt;}
.fs3_c00073{font-size:37.440000pt;}
.fs4_c00073{font-size:42.560000pt;}
.fs2_c00073{font-size:48.000000pt;}
.fs0_c00073{font-size:53.440000pt;}
.fs1_c00073{font-size:64.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y3_c00073{bottom:51.067067pt;}
.y4_c00073{bottom:54.587067pt;}
.y26_c00073{bottom:101.075360pt;}
.y25_c00073{bottom:117.397120pt;}
.y24_c00073{bottom:133.633760pt;}
.y23_c00073{bottom:149.870400pt;}
.y22_c00073{bottom:166.192160pt;}
.y21_c00073{bottom:182.428800pt;}
.y20_c00073{bottom:198.665440pt;}
.y1f_c00073{bottom:214.987200pt;}
.y1e_c00073{bottom:228.507067pt;}
.y1d_c00073{bottom:246.907067pt;}
.y1c_c00073{bottom:265.307200pt;}
.y1b_c00073{bottom:309.147200pt;}
.y1a_c00073{bottom:339.787200pt;}
.y19_c00073{bottom:370.347200pt;}
.y18_c00073{bottom:400.987067pt;}
.y17_c00073{bottom:431.547067pt;}
.y16_c00073{bottom:462.187067pt;}
.y15_c00073{bottom:500.747067pt;}
.y14_c00073{bottom:531.387067pt;}
.y13_c00073{bottom:561.947067pt;}
.y12_c00073{bottom:592.587067pt;}
.y11_c00073{bottom:631.147067pt;}
.y10_c00073{bottom:661.787067pt;}
.yf_c00073{bottom:692.347200pt;}
.ye_c00073{bottom:722.987067pt;}
.yd_c00073{bottom:753.547067pt;}
.yc_c00073{bottom:784.187067pt;}
.yb_c00073{bottom:814.747067pt;}
.ya_c00073{bottom:845.387067pt;}
.y9_c00073{bottom:883.947067pt;}
.y8_c00073{bottom:914.587067pt;}
.y7_c00073{bottom:945.147067pt;}
.y6_c00073{bottom:983.787067pt;}
.y5_c00073{bottom:1014.347067pt;}
.y2_c00073{bottom:1043.387067pt;}
.y1_c00073{bottom:1063.867067pt;}
.h2_c00073{height:42.656250pt;}
.h6_c00073{height:44.388750pt;}
.h1_c00073{height:44.724687pt;}
.h3_c00073{height:50.062500pt;}
.h4_c00073{height:53.562500pt;}
.h5_c00073{height:57.894063pt;}
.h0_c00073{height:1122.666667pt;}
.w1_c00073{width:793.333333pt;}
.w0_c00073{width:793.626667pt;}
.x0_c00073{left:0.000000pt;}
.x2_c00073{left:113.440000pt;}
.x1_c00073{left:129.280000pt;}
.x5_c00073{left:160.720000pt;}
.x4_c00073{left:390.240000pt;}
.x3_c00073{left:396.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_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_aa3d350c244e744354d01bda.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.100098;font-style:normal;font-weight:normal;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_893de879519d02327628b094.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;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_c00074;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00074;src:url('chunks/assets/font_0f86b06bf6a8f71dbf1a1e9a.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00074;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;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_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;}
.v1_c00074{vertical-align:15.840000px;}
.v2_c00074{vertical-align:29.880000px;}
.ls14_c00074{letter-spacing:-0.266400px;}
.lsc_c00074{letter-spacing:-0.151200px;}
.ls17_c00074{letter-spacing:-0.057600px;}
.ls16_c00074{letter-spacing:-0.050400px;}
.ls15_c00074{letter-spacing:-0.039060px;}
.ls11_c00074{letter-spacing:-0.036000px;}
.lsd_c00074{letter-spacing:-0.028800px;}
.ls10_c00074{letter-spacing:-0.021600px;}
.lse_c00074{letter-spacing:-0.014400px;}
.lsf_c00074{letter-spacing:-0.007200px;}
.lsb_c00074{letter-spacing:0.000000px;}
.ls6_c00074{letter-spacing:0.007200px;}
.ls3_c00074{letter-spacing:0.014400px;}
.ls7_c00074{letter-spacing:0.021600px;}
.ls9_c00074{letter-spacing:0.023940px;}
.lsa_c00074{letter-spacing:0.028728px;}
.ls13_c00074{letter-spacing:0.028800px;}
.ls8_c00074{letter-spacing:0.033516px;}
.ls5_c00074{letter-spacing:0.039060px;}
.ls0_c00074{letter-spacing:0.048096px;}
.ls2_c00074{letter-spacing:0.054756px;}
.ls12_c00074{letter-spacing:0.093600px;}
.ls4_c00074{letter-spacing:29.373120px;}
.ls1_c00074{letter-spacing:1227.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;}
}
.ws4_c00074{word-spacing:-19.569060px;}
.ws3_c00074{word-spacing:-19.530000px;}
.ws5_c00074{word-spacing:-19.490940px;}
.ws2_c00074{word-spacing:-17.985600px;}
.ws1_c00074{word-spacing:-17.964000px;}
.ws0_c00074{word-spacing:-10.584756px;}
.ws14_c00074{word-spacing:-0.093600px;}
.ws28_c00074{word-spacing:-0.014364px;}
.ws2a_c00074{word-spacing:-0.009576px;}
.ws29_c00074{word-spacing:-0.004788px;}
.ws7_c00074{word-spacing:0.000000px;}
.ws22_c00074{word-spacing:0.007200px;}
.ws6_c00074{word-spacing:0.042084px;}
.ws1e_c00074{word-spacing:0.705600px;}
.ws1f_c00074{word-spacing:0.763200px;}
.ws23_c00074{word-spacing:1.821600px;}
.ws16_c00074{word-spacing:2.131200px;}
.ws15_c00074{word-spacing:2.174400px;}
.wsd_c00074{word-spacing:3.261600px;}
.ws12_c00074{word-spacing:3.621600px;}
.ws11_c00074{word-spacing:3.672000px;}
.ws1a_c00074{word-spacing:3.945600px;}
.ws1b_c00074{word-spacing:4.017600px;}
.wsa_c00074{word-spacing:4.694400px;}
.ws25_c00074{word-spacing:4.716000px;}
.ws24_c00074{word-spacing:4.730400px;}
.ws27_c00074{word-spacing:5.076000px;}
.ws26_c00074{word-spacing:5.090400px;}
.ws10_c00074{word-spacing:5.097600px;}
.wsf_c00074{word-spacing:5.378400px;}
.ws19_c00074{word-spacing:5.421600px;}
.ws17_c00074{word-spacing:6.091200px;}
.ws18_c00074{word-spacing:6.156000px;}
.ws21_c00074{word-spacing:13.276800px;}
.ws20_c00074{word-spacing:13.291200px;}
.wsc_c00074{word-spacing:14.738400px;}
.wsb_c00074{word-spacing:14.767200px;}
.ws13_c00074{word-spacing:16.574400px;}
.ws8_c00074{word-spacing:16.639200px;}
.ws9_c00074{word-spacing:16.704000px;}
.ws1c_c00074{word-spacing:25.473600px;}
.ws1d_c00074{word-spacing:25.581600px;}
.wse_c00074{word-spacing:27.727200px;}
._0_c00074{margin-left:-1.322640px;}
._1_c00074{width:1.224000px;}
.fc0_c00074{color:rgb(0,0,0);}
.fs3_c00074{font-size:42.120000px;}
.fs5_c00074{font-size:47.880000px;}
.fs1_c00074{font-size:54.000000px;}
.fs0_c00074{font-size:60.120000px;}
.fs2_c00074{font-size:72.000000px;}
.fs4_c00074{font-size:78.120000px;}
.y0_c00074{bottom:0.000000px;}
.y3_c00074{bottom:57.450450px;}
.y24_c00074{bottom:113.707830px;}
.y23_c00074{bottom:132.069810px;}
.y22_c00074{bottom:150.336030px;}
.y21_c00074{bottom:168.602250px;}
.y20_c00074{bottom:186.964230px;}
.y1f_c00074{bottom:205.230450px;}
.y1e_c00074{bottom:220.440450px;}
.y1d_c00074{bottom:241.140450px;}
.y1c_c00074{bottom:261.840450px;}
.y1b_c00074{bottom:283.530450px;}
.y1a_c00074{bottom:317.910450px;}
.y19_c00074{bottom:352.380450px;}
.y18_c00074{bottom:386.760450px;}
.y17_c00074{bottom:431.850450px;}
.y16_c00074{bottom:494.490450px;}
.y15_c00074{bottom:528.960450px;}
.y14_c00074{bottom:563.340450px;}
.y13_c00074{bottom:606.810450px;}
.y12_c00074{bottom:641.190450px;}
.y11_c00074{bottom:675.660600px;}
.y10_c00074{bottom:710.040600px;}
.yf_c00074{bottom:744.510600px;}
.ye_c00074{bottom:778.890600px;}
.yd_c00074{bottom:822.360450px;}
.yc_c00074{bottom:856.740450px;}
.yb_c00074{bottom:891.210450px;}
.ya_c00074{bottom:925.590450px;}
.y9_c00074{bottom:969.060450px;}
.y8_c00074{bottom:1003.440450px;}
.y7_c00074{bottom:1037.910450px;}
.y6_c00074{bottom:1072.290450px;}
.y5_c00074{bottom:1106.760450px;}
.y4_c00074{bottom:1141.140450px;}
.y2_c00074{bottom:1177.860450px;}
.y1_c00074{bottom:1196.850450px;}
.h9_c00074{height:47.988281px;}
.ha_c00074{height:49.937344px;}
.h1_c00074{height:50.315273px;}
.h2_c00074{height:56.320312px;}
.h4_c00074{height:60.257812px;}
.h6_c00074{height:65.130220px;}
.h5_c00074{height:65.130820px;}
.h7_c00074{height:65.131420px;}
.h3_c00074{height:72.160312px;}
.h8_c00074{height:81.476719px;}
.h0_c00074{height:1263.000000px;}
.w1_c00074{width:892.500000px;}
.w0_c00074{width:892.830000px;}
.x0_c00074{left:0.000000px;}
.x1_c00074{left:127.620000px;}
.x2_c00074{left:180.810000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.v1_c00074{vertical-align:14.080000pt;}
.v2_c00074{vertical-align:26.560000pt;}
.ls14_c00074{letter-spacing:-0.236800pt;}
.lsc_c00074{letter-spacing:-0.134400pt;}
.ls17_c00074{letter-spacing:-0.051200pt;}
.ls16_c00074{letter-spacing:-0.044800pt;}
.ls15_c00074{letter-spacing:-0.034720pt;}
.ls11_c00074{letter-spacing:-0.032000pt;}
.lsd_c00074{letter-spacing:-0.025600pt;}
.ls10_c00074{letter-spacing:-0.019200pt;}
.lse_c00074{letter-spacing:-0.012800pt;}
.lsf_c00074{letter-spacing:-0.006400pt;}
.lsb_c00074{letter-spacing:0.000000pt;}
.ls6_c00074{letter-spacing:0.006400pt;}
.ls3_c00074{letter-spacing:0.012800pt;}
.ls7_c00074{letter-spacing:0.019200pt;}
.ls9_c00074{letter-spacing:0.021280pt;}
.lsa_c00074{letter-spacing:0.025536pt;}
.ls13_c00074{letter-spacing:0.025600pt;}
.ls8_c00074{letter-spacing:0.029792pt;}
.ls5_c00074{letter-spacing:0.034720pt;}
.ls0_c00074{letter-spacing:0.042752pt;}
.ls2_c00074{letter-spacing:0.048672pt;}
.ls12_c00074{letter-spacing:0.083200pt;}
.ls4_c00074{letter-spacing:26.109440pt;}
.ls1_c00074{letter-spacing:1090.880000pt;}
.ws4_c00074{word-spacing:-17.394720pt;}
.ws3_c00074{word-spacing:-17.360000pt;}
.ws5_c00074{word-spacing:-17.325280pt;}
.ws2_c00074{word-spacing:-15.987200pt;}
.ws1_c00074{word-spacing:-15.968000pt;}
.ws0_c00074{word-spacing:-9.408672pt;}
.ws14_c00074{word-spacing:-0.083200pt;}
.ws28_c00074{word-spacing:-0.012768pt;}
.ws2a_c00074{word-spacing:-0.008512pt;}
.ws29_c00074{word-spacing:-0.004256pt;}
.ws7_c00074{word-spacing:0.000000pt;}
.ws22_c00074{word-spacing:0.006400pt;}
.ws6_c00074{word-spacing:0.037408pt;}
.ws1e_c00074{word-spacing:0.627200pt;}
.ws1f_c00074{word-spacing:0.678400pt;}
.ws23_c00074{word-spacing:1.619200pt;}
.ws16_c00074{word-spacing:1.894400pt;}
.ws15_c00074{word-spacing:1.932800pt;}
.wsd_c00074{word-spacing:2.899200pt;}
.ws12_c00074{word-spacing:3.219200pt;}
.ws11_c00074{word-spacing:3.264000pt;}
.ws1a_c00074{word-spacing:3.507200pt;}
.ws1b_c00074{word-spacing:3.571200pt;}
.wsa_c00074{word-spacing:4.172800pt;}
.ws25_c00074{word-spacing:4.192000pt;}
.ws24_c00074{word-spacing:4.204800pt;}
.ws27_c00074{word-spacing:4.512000pt;}
.ws26_c00074{word-spacing:4.524800pt;}
.ws10_c00074{word-spacing:4.531200pt;}
.wsf_c00074{word-spacing:4.780800pt;}
.ws19_c00074{word-spacing:4.819200pt;}
.ws17_c00074{word-spacing:5.414400pt;}
.ws18_c00074{word-spacing:5.472000pt;}
.ws21_c00074{word-spacing:11.801600pt;}
.ws20_c00074{word-spacing:11.814400pt;}
.wsc_c00074{word-spacing:13.100800pt;}
.wsb_c00074{word-spacing:13.126400pt;}
.ws13_c00074{word-spacing:14.732800pt;}
.ws8_c00074{word-spacing:14.790400pt;}
.ws9_c00074{word-spacing:14.848000pt;}
.ws1c_c00074{word-spacing:22.643200pt;}
.ws1d_c00074{word-spacing:22.739200pt;}
.wse_c00074{word-spacing:24.646400pt;}
._0_c00074{margin-left:-1.175680pt;}
._1_c00074{width:1.088000pt;}
.fs3_c00074{font-size:37.440000pt;}
.fs5_c00074{font-size:42.560000pt;}
.fs1_c00074{font-size:48.000000pt;}
.fs0_c00074{font-size:53.440000pt;}
.fs2_c00074{font-size:64.000000pt;}
.fs4_c00074{font-size:69.440000pt;}
.y0_c00074{bottom:0.000000pt;}
.y3_c00074{bottom:51.067067pt;}
.y24_c00074{bottom:101.073627pt;}
.y23_c00074{bottom:117.395387pt;}
.y22_c00074{bottom:133.632027pt;}
.y21_c00074{bottom:149.868667pt;}
.y20_c00074{bottom:166.190427pt;}
.y1f_c00074{bottom:182.427067pt;}
.y1e_c00074{bottom:195.947067pt;}
.y1d_c00074{bottom:214.347067pt;}
.y1c_c00074{bottom:232.747067pt;}
.y1b_c00074{bottom:252.027067pt;}
.y1a_c00074{bottom:282.587067pt;}
.y19_c00074{bottom:313.227067pt;}
.y18_c00074{bottom:343.787067pt;}
.y17_c00074{bottom:383.867067pt;}
.y16_c00074{bottom:439.547067pt;}
.y15_c00074{bottom:470.187067pt;}
.y14_c00074{bottom:500.747067pt;}
.y13_c00074{bottom:539.387067pt;}
.y12_c00074{bottom:569.947067pt;}
.y11_c00074{bottom:600.587200pt;}
.y10_c00074{bottom:631.147200pt;}
.yf_c00074{bottom:661.787200pt;}
.ye_c00074{bottom:692.347200pt;}
.yd_c00074{bottom:730.987067pt;}
.yc_c00074{bottom:761.547067pt;}
.yb_c00074{bottom:792.187067pt;}
.ya_c00074{bottom:822.747067pt;}
.y9_c00074{bottom:861.387067pt;}
.y8_c00074{bottom:891.947067pt;}
.y7_c00074{bottom:922.587067pt;}
.y6_c00074{bottom:953.147067pt;}
.y5_c00074{bottom:983.787067pt;}
.y4_c00074{bottom:1014.347067pt;}
.y2_c00074{bottom:1046.987067pt;}
.y1_c00074{bottom:1063.867067pt;}
.h9_c00074{height:42.656250pt;}
.ha_c00074{height:44.388750pt;}
.h1_c00074{height:44.724687pt;}
.h2_c00074{height:50.062500pt;}
.h4_c00074{height:53.562500pt;}
.h6_c00074{height:57.893529pt;}
.h5_c00074{height:57.894062pt;}
.h7_c00074{height:57.894596pt;}
.h3_c00074{height:64.142500pt;}
.h8_c00074{height:72.423750pt;}
.h0_c00074{height:1122.666667pt;}
.w1_c00074{width:793.333333pt;}
.w0_c00074{width:793.626667pt;}
.x0_c00074{left:0.000000pt;}
.x1_c00074{left:113.440000pt;}
.x2_c00074{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_c00075 {
    display:none;
  }
  .loading-indicator_c00075.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00075 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00075 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00075" -> "#page-container .classname_c00075")
 */
.pf_c00075 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00075 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00075 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00075 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00075 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00075 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00075 {overflow:visible;}
  }
}
.c_c00075 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00075 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00075:after { /* webkit #35443 */
  content: '';
}
.t_c00075:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00075 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00075 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00075 { /* info for Javascript */
  display:none;
}
.l_c00075 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00075 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00075 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00075:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00075;src:url('chunks/assets/font_f6ab9d15c31655b5fb08bd26.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00075;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00075;src:url('chunks/assets/font_7d4744d413565bc63f03f189.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;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_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00075{vertical-align:-29.880000px;}
.v0_c00075{vertical-align:0.000000px;}
.v1_c00075{vertical-align:29.880000px;}
.ls10_c00075{letter-spacing:-0.151200px;}
.lse_c00075{letter-spacing:-0.048096px;}
.ls18_c00075{letter-spacing:-0.042084px;}
.ls12_c00075{letter-spacing:-0.036000px;}
.ls11_c00075{letter-spacing:-0.021600px;}
.lsd_c00075{letter-spacing:-0.018036px;}
.ls13_c00075{letter-spacing:-0.014400px;}
.ls14_c00075{letter-spacing:-0.007200px;}
.ls17_c00075{letter-spacing:-0.006012px;}
.lsf_c00075{letter-spacing:0.000000px;}
.ls15_c00075{letter-spacing:0.007200px;}
.ls6_c00075{letter-spacing:0.014400px;}
.ls5_c00075{letter-spacing:0.021600px;}
.lsb_c00075{letter-spacing:0.023940px;}
.ls8_c00075{letter-spacing:0.033516px;}
.ls0_c00075{letter-spacing:0.036072px;}
.lsc_c00075{letter-spacing:0.038304px;}
.lsa_c00075{letter-spacing:0.043092px;}
.ls9_c00075{letter-spacing:0.047880px;}
.ls3_c00075{letter-spacing:0.050544px;}
.ls4_c00075{letter-spacing:0.054756px;}
.ls1_c00075{letter-spacing:0.064800px;}
.ls2_c00075{letter-spacing:0.086400px;}
.ls16_c00075{letter-spacing:0.093600px;}
.ls7_c00075{letter-spacing:0.108216px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00075{word-spacing:-17.964000px;}
.ws1_c00075{word-spacing:-10.584756px;}
.ws0_c00075{word-spacing:-10.580544px;}
.ws11_c00075{word-spacing:-0.201600px;}
.ws30_c00075{word-spacing:-0.014364px;}
.ws2f_c00075{word-spacing:-0.004788px;}
.ws6_c00075{word-spacing:0.000000px;}
.ws12_c00075{word-spacing:0.007200px;}
.wsa_c00075{word-spacing:0.014400px;}
.ws27_c00075{word-spacing:0.021600px;}
.ws3_c00075{word-spacing:0.054108px;}
.ws4_c00075{word-spacing:0.108216px;}
.ws5_c00075{word-spacing:0.138276px;}
.ws28_c00075{word-spacing:0.342684px;}
.ws29_c00075{word-spacing:0.456912px;}
.ws22_c00075{word-spacing:1.425600px;}
.ws1f_c00075{word-spacing:1.778400px;}
.ws1e_c00075{word-spacing:1.908000px;}
.ws1c_c00075{word-spacing:2.858400px;}
.wsd_c00075{word-spacing:2.887200px;}
.ws1d_c00075{word-spacing:2.908800px;}
.ws14_c00075{word-spacing:3.124800px;}
.ws13_c00075{word-spacing:3.247200px;}
.ws16_c00075{word-spacing:3.866400px;}
.ws15_c00075{word-spacing:3.888000px;}
.ws2d_c00075{word-spacing:3.930948px;}
.ws2e_c00075{word-spacing:3.935736px;}
.ws17_c00075{word-spacing:3.981600px;}
.wsf_c00075{word-spacing:4.320000px;}
.ws10_c00075{word-spacing:4.406400px;}
.ws1b_c00075{word-spacing:5.054400px;}
.ws1a_c00075{word-spacing:5.097600px;}
.ws2c_c00075{word-spacing:5.745600px;}
.ws32_c00075{word-spacing:6.099912px;}
.ws31_c00075{word-spacing:6.104700px;}
.ws2b_c00075{word-spacing:6.228432px;}
.ws18_c00075{word-spacing:6.487200px;}
.wse_c00075{word-spacing:6.494400px;}
.ws19_c00075{word-spacing:6.501600px;}
.ws2a_c00075{word-spacing:6.613200px;}
.ws26_c00075{word-spacing:7.560000px;}
.ws20_c00075{word-spacing:10.425600px;}
.ws21_c00075{word-spacing:10.526400px;}
.wsc_c00075{word-spacing:11.224800px;}
.ws25_c00075{word-spacing:12.254400px;}
.wsb_c00075{word-spacing:12.614400px;}
.ws23_c00075{word-spacing:14.407200px;}
.ws24_c00075{word-spacing:14.464800px;}
.ws9_c00075{word-spacing:19.555200px;}
.ws8_c00075{word-spacing:19.713600px;}
.ws7_c00075{word-spacing:19.821600px;}
._2_c00075{margin-left:-2.470932px;}
._0_c00075{margin-left:-1.142280px;}
._1_c00075{width:1.224000px;}
.fc0_c00075{color:rgb(0,0,0);}
.fs3_c00075{font-size:42.120000px;}
.fs4_c00075{font-size:47.880000px;}
.fs2_c00075{font-size:54.000000px;}
.fs0_c00075{font-size:60.120000px;}
.fs1_c00075{font-size:72.000000px;}
.y0_c00075{bottom:0.000000px;}
.y3_c00075{bottom:57.450450px;}
.y4_c00075{bottom:61.410450px;}
.y28_c00075{bottom:113.715570px;}
.y27_c00075{bottom:132.077550px;}
.y26_c00075{bottom:150.343770px;}
.y25_c00075{bottom:164.109270px;}
.y24_c00075{bottom:182.471250px;}
.y23_c00075{bottom:200.737470px;}
.y22_c00075{bottom:219.003690px;}
.y21_c00075{bottom:232.864950px;}
.y20_c00075{bottom:246.630450px;}
.y1f_c00075{bottom:261.840450px;}
.y1e_c00075{bottom:282.540450px;}
.y1d_c00075{bottom:303.240450px;}
.y1c_c00075{bottom:324.566850px;}
.y1b_c00075{bottom:341.400450px;}
.y1a_c00075{bottom:382.260600px;}
.y19_c00075{bottom:416.640600px;}
.y18_c00075{bottom:460.110450px;}
.y17_c00075{bottom:494.490450px;}
.y16_c00075{bottom:528.960450px;}
.y15_c00075{bottom:563.340450px;}
.y14_c00075{bottom:597.810450px;}
.y13_c00075{bottom:641.190450px;}
.y12_c00075{bottom:675.660450px;}
.y11_c00075{bottom:710.040450px;}
.y10_c00075{bottom:744.510450px;}
.yf_c00075{bottom:778.890450px;}
.ye_c00075{bottom:813.360450px;}
.yd_c00075{bottom:847.740450px;}
.yc_c00075{bottom:891.210450px;}
.yb_c00075{bottom:925.590450px;}
.ya_c00075{bottom:960.060450px;}
.y9_c00075{bottom:994.440450px;}
.y8_c00075{bottom:1028.910450px;}
.y7_c00075{bottom:1063.290450px;}
.y6_c00075{bottom:1106.760450px;}
.y5_c00075{bottom:1141.140450px;}
.y2_c00075{bottom:1173.810450px;}
.y1_c00075{bottom:1196.850450px;}
.h2_c00075{height:47.988281px;}
.h7_c00075{height:49.937344px;}
.h1_c00075{height:50.315273px;}
.h3_c00075{height:56.320312px;}
.h4_c00075{height:60.257812px;}
.h5_c00075{height:65.130820px;}
.h6_c00075{height:65.131420px;}
.h0_c00075{height:1263.000000px;}
.w1_c00075{width:892.500000px;}
.w0_c00075{width:892.830000px;}
.x0_c00075{left:0.000000px;}
.x2_c00075{left:127.620000px;}
.x1_c00075{left:145.440000px;}
.x6_c00075{left:154.624320px;}
.x5_c00075{left:180.810000px;}
.x4_c00075{left:439.020000px;}
.x3_c00075{left:446.490000px;}
@media print{
.v2_c00075{vertical-align:-26.560000pt;}
.v0_c00075{vertical-align:0.000000pt;}
.v1_c00075{vertical-align:26.560000pt;}
.ls10_c00075{letter-spacing:-0.134400pt;}
.lse_c00075{letter-spacing:-0.042752pt;}
.ls18_c00075{letter-spacing:-0.037408pt;}
.ls12_c00075{letter-spacing:-0.032000pt;}
.ls11_c00075{letter-spacing:-0.019200pt;}
.lsd_c00075{letter-spacing:-0.016032pt;}
.ls13_c00075{letter-spacing:-0.012800pt;}
.ls14_c00075{letter-spacing:-0.006400pt;}
.ls17_c00075{letter-spacing:-0.005344pt;}
.lsf_c00075{letter-spacing:0.000000pt;}
.ls15_c00075{letter-spacing:0.006400pt;}
.ls6_c00075{letter-spacing:0.012800pt;}
.ls5_c00075{letter-spacing:0.019200pt;}
.lsb_c00075{letter-spacing:0.021280pt;}
.ls8_c00075{letter-spacing:0.029792pt;}
.ls0_c00075{letter-spacing:0.032064pt;}
.lsc_c00075{letter-spacing:0.034048pt;}
.lsa_c00075{letter-spacing:0.038304pt;}
.ls9_c00075{letter-spacing:0.042560pt;}
.ls3_c00075{letter-spacing:0.044928pt;}
.ls4_c00075{letter-spacing:0.048672pt;}
.ls1_c00075{letter-spacing:0.057600pt;}
.ls2_c00075{letter-spacing:0.076800pt;}
.ls16_c00075{letter-spacing:0.083200pt;}
.ls7_c00075{letter-spacing:0.096192pt;}
.ws2_c00075{word-spacing:-15.968000pt;}
.ws1_c00075{word-spacing:-9.408672pt;}
.ws0_c00075{word-spacing:-9.404928pt;}
.ws11_c00075{word-spacing:-0.179200pt;}
.ws30_c00075{word-spacing:-0.012768pt;}
.ws2f_c00075{word-spacing:-0.004256pt;}
.ws6_c00075{word-spacing:0.000000pt;}
.ws12_c00075{word-spacing:0.006400pt;}
.wsa_c00075{word-spacing:0.012800pt;}
.ws27_c00075{word-spacing:0.019200pt;}
.ws3_c00075{word-spacing:0.048096pt;}
.ws4_c00075{word-spacing:0.096192pt;}
.ws5_c00075{word-spacing:0.122912pt;}
.ws28_c00075{word-spacing:0.304608pt;}
.ws29_c00075{word-spacing:0.406144pt;}
.ws22_c00075{word-spacing:1.267200pt;}
.ws1f_c00075{word-spacing:1.580800pt;}
.ws1e_c00075{word-spacing:1.696000pt;}
.ws1c_c00075{word-spacing:2.540800pt;}
.wsd_c00075{word-spacing:2.566400pt;}
.ws1d_c00075{word-spacing:2.585600pt;}
.ws14_c00075{word-spacing:2.777600pt;}
.ws13_c00075{word-spacing:2.886400pt;}
.ws16_c00075{word-spacing:3.436800pt;}
.ws15_c00075{word-spacing:3.456000pt;}
.ws2d_c00075{word-spacing:3.494176pt;}
.ws2e_c00075{word-spacing:3.498432pt;}
.ws17_c00075{word-spacing:3.539200pt;}
.wsf_c00075{word-spacing:3.840000pt;}
.ws10_c00075{word-spacing:3.916800pt;}
.ws1b_c00075{word-spacing:4.492800pt;}
.ws1a_c00075{word-spacing:4.531200pt;}
.ws2c_c00075{word-spacing:5.107200pt;}
.ws32_c00075{word-spacing:5.422144pt;}
.ws31_c00075{word-spacing:5.426400pt;}
.ws2b_c00075{word-spacing:5.536384pt;}
.ws18_c00075{word-spacing:5.766400pt;}
.wse_c00075{word-spacing:5.772800pt;}
.ws19_c00075{word-spacing:5.779200pt;}
.ws2a_c00075{word-spacing:5.878400pt;}
.ws26_c00075{word-spacing:6.720000pt;}
.ws20_c00075{word-spacing:9.267200pt;}
.ws21_c00075{word-spacing:9.356800pt;}
.wsc_c00075{word-spacing:9.977600pt;}
.ws25_c00075{word-spacing:10.892800pt;}
.wsb_c00075{word-spacing:11.212800pt;}
.ws23_c00075{word-spacing:12.806400pt;}
.ws24_c00075{word-spacing:12.857600pt;}
.ws9_c00075{word-spacing:17.382400pt;}
.ws8_c00075{word-spacing:17.523200pt;}
.ws7_c00075{word-spacing:17.619200pt;}
._2_c00075{margin-left:-2.196384pt;}
._0_c00075{margin-left:-1.015360pt;}
._1_c00075{width:1.088000pt;}
.fs3_c00075{font-size:37.440000pt;}
.fs4_c00075{font-size:42.560000pt;}
.fs2_c00075{font-size:48.000000pt;}
.fs0_c00075{font-size:53.440000pt;}
.fs1_c00075{font-size:64.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y3_c00075{bottom:51.067067pt;}
.y4_c00075{bottom:54.587067pt;}
.y28_c00075{bottom:101.080507pt;}
.y27_c00075{bottom:117.402267pt;}
.y26_c00075{bottom:133.638907pt;}
.y25_c00075{bottom:145.874907pt;}
.y24_c00075{bottom:162.196667pt;}
.y23_c00075{bottom:178.433307pt;}
.y22_c00075{bottom:194.669947pt;}
.y21_c00075{bottom:206.991067pt;}
.y20_c00075{bottom:219.227067pt;}
.y1f_c00075{bottom:232.747067pt;}
.y1e_c00075{bottom:251.147067pt;}
.y1d_c00075{bottom:269.547067pt;}
.y1c_c00075{bottom:288.503867pt;}
.y1b_c00075{bottom:303.467067pt;}
.y1a_c00075{bottom:339.787200pt;}
.y19_c00075{bottom:370.347200pt;}
.y18_c00075{bottom:408.987067pt;}
.y17_c00075{bottom:439.547067pt;}
.y16_c00075{bottom:470.187067pt;}
.y15_c00075{bottom:500.747067pt;}
.y14_c00075{bottom:531.387067pt;}
.y13_c00075{bottom:569.947067pt;}
.y12_c00075{bottom:600.587067pt;}
.y11_c00075{bottom:631.147067pt;}
.y10_c00075{bottom:661.787067pt;}
.yf_c00075{bottom:692.347067pt;}
.ye_c00075{bottom:722.987067pt;}
.yd_c00075{bottom:753.547067pt;}
.yc_c00075{bottom:792.187067pt;}
.yb_c00075{bottom:822.747067pt;}
.ya_c00075{bottom:853.387067pt;}
.y9_c00075{bottom:883.947067pt;}
.y8_c00075{bottom:914.587067pt;}
.y7_c00075{bottom:945.147067pt;}
.y6_c00075{bottom:983.787067pt;}
.y5_c00075{bottom:1014.347067pt;}
.y2_c00075{bottom:1043.387067pt;}
.y1_c00075{bottom:1063.867067pt;}
.h2_c00075{height:42.656250pt;}
.h7_c00075{height:44.388750pt;}
.h1_c00075{height:44.724687pt;}
.h3_c00075{height:50.062500pt;}
.h4_c00075{height:53.562500pt;}
.h5_c00075{height:57.894063pt;}
.h6_c00075{height:57.894596pt;}
.h0_c00075{height:1122.666667pt;}
.w1_c00075{width:793.333333pt;}
.w0_c00075{width:793.626667pt;}
.x0_c00075{left:0.000000pt;}
.x2_c00075{left:113.440000pt;}
.x1_c00075{left:129.280000pt;}
.x6_c00075{left:137.443840pt;}
.x5_c00075{left:160.720000pt;}
.x4_c00075{left:390.240000pt;}
.x3_c00075{left:396.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_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_e11c13cf26a68f7109bc6e95.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00076;src:url('chunks/assets/font_a2ae05c2a564673db006f016.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;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_c00076;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00076{vertical-align:15.840000px;}
.v2_c00076{vertical-align:29.880000px;}
.lsd_c00076{letter-spacing:-0.186372px;}
.lsc_c00076{letter-spacing:-0.151200px;}
.ls10_c00076{letter-spacing:-0.036000px;}
.ls13_c00076{letter-spacing:-0.028800px;}
.lse_c00076{letter-spacing:-0.024048px;}
.ls15_c00076{letter-spacing:-0.021600px;}
.ls11_c00076{letter-spacing:-0.014400px;}
.ls12_c00076{letter-spacing:-0.007200px;}
.lsb_c00076{letter-spacing:0.000000px;}
.ls7_c00076{letter-spacing:0.007200px;}
.ls4_c00076{letter-spacing:0.014400px;}
.ls2_c00076{letter-spacing:0.018036px;}
.ls6_c00076{letter-spacing:0.021600px;}
.ls8_c00076{letter-spacing:0.028728px;}
.lsa_c00076{letter-spacing:0.033516px;}
.ls9_c00076{letter-spacing:0.038304px;}
.ls0_c00076{letter-spacing:0.048096px;}
.ls5_c00076{letter-spacing:0.054756px;}
.ls16_c00076{letter-spacing:0.057600px;}
.ls14_c00076{letter-spacing:0.093600px;}
.ls3_c00076{letter-spacing:0.136080px;}
.lsf_c00076{letter-spacing:0.168336px;}
.ls1_c00076{letter-spacing:1227.240000px;}
.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;}
}
.ws1_c00076{word-spacing:-10.584756px;}
.ws0_c00076{word-spacing:-9.856080px;}
.ws16_c00076{word-spacing:-0.086400px;}
.ws2a_c00076{word-spacing:-0.019152px;}
.ws29_c00076{word-spacing:-0.009576px;}
.ws3_c00076{word-spacing:0.000000px;}
.wsf_c00076{word-spacing:0.007200px;}
.ws20_c00076{word-spacing:0.021600px;}
.ws15_c00076{word-spacing:0.028800px;}
.ws2_c00076{word-spacing:0.042084px;}
.ws7_c00076{word-spacing:0.114228px;}
.wsc_c00076{word-spacing:1.454400px;}
.ws27_c00076{word-spacing:2.512800px;}
.ws28_c00076{word-spacing:2.527200px;}
.ws4_c00076{word-spacing:2.951892px;}
.ws5_c00076{word-spacing:2.969928px;}
.ws6_c00076{word-spacing:3.156300px;}
.wsd_c00076{word-spacing:3.240000px;}
.wse_c00076{word-spacing:3.276000px;}
.ws21_c00076{word-spacing:3.996000px;}
.ws17_c00076{word-spacing:4.327200px;}
.ws19_c00076{word-spacing:5.040000px;}
.ws18_c00076{word-spacing:5.054400px;}
.ws26_c00076{word-spacing:5.738400px;}
.ws24_c00076{word-spacing:5.774400px;}
.ws1d_c00076{word-spacing:5.824800px;}
.ws1c_c00076{word-spacing:5.860800px;}
.ws25_c00076{word-spacing:5.868000px;}
.ws8_c00076{word-spacing:6.148800px;}
.ws9_c00076{word-spacing:6.256800px;}
.wsa_c00076{word-spacing:9.086400px;}
.wsb_c00076{word-spacing:9.100800px;}
.ws11_c00076{word-spacing:9.316800px;}
.ws10_c00076{word-spacing:9.396000px;}
.ws14_c00076{word-spacing:10.080000px;}
.ws1f_c00076{word-spacing:14.054400px;}
.ws1e_c00076{word-spacing:14.140800px;}
.ws1b_c00076{word-spacing:14.702400px;}
.ws22_c00076{word-spacing:14.767200px;}
.ws1a_c00076{word-spacing:14.781600px;}
.ws23_c00076{word-spacing:14.824800px;}
.ws13_c00076{word-spacing:15.206400px;}
.ws12_c00076{word-spacing:15.220800px;}
._2_c00076{margin-left:-9.360000px;}
._0_c00076{margin-left:-1.322640px;}
._1_c00076{width:1.040076px;}
.fc0_c00076{color:rgb(0,0,0);}
.fs3_c00076{font-size:38.880000px;}
.fs4_c00076{font-size:42.120000px;}
.fs5_c00076{font-size:47.880000px;}
.fs1_c00076{font-size:54.000000px;}
.fs0_c00076{font-size:60.120000px;}
.fs2_c00076{font-size:72.000000px;}
.y0_c00076{bottom:0.000000px;}
.y3_c00076{bottom:57.450450px;}
.y25_c00076{bottom:113.713410px;}
.y24_c00076{bottom:132.075390px;}
.y23_c00076{bottom:150.341610px;}
.y22_c00076{bottom:168.607830px;}
.y21_c00076{bottom:186.969810px;}
.y20_c00076{bottom:205.236030px;}
.y1f_c00076{bottom:223.502250px;}
.y1e_c00076{bottom:241.864230px;}
.y1d_c00076{bottom:260.130450px;}
.y1c_c00076{bottom:275.340450px;}
.y1b_c00076{bottom:296.040450px;}
.y1a_c00076{bottom:316.740600px;}
.y19_c00076{bottom:399.360450px;}
.y18_c00076{bottom:433.740600px;}
.y17_c00076{bottom:468.210450px;}
.y16_c00076{bottom:502.590450px;}
.y15_c00076{bottom:537.060450px;}
.y14_c00076{bottom:580.440450px;}
.y13_c00076{bottom:614.910450px;}
.y12_c00076{bottom:649.290450px;}
.y11_c00076{bottom:683.760450px;}
.y10_c00076{bottom:718.140450px;}
.yf_c00076{bottom:752.610450px;}
.ye_c00076{bottom:795.990450px;}
.yd_c00076{bottom:830.460450px;}
.yc_c00076{bottom:864.840450px;}
.yb_c00076{bottom:899.310450px;}
.ya_c00076{bottom:942.690450px;}
.y9_c00076{bottom:977.160450px;}
.y8_c00076{bottom:1011.540450px;}
.y7_c00076{bottom:1046.010450px;}
.y6_c00076{bottom:1080.390450px;}
.y5_c00076{bottom:1126.916850px;}
.y4_c00076{bottom:1143.750450px;}
.y2_c00076{bottom:1177.860450px;}
.y1_c00076{bottom:1196.850450px;}
.h8_c00076{height:47.988281px;}
.h9_c00076{height:49.937344px;}
.h1_c00076{height:50.315273px;}
.h4_c00076{height:50.329673px;}
.h2_c00076{height:56.320312px;}
.h5_c00076{height:60.257812px;}
.h6_c00076{height:65.130820px;}
.h7_c00076{height:65.131420px;}
.h3_c00076{height:72.160312px;}
.h0_c00076{height:1263.000000px;}
.w1_c00076{width:892.500000px;}
.w0_c00076{width:892.830000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:127.620000px;}
.x2_c00076{left:180.810000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.v1_c00076{vertical-align:14.080000pt;}
.v2_c00076{vertical-align:26.560000pt;}
.lsd_c00076{letter-spacing:-0.165664pt;}
.lsc_c00076{letter-spacing:-0.134400pt;}
.ls10_c00076{letter-spacing:-0.032000pt;}
.ls13_c00076{letter-spacing:-0.025600pt;}
.lse_c00076{letter-spacing:-0.021376pt;}
.ls15_c00076{letter-spacing:-0.019200pt;}
.ls11_c00076{letter-spacing:-0.012800pt;}
.ls12_c00076{letter-spacing:-0.006400pt;}
.lsb_c00076{letter-spacing:0.000000pt;}
.ls7_c00076{letter-spacing:0.006400pt;}
.ls4_c00076{letter-spacing:0.012800pt;}
.ls2_c00076{letter-spacing:0.016032pt;}
.ls6_c00076{letter-spacing:0.019200pt;}
.ls8_c00076{letter-spacing:0.025536pt;}
.lsa_c00076{letter-spacing:0.029792pt;}
.ls9_c00076{letter-spacing:0.034048pt;}
.ls0_c00076{letter-spacing:0.042752pt;}
.ls5_c00076{letter-spacing:0.048672pt;}
.ls16_c00076{letter-spacing:0.051200pt;}
.ls14_c00076{letter-spacing:0.083200pt;}
.ls3_c00076{letter-spacing:0.120960pt;}
.lsf_c00076{letter-spacing:0.149632pt;}
.ls1_c00076{letter-spacing:1090.880000pt;}
.ws1_c00076{word-spacing:-9.408672pt;}
.ws0_c00076{word-spacing:-8.760960pt;}
.ws16_c00076{word-spacing:-0.076800pt;}
.ws2a_c00076{word-spacing:-0.017024pt;}
.ws29_c00076{word-spacing:-0.008512pt;}
.ws3_c00076{word-spacing:0.000000pt;}
.wsf_c00076{word-spacing:0.006400pt;}
.ws20_c00076{word-spacing:0.019200pt;}
.ws15_c00076{word-spacing:0.025600pt;}
.ws2_c00076{word-spacing:0.037408pt;}
.ws7_c00076{word-spacing:0.101536pt;}
.wsc_c00076{word-spacing:1.292800pt;}
.ws27_c00076{word-spacing:2.233600pt;}
.ws28_c00076{word-spacing:2.246400pt;}
.ws4_c00076{word-spacing:2.623904pt;}
.ws5_c00076{word-spacing:2.639936pt;}
.ws6_c00076{word-spacing:2.805600pt;}
.wsd_c00076{word-spacing:2.880000pt;}
.wse_c00076{word-spacing:2.912000pt;}
.ws21_c00076{word-spacing:3.552000pt;}
.ws17_c00076{word-spacing:3.846400pt;}
.ws19_c00076{word-spacing:4.480000pt;}
.ws18_c00076{word-spacing:4.492800pt;}
.ws26_c00076{word-spacing:5.100800pt;}
.ws24_c00076{word-spacing:5.132800pt;}
.ws1d_c00076{word-spacing:5.177600pt;}
.ws1c_c00076{word-spacing:5.209600pt;}
.ws25_c00076{word-spacing:5.216000pt;}
.ws8_c00076{word-spacing:5.465600pt;}
.ws9_c00076{word-spacing:5.561600pt;}
.wsa_c00076{word-spacing:8.076800pt;}
.wsb_c00076{word-spacing:8.089600pt;}
.ws11_c00076{word-spacing:8.281600pt;}
.ws10_c00076{word-spacing:8.352000pt;}
.ws14_c00076{word-spacing:8.960000pt;}
.ws1f_c00076{word-spacing:12.492800pt;}
.ws1e_c00076{word-spacing:12.569600pt;}
.ws1b_c00076{word-spacing:13.068800pt;}
.ws22_c00076{word-spacing:13.126400pt;}
.ws1a_c00076{word-spacing:13.139200pt;}
.ws23_c00076{word-spacing:13.177600pt;}
.ws13_c00076{word-spacing:13.516800pt;}
.ws12_c00076{word-spacing:13.529600pt;}
._2_c00076{margin-left:-8.320000pt;}
._0_c00076{margin-left:-1.175680pt;}
._1_c00076{width:0.924512pt;}
.fs3_c00076{font-size:34.560000pt;}
.fs4_c00076{font-size:37.440000pt;}
.fs5_c00076{font-size:42.560000pt;}
.fs1_c00076{font-size:48.000000pt;}
.fs0_c00076{font-size:53.440000pt;}
.fs2_c00076{font-size:64.000000pt;}
.y0_c00076{bottom:0.000000pt;}
.y3_c00076{bottom:51.067067pt;}
.y25_c00076{bottom:101.078587pt;}
.y24_c00076{bottom:117.400347pt;}
.y23_c00076{bottom:133.636987pt;}
.y22_c00076{bottom:149.873627pt;}
.y21_c00076{bottom:166.195387pt;}
.y20_c00076{bottom:182.432027pt;}
.y1f_c00076{bottom:198.668667pt;}
.y1e_c00076{bottom:214.990427pt;}
.y1d_c00076{bottom:231.227067pt;}
.y1c_c00076{bottom:244.747067pt;}
.y1b_c00076{bottom:263.147067pt;}
.y1a_c00076{bottom:281.547200pt;}
.y19_c00076{bottom:354.987067pt;}
.y18_c00076{bottom:385.547200pt;}
.y17_c00076{bottom:416.187067pt;}
.y16_c00076{bottom:446.747067pt;}
.y15_c00076{bottom:477.387067pt;}
.y14_c00076{bottom:515.947067pt;}
.y13_c00076{bottom:546.587067pt;}
.y12_c00076{bottom:577.147067pt;}
.y11_c00076{bottom:607.787067pt;}
.y10_c00076{bottom:638.347067pt;}
.yf_c00076{bottom:668.987067pt;}
.ye_c00076{bottom:707.547067pt;}
.yd_c00076{bottom:738.187067pt;}
.yc_c00076{bottom:768.747067pt;}
.yb_c00076{bottom:799.387067pt;}
.ya_c00076{bottom:837.947067pt;}
.y9_c00076{bottom:868.587067pt;}
.y8_c00076{bottom:899.147067pt;}
.y7_c00076{bottom:929.787067pt;}
.y6_c00076{bottom:960.347067pt;}
.y5_c00076{bottom:1001.703867pt;}
.y4_c00076{bottom:1016.667067pt;}
.y2_c00076{bottom:1046.987067pt;}
.y1_c00076{bottom:1063.867067pt;}
.h8_c00076{height:42.656250pt;}
.h9_c00076{height:44.388750pt;}
.h1_c00076{height:44.724687pt;}
.h4_c00076{height:44.737488pt;}
.h2_c00076{height:50.062500pt;}
.h5_c00076{height:53.562500pt;}
.h6_c00076{height:57.894062pt;}
.h7_c00076{height:57.894596pt;}
.h3_c00076{height:64.142500pt;}
.h0_c00076{height:1122.666667pt;}
.w1_c00076{width:793.333333pt;}
.w0_c00076{width:793.626667pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:113.440000pt;}
.x2_c00076{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_c00077 {
    display:none;
  }
  .loading-indicator_c00077.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00077 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00077 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00077" -> "#page-container .classname_c00077")
 */
.pf_c00077 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00077 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00077 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00077 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00077 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00077 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00077 {overflow:visible;}
  }
}
.c_c00077 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00077 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00077:after { /* webkit #35443 */
  content: '';
}
.t_c00077:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00077 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00077 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00077 { /* info for Javascript */
  display:none;
}
.l_c00077 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00077 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00077 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00077:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00077;src:url('chunks/assets/font_c88a7d26ea4b3323309507fe.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00077;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00077;src:url('chunks/assets/font_f7dcbf42e7028dd74dfedb00.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00077;src:url('chunks/assets/font_59884abe9b5a0c42dcf933dd.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00077;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00077{font-family:ff5_c00077;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_c00077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.v1_c00077{vertical-align:29.880000px;}
.lsb_c00077{letter-spacing:-0.151200px;}
.lsc_c00077{letter-spacing:-0.054684px;}
.ls9_c00077{letter-spacing:-0.048096px;}
.ls12_c00077{letter-spacing:-0.036000px;}
.ls13_c00077{letter-spacing:-0.028800px;}
.lsf_c00077{letter-spacing:-0.021600px;}
.ls8_c00077{letter-spacing:-0.018036px;}
.lsd_c00077{letter-spacing:-0.014400px;}
.lse_c00077{letter-spacing:-0.007200px;}
.lsa_c00077{letter-spacing:0.000000px;}
.ls3_c00077{letter-spacing:0.007200px;}
.ls5_c00077{letter-spacing:0.028800px;}
.ls7_c00077{letter-spacing:0.033516px;}
.ls4_c00077{letter-spacing:0.036000px;}
.ls0_c00077{letter-spacing:0.036072px;}
.ls2_c00077{letter-spacing:0.039060px;}
.ls6_c00077{letter-spacing:0.054756px;}
.ls10_c00077{letter-spacing:0.057600px;}
.ls11_c00077{letter-spacing:0.093600px;}
.ls1_c00077{letter-spacing:29.373120px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00077{word-spacing:-19.569060px;}
.ws0_c00077{word-spacing:-19.530000px;}
.ws2_c00077{word-spacing:-19.475316px;}
.ws3_c00077{word-spacing:-10.584756px;}
.ws2b_c00077{word-spacing:-0.093600px;}
.ws32_c00077{word-spacing:-0.014364px;}
.ws7_c00077{word-spacing:0.000000px;}
.ws1d_c00077{word-spacing:0.007200px;}
.ws2a_c00077{word-spacing:0.021600px;}
.wsb_c00077{word-spacing:0.050400px;}
.ws4_c00077{word-spacing:0.054108px;}
.ws5_c00077{word-spacing:0.108216px;}
.ws6_c00077{word-spacing:0.138276px;}
.wsd_c00077{word-spacing:0.324000px;}
.wsc_c00077{word-spacing:0.403200px;}
.ws1f_c00077{word-spacing:1.857600px;}
.ws1e_c00077{word-spacing:1.908000px;}
.ws27_c00077{word-spacing:2.188800px;}
.ws17_c00077{word-spacing:2.239200px;}
.ws16_c00077{word-spacing:2.268000px;}
.ws18_c00077{word-spacing:2.347200px;}
.ws21_c00077{word-spacing:3.204000px;}
.ws22_c00077{word-spacing:3.268800px;}
.ws1b_c00077{word-spacing:4.312800px;}
.ws23_c00077{word-spacing:4.327200px;}
.ws24_c00077{word-spacing:4.392000px;}
.ws1a_c00077{word-spacing:5.695200px;}
.ws2d_c00077{word-spacing:5.709600px;}
.ws19_c00077{word-spacing:5.767200px;}
.ws2e_c00077{word-spacing:5.846400px;}
.ws26_c00077{word-spacing:7.250400px;}
.ws25_c00077{word-spacing:7.264800px;}
.ws10_c00077{word-spacing:7.941600px;}
.ws11_c00077{word-spacing:8.071200px;}
.ws12_c00077{word-spacing:8.107200px;}
.ws15_c00077{word-spacing:8.942400px;}
.ws28_c00077{word-spacing:9.014400px;}
.ws29_c00077{word-spacing:9.050400px;}
.ws13_c00077{word-spacing:9.086400px;}
.ws14_c00077{word-spacing:9.230400px;}
.ws1c_c00077{word-spacing:16.941600px;}
.ws31_c00077{word-spacing:19.828800px;}
.ws30_c00077{word-spacing:21.549600px;}
.wse_c00077{word-spacing:21.600000px;}
.ws2f_c00077{word-spacing:21.614400px;}
.wsf_c00077{word-spacing:21.664800px;}
.ws9_c00077{word-spacing:22.320000px;}
.ws8_c00077{word-spacing:22.406400px;}
.ws2c_c00077{word-spacing:35.690400px;}
.ws20_c00077{word-spacing:37.101600px;}
.wsa_c00077{word-spacing:38.174400px;}
._0_c00077{margin-left:-1.142280px;}
._1_c00077{width:1.008000px;}
.fc0_c00077{color:rgb(0,0,0);}
.fs4_c00077{font-size:42.120000px;}
.fs5_c00077{font-size:47.880000px;}
.fs2_c00077{font-size:54.000000px;}
.fs0_c00077{font-size:60.120000px;}
.fs1_c00077{font-size:72.000000px;}
.fs3_c00077{font-size:78.120000px;}
.y0_c00077{bottom:0.000000px;}
.y3_c00077{bottom:57.450450px;}
.y4_c00077{bottom:61.410450px;}
.y23_c00077{bottom:113.698470px;}
.y22_c00077{bottom:132.060450px;}
.y21_c00077{bottom:147.270450px;}
.y20_c00077{bottom:167.970450px;}
.y1f_c00077{bottom:188.670450px;}
.y1e_c00077{bottom:232.680450px;}
.y1d_c00077{bottom:267.060450px;}
.y1c_c00077{bottom:301.530450px;}
.y1b_c00077{bottom:335.910450px;}
.y1a_c00077{bottom:379.380450px;}
.y19_c00077{bottom:413.760450px;}
.y18_c00077{bottom:448.230450px;}
.y17_c00077{bottom:482.610450px;}
.y16_c00077{bottom:517.080450px;}
.y15_c00077{bottom:551.460450px;}
.y14_c00077{bottom:585.930450px;}
.y13_c00077{bottom:620.310450px;}
.y12_c00077{bottom:663.780450px;}
.y11_c00077{bottom:698.160450px;}
.y10_c00077{bottom:732.630450px;}
.yf_c00077{bottom:767.010450px;}
.ye_c00077{bottom:810.480450px;}
.yd_c00077{bottom:844.860450px;}
.yc_c00077{bottom:879.330450px;}
.yb_c00077{bottom:913.710450px;}
.ya_c00077{bottom:948.180450px;}
.y9_c00077{bottom:982.560450px;}
.y8_c00077{bottom:1026.030450px;}
.y7_c00077{bottom:1060.410450px;}
.y6_c00077{bottom:1094.880450px;}
.y5_c00077{bottom:1139.880450px;}
.y2_c00077{bottom:1173.810450px;}
.y1_c00077{bottom:1196.850450px;}
.h2_c00077{height:47.988281px;}
.h7_c00077{height:49.937344px;}
.h1_c00077{height:50.315273px;}
.h3_c00077{height:56.320312px;}
.h5_c00077{height:60.257812px;}
.h6_c00077{height:65.130820px;}
.h4_c00077{height:81.476719px;}
.h0_c00077{height:1263.000000px;}
.w1_c00077{width:892.500000px;}
.w0_c00077{width:892.830000px;}
.x0_c00077{left:0.000000px;}
.x2_c00077{left:127.620000px;}
.x1_c00077{left:145.440000px;}
.x5_c00077{left:180.810000px;}
.x4_c00077{left:439.020000px;}
.x3_c00077{left:446.490000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.v1_c00077{vertical-align:26.560000pt;}
.lsb_c00077{letter-spacing:-0.134400pt;}
.lsc_c00077{letter-spacing:-0.048608pt;}
.ls9_c00077{letter-spacing:-0.042752pt;}
.ls12_c00077{letter-spacing:-0.032000pt;}
.ls13_c00077{letter-spacing:-0.025600pt;}
.lsf_c00077{letter-spacing:-0.019200pt;}
.ls8_c00077{letter-spacing:-0.016032pt;}
.lsd_c00077{letter-spacing:-0.012800pt;}
.lse_c00077{letter-spacing:-0.006400pt;}
.lsa_c00077{letter-spacing:0.000000pt;}
.ls3_c00077{letter-spacing:0.006400pt;}
.ls5_c00077{letter-spacing:0.025600pt;}
.ls7_c00077{letter-spacing:0.029792pt;}
.ls4_c00077{letter-spacing:0.032000pt;}
.ls0_c00077{letter-spacing:0.032064pt;}
.ls2_c00077{letter-spacing:0.034720pt;}
.ls6_c00077{letter-spacing:0.048672pt;}
.ls10_c00077{letter-spacing:0.051200pt;}
.ls11_c00077{letter-spacing:0.083200pt;}
.ls1_c00077{letter-spacing:26.109440pt;}
.ws1_c00077{word-spacing:-17.394720pt;}
.ws0_c00077{word-spacing:-17.360000pt;}
.ws2_c00077{word-spacing:-17.311392pt;}
.ws3_c00077{word-spacing:-9.408672pt;}
.ws2b_c00077{word-spacing:-0.083200pt;}
.ws32_c00077{word-spacing:-0.012768pt;}
.ws7_c00077{word-spacing:0.000000pt;}
.ws1d_c00077{word-spacing:0.006400pt;}
.ws2a_c00077{word-spacing:0.019200pt;}
.wsb_c00077{word-spacing:0.044800pt;}
.ws4_c00077{word-spacing:0.048096pt;}
.ws5_c00077{word-spacing:0.096192pt;}
.ws6_c00077{word-spacing:0.122912pt;}
.wsd_c00077{word-spacing:0.288000pt;}
.wsc_c00077{word-spacing:0.358400pt;}
.ws1f_c00077{word-spacing:1.651200pt;}
.ws1e_c00077{word-spacing:1.696000pt;}
.ws27_c00077{word-spacing:1.945600pt;}
.ws17_c00077{word-spacing:1.990400pt;}
.ws16_c00077{word-spacing:2.016000pt;}
.ws18_c00077{word-spacing:2.086400pt;}
.ws21_c00077{word-spacing:2.848000pt;}
.ws22_c00077{word-spacing:2.905600pt;}
.ws1b_c00077{word-spacing:3.833600pt;}
.ws23_c00077{word-spacing:3.846400pt;}
.ws24_c00077{word-spacing:3.904000pt;}
.ws1a_c00077{word-spacing:5.062400pt;}
.ws2d_c00077{word-spacing:5.075200pt;}
.ws19_c00077{word-spacing:5.126400pt;}
.ws2e_c00077{word-spacing:5.196800pt;}
.ws26_c00077{word-spacing:6.444800pt;}
.ws25_c00077{word-spacing:6.457600pt;}
.ws10_c00077{word-spacing:7.059200pt;}
.ws11_c00077{word-spacing:7.174400pt;}
.ws12_c00077{word-spacing:7.206400pt;}
.ws15_c00077{word-spacing:7.948800pt;}
.ws28_c00077{word-spacing:8.012800pt;}
.ws29_c00077{word-spacing:8.044800pt;}
.ws13_c00077{word-spacing:8.076800pt;}
.ws14_c00077{word-spacing:8.204800pt;}
.ws1c_c00077{word-spacing:15.059200pt;}
.ws31_c00077{word-spacing:17.625600pt;}
.ws30_c00077{word-spacing:19.155200pt;}
.wse_c00077{word-spacing:19.200000pt;}
.ws2f_c00077{word-spacing:19.212800pt;}
.wsf_c00077{word-spacing:19.257600pt;}
.ws9_c00077{word-spacing:19.840000pt;}
.ws8_c00077{word-spacing:19.916800pt;}
.ws2c_c00077{word-spacing:31.724800pt;}
.ws20_c00077{word-spacing:32.979200pt;}
.wsa_c00077{word-spacing:33.932800pt;}
._0_c00077{margin-left:-1.015360pt;}
._1_c00077{width:0.896000pt;}
.fs4_c00077{font-size:37.440000pt;}
.fs5_c00077{font-size:42.560000pt;}
.fs2_c00077{font-size:48.000000pt;}
.fs0_c00077{font-size:53.440000pt;}
.fs1_c00077{font-size:64.000000pt;}
.fs3_c00077{font-size:69.440000pt;}
.y0_c00077{bottom:0.000000pt;}
.y3_c00077{bottom:51.067067pt;}
.y4_c00077{bottom:54.587067pt;}
.y23_c00077{bottom:101.065307pt;}
.y22_c00077{bottom:117.387067pt;}
.y21_c00077{bottom:130.907067pt;}
.y20_c00077{bottom:149.307067pt;}
.y1f_c00077{bottom:167.707067pt;}
.y1e_c00077{bottom:206.827067pt;}
.y1d_c00077{bottom:237.387067pt;}
.y1c_c00077{bottom:268.027067pt;}
.y1b_c00077{bottom:298.587067pt;}
.y1a_c00077{bottom:337.227067pt;}
.y19_c00077{bottom:367.787067pt;}
.y18_c00077{bottom:398.427067pt;}
.y17_c00077{bottom:428.987067pt;}
.y16_c00077{bottom:459.627067pt;}
.y15_c00077{bottom:490.187067pt;}
.y14_c00077{bottom:520.827067pt;}
.y13_c00077{bottom:551.387067pt;}
.y12_c00077{bottom:590.027067pt;}
.y11_c00077{bottom:620.587067pt;}
.y10_c00077{bottom:651.227067pt;}
.yf_c00077{bottom:681.787067pt;}
.ye_c00077{bottom:720.427067pt;}
.yd_c00077{bottom:750.987067pt;}
.yc_c00077{bottom:781.627067pt;}
.yb_c00077{bottom:812.187067pt;}
.ya_c00077{bottom:842.827067pt;}
.y9_c00077{bottom:873.387067pt;}
.y8_c00077{bottom:912.027067pt;}
.y7_c00077{bottom:942.587067pt;}
.y6_c00077{bottom:973.227067pt;}
.y5_c00077{bottom:1013.227067pt;}
.y2_c00077{bottom:1043.387067pt;}
.y1_c00077{bottom:1063.867067pt;}
.h2_c00077{height:42.656250pt;}
.h7_c00077{height:44.388750pt;}
.h1_c00077{height:44.724687pt;}
.h3_c00077{height:50.062500pt;}
.h5_c00077{height:53.562500pt;}
.h6_c00077{height:57.894062pt;}
.h4_c00077{height:72.423750pt;}
.h0_c00077{height:1122.666667pt;}
.w1_c00077{width:793.333333pt;}
.w0_c00077{width:793.626667pt;}
.x0_c00077{left:0.000000pt;}
.x2_c00077{left:113.440000pt;}
.x1_c00077{left:129.280000pt;}
.x5_c00077{left:160.720000pt;}
.x4_c00077{left:390.240000pt;}
.x3_c00077{left:396.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_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_94abae1ca954191b5bd9aa98.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.100098;font-style:normal;font-weight:normal;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_5afc86354ac353efb24f35de.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;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_c00078;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00078{vertical-align:15.840000px;}
.v2_c00078{vertical-align:29.880000px;}
.ls16_c00078{letter-spacing:-0.266400px;}
.lsf_c00078{letter-spacing:-0.151200px;}
.ls17_c00078{letter-spacing:-0.036000px;}
.ls11_c00078{letter-spacing:-0.028800px;}
.ls14_c00078{letter-spacing:-0.021600px;}
.ls1b_c00078{letter-spacing:-0.015552px;}
.ls10_c00078{letter-spacing:-0.014400px;}
.ls13_c00078{letter-spacing:-0.007200px;}
.ls18_c00078{letter-spacing:-0.003888px;}
.lse_c00078{letter-spacing:0.000000px;}
.lsd_c00078{letter-spacing:0.004788px;}
.ls3_c00078{letter-spacing:0.007200px;}
.ls4_c00078{letter-spacing:0.014364px;}
.ls1a_c00078{letter-spacing:0.019152px;}
.ls15_c00078{letter-spacing:0.021600px;}
.ls5_c00078{letter-spacing:0.028728px;}
.lsc_c00078{letter-spacing:0.033516px;}
.lsa_c00078{letter-spacing:0.038304px;}
.ls6_c00078{letter-spacing:0.043092px;}
.ls8_c00078{letter-spacing:0.047880px;}
.ls0_c00078{letter-spacing:0.048096px;}
.ls2_c00078{letter-spacing:0.054756px;}
.ls7_c00078{letter-spacing:0.062244px;}
.ls9_c00078{letter-spacing:0.086184px;}
.ls12_c00078{letter-spacing:0.093600px;}
.lsb_c00078{letter-spacing:0.172368px;}
.ls19_c00078{letter-spacing:0.346032px;}
.ls1_c00078{letter-spacing:1227.240000px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00078{word-spacing:-13.310640px;}
.ws2_c00078{word-spacing:-11.154672px;}
.ws3_c00078{word-spacing:-10.804752px;}
.ws0_c00078{word-spacing:-10.584756px;}
.ws2d_c00078{word-spacing:-0.023940px;}
.ws2f_c00078{word-spacing:-0.019152px;}
.ws2e_c00078{word-spacing:-0.014364px;}
.ws26_c00078{word-spacing:-0.009576px;}
.ws5_c00078{word-spacing:0.000000px;}
.ws25_c00078{word-spacing:0.004788px;}
.ws30_c00078{word-spacing:0.014364px;}
.ws23_c00078{word-spacing:0.014400px;}
.ws8_c00078{word-spacing:0.021600px;}
.ws4_c00078{word-spacing:0.042084px;}
.ws18_c00078{word-spacing:0.079200px;}
.ws1b_c00078{word-spacing:0.698400px;}
.ws1c_c00078{word-spacing:0.741600px;}
.wse_c00078{word-spacing:1.080000px;}
.wsb_c00078{word-spacing:1.807200px;}
.ws12_c00078{word-spacing:2.167200px;}
.ws13_c00078{word-spacing:2.232000px;}
.ws21_c00078{word-spacing:2.880000px;}
.ws24_c00078{word-spacing:3.225600px;}
.ws15_c00078{word-spacing:3.232800px;}
.ws14_c00078{word-spacing:3.268800px;}
.ws19_c00078{word-spacing:3.650400px;}
.ws28_c00078{word-spacing:4.294836px;}
.ws27_c00078{word-spacing:4.304412px;}
.ws17_c00078{word-spacing:4.356000px;}
.ws16_c00078{word-spacing:4.377600px;}
.ws20_c00078{word-spacing:4.428000px;}
.ws1a_c00078{word-spacing:6.472800px;}
.ws10_c00078{word-spacing:7.228800px;}
.ws11_c00078{word-spacing:7.272000px;}
.ws2c_c00078{word-spacing:7.766136px;}
.ws2b_c00078{word-spacing:7.852320px;}
.ws29_c00078{word-spacing:7.876260px;}
.ws2a_c00078{word-spacing:7.890624px;}
.wsf_c00078{word-spacing:8.301600px;}
.ws22_c00078{word-spacing:11.534400px;}
.ws9_c00078{word-spacing:13.320000px;}
.wsa_c00078{word-spacing:13.528800px;}
.ws1f_c00078{word-spacing:14.774400px;}
.wsc_c00078{word-spacing:15.487200px;}
.wsd_c00078{word-spacing:15.566400px;}
.ws6_c00078{word-spacing:16.272000px;}
.ws7_c00078{word-spacing:16.286400px;}
.ws1d_c00078{word-spacing:22.982400px;}
.ws1e_c00078{word-spacing:23.054400px;}
._0_c00078{margin-left:-1.322640px;}
._1_c00078{width:1.252800px;}
._2_c00078{width:8.742888px;}
.fc0_c00078{color:rgb(0,0,0);}
.fs5_c00078{font-size:38.880000px;}
.fs3_c00078{font-size:42.120000px;}
.fs4_c00078{font-size:47.880000px;}
.fs1_c00078{font-size:54.000000px;}
.fs0_c00078{font-size:60.120000px;}
.fs2_c00078{font-size:72.000000px;}
.y0_c00078{bottom:0.000000px;}
.y3_c00078{bottom:57.450450px;}
.y24_c00078{bottom:113.698470px;}
.y23_c00078{bottom:132.075030px;}
.y22_c00078{bottom:150.341250px;}
.y21_c00078{bottom:168.607470px;}
.y20_c00078{bottom:182.468730px;}
.y1f_c00078{bottom:196.234230px;}
.y1e_c00078{bottom:214.500450px;}
.y1d_c00078{bottom:229.710450px;}
.y1c_c00078{bottom:250.410450px;}
.y1b_c00078{bottom:271.110450px;}
.y1a_c00078{bottom:356.790450px;}
.y19_c00078{bottom:391.260450px;}
.y18_c00078{bottom:434.640450px;}
.y17_c00078{bottom:469.110450px;}
.y16_c00078{bottom:503.490450px;}
.y15_c00078{bottom:537.960450px;}
.y14_c00078{bottom:572.340450px;}
.y13_c00078{bottom:606.810450px;}
.y12_c00078{bottom:641.190450px;}
.y11_c00078{bottom:675.660450px;}
.y10_c00078{bottom:710.040450px;}
.yf_c00078{bottom:753.510600px;}
.ye_c00078{bottom:787.890600px;}
.yd_c00078{bottom:822.360450px;}
.yc_c00078{bottom:856.740450px;}
.yb_c00078{bottom:891.210450px;}
.ya_c00078{bottom:925.590450px;}
.y9_c00078{bottom:960.060450px;}
.y8_c00078{bottom:994.440450px;}
.y7_c00078{bottom:1028.910450px;}
.y6_c00078{bottom:1063.290450px;}
.y5_c00078{bottom:1106.760450px;}
.y4_c00078{bottom:1141.140450px;}
.y2_c00078{bottom:1177.860450px;}
.y1_c00078{bottom:1196.850450px;}
.h7_c00078{height:47.988281px;}
.h8_c00078{height:49.937344px;}
.h9_c00078{height:49.945264px;}
.h1_c00078{height:50.315273px;}
.h2_c00078{height:56.320312px;}
.h4_c00078{height:60.257812px;}
.h6_c00078{height:65.130220px;}
.h5_c00078{height:65.130820px;}
.h3_c00078{height:72.160312px;}
.h0_c00078{height:1263.000000px;}
.w1_c00078{width:892.500000px;}
.w0_c00078{width:892.830000px;}
.x0_c00078{left:0.000000px;}
.x1_c00078{left:127.620000px;}
.x3_c00078{left:154.629090px;}
.x2_c00078{left:180.810000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.v1_c00078{vertical-align:14.080000pt;}
.v2_c00078{vertical-align:26.560000pt;}
.ls16_c00078{letter-spacing:-0.236800pt;}
.lsf_c00078{letter-spacing:-0.134400pt;}
.ls17_c00078{letter-spacing:-0.032000pt;}
.ls11_c00078{letter-spacing:-0.025600pt;}
.ls14_c00078{letter-spacing:-0.019200pt;}
.ls1b_c00078{letter-spacing:-0.013824pt;}
.ls10_c00078{letter-spacing:-0.012800pt;}
.ls13_c00078{letter-spacing:-0.006400pt;}
.ls18_c00078{letter-spacing:-0.003456pt;}
.lse_c00078{letter-spacing:0.000000pt;}
.lsd_c00078{letter-spacing:0.004256pt;}
.ls3_c00078{letter-spacing:0.006400pt;}
.ls4_c00078{letter-spacing:0.012768pt;}
.ls1a_c00078{letter-spacing:0.017024pt;}
.ls15_c00078{letter-spacing:0.019200pt;}
.ls5_c00078{letter-spacing:0.025536pt;}
.lsc_c00078{letter-spacing:0.029792pt;}
.lsa_c00078{letter-spacing:0.034048pt;}
.ls6_c00078{letter-spacing:0.038304pt;}
.ls8_c00078{letter-spacing:0.042560pt;}
.ls0_c00078{letter-spacing:0.042752pt;}
.ls2_c00078{letter-spacing:0.048672pt;}
.ls7_c00078{letter-spacing:0.055328pt;}
.ls9_c00078{letter-spacing:0.076608pt;}
.ls12_c00078{letter-spacing:0.083200pt;}
.lsb_c00078{letter-spacing:0.153216pt;}
.ls19_c00078{letter-spacing:0.307584pt;}
.ls1_c00078{letter-spacing:1090.880000pt;}
.ws1_c00078{word-spacing:-11.831680pt;}
.ws2_c00078{word-spacing:-9.915264pt;}
.ws3_c00078{word-spacing:-9.604224pt;}
.ws0_c00078{word-spacing:-9.408672pt;}
.ws2d_c00078{word-spacing:-0.021280pt;}
.ws2f_c00078{word-spacing:-0.017024pt;}
.ws2e_c00078{word-spacing:-0.012768pt;}
.ws26_c00078{word-spacing:-0.008512pt;}
.ws5_c00078{word-spacing:0.000000pt;}
.ws25_c00078{word-spacing:0.004256pt;}
.ws30_c00078{word-spacing:0.012768pt;}
.ws23_c00078{word-spacing:0.012800pt;}
.ws8_c00078{word-spacing:0.019200pt;}
.ws4_c00078{word-spacing:0.037408pt;}
.ws18_c00078{word-spacing:0.070400pt;}
.ws1b_c00078{word-spacing:0.620800pt;}
.ws1c_c00078{word-spacing:0.659200pt;}
.wse_c00078{word-spacing:0.960000pt;}
.wsb_c00078{word-spacing:1.606400pt;}
.ws12_c00078{word-spacing:1.926400pt;}
.ws13_c00078{word-spacing:1.984000pt;}
.ws21_c00078{word-spacing:2.560000pt;}
.ws24_c00078{word-spacing:2.867200pt;}
.ws15_c00078{word-spacing:2.873600pt;}
.ws14_c00078{word-spacing:2.905600pt;}
.ws19_c00078{word-spacing:3.244800pt;}
.ws28_c00078{word-spacing:3.817632pt;}
.ws27_c00078{word-spacing:3.826144pt;}
.ws17_c00078{word-spacing:3.872000pt;}
.ws16_c00078{word-spacing:3.891200pt;}
.ws20_c00078{word-spacing:3.936000pt;}
.ws1a_c00078{word-spacing:5.753600pt;}
.ws10_c00078{word-spacing:6.425600pt;}
.ws11_c00078{word-spacing:6.464000pt;}
.ws2c_c00078{word-spacing:6.903232pt;}
.ws2b_c00078{word-spacing:6.979840pt;}
.ws29_c00078{word-spacing:7.001120pt;}
.ws2a_c00078{word-spacing:7.013888pt;}
.wsf_c00078{word-spacing:7.379200pt;}
.ws22_c00078{word-spacing:10.252800pt;}
.ws9_c00078{word-spacing:11.840000pt;}
.wsa_c00078{word-spacing:12.025600pt;}
.ws1f_c00078{word-spacing:13.132800pt;}
.wsc_c00078{word-spacing:13.766400pt;}
.wsd_c00078{word-spacing:13.836800pt;}
.ws6_c00078{word-spacing:14.464000pt;}
.ws7_c00078{word-spacing:14.476800pt;}
.ws1d_c00078{word-spacing:20.428800pt;}
.ws1e_c00078{word-spacing:20.492800pt;}
._0_c00078{margin-left:-1.175680pt;}
._1_c00078{width:1.113600pt;}
._2_c00078{width:7.771456pt;}
.fs5_c00078{font-size:34.560000pt;}
.fs3_c00078{font-size:37.440000pt;}
.fs4_c00078{font-size:42.560000pt;}
.fs1_c00078{font-size:48.000000pt;}
.fs0_c00078{font-size:53.440000pt;}
.fs2_c00078{font-size:64.000000pt;}
.y0_c00078{bottom:0.000000pt;}
.y3_c00078{bottom:51.067067pt;}
.y24_c00078{bottom:101.065307pt;}
.y23_c00078{bottom:117.400027pt;}
.y22_c00078{bottom:133.636667pt;}
.y21_c00078{bottom:149.873307pt;}
.y20_c00078{bottom:162.194427pt;}
.y1f_c00078{bottom:174.430427pt;}
.y1e_c00078{bottom:190.667067pt;}
.y1d_c00078{bottom:204.187067pt;}
.y1c_c00078{bottom:222.587067pt;}
.y1b_c00078{bottom:240.987067pt;}
.y1a_c00078{bottom:317.147067pt;}
.y19_c00078{bottom:347.787067pt;}
.y18_c00078{bottom:386.347067pt;}
.y17_c00078{bottom:416.987067pt;}
.y16_c00078{bottom:447.547067pt;}
.y15_c00078{bottom:478.187067pt;}
.y14_c00078{bottom:508.747067pt;}
.y13_c00078{bottom:539.387067pt;}
.y12_c00078{bottom:569.947067pt;}
.y11_c00078{bottom:600.587067pt;}
.y10_c00078{bottom:631.147067pt;}
.yf_c00078{bottom:669.787200pt;}
.ye_c00078{bottom:700.347200pt;}
.yd_c00078{bottom:730.987067pt;}
.yc_c00078{bottom:761.547067pt;}
.yb_c00078{bottom:792.187067pt;}
.ya_c00078{bottom:822.747067pt;}
.y9_c00078{bottom:853.387067pt;}
.y8_c00078{bottom:883.947067pt;}
.y7_c00078{bottom:914.587067pt;}
.y6_c00078{bottom:945.147067pt;}
.y5_c00078{bottom:983.787067pt;}
.y4_c00078{bottom:1014.347067pt;}
.y2_c00078{bottom:1046.987067pt;}
.y1_c00078{bottom:1063.867067pt;}
.h7_c00078{height:42.656250pt;}
.h8_c00078{height:44.388750pt;}
.h9_c00078{height:44.395790pt;}
.h1_c00078{height:44.724687pt;}
.h2_c00078{height:50.062500pt;}
.h4_c00078{height:53.562500pt;}
.h6_c00078{height:57.893529pt;}
.h5_c00078{height:57.894063pt;}
.h3_c00078{height:64.142500pt;}
.h0_c00078{height:1122.666667pt;}
.w1_c00078{width:793.333333pt;}
.w0_c00078{width:793.626667pt;}
.x0_c00078{left:0.000000pt;}
.x1_c00078{left:113.440000pt;}
.x3_c00078{left:137.448080pt;}
.x2_c00078{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_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_d0be82cc24a5e5759b9f0c42.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00079;src:url('chunks/assets/font_b254e1cb8fe6b485252d6fe2.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00079;src:url('chunks/assets/font_91355c988a0e04de53fe108b.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;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_c00079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.v1_c00079{vertical-align:29.880000px;}
.ls16_c00079{letter-spacing:-0.151200px;}
.ls1a_c00079{letter-spacing:-0.108000px;}
.ls14_c00079{letter-spacing:-0.048096px;}
.ls18_c00079{letter-spacing:-0.036000px;}
.ls17_c00079{letter-spacing:-0.028800px;}
.ls1c_c00079{letter-spacing:-0.021600px;}
.ls13_c00079{letter-spacing:-0.018036px;}
.ls20_c00079{letter-spacing:-0.015552px;}
.ls19_c00079{letter-spacing:-0.014400px;}
.ls21_c00079{letter-spacing:-0.009576px;}
.ls1e_c00079{letter-spacing:-0.007776px;}
.ls1d_c00079{letter-spacing:-0.007200px;}
.ls1f_c00079{letter-spacing:-0.003888px;}
.ls15_c00079{letter-spacing:0.000000px;}
.ls5_c00079{letter-spacing:0.007200px;}
.ls6_c00079{letter-spacing:0.014364px;}
.lse_c00079{letter-spacing:0.019152px;}
.ls12_c00079{letter-spacing:0.023940px;}
.lsb_c00079{letter-spacing:0.028728px;}
.ls3_c00079{letter-spacing:0.028800px;}
.ls10_c00079{letter-spacing:0.033516px;}
.ls0_c00079{letter-spacing:0.036072px;}
.lsf_c00079{letter-spacing:0.043092px;}
.ls9_c00079{letter-spacing:0.052668px;}
.ls4_c00079{letter-spacing:0.054756px;}
.lsa_c00079{letter-spacing:0.057456px;}
.ls8_c00079{letter-spacing:0.067032px;}
.ls1b_c00079{letter-spacing:0.093600px;}
.lsc_c00079{letter-spacing:0.104040px;}
.ls1_c00079{letter-spacing:0.144000px;}
.lsd_c00079{letter-spacing:0.342144px;}
.ls11_c00079{letter-spacing:0.350640px;}
.ls7_c00079{letter-spacing:0.378720px;}
.ls2_c00079{letter-spacing:65.304000px;}
.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:-17.964000px;}
.ws4_c00079{word-spacing:-13.310640px;}
.ws3_c00079{word-spacing:-11.150784px;}
.ws2_c00079{word-spacing:-10.804752px;}
.ws6_c00079{word-spacing:-10.800864px;}
.ws5_c00079{word-spacing:-10.793088px;}
.ws0_c00079{word-spacing:-10.584756px;}
.ws2f_c00079{word-spacing:-0.038304px;}
.ws34_c00079{word-spacing:-0.033516px;}
.ws32_c00079{word-spacing:-0.023940px;}
.ws35_c00079{word-spacing:-0.014364px;}
.ws30_c00079{word-spacing:-0.009576px;}
.ws37_c00079{word-spacing:-0.004788px;}
.wsa_c00079{word-spacing:0.000000px;}
.ws31_c00079{word-spacing:0.004788px;}
.ws12_c00079{word-spacing:0.014400px;}
.ws36_c00079{word-spacing:0.019152px;}
.ws33_c00079{word-spacing:0.028728px;}
.ws7_c00079{word-spacing:0.054108px;}
.ws19_c00079{word-spacing:0.086400px;}
.ws1c_c00079{word-spacing:0.108000px;}
.ws8_c00079{word-spacing:0.108216px;}
.ws9_c00079{word-spacing:0.138276px;}
.ws2d_c00079{word-spacing:1.029420px;}
.ws2e_c00079{word-spacing:1.043784px;}
.ws2b_c00079{word-spacing:1.082088px;}
.ws2c_c00079{word-spacing:1.084752px;}
.ws20_c00079{word-spacing:1.447200px;}
.ws1d_c00079{word-spacing:3.967200px;}
.ws1e_c00079{word-spacing:4.032000px;}
.ws29_c00079{word-spacing:5.421600px;}
.ws21_c00079{word-spacing:5.436000px;}
.ws1f_c00079{word-spacing:5.457600px;}
.ws14_c00079{word-spacing:6.868800px;}
.ws15_c00079{word-spacing:6.948000px;}
.ws16_c00079{word-spacing:9.374400px;}
.ws22_c00079{word-spacing:10.771200px;}
.ws23_c00079{word-spacing:10.836000px;}
.ws1a_c00079{word-spacing:11.512800px;}
.ws2a_c00079{word-spacing:12.254400px;}
.ws26_c00079{word-spacing:14.803200px;}
.wsb_c00079{word-spacing:15.451200px;}
.wsc_c00079{word-spacing:15.624000px;}
.wsd_c00079{word-spacing:16.588800px;}
.ws17_c00079{word-spacing:17.272800px;}
.ws18_c00079{word-spacing:17.352000px;}
.ws1b_c00079{word-spacing:18.043200px;}
.ws13_c00079{word-spacing:19.051200px;}
.ws28_c00079{word-spacing:21.196800px;}
.ws27_c00079{word-spacing:21.261600px;}
.ws10_c00079{word-spacing:28.771200px;}
.wsf_c00079{word-spacing:28.908000px;}
.wse_c00079{word-spacing:28.936800px;}
.ws24_c00079{word-spacing:30.672000px;}
.ws25_c00079{word-spacing:30.736800px;}
.ws11_c00079{word-spacing:33.854400px;}
._0_c00079{margin-left:-1.142280px;}
._1_c00079{width:1.132092px;}
.fc0_c00079{color:rgb(0,0,0);}
.fs5_c00079{font-size:38.880000px;}
.fs3_c00079{font-size:42.120000px;}
.fs4_c00079{font-size:47.880000px;}
.fs2_c00079{font-size:54.000000px;}
.fs0_c00079{font-size:60.120000px;}
.fs1_c00079{font-size:72.000000px;}
.y0_c00079{bottom:0.000000px;}
.y3_c00079{bottom:57.450450px;}
.y4_c00079{bottom:61.410450px;}
.y27_c00079{bottom:113.698470px;}
.y26_c00079{bottom:132.069810px;}
.y25_c00079{bottom:150.336030px;}
.y24_c00079{bottom:168.602250px;}
.y23_c00079{bottom:186.964230px;}
.y22_c00079{bottom:205.232970px;}
.y21_c00079{bottom:223.499190px;}
.y20_c00079{bottom:237.360450px;}
.y1f_c00079{bottom:252.570450px;}
.y1e_c00079{bottom:273.270450px;}
.y1d_c00079{bottom:293.970600px;}
.y1c_c00079{bottom:322.410600px;}
.y1b_c00079{bottom:356.790450px;}
.y1a_c00079{bottom:391.260450px;}
.y19_c00079{bottom:425.640450px;}
.y18_c00079{bottom:460.110450px;}
.y17_c00079{bottom:494.490450px;}
.y16_c00079{bottom:528.960450px;}
.y15_c00079{bottom:563.340450px;}
.y14_c00079{bottom:597.810450px;}
.y13_c00079{bottom:632.190450px;}
.y12_c00079{bottom:675.660450px;}
.y11_c00079{bottom:710.040450px;}
.y10_c00079{bottom:744.510450px;}
.yf_c00079{bottom:787.890450px;}
.ye_c00079{bottom:822.360450px;}
.yd_c00079{bottom:856.740450px;}
.yc_c00079{bottom:891.210450px;}
.yb_c00079{bottom:925.590450px;}
.ya_c00079{bottom:969.060450px;}
.y9_c00079{bottom:1003.440450px;}
.y8_c00079{bottom:1037.910450px;}
.y7_c00079{bottom:1072.290450px;}
.y6_c00079{bottom:1106.760450px;}
.y5_c00079{bottom:1141.140450px;}
.y2_c00079{bottom:1173.810450px;}
.y1_c00079{bottom:1196.850450px;}
.h2_c00079{height:47.988281px;}
.h8_c00079{height:49.937344px;}
.h1_c00079{height:50.315273px;}
.h3_c00079{height:56.320312px;}
.h5_c00079{height:60.257812px;}
.h6_c00079{height:65.130820px;}
.h7_c00079{height:65.131420px;}
.h4_c00079{height:75.093750px;}
.h0_c00079{height:1263.000000px;}
.w1_c00079{width:892.500000px;}
.w0_c00079{width:892.830000px;}
.x0_c00079{left:0.000000px;}
.x2_c00079{left:127.620000px;}
.x1_c00079{left:145.440000px;}
.x5_c00079{left:154.620000px;}
.x6_c00079{left:181.620000px;}
.x7_c00079{left:207.000000px;}
.x4_c00079{left:439.020000px;}
.x3_c00079{left:446.490000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.v1_c00079{vertical-align:26.560000pt;}
.ls16_c00079{letter-spacing:-0.134400pt;}
.ls1a_c00079{letter-spacing:-0.096000pt;}
.ls14_c00079{letter-spacing:-0.042752pt;}
.ls18_c00079{letter-spacing:-0.032000pt;}
.ls17_c00079{letter-spacing:-0.025600pt;}
.ls1c_c00079{letter-spacing:-0.019200pt;}
.ls13_c00079{letter-spacing:-0.016032pt;}
.ls20_c00079{letter-spacing:-0.013824pt;}
.ls19_c00079{letter-spacing:-0.012800pt;}
.ls21_c00079{letter-spacing:-0.008512pt;}
.ls1e_c00079{letter-spacing:-0.006912pt;}
.ls1d_c00079{letter-spacing:-0.006400pt;}
.ls1f_c00079{letter-spacing:-0.003456pt;}
.ls15_c00079{letter-spacing:0.000000pt;}
.ls5_c00079{letter-spacing:0.006400pt;}
.ls6_c00079{letter-spacing:0.012768pt;}
.lse_c00079{letter-spacing:0.017024pt;}
.ls12_c00079{letter-spacing:0.021280pt;}
.lsb_c00079{letter-spacing:0.025536pt;}
.ls3_c00079{letter-spacing:0.025600pt;}
.ls10_c00079{letter-spacing:0.029792pt;}
.ls0_c00079{letter-spacing:0.032064pt;}
.lsf_c00079{letter-spacing:0.038304pt;}
.ls9_c00079{letter-spacing:0.046816pt;}
.ls4_c00079{letter-spacing:0.048672pt;}
.lsa_c00079{letter-spacing:0.051072pt;}
.ls8_c00079{letter-spacing:0.059584pt;}
.ls1b_c00079{letter-spacing:0.083200pt;}
.lsc_c00079{letter-spacing:0.092480pt;}
.ls1_c00079{letter-spacing:0.128000pt;}
.lsd_c00079{letter-spacing:0.304128pt;}
.ls11_c00079{letter-spacing:0.311680pt;}
.ls7_c00079{letter-spacing:0.336640pt;}
.ls2_c00079{letter-spacing:58.048000pt;}
.ws1_c00079{word-spacing:-15.968000pt;}
.ws4_c00079{word-spacing:-11.831680pt;}
.ws3_c00079{word-spacing:-9.911808pt;}
.ws2_c00079{word-spacing:-9.604224pt;}
.ws6_c00079{word-spacing:-9.600768pt;}
.ws5_c00079{word-spacing:-9.593856pt;}
.ws0_c00079{word-spacing:-9.408672pt;}
.ws2f_c00079{word-spacing:-0.034048pt;}
.ws34_c00079{word-spacing:-0.029792pt;}
.ws32_c00079{word-spacing:-0.021280pt;}
.ws35_c00079{word-spacing:-0.012768pt;}
.ws30_c00079{word-spacing:-0.008512pt;}
.ws37_c00079{word-spacing:-0.004256pt;}
.wsa_c00079{word-spacing:0.000000pt;}
.ws31_c00079{word-spacing:0.004256pt;}
.ws12_c00079{word-spacing:0.012800pt;}
.ws36_c00079{word-spacing:0.017024pt;}
.ws33_c00079{word-spacing:0.025536pt;}
.ws7_c00079{word-spacing:0.048096pt;}
.ws19_c00079{word-spacing:0.076800pt;}
.ws1c_c00079{word-spacing:0.096000pt;}
.ws8_c00079{word-spacing:0.096192pt;}
.ws9_c00079{word-spacing:0.122912pt;}
.ws2d_c00079{word-spacing:0.915040pt;}
.ws2e_c00079{word-spacing:0.927808pt;}
.ws2b_c00079{word-spacing:0.961856pt;}
.ws2c_c00079{word-spacing:0.964224pt;}
.ws20_c00079{word-spacing:1.286400pt;}
.ws1d_c00079{word-spacing:3.526400pt;}
.ws1e_c00079{word-spacing:3.584000pt;}
.ws29_c00079{word-spacing:4.819200pt;}
.ws21_c00079{word-spacing:4.832000pt;}
.ws1f_c00079{word-spacing:4.851200pt;}
.ws14_c00079{word-spacing:6.105600pt;}
.ws15_c00079{word-spacing:6.176000pt;}
.ws16_c00079{word-spacing:8.332800pt;}
.ws22_c00079{word-spacing:9.574400pt;}
.ws23_c00079{word-spacing:9.632000pt;}
.ws1a_c00079{word-spacing:10.233600pt;}
.ws2a_c00079{word-spacing:10.892800pt;}
.ws26_c00079{word-spacing:13.158400pt;}
.wsb_c00079{word-spacing:13.734400pt;}
.wsc_c00079{word-spacing:13.888000pt;}
.wsd_c00079{word-spacing:14.745600pt;}
.ws17_c00079{word-spacing:15.353600pt;}
.ws18_c00079{word-spacing:15.424000pt;}
.ws1b_c00079{word-spacing:16.038400pt;}
.ws13_c00079{word-spacing:16.934400pt;}
.ws28_c00079{word-spacing:18.841600pt;}
.ws27_c00079{word-spacing:18.899200pt;}
.ws10_c00079{word-spacing:25.574400pt;}
.wsf_c00079{word-spacing:25.696000pt;}
.wse_c00079{word-spacing:25.721600pt;}
.ws24_c00079{word-spacing:27.264000pt;}
.ws25_c00079{word-spacing:27.321600pt;}
.ws11_c00079{word-spacing:30.092800pt;}
._0_c00079{margin-left:-1.015360pt;}
._1_c00079{width:1.006304pt;}
.fs5_c00079{font-size:34.560000pt;}
.fs3_c00079{font-size:37.440000pt;}
.fs4_c00079{font-size:42.560000pt;}
.fs2_c00079{font-size:48.000000pt;}
.fs0_c00079{font-size:53.440000pt;}
.fs1_c00079{font-size:64.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y3_c00079{bottom:51.067067pt;}
.y4_c00079{bottom:54.587067pt;}
.y27_c00079{bottom:101.065307pt;}
.y26_c00079{bottom:117.395387pt;}
.y25_c00079{bottom:133.632027pt;}
.y24_c00079{bottom:149.868667pt;}
.y23_c00079{bottom:166.190427pt;}
.y22_c00079{bottom:182.429307pt;}
.y21_c00079{bottom:198.665947pt;}
.y20_c00079{bottom:210.987067pt;}
.y1f_c00079{bottom:224.507067pt;}
.y1e_c00079{bottom:242.907067pt;}
.y1d_c00079{bottom:261.307200pt;}
.y1c_c00079{bottom:286.587200pt;}
.y1b_c00079{bottom:317.147067pt;}
.y1a_c00079{bottom:347.787067pt;}
.y19_c00079{bottom:378.347067pt;}
.y18_c00079{bottom:408.987067pt;}
.y17_c00079{bottom:439.547067pt;}
.y16_c00079{bottom:470.187067pt;}
.y15_c00079{bottom:500.747067pt;}
.y14_c00079{bottom:531.387067pt;}
.y13_c00079{bottom:561.947067pt;}
.y12_c00079{bottom:600.587067pt;}
.y11_c00079{bottom:631.147067pt;}
.y10_c00079{bottom:661.787067pt;}
.yf_c00079{bottom:700.347067pt;}
.ye_c00079{bottom:730.987067pt;}
.yd_c00079{bottom:761.547067pt;}
.yc_c00079{bottom:792.187067pt;}
.yb_c00079{bottom:822.747067pt;}
.ya_c00079{bottom:861.387067pt;}
.y9_c00079{bottom:891.947067pt;}
.y8_c00079{bottom:922.587067pt;}
.y7_c00079{bottom:953.147067pt;}
.y6_c00079{bottom:983.787067pt;}
.y5_c00079{bottom:1014.347067pt;}
.y2_c00079{bottom:1043.387067pt;}
.y1_c00079{bottom:1063.867067pt;}
.h2_c00079{height:42.656250pt;}
.h8_c00079{height:44.388750pt;}
.h1_c00079{height:44.724687pt;}
.h3_c00079{height:50.062500pt;}
.h5_c00079{height:53.562500pt;}
.h6_c00079{height:57.894062pt;}
.h7_c00079{height:57.894596pt;}
.h4_c00079{height:66.750000pt;}
.h0_c00079{height:1122.666667pt;}
.w1_c00079{width:793.333333pt;}
.w0_c00079{width:793.626667pt;}
.x0_c00079{left:0.000000pt;}
.x2_c00079{left:113.440000pt;}
.x1_c00079{left:129.280000pt;}
.x5_c00079{left:137.440000pt;}
.x6_c00079{left:161.440000pt;}
.x7_c00079{left:184.000000pt;}
.x4_c00079{left:390.240000pt;}
.x3_c00079{left:396.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_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_0d39a660df4fd8f797bf96a6.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.100098;font-style:normal;font-weight:normal;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_9c39a74c865a74a8a3cdd02e.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;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_c00080;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00080;src:url('chunks/assets/font_3b1f1775b16d96dff1ace81d.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;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_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;}
.v1_c00080{vertical-align:15.840000px;}
.v2_c00080{vertical-align:29.880000px;}
.ls11_c00080{letter-spacing:-0.151200px;}
.ls18_c00080{letter-spacing:-0.108000px;}
.ls1b_c00080{letter-spacing:-0.050400px;}
.ls19_c00080{letter-spacing:-0.043200px;}
.ls14_c00080{letter-spacing:-0.036000px;}
.ls13_c00080{letter-spacing:-0.028800px;}
.ls16_c00080{letter-spacing:-0.021600px;}
.ls12_c00080{letter-spacing:-0.014400px;}
.ls1d_c00080{letter-spacing:-0.011664px;}
.ls1c_c00080{letter-spacing:-0.007776px;}
.ls17_c00080{letter-spacing:-0.007200px;}
.ls10_c00080{letter-spacing:0.000000px;}
.ls3_c00080{letter-spacing:0.007200px;}
.lsf_c00080{letter-spacing:0.014364px;}
.ls5_c00080{letter-spacing:0.014400px;}
.ls8_c00080{letter-spacing:0.019152px;}
.ls1a_c00080{letter-spacing:0.021600px;}
.ls7_c00080{letter-spacing:0.023940px;}
.lsa_c00080{letter-spacing:0.033516px;}
.ls9_c00080{letter-spacing:0.038304px;}
.lsd_c00080{letter-spacing:0.043092px;}
.ls0_c00080{letter-spacing:0.048096px;}
.ls4_c00080{letter-spacing:0.050400px;}
.lse_c00080{letter-spacing:0.052668px;}
.ls2_c00080{letter-spacing:0.054756px;}
.ls6_c00080{letter-spacing:0.072000px;}
.ls15_c00080{letter-spacing:0.093600px;}
.lsc_c00080{letter-spacing:0.104040px;}
.lsb_c00080{letter-spacing:0.172368px;}
.ls1e_c00080{letter-spacing:0.346032px;}
.ls1_c00080{letter-spacing:1227.240000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00080{word-spacing:-18.072000px;}
.ws4_c00080{word-spacing:-13.483008px;}
.ws2_c00080{word-spacing:-13.310640px;}
.ws3_c00080{word-spacing:-10.796976px;}
.ws0_c00080{word-spacing:-10.584756px;}
.wsa_c00080{word-spacing:-0.093600px;}
.ws1f_c00080{word-spacing:-0.086400px;}
.ws29_c00080{word-spacing:-0.019152px;}
.ws2c_c00080{word-spacing:-0.014364px;}
.ws2b_c00080{word-spacing:-0.004788px;}
.ws6_c00080{word-spacing:0.000000px;}
.ws33_c00080{word-spacing:0.004788px;}
.ws1e_c00080{word-spacing:0.007200px;}
.ws2a_c00080{word-spacing:0.019152px;}
.ws5_c00080{word-spacing:0.042084px;}
.ws9_c00080{word-spacing:0.136800px;}
.wsd_c00080{word-spacing:0.669600px;}
.ws1a_c00080{word-spacing:0.792000px;}
.ws30_c00080{word-spacing:1.043784px;}
.ws32_c00080{word-spacing:1.053360px;}
.ws31_c00080{word-spacing:1.062936px;}
.wsc_c00080{word-spacing:1.072800px;}
.ws11_c00080{word-spacing:1.814400px;}
.ws17_c00080{word-spacing:2.512800px;}
.ws1c_c00080{word-spacing:2.872800px;}
.ws1d_c00080{word-spacing:2.887200px;}
.ws13_c00080{word-spacing:2.937600px;}
.ws12_c00080{word-spacing:2.988000px;}
.ws25_c00080{word-spacing:3.218400px;}
.ws24_c00080{word-spacing:3.232800px;}
.ws26_c00080{word-spacing:3.470400px;}
.ws19_c00080{word-spacing:3.542400px;}
.ws18_c00080{word-spacing:3.614400px;}
.ws7_c00080{word-spacing:3.852000px;}
.ws8_c00080{word-spacing:3.988800px;}
.ws23_c00080{word-spacing:4.010400px;}
.ws22_c00080{word-spacing:4.039200px;}
.ws1b_c00080{word-spacing:5.774400px;}
.ws14_c00080{word-spacing:6.847200px;}
.ws15_c00080{word-spacing:6.854400px;}
.ws16_c00080{word-spacing:6.948000px;}
.ws27_c00080{word-spacing:8.273664px;}
.ws28_c00080{word-spacing:8.637552px;}
.wse_c00080{word-spacing:9.000000px;}
.wsf_c00080{word-spacing:9.036000px;}
.wsb_c00080{word-spacing:9.360000px;}
.ws20_c00080{word-spacing:10.454400px;}
.ws21_c00080{word-spacing:10.468800px;}
.ws2f_c00080{word-spacing:14.373576px;}
.ws2d_c00080{word-spacing:14.392728px;}
.ws2e_c00080{word-spacing:14.397516px;}
.ws10_c00080{word-spacing:27.763200px;}
._0_c00080{margin-left:-1.322640px;}
._1_c00080{width:1.008000px;}
._2_c00080{width:9.178416px;}
._3_c00080{width:14.402448px;}
.fc0_c00080{color:rgb(0,0,0);}
.fs5_c00080{font-size:38.880000px;}
.fs3_c00080{font-size:42.120000px;}
.fs4_c00080{font-size:47.880000px;}
.fs1_c00080{font-size:54.000000px;}
.fs0_c00080{font-size:60.120000px;}
.fs2_c00080{font-size:72.000000px;}
.y0_c00080{bottom:0.000000px;}
.y3_c00080{bottom:57.450450px;}
.y27_c00080{bottom:113.707470px;}
.y26_c00080{bottom:132.069450px;}
.y25_c00080{bottom:145.834950px;}
.y24_c00080{bottom:159.617910px;}
.y23_c00080{bottom:177.979890px;}
.y22_c00080{bottom:196.246110px;}
.y21_c00080{bottom:214.512330px;}
.y20_c00080{bottom:232.874310px;}
.y1f_c00080{bottom:251.140530px;}
.y1e_c00080{bottom:269.406750px;}
.y1d_c00080{bottom:287.768730px;}
.y1c_c00080{bottom:306.034950px;}
.y1b_c00080{bottom:319.800450px;}
.y1a_c00080{bottom:335.010450px;}
.y19_c00080{bottom:355.710450px;}
.y18_c00080{bottom:376.410600px;}
.y17_c00080{bottom:460.110450px;}
.y16_c00080{bottom:494.490450px;}
.y15_c00080{bottom:528.960450px;}
.y14_c00080{bottom:563.340450px;}
.y13_c00080{bottom:606.810450px;}
.y12_c00080{bottom:641.190450px;}
.y11_c00080{bottom:675.660450px;}
.y10_c00080{bottom:719.040450px;}
.yf_c00080{bottom:753.510450px;}
.ye_c00080{bottom:787.890450px;}
.yd_c00080{bottom:822.360450px;}
.yc_c00080{bottom:856.740450px;}
.yb_c00080{bottom:891.210450px;}
.ya_c00080{bottom:925.590450px;}
.y9_c00080{bottom:960.060450px;}
.y8_c00080{bottom:994.440450px;}
.y7_c00080{bottom:1028.910450px;}
.y6_c00080{bottom:1063.290450px;}
.y5_c00080{bottom:1106.760450px;}
.y4_c00080{bottom:1141.140450px;}
.y2_c00080{bottom:1177.860450px;}
.y1_c00080{bottom:1196.850450px;}
.h6_c00080{height:47.988281px;}
.h7_c00080{height:49.937344px;}
.h1_c00080{height:50.315273px;}
.h2_c00080{height:56.320312px;}
.h4_c00080{height:60.257812px;}
.h5_c00080{height:65.130820px;}
.h3_c00080{height:72.160312px;}
.h0_c00080{height:1263.000000px;}
.w1_c00080{width:892.500000px;}
.w0_c00080{width:892.830000px;}
.x0_c00080{left:0.000000px;}
.x1_c00080{left:127.620000px;}
.x4_c00080{left:154.619730px;}
.x2_c00080{left:180.810000px;}
.x3_c00080{left:208.620000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.v1_c00080{vertical-align:14.080000pt;}
.v2_c00080{vertical-align:26.560000pt;}
.ls11_c00080{letter-spacing:-0.134400pt;}
.ls18_c00080{letter-spacing:-0.096000pt;}
.ls1b_c00080{letter-spacing:-0.044800pt;}
.ls19_c00080{letter-spacing:-0.038400pt;}
.ls14_c00080{letter-spacing:-0.032000pt;}
.ls13_c00080{letter-spacing:-0.025600pt;}
.ls16_c00080{letter-spacing:-0.019200pt;}
.ls12_c00080{letter-spacing:-0.012800pt;}
.ls1d_c00080{letter-spacing:-0.010368pt;}
.ls1c_c00080{letter-spacing:-0.006912pt;}
.ls17_c00080{letter-spacing:-0.006400pt;}
.ls10_c00080{letter-spacing:0.000000pt;}
.ls3_c00080{letter-spacing:0.006400pt;}
.lsf_c00080{letter-spacing:0.012768pt;}
.ls5_c00080{letter-spacing:0.012800pt;}
.ls8_c00080{letter-spacing:0.017024pt;}
.ls1a_c00080{letter-spacing:0.019200pt;}
.ls7_c00080{letter-spacing:0.021280pt;}
.lsa_c00080{letter-spacing:0.029792pt;}
.ls9_c00080{letter-spacing:0.034048pt;}
.lsd_c00080{letter-spacing:0.038304pt;}
.ls0_c00080{letter-spacing:0.042752pt;}
.ls4_c00080{letter-spacing:0.044800pt;}
.lse_c00080{letter-spacing:0.046816pt;}
.ls2_c00080{letter-spacing:0.048672pt;}
.ls6_c00080{letter-spacing:0.064000pt;}
.ls15_c00080{letter-spacing:0.083200pt;}
.lsc_c00080{letter-spacing:0.092480pt;}
.lsb_c00080{letter-spacing:0.153216pt;}
.ls1e_c00080{letter-spacing:0.307584pt;}
.ls1_c00080{letter-spacing:1090.880000pt;}
.ws1_c00080{word-spacing:-16.064000pt;}
.ws4_c00080{word-spacing:-11.984896pt;}
.ws2_c00080{word-spacing:-11.831680pt;}
.ws3_c00080{word-spacing:-9.597312pt;}
.ws0_c00080{word-spacing:-9.408672pt;}
.wsa_c00080{word-spacing:-0.083200pt;}
.ws1f_c00080{word-spacing:-0.076800pt;}
.ws29_c00080{word-spacing:-0.017024pt;}
.ws2c_c00080{word-spacing:-0.012768pt;}
.ws2b_c00080{word-spacing:-0.004256pt;}
.ws6_c00080{word-spacing:0.000000pt;}
.ws33_c00080{word-spacing:0.004256pt;}
.ws1e_c00080{word-spacing:0.006400pt;}
.ws2a_c00080{word-spacing:0.017024pt;}
.ws5_c00080{word-spacing:0.037408pt;}
.ws9_c00080{word-spacing:0.121600pt;}
.wsd_c00080{word-spacing:0.595200pt;}
.ws1a_c00080{word-spacing:0.704000pt;}
.ws30_c00080{word-spacing:0.927808pt;}
.ws32_c00080{word-spacing:0.936320pt;}
.ws31_c00080{word-spacing:0.944832pt;}
.wsc_c00080{word-spacing:0.953600pt;}
.ws11_c00080{word-spacing:1.612800pt;}
.ws17_c00080{word-spacing:2.233600pt;}
.ws1c_c00080{word-spacing:2.553600pt;}
.ws1d_c00080{word-spacing:2.566400pt;}
.ws13_c00080{word-spacing:2.611200pt;}
.ws12_c00080{word-spacing:2.656000pt;}
.ws25_c00080{word-spacing:2.860800pt;}
.ws24_c00080{word-spacing:2.873600pt;}
.ws26_c00080{word-spacing:3.084800pt;}
.ws19_c00080{word-spacing:3.148800pt;}
.ws18_c00080{word-spacing:3.212800pt;}
.ws7_c00080{word-spacing:3.424000pt;}
.ws8_c00080{word-spacing:3.545600pt;}
.ws23_c00080{word-spacing:3.564800pt;}
.ws22_c00080{word-spacing:3.590400pt;}
.ws1b_c00080{word-spacing:5.132800pt;}
.ws14_c00080{word-spacing:6.086400pt;}
.ws15_c00080{word-spacing:6.092800pt;}
.ws16_c00080{word-spacing:6.176000pt;}
.ws27_c00080{word-spacing:7.354368pt;}
.ws28_c00080{word-spacing:7.677824pt;}
.wse_c00080{word-spacing:8.000000pt;}
.wsf_c00080{word-spacing:8.032000pt;}
.wsb_c00080{word-spacing:8.320000pt;}
.ws20_c00080{word-spacing:9.292800pt;}
.ws21_c00080{word-spacing:9.305600pt;}
.ws2f_c00080{word-spacing:12.776512pt;}
.ws2d_c00080{word-spacing:12.793536pt;}
.ws2e_c00080{word-spacing:12.797792pt;}
.ws10_c00080{word-spacing:24.678400pt;}
._0_c00080{margin-left:-1.175680pt;}
._1_c00080{width:0.896000pt;}
._2_c00080{width:8.158592pt;}
._3_c00080{width:12.802176pt;}
.fs5_c00080{font-size:34.560000pt;}
.fs3_c00080{font-size:37.440000pt;}
.fs4_c00080{font-size:42.560000pt;}
.fs1_c00080{font-size:48.000000pt;}
.fs0_c00080{font-size:53.440000pt;}
.fs2_c00080{font-size:64.000000pt;}
.y0_c00080{bottom:0.000000pt;}
.y3_c00080{bottom:51.067067pt;}
.y27_c00080{bottom:101.073307pt;}
.y26_c00080{bottom:117.395067pt;}
.y25_c00080{bottom:129.631067pt;}
.y24_c00080{bottom:141.882587pt;}
.y23_c00080{bottom:158.204347pt;}
.y22_c00080{bottom:174.440987pt;}
.y21_c00080{bottom:190.677627pt;}
.y20_c00080{bottom:206.999387pt;}
.y1f_c00080{bottom:223.236027pt;}
.y1e_c00080{bottom:239.472667pt;}
.y1d_c00080{bottom:255.794427pt;}
.y1c_c00080{bottom:272.031067pt;}
.y1b_c00080{bottom:284.267067pt;}
.y1a_c00080{bottom:297.787067pt;}
.y19_c00080{bottom:316.187067pt;}
.y18_c00080{bottom:334.587200pt;}
.y17_c00080{bottom:408.987067pt;}
.y16_c00080{bottom:439.547067pt;}
.y15_c00080{bottom:470.187067pt;}
.y14_c00080{bottom:500.747067pt;}
.y13_c00080{bottom:539.387067pt;}
.y12_c00080{bottom:569.947067pt;}
.y11_c00080{bottom:600.587067pt;}
.y10_c00080{bottom:639.147067pt;}
.yf_c00080{bottom:669.787067pt;}
.ye_c00080{bottom:700.347067pt;}
.yd_c00080{bottom:730.987067pt;}
.yc_c00080{bottom:761.547067pt;}
.yb_c00080{bottom:792.187067pt;}
.ya_c00080{bottom:822.747067pt;}
.y9_c00080{bottom:853.387067pt;}
.y8_c00080{bottom:883.947067pt;}
.y7_c00080{bottom:914.587067pt;}
.y6_c00080{bottom:945.147067pt;}
.y5_c00080{bottom:983.787067pt;}
.y4_c00080{bottom:1014.347067pt;}
.y2_c00080{bottom:1046.987067pt;}
.y1_c00080{bottom:1063.867067pt;}
.h6_c00080{height:42.656250pt;}
.h7_c00080{height:44.388750pt;}
.h1_c00080{height:44.724687pt;}
.h2_c00080{height:50.062500pt;}
.h4_c00080{height:53.562500pt;}
.h5_c00080{height:57.894063pt;}
.h3_c00080{height:64.142500pt;}
.h0_c00080{height:1122.666667pt;}
.w1_c00080{width:793.333333pt;}
.w0_c00080{width:793.626667pt;}
.x0_c00080{left:0.000000pt;}
.x1_c00080{left:113.440000pt;}
.x4_c00080{left:137.439760pt;}
.x2_c00080{left:160.720000pt;}
.x3_c00080{left:185.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_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_d931c4c96701c98ac01a2b19.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00081;src:url('chunks/assets/font_7d4744d413565bc63f03f189.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;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_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);}
.v3_c00081{vertical-align:-15.120000px;}
.v0_c00081{vertical-align:0.000000px;}
.v2_c00081{vertical-align:15.149520px;}
.v1_c00081{vertical-align:29.880000px;}
.ls10_c00081{letter-spacing:-0.151200px;}
.ls19_c00081{letter-spacing:-0.108000px;}
.lse_c00081{letter-spacing:-0.048096px;}
.ls1b_c00081{letter-spacing:-0.036000px;}
.ls18_c00081{letter-spacing:-0.028800px;}
.ls14_c00081{letter-spacing:-0.024048px;}
.ls12_c00081{letter-spacing:-0.021600px;}
.lsd_c00081{letter-spacing:-0.018036px;}
.ls17_c00081{letter-spacing:-0.014400px;}
.ls11_c00081{letter-spacing:-0.007200px;}
.ls15_c00081{letter-spacing:-0.006012px;}
.lsf_c00081{letter-spacing:0.000000px;}
.ls2_c00081{letter-spacing:0.007200px;}
.ls6_c00081{letter-spacing:0.014400px;}
.lsc_c00081{letter-spacing:0.019152px;}
.ls8_c00081{letter-spacing:0.021600px;}
.ls9_c00081{letter-spacing:0.023940px;}
.lsb_c00081{letter-spacing:0.028728px;}
.ls7_c00081{letter-spacing:0.036000px;}
.ls0_c00081{letter-spacing:0.036072px;}
.lsa_c00081{letter-spacing:0.038304px;}
.ls4_c00081{letter-spacing:0.042084px;}
.ls1a_c00081{letter-spacing:0.043200px;}
.ls3_c00081{letter-spacing:0.054108px;}
.ls1_c00081{letter-spacing:0.054756px;}
.ls13_c00081{letter-spacing:0.093600px;}
.ls5_c00081{letter-spacing:0.136080px;}
.ls16_c00081{letter-spacing:0.168336px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00081{word-spacing:-18.014400px;}
.ws3_c00081{word-spacing:-17.985600px;}
.ws0_c00081{word-spacing:-10.584756px;}
.ws1_c00081{word-spacing:-9.856080px;}
.ws11_c00081{word-spacing:-0.312624px;}
.wsb_c00081{word-spacing:-0.093600px;}
.ws29_c00081{word-spacing:-0.019152px;}
.ws2c_c00081{word-spacing:-0.014364px;}
.ws2b_c00081{word-spacing:-0.009576px;}
.ws28_c00081{word-spacing:-0.004788px;}
.ws7_c00081{word-spacing:0.000000px;}
.wsd_c00081{word-spacing:0.007200px;}
.wsa_c00081{word-spacing:0.021600px;}
.ws4_c00081{word-spacing:0.054108px;}
.ws13_c00081{word-spacing:0.072000px;}
.ws14_c00081{word-spacing:0.086400px;}
.ws19_c00081{word-spacing:0.093600px;}
.ws5_c00081{word-spacing:0.108216px;}
.ws6_c00081{word-spacing:0.138276px;}
.ws2a_c00081{word-spacing:1.067724px;}
.ws22_c00081{word-spacing:1.389600px;}
.ws21_c00081{word-spacing:1.461600px;}
.wse_c00081{word-spacing:1.472940px;}
.ws12_c00081{word-spacing:1.800000px;}
.ws1a_c00081{word-spacing:2.124000px;}
.ws1b_c00081{word-spacing:2.203200px;}
.ws1c_c00081{word-spacing:2.268000px;}
.ws16_c00081{word-spacing:2.901600px;}
.ws1d_c00081{word-spacing:3.614400px;}
.ws1e_c00081{word-spacing:3.628800px;}
.ws10_c00081{word-spacing:3.697380px;}
.wsf_c00081{word-spacing:3.715416px;}
.ws27_c00081{word-spacing:3.902400px;}
.ws26_c00081{word-spacing:3.996000px;}
.wsc_c00081{word-spacing:6.832800px;}
.ws23_c00081{word-spacing:6.861600px;}
.ws9_c00081{word-spacing:7.912800px;}
.ws8_c00081{word-spacing:7.977600px;}
.ws24_c00081{word-spacing:10.778400px;}
.ws25_c00081{word-spacing:10.879200px;}
.ws17_c00081{word-spacing:12.254400px;}
.ws15_c00081{word-spacing:12.938400px;}
.ws20_c00081{word-spacing:21.916800px;}
.ws1f_c00081{word-spacing:21.938400px;}
.ws18_c00081{word-spacing:21.952800px;}
._0_c00081{margin-left:-1.142280px;}
._1_c00081{width:1.036800px;}
.fc0_c00081{color:rgb(0,0,0);}
.fs4_c00081{font-size:38.880000px;}
.fs3_c00081{font-size:42.120000px;}
.fs5_c00081{font-size:47.880000px;}
.fs2_c00081{font-size:54.000000px;}
.fs0_c00081{font-size:60.120000px;}
.fs1_c00081{font-size:72.000000px;}
.y0_c00081{bottom:0.000000px;}
.y3_c00081{bottom:57.450450px;}
.y4_c00081{bottom:61.410450px;}
.y27_c00081{bottom:113.717910px;}
.y26_c00081{bottom:132.079890px;}
.y25_c00081{bottom:150.346110px;}
.y24_c00081{bottom:168.612330px;}
.y23_c00081{bottom:186.974310px;}
.y22_c00081{bottom:205.240530px;}
.y21_c00081{bottom:219.006030px;}
.y20_c00081{bottom:237.368010px;}
.y1f_c00081{bottom:255.634230px;}
.y1e_c00081{bottom:273.900450px;}
.y1d_c00081{bottom:289.110450px;}
.y1c_c00081{bottom:309.810450px;}
.y1b_c00081{bottom:330.510450px;}
.y1a_c00081{bottom:407.910450px;}
.y19_c00081{bottom:442.290450px;}
.y18_c00081{bottom:476.760450px;}
.y17_c00081{bottom:511.140450px;}
.y16_c00081{bottom:554.610450px;}
.y15_c00081{bottom:588.990450px;}
.y14_c00081{bottom:623.460450px;}
.y13_c00081{bottom:657.840450px;}
.y12_c00081{bottom:701.310450px;}
.y11_c00081{bottom:735.690450px;}
.y10_c00081{bottom:770.160450px;}
.yf_c00081{bottom:804.540450px;}
.ye_c00081{bottom:839.010450px;}
.yd_c00081{bottom:882.390450px;}
.yc_c00081{bottom:916.860450px;}
.yb_c00081{bottom:954.293070px;}
.ya_c00081{bottom:971.216850px;}
.y9_c00081{bottom:988.050450px;}
.y8_c00081{bottom:1028.910450px;}
.y7_c00081{bottom:1063.290450px;}
.y6_c00081{bottom:1106.760450px;}
.y5_c00081{bottom:1141.140450px;}
.y2_c00081{bottom:1173.810450px;}
.y1_c00081{bottom:1196.850450px;}
.h2_c00081{height:47.988281px;}
.h7_c00081{height:49.937344px;}
.h1_c00081{height:50.315273px;}
.h6_c00081{height:50.344793px;}
.h3_c00081{height:56.320312px;}
.h5_c00081{height:60.257812px;}
.h4_c00081{height:65.130820px;}
.h0_c00081{height:1263.000000px;}
.w1_c00081{width:892.500000px;}
.w0_c00081{width:892.830000px;}
.x0_c00081{left:0.000000px;}
.x2_c00081{left:127.620000px;}
.x1_c00081{left:145.440000px;}
.x7_c00081{left:154.624320px;}
.x5_c00081{left:180.810000px;}
.x6_c00081{left:208.620000px;}
.x4_c00081{left:439.020000px;}
.x3_c00081{left:446.490000px;}
@media print{
.v3_c00081{vertical-align:-13.440000pt;}
.v0_c00081{vertical-align:0.000000pt;}
.v2_c00081{vertical-align:13.466240pt;}
.v1_c00081{vertical-align:26.560000pt;}
.ls10_c00081{letter-spacing:-0.134400pt;}
.ls19_c00081{letter-spacing:-0.096000pt;}
.lse_c00081{letter-spacing:-0.042752pt;}
.ls1b_c00081{letter-spacing:-0.032000pt;}
.ls18_c00081{letter-spacing:-0.025600pt;}
.ls14_c00081{letter-spacing:-0.021376pt;}
.ls12_c00081{letter-spacing:-0.019200pt;}
.lsd_c00081{letter-spacing:-0.016032pt;}
.ls17_c00081{letter-spacing:-0.012800pt;}
.ls11_c00081{letter-spacing:-0.006400pt;}
.ls15_c00081{letter-spacing:-0.005344pt;}
.lsf_c00081{letter-spacing:0.000000pt;}
.ls2_c00081{letter-spacing:0.006400pt;}
.ls6_c00081{letter-spacing:0.012800pt;}
.lsc_c00081{letter-spacing:0.017024pt;}
.ls8_c00081{letter-spacing:0.019200pt;}
.ls9_c00081{letter-spacing:0.021280pt;}
.lsb_c00081{letter-spacing:0.025536pt;}
.ls7_c00081{letter-spacing:0.032000pt;}
.ls0_c00081{letter-spacing:0.032064pt;}
.lsa_c00081{letter-spacing:0.034048pt;}
.ls4_c00081{letter-spacing:0.037408pt;}
.ls1a_c00081{letter-spacing:0.038400pt;}
.ls3_c00081{letter-spacing:0.048096pt;}
.ls1_c00081{letter-spacing:0.048672pt;}
.ls13_c00081{letter-spacing:0.083200pt;}
.ls5_c00081{letter-spacing:0.120960pt;}
.ls16_c00081{letter-spacing:0.149632pt;}
.ws2_c00081{word-spacing:-16.012800pt;}
.ws3_c00081{word-spacing:-15.987200pt;}
.ws0_c00081{word-spacing:-9.408672pt;}
.ws1_c00081{word-spacing:-8.760960pt;}
.ws11_c00081{word-spacing:-0.277888pt;}
.wsb_c00081{word-spacing:-0.083200pt;}
.ws29_c00081{word-spacing:-0.017024pt;}
.ws2c_c00081{word-spacing:-0.012768pt;}
.ws2b_c00081{word-spacing:-0.008512pt;}
.ws28_c00081{word-spacing:-0.004256pt;}
.ws7_c00081{word-spacing:0.000000pt;}
.wsd_c00081{word-spacing:0.006400pt;}
.wsa_c00081{word-spacing:0.019200pt;}
.ws4_c00081{word-spacing:0.048096pt;}
.ws13_c00081{word-spacing:0.064000pt;}
.ws14_c00081{word-spacing:0.076800pt;}
.ws19_c00081{word-spacing:0.083200pt;}
.ws5_c00081{word-spacing:0.096192pt;}
.ws6_c00081{word-spacing:0.122912pt;}
.ws2a_c00081{word-spacing:0.949088pt;}
.ws22_c00081{word-spacing:1.235200pt;}
.ws21_c00081{word-spacing:1.299200pt;}
.wse_c00081{word-spacing:1.309280pt;}
.ws12_c00081{word-spacing:1.600000pt;}
.ws1a_c00081{word-spacing:1.888000pt;}
.ws1b_c00081{word-spacing:1.958400pt;}
.ws1c_c00081{word-spacing:2.016000pt;}
.ws16_c00081{word-spacing:2.579200pt;}
.ws1d_c00081{word-spacing:3.212800pt;}
.ws1e_c00081{word-spacing:3.225600pt;}
.ws10_c00081{word-spacing:3.286560pt;}
.wsf_c00081{word-spacing:3.302592pt;}
.ws27_c00081{word-spacing:3.468800pt;}
.ws26_c00081{word-spacing:3.552000pt;}
.wsc_c00081{word-spacing:6.073600pt;}
.ws23_c00081{word-spacing:6.099200pt;}
.ws9_c00081{word-spacing:7.033600pt;}
.ws8_c00081{word-spacing:7.091200pt;}
.ws24_c00081{word-spacing:9.580800pt;}
.ws25_c00081{word-spacing:9.670400pt;}
.ws17_c00081{word-spacing:10.892800pt;}
.ws15_c00081{word-spacing:11.500800pt;}
.ws20_c00081{word-spacing:19.481600pt;}
.ws1f_c00081{word-spacing:19.500800pt;}
.ws18_c00081{word-spacing:19.513600pt;}
._0_c00081{margin-left:-1.015360pt;}
._1_c00081{width:0.921600pt;}
.fs4_c00081{font-size:34.560000pt;}
.fs3_c00081{font-size:37.440000pt;}
.fs5_c00081{font-size:42.560000pt;}
.fs2_c00081{font-size:48.000000pt;}
.fs0_c00081{font-size:53.440000pt;}
.fs1_c00081{font-size:64.000000pt;}
.y0_c00081{bottom:0.000000pt;}
.y3_c00081{bottom:51.067067pt;}
.y4_c00081{bottom:54.587067pt;}
.y27_c00081{bottom:101.082587pt;}
.y26_c00081{bottom:117.404347pt;}
.y25_c00081{bottom:133.640987pt;}
.y24_c00081{bottom:149.877627pt;}
.y23_c00081{bottom:166.199387pt;}
.y22_c00081{bottom:182.436027pt;}
.y21_c00081{bottom:194.672027pt;}
.y20_c00081{bottom:210.993787pt;}
.y1f_c00081{bottom:227.230427pt;}
.y1e_c00081{bottom:243.467067pt;}
.y1d_c00081{bottom:256.987067pt;}
.y1c_c00081{bottom:275.387067pt;}
.y1b_c00081{bottom:293.787067pt;}
.y1a_c00081{bottom:362.587067pt;}
.y19_c00081{bottom:393.147067pt;}
.y18_c00081{bottom:423.787067pt;}
.y17_c00081{bottom:454.347067pt;}
.y16_c00081{bottom:492.987067pt;}
.y15_c00081{bottom:523.547067pt;}
.y14_c00081{bottom:554.187067pt;}
.y13_c00081{bottom:584.747067pt;}
.y12_c00081{bottom:623.387067pt;}
.y11_c00081{bottom:653.947067pt;}
.y10_c00081{bottom:684.587067pt;}
.yf_c00081{bottom:715.147067pt;}
.ye_c00081{bottom:745.787067pt;}
.yd_c00081{bottom:784.347067pt;}
.yc_c00081{bottom:814.987067pt;}
.yb_c00081{bottom:848.260507pt;}
.ya_c00081{bottom:863.303867pt;}
.y9_c00081{bottom:878.267067pt;}
.y8_c00081{bottom:914.587067pt;}
.y7_c00081{bottom:945.147067pt;}
.y6_c00081{bottom:983.787067pt;}
.y5_c00081{bottom:1014.347067pt;}
.y2_c00081{bottom:1043.387067pt;}
.y1_c00081{bottom:1063.867067pt;}
.h2_c00081{height:42.656250pt;}
.h7_c00081{height:44.388750pt;}
.h1_c00081{height:44.724687pt;}
.h6_c00081{height:44.750928pt;}
.h3_c00081{height:50.062500pt;}
.h5_c00081{height:53.562500pt;}
.h4_c00081{height:57.894063pt;}
.h0_c00081{height:1122.666667pt;}
.w1_c00081{width:793.333333pt;}
.w0_c00081{width:793.626667pt;}
.x0_c00081{left:0.000000pt;}
.x2_c00081{left:113.440000pt;}
.x1_c00081{left:129.280000pt;}
.x7_c00081{left:137.443840pt;}
.x5_c00081{left:160.720000pt;}
.x6_c00081{left:185.440000pt;}
.x4_c00081{left:390.240000pt;}
.x3_c00081{left:396.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_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_6f0b26efac4aacac9290df20.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.100098;font-style:normal;font-weight:normal;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_e1b364a3e1a7d28f6d73735d.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;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_c00082;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00082;src:url('chunks/assets/font_26eaf1921cc7628e7385f1c9.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00082;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00082{font-family:ff5_c00082;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_c00082;src:url('chunks/assets/font_e896f062a1e16c6f9bce876c.woff2')format("woff");}.ff6_c00082{font-family:ff6_c00082;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_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;}
.v1_c00082{vertical-align:15.840000px;}
.v2_c00082{vertical-align:29.880000px;}
.ls19_c00082{letter-spacing:-0.151200px;}
.ls22_c00082{letter-spacing:-0.054684px;}
.ls1d_c00082{letter-spacing:-0.036000px;}
.ls20_c00082{letter-spacing:-0.028800px;}
.ls1e_c00082{letter-spacing:-0.021600px;}
.ls1a_c00082{letter-spacing:-0.014400px;}
.ls27_c00082{letter-spacing:-0.009576px;}
.ls26_c00082{letter-spacing:-0.007776px;}
.ls1c_c00082{letter-spacing:-0.007200px;}
.ls25_c00082{letter-spacing:-0.003888px;}
.ls18_c00082{letter-spacing:0.000000px;}
.ls8_c00082{letter-spacing:0.007200px;}
.ls17_c00082{letter-spacing:0.009576px;}
.lse_c00082{letter-spacing:0.014364px;}
.ls5_c00082{letter-spacing:0.014400px;}
.lsb_c00082{letter-spacing:0.015624px;}
.ls11_c00082{letter-spacing:0.019152px;}
.ls4_c00082{letter-spacing:0.021600px;}
.lsc_c00082{letter-spacing:0.023940px;}
.ls14_c00082{letter-spacing:0.028728px;}
.ls2_c00082{letter-spacing:0.028800px;}
.lsd_c00082{letter-spacing:0.033516px;}
.ls15_c00082{letter-spacing:0.038304px;}
.ls12_c00082{letter-spacing:0.043092px;}
.ls23_c00082{letter-spacing:0.043200px;}
.ls0_c00082{letter-spacing:0.048096px;}
.ls21_c00082{letter-spacing:0.050400px;}
.ls3_c00082{letter-spacing:0.054756px;}
.ls1b_c00082{letter-spacing:0.057600px;}
.ls28_c00082{letter-spacing:0.071820px;}
.ls24_c00082{letter-spacing:0.093600px;}
.lsf_c00082{letter-spacing:0.104040px;}
.ls9_c00082{letter-spacing:0.115200px;}
.ls6_c00082{letter-spacing:0.144000px;}
.ls1f_c00082{letter-spacing:0.172800px;}
.ls10_c00082{letter-spacing:0.342144px;}
.ls2a_c00082{letter-spacing:0.346032px;}
.ls13_c00082{letter-spacing:0.350640px;}
.ls16_c00082{letter-spacing:0.357696px;}
.ls2b_c00082{letter-spacing:3.619728px;}
.ls29_c00082{letter-spacing:7.215516px;}
.lsa_c00082{letter-spacing:29.373120px;}
.ls7_c00082{letter-spacing:65.304000px;}
.ls1_c00082{letter-spacing:1227.240000px;}
.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;}
}
.ws2_c00082{word-spacing:-19.545624px;}
.ws1_c00082{word-spacing:-19.530000px;}
.ws3_c00082{word-spacing:-19.475316px;}
.ws4_c00082{word-spacing:-18.000000px;}
.ws8_c00082{word-spacing:-13.348944px;}
.wsa_c00082{word-spacing:-13.310640px;}
.ws9_c00082{word-spacing:-11.166336px;}
.wsb_c00082{word-spacing:-11.154672px;}
.ws5_c00082{word-spacing:-11.150784px;}
.ws7_c00082{word-spacing:-10.804752px;}
.ws6_c00082{word-spacing:-10.800864px;}
.ws0_c00082{word-spacing:-10.584756px;}
.ws32_c00082{word-spacing:-0.023940px;}
.ws30_c00082{word-spacing:-0.014364px;}
.ws2f_c00082{word-spacing:-0.004788px;}
.wsd_c00082{word-spacing:0.000000px;}
.ws31_c00082{word-spacing:0.004788px;}
.ws16_c00082{word-spacing:0.007200px;}
.ws15_c00082{word-spacing:0.014400px;}
.ws33_c00082{word-spacing:0.028728px;}
.wsc_c00082{word-spacing:0.042084px;}
.ws1f_c00082{word-spacing:0.144000px;}
.ws10_c00082{word-spacing:0.302400px;}
.wse_c00082{word-spacing:0.374400px;}
.wsf_c00082{word-spacing:0.475200px;}
.ws20_c00082{word-spacing:1.411200px;}
.ws21_c00082{word-spacing:1.576800px;}
.ws17_c00082{word-spacing:2.160000px;}
.ws18_c00082{word-spacing:2.210400px;}
.ws38_c00082{word-spacing:3.222324px;}
.ws37_c00082{word-spacing:3.246264px;}
.ws14_c00082{word-spacing:3.621600px;}
.ws13_c00082{word-spacing:3.636000px;}
.ws1d_c00082{word-spacing:4.665600px;}
.ws1e_c00082{word-spacing:4.737600px;}
.ws11_c00082{word-spacing:5.047200px;}
.ws12_c00082{word-spacing:5.126400px;}
.ws2c_c00082{word-spacing:6.112800px;}
.ws2b_c00082{word-spacing:6.199200px;}
.ws28_c00082{word-spacing:6.465600px;}
.ws24_c00082{word-spacing:6.501600px;}
.ws2a_c00082{word-spacing:6.552000px;}
.ws29_c00082{word-spacing:6.580800px;}
.ws26_c00082{word-spacing:6.789600px;}
.ws25_c00082{word-spacing:6.919200px;}
.ws35_c00082{word-spacing:7.186788px;}
.ws34_c00082{word-spacing:7.196364px;}
.ws36_c00082{word-spacing:7.225092px;}
.ws2e_c00082{word-spacing:7.236000px;}
.ws27_c00082{word-spacing:9.036000px;}
.ws1c_c00082{word-spacing:9.698400px;}
.ws1b_c00082{word-spacing:9.748800px;}
.ws23_c00082{word-spacing:13.615200px;}
.ws22_c00082{word-spacing:13.874400px;}
.ws1a_c00082{word-spacing:14.680800px;}
.ws19_c00082{word-spacing:14.774400px;}
.ws2d_c00082{word-spacing:24.854400px;}
._3_c00082{margin-left:-6.689484px;}
._4_c00082{margin-left:-3.248928px;}
._0_c00082{margin-left:-1.322640px;}
._1_c00082{width:1.137600px;}
._2_c00082{width:7.205940px;}
.fc0_c00082{color:rgb(0,0,0);}
.fs6_c00082{font-size:38.880000px;}
.fs3_c00082{font-size:42.120000px;}
.fs5_c00082{font-size:47.880000px;}
.fs1_c00082{font-size:54.000000px;}
.fs0_c00082{font-size:60.120000px;}
.fs2_c00082{font-size:72.000000px;}
.fs4_c00082{font-size:78.120000px;}
.y0_c00082{bottom:0.000000px;}
.y3_c00082{bottom:57.450450px;}
.y25_c00082{bottom:109.199190px;}
.y24_c00082{bottom:123.064230px;}
.y23_c00082{bottom:141.334230px;}
.y22_c00082{bottom:159.607830px;}
.y21_c00082{bottom:177.969810px;}
.y20_c00082{bottom:196.236030px;}
.y1f_c00082{bottom:214.502250px;}
.y1e_c00082{bottom:232.864230px;}
.y1d_c00082{bottom:251.130450px;}
.y1c_c00082{bottom:266.340450px;}
.y1b_c00082{bottom:287.040450px;}
.y1a_c00082{bottom:307.740450px;}
.y19_c00082{bottom:352.380450px;}
.y18_c00082{bottom:386.760450px;}
.y17_c00082{bottom:430.230450px;}
.y16_c00082{bottom:464.610450px;}
.y15_c00082{bottom:499.080450px;}
.y14_c00082{bottom:533.460450px;}
.y13_c00082{bottom:567.930450px;}
.y12_c00082{bottom:612.930450px;}
.y11_c00082{bottom:675.660450px;}
.y10_c00082{bottom:710.040450px;}
.yf_c00082{bottom:744.510450px;}
.ye_c00082{bottom:778.890450px;}
.yd_c00082{bottom:813.360450px;}
.yc_c00082{bottom:856.740450px;}
.yb_c00082{bottom:891.210450px;}
.ya_c00082{bottom:925.590450px;}
.y9_c00082{bottom:960.060450px;}
.y8_c00082{bottom:994.440450px;}
.y7_c00082{bottom:1037.910450px;}
.y6_c00082{bottom:1072.290450px;}
.y5_c00082{bottom:1106.760450px;}
.y4_c00082{bottom:1141.140450px;}
.y2_c00082{bottom:1177.860450px;}
.y1_c00082{bottom:1196.850450px;}
.h9_c00082{height:47.988281px;}
.ha_c00082{height:49.937344px;}
.hb_c00082{height:49.942384px;}
.h1_c00082{height:50.315273px;}
.h2_c00082{height:56.320312px;}
.h5_c00082{height:60.257812px;}
.h4_c00082{height:65.130820px;}
.h7_c00082{height:65.131420px;}
.h3_c00082{height:72.160312px;}
.h6_c00082{height:75.093750px;}
.h8_c00082{height:81.476719px;}
.h0_c00082{height:1263.000000px;}
.w1_c00082{width:892.500000px;}
.w0_c00082{width:892.830000px;}
.x0_c00082{left:0.000000px;}
.x1_c00082{left:127.620000px;}
.x4_c00082{left:154.620000px;}
.x2_c00082{left:180.810000px;}
.x3_c00082{left:208.620000px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.v1_c00082{vertical-align:14.080000pt;}
.v2_c00082{vertical-align:26.560000pt;}
.ls19_c00082{letter-spacing:-0.134400pt;}
.ls22_c00082{letter-spacing:-0.048608pt;}
.ls1d_c00082{letter-spacing:-0.032000pt;}
.ls20_c00082{letter-spacing:-0.025600pt;}
.ls1e_c00082{letter-spacing:-0.019200pt;}
.ls1a_c00082{letter-spacing:-0.012800pt;}
.ls27_c00082{letter-spacing:-0.008512pt;}
.ls26_c00082{letter-spacing:-0.006912pt;}
.ls1c_c00082{letter-spacing:-0.006400pt;}
.ls25_c00082{letter-spacing:-0.003456pt;}
.ls18_c00082{letter-spacing:0.000000pt;}
.ls8_c00082{letter-spacing:0.006400pt;}
.ls17_c00082{letter-spacing:0.008512pt;}
.lse_c00082{letter-spacing:0.012768pt;}
.ls5_c00082{letter-spacing:0.012800pt;}
.lsb_c00082{letter-spacing:0.013888pt;}
.ls11_c00082{letter-spacing:0.017024pt;}
.ls4_c00082{letter-spacing:0.019200pt;}
.lsc_c00082{letter-spacing:0.021280pt;}
.ls14_c00082{letter-spacing:0.025536pt;}
.ls2_c00082{letter-spacing:0.025600pt;}
.lsd_c00082{letter-spacing:0.029792pt;}
.ls15_c00082{letter-spacing:0.034048pt;}
.ls12_c00082{letter-spacing:0.038304pt;}
.ls23_c00082{letter-spacing:0.038400pt;}
.ls0_c00082{letter-spacing:0.042752pt;}
.ls21_c00082{letter-spacing:0.044800pt;}
.ls3_c00082{letter-spacing:0.048672pt;}
.ls1b_c00082{letter-spacing:0.051200pt;}
.ls28_c00082{letter-spacing:0.063840pt;}
.ls24_c00082{letter-spacing:0.083200pt;}
.lsf_c00082{letter-spacing:0.092480pt;}
.ls9_c00082{letter-spacing:0.102400pt;}
.ls6_c00082{letter-spacing:0.128000pt;}
.ls1f_c00082{letter-spacing:0.153600pt;}
.ls10_c00082{letter-spacing:0.304128pt;}
.ls2a_c00082{letter-spacing:0.307584pt;}
.ls13_c00082{letter-spacing:0.311680pt;}
.ls16_c00082{letter-spacing:0.317952pt;}
.ls2b_c00082{letter-spacing:3.217536pt;}
.ls29_c00082{letter-spacing:6.413792pt;}
.lsa_c00082{letter-spacing:26.109440pt;}
.ls7_c00082{letter-spacing:58.048000pt;}
.ls1_c00082{letter-spacing:1090.880000pt;}
.ws2_c00082{word-spacing:-17.373888pt;}
.ws1_c00082{word-spacing:-17.360000pt;}
.ws3_c00082{word-spacing:-17.311392pt;}
.ws4_c00082{word-spacing:-16.000000pt;}
.ws8_c00082{word-spacing:-11.865728pt;}
.wsa_c00082{word-spacing:-11.831680pt;}
.ws9_c00082{word-spacing:-9.925632pt;}
.wsb_c00082{word-spacing:-9.915264pt;}
.ws5_c00082{word-spacing:-9.911808pt;}
.ws7_c00082{word-spacing:-9.604224pt;}
.ws6_c00082{word-spacing:-9.600768pt;}
.ws0_c00082{word-spacing:-9.408672pt;}
.ws32_c00082{word-spacing:-0.021280pt;}
.ws30_c00082{word-spacing:-0.012768pt;}
.ws2f_c00082{word-spacing:-0.004256pt;}
.wsd_c00082{word-spacing:0.000000pt;}
.ws31_c00082{word-spacing:0.004256pt;}
.ws16_c00082{word-spacing:0.006400pt;}
.ws15_c00082{word-spacing:0.012800pt;}
.ws33_c00082{word-spacing:0.025536pt;}
.wsc_c00082{word-spacing:0.037408pt;}
.ws1f_c00082{word-spacing:0.128000pt;}
.ws10_c00082{word-spacing:0.268800pt;}
.wse_c00082{word-spacing:0.332800pt;}
.wsf_c00082{word-spacing:0.422400pt;}
.ws20_c00082{word-spacing:1.254400pt;}
.ws21_c00082{word-spacing:1.401600pt;}
.ws17_c00082{word-spacing:1.920000pt;}
.ws18_c00082{word-spacing:1.964800pt;}
.ws38_c00082{word-spacing:2.864288pt;}
.ws37_c00082{word-spacing:2.885568pt;}
.ws14_c00082{word-spacing:3.219200pt;}
.ws13_c00082{word-spacing:3.232000pt;}
.ws1d_c00082{word-spacing:4.147200pt;}
.ws1e_c00082{word-spacing:4.211200pt;}
.ws11_c00082{word-spacing:4.486400pt;}
.ws12_c00082{word-spacing:4.556800pt;}
.ws2c_c00082{word-spacing:5.433600pt;}
.ws2b_c00082{word-spacing:5.510400pt;}
.ws28_c00082{word-spacing:5.747200pt;}
.ws24_c00082{word-spacing:5.779200pt;}
.ws2a_c00082{word-spacing:5.824000pt;}
.ws29_c00082{word-spacing:5.849600pt;}
.ws26_c00082{word-spacing:6.035200pt;}
.ws25_c00082{word-spacing:6.150400pt;}
.ws35_c00082{word-spacing:6.388256pt;}
.ws34_c00082{word-spacing:6.396768pt;}
.ws36_c00082{word-spacing:6.422304pt;}
.ws2e_c00082{word-spacing:6.432000pt;}
.ws27_c00082{word-spacing:8.032000pt;}
.ws1c_c00082{word-spacing:8.620800pt;}
.ws1b_c00082{word-spacing:8.665600pt;}
.ws23_c00082{word-spacing:12.102400pt;}
.ws22_c00082{word-spacing:12.332800pt;}
.ws1a_c00082{word-spacing:13.049600pt;}
.ws19_c00082{word-spacing:13.132800pt;}
.ws2d_c00082{word-spacing:22.092800pt;}
._3_c00082{margin-left:-5.946208pt;}
._4_c00082{margin-left:-2.887936pt;}
._0_c00082{margin-left:-1.175680pt;}
._1_c00082{width:1.011200pt;}
._2_c00082{width:6.405280pt;}
.fs6_c00082{font-size:34.560000pt;}
.fs3_c00082{font-size:37.440000pt;}
.fs5_c00082{font-size:42.560000pt;}
.fs1_c00082{font-size:48.000000pt;}
.fs0_c00082{font-size:53.440000pt;}
.fs2_c00082{font-size:64.000000pt;}
.fs4_c00082{font-size:69.440000pt;}
.y0_c00082{bottom:0.000000pt;}
.y3_c00082{bottom:51.067067pt;}
.y25_c00082{bottom:97.065947pt;}
.y24_c00082{bottom:109.390427pt;}
.y23_c00082{bottom:125.630427pt;}
.y22_c00082{bottom:141.873627pt;}
.y21_c00082{bottom:158.195387pt;}
.y20_c00082{bottom:174.432027pt;}
.y1f_c00082{bottom:190.668667pt;}
.y1e_c00082{bottom:206.990427pt;}
.y1d_c00082{bottom:223.227067pt;}
.y1c_c00082{bottom:236.747067pt;}
.y1b_c00082{bottom:255.147067pt;}
.y1a_c00082{bottom:273.547067pt;}
.y19_c00082{bottom:313.227067pt;}
.y18_c00082{bottom:343.787067pt;}
.y17_c00082{bottom:382.427067pt;}
.y16_c00082{bottom:412.987067pt;}
.y15_c00082{bottom:443.627067pt;}
.y14_c00082{bottom:474.187067pt;}
.y13_c00082{bottom:504.827067pt;}
.y12_c00082{bottom:544.827067pt;}
.y11_c00082{bottom:600.587067pt;}
.y10_c00082{bottom:631.147067pt;}
.yf_c00082{bottom:661.787067pt;}
.ye_c00082{bottom:692.347067pt;}
.yd_c00082{bottom:722.987067pt;}
.yc_c00082{bottom:761.547067pt;}
.yb_c00082{bottom:792.187067pt;}
.ya_c00082{bottom:822.747067pt;}
.y9_c00082{bottom:853.387067pt;}
.y8_c00082{bottom:883.947067pt;}
.y7_c00082{bottom:922.587067pt;}
.y6_c00082{bottom:953.147067pt;}
.y5_c00082{bottom:983.787067pt;}
.y4_c00082{bottom:1014.347067pt;}
.y2_c00082{bottom:1046.987067pt;}
.y1_c00082{bottom:1063.867067pt;}
.h9_c00082{height:42.656250pt;}
.ha_c00082{height:44.388750pt;}
.hb_c00082{height:44.393230pt;}
.h1_c00082{height:44.724687pt;}
.h2_c00082{height:50.062500pt;}
.h5_c00082{height:53.562500pt;}
.h4_c00082{height:57.894063pt;}
.h7_c00082{height:57.894596pt;}
.h3_c00082{height:64.142500pt;}
.h6_c00082{height:66.750000pt;}
.h8_c00082{height:72.423750pt;}
.h0_c00082{height:1122.666667pt;}
.w1_c00082{width:793.333333pt;}
.w0_c00082{width:793.626667pt;}
.x0_c00082{left:0.000000pt;}
.x1_c00082{left:113.440000pt;}
.x4_c00082{left:137.440000pt;}
.x2_c00082{left:160.720000pt;}
.x3_c00082{left:185.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_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_5f357bb35d23e153c15ab633.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00083;src:url('chunks/assets/font_da0d5444a9c85da62b9fad01.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00083;src:url('chunks/assets/font_3229e0baf9c44edf4e300d75.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;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_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);}
.v3_c00083{vertical-align:-60.840000px;}
.v0_c00083{vertical-align:0.000000px;}
.v1_c00083{vertical-align:15.438960px;}
.v2_c00083{vertical-align:29.880000px;}
.ls25_c00083{letter-spacing:-0.336672px;}
.ls20_c00083{letter-spacing:-0.151200px;}
.ls22_c00083{letter-spacing:-0.132264px;}
.ls1e_c00083{letter-spacing:-0.048096px;}
.ls2b_c00083{letter-spacing:-0.043200px;}
.ls26_c00083{letter-spacing:-0.042084px;}
.ls24_c00083{letter-spacing:-0.036072px;}
.ls2a_c00083{letter-spacing:-0.036000px;}
.ls21_c00083{letter-spacing:-0.030060px;}
.ls28_c00083{letter-spacing:-0.021600px;}
.ls1d_c00083{letter-spacing:-0.018036px;}
.ls23_c00083{letter-spacing:-0.012024px;}
.ls32_c00083{letter-spacing:-0.011664px;}
.ls35_c00083{letter-spacing:-0.009576px;}
.ls2e_c00083{letter-spacing:-0.007776px;}
.ls2c_c00083{letter-spacing:-0.007200px;}
.ls2d_c00083{letter-spacing:-0.004788px;}
.ls30_c00083{letter-spacing:-0.003888px;}
.ls1f_c00083{letter-spacing:0.000000px;}
.ls18_c00083{letter-spacing:0.004788px;}
.ls8_c00083{letter-spacing:0.006012px;}
.ls10_c00083{letter-spacing:0.007200px;}
.lsd_c00083{letter-spacing:0.012024px;}
.ls14_c00083{letter-spacing:0.014364px;}
.ls12_c00083{letter-spacing:0.014400px;}
.lsa_c00083{letter-spacing:0.018036px;}
.ls29_c00083{letter-spacing:0.021600px;}
.ls1a_c00083{letter-spacing:0.023940px;}
.lsc_c00083{letter-spacing:0.024048px;}
.ls2_c00083{letter-spacing:0.030060px;}
.ls1b_c00083{letter-spacing:0.033516px;}
.ls0_c00083{letter-spacing:0.036072px;}
.ls1c_c00083{letter-spacing:0.038304px;}
.ls9_c00083{letter-spacing:0.042084px;}
.ls6_c00083{letter-spacing:0.048096px;}
.ls5_c00083{letter-spacing:0.054108px;}
.ls11_c00083{letter-spacing:0.054756px;}
.ls17_c00083{letter-spacing:0.057456px;}
.lse_c00083{letter-spacing:0.060120px;}
.ls15_c00083{letter-spacing:0.062244px;}
.ls4_c00083{letter-spacing:0.066132px;}
.ls16_c00083{letter-spacing:0.067032px;}
.lsb_c00083{letter-spacing:0.072144px;}
.ls3_c00083{letter-spacing:0.078156px;}
.ls7_c00083{letter-spacing:0.090180px;}
.ls1_c00083{letter-spacing:0.096192px;}
.ls19_c00083{letter-spacing:0.104040px;}
.lsf_c00083{letter-spacing:0.136080px;}
.ls27_c00083{letter-spacing:0.168336px;}
.ls34_c00083{letter-spacing:0.353808px;}
.ls33_c00083{letter-spacing:0.357696px;}
.ls31_c00083{letter-spacing:0.378252px;}
.ls2f_c00083{letter-spacing:7.579404px;}
.ls13_c00083{letter-spacing:90.000000px;}
.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;}
}
.ws5_c00083{word-spacing:-13.310640px;}
.ws4_c00083{word-spacing:-11.166336px;}
.ws6_c00083{word-spacing:-10.808640px;}
.ws3_c00083{word-spacing:-10.804752px;}
.ws2_c00083{word-spacing:-10.800864px;}
.ws1_c00083{word-spacing:-10.584756px;}
.ws0_c00083{word-spacing:-9.856080px;}
.ws1d_c00083{word-spacing:-0.342684px;}
.ws2c_c00083{word-spacing:-0.228456px;}
.ws4c_c00083{word-spacing:-0.019152px;}
.ws48_c00083{word-spacing:-0.014364px;}
.ws4a_c00083{word-spacing:-0.009576px;}
.ws3c_c00083{word-spacing:-0.007200px;}
.wsb_c00083{word-spacing:-0.006012px;}
.ws49_c00083{word-spacing:-0.004788px;}
.wsa_c00083{word-spacing:0.000000px;}
.ws39_c00083{word-spacing:0.007200px;}
.ws38_c00083{word-spacing:0.036000px;}
.ws7_c00083{word-spacing:0.054108px;}
.ws8_c00083{word-spacing:0.108216px;}
.ws17_c00083{word-spacing:0.120240px;}
.ws9_c00083{word-spacing:0.138276px;}
.ws1e_c00083{word-spacing:0.372744px;}
.ws1f_c00083{word-spacing:0.432864px;}
.ws15_c00083{word-spacing:0.486972px;}
.ws16_c00083{word-spacing:0.498996px;}
.ws43_c00083{word-spacing:0.670320px;}
.ws44_c00083{word-spacing:0.679896px;}
.ws28_c00083{word-spacing:0.739476px;}
.ws29_c00083{word-spacing:1.509012px;}
.ws2a_c00083{word-spacing:1.521036px;}
.ws23_c00083{word-spacing:2.224440px;}
.ws4b_c00083{word-spacing:2.504124px;}
.wsd_c00083{word-spacing:2.531052px;}
.wsc_c00083{word-spacing:2.579148px;}
.ws22_c00083{word-spacing:2.585160px;}
.ws2b_c00083{word-spacing:2.909808px;}
.ws1b_c00083{word-spacing:3.288564px;}
.ws31_c00083{word-spacing:3.636000px;}
.ws36_c00083{word-spacing:3.657600px;}
.ws35_c00083{word-spacing:3.708000px;}
.ws37_c00083{word-spacing:3.722400px;}
.ws30_c00083{word-spacing:3.736800px;}
.ws32_c00083{word-spacing:3.952800px;}
.ws20_c00083{word-spacing:3.997980px;}
.ws25_c00083{word-spacing:4.016016px;}
.ws24_c00083{word-spacing:4.046076px;}
.ws21_c00083{word-spacing:4.088160px;}
.ws19_c00083{word-spacing:4.406796px;}
.ws18_c00083{word-spacing:4.677336px;}
.ws1c_c00083{word-spacing:5.110200px;}
.ws2d_c00083{word-spacing:5.421600px;}
.ws27_c00083{word-spacing:6.517008px;}
.ws26_c00083{word-spacing:6.559092px;}
.ws41_c00083{word-spacing:7.517160px;}
.ws40_c00083{word-spacing:7.565040px;}
.ws42_c00083{word-spacing:7.584192px;}
.ws13_c00083{word-spacing:7.593156px;}
.ws3b_c00083{word-spacing:7.862400px;}
.ws3a_c00083{word-spacing:7.941600px;}
.ws33_c00083{word-spacing:8.632800px;}
.ws34_c00083{word-spacing:8.683200px;}
.ws1a_c00083{word-spacing:9.048060px;}
.ws10_c00083{word-spacing:9.462888px;}
.wse_c00083{word-spacing:9.480924px;}
.wsf_c00083{word-spacing:9.583128px;}
.ws14_c00083{word-spacing:10.839636px;}
.ws3d_c00083{word-spacing:11.181600px;}
.ws3f_c00083{word-spacing:11.851200px;}
.ws11_c00083{word-spacing:11.903760px;}
.ws3e_c00083{word-spacing:11.908800px;}
.ws12_c00083{word-spacing:11.987928px;}
.ws46_c00083{word-spacing:12.592440px;}
.ws45_c00083{word-spacing:12.611592px;}
.ws47_c00083{word-spacing:12.625956px;}
.ws2e_c00083{word-spacing:22.399200px;}
.ws2f_c00083{word-spacing:22.478400px;}
._3_c00083{margin-left:-7.442892px;}
._2_c00083{margin-left:-4.680000px;}
._0_c00083{margin-left:-1.142280px;}
._1_c00083{width:1.022040px;}
._4_c00083{width:12.696912px;}
.fc0_c00083{color:rgb(0,0,0);}
.fs3_c00083{font-size:38.880000px;}
.fs4_c00083{font-size:42.120000px;}
.fs5_c00083{font-size:47.880000px;}
.fs2_c00083{font-size:54.000000px;}
.fs0_c00083{font-size:60.120000px;}
.fs1_c00083{font-size:72.000000px;}
.y0_c00083{bottom:0.000000px;}
.y3_c00083{bottom:57.450450px;}
.y4_c00083{bottom:61.410450px;}
.y31_c00083{bottom:113.714850px;}
.y30_c00083{bottom:132.076830px;}
.y2f_c00083{bottom:145.842330px;}
.y2e_c00083{bottom:164.108550px;}
.y2d_c00083{bottom:182.470530px;}
.y2c_c00083{bottom:200.736750px;}
.y2b_c00083{bottom:219.002970px;}
.y2a_c00083{bottom:237.364950px;}
.y29_c00083{bottom:251.133690px;}
.y28_c00083{bottom:264.899190px;}
.y27_c00083{bottom:293.970450px;}
.y26_c00083{bottom:314.580450px;}
.y25_c00083{bottom:335.280450px;}
.y24_c00083{bottom:379.560450px;}
.y23_c00083{bottom:413.940450px;}
.y22_c00083{bottom:457.410450px;}
.y21_c00083{bottom:491.790450px;}
.y20_c00083{bottom:535.260450px;}
.y1f_c00083{bottom:569.640450px;}
.y1e_c00083{bottom:604.110450px;}
.y1d_c00083{bottom:638.490450px;}
.y1c_c00083{bottom:672.960450px;}
.y1b_c00083{bottom:707.340450px;}
.y1a_c00083{bottom:741.810450px;}
.y19_c00083{bottom:788.170710px;}
.y18_c00083{bottom:805.094490px;}
.y17_c00083{bottom:821.928090px;}
.y16_c00083{bottom:838.851870px;}
.y15_c00083{bottom:855.685470px;}
.y14_c00083{bottom:872.609250px;}
.y13_c00083{bottom:889.442850px;}
.y12_c00083{bottom:906.366630px;}
.y11_c00083{bottom:923.200230px;}
.y10_c00083{bottom:949.126980px;}
.yf_c00083{bottom:965.960580px;}
.ye_c00083{bottom:982.884360px;}
.yd_c00083{bottom:999.717960px;}
.yc_c00083{bottom:1016.641740px;}
.yb_c00083{bottom:1033.475340px;}
.ya_c00083{bottom:1050.399120px;}
.y9_c00083{bottom:1067.232720px;}
.y8_c00083{bottom:1084.156500px;}
.y7_c00083{bottom:1100.990100px;}
.y6_c00083{bottom:1117.913880px;}
.y5_c00083{bottom:1143.750450px;}
.y2_c00083{bottom:1173.810450px;}
.y1_c00083{bottom:1196.850450px;}
.h2_c00083{height:47.988281px;}
.h7_c00083{height:49.937344px;}
.h1_c00083{height:50.315273px;}
.h4_c00083{height:50.634233px;}
.h3_c00083{height:56.320312px;}
.h5_c00083{height:60.257812px;}
.h6_c00083{height:65.130820px;}
.h0_c00083{height:1263.000000px;}
.w1_c00083{width:892.500000px;}
.w0_c00083{width:892.830000px;}
.x0_c00083{left:0.000000px;}
.x2_c00083{left:127.620000px;}
.x1_c00083{left:145.440000px;}
.x5_c00083{left:154.620000px;}
.x6_c00083{left:180.727110px;}
.x4_c00083{left:439.020000px;}
.x3_c00083{left:446.490000px;}
@media print{
.v3_c00083{vertical-align:-54.080000pt;}
.v0_c00083{vertical-align:0.000000pt;}
.v1_c00083{vertical-align:13.723520pt;}
.v2_c00083{vertical-align:26.560000pt;}
.ls25_c00083{letter-spacing:-0.299264pt;}
.ls20_c00083{letter-spacing:-0.134400pt;}
.ls22_c00083{letter-spacing:-0.117568pt;}
.ls1e_c00083{letter-spacing:-0.042752pt;}
.ls2b_c00083{letter-spacing:-0.038400pt;}
.ls26_c00083{letter-spacing:-0.037408pt;}
.ls24_c00083{letter-spacing:-0.032064pt;}
.ls2a_c00083{letter-spacing:-0.032000pt;}
.ls21_c00083{letter-spacing:-0.026720pt;}
.ls28_c00083{letter-spacing:-0.019200pt;}
.ls1d_c00083{letter-spacing:-0.016032pt;}
.ls23_c00083{letter-spacing:-0.010688pt;}
.ls32_c00083{letter-spacing:-0.010368pt;}
.ls35_c00083{letter-spacing:-0.008512pt;}
.ls2e_c00083{letter-spacing:-0.006912pt;}
.ls2c_c00083{letter-spacing:-0.006400pt;}
.ls2d_c00083{letter-spacing:-0.004256pt;}
.ls30_c00083{letter-spacing:-0.003456pt;}
.ls1f_c00083{letter-spacing:0.000000pt;}
.ls18_c00083{letter-spacing:0.004256pt;}
.ls8_c00083{letter-spacing:0.005344pt;}
.ls10_c00083{letter-spacing:0.006400pt;}
.lsd_c00083{letter-spacing:0.010688pt;}
.ls14_c00083{letter-spacing:0.012768pt;}
.ls12_c00083{letter-spacing:0.012800pt;}
.lsa_c00083{letter-spacing:0.016032pt;}
.ls29_c00083{letter-spacing:0.019200pt;}
.ls1a_c00083{letter-spacing:0.021280pt;}
.lsc_c00083{letter-spacing:0.021376pt;}
.ls2_c00083{letter-spacing:0.026720pt;}
.ls1b_c00083{letter-spacing:0.029792pt;}
.ls0_c00083{letter-spacing:0.032064pt;}
.ls1c_c00083{letter-spacing:0.034048pt;}
.ls9_c00083{letter-spacing:0.037408pt;}
.ls6_c00083{letter-spacing:0.042752pt;}
.ls5_c00083{letter-spacing:0.048096pt;}
.ls11_c00083{letter-spacing:0.048672pt;}
.ls17_c00083{letter-spacing:0.051072pt;}
.lse_c00083{letter-spacing:0.053440pt;}
.ls15_c00083{letter-spacing:0.055328pt;}
.ls4_c00083{letter-spacing:0.058784pt;}
.ls16_c00083{letter-spacing:0.059584pt;}
.lsb_c00083{letter-spacing:0.064128pt;}
.ls3_c00083{letter-spacing:0.069472pt;}
.ls7_c00083{letter-spacing:0.080160pt;}
.ls1_c00083{letter-spacing:0.085504pt;}
.ls19_c00083{letter-spacing:0.092480pt;}
.lsf_c00083{letter-spacing:0.120960pt;}
.ls27_c00083{letter-spacing:0.149632pt;}
.ls34_c00083{letter-spacing:0.314496pt;}
.ls33_c00083{letter-spacing:0.317952pt;}
.ls31_c00083{letter-spacing:0.336224pt;}
.ls2f_c00083{letter-spacing:6.737248pt;}
.ls13_c00083{letter-spacing:80.000000pt;}
.ws5_c00083{word-spacing:-11.831680pt;}
.ws4_c00083{word-spacing:-9.925632pt;}
.ws6_c00083{word-spacing:-9.607680pt;}
.ws3_c00083{word-spacing:-9.604224pt;}
.ws2_c00083{word-spacing:-9.600768pt;}
.ws1_c00083{word-spacing:-9.408672pt;}
.ws0_c00083{word-spacing:-8.760960pt;}
.ws1d_c00083{word-spacing:-0.304608pt;}
.ws2c_c00083{word-spacing:-0.203072pt;}
.ws4c_c00083{word-spacing:-0.017024pt;}
.ws48_c00083{word-spacing:-0.012768pt;}
.ws4a_c00083{word-spacing:-0.008512pt;}
.ws3c_c00083{word-spacing:-0.006400pt;}
.wsb_c00083{word-spacing:-0.005344pt;}
.ws49_c00083{word-spacing:-0.004256pt;}
.wsa_c00083{word-spacing:0.000000pt;}
.ws39_c00083{word-spacing:0.006400pt;}
.ws38_c00083{word-spacing:0.032000pt;}
.ws7_c00083{word-spacing:0.048096pt;}
.ws8_c00083{word-spacing:0.096192pt;}
.ws17_c00083{word-spacing:0.106880pt;}
.ws9_c00083{word-spacing:0.122912pt;}
.ws1e_c00083{word-spacing:0.331328pt;}
.ws1f_c00083{word-spacing:0.384768pt;}
.ws15_c00083{word-spacing:0.432864pt;}
.ws16_c00083{word-spacing:0.443552pt;}
.ws43_c00083{word-spacing:0.595840pt;}
.ws44_c00083{word-spacing:0.604352pt;}
.ws28_c00083{word-spacing:0.657312pt;}
.ws29_c00083{word-spacing:1.341344pt;}
.ws2a_c00083{word-spacing:1.352032pt;}
.ws23_c00083{word-spacing:1.977280pt;}
.ws4b_c00083{word-spacing:2.225888pt;}
.wsd_c00083{word-spacing:2.249824pt;}
.wsc_c00083{word-spacing:2.292576pt;}
.ws22_c00083{word-spacing:2.297920pt;}
.ws2b_c00083{word-spacing:2.586496pt;}
.ws1b_c00083{word-spacing:2.923168pt;}
.ws31_c00083{word-spacing:3.232000pt;}
.ws36_c00083{word-spacing:3.251200pt;}
.ws35_c00083{word-spacing:3.296000pt;}
.ws37_c00083{word-spacing:3.308800pt;}
.ws30_c00083{word-spacing:3.321600pt;}
.ws32_c00083{word-spacing:3.513600pt;}
.ws20_c00083{word-spacing:3.553760pt;}
.ws25_c00083{word-spacing:3.569792pt;}
.ws24_c00083{word-spacing:3.596512pt;}
.ws21_c00083{word-spacing:3.633920pt;}
.ws19_c00083{word-spacing:3.917152pt;}
.ws18_c00083{word-spacing:4.157632pt;}
.ws1c_c00083{word-spacing:4.542400pt;}
.ws2d_c00083{word-spacing:4.819200pt;}
.ws27_c00083{word-spacing:5.792896pt;}
.ws26_c00083{word-spacing:5.830304pt;}
.ws41_c00083{word-spacing:6.681920pt;}
.ws40_c00083{word-spacing:6.724480pt;}
.ws42_c00083{word-spacing:6.741504pt;}
.ws13_c00083{word-spacing:6.749472pt;}
.ws3b_c00083{word-spacing:6.988800pt;}
.ws3a_c00083{word-spacing:7.059200pt;}
.ws33_c00083{word-spacing:7.673600pt;}
.ws34_c00083{word-spacing:7.718400pt;}
.ws1a_c00083{word-spacing:8.042720pt;}
.ws10_c00083{word-spacing:8.411456pt;}
.wse_c00083{word-spacing:8.427488pt;}
.wsf_c00083{word-spacing:8.518336pt;}
.ws14_c00083{word-spacing:9.635232pt;}
.ws3d_c00083{word-spacing:9.939200pt;}
.ws3f_c00083{word-spacing:10.534400pt;}
.ws11_c00083{word-spacing:10.581120pt;}
.ws3e_c00083{word-spacing:10.585600pt;}
.ws12_c00083{word-spacing:10.655936pt;}
.ws46_c00083{word-spacing:11.193280pt;}
.ws45_c00083{word-spacing:11.210304pt;}
.ws47_c00083{word-spacing:11.223072pt;}
.ws2e_c00083{word-spacing:19.910400pt;}
.ws2f_c00083{word-spacing:19.980800pt;}
._3_c00083{margin-left:-6.615904pt;}
._2_c00083{margin-left:-4.160000pt;}
._0_c00083{margin-left:-1.015360pt;}
._1_c00083{width:0.908480pt;}
._4_c00083{width:11.286144pt;}
.fs3_c00083{font-size:34.560000pt;}
.fs4_c00083{font-size:37.440000pt;}
.fs5_c00083{font-size:42.560000pt;}
.fs2_c00083{font-size:48.000000pt;}
.fs0_c00083{font-size:53.440000pt;}
.fs1_c00083{font-size:64.000000pt;}
.y0_c00083{bottom:0.000000pt;}
.y3_c00083{bottom:51.067067pt;}
.y4_c00083{bottom:54.587067pt;}
.y31_c00083{bottom:101.079867pt;}
.y30_c00083{bottom:117.401627pt;}
.y2f_c00083{bottom:129.637627pt;}
.y2e_c00083{bottom:145.874267pt;}
.y2d_c00083{bottom:162.196027pt;}
.y2c_c00083{bottom:178.432667pt;}
.y2b_c00083{bottom:194.669307pt;}
.y2a_c00083{bottom:210.991067pt;}
.y29_c00083{bottom:223.229947pt;}
.y28_c00083{bottom:235.465947pt;}
.y27_c00083{bottom:261.307067pt;}
.y26_c00083{bottom:279.627067pt;}
.y25_c00083{bottom:298.027067pt;}
.y24_c00083{bottom:337.387067pt;}
.y23_c00083{bottom:367.947067pt;}
.y22_c00083{bottom:406.587067pt;}
.y21_c00083{bottom:437.147067pt;}
.y20_c00083{bottom:475.787067pt;}
.y1f_c00083{bottom:506.347067pt;}
.y1e_c00083{bottom:536.987067pt;}
.y1d_c00083{bottom:567.547067pt;}
.y1c_c00083{bottom:598.187067pt;}
.y1b_c00083{bottom:628.747067pt;}
.y1a_c00083{bottom:659.387067pt;}
.y19_c00083{bottom:700.596187pt;}
.y18_c00083{bottom:715.639547pt;}
.y17_c00083{bottom:730.602747pt;}
.y16_c00083{bottom:745.646107pt;}
.y15_c00083{bottom:760.609307pt;}
.y14_c00083{bottom:775.652667pt;}
.y13_c00083{bottom:790.615867pt;}
.y12_c00083{bottom:805.659227pt;}
.y11_c00083{bottom:820.622427pt;}
.y10_c00083{bottom:843.668427pt;}
.yf_c00083{bottom:858.631627pt;}
.ye_c00083{bottom:873.674987pt;}
.yd_c00083{bottom:888.638187pt;}
.yc_c00083{bottom:903.681547pt;}
.yb_c00083{bottom:918.644747pt;}
.ya_c00083{bottom:933.688107pt;}
.y9_c00083{bottom:948.651307pt;}
.y8_c00083{bottom:963.694667pt;}
.y7_c00083{bottom:978.657867pt;}
.y6_c00083{bottom:993.701227pt;}
.y5_c00083{bottom:1016.667067pt;}
.y2_c00083{bottom:1043.387067pt;}
.y1_c00083{bottom:1063.867067pt;}
.h2_c00083{height:42.656250pt;}
.h7_c00083{height:44.388750pt;}
.h1_c00083{height:44.724687pt;}
.h4_c00083{height:45.008208pt;}
.h3_c00083{height:50.062500pt;}
.h5_c00083{height:53.562500pt;}
.h6_c00083{height:57.894063pt;}
.h0_c00083{height:1122.666667pt;}
.w1_c00083{width:793.333333pt;}
.w0_c00083{width:793.626667pt;}
.x0_c00083{left:0.000000pt;}
.x2_c00083{left:113.440000pt;}
.x1_c00083{left:129.280000pt;}
.x5_c00083{left:137.440000pt;}
.x6_c00083{left:160.646320pt;}
.x4_c00083{left:390.240000pt;}
.x3_c00083{left:396.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_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_9e48fdfe61b7dc22cdc15160.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.100098;font-style:normal;font-weight:normal;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_6d82d46ac9296b0e5f6455f2.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;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_c00084;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00084;src:url('chunks/assets/font_818cd42ab81d85e11a6f6695.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00084;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00084{font-family:ff5_c00084;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_c00084;src:url('chunks/assets/font_8873e6d68641b076a69f3ace.woff2')format("woff");}.ff6_c00084{font-family:ff6_c00084;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_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);}
.v3_c00084{vertical-align:-29.880000px;}
.v0_c00084{vertical-align:0.000000px;}
.v1_c00084{vertical-align:15.840000px;}
.v2_c00084{vertical-align:29.880000px;}
.ls11_c00084{letter-spacing:-0.151200px;}
.ls1c_c00084{letter-spacing:-0.093744px;}
.ls1b_c00084{letter-spacing:-0.054684px;}
.ls15_c00084{letter-spacing:-0.043200px;}
.ls19_c00084{letter-spacing:-0.036000px;}
.ls1f_c00084{letter-spacing:-0.033516px;}
.ls14_c00084{letter-spacing:-0.028800px;}
.ls1a_c00084{letter-spacing:-0.023436px;}
.ls13_c00084{letter-spacing:-0.021600px;}
.ls17_c00084{letter-spacing:-0.014400px;}
.ls22_c00084{letter-spacing:-0.009576px;}
.ls20_c00084{letter-spacing:-0.007776px;}
.ls12_c00084{letter-spacing:-0.007200px;}
.ls21_c00084{letter-spacing:-0.003888px;}
.ls10_c00084{letter-spacing:0.000000px;}
.ls3_c00084{letter-spacing:0.007200px;}
.lsd_c00084{letter-spacing:0.014364px;}
.ls4_c00084{letter-spacing:0.014400px;}
.ls1d_c00084{letter-spacing:0.019152px;}
.ls8_c00084{letter-spacing:0.021600px;}
.lsc_c00084{letter-spacing:0.023940px;}
.lsa_c00084{letter-spacing:0.028728px;}
.ls18_c00084{letter-spacing:0.036000px;}
.ls6_c00084{letter-spacing:0.039060px;}
.lsf_c00084{letter-spacing:0.043092px;}
.ls0_c00084{letter-spacing:0.048096px;}
.ls2_c00084{letter-spacing:0.054756px;}
.lsb_c00084{letter-spacing:0.076608px;}
.ls16_c00084{letter-spacing:0.093600px;}
.ls7_c00084{letter-spacing:0.093744px;}
.lse_c00084{letter-spacing:0.350640px;}
.ls1e_c00084{letter-spacing:0.353808px;}
.ls5_c00084{letter-spacing:29.373120px;}
.ls9_c00084{letter-spacing:64.683360px;}
.ls1_c00084{letter-spacing:1227.240000px;}
.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;}
}
.ws4_c00084{word-spacing:-19.623744px;}
.ws3_c00084{word-spacing:-19.569060px;}
.ws2_c00084{word-spacing:-19.530000px;}
.ws5_c00084{word-spacing:-19.506564px;}
.ws1_c00084{word-spacing:-17.956800px;}
.ws6_c00084{word-spacing:-13.310640px;}
.ws8_c00084{word-spacing:-11.162448px;}
.ws7_c00084{word-spacing:-10.808640px;}
.ws9_c00084{word-spacing:-10.800864px;}
.ws0_c00084{word-spacing:-10.584756px;}
.ws2a_c00084{word-spacing:-0.039060px;}
.ws33_c00084{word-spacing:-0.023940px;}
.ws2e_c00084{word-spacing:-0.009576px;}
.ws30_c00084{word-spacing:-0.004788px;}
.wsb_c00084{word-spacing:0.000000px;}
.ws31_c00084{word-spacing:0.004788px;}
.ws15_c00084{word-spacing:0.014400px;}
.ws29_c00084{word-spacing:0.021600px;}
.ws32_c00084{word-spacing:0.028728px;}
.ws1c_c00084{word-spacing:0.028800px;}
.wsa_c00084{word-spacing:0.042084px;}
.ws2f_c00084{word-spacing:0.052668px;}
.ws28_c00084{word-spacing:0.309600px;}
.ws27_c00084{word-spacing:0.374400px;}
.ws2d_c00084{word-spacing:1.080000px;}
.ws1a_c00084{word-spacing:1.353600px;}
.ws1b_c00084{word-spacing:1.432800px;}
.ws19_c00084{word-spacing:1.468800px;}
.ws1f_c00084{word-spacing:4.312800px;}
.ws20_c00084{word-spacing:4.377600px;}
.ws18_c00084{word-spacing:4.608000px;}
.ws16_c00084{word-spacing:4.622400px;}
.ws10_c00084{word-spacing:4.680000px;}
.ws17_c00084{word-spacing:4.708800px;}
.ws26_c00084{word-spacing:5.673600px;}
.wsd_c00084{word-spacing:5.745600px;}
.wsc_c00084{word-spacing:5.767200px;}
.ws22_c00084{word-spacing:6.487200px;}
.ws21_c00084{word-spacing:6.573600px;}
.ws23_c00084{word-spacing:7.185600px;}
.ws25_c00084{word-spacing:7.243200px;}
.ws24_c00084{word-spacing:7.264800px;}
.ws2c_c00084{word-spacing:9.770400px;}
.ws2b_c00084{word-spacing:9.842400px;}
.ws12_c00084{word-spacing:10.072800px;}
.ws11_c00084{word-spacing:10.123200px;}
.ws14_c00084{word-spacing:20.073600px;}
.ws13_c00084{word-spacing:20.188800px;}
.wse_c00084{word-spacing:22.672800px;}
.wsf_c00084{word-spacing:22.759200px;}
.ws1e_c00084{word-spacing:39.924000px;}
.ws1d_c00084{word-spacing:39.952800px;}
._0_c00084{margin-left:-1.322640px;}
._1_c00084{width:1.051200px;}
.fc0_c00084{color:rgb(0,0,0);}
.fs6_c00084{font-size:38.880000px;}
.fs3_c00084{font-size:42.120000px;}
.fs5_c00084{font-size:47.880000px;}
.fs1_c00084{font-size:54.000000px;}
.fs0_c00084{font-size:60.120000px;}
.fs2_c00084{font-size:72.000000px;}
.fs4_c00084{font-size:78.120000px;}
.y0_c00084{bottom:0.000000px;}
.y3_c00084{bottom:57.450450px;}
.y22_c00084{bottom:113.702250px;}
.y21_c00084{bottom:132.064230px;}
.y20_c00084{bottom:150.332400px;}
.y1f_c00084{bottom:168.598620px;}
.y1e_c00084{bottom:186.960600px;}
.y1d_c00084{bottom:202.170450px;}
.y1c_c00084{bottom:222.870450px;}
.y1b_c00084{bottom:243.570450px;}
.y1a_c00084{bottom:279.120450px;}
.y19_c00084{bottom:313.500450px;}
.y18_c00084{bottom:358.500600px;}
.y17_c00084{bottom:421.230450px;}
.y16_c00084{bottom:455.610450px;}
.y15_c00084{bottom:490.080450px;}
.y14_c00084{bottom:533.460450px;}
.y13_c00084{bottom:567.930600px;}
.y12_c00084{bottom:602.310600px;}
.y11_c00084{bottom:636.780600px;}
.y10_c00084{bottom:671.160600px;}
.yf_c00084{bottom:714.630600px;}
.ye_c00084{bottom:749.010600px;}
.yd_c00084{bottom:783.480600px;}
.yc_c00084{bottom:817.860600px;}
.yb_c00084{bottom:862.950450px;}
.ya_c00084{bottom:925.590450px;}
.y9_c00084{bottom:960.060450px;}
.y8_c00084{bottom:994.440450px;}
.y7_c00084{bottom:1028.910450px;}
.y6_c00084{bottom:1072.290450px;}
.y5_c00084{bottom:1106.760450px;}
.y4_c00084{bottom:1141.140450px;}
.y2_c00084{bottom:1177.860450px;}
.y1_c00084{bottom:1196.850450px;}
.h8_c00084{height:47.988281px;}
.h9_c00084{height:49.937344px;}
.h1_c00084{height:50.315273px;}
.h2_c00084{height:56.320312px;}
.h5_c00084{height:60.257812px;}
.h7_c00084{height:65.130220px;}
.h4_c00084{height:65.130820px;}
.h3_c00084{height:72.160312px;}
.h6_c00084{height:81.476719px;}
.h0_c00084{height:1263.000000px;}
.w1_c00084{width:892.500000px;}
.w0_c00084{width:892.830000px;}
.x0_c00084{left:0.000000px;}
.x1_c00084{left:127.620000px;}
.x2_c00084{left:180.720000px;}
@media print{
.v3_c00084{vertical-align:-26.560000pt;}
.v0_c00084{vertical-align:0.000000pt;}
.v1_c00084{vertical-align:14.080000pt;}
.v2_c00084{vertical-align:26.560000pt;}
.ls11_c00084{letter-spacing:-0.134400pt;}
.ls1c_c00084{letter-spacing:-0.083328pt;}
.ls1b_c00084{letter-spacing:-0.048608pt;}
.ls15_c00084{letter-spacing:-0.038400pt;}
.ls19_c00084{letter-spacing:-0.032000pt;}
.ls1f_c00084{letter-spacing:-0.029792pt;}
.ls14_c00084{letter-spacing:-0.025600pt;}
.ls1a_c00084{letter-spacing:-0.020832pt;}
.ls13_c00084{letter-spacing:-0.019200pt;}
.ls17_c00084{letter-spacing:-0.012800pt;}
.ls22_c00084{letter-spacing:-0.008512pt;}
.ls20_c00084{letter-spacing:-0.006912pt;}
.ls12_c00084{letter-spacing:-0.006400pt;}
.ls21_c00084{letter-spacing:-0.003456pt;}
.ls10_c00084{letter-spacing:0.000000pt;}
.ls3_c00084{letter-spacing:0.006400pt;}
.lsd_c00084{letter-spacing:0.012768pt;}
.ls4_c00084{letter-spacing:0.012800pt;}
.ls1d_c00084{letter-spacing:0.017024pt;}
.ls8_c00084{letter-spacing:0.019200pt;}
.lsc_c00084{letter-spacing:0.021280pt;}
.lsa_c00084{letter-spacing:0.025536pt;}
.ls18_c00084{letter-spacing:0.032000pt;}
.ls6_c00084{letter-spacing:0.034720pt;}
.lsf_c00084{letter-spacing:0.038304pt;}
.ls0_c00084{letter-spacing:0.042752pt;}
.ls2_c00084{letter-spacing:0.048672pt;}
.lsb_c00084{letter-spacing:0.068096pt;}
.ls16_c00084{letter-spacing:0.083200pt;}
.ls7_c00084{letter-spacing:0.083328pt;}
.lse_c00084{letter-spacing:0.311680pt;}
.ls1e_c00084{letter-spacing:0.314496pt;}
.ls5_c00084{letter-spacing:26.109440pt;}
.ls9_c00084{letter-spacing:57.496320pt;}
.ls1_c00084{letter-spacing:1090.880000pt;}
.ws4_c00084{word-spacing:-17.443328pt;}
.ws3_c00084{word-spacing:-17.394720pt;}
.ws2_c00084{word-spacing:-17.360000pt;}
.ws5_c00084{word-spacing:-17.339168pt;}
.ws1_c00084{word-spacing:-15.961600pt;}
.ws6_c00084{word-spacing:-11.831680pt;}
.ws8_c00084{word-spacing:-9.922176pt;}
.ws7_c00084{word-spacing:-9.607680pt;}
.ws9_c00084{word-spacing:-9.600768pt;}
.ws0_c00084{word-spacing:-9.408672pt;}
.ws2a_c00084{word-spacing:-0.034720pt;}
.ws33_c00084{word-spacing:-0.021280pt;}
.ws2e_c00084{word-spacing:-0.008512pt;}
.ws30_c00084{word-spacing:-0.004256pt;}
.wsb_c00084{word-spacing:0.000000pt;}
.ws31_c00084{word-spacing:0.004256pt;}
.ws15_c00084{word-spacing:0.012800pt;}
.ws29_c00084{word-spacing:0.019200pt;}
.ws32_c00084{word-spacing:0.025536pt;}
.ws1c_c00084{word-spacing:0.025600pt;}
.wsa_c00084{word-spacing:0.037408pt;}
.ws2f_c00084{word-spacing:0.046816pt;}
.ws28_c00084{word-spacing:0.275200pt;}
.ws27_c00084{word-spacing:0.332800pt;}
.ws2d_c00084{word-spacing:0.960000pt;}
.ws1a_c00084{word-spacing:1.203200pt;}
.ws1b_c00084{word-spacing:1.273600pt;}
.ws19_c00084{word-spacing:1.305600pt;}
.ws1f_c00084{word-spacing:3.833600pt;}
.ws20_c00084{word-spacing:3.891200pt;}
.ws18_c00084{word-spacing:4.096000pt;}
.ws16_c00084{word-spacing:4.108800pt;}
.ws10_c00084{word-spacing:4.160000pt;}
.ws17_c00084{word-spacing:4.185600pt;}
.ws26_c00084{word-spacing:5.043200pt;}
.wsd_c00084{word-spacing:5.107200pt;}
.wsc_c00084{word-spacing:5.126400pt;}
.ws22_c00084{word-spacing:5.766400pt;}
.ws21_c00084{word-spacing:5.843200pt;}
.ws23_c00084{word-spacing:6.387200pt;}
.ws25_c00084{word-spacing:6.438400pt;}
.ws24_c00084{word-spacing:6.457600pt;}
.ws2c_c00084{word-spacing:8.684800pt;}
.ws2b_c00084{word-spacing:8.748800pt;}
.ws12_c00084{word-spacing:8.953600pt;}
.ws11_c00084{word-spacing:8.998400pt;}
.ws14_c00084{word-spacing:17.843200pt;}
.ws13_c00084{word-spacing:17.945600pt;}
.wse_c00084{word-spacing:20.153600pt;}
.wsf_c00084{word-spacing:20.230400pt;}
.ws1e_c00084{word-spacing:35.488000pt;}
.ws1d_c00084{word-spacing:35.513600pt;}
._0_c00084{margin-left:-1.175680pt;}
._1_c00084{width:0.934400pt;}
.fs6_c00084{font-size:34.560000pt;}
.fs3_c00084{font-size:37.440000pt;}
.fs5_c00084{font-size:42.560000pt;}
.fs1_c00084{font-size:48.000000pt;}
.fs0_c00084{font-size:53.440000pt;}
.fs2_c00084{font-size:64.000000pt;}
.fs4_c00084{font-size:69.440000pt;}
.y0_c00084{bottom:0.000000pt;}
.y3_c00084{bottom:51.067067pt;}
.y22_c00084{bottom:101.068667pt;}
.y21_c00084{bottom:117.390427pt;}
.y20_c00084{bottom:133.628800pt;}
.y1f_c00084{bottom:149.865440pt;}
.y1e_c00084{bottom:166.187200pt;}
.y1d_c00084{bottom:179.707067pt;}
.y1c_c00084{bottom:198.107067pt;}
.y1b_c00084{bottom:216.507067pt;}
.y1a_c00084{bottom:248.107067pt;}
.y19_c00084{bottom:278.667067pt;}
.y18_c00084{bottom:318.667200pt;}
.y17_c00084{bottom:374.427067pt;}
.y16_c00084{bottom:404.987067pt;}
.y15_c00084{bottom:435.627067pt;}
.y14_c00084{bottom:474.187067pt;}
.y13_c00084{bottom:504.827200pt;}
.y12_c00084{bottom:535.387200pt;}
.y11_c00084{bottom:566.027200pt;}
.y10_c00084{bottom:596.587200pt;}
.yf_c00084{bottom:635.227200pt;}
.ye_c00084{bottom:665.787200pt;}
.yd_c00084{bottom:696.427200pt;}
.yc_c00084{bottom:726.987200pt;}
.yb_c00084{bottom:767.067067pt;}
.ya_c00084{bottom:822.747067pt;}
.y9_c00084{bottom:853.387067pt;}
.y8_c00084{bottom:883.947067pt;}
.y7_c00084{bottom:914.587067pt;}
.y6_c00084{bottom:953.147067pt;}
.y5_c00084{bottom:983.787067pt;}
.y4_c00084{bottom:1014.347067pt;}
.y2_c00084{bottom:1046.987067pt;}
.y1_c00084{bottom:1063.867067pt;}
.h8_c00084{height:42.656250pt;}
.h9_c00084{height:44.388750pt;}
.h1_c00084{height:44.724687pt;}
.h2_c00084{height:50.062500pt;}
.h5_c00084{height:53.562500pt;}
.h7_c00084{height:57.893529pt;}
.h4_c00084{height:57.894063pt;}
.h3_c00084{height:64.142500pt;}
.h6_c00084{height:72.423750pt;}
.h0_c00084{height:1122.666667pt;}
.w1_c00084{width:793.333333pt;}
.w0_c00084{width:793.626667pt;}
.x0_c00084{left:0.000000pt;}
.x1_c00084{left:113.440000pt;}
.x2_c00084{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_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_a9dd6e365fab3efe17b6e2e9.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00085;src:url('chunks/assets/font_50cc03f90c2f8d08e3f8c90a.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00085;src:url('chunks/assets/font_6d4ef7beeea5d640e9f70ce6.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00085;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00085{font-family:ff5_c00085;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_c00085;src:url('chunks/assets/font_fc421e6e3e5f4f83e7d54aca.woff2')format("woff");}.ff6_c00085{font-family:ff6_c00085;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_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;}
.v1_c00085{vertical-align:29.880000px;}
.ls13_c00085{letter-spacing:-0.151200px;}
.ls11_c00085{letter-spacing:-0.048096px;}
.ls18_c00085{letter-spacing:-0.043200px;}
.ls14_c00085{letter-spacing:-0.036000px;}
.ls1d_c00085{letter-spacing:-0.031248px;}
.ls1e_c00085{letter-spacing:-0.028800px;}
.ls19_c00085{letter-spacing:-0.021600px;}
.ls10_c00085{letter-spacing:-0.018036px;}
.ls15_c00085{letter-spacing:-0.014400px;}
.ls20_c00085{letter-spacing:-0.011664px;}
.ls1c_c00085{letter-spacing:-0.007812px;}
.ls16_c00085{letter-spacing:-0.007200px;}
.ls1f_c00085{letter-spacing:-0.003888px;}
.ls12_c00085{letter-spacing:0.000000px;}
.ls7_c00085{letter-spacing:0.007200px;}
.ls8_c00085{letter-spacing:0.014364px;}
.ls6_c00085{letter-spacing:0.014400px;}
.ls21_c00085{letter-spacing:0.019152px;}
.ls17_c00085{letter-spacing:0.021600px;}
.lse_c00085{letter-spacing:0.023940px;}
.lsb_c00085{letter-spacing:0.028728px;}
.ls5_c00085{letter-spacing:0.028800px;}
.ls0_c00085{letter-spacing:0.036072px;}
.lsa_c00085{letter-spacing:0.038304px;}
.ls1_c00085{letter-spacing:0.054756px;}
.lsf_c00085{letter-spacing:0.057456px;}
.lsc_c00085{letter-spacing:0.062244px;}
.ls1a_c00085{letter-spacing:0.093600px;}
.lsd_c00085{letter-spacing:0.114912px;}
.ls3_c00085{letter-spacing:0.144000px;}
.ls9_c00085{letter-spacing:0.378720px;}
.ls1b_c00085{letter-spacing:11.160000px;}
.ls2_c00085{letter-spacing:58.902480px;}
.ls4_c00085{letter-spacing:65.304000px;}
.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:-19.522188px;}
.ws1_c00085{word-spacing:-18.000000px;}
.ws3_c00085{word-spacing:-10.796976px;}
.ws0_c00085{word-spacing:-10.584756px;}
.ws17_c00085{word-spacing:-0.062496px;}
.ws32_c00085{word-spacing:-0.038304px;}
.ws31_c00085{word-spacing:-0.019152px;}
.ws34_c00085{word-spacing:-0.014364px;}
.ws1a_c00085{word-spacing:-0.007200px;}
.ws30_c00085{word-spacing:-0.004788px;}
.ws7_c00085{word-spacing:0.000000px;}
.ws16_c00085{word-spacing:0.007200px;}
.ws4_c00085{word-spacing:0.054108px;}
.ws5_c00085{word-spacing:0.108216px;}
.ws6_c00085{word-spacing:0.138276px;}
.ws11_c00085{word-spacing:0.201600px;}
.ws2e_c00085{word-spacing:0.339948px;}
.ws2f_c00085{word-spacing:0.354312px;}
.ws1f_c00085{word-spacing:1.159200px;}
.ws20_c00085{word-spacing:1.231200px;}
.ws33_c00085{word-spacing:1.426824px;}
.ws27_c00085{word-spacing:1.792800px;}
.ws26_c00085{word-spacing:1.929600px;}
.ws9_c00085{word-spacing:2.160000px;}
.ws8_c00085{word-spacing:2.340000px;}
.wsf_c00085{word-spacing:2.476800px;}
.ws10_c00085{word-spacing:2.520000px;}
.ws2d_c00085{word-spacing:3.140928px;}
.ws1b_c00085{word-spacing:3.153600px;}
.ws2c_c00085{word-spacing:3.193596px;}
.ws2a_c00085{word-spacing:3.217536px;}
.ws2b_c00085{word-spacing:3.227112px;}
.ws28_c00085{word-spacing:3.241476px;}
.wse_c00085{word-spacing:3.247200px;}
.ws1c_c00085{word-spacing:3.254400px;}
.ws29_c00085{word-spacing:3.600288px;}
.ws13_c00085{word-spacing:5.040000px;}
.wsb_c00085{word-spacing:5.407200px;}
.wsa_c00085{word-spacing:5.414400px;}
.ws14_c00085{word-spacing:5.767200px;}
.ws24_c00085{word-spacing:5.781600px;}
.ws15_c00085{word-spacing:5.875200px;}
.ws23_c00085{word-spacing:6.472800px;}
.ws22_c00085{word-spacing:6.825600px;}
.ws25_c00085{word-spacing:6.854400px;}
.ws21_c00085{word-spacing:6.876000px;}
.ws18_c00085{word-spacing:7.567200px;}
.ws19_c00085{word-spacing:7.624800px;}
.ws12_c00085{word-spacing:11.224800px;}
.wsd_c00085{word-spacing:17.618400px;}
.wsc_c00085{word-spacing:17.647200px;}
.ws1e_c00085{word-spacing:19.389600px;}
.ws1d_c00085{word-spacing:19.418400px;}
._3_c00085{margin-left:-12.240000px;}
._2_c00085{margin-left:-11.160000px;}
._0_c00085{margin-left:-1.142280px;}
._1_c00085{width:1.116000px;}
._4_c00085{width:3.598524px;}
.fc0_c00085{color:rgb(0,0,0);}
.fs6_c00085{font-size:38.880000px;}
.fs3_c00085{font-size:42.120000px;}
.fs5_c00085{font-size:47.880000px;}
.fs2_c00085{font-size:54.000000px;}
.fs0_c00085{font-size:60.120000px;}
.fs1_c00085{font-size:72.000000px;}
.fs4_c00085{font-size:78.120000px;}
.y0_c00085{bottom:0.000000px;}
.y3_c00085{bottom:57.450450px;}
.y4_c00085{bottom:61.410450px;}
.y26_c00085{bottom:113.716290px;}
.y25_c00085{bottom:132.078270px;}
.y24_c00085{bottom:150.344490px;}
.y23_c00085{bottom:164.109990px;}
.y22_c00085{bottom:182.471970px;}
.y21_c00085{bottom:200.738190px;}
.y20_c00085{bottom:214.503690px;}
.y1f_c00085{bottom:228.364950px;}
.y1e_c00085{bottom:242.130450px;}
.y1d_c00085{bottom:257.340450px;}
.y1c_c00085{bottom:278.040450px;}
.y1b_c00085{bottom:298.740450px;}
.y1a_c00085{bottom:352.380450px;}
.y19_c00085{bottom:386.760450px;}
.y18_c00085{bottom:421.230450px;}
.y17_c00085{bottom:455.610450px;}
.y16_c00085{bottom:499.080450px;}
.y15_c00085{bottom:533.460450px;}
.y14_c00085{bottom:567.930450px;}
.y13_c00085{bottom:602.310450px;}
.y12_c00085{bottom:636.780450px;}
.y11_c00085{bottom:680.160450px;}
.y10_c00085{bottom:714.630450px;}
.yf_c00085{bottom:759.630450px;}
.ye_c00085{bottom:822.360450px;}
.yd_c00085{bottom:856.740450px;}
.yc_c00085{bottom:891.210450px;}
.yb_c00085{bottom:925.590450px;}
.ya_c00085{bottom:969.060450px;}
.y9_c00085{bottom:1003.440450px;}
.y8_c00085{bottom:1037.910450px;}
.y7_c00085{bottom:1072.290450px;}
.y6_c00085{bottom:1106.760450px;}
.y5_c00085{bottom:1141.140450px;}
.y2_c00085{bottom:1173.810450px;}
.y1_c00085{bottom:1196.850450px;}
.h2_c00085{height:47.988281px;}
.h9_c00085{height:49.937344px;}
.h1_c00085{height:50.315273px;}
.h3_c00085{height:56.320312px;}
.h4_c00085{height:60.257812px;}
.h5_c00085{height:65.130820px;}
.h8_c00085{height:65.131420px;}
.h7_c00085{height:75.093750px;}
.h6_c00085{height:81.476719px;}
.h0_c00085{height:1263.000000px;}
.w1_c00085{width:892.500000px;}
.w0_c00085{width:892.830000px;}
.x0_c00085{left:0.000000px;}
.x2_c00085{left:127.620000px;}
.x1_c00085{left:145.440000px;}
.x6_c00085{left:154.620000px;}
.x5_c00085{left:180.810000px;}
.x7_c00085{left:207.000000px;}
.x4_c00085{left:439.020000px;}
.x3_c00085{left:446.490000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.v1_c00085{vertical-align:26.560000pt;}
.ls13_c00085{letter-spacing:-0.134400pt;}
.ls11_c00085{letter-spacing:-0.042752pt;}
.ls18_c00085{letter-spacing:-0.038400pt;}
.ls14_c00085{letter-spacing:-0.032000pt;}
.ls1d_c00085{letter-spacing:-0.027776pt;}
.ls1e_c00085{letter-spacing:-0.025600pt;}
.ls19_c00085{letter-spacing:-0.019200pt;}
.ls10_c00085{letter-spacing:-0.016032pt;}
.ls15_c00085{letter-spacing:-0.012800pt;}
.ls20_c00085{letter-spacing:-0.010368pt;}
.ls1c_c00085{letter-spacing:-0.006944pt;}
.ls16_c00085{letter-spacing:-0.006400pt;}
.ls1f_c00085{letter-spacing:-0.003456pt;}
.ls12_c00085{letter-spacing:0.000000pt;}
.ls7_c00085{letter-spacing:0.006400pt;}
.ls8_c00085{letter-spacing:0.012768pt;}
.ls6_c00085{letter-spacing:0.012800pt;}
.ls21_c00085{letter-spacing:0.017024pt;}
.ls17_c00085{letter-spacing:0.019200pt;}
.lse_c00085{letter-spacing:0.021280pt;}
.lsb_c00085{letter-spacing:0.025536pt;}
.ls5_c00085{letter-spacing:0.025600pt;}
.ls0_c00085{letter-spacing:0.032064pt;}
.lsa_c00085{letter-spacing:0.034048pt;}
.ls1_c00085{letter-spacing:0.048672pt;}
.lsf_c00085{letter-spacing:0.051072pt;}
.lsc_c00085{letter-spacing:0.055328pt;}
.ls1a_c00085{letter-spacing:0.083200pt;}
.lsd_c00085{letter-spacing:0.102144pt;}
.ls3_c00085{letter-spacing:0.128000pt;}
.ls9_c00085{letter-spacing:0.336640pt;}
.ls1b_c00085{letter-spacing:9.920000pt;}
.ls2_c00085{letter-spacing:52.357760pt;}
.ls4_c00085{letter-spacing:58.048000pt;}
.ws2_c00085{word-spacing:-17.353056pt;}
.ws1_c00085{word-spacing:-16.000000pt;}
.ws3_c00085{word-spacing:-9.597312pt;}
.ws0_c00085{word-spacing:-9.408672pt;}
.ws17_c00085{word-spacing:-0.055552pt;}
.ws32_c00085{word-spacing:-0.034048pt;}
.ws31_c00085{word-spacing:-0.017024pt;}
.ws34_c00085{word-spacing:-0.012768pt;}
.ws1a_c00085{word-spacing:-0.006400pt;}
.ws30_c00085{word-spacing:-0.004256pt;}
.ws7_c00085{word-spacing:0.000000pt;}
.ws16_c00085{word-spacing:0.006400pt;}
.ws4_c00085{word-spacing:0.048096pt;}
.ws5_c00085{word-spacing:0.096192pt;}
.ws6_c00085{word-spacing:0.122912pt;}
.ws11_c00085{word-spacing:0.179200pt;}
.ws2e_c00085{word-spacing:0.302176pt;}
.ws2f_c00085{word-spacing:0.314944pt;}
.ws1f_c00085{word-spacing:1.030400pt;}
.ws20_c00085{word-spacing:1.094400pt;}
.ws33_c00085{word-spacing:1.268288pt;}
.ws27_c00085{word-spacing:1.593600pt;}
.ws26_c00085{word-spacing:1.715200pt;}
.ws9_c00085{word-spacing:1.920000pt;}
.ws8_c00085{word-spacing:2.080000pt;}
.wsf_c00085{word-spacing:2.201600pt;}
.ws10_c00085{word-spacing:2.240000pt;}
.ws2d_c00085{word-spacing:2.791936pt;}
.ws1b_c00085{word-spacing:2.803200pt;}
.ws2c_c00085{word-spacing:2.838752pt;}
.ws2a_c00085{word-spacing:2.860032pt;}
.ws2b_c00085{word-spacing:2.868544pt;}
.ws28_c00085{word-spacing:2.881312pt;}
.wse_c00085{word-spacing:2.886400pt;}
.ws1c_c00085{word-spacing:2.892800pt;}
.ws29_c00085{word-spacing:3.200256pt;}
.ws13_c00085{word-spacing:4.480000pt;}
.wsb_c00085{word-spacing:4.806400pt;}
.wsa_c00085{word-spacing:4.812800pt;}
.ws14_c00085{word-spacing:5.126400pt;}
.ws24_c00085{word-spacing:5.139200pt;}
.ws15_c00085{word-spacing:5.222400pt;}
.ws23_c00085{word-spacing:5.753600pt;}
.ws22_c00085{word-spacing:6.067200pt;}
.ws25_c00085{word-spacing:6.092800pt;}
.ws21_c00085{word-spacing:6.112000pt;}
.ws18_c00085{word-spacing:6.726400pt;}
.ws19_c00085{word-spacing:6.777600pt;}
.ws12_c00085{word-spacing:9.977600pt;}
.wsd_c00085{word-spacing:15.660800pt;}
.wsc_c00085{word-spacing:15.686400pt;}
.ws1e_c00085{word-spacing:17.235200pt;}
.ws1d_c00085{word-spacing:17.260800pt;}
._3_c00085{margin-left:-10.880000pt;}
._2_c00085{margin-left:-9.920000pt;}
._0_c00085{margin-left:-1.015360pt;}
._1_c00085{width:0.992000pt;}
._4_c00085{width:3.198688pt;}
.fs6_c00085{font-size:34.560000pt;}
.fs3_c00085{font-size:37.440000pt;}
.fs5_c00085{font-size:42.560000pt;}
.fs2_c00085{font-size:48.000000pt;}
.fs0_c00085{font-size:53.440000pt;}
.fs1_c00085{font-size:64.000000pt;}
.fs4_c00085{font-size:69.440000pt;}
.y0_c00085{bottom:0.000000pt;}
.y3_c00085{bottom:51.067067pt;}
.y4_c00085{bottom:54.587067pt;}
.y26_c00085{bottom:101.081147pt;}
.y25_c00085{bottom:117.402907pt;}
.y24_c00085{bottom:133.639547pt;}
.y23_c00085{bottom:145.875547pt;}
.y22_c00085{bottom:162.197307pt;}
.y21_c00085{bottom:178.433947pt;}
.y20_c00085{bottom:190.669947pt;}
.y1f_c00085{bottom:202.991067pt;}
.y1e_c00085{bottom:215.227067pt;}
.y1d_c00085{bottom:228.747067pt;}
.y1c_c00085{bottom:247.147067pt;}
.y1b_c00085{bottom:265.547067pt;}
.y1a_c00085{bottom:313.227067pt;}
.y19_c00085{bottom:343.787067pt;}
.y18_c00085{bottom:374.427067pt;}
.y17_c00085{bottom:404.987067pt;}
.y16_c00085{bottom:443.627067pt;}
.y15_c00085{bottom:474.187067pt;}
.y14_c00085{bottom:504.827067pt;}
.y13_c00085{bottom:535.387067pt;}
.y12_c00085{bottom:566.027067pt;}
.y11_c00085{bottom:604.587067pt;}
.y10_c00085{bottom:635.227067pt;}
.yf_c00085{bottom:675.227067pt;}
.ye_c00085{bottom:730.987067pt;}
.yd_c00085{bottom:761.547067pt;}
.yc_c00085{bottom:792.187067pt;}
.yb_c00085{bottom:822.747067pt;}
.ya_c00085{bottom:861.387067pt;}
.y9_c00085{bottom:891.947067pt;}
.y8_c00085{bottom:922.587067pt;}
.y7_c00085{bottom:953.147067pt;}
.y6_c00085{bottom:983.787067pt;}
.y5_c00085{bottom:1014.347067pt;}
.y2_c00085{bottom:1043.387067pt;}
.y1_c00085{bottom:1063.867067pt;}
.h2_c00085{height:42.656250pt;}
.h9_c00085{height:44.388750pt;}
.h1_c00085{height:44.724687pt;}
.h3_c00085{height:50.062500pt;}
.h4_c00085{height:53.562500pt;}
.h5_c00085{height:57.894062pt;}
.h8_c00085{height:57.894596pt;}
.h7_c00085{height:66.750000pt;}
.h6_c00085{height:72.423750pt;}
.h0_c00085{height:1122.666667pt;}
.w1_c00085{width:793.333333pt;}
.w0_c00085{width:793.626667pt;}
.x0_c00085{left:0.000000pt;}
.x2_c00085{left:113.440000pt;}
.x1_c00085{left:129.280000pt;}
.x6_c00085{left:137.440000pt;}
.x5_c00085{left:160.720000pt;}
.x7_c00085{left:184.000000pt;}
.x4_c00085{left:390.240000pt;}
.x3_c00085{left:396.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_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_ee532105050bfe39c34cd421.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.100098;font-style:normal;font-weight:normal;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_f33b7a795edf178480189aa0.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;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_c00086;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00086;src:url('chunks/assets/font_d03e3181772e9a4b2571276d.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;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_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.v1_c00086{vertical-align:15.840000px;}
.v2_c00086{vertical-align:29.880000px;}
.ls16_c00086{letter-spacing:-0.151200px;}
.ls1a_c00086{letter-spacing:-0.036000px;}
.ls1c_c00086{letter-spacing:-0.028800px;}
.ls19_c00086{letter-spacing:-0.021600px;}
.ls18_c00086{letter-spacing:-0.014400px;}
.ls1e_c00086{letter-spacing:-0.011664px;}
.ls21_c00086{letter-spacing:-0.009576px;}
.ls17_c00086{letter-spacing:-0.007200px;}
.ls1f_c00086{letter-spacing:-0.004788px;}
.ls1d_c00086{letter-spacing:-0.003888px;}
.ls15_c00086{letter-spacing:0.000000px;}
.ls6_c00086{letter-spacing:0.007200px;}
.ls12_c00086{letter-spacing:0.009576px;}
.lsa_c00086{letter-spacing:0.014364px;}
.ls3_c00086{letter-spacing:0.014400px;}
.lsd_c00086{letter-spacing:0.019152px;}
.ls8_c00086{letter-spacing:0.021600px;}
.ls10_c00086{letter-spacing:0.023940px;}
.ls14_c00086{letter-spacing:0.033516px;}
.ls7_c00086{letter-spacing:0.036000px;}
.ls9_c00086{letter-spacing:0.038304px;}
.ls11_c00086{letter-spacing:0.047880px;}
.ls0_c00086{letter-spacing:0.048096px;}
.lsc_c00086{letter-spacing:0.052668px;}
.ls2_c00086{letter-spacing:0.054756px;}
.ls13_c00086{letter-spacing:0.057456px;}
.lsf_c00086{letter-spacing:0.067032px;}
.lse_c00086{letter-spacing:0.081396px;}
.ls1b_c00086{letter-spacing:0.093600px;}
.lsb_c00086{letter-spacing:0.104040px;}
.ls4_c00086{letter-spacing:0.144000px;}
.ls20_c00086{letter-spacing:0.153216px;}
.ls5_c00086{letter-spacing:65.304000px;}
.ls1_c00086{letter-spacing:1227.240000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00086{word-spacing:-18.014400px;}
.ws3_c00086{word-spacing:-13.368096px;}
.ws2_c00086{word-spacing:-10.796976px;}
.ws0_c00086{word-spacing:-10.584756px;}
.ws13_c00086{word-spacing:-0.093600px;}
.ws29_c00086{word-spacing:-0.047880px;}
.ws23_c00086{word-spacing:-0.019152px;}
.ws31_c00086{word-spacing:-0.014364px;}
.ws2b_c00086{word-spacing:-0.004788px;}
.ws5_c00086{word-spacing:0.000000px;}
.ws30_c00086{word-spacing:0.004788px;}
.ws12_c00086{word-spacing:0.007200px;}
.ws16_c00086{word-spacing:0.021600px;}
.ws2a_c00086{word-spacing:0.023940px;}
.ws2f_c00086{word-spacing:0.028728px;}
.ws4_c00086{word-spacing:0.042084px;}
.ws1d_c00086{word-spacing:0.064800px;}
.ws1f_c00086{word-spacing:0.079200px;}
.wsf_c00086{word-spacing:1.382400px;}
.ws9_c00086{word-spacing:1.454400px;}
.wse_c00086{word-spacing:1.476000px;}
.ws22_c00086{word-spacing:1.814400px;}
.ws21_c00086{word-spacing:1.828800px;}
.ws10_c00086{word-spacing:2.512800px;}
.wsd_c00086{word-spacing:2.872800px;}
.wsc_c00086{word-spacing:2.887200px;}
.ws17_c00086{word-spacing:3.564000px;}
.ws18_c00086{word-spacing:3.664800px;}
.ws1a_c00086{word-spacing:3.996000px;}
.ws7_c00086{word-spacing:4.204800px;}
.ws8_c00086{word-spacing:4.320000px;}
.ws6_c00086{word-spacing:5.040000px;}
.ws28_c00086{word-spacing:6.415920px;}
.ws26_c00086{word-spacing:6.444648px;}
.ws27_c00086{word-spacing:6.478164px;}
.wsa_c00086{word-spacing:6.480000px;}
.ws25_c00086{word-spacing:6.481296px;}
.ws24_c00086{word-spacing:6.482952px;}
.ws11_c00086{word-spacing:6.494400px;}
.wsb_c00086{word-spacing:6.573600px;}
.ws1e_c00086{word-spacing:7.200000px;}
.ws19_c00086{word-spacing:10.058400px;}
.ws20_c00086{word-spacing:10.461600px;}
.ws2d_c00086{word-spacing:11.850300px;}
.ws2c_c00086{word-spacing:11.883816px;}
.ws2e_c00086{word-spacing:11.888604px;}
.ws14_c00086{word-spacing:12.902400px;}
.ws15_c00086{word-spacing:12.960000px;}
.ws1b_c00086{word-spacing:20.858400px;}
.ws1c_c00086{word-spacing:20.973600px;}
._0_c00086{margin-left:-1.322640px;}
._1_c00086{width:1.224000px;}
.fc0_c00086{color:rgb(0,0,0);}
.fs5_c00086{font-size:38.880000px;}
.fs3_c00086{font-size:42.120000px;}
.fs4_c00086{font-size:47.880000px;}
.fs1_c00086{font-size:54.000000px;}
.fs0_c00086{font-size:60.120000px;}
.fs2_c00086{font-size:72.000000px;}
.y0_c00086{bottom:0.000000px;}
.y3_c00086{bottom:57.450450px;}
.y25_c00086{bottom:113.698470px;}
.y24_c00086{bottom:132.068730px;}
.y23_c00086{bottom:150.334950px;}
.y22_c00086{bottom:164.106750px;}
.y21_c00086{bottom:182.468730px;}
.y20_c00086{bottom:200.734950px;}
.y1f_c00086{bottom:214.502250px;}
.y1e_c00086{bottom:232.864230px;}
.y1d_c00086{bottom:251.130450px;}
.y1c_c00086{bottom:266.340450px;}
.y1b_c00086{bottom:287.040450px;}
.y1a_c00086{bottom:307.740450px;}
.y19_c00086{bottom:373.260450px;}
.y18_c00086{bottom:407.640450px;}
.y17_c00086{bottom:451.110450px;}
.y16_c00086{bottom:485.490450px;}
.y15_c00086{bottom:528.960450px;}
.y14_c00086{bottom:563.340450px;}
.y13_c00086{bottom:597.810450px;}
.y12_c00086{bottom:632.190450px;}
.y11_c00086{bottom:666.660450px;}
.y10_c00086{bottom:710.040450px;}
.yf_c00086{bottom:744.510450px;}
.ye_c00086{bottom:787.890450px;}
.yd_c00086{bottom:822.360450px;}
.yc_c00086{bottom:856.740450px;}
.yb_c00086{bottom:891.210450px;}
.ya_c00086{bottom:934.590450px;}
.y9_c00086{bottom:969.060450px;}
.y8_c00086{bottom:1003.440450px;}
.y7_c00086{bottom:1037.910450px;}
.y6_c00086{bottom:1072.290450px;}
.y5_c00086{bottom:1106.760450px;}
.y4_c00086{bottom:1141.140450px;}
.y2_c00086{bottom:1177.860450px;}
.y1_c00086{bottom:1196.850450px;}
.h8_c00086{height:47.988281px;}
.h9_c00086{height:49.937344px;}
.h1_c00086{height:50.315273px;}
.h2_c00086{height:56.320312px;}
.h4_c00086{height:60.257812px;}
.h5_c00086{height:65.130820px;}
.h7_c00086{height:65.131420px;}
.h3_c00086{height:72.160312px;}
.h6_c00086{height:75.093750px;}
.h0_c00086{height:1263.000000px;}
.w1_c00086{width:892.500000px;}
.w0_c00086{width:892.830000px;}
.x0_c00086{left:0.000000px;}
.x1_c00086{left:127.620000px;}
.x3_c00086{left:154.620000px;}
.x2_c00086{left:180.810000px;}
.x4_c00086{left:207.000000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.v1_c00086{vertical-align:14.080000pt;}
.v2_c00086{vertical-align:26.560000pt;}
.ls16_c00086{letter-spacing:-0.134400pt;}
.ls1a_c00086{letter-spacing:-0.032000pt;}
.ls1c_c00086{letter-spacing:-0.025600pt;}
.ls19_c00086{letter-spacing:-0.019200pt;}
.ls18_c00086{letter-spacing:-0.012800pt;}
.ls1e_c00086{letter-spacing:-0.010368pt;}
.ls21_c00086{letter-spacing:-0.008512pt;}
.ls17_c00086{letter-spacing:-0.006400pt;}
.ls1f_c00086{letter-spacing:-0.004256pt;}
.ls1d_c00086{letter-spacing:-0.003456pt;}
.ls15_c00086{letter-spacing:0.000000pt;}
.ls6_c00086{letter-spacing:0.006400pt;}
.ls12_c00086{letter-spacing:0.008512pt;}
.lsa_c00086{letter-spacing:0.012768pt;}
.ls3_c00086{letter-spacing:0.012800pt;}
.lsd_c00086{letter-spacing:0.017024pt;}
.ls8_c00086{letter-spacing:0.019200pt;}
.ls10_c00086{letter-spacing:0.021280pt;}
.ls14_c00086{letter-spacing:0.029792pt;}
.ls7_c00086{letter-spacing:0.032000pt;}
.ls9_c00086{letter-spacing:0.034048pt;}
.ls11_c00086{letter-spacing:0.042560pt;}
.ls0_c00086{letter-spacing:0.042752pt;}
.lsc_c00086{letter-spacing:0.046816pt;}
.ls2_c00086{letter-spacing:0.048672pt;}
.ls13_c00086{letter-spacing:0.051072pt;}
.lsf_c00086{letter-spacing:0.059584pt;}
.lse_c00086{letter-spacing:0.072352pt;}
.ls1b_c00086{letter-spacing:0.083200pt;}
.lsb_c00086{letter-spacing:0.092480pt;}
.ls4_c00086{letter-spacing:0.128000pt;}
.ls20_c00086{letter-spacing:0.136192pt;}
.ls5_c00086{letter-spacing:58.048000pt;}
.ls1_c00086{letter-spacing:1090.880000pt;}
.ws1_c00086{word-spacing:-16.012800pt;}
.ws3_c00086{word-spacing:-11.882752pt;}
.ws2_c00086{word-spacing:-9.597312pt;}
.ws0_c00086{word-spacing:-9.408672pt;}
.ws13_c00086{word-spacing:-0.083200pt;}
.ws29_c00086{word-spacing:-0.042560pt;}
.ws23_c00086{word-spacing:-0.017024pt;}
.ws31_c00086{word-spacing:-0.012768pt;}
.ws2b_c00086{word-spacing:-0.004256pt;}
.ws5_c00086{word-spacing:0.000000pt;}
.ws30_c00086{word-spacing:0.004256pt;}
.ws12_c00086{word-spacing:0.006400pt;}
.ws16_c00086{word-spacing:0.019200pt;}
.ws2a_c00086{word-spacing:0.021280pt;}
.ws2f_c00086{word-spacing:0.025536pt;}
.ws4_c00086{word-spacing:0.037408pt;}
.ws1d_c00086{word-spacing:0.057600pt;}
.ws1f_c00086{word-spacing:0.070400pt;}
.wsf_c00086{word-spacing:1.228800pt;}
.ws9_c00086{word-spacing:1.292800pt;}
.wse_c00086{word-spacing:1.312000pt;}
.ws22_c00086{word-spacing:1.612800pt;}
.ws21_c00086{word-spacing:1.625600pt;}
.ws10_c00086{word-spacing:2.233600pt;}
.wsd_c00086{word-spacing:2.553600pt;}
.wsc_c00086{word-spacing:2.566400pt;}
.ws17_c00086{word-spacing:3.168000pt;}
.ws18_c00086{word-spacing:3.257600pt;}
.ws1a_c00086{word-spacing:3.552000pt;}
.ws7_c00086{word-spacing:3.737600pt;}
.ws8_c00086{word-spacing:3.840000pt;}
.ws6_c00086{word-spacing:4.480000pt;}
.ws28_c00086{word-spacing:5.703040pt;}
.ws26_c00086{word-spacing:5.728576pt;}
.ws27_c00086{word-spacing:5.758368pt;}
.wsa_c00086{word-spacing:5.760000pt;}
.ws25_c00086{word-spacing:5.761152pt;}
.ws24_c00086{word-spacing:5.762624pt;}
.ws11_c00086{word-spacing:5.772800pt;}
.wsb_c00086{word-spacing:5.843200pt;}
.ws1e_c00086{word-spacing:6.400000pt;}
.ws19_c00086{word-spacing:8.940800pt;}
.ws20_c00086{word-spacing:9.299200pt;}
.ws2d_c00086{word-spacing:10.533600pt;}
.ws2c_c00086{word-spacing:10.563392pt;}
.ws2e_c00086{word-spacing:10.567648pt;}
.ws14_c00086{word-spacing:11.468800pt;}
.ws15_c00086{word-spacing:11.520000pt;}
.ws1b_c00086{word-spacing:18.540800pt;}
.ws1c_c00086{word-spacing:18.643200pt;}
._0_c00086{margin-left:-1.175680pt;}
._1_c00086{width:1.088000pt;}
.fs5_c00086{font-size:34.560000pt;}
.fs3_c00086{font-size:37.440000pt;}
.fs4_c00086{font-size:42.560000pt;}
.fs1_c00086{font-size:48.000000pt;}
.fs0_c00086{font-size:53.440000pt;}
.fs2_c00086{font-size:64.000000pt;}
.y0_c00086{bottom:0.000000pt;}
.y3_c00086{bottom:51.067067pt;}
.y25_c00086{bottom:101.065307pt;}
.y24_c00086{bottom:117.394427pt;}
.y23_c00086{bottom:133.631067pt;}
.y22_c00086{bottom:145.872667pt;}
.y21_c00086{bottom:162.194427pt;}
.y20_c00086{bottom:178.431067pt;}
.y1f_c00086{bottom:190.668667pt;}
.y1e_c00086{bottom:206.990427pt;}
.y1d_c00086{bottom:223.227067pt;}
.y1c_c00086{bottom:236.747067pt;}
.y1b_c00086{bottom:255.147067pt;}
.y1a_c00086{bottom:273.547067pt;}
.y19_c00086{bottom:331.787067pt;}
.y18_c00086{bottom:362.347067pt;}
.y17_c00086{bottom:400.987067pt;}
.y16_c00086{bottom:431.547067pt;}
.y15_c00086{bottom:470.187067pt;}
.y14_c00086{bottom:500.747067pt;}
.y13_c00086{bottom:531.387067pt;}
.y12_c00086{bottom:561.947067pt;}
.y11_c00086{bottom:592.587067pt;}
.y10_c00086{bottom:631.147067pt;}
.yf_c00086{bottom:661.787067pt;}
.ye_c00086{bottom:700.347067pt;}
.yd_c00086{bottom:730.987067pt;}
.yc_c00086{bottom:761.547067pt;}
.yb_c00086{bottom:792.187067pt;}
.ya_c00086{bottom:830.747067pt;}
.y9_c00086{bottom:861.387067pt;}
.y8_c00086{bottom:891.947067pt;}
.y7_c00086{bottom:922.587067pt;}
.y6_c00086{bottom:953.147067pt;}
.y5_c00086{bottom:983.787067pt;}
.y4_c00086{bottom:1014.347067pt;}
.y2_c00086{bottom:1046.987067pt;}
.y1_c00086{bottom:1063.867067pt;}
.h8_c00086{height:42.656250pt;}
.h9_c00086{height:44.388750pt;}
.h1_c00086{height:44.724687pt;}
.h2_c00086{height:50.062500pt;}
.h4_c00086{height:53.562500pt;}
.h5_c00086{height:57.894063pt;}
.h7_c00086{height:57.894596pt;}
.h3_c00086{height:64.142500pt;}
.h6_c00086{height:66.750000pt;}
.h0_c00086{height:1122.666667pt;}
.w1_c00086{width:793.333333pt;}
.w0_c00086{width:793.626667pt;}
.x0_c00086{left:0.000000pt;}
.x1_c00086{left:113.440000pt;}
.x3_c00086{left:137.440000pt;}
.x2_c00086{left:160.720000pt;}
.x4_c00086{left:184.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_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_6e389bb753a16c39bbcab049.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00087;src:url('chunks/assets/font_7d4744d413565bc63f03f189.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;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_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);}
.v2_c00087{vertical-align:-29.880000px;}
.v0_c00087{vertical-align:0.000000px;}
.v1_c00087{vertical-align:29.880000px;}
.ls10_c00087{letter-spacing:-0.151200px;}
.ls14_c00087{letter-spacing:-0.050400px;}
.lse_c00087{letter-spacing:-0.048096px;}
.ls12_c00087{letter-spacing:-0.043200px;}
.ls16_c00087{letter-spacing:-0.028800px;}
.ls13_c00087{letter-spacing:-0.021600px;}
.lsd_c00087{letter-spacing:-0.018036px;}
.ls15_c00087{letter-spacing:-0.014400px;}
.ls11_c00087{letter-spacing:-0.007200px;}
.lsf_c00087{letter-spacing:0.000000px;}
.ls6_c00087{letter-spacing:0.007200px;}
.ls2_c00087{letter-spacing:0.014400px;}
.lsb_c00087{letter-spacing:0.019152px;}
.ls9_c00087{letter-spacing:0.023940px;}
.ls8_c00087{letter-spacing:0.028728px;}
.ls4_c00087{letter-spacing:0.028800px;}
.lsc_c00087{letter-spacing:0.033516px;}
.ls5_c00087{letter-spacing:0.036000px;}
.ls0_c00087{letter-spacing:0.036072px;}
.lsa_c00087{letter-spacing:0.038304px;}
.ls3_c00087{letter-spacing:0.043200px;}
.ls7_c00087{letter-spacing:0.050400px;}
.ls1_c00087{letter-spacing:0.054756px;}
.ls17_c00087{letter-spacing:0.093600px;}
.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;}
}
.ws1_c00087{word-spacing:-17.956800px;}
.ws0_c00087{word-spacing:-10.584756px;}
.wsd_c00087{word-spacing:-0.028800px;}
.ws32_c00087{word-spacing:-0.019152px;}
.ws33_c00087{word-spacing:-0.014364px;}
.ws2e_c00087{word-spacing:-0.009576px;}
.wsf_c00087{word-spacing:-0.007200px;}
.ws2f_c00087{word-spacing:-0.004788px;}
.ws5_c00087{word-spacing:0.000000px;}
.ws25_c00087{word-spacing:0.021600px;}
.ws2_c00087{word-spacing:0.054108px;}
.ws3_c00087{word-spacing:0.108216px;}
.wse_c00087{word-spacing:0.129600px;}
.ws4_c00087{word-spacing:0.138276px;}
.ws1a_c00087{word-spacing:1.749600px;}
.ws2a_c00087{word-spacing:1.792800px;}
.ws19_c00087{word-spacing:1.850400px;}
.ws8_c00087{word-spacing:2.476800px;}
.wsa_c00087{word-spacing:2.505600px;}
.wsb_c00087{word-spacing:2.541600px;}
.ws9_c00087{word-spacing:2.563200px;}
.wsc_c00087{word-spacing:2.570400px;}
.ws16_c00087{word-spacing:3.211200px;}
.ws15_c00087{word-spacing:3.268800px;}
.ws31_c00087{word-spacing:3.581424px;}
.ws30_c00087{word-spacing:3.595788px;}
.ws2b_c00087{word-spacing:3.628800px;}
.ws18_c00087{word-spacing:3.924000px;}
.ws17_c00087{word-spacing:3.974400px;}
.ws26_c00087{word-spacing:5.407200px;}
.ws27_c00087{word-spacing:5.457600px;}
.ws7_c00087{word-spacing:5.745600px;}
.ws6_c00087{word-spacing:5.796000px;}
.ws14_c00087{word-spacing:6.170400px;}
.ws13_c00087{word-spacing:6.242400px;}
.ws21_c00087{word-spacing:6.400800px;}
.ws22_c00087{word-spacing:6.444000px;}
.ws12_c00087{word-spacing:7.156800px;}
.ws11_c00087{word-spacing:7.214400px;}
.ws1e_c00087{word-spacing:7.876800px;}
.ws1d_c00087{word-spacing:7.984800px;}
.ws1c_c00087{word-spacing:8.640000px;}
.ws1b_c00087{word-spacing:8.647200px;}
.ws2c_c00087{word-spacing:10.123200px;}
.ws2d_c00087{word-spacing:10.216800px;}
.ws20_c00087{word-spacing:10.807200px;}
.ws1f_c00087{word-spacing:10.814400px;}
.ws28_c00087{word-spacing:12.636000px;}
.ws29_c00087{word-spacing:12.650400px;}
.ws24_c00087{word-spacing:14.047200px;}
.ws23_c00087{word-spacing:14.104800px;}
.ws10_c00087{word-spacing:18.727200px;}
._0_c00087{margin-left:-1.142280px;}
._1_c00087{width:1.008000px;}
.fc0_c00087{color:rgb(0,0,0);}
.fs3_c00087{font-size:42.120000px;}
.fs4_c00087{font-size:47.880000px;}
.fs2_c00087{font-size:54.000000px;}
.fs0_c00087{font-size:60.120000px;}
.fs1_c00087{font-size:72.000000px;}
.y0_c00087{bottom:0.000000px;}
.y3_c00087{bottom:57.450450px;}
.y4_c00087{bottom:61.410450px;}
.y28_c00087{bottom:113.715930px;}
.y27_c00087{bottom:132.077910px;}
.y26_c00087{bottom:150.344130px;}
.y25_c00087{bottom:168.610350px;}
.y24_c00087{bottom:186.972330px;}
.y23_c00087{bottom:205.238550px;}
.y22_c00087{bottom:223.504770px;}
.y21_c00087{bottom:241.866750px;}
.y20_c00087{bottom:255.632250px;}
.y1f_c00087{bottom:273.898470px;}
.y1e_c00087{bottom:292.260450px;}
.y1d_c00087{bottom:307.470450px;}
.y1c_c00087{bottom:328.080450px;}
.y1b_c00087{bottom:348.780450px;}
.y1a_c00087{bottom:391.260450px;}
.y19_c00087{bottom:425.640450px;}
.y18_c00087{bottom:460.110450px;}
.y17_c00087{bottom:494.490450px;}
.y16_c00087{bottom:528.960450px;}
.y15_c00087{bottom:572.340450px;}
.y14_c00087{bottom:606.810450px;}
.y13_c00087{bottom:641.190600px;}
.y12_c00087{bottom:675.660600px;}
.y11_c00087{bottom:710.040600px;}
.y10_c00087{bottom:744.510600px;}
.yf_c00087{bottom:778.890600px;}
.ye_c00087{bottom:822.360450px;}
.yd_c00087{bottom:856.740450px;}
.yc_c00087{bottom:891.210450px;}
.yb_c00087{bottom:925.590450px;}
.ya_c00087{bottom:960.060450px;}
.y9_c00087{bottom:994.440450px;}
.y8_c00087{bottom:1037.910450px;}
.y7_c00087{bottom:1072.290450px;}
.y6_c00087{bottom:1106.760450px;}
.y5_c00087{bottom:1141.140450px;}
.y2_c00087{bottom:1173.810450px;}
.y1_c00087{bottom:1196.850450px;}
.h2_c00087{height:47.988281px;}
.h7_c00087{height:49.937344px;}
.h1_c00087{height:50.315273px;}
.h3_c00087{height:56.320312px;}
.h5_c00087{height:60.257812px;}
.h6_c00087{height:65.130220px;}
.h4_c00087{height:65.130820px;}
.h0_c00087{height:1263.000000px;}
.w1_c00087{width:892.500000px;}
.w0_c00087{width:892.830000px;}
.x0_c00087{left:0.000000px;}
.x2_c00087{left:127.620000px;}
.x1_c00087{left:145.440000px;}
.x7_c00087{left:154.612350px;}
.x5_c00087{left:180.810000px;}
.x6_c00087{left:207.000000px;}
.x4_c00087{left:439.020000px;}
.x3_c00087{left:446.490000px;}
@media print{
.v2_c00087{vertical-align:-26.560000pt;}
.v0_c00087{vertical-align:0.000000pt;}
.v1_c00087{vertical-align:26.560000pt;}
.ls10_c00087{letter-spacing:-0.134400pt;}
.ls14_c00087{letter-spacing:-0.044800pt;}
.lse_c00087{letter-spacing:-0.042752pt;}
.ls12_c00087{letter-spacing:-0.038400pt;}
.ls16_c00087{letter-spacing:-0.025600pt;}
.ls13_c00087{letter-spacing:-0.019200pt;}
.lsd_c00087{letter-spacing:-0.016032pt;}
.ls15_c00087{letter-spacing:-0.012800pt;}
.ls11_c00087{letter-spacing:-0.006400pt;}
.lsf_c00087{letter-spacing:0.000000pt;}
.ls6_c00087{letter-spacing:0.006400pt;}
.ls2_c00087{letter-spacing:0.012800pt;}
.lsb_c00087{letter-spacing:0.017024pt;}
.ls9_c00087{letter-spacing:0.021280pt;}
.ls8_c00087{letter-spacing:0.025536pt;}
.ls4_c00087{letter-spacing:0.025600pt;}
.lsc_c00087{letter-spacing:0.029792pt;}
.ls5_c00087{letter-spacing:0.032000pt;}
.ls0_c00087{letter-spacing:0.032064pt;}
.lsa_c00087{letter-spacing:0.034048pt;}
.ls3_c00087{letter-spacing:0.038400pt;}
.ls7_c00087{letter-spacing:0.044800pt;}
.ls1_c00087{letter-spacing:0.048672pt;}
.ls17_c00087{letter-spacing:0.083200pt;}
.ws1_c00087{word-spacing:-15.961600pt;}
.ws0_c00087{word-spacing:-9.408672pt;}
.wsd_c00087{word-spacing:-0.025600pt;}
.ws32_c00087{word-spacing:-0.017024pt;}
.ws33_c00087{word-spacing:-0.012768pt;}
.ws2e_c00087{word-spacing:-0.008512pt;}
.wsf_c00087{word-spacing:-0.006400pt;}
.ws2f_c00087{word-spacing:-0.004256pt;}
.ws5_c00087{word-spacing:0.000000pt;}
.ws25_c00087{word-spacing:0.019200pt;}
.ws2_c00087{word-spacing:0.048096pt;}
.ws3_c00087{word-spacing:0.096192pt;}
.wse_c00087{word-spacing:0.115200pt;}
.ws4_c00087{word-spacing:0.122912pt;}
.ws1a_c00087{word-spacing:1.555200pt;}
.ws2a_c00087{word-spacing:1.593600pt;}
.ws19_c00087{word-spacing:1.644800pt;}
.ws8_c00087{word-spacing:2.201600pt;}
.wsa_c00087{word-spacing:2.227200pt;}
.wsb_c00087{word-spacing:2.259200pt;}
.ws9_c00087{word-spacing:2.278400pt;}
.wsc_c00087{word-spacing:2.284800pt;}
.ws16_c00087{word-spacing:2.854400pt;}
.ws15_c00087{word-spacing:2.905600pt;}
.ws31_c00087{word-spacing:3.183488pt;}
.ws30_c00087{word-spacing:3.196256pt;}
.ws2b_c00087{word-spacing:3.225600pt;}
.ws18_c00087{word-spacing:3.488000pt;}
.ws17_c00087{word-spacing:3.532800pt;}
.ws26_c00087{word-spacing:4.806400pt;}
.ws27_c00087{word-spacing:4.851200pt;}
.ws7_c00087{word-spacing:5.107200pt;}
.ws6_c00087{word-spacing:5.152000pt;}
.ws14_c00087{word-spacing:5.484800pt;}
.ws13_c00087{word-spacing:5.548800pt;}
.ws21_c00087{word-spacing:5.689600pt;}
.ws22_c00087{word-spacing:5.728000pt;}
.ws12_c00087{word-spacing:6.361600pt;}
.ws11_c00087{word-spacing:6.412800pt;}
.ws1e_c00087{word-spacing:7.001600pt;}
.ws1d_c00087{word-spacing:7.097600pt;}
.ws1c_c00087{word-spacing:7.680000pt;}
.ws1b_c00087{word-spacing:7.686400pt;}
.ws2c_c00087{word-spacing:8.998400pt;}
.ws2d_c00087{word-spacing:9.081600pt;}
.ws20_c00087{word-spacing:9.606400pt;}
.ws1f_c00087{word-spacing:9.612800pt;}
.ws28_c00087{word-spacing:11.232000pt;}
.ws29_c00087{word-spacing:11.244800pt;}
.ws24_c00087{word-spacing:12.486400pt;}
.ws23_c00087{word-spacing:12.537600pt;}
.ws10_c00087{word-spacing:16.646400pt;}
._0_c00087{margin-left:-1.015360pt;}
._1_c00087{width:0.896000pt;}
.fs3_c00087{font-size:37.440000pt;}
.fs4_c00087{font-size:42.560000pt;}
.fs2_c00087{font-size:48.000000pt;}
.fs0_c00087{font-size:53.440000pt;}
.fs1_c00087{font-size:64.000000pt;}
.y0_c00087{bottom:0.000000pt;}
.y3_c00087{bottom:51.067067pt;}
.y4_c00087{bottom:54.587067pt;}
.y28_c00087{bottom:101.080827pt;}
.y27_c00087{bottom:117.402587pt;}
.y26_c00087{bottom:133.639227pt;}
.y25_c00087{bottom:149.875867pt;}
.y24_c00087{bottom:166.197627pt;}
.y23_c00087{bottom:182.434267pt;}
.y22_c00087{bottom:198.670907pt;}
.y21_c00087{bottom:214.992667pt;}
.y20_c00087{bottom:227.228667pt;}
.y1f_c00087{bottom:243.465307pt;}
.y1e_c00087{bottom:259.787067pt;}
.y1d_c00087{bottom:273.307067pt;}
.y1c_c00087{bottom:291.627067pt;}
.y1b_c00087{bottom:310.027067pt;}
.y1a_c00087{bottom:347.787067pt;}
.y19_c00087{bottom:378.347067pt;}
.y18_c00087{bottom:408.987067pt;}
.y17_c00087{bottom:439.547067pt;}
.y16_c00087{bottom:470.187067pt;}
.y15_c00087{bottom:508.747067pt;}
.y14_c00087{bottom:539.387067pt;}
.y13_c00087{bottom:569.947200pt;}
.y12_c00087{bottom:600.587200pt;}
.y11_c00087{bottom:631.147200pt;}
.y10_c00087{bottom:661.787200pt;}
.yf_c00087{bottom:692.347200pt;}
.ye_c00087{bottom:730.987067pt;}
.yd_c00087{bottom:761.547067pt;}
.yc_c00087{bottom:792.187067pt;}
.yb_c00087{bottom:822.747067pt;}
.ya_c00087{bottom:853.387067pt;}
.y9_c00087{bottom:883.947067pt;}
.y8_c00087{bottom:922.587067pt;}
.y7_c00087{bottom:953.147067pt;}
.y6_c00087{bottom:983.787067pt;}
.y5_c00087{bottom:1014.347067pt;}
.y2_c00087{bottom:1043.387067pt;}
.y1_c00087{bottom:1063.867067pt;}
.h2_c00087{height:42.656250pt;}
.h7_c00087{height:44.388750pt;}
.h1_c00087{height:44.724687pt;}
.h3_c00087{height:50.062500pt;}
.h5_c00087{height:53.562500pt;}
.h6_c00087{height:57.893529pt;}
.h4_c00087{height:57.894063pt;}
.h0_c00087{height:1122.666667pt;}
.w1_c00087{width:793.333333pt;}
.w0_c00087{width:793.626667pt;}
.x0_c00087{left:0.000000pt;}
.x2_c00087{left:113.440000pt;}
.x1_c00087{left:129.280000pt;}
.x7_c00087{left:137.433200pt;}
.x5_c00087{left:160.720000pt;}
.x6_c00087{left:184.000000pt;}
.x4_c00087{left:390.240000pt;}
.x3_c00087{left:396.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_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_d432b0eb81dc58bbabbe799c.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.100098;font-style:normal;font-weight:normal;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_52bd19fe1748c9b4f2923d8e.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;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_c00088;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00088;src:url('chunks/assets/font_dafbedca360bf2879c8bc0cb.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;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_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);}
.v3_c00088{vertical-align:-15.120600px;}
.v0_c00088{vertical-align:0.000000px;}
.v1_c00088{vertical-align:15.840000px;}
.v2_c00088{vertical-align:29.880000px;}
.ls18_c00088{letter-spacing:-0.151200px;}
.ls20_c00088{letter-spacing:-0.054108px;}
.ls1e_c00088{letter-spacing:-0.036000px;}
.ls1f_c00088{letter-spacing:-0.030060px;}
.ls1d_c00088{letter-spacing:-0.028800px;}
.ls1c_c00088{letter-spacing:-0.021600px;}
.ls19_c00088{letter-spacing:-0.014400px;}
.ls22_c00088{letter-spacing:-0.012024px;}
.ls27_c00088{letter-spacing:-0.009576px;}
.ls24_c00088{letter-spacing:-0.007776px;}
.ls1a_c00088{letter-spacing:-0.007200px;}
.ls21_c00088{letter-spacing:-0.006012px;}
.ls25_c00088{letter-spacing:-0.003888px;}
.ls17_c00088{letter-spacing:0.000000px;}
.ls2_c00088{letter-spacing:0.007200px;}
.ls14_c00088{letter-spacing:0.009360px;}
.ls11_c00088{letter-spacing:0.014364px;}
.ls4_c00088{letter-spacing:0.014400px;}
.lsf_c00088{letter-spacing:0.019152px;}
.lsd_c00088{letter-spacing:0.023940px;}
.ls10_c00088{letter-spacing:0.028728px;}
.lse_c00088{letter-spacing:0.033516px;}
.lsb_c00088{letter-spacing:0.042084px;}
.ls12_c00088{letter-spacing:0.043092px;}
.ls5_c00088{letter-spacing:0.043200px;}
.ls0_c00088{letter-spacing:0.048096px;}
.ls8_c00088{letter-spacing:0.054108px;}
.ls3_c00088{letter-spacing:0.054756px;}
.ls6_c00088{letter-spacing:0.057600px;}
.lsa_c00088{letter-spacing:0.060120px;}
.ls16_c00088{letter-spacing:0.062244px;}
.ls7_c00088{letter-spacing:0.066132px;}
.ls13_c00088{letter-spacing:0.071820px;}
.ls9_c00088{letter-spacing:0.084168px;}
.ls1b_c00088{letter-spacing:0.093600px;}
.lsc_c00088{letter-spacing:0.136080px;}
.ls23_c00088{letter-spacing:0.168336px;}
.ls26_c00088{letter-spacing:0.346032px;}
.ls15_c00088{letter-spacing:5.031360px;}
.ls1_c00088{letter-spacing:1227.240000px;}
.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;}
}
.ws2_c00088{word-spacing:-13.310640px;}
.ws4_c00088{word-spacing:-11.154672px;}
.ws3_c00088{word-spacing:-10.804752px;}
.ws0_c00088{word-spacing:-10.584756px;}
.ws1_c00088{word-spacing:-9.856080px;}
.wsa_c00088{word-spacing:-0.093600px;}
.ws23_c00088{word-spacing:-0.043200px;}
.ws31_c00088{word-spacing:-0.014364px;}
.ws32_c00088{word-spacing:-0.009576px;}
.ws30_c00088{word-spacing:-0.004788px;}
.ws6_c00088{word-spacing:0.000000px;}
.ws9_c00088{word-spacing:0.007200px;}
.ws2f_c00088{word-spacing:0.024048px;}
.ws3c_c00088{word-spacing:0.028728px;}
.ws21_c00088{word-spacing:0.036000px;}
.ws5_c00088{word-spacing:0.042084px;}
.ws2e_c00088{word-spacing:0.048096px;}
.ws24_c00088{word-spacing:0.120240px;}
.ws25_c00088{word-spacing:0.144288px;}
.ws2d_c00088{word-spacing:0.462924px;}
.ws17_c00088{word-spacing:0.741600px;}
.ws2c_c00088{word-spacing:0.745488px;}
.ws16_c00088{word-spacing:0.871200px;}
.ws11_c00088{word-spacing:2.131200px;}
.ws2b_c00088{word-spacing:2.188368px;}
.ws12_c00088{word-spacing:2.188800px;}
.ws2a_c00088{word-spacing:2.260512px;}
.ws29_c00088{word-spacing:2.885760px;}
.ws20_c00088{word-spacing:3.268800px;}
.ws28_c00088{word-spacing:3.276540px;}
.ws1f_c00088{word-spacing:3.297600px;}
.ws22_c00088{word-spacing:3.636000px;}
.wse_c00088{word-spacing:3.974400px;}
.ws38_c00088{word-spacing:4.993884px;}
.ws39_c00088{word-spacing:5.027400px;}
.ws37_c00088{word-spacing:5.032188px;}
.ws3a_c00088{word-spacing:5.352984px;}
.ws3b_c00088{word-spacing:5.372136px;}
.wsd_c00088{word-spacing:5.450400px;}
.ws27_c00088{word-spacing:6.144264px;}
.ws26_c00088{word-spacing:6.216408px;}
.ws8_c00088{word-spacing:6.832800px;}
.ws7_c00088{word-spacing:6.984000px;}
.ws13_c00088{word-spacing:7.185600px;}
.ws14_c00088{word-spacing:7.264800px;}
.ws1d_c00088{word-spacing:7.905600px;}
.ws1e_c00088{word-spacing:7.948800px;}
.wsc_c00088{word-spacing:10.137600px;}
.wsb_c00088{word-spacing:10.231200px;}
.ws1c_c00088{word-spacing:10.526400px;}
.ws1b_c00088{word-spacing:10.548000px;}
.ws36_c00088{word-spacing:10.744272px;}
.ws35_c00088{word-spacing:10.773000px;}
.ws33_c00088{word-spacing:10.801728px;}
.ws34_c00088{word-spacing:10.804752px;}
.ws10_c00088{word-spacing:11.894400px;}
.wsf_c00088{word-spacing:11.901600px;}
.ws1a_c00088{word-spacing:12.182400px;}
.ws19_c00088{word-spacing:12.196800px;}
.ws18_c00088{word-spacing:12.225600px;}
.ws15_c00088{word-spacing:21.268800px;}
._0_c00088{margin-left:-1.322640px;}
._1_c00088{width:1.108800px;}
._2_c00088{width:5.299488px;}
.fc0_c00088{color:rgb(0,0,0);}
.fs4_c00088{font-size:38.880000px;}
.fs3_c00088{font-size:42.120000px;}
.fs5_c00088{font-size:47.880000px;}
.fs1_c00088{font-size:54.000000px;}
.fs0_c00088{font-size:60.120000px;}
.fs2_c00088{font-size:72.000000px;}
.y0_c00088{bottom:0.000000px;}
.y3_c00088{bottom:57.450450px;}
.y29_c00088{bottom:113.705640px;}
.y28_c00088{bottom:132.067620px;}
.y27_c00088{bottom:150.333840px;}
.y26_c00088{bottom:164.099340px;}
.y25_c00088{bottom:177.964950px;}
.y24_c00088{bottom:191.736030px;}
.y23_c00088{bottom:210.002250px;}
.y22_c00088{bottom:228.364230px;}
.y21_c00088{bottom:246.630450px;}
.y20_c00088{bottom:261.840450px;}
.y1f_c00088{bottom:282.540450px;}
.y1e_c00088{bottom:303.240450px;}
.y1d_c00088{bottom:334.445340px;}
.y1c_c00088{bottom:351.278940px;}
.y1b_c00088{bottom:368.202720px;}
.y1a_c00088{bottom:385.036320px;}
.y19_c00088{bottom:401.960100px;}
.y18_c00088{bottom:418.793700px;}
.y17_c00088{bottom:444.720450px;}
.y16_c00088{bottom:485.490450px;}
.y15_c00088{bottom:519.960450px;}
.y14_c00088{bottom:563.340450px;}
.y13_c00088{bottom:597.810450px;}
.y12_c00088{bottom:632.190450px;}
.y11_c00088{bottom:675.660450px;}
.y10_c00088{bottom:710.040450px;}
.yf_c00088{bottom:744.510450px;}
.ye_c00088{bottom:778.890450px;}
.yd_c00088{bottom:813.360450px;}
.yc_c00088{bottom:847.740450px;}
.yb_c00088{bottom:891.210450px;}
.ya_c00088{bottom:925.590450px;}
.y9_c00088{bottom:960.060450px;}
.y8_c00088{bottom:994.440450px;}
.y7_c00088{bottom:1028.910450px;}
.y6_c00088{bottom:1063.290450px;}
.y5_c00088{bottom:1106.760450px;}
.y4_c00088{bottom:1141.140450px;}
.y2_c00088{bottom:1177.860450px;}
.y1_c00088{bottom:1196.850450px;}
.h7_c00088{height:47.988281px;}
.h8_c00088{height:49.937344px;}
.h1_c00088{height:50.315273px;}
.h6_c00088{height:50.415713px;}
.h2_c00088{height:56.320312px;}
.h4_c00088{height:60.257812px;}
.h5_c00088{height:65.130820px;}
.h3_c00088{height:72.160312px;}
.h0_c00088{height:1263.000000px;}
.w1_c00088{width:892.500000px;}
.w0_c00088{width:892.830000px;}
.x0_c00088{left:0.000000px;}
.x1_c00088{left:127.620000px;}
.x5_c00088{left:154.620810px;}
.x2_c00088{left:180.810000px;}
.x3_c00088{left:207.000000px;}
.x4_c00088{left:233.993880px;}
@media print{
.v3_c00088{vertical-align:-13.440533pt;}
.v0_c00088{vertical-align:0.000000pt;}
.v1_c00088{vertical-align:14.080000pt;}
.v2_c00088{vertical-align:26.560000pt;}
.ls18_c00088{letter-spacing:-0.134400pt;}
.ls20_c00088{letter-spacing:-0.048096pt;}
.ls1e_c00088{letter-spacing:-0.032000pt;}
.ls1f_c00088{letter-spacing:-0.026720pt;}
.ls1d_c00088{letter-spacing:-0.025600pt;}
.ls1c_c00088{letter-spacing:-0.019200pt;}
.ls19_c00088{letter-spacing:-0.012800pt;}
.ls22_c00088{letter-spacing:-0.010688pt;}
.ls27_c00088{letter-spacing:-0.008512pt;}
.ls24_c00088{letter-spacing:-0.006912pt;}
.ls1a_c00088{letter-spacing:-0.006400pt;}
.ls21_c00088{letter-spacing:-0.005344pt;}
.ls25_c00088{letter-spacing:-0.003456pt;}
.ls17_c00088{letter-spacing:0.000000pt;}
.ls2_c00088{letter-spacing:0.006400pt;}
.ls14_c00088{letter-spacing:0.008320pt;}
.ls11_c00088{letter-spacing:0.012768pt;}
.ls4_c00088{letter-spacing:0.012800pt;}
.lsf_c00088{letter-spacing:0.017024pt;}
.lsd_c00088{letter-spacing:0.021280pt;}
.ls10_c00088{letter-spacing:0.025536pt;}
.lse_c00088{letter-spacing:0.029792pt;}
.lsb_c00088{letter-spacing:0.037408pt;}
.ls12_c00088{letter-spacing:0.038304pt;}
.ls5_c00088{letter-spacing:0.038400pt;}
.ls0_c00088{letter-spacing:0.042752pt;}
.ls8_c00088{letter-spacing:0.048096pt;}
.ls3_c00088{letter-spacing:0.048672pt;}
.ls6_c00088{letter-spacing:0.051200pt;}
.lsa_c00088{letter-spacing:0.053440pt;}
.ls16_c00088{letter-spacing:0.055328pt;}
.ls7_c00088{letter-spacing:0.058784pt;}
.ls13_c00088{letter-spacing:0.063840pt;}
.ls9_c00088{letter-spacing:0.074816pt;}
.ls1b_c00088{letter-spacing:0.083200pt;}
.lsc_c00088{letter-spacing:0.120960pt;}
.ls23_c00088{letter-spacing:0.149632pt;}
.ls26_c00088{letter-spacing:0.307584pt;}
.ls15_c00088{letter-spacing:4.472320pt;}
.ls1_c00088{letter-spacing:1090.880000pt;}
.ws2_c00088{word-spacing:-11.831680pt;}
.ws4_c00088{word-spacing:-9.915264pt;}
.ws3_c00088{word-spacing:-9.604224pt;}
.ws0_c00088{word-spacing:-9.408672pt;}
.ws1_c00088{word-spacing:-8.760960pt;}
.wsa_c00088{word-spacing:-0.083200pt;}
.ws23_c00088{word-spacing:-0.038400pt;}
.ws31_c00088{word-spacing:-0.012768pt;}
.ws32_c00088{word-spacing:-0.008512pt;}
.ws30_c00088{word-spacing:-0.004256pt;}
.ws6_c00088{word-spacing:0.000000pt;}
.ws9_c00088{word-spacing:0.006400pt;}
.ws2f_c00088{word-spacing:0.021376pt;}
.ws3c_c00088{word-spacing:0.025536pt;}
.ws21_c00088{word-spacing:0.032000pt;}
.ws5_c00088{word-spacing:0.037408pt;}
.ws2e_c00088{word-spacing:0.042752pt;}
.ws24_c00088{word-spacing:0.106880pt;}
.ws25_c00088{word-spacing:0.128256pt;}
.ws2d_c00088{word-spacing:0.411488pt;}
.ws17_c00088{word-spacing:0.659200pt;}
.ws2c_c00088{word-spacing:0.662656pt;}
.ws16_c00088{word-spacing:0.774400pt;}
.ws11_c00088{word-spacing:1.894400pt;}
.ws2b_c00088{word-spacing:1.945216pt;}
.ws12_c00088{word-spacing:1.945600pt;}
.ws2a_c00088{word-spacing:2.009344pt;}
.ws29_c00088{word-spacing:2.565120pt;}
.ws20_c00088{word-spacing:2.905600pt;}
.ws28_c00088{word-spacing:2.912480pt;}
.ws1f_c00088{word-spacing:2.931200pt;}
.ws22_c00088{word-spacing:3.232000pt;}
.wse_c00088{word-spacing:3.532800pt;}
.ws38_c00088{word-spacing:4.439008pt;}
.ws39_c00088{word-spacing:4.468800pt;}
.ws37_c00088{word-spacing:4.473056pt;}
.ws3a_c00088{word-spacing:4.758208pt;}
.ws3b_c00088{word-spacing:4.775232pt;}
.wsd_c00088{word-spacing:4.844800pt;}
.ws27_c00088{word-spacing:5.461568pt;}
.ws26_c00088{word-spacing:5.525696pt;}
.ws8_c00088{word-spacing:6.073600pt;}
.ws7_c00088{word-spacing:6.208000pt;}
.ws13_c00088{word-spacing:6.387200pt;}
.ws14_c00088{word-spacing:6.457600pt;}
.ws1d_c00088{word-spacing:7.027200pt;}
.ws1e_c00088{word-spacing:7.065600pt;}
.wsc_c00088{word-spacing:9.011200pt;}
.wsb_c00088{word-spacing:9.094400pt;}
.ws1c_c00088{word-spacing:9.356800pt;}
.ws1b_c00088{word-spacing:9.376000pt;}
.ws36_c00088{word-spacing:9.550464pt;}
.ws35_c00088{word-spacing:9.576000pt;}
.ws33_c00088{word-spacing:9.601536pt;}
.ws34_c00088{word-spacing:9.604224pt;}
.ws10_c00088{word-spacing:10.572800pt;}
.wsf_c00088{word-spacing:10.579200pt;}
.ws1a_c00088{word-spacing:10.828800pt;}
.ws19_c00088{word-spacing:10.841600pt;}
.ws18_c00088{word-spacing:10.867200pt;}
.ws15_c00088{word-spacing:18.905600pt;}
._0_c00088{margin-left:-1.175680pt;}
._1_c00088{width:0.985600pt;}
._2_c00088{width:4.710656pt;}
.fs4_c00088{font-size:34.560000pt;}
.fs3_c00088{font-size:37.440000pt;}
.fs5_c00088{font-size:42.560000pt;}
.fs1_c00088{font-size:48.000000pt;}
.fs0_c00088{font-size:53.440000pt;}
.fs2_c00088{font-size:64.000000pt;}
.y0_c00088{bottom:0.000000pt;}
.y3_c00088{bottom:51.067067pt;}
.y29_c00088{bottom:101.071680pt;}
.y28_c00088{bottom:117.393440pt;}
.y27_c00088{bottom:133.630080pt;}
.y26_c00088{bottom:145.866080pt;}
.y25_c00088{bottom:158.191067pt;}
.y24_c00088{bottom:170.432027pt;}
.y23_c00088{bottom:186.668667pt;}
.y22_c00088{bottom:202.990427pt;}
.y21_c00088{bottom:219.227067pt;}
.y20_c00088{bottom:232.747067pt;}
.y1f_c00088{bottom:251.147067pt;}
.y1e_c00088{bottom:269.547067pt;}
.y1d_c00088{bottom:297.284747pt;}
.y1c_c00088{bottom:312.247947pt;}
.y1b_c00088{bottom:327.291307pt;}
.y1a_c00088{bottom:342.254507pt;}
.y19_c00088{bottom:357.297867pt;}
.y18_c00088{bottom:372.261067pt;}
.y17_c00088{bottom:395.307067pt;}
.y16_c00088{bottom:431.547067pt;}
.y15_c00088{bottom:462.187067pt;}
.y14_c00088{bottom:500.747067pt;}
.y13_c00088{bottom:531.387067pt;}
.y12_c00088{bottom:561.947067pt;}
.y11_c00088{bottom:600.587067pt;}
.y10_c00088{bottom:631.147067pt;}
.yf_c00088{bottom:661.787067pt;}
.ye_c00088{bottom:692.347067pt;}
.yd_c00088{bottom:722.987067pt;}
.yc_c00088{bottom:753.547067pt;}
.yb_c00088{bottom:792.187067pt;}
.ya_c00088{bottom:822.747067pt;}
.y9_c00088{bottom:853.387067pt;}
.y8_c00088{bottom:883.947067pt;}
.y7_c00088{bottom:914.587067pt;}
.y6_c00088{bottom:945.147067pt;}
.y5_c00088{bottom:983.787067pt;}
.y4_c00088{bottom:1014.347067pt;}
.y2_c00088{bottom:1046.987067pt;}
.y1_c00088{bottom:1063.867067pt;}
.h7_c00088{height:42.656250pt;}
.h8_c00088{height:44.388750pt;}
.h1_c00088{height:44.724687pt;}
.h6_c00088{height:44.813968pt;}
.h2_c00088{height:50.062500pt;}
.h4_c00088{height:53.562500pt;}
.h5_c00088{height:57.894063pt;}
.h3_c00088{height:64.142500pt;}
.h0_c00088{height:1122.666667pt;}
.w1_c00088{width:793.333333pt;}
.w0_c00088{width:793.626667pt;}
.x0_c00088{left:0.000000pt;}
.x1_c00088{left:113.440000pt;}
.x5_c00088{left:137.440720pt;}
.x2_c00088{left:160.720000pt;}
.x3_c00088{left:184.000000pt;}
.x4_c00088{left:207.994560pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1bd5712c8c5e9f1415738ba2.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00089;src:url('chunks/assets/font_de4acc4428ab311aa9617c0d.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00089;src:url('chunks/assets/font_14415b568a3c10c79882f3f8.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00089;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00089{font-family:ff5_c00089;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_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.v1_c00089{vertical-align:29.880000px;}
.lsc_c00089{letter-spacing:-0.151200px;}
.ls11_c00089{letter-spacing:-0.093744px;}
.lsa_c00089{letter-spacing:-0.048096px;}
.ls10_c00089{letter-spacing:-0.046872px;}
.ls17_c00089{letter-spacing:-0.043200px;}
.ls18_c00089{letter-spacing:-0.036000px;}
.lsd_c00089{letter-spacing:-0.028800px;}
.ls13_c00089{letter-spacing:-0.021600px;}
.ls9_c00089{letter-spacing:-0.018036px;}
.lse_c00089{letter-spacing:-0.014400px;}
.lsf_c00089{letter-spacing:-0.007812px;}
.ls12_c00089{letter-spacing:-0.007200px;}
.lsb_c00089{letter-spacing:0.000000px;}
.ls3_c00089{letter-spacing:0.007200px;}
.ls5_c00089{letter-spacing:0.014400px;}
.ls14_c00089{letter-spacing:0.021600px;}
.ls8_c00089{letter-spacing:0.023940px;}
.ls7_c00089{letter-spacing:0.028728px;}
.ls16_c00089{letter-spacing:0.036000px;}
.ls0_c00089{letter-spacing:0.036072px;}
.ls6_c00089{letter-spacing:0.038304px;}
.ls4_c00089{letter-spacing:0.054756px;}
.ls2_c00089{letter-spacing:0.070308px;}
.ls15_c00089{letter-spacing:0.093600px;}
.ls1_c00089{letter-spacing:58.902480px;}
.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:-19.600308px;}
.ws0_c00089{word-spacing:-19.522188px;}
.ws2_c00089{word-spacing:-19.483128px;}
.ws5_c00089{word-spacing:-17.985600px;}
.ws4_c00089{word-spacing:-17.978400px;}
.ws3_c00089{word-spacing:-10.584756px;}
.ws2b_c00089{word-spacing:-0.019152px;}
.ws2c_c00089{word-spacing:-0.009576px;}
.ws2d_c00089{word-spacing:-0.004788px;}
.ws9_c00089{word-spacing:0.000000px;}
.ws16_c00089{word-spacing:0.014400px;}
.ws2a_c00089{word-spacing:0.036000px;}
.ws6_c00089{word-spacing:0.054108px;}
.ws29_c00089{word-spacing:0.079200px;}
.wsc_c00089{word-spacing:0.086400px;}
.wse_c00089{word-spacing:0.108000px;}
.ws7_c00089{word-spacing:0.108216px;}
.ws8_c00089{word-spacing:0.138276px;}
.ws24_c00089{word-spacing:0.345600px;}
.ws23_c00089{word-spacing:0.360000px;}
.ws1a_c00089{word-spacing:0.727200px;}
.ws19_c00089{word-spacing:0.849600px;}
.ws18_c00089{word-spacing:1.764000px;}
.ws17_c00089{word-spacing:1.828800px;}
.ws1c_c00089{word-spacing:2.527200px;}
.ws14_c00089{word-spacing:7.538400px;}
.wsa_c00089{word-spacing:7.552800px;}
.ws13_c00089{word-spacing:7.567200px;}
.ws22_c00089{word-spacing:7.905600px;}
.ws21_c00089{word-spacing:7.927200px;}
.ws1f_c00089{word-spacing:9.014400px;}
.ws20_c00089{word-spacing:9.050400px;}
.ws12_c00089{word-spacing:9.640800px;}
.ws11_c00089{word-spacing:9.698400px;}
.ws26_c00089{word-spacing:10.389600px;}
.ws1b_c00089{word-spacing:10.447200px;}
.ws25_c00089{word-spacing:10.483200px;}
.ws1d_c00089{word-spacing:12.600000px;}
.ws1e_c00089{word-spacing:12.693600px;}
.wsf_c00089{word-spacing:13.327200px;}
.ws10_c00089{word-spacing:13.456800px;}
.wsd_c00089{word-spacing:14.371200px;}
.ws15_c00089{word-spacing:16.912800px;}
.wsb_c00089{word-spacing:20.548800px;}
.ws28_c00089{word-spacing:32.760000px;}
.ws27_c00089{word-spacing:32.767200px;}
._2_c00089{margin-left:-4.680000px;}
._0_c00089{margin-left:-1.142280px;}
._1_c00089{width:1.152000px;}
.fc0_c00089{color:rgb(0,0,0);}
.fs4_c00089{font-size:42.120000px;}
.fs5_c00089{font-size:47.880000px;}
.fs2_c00089{font-size:54.000000px;}
.fs0_c00089{font-size:60.120000px;}
.fs1_c00089{font-size:72.000000px;}
.fs3_c00089{font-size:78.120000px;}
.y0_c00089{bottom:0.000000px;}
.y3_c00089{bottom:57.450450px;}
.y4_c00089{bottom:61.410450px;}
.y26_c00089{bottom:113.713410px;}
.y25_c00089{bottom:132.075390px;}
.y24_c00089{bottom:150.341610px;}
.y23_c00089{bottom:168.607830px;}
.y22_c00089{bottom:186.969810px;}
.y21_c00089{bottom:205.236030px;}
.y20_c00089{bottom:223.502250px;}
.y1f_c00089{bottom:241.864230px;}
.y1e_c00089{bottom:260.130450px;}
.y1d_c00089{bottom:275.340450px;}
.y1c_c00089{bottom:296.040450px;}
.y1b_c00089{bottom:316.740450px;}
.y1a_c00089{bottom:361.380450px;}
.y19_c00089{bottom:395.760450px;}
.y18_c00089{bottom:430.230450px;}
.y17_c00089{bottom:464.610450px;}
.y16_c00089{bottom:499.080450px;}
.y15_c00089{bottom:533.460450px;}
.y14_c00089{bottom:567.930450px;}
.y13_c00089{bottom:602.310450px;}
.y12_c00089{bottom:636.780450px;}
.y11_c00089{bottom:671.160450px;}
.y10_c00089{bottom:705.630450px;}
.yf_c00089{bottom:749.010450px;}
.ye_c00089{bottom:783.480450px;}
.yd_c00089{bottom:817.860450px;}
.yc_c00089{bottom:852.330450px;}
.yb_c00089{bottom:886.710450px;}
.ya_c00089{bottom:930.180450px;}
.y9_c00089{bottom:964.560450px;}
.y8_c00089{bottom:1009.650450px;}
.y7_c00089{bottom:1072.290450px;}
.y6_c00089{bottom:1106.760450px;}
.y5_c00089{bottom:1141.140450px;}
.y2_c00089{bottom:1173.810450px;}
.y1_c00089{bottom:1196.850450px;}
.h2_c00089{height:47.988281px;}
.h8_c00089{height:49.937344px;}
.h1_c00089{height:50.315273px;}
.h3_c00089{height:56.320312px;}
.h4_c00089{height:60.257812px;}
.h6_c00089{height:65.130820px;}
.h7_c00089{height:65.131420px;}
.h5_c00089{height:81.476719px;}
.h0_c00089{height:1263.000000px;}
.w1_c00089{width:892.500000px;}
.w0_c00089{width:892.830000px;}
.x0_c00089{left:0.000000px;}
.x2_c00089{left:127.620000px;}
.x1_c00089{left:145.440000px;}
.x6_c00089{left:180.810000px;}
.x5_c00089{left:207.000000px;}
.x4_c00089{left:439.020000px;}
.x3_c00089{left:446.490000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.v1_c00089{vertical-align:26.560000pt;}
.lsc_c00089{letter-spacing:-0.134400pt;}
.ls11_c00089{letter-spacing:-0.083328pt;}
.lsa_c00089{letter-spacing:-0.042752pt;}
.ls10_c00089{letter-spacing:-0.041664pt;}
.ls17_c00089{letter-spacing:-0.038400pt;}
.ls18_c00089{letter-spacing:-0.032000pt;}
.lsd_c00089{letter-spacing:-0.025600pt;}
.ls13_c00089{letter-spacing:-0.019200pt;}
.ls9_c00089{letter-spacing:-0.016032pt;}
.lse_c00089{letter-spacing:-0.012800pt;}
.lsf_c00089{letter-spacing:-0.006944pt;}
.ls12_c00089{letter-spacing:-0.006400pt;}
.lsb_c00089{letter-spacing:0.000000pt;}
.ls3_c00089{letter-spacing:0.006400pt;}
.ls5_c00089{letter-spacing:0.012800pt;}
.ls14_c00089{letter-spacing:0.019200pt;}
.ls8_c00089{letter-spacing:0.021280pt;}
.ls7_c00089{letter-spacing:0.025536pt;}
.ls16_c00089{letter-spacing:0.032000pt;}
.ls0_c00089{letter-spacing:0.032064pt;}
.ls6_c00089{letter-spacing:0.034048pt;}
.ls4_c00089{letter-spacing:0.048672pt;}
.ls2_c00089{letter-spacing:0.062496pt;}
.ls15_c00089{letter-spacing:0.083200pt;}
.ls1_c00089{letter-spacing:52.357760pt;}
.ws1_c00089{word-spacing:-17.422496pt;}
.ws0_c00089{word-spacing:-17.353056pt;}
.ws2_c00089{word-spacing:-17.318336pt;}
.ws5_c00089{word-spacing:-15.987200pt;}
.ws4_c00089{word-spacing:-15.980800pt;}
.ws3_c00089{word-spacing:-9.408672pt;}
.ws2b_c00089{word-spacing:-0.017024pt;}
.ws2c_c00089{word-spacing:-0.008512pt;}
.ws2d_c00089{word-spacing:-0.004256pt;}
.ws9_c00089{word-spacing:0.000000pt;}
.ws16_c00089{word-spacing:0.012800pt;}
.ws2a_c00089{word-spacing:0.032000pt;}
.ws6_c00089{word-spacing:0.048096pt;}
.ws29_c00089{word-spacing:0.070400pt;}
.wsc_c00089{word-spacing:0.076800pt;}
.wse_c00089{word-spacing:0.096000pt;}
.ws7_c00089{word-spacing:0.096192pt;}
.ws8_c00089{word-spacing:0.122912pt;}
.ws24_c00089{word-spacing:0.307200pt;}
.ws23_c00089{word-spacing:0.320000pt;}
.ws1a_c00089{word-spacing:0.646400pt;}
.ws19_c00089{word-spacing:0.755200pt;}
.ws18_c00089{word-spacing:1.568000pt;}
.ws17_c00089{word-spacing:1.625600pt;}
.ws1c_c00089{word-spacing:2.246400pt;}
.ws14_c00089{word-spacing:6.700800pt;}
.wsa_c00089{word-spacing:6.713600pt;}
.ws13_c00089{word-spacing:6.726400pt;}
.ws22_c00089{word-spacing:7.027200pt;}
.ws21_c00089{word-spacing:7.046400pt;}
.ws1f_c00089{word-spacing:8.012800pt;}
.ws20_c00089{word-spacing:8.044800pt;}
.ws12_c00089{word-spacing:8.569600pt;}
.ws11_c00089{word-spacing:8.620800pt;}
.ws26_c00089{word-spacing:9.235200pt;}
.ws1b_c00089{word-spacing:9.286400pt;}
.ws25_c00089{word-spacing:9.318400pt;}
.ws1d_c00089{word-spacing:11.200000pt;}
.ws1e_c00089{word-spacing:11.283200pt;}
.wsf_c00089{word-spacing:11.846400pt;}
.ws10_c00089{word-spacing:11.961600pt;}
.wsd_c00089{word-spacing:12.774400pt;}
.ws15_c00089{word-spacing:15.033600pt;}
.wsb_c00089{word-spacing:18.265600pt;}
.ws28_c00089{word-spacing:29.120000pt;}
.ws27_c00089{word-spacing:29.126400pt;}
._2_c00089{margin-left:-4.160000pt;}
._0_c00089{margin-left:-1.015360pt;}
._1_c00089{width:1.024000pt;}
.fs4_c00089{font-size:37.440000pt;}
.fs5_c00089{font-size:42.560000pt;}
.fs2_c00089{font-size:48.000000pt;}
.fs0_c00089{font-size:53.440000pt;}
.fs1_c00089{font-size:64.000000pt;}
.fs3_c00089{font-size:69.440000pt;}
.y0_c00089{bottom:0.000000pt;}
.y3_c00089{bottom:51.067067pt;}
.y4_c00089{bottom:54.587067pt;}
.y26_c00089{bottom:101.078587pt;}
.y25_c00089{bottom:117.400347pt;}
.y24_c00089{bottom:133.636987pt;}
.y23_c00089{bottom:149.873627pt;}
.y22_c00089{bottom:166.195387pt;}
.y21_c00089{bottom:182.432027pt;}
.y20_c00089{bottom:198.668667pt;}
.y1f_c00089{bottom:214.990427pt;}
.y1e_c00089{bottom:231.227067pt;}
.y1d_c00089{bottom:244.747067pt;}
.y1c_c00089{bottom:263.147067pt;}
.y1b_c00089{bottom:281.547067pt;}
.y1a_c00089{bottom:321.227067pt;}
.y19_c00089{bottom:351.787067pt;}
.y18_c00089{bottom:382.427067pt;}
.y17_c00089{bottom:412.987067pt;}
.y16_c00089{bottom:443.627067pt;}
.y15_c00089{bottom:474.187067pt;}
.y14_c00089{bottom:504.827067pt;}
.y13_c00089{bottom:535.387067pt;}
.y12_c00089{bottom:566.027067pt;}
.y11_c00089{bottom:596.587067pt;}
.y10_c00089{bottom:627.227067pt;}
.yf_c00089{bottom:665.787067pt;}
.ye_c00089{bottom:696.427067pt;}
.yd_c00089{bottom:726.987067pt;}
.yc_c00089{bottom:757.627067pt;}
.yb_c00089{bottom:788.187067pt;}
.ya_c00089{bottom:826.827067pt;}
.y9_c00089{bottom:857.387067pt;}
.y8_c00089{bottom:897.467067pt;}
.y7_c00089{bottom:953.147067pt;}
.y6_c00089{bottom:983.787067pt;}
.y5_c00089{bottom:1014.347067pt;}
.y2_c00089{bottom:1043.387067pt;}
.y1_c00089{bottom:1063.867067pt;}
.h2_c00089{height:42.656250pt;}
.h8_c00089{height:44.388750pt;}
.h1_c00089{height:44.724687pt;}
.h3_c00089{height:50.062500pt;}
.h4_c00089{height:53.562500pt;}
.h6_c00089{height:57.894063pt;}
.h7_c00089{height:57.894596pt;}
.h5_c00089{height:72.423750pt;}
.h0_c00089{height:1122.666667pt;}
.w1_c00089{width:793.333333pt;}
.w0_c00089{width:793.626667pt;}
.x0_c00089{left:0.000000pt;}
.x2_c00089{left:113.440000pt;}
.x1_c00089{left:129.280000pt;}
.x6_c00089{left:160.720000pt;}
.x5_c00089{left:184.000000pt;}
.x4_c00089{left:390.240000pt;}
.x3_c00089{left:396.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_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_899858b36e894065424848d7.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.100098;font-style:normal;font-weight:normal;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_f3045d24d1d05fbd55a129d8.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;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_c00090;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00090;src:url('chunks/assets/font_6d0e8e82061424023f704011.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00090;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00090{font-family:ff5_c00090;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_c00090;src:url('chunks/assets/font_b306d632870a91cf9dbfa99f.woff2')format("woff");}.ff6_c00090{font-family:ff6_c00090;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_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;}
.v1_c00090{vertical-align:15.840000px;}
.v2_c00090{vertical-align:29.880000px;}
.ls16_c00090{letter-spacing:-0.151200px;}
.ls18_c00090{letter-spacing:-0.085932px;}
.ls19_c00090{letter-spacing:-0.039060px;}
.ls1c_c00090{letter-spacing:-0.036000px;}
.ls24_c00090{letter-spacing:-0.030060px;}
.ls22_c00090{letter-spacing:-0.028800px;}
.ls25_c00090{letter-spacing:-0.024048px;}
.ls20_c00090{letter-spacing:-0.021600px;}
.ls26_c00090{letter-spacing:-0.018036px;}
.ls1a_c00090{letter-spacing:-0.015624px;}
.ls2c_c00090{letter-spacing:-0.015552px;}
.ls1d_c00090{letter-spacing:-0.014400px;}
.ls27_c00090{letter-spacing:-0.012024px;}
.ls2b_c00090{letter-spacing:-0.009576px;}
.ls2a_c00090{letter-spacing:-0.007776px;}
.ls1f_c00090{letter-spacing:-0.007200px;}
.ls23_c00090{letter-spacing:-0.006012px;}
.ls29_c00090{letter-spacing:-0.003888px;}
.ls15_c00090{letter-spacing:0.000000px;}
.ls13_c00090{letter-spacing:0.004788px;}
.lsa_c00090{letter-spacing:0.006012px;}
.ls5_c00090{letter-spacing:0.007200px;}
.lsb_c00090{letter-spacing:0.012024px;}
.ls10_c00090{letter-spacing:0.014364px;}
.ls3_c00090{letter-spacing:0.014400px;}
.ls1b_c00090{letter-spacing:0.021600px;}
.ls21_c00090{letter-spacing:0.028800px;}
.lse_c00090{letter-spacing:0.030060px;}
.ls14_c00090{letter-spacing:0.033516px;}
.ls6_c00090{letter-spacing:0.036000px;}
.ls12_c00090{letter-spacing:0.038304px;}
.lsd_c00090{letter-spacing:0.042084px;}
.ls0_c00090{letter-spacing:0.048096px;}
.lsf_c00090{letter-spacing:0.054108px;}
.ls17_c00090{letter-spacing:0.054684px;}
.ls4_c00090{letter-spacing:0.054756px;}
.lsc_c00090{letter-spacing:0.060120px;}
.ls1e_c00090{letter-spacing:0.093600px;}
.ls7_c00090{letter-spacing:0.144000px;}
.ls11_c00090{letter-spacing:0.350640px;}
.ls28_c00090{letter-spacing:4.052088px;}
.ls2_c00090{letter-spacing:29.373120px;}
.ls8_c00090{letter-spacing:65.304000px;}
.ls9_c00090{letter-spacing:66.024000px;}
.ls1_c00090{letter-spacing:1227.240000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00090{word-spacing:-19.530000px;}
.ws2_c00090{word-spacing:-19.514376px;}
.ws1_c00090{word-spacing:-19.444068px;}
.ws5_c00090{word-spacing:-13.310640px;}
.ws6_c00090{word-spacing:-10.804752px;}
.ws4_c00090{word-spacing:-10.800864px;}
.ws3_c00090{word-spacing:-10.584756px;}
.ws1f_c00090{word-spacing:-0.093600px;}
.ws1b_c00090{word-spacing:-0.086400px;}
.ws9_c00090{word-spacing:-0.054684px;}
.ws3d_c00090{word-spacing:-0.019152px;}
.ws3f_c00090{word-spacing:-0.014364px;}
.ws13_c00090{word-spacing:-0.007200px;}
.ws8_c00090{word-spacing:0.000000px;}
.ws3b_c00090{word-spacing:0.004788px;}
.ws3e_c00090{word-spacing:0.014364px;}
.ws15_c00090{word-spacing:0.014400px;}
.ws1a_c00090{word-spacing:0.021600px;}
.ws3c_c00090{word-spacing:0.028728px;}
.ws26_c00090{word-spacing:0.030060px;}
.ws39_c00090{word-spacing:0.036072px;}
.ws7_c00090{word-spacing:0.042084px;}
.ws1d_c00090{word-spacing:0.064800px;}
.ws36_c00090{word-spacing:0.102204px;}
.ws1e_c00090{word-spacing:0.144000px;}
.ws14_c00090{word-spacing:0.712800px;}
.ws2f_c00090{word-spacing:1.160316px;}
.ws30_c00090{word-spacing:1.178352px;}
.ws38_c00090{word-spacing:1.496988px;}
.ws37_c00090{word-spacing:1.521036px;}
.ws2c_c00090{word-spacing:1.527048px;}
.ws2b_c00090{word-spacing:1.551096px;}
.ws31_c00090{word-spacing:1.827648px;}
.ws32_c00090{word-spacing:1.881756px;}
.ws35_c00090{word-spacing:2.567124px;}
.ws3a_c00090{word-spacing:3.679344px;}
.ws33_c00090{word-spacing:4.755492px;}
.ws34_c00090{word-spacing:4.785552px;}
.ws29_c00090{word-spacing:5.873724px;}
.ws2a_c00090{word-spacing:6.162300px;}
.ws18_c00090{word-spacing:6.177600px;}
.ws19_c00090{word-spacing:6.213600px;}
.ws11_c00090{word-spacing:6.321600px;}
.ws10_c00090{word-spacing:6.429600px;}
.ws22_c00090{word-spacing:6.565104px;}
.ws21_c00090{word-spacing:6.577128px;}
.ws16_c00090{word-spacing:7.927200px;}
.ws24_c00090{word-spacing:7.959888px;}
.ws17_c00090{word-spacing:7.992000px;}
.ws23_c00090{word-spacing:7.995960px;}
.ws25_c00090{word-spacing:8.038044px;}
.wsb_c00090{word-spacing:8.258400px;}
.ws20_c00090{word-spacing:8.265600px;}
.wsa_c00090{word-spacing:8.323200px;}
.ws2d_c00090{word-spacing:10.124208px;}
.ws2e_c00090{word-spacing:10.160280px;}
.wsc_c00090{word-spacing:11.196000px;}
.wsd_c00090{word-spacing:11.260800px;}
.ws28_c00090{word-spacing:12.330612px;}
.ws27_c00090{word-spacing:12.336624px;}
.ws12_c00090{word-spacing:14.400000px;}
.wsf_c00090{word-spacing:14.752800px;}
.wse_c00090{word-spacing:14.774400px;}
.ws1c_c00090{word-spacing:23.011200px;}
._3_c00090{margin-left:-4.929840px;}
._2_c00090{margin-left:-3.847680px;}
._0_c00090{margin-left:-1.322640px;}
._1_c00090{width:1.008000px;}
.fc0_c00090{color:rgb(0,0,0);}
.fs6_c00090{font-size:38.880000px;}
.fs4_c00090{font-size:42.120000px;}
.fs5_c00090{font-size:47.880000px;}
.fs1_c00090{font-size:54.000000px;}
.fs0_c00090{font-size:60.120000px;}
.fs2_c00090{font-size:72.000000px;}
.fs3_c00090{font-size:78.120000px;}
.y0_c00090{bottom:0.000000px;}
.y3_c00090{bottom:57.450450px;}
.y29_c00090{bottom:113.702250px;}
.y28_c00090{bottom:132.064230px;}
.y27_c00090{bottom:150.334230px;}
.y26_c00090{bottom:168.600450px;}
.y25_c00090{bottom:183.810600px;}
.y24_c00090{bottom:204.510600px;}
.y23_c00090{bottom:225.210600px;}
.y22_c00090{bottom:290.762850px;}
.y21_c00090{bottom:307.686630px;}
.y20_c00090{bottom:324.520230px;}
.y1f_c00090{bottom:350.446980px;}
.y1e_c00090{bottom:367.280580px;}
.y1d_c00090{bottom:384.204360px;}
.y1c_c00090{bottom:401.037960px;}
.y1b_c00090{bottom:417.961740px;}
.y1a_c00090{bottom:434.795340px;}
.y19_c00090{bottom:451.719120px;}
.y18_c00090{bottom:468.552720px;}
.y17_c00090{bottom:485.476500px;}
.y16_c00090{bottom:511.313070px;}
.y15_c00090{bottom:528.236850px;}
.y14_c00090{bottom:545.070450px;}
.y13_c00090{bottom:576.930450px;}
.y12_c00090{bottom:611.310450px;}
.y11_c00090{bottom:654.780450px;}
.y10_c00090{bottom:689.160450px;}
.yf_c00090{bottom:732.630450px;}
.ye_c00090{bottom:767.010450px;}
.yd_c00090{bottom:801.480450px;}
.yc_c00090{bottom:844.860450px;}
.yb_c00090{bottom:879.330450px;}
.ya_c00090{bottom:922.710450px;}
.y9_c00090{bottom:957.180450px;}
.y8_c00090{bottom:991.560450px;}
.y7_c00090{bottom:1026.030450px;}
.y6_c00090{bottom:1060.410450px;}
.y5_c00090{bottom:1094.880450px;}
.y4_c00090{bottom:1139.880450px;}
.y2_c00090{bottom:1177.860450px;}
.y1_c00090{bottom:1196.850450px;}
.h8_c00090{height:47.988281px;}
.h9_c00090{height:49.937344px;}
.h1_c00090{height:50.315273px;}
.h2_c00090{height:56.320312px;}
.h5_c00090{height:60.257812px;}
.h6_c00090{height:65.130820px;}
.h3_c00090{height:72.160312px;}
.h7_c00090{height:75.093750px;}
.h4_c00090{height:81.476719px;}
.h0_c00090{height:1263.000000px;}
.w1_c00090{width:892.500000px;}
.w0_c00090{width:892.830000px;}
.x0_c00090{left:0.000000px;}
.x1_c00090{left:127.620000px;}
.x3_c00090{left:154.620000px;}
.x2_c00090{left:180.810000px;}
.x4_c00090{left:206.915490px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.v1_c00090{vertical-align:14.080000pt;}
.v2_c00090{vertical-align:26.560000pt;}
.ls16_c00090{letter-spacing:-0.134400pt;}
.ls18_c00090{letter-spacing:-0.076384pt;}
.ls19_c00090{letter-spacing:-0.034720pt;}
.ls1c_c00090{letter-spacing:-0.032000pt;}
.ls24_c00090{letter-spacing:-0.026720pt;}
.ls22_c00090{letter-spacing:-0.025600pt;}
.ls25_c00090{letter-spacing:-0.021376pt;}
.ls20_c00090{letter-spacing:-0.019200pt;}
.ls26_c00090{letter-spacing:-0.016032pt;}
.ls1a_c00090{letter-spacing:-0.013888pt;}
.ls2c_c00090{letter-spacing:-0.013824pt;}
.ls1d_c00090{letter-spacing:-0.012800pt;}
.ls27_c00090{letter-spacing:-0.010688pt;}
.ls2b_c00090{letter-spacing:-0.008512pt;}
.ls2a_c00090{letter-spacing:-0.006912pt;}
.ls1f_c00090{letter-spacing:-0.006400pt;}
.ls23_c00090{letter-spacing:-0.005344pt;}
.ls29_c00090{letter-spacing:-0.003456pt;}
.ls15_c00090{letter-spacing:0.000000pt;}
.ls13_c00090{letter-spacing:0.004256pt;}
.lsa_c00090{letter-spacing:0.005344pt;}
.ls5_c00090{letter-spacing:0.006400pt;}
.lsb_c00090{letter-spacing:0.010688pt;}
.ls10_c00090{letter-spacing:0.012768pt;}
.ls3_c00090{letter-spacing:0.012800pt;}
.ls1b_c00090{letter-spacing:0.019200pt;}
.ls21_c00090{letter-spacing:0.025600pt;}
.lse_c00090{letter-spacing:0.026720pt;}
.ls14_c00090{letter-spacing:0.029792pt;}
.ls6_c00090{letter-spacing:0.032000pt;}
.ls12_c00090{letter-spacing:0.034048pt;}
.lsd_c00090{letter-spacing:0.037408pt;}
.ls0_c00090{letter-spacing:0.042752pt;}
.lsf_c00090{letter-spacing:0.048096pt;}
.ls17_c00090{letter-spacing:0.048608pt;}
.ls4_c00090{letter-spacing:0.048672pt;}
.lsc_c00090{letter-spacing:0.053440pt;}
.ls1e_c00090{letter-spacing:0.083200pt;}
.ls7_c00090{letter-spacing:0.128000pt;}
.ls11_c00090{letter-spacing:0.311680pt;}
.ls28_c00090{letter-spacing:3.601856pt;}
.ls2_c00090{letter-spacing:26.109440pt;}
.ls8_c00090{letter-spacing:58.048000pt;}
.ls9_c00090{letter-spacing:58.688000pt;}
.ls1_c00090{letter-spacing:1090.880000pt;}
.ws0_c00090{word-spacing:-17.360000pt;}
.ws2_c00090{word-spacing:-17.346112pt;}
.ws1_c00090{word-spacing:-17.283616pt;}
.ws5_c00090{word-spacing:-11.831680pt;}
.ws6_c00090{word-spacing:-9.604224pt;}
.ws4_c00090{word-spacing:-9.600768pt;}
.ws3_c00090{word-spacing:-9.408672pt;}
.ws1f_c00090{word-spacing:-0.083200pt;}
.ws1b_c00090{word-spacing:-0.076800pt;}
.ws9_c00090{word-spacing:-0.048608pt;}
.ws3d_c00090{word-spacing:-0.017024pt;}
.ws3f_c00090{word-spacing:-0.012768pt;}
.ws13_c00090{word-spacing:-0.006400pt;}
.ws8_c00090{word-spacing:0.000000pt;}
.ws3b_c00090{word-spacing:0.004256pt;}
.ws3e_c00090{word-spacing:0.012768pt;}
.ws15_c00090{word-spacing:0.012800pt;}
.ws1a_c00090{word-spacing:0.019200pt;}
.ws3c_c00090{word-spacing:0.025536pt;}
.ws26_c00090{word-spacing:0.026720pt;}
.ws39_c00090{word-spacing:0.032064pt;}
.ws7_c00090{word-spacing:0.037408pt;}
.ws1d_c00090{word-spacing:0.057600pt;}
.ws36_c00090{word-spacing:0.090848pt;}
.ws1e_c00090{word-spacing:0.128000pt;}
.ws14_c00090{word-spacing:0.633600pt;}
.ws2f_c00090{word-spacing:1.031392pt;}
.ws30_c00090{word-spacing:1.047424pt;}
.ws38_c00090{word-spacing:1.330656pt;}
.ws37_c00090{word-spacing:1.352032pt;}
.ws2c_c00090{word-spacing:1.357376pt;}
.ws2b_c00090{word-spacing:1.378752pt;}
.ws31_c00090{word-spacing:1.624576pt;}
.ws32_c00090{word-spacing:1.672672pt;}
.ws35_c00090{word-spacing:2.281888pt;}
.ws3a_c00090{word-spacing:3.270528pt;}
.ws33_c00090{word-spacing:4.227104pt;}
.ws34_c00090{word-spacing:4.253824pt;}
.ws29_c00090{word-spacing:5.221088pt;}
.ws2a_c00090{word-spacing:5.477600pt;}
.ws18_c00090{word-spacing:5.491200pt;}
.ws19_c00090{word-spacing:5.523200pt;}
.ws11_c00090{word-spacing:5.619200pt;}
.ws10_c00090{word-spacing:5.715200pt;}
.ws22_c00090{word-spacing:5.835648pt;}
.ws21_c00090{word-spacing:5.846336pt;}
.ws16_c00090{word-spacing:7.046400pt;}
.ws24_c00090{word-spacing:7.075456pt;}
.ws17_c00090{word-spacing:7.104000pt;}
.ws23_c00090{word-spacing:7.107520pt;}
.ws25_c00090{word-spacing:7.144928pt;}
.wsb_c00090{word-spacing:7.340800pt;}
.ws20_c00090{word-spacing:7.347200pt;}
.wsa_c00090{word-spacing:7.398400pt;}
.ws2d_c00090{word-spacing:8.999296pt;}
.ws2e_c00090{word-spacing:9.031360pt;}
.wsc_c00090{word-spacing:9.952000pt;}
.wsd_c00090{word-spacing:10.009600pt;}
.ws28_c00090{word-spacing:10.960544pt;}
.ws27_c00090{word-spacing:10.965888pt;}
.ws12_c00090{word-spacing:12.800000pt;}
.wsf_c00090{word-spacing:13.113600pt;}
.wse_c00090{word-spacing:13.132800pt;}
.ws1c_c00090{word-spacing:20.454400pt;}
._3_c00090{margin-left:-4.382080pt;}
._2_c00090{margin-left:-3.420160pt;}
._0_c00090{margin-left:-1.175680pt;}
._1_c00090{width:0.896000pt;}
.fs6_c00090{font-size:34.560000pt;}
.fs4_c00090{font-size:37.440000pt;}
.fs5_c00090{font-size:42.560000pt;}
.fs1_c00090{font-size:48.000000pt;}
.fs0_c00090{font-size:53.440000pt;}
.fs2_c00090{font-size:64.000000pt;}
.fs3_c00090{font-size:69.440000pt;}
.y0_c00090{bottom:0.000000pt;}
.y3_c00090{bottom:51.067067pt;}
.y29_c00090{bottom:101.068667pt;}
.y28_c00090{bottom:117.390427pt;}
.y27_c00090{bottom:133.630427pt;}
.y26_c00090{bottom:149.867067pt;}
.y25_c00090{bottom:163.387200pt;}
.y24_c00090{bottom:181.787200pt;}
.y23_c00090{bottom:200.187200pt;}
.y22_c00090{bottom:258.455867pt;}
.y21_c00090{bottom:273.499227pt;}
.y20_c00090{bottom:288.462427pt;}
.y1f_c00090{bottom:311.508427pt;}
.y1e_c00090{bottom:326.471627pt;}
.y1d_c00090{bottom:341.514987pt;}
.y1c_c00090{bottom:356.478187pt;}
.y1b_c00090{bottom:371.521547pt;}
.y1a_c00090{bottom:386.484747pt;}
.y19_c00090{bottom:401.528107pt;}
.y18_c00090{bottom:416.491307pt;}
.y17_c00090{bottom:431.534667pt;}
.y16_c00090{bottom:454.500507pt;}
.y15_c00090{bottom:469.543867pt;}
.y14_c00090{bottom:484.507067pt;}
.y13_c00090{bottom:512.827067pt;}
.y12_c00090{bottom:543.387067pt;}
.y11_c00090{bottom:582.027067pt;}
.y10_c00090{bottom:612.587067pt;}
.yf_c00090{bottom:651.227067pt;}
.ye_c00090{bottom:681.787067pt;}
.yd_c00090{bottom:712.427067pt;}
.yc_c00090{bottom:750.987067pt;}
.yb_c00090{bottom:781.627067pt;}
.ya_c00090{bottom:820.187067pt;}
.y9_c00090{bottom:850.827067pt;}
.y8_c00090{bottom:881.387067pt;}
.y7_c00090{bottom:912.027067pt;}
.y6_c00090{bottom:942.587067pt;}
.y5_c00090{bottom:973.227067pt;}
.y4_c00090{bottom:1013.227067pt;}
.y2_c00090{bottom:1046.987067pt;}
.y1_c00090{bottom:1063.867067pt;}
.h8_c00090{height:42.656250pt;}
.h9_c00090{height:44.388750pt;}
.h1_c00090{height:44.724687pt;}
.h2_c00090{height:50.062500pt;}
.h5_c00090{height:53.562500pt;}
.h6_c00090{height:57.894062pt;}
.h3_c00090{height:64.142500pt;}
.h7_c00090{height:66.750000pt;}
.h4_c00090{height:72.423750pt;}
.h0_c00090{height:1122.666667pt;}
.w1_c00090{width:793.333333pt;}
.w0_c00090{width:793.626667pt;}
.x0_c00090{left:0.000000pt;}
.x1_c00090{left:113.440000pt;}
.x3_c00090{left:137.440000pt;}
.x2_c00090{left:160.720000pt;}
.x4_c00090{left:183.924880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d672056bee889947ffd010ad.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00091;src:url('chunks/assets/font_8551135a05f72a846f6f5817.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00091;src:url('chunks/assets/font_3dd1226b2162bdd142aa00bf.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;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_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;}
.v1_c00091{vertical-align:15.134400px;}
.v2_c00091{vertical-align:29.880000px;}
.ls12_c00091{letter-spacing:-0.151200px;}
.ls1a_c00091{letter-spacing:-0.050400px;}
.ls10_c00091{letter-spacing:-0.048096px;}
.ls18_c00091{letter-spacing:-0.028800px;}
.ls14_c00091{letter-spacing:-0.024048px;}
.ls17_c00091{letter-spacing:-0.021600px;}
.lsf_c00091{letter-spacing:-0.018036px;}
.ls1f_c00091{letter-spacing:-0.015552px;}
.ls16_c00091{letter-spacing:-0.014400px;}
.ls1e_c00091{letter-spacing:-0.009576px;}
.ls1d_c00091{letter-spacing:-0.007776px;}
.ls19_c00091{letter-spacing:-0.007200px;}
.ls13_c00091{letter-spacing:-0.006012px;}
.ls1c_c00091{letter-spacing:-0.003888px;}
.ls11_c00091{letter-spacing:0.000000px;}
.ls5_c00091{letter-spacing:0.007200px;}
.ls1_c00091{letter-spacing:0.012024px;}
.ls9_c00091{letter-spacing:0.014364px;}
.ls6_c00091{letter-spacing:0.014400px;}
.ls4_c00091{letter-spacing:0.021600px;}
.ls8_c00091{letter-spacing:0.028728px;}
.ls2_c00091{letter-spacing:0.030060px;}
.ls0_c00091{letter-spacing:0.036072px;}
.lse_c00091{letter-spacing:0.038304px;}
.lsa_c00091{letter-spacing:0.043092px;}
.ls7_c00091{letter-spacing:0.054756px;}
.lsc_c00091{letter-spacing:0.057456px;}
.lsb_c00091{letter-spacing:0.067032px;}
.ls1b_c00091{letter-spacing:0.093600px;}
.ls3_c00091{letter-spacing:0.136080px;}
.ls15_c00091{letter-spacing:0.168336px;}
.lsd_c00091{letter-spacing:0.350640px;}
.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;}
}
.ws1_c00091{word-spacing:-17.949600px;}
.ws3_c00091{word-spacing:-13.310640px;}
.ws4_c00091{word-spacing:-10.804752px;}
.ws5_c00091{word-spacing:-10.800864px;}
.ws2_c00091{word-spacing:-10.584756px;}
.ws0_c00091{word-spacing:-9.856080px;}
.ws27_c00091{word-spacing:-0.086400px;}
.ws3d_c00091{word-spacing:-0.023940px;}
.ws3c_c00091{word-spacing:-0.019152px;}
.ws34_c00091{word-spacing:-0.009576px;}
.ws18_c00091{word-spacing:-0.007200px;}
.ws9_c00091{word-spacing:0.000000px;}
.ws3a_c00091{word-spacing:0.004788px;}
.ws2e_c00091{word-spacing:0.014400px;}
.ws3b_c00091{word-spacing:0.028728px;}
.ws6_c00091{word-spacing:0.054108px;}
.wsc_c00091{word-spacing:0.060120px;}
.ws7_c00091{word-spacing:0.108216px;}
.wsd_c00091{word-spacing:0.114228px;}
.ws8_c00091{word-spacing:0.138276px;}
.ws2d_c00091{word-spacing:1.749600px;}
.ws2c_c00091{word-spacing:1.807200px;}
.ws2f_c00091{word-spacing:2.181600px;}
.ws30_c00091{word-spacing:2.224800px;}
.ws21_c00091{word-spacing:3.657600px;}
.ws28_c00091{word-spacing:4.269600px;}
.ws33_c00091{word-spacing:4.305600px;}
.ws32_c00091{word-spacing:4.320000px;}
.ws1f_c00091{word-spacing:4.327200px;}
.ws29_c00091{word-spacing:4.341600px;}
.ws20_c00091{word-spacing:4.370400px;}
.wsb_c00091{word-spacing:5.494968px;}
.ws38_c00091{word-spacing:5.712084px;}
.ws39_c00091{word-spacing:5.721660px;}
.ws37_c00091{word-spacing:5.736024px;}
.ws36_c00091{word-spacing:5.762016px;}
.ws35_c00091{word-spacing:5.764752px;}
.wsa_c00091{word-spacing:5.837652px;}
.ws14_c00091{word-spacing:6.861600px;}
.ws13_c00091{word-spacing:7.005600px;}
.ws25_c00091{word-spacing:7.941600px;}
.ws31_c00091{word-spacing:8.294400px;}
.ws19_c00091{word-spacing:9.727200px;}
.ws1a_c00091{word-spacing:9.741600px;}
.ws1e_c00091{word-spacing:9.777600px;}
.ws1d_c00091{word-spacing:9.835200px;}
.wsf_c00091{word-spacing:10.130400px;}
.ws10_c00091{word-spacing:10.216800px;}
.wse_c00091{word-spacing:10.454400px;}
.ws2b_c00091{word-spacing:10.807200px;}
.ws2a_c00091{word-spacing:10.886400px;}
.ws26_c00091{word-spacing:11.181600px;}
.ws24_c00091{word-spacing:20.131200px;}
.ws22_c00091{word-spacing:20.217600px;}
.ws23_c00091{word-spacing:20.318400px;}
.ws1c_c00091{word-spacing:20.505600px;}
.ws17_c00091{word-spacing:20.548800px;}
.ws1b_c00091{word-spacing:20.613600px;}
.ws16_c00091{word-spacing:21.276000px;}
.ws15_c00091{word-spacing:21.542400px;}
.ws11_c00091{word-spacing:25.149600px;}
.ws12_c00091{word-spacing:25.221600px;}
._0_c00091{margin-left:-1.142280px;}
._1_c00091{width:1.152000px;}
.fc0_c00091{color:rgb(0,0,0);}
.fs3_c00091{font-size:38.880000px;}
.fs4_c00091{font-size:42.120000px;}
.fs5_c00091{font-size:47.880000px;}
.fs2_c00091{font-size:54.000000px;}
.fs0_c00091{font-size:60.120000px;}
.fs1_c00091{font-size:72.000000px;}
.y0_c00091{bottom:0.000000px;}
.y3_c00091{bottom:57.450450px;}
.y4_c00091{bottom:61.410450px;}
.y26_c00091{bottom:113.698470px;}
.y25_c00091{bottom:132.068730px;}
.y24_c00091{bottom:150.334950px;}
.y23_c00091{bottom:164.098620px;}
.y22_c00091{bottom:182.460600px;}
.y21_c00091{bottom:197.670450px;}
.y20_c00091{bottom:218.370450px;}
.y1f_c00091{bottom:239.070600px;}
.y1e_c00091{bottom:261.660600px;}
.y1d_c00091{bottom:296.040600px;}
.y1c_c00091{bottom:330.510600px;}
.y1b_c00091{bottom:364.890600px;}
.y1a_c00091{bottom:408.360600px;}
.y19_c00091{bottom:442.740600px;}
.y18_c00091{bottom:477.210450px;}
.y17_c00091{bottom:511.590450px;}
.y16_c00091{bottom:555.060450px;}
.y15_c00091{bottom:589.440450px;}
.y14_c00091{bottom:623.910450px;}
.y13_c00091{bottom:658.290450px;}
.y12_c00091{bottom:692.760450px;}
.y11_c00091{bottom:727.140450px;}
.y10_c00091{bottom:761.610450px;}
.yf_c00091{bottom:795.990450px;}
.ye_c00091{bottom:830.460450px;}
.yd_c00091{bottom:873.840450px;}
.yc_c00091{bottom:908.310450px;}
.yb_c00091{bottom:942.690450px;}
.ya_c00091{bottom:977.160450px;}
.y9_c00091{bottom:1011.540450px;}
.y8_c00091{bottom:1046.010450px;}
.y7_c00091{bottom:1080.390450px;}
.y6_c00091{bottom:1126.916850px;}
.y5_c00091{bottom:1143.750450px;}
.y2_c00091{bottom:1173.810450px;}
.y1_c00091{bottom:1196.850450px;}
.h2_c00091{height:47.988281px;}
.h9_c00091{height:49.937344px;}
.ha_c00091{height:49.944664px;}
.hb_c00091{height:49.945264px;}
.h1_c00091{height:50.315273px;}
.h4_c00091{height:50.329673px;}
.h3_c00091{height:56.320312px;}
.h5_c00091{height:60.257812px;}
.h8_c00091{height:65.130220px;}
.h6_c00091{height:65.130820px;}
.h7_c00091{height:65.131420px;}
.h0_c00091{height:1263.000000px;}
.w1_c00091{width:892.500000px;}
.w0_c00091{width:892.830000px;}
.x0_c00091{left:0.000000px;}
.x2_c00091{left:127.620000px;}
.x1_c00091{left:145.440000px;}
.x7_c00091{left:154.623330px;}
.x6_c00091{left:180.810000px;}
.x5_c00091{left:207.000000px;}
.x4_c00091{left:439.020000px;}
.x3_c00091{left:446.490000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.v1_c00091{vertical-align:13.452800pt;}
.v2_c00091{vertical-align:26.560000pt;}
.ls12_c00091{letter-spacing:-0.134400pt;}
.ls1a_c00091{letter-spacing:-0.044800pt;}
.ls10_c00091{letter-spacing:-0.042752pt;}
.ls18_c00091{letter-spacing:-0.025600pt;}
.ls14_c00091{letter-spacing:-0.021376pt;}
.ls17_c00091{letter-spacing:-0.019200pt;}
.lsf_c00091{letter-spacing:-0.016032pt;}
.ls1f_c00091{letter-spacing:-0.013824pt;}
.ls16_c00091{letter-spacing:-0.012800pt;}
.ls1e_c00091{letter-spacing:-0.008512pt;}
.ls1d_c00091{letter-spacing:-0.006912pt;}
.ls19_c00091{letter-spacing:-0.006400pt;}
.ls13_c00091{letter-spacing:-0.005344pt;}
.ls1c_c00091{letter-spacing:-0.003456pt;}
.ls11_c00091{letter-spacing:0.000000pt;}
.ls5_c00091{letter-spacing:0.006400pt;}
.ls1_c00091{letter-spacing:0.010688pt;}
.ls9_c00091{letter-spacing:0.012768pt;}
.ls6_c00091{letter-spacing:0.012800pt;}
.ls4_c00091{letter-spacing:0.019200pt;}
.ls8_c00091{letter-spacing:0.025536pt;}
.ls2_c00091{letter-spacing:0.026720pt;}
.ls0_c00091{letter-spacing:0.032064pt;}
.lse_c00091{letter-spacing:0.034048pt;}
.lsa_c00091{letter-spacing:0.038304pt;}
.ls7_c00091{letter-spacing:0.048672pt;}
.lsc_c00091{letter-spacing:0.051072pt;}
.lsb_c00091{letter-spacing:0.059584pt;}
.ls1b_c00091{letter-spacing:0.083200pt;}
.ls3_c00091{letter-spacing:0.120960pt;}
.ls15_c00091{letter-spacing:0.149632pt;}
.lsd_c00091{letter-spacing:0.311680pt;}
.ws1_c00091{word-spacing:-15.955200pt;}
.ws3_c00091{word-spacing:-11.831680pt;}
.ws4_c00091{word-spacing:-9.604224pt;}
.ws5_c00091{word-spacing:-9.600768pt;}
.ws2_c00091{word-spacing:-9.408672pt;}
.ws0_c00091{word-spacing:-8.760960pt;}
.ws27_c00091{word-spacing:-0.076800pt;}
.ws3d_c00091{word-spacing:-0.021280pt;}
.ws3c_c00091{word-spacing:-0.017024pt;}
.ws34_c00091{word-spacing:-0.008512pt;}
.ws18_c00091{word-spacing:-0.006400pt;}
.ws9_c00091{word-spacing:0.000000pt;}
.ws3a_c00091{word-spacing:0.004256pt;}
.ws2e_c00091{word-spacing:0.012800pt;}
.ws3b_c00091{word-spacing:0.025536pt;}
.ws6_c00091{word-spacing:0.048096pt;}
.wsc_c00091{word-spacing:0.053440pt;}
.ws7_c00091{word-spacing:0.096192pt;}
.wsd_c00091{word-spacing:0.101536pt;}
.ws8_c00091{word-spacing:0.122912pt;}
.ws2d_c00091{word-spacing:1.555200pt;}
.ws2c_c00091{word-spacing:1.606400pt;}
.ws2f_c00091{word-spacing:1.939200pt;}
.ws30_c00091{word-spacing:1.977600pt;}
.ws21_c00091{word-spacing:3.251200pt;}
.ws28_c00091{word-spacing:3.795200pt;}
.ws33_c00091{word-spacing:3.827200pt;}
.ws32_c00091{word-spacing:3.840000pt;}
.ws1f_c00091{word-spacing:3.846400pt;}
.ws29_c00091{word-spacing:3.859200pt;}
.ws20_c00091{word-spacing:3.884800pt;}
.wsb_c00091{word-spacing:4.884416pt;}
.ws38_c00091{word-spacing:5.077408pt;}
.ws39_c00091{word-spacing:5.085920pt;}
.ws37_c00091{word-spacing:5.098688pt;}
.ws36_c00091{word-spacing:5.121792pt;}
.ws35_c00091{word-spacing:5.124224pt;}
.wsa_c00091{word-spacing:5.189024pt;}
.ws14_c00091{word-spacing:6.099200pt;}
.ws13_c00091{word-spacing:6.227200pt;}
.ws25_c00091{word-spacing:7.059200pt;}
.ws31_c00091{word-spacing:7.372800pt;}
.ws19_c00091{word-spacing:8.646400pt;}
.ws1a_c00091{word-spacing:8.659200pt;}
.ws1e_c00091{word-spacing:8.691200pt;}
.ws1d_c00091{word-spacing:8.742400pt;}
.wsf_c00091{word-spacing:9.004800pt;}
.ws10_c00091{word-spacing:9.081600pt;}
.wse_c00091{word-spacing:9.292800pt;}
.ws2b_c00091{word-spacing:9.606400pt;}
.ws2a_c00091{word-spacing:9.676800pt;}
.ws26_c00091{word-spacing:9.939200pt;}
.ws24_c00091{word-spacing:17.894400pt;}
.ws22_c00091{word-spacing:17.971200pt;}
.ws23_c00091{word-spacing:18.060800pt;}
.ws1c_c00091{word-spacing:18.227200pt;}
.ws17_c00091{word-spacing:18.265600pt;}
.ws1b_c00091{word-spacing:18.323200pt;}
.ws16_c00091{word-spacing:18.912000pt;}
.ws15_c00091{word-spacing:19.148800pt;}
.ws11_c00091{word-spacing:22.355200pt;}
.ws12_c00091{word-spacing:22.419200pt;}
._0_c00091{margin-left:-1.015360pt;}
._1_c00091{width:1.024000pt;}
.fs3_c00091{font-size:34.560000pt;}
.fs4_c00091{font-size:37.440000pt;}
.fs5_c00091{font-size:42.560000pt;}
.fs2_c00091{font-size:48.000000pt;}
.fs0_c00091{font-size:53.440000pt;}
.fs1_c00091{font-size:64.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y3_c00091{bottom:51.067067pt;}
.y4_c00091{bottom:54.587067pt;}
.y26_c00091{bottom:101.065307pt;}
.y25_c00091{bottom:117.394427pt;}
.y24_c00091{bottom:133.631067pt;}
.y23_c00091{bottom:145.865440pt;}
.y22_c00091{bottom:162.187200pt;}
.y21_c00091{bottom:175.707067pt;}
.y20_c00091{bottom:194.107067pt;}
.y1f_c00091{bottom:212.507200pt;}
.y1e_c00091{bottom:232.587200pt;}
.y1d_c00091{bottom:263.147200pt;}
.y1c_c00091{bottom:293.787200pt;}
.y1b_c00091{bottom:324.347200pt;}
.y1a_c00091{bottom:362.987200pt;}
.y19_c00091{bottom:393.547200pt;}
.y18_c00091{bottom:424.187067pt;}
.y17_c00091{bottom:454.747067pt;}
.y16_c00091{bottom:493.387067pt;}
.y15_c00091{bottom:523.947067pt;}
.y14_c00091{bottom:554.587067pt;}
.y13_c00091{bottom:585.147067pt;}
.y12_c00091{bottom:615.787067pt;}
.y11_c00091{bottom:646.347067pt;}
.y10_c00091{bottom:676.987067pt;}
.yf_c00091{bottom:707.547067pt;}
.ye_c00091{bottom:738.187067pt;}
.yd_c00091{bottom:776.747067pt;}
.yc_c00091{bottom:807.387067pt;}
.yb_c00091{bottom:837.947067pt;}
.ya_c00091{bottom:868.587067pt;}
.y9_c00091{bottom:899.147067pt;}
.y8_c00091{bottom:929.787067pt;}
.y7_c00091{bottom:960.347067pt;}
.y6_c00091{bottom:1001.703867pt;}
.y5_c00091{bottom:1016.667067pt;}
.y2_c00091{bottom:1043.387067pt;}
.y1_c00091{bottom:1063.867067pt;}
.h2_c00091{height:42.656250pt;}
.h9_c00091{height:44.388750pt;}
.ha_c00091{height:44.395257pt;}
.hb_c00091{height:44.395790pt;}
.h1_c00091{height:44.724687pt;}
.h4_c00091{height:44.737488pt;}
.h3_c00091{height:50.062500pt;}
.h5_c00091{height:53.562500pt;}
.h8_c00091{height:57.893529pt;}
.h6_c00091{height:57.894062pt;}
.h7_c00091{height:57.894596pt;}
.h0_c00091{height:1122.666667pt;}
.w1_c00091{width:793.333333pt;}
.w0_c00091{width:793.626667pt;}
.x0_c00091{left:0.000000pt;}
.x2_c00091{left:113.440000pt;}
.x1_c00091{left:129.280000pt;}
.x7_c00091{left:137.442960pt;}
.x6_c00091{left:160.720000pt;}
.x5_c00091{left:184.000000pt;}
.x4_c00091{left:390.240000pt;}
.x3_c00091{left:396.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_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_842a3b768199b66318719309.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.100098;font-style:normal;font-weight:normal;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_a6efe62b0554a1fd49e47990.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;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_c00092;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00092;src:url('chunks/assets/font_3b5d373de095ff1ad803ffbb.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00092;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00092{font-family:ff5_c00092;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_c00092;src:url('chunks/assets/font_c45c25e8b3c22de892a4eda5.woff2')format("woff");}.ff6_c00092{font-family:ff6_c00092;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_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);}
.v3_c00092{vertical-align:-29.879400px;}
.v0_c00092{vertical-align:0.000000px;}
.v1_c00092{vertical-align:15.840000px;}
.v2_c00092{vertical-align:29.880000px;}
.ls12_c00092{letter-spacing:-0.151200px;}
.ls16_c00092{letter-spacing:-0.031248px;}
.ls18_c00092{letter-spacing:-0.028800px;}
.ls17_c00092{letter-spacing:-0.021600px;}
.ls15_c00092{letter-spacing:-0.014400px;}
.ls13_c00092{letter-spacing:-0.007200px;}
.ls1c_c00092{letter-spacing:-0.004788px;}
.ls11_c00092{letter-spacing:0.000000px;}
.ls5_c00092{letter-spacing:0.007200px;}
.ls7_c00092{letter-spacing:0.007812px;}
.lsb_c00092{letter-spacing:0.014364px;}
.ls14_c00092{letter-spacing:0.014400px;}
.ls2_c00092{letter-spacing:0.015624px;}
.lse_c00092{letter-spacing:0.019152px;}
.ls9_c00092{letter-spacing:0.021600px;}
.lsa_c00092{letter-spacing:0.028800px;}
.ls10_c00092{letter-spacing:0.033516px;}
.lsf_c00092{letter-spacing:0.043092px;}
.ls19_c00092{letter-spacing:0.043200px;}
.ls0_c00092{letter-spacing:0.048096px;}
.ls4_c00092{letter-spacing:0.054684px;}
.ls8_c00092{letter-spacing:0.054756px;}
.ls1a_c00092{letter-spacing:0.093600px;}
.lsc_c00092{letter-spacing:0.104040px;}
.lsd_c00092{letter-spacing:0.342144px;}
.ls1b_c00092{letter-spacing:6.897600px;}
.ls6_c00092{letter-spacing:35.154000px;}
.ls3_c00092{letter-spacing:83.041560px;}
.ls1_c00092{letter-spacing:1227.240000px;}
.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;}
}
.ws1_c00092{word-spacing:-19.584684px;}
.ws0_c00092{word-spacing:-19.545624px;}
.ws2_c00092{word-spacing:-19.498752px;}
.ws4_c00092{word-spacing:-11.150784px;}
.ws3_c00092{word-spacing:-10.584756px;}
.wsd_c00092{word-spacing:-0.218736px;}
.ws2a_c00092{word-spacing:-0.023940px;}
.ws24_c00092{word-spacing:-0.014400px;}
.ws2b_c00092{word-spacing:-0.014364px;}
.ws6_c00092{word-spacing:0.000000px;}
.ws29_c00092{word-spacing:0.004788px;}
.wsc_c00092{word-spacing:0.007200px;}
.wsb_c00092{word-spacing:0.014400px;}
.ws2c_c00092{word-spacing:0.023940px;}
.ws5_c00092{word-spacing:0.042084px;}
.ws23_c00092{word-spacing:0.712800px;}
.ws7_c00092{word-spacing:0.727200px;}
.ws8_c00092{word-spacing:0.763200px;}
.ws1b_c00092{word-spacing:1.087200px;}
.ws18_c00092{word-spacing:2.188800px;}
.ws1e_c00092{word-spacing:2.887200px;}
.ws1f_c00092{word-spacing:3.002400px;}
.ws15_c00092{word-spacing:3.196800px;}
.ws14_c00092{word-spacing:3.254400px;}
.ws26_c00092{word-spacing:3.268800px;}
.ws22_c00092{word-spacing:3.571200px;}
.ws21_c00092{word-spacing:3.664800px;}
.ws13_c00092{word-spacing:4.305600px;}
.ws28_c00092{word-spacing:5.781600px;}
.ws27_c00092{word-spacing:5.817600px;}
.wsa_c00092{word-spacing:6.775200px;}
.ws25_c00092{word-spacing:6.847200px;}
.ws20_c00092{word-spacing:6.854400px;}
.ws9_c00092{word-spacing:6.919200px;}
.ws17_c00092{word-spacing:7.538400px;}
.ws16_c00092{word-spacing:7.552800px;}
.ws1c_c00092{word-spacing:8.647200px;}
.ws1d_c00092{word-spacing:8.690400px;}
.wse_c00092{word-spacing:16.581600px;}
.ws12_c00092{word-spacing:17.661600px;}
.ws11_c00092{word-spacing:17.668800px;}
.ws1a_c00092{word-spacing:19.051200px;}
.ws19_c00092{word-spacing:19.072800px;}
.wsf_c00092{word-spacing:23.004000px;}
.ws10_c00092{word-spacing:23.068800px;}
._3_c00092{margin-left:-7.704000px;}
._2_c00092{margin-left:-6.624000px;}
._4_c00092{margin-left:-5.616000px;}
._0_c00092{margin-left:-1.322640px;}
._1_c00092{width:1.080000px;}
.fc0_c00092{color:rgb(0,0,0);}
.fs6_c00092{font-size:38.880000px;}
.fs4_c00092{font-size:42.120000px;}
.fs5_c00092{font-size:47.880000px;}
.fs1_c00092{font-size:54.000000px;}
.fs0_c00092{font-size:60.120000px;}
.fs2_c00092{font-size:72.000000px;}
.fs3_c00092{font-size:78.120000px;}
.y0_c00092{bottom:0.000000px;}
.y3_c00092{bottom:57.450450px;}
.y24_c00092{bottom:113.698470px;}
.y23_c00092{bottom:132.064230px;}
.y22_c00092{bottom:150.336030px;}
.y21_c00092{bottom:168.602250px;}
.y20_c00092{bottom:186.964230px;}
.y1f_c00092{bottom:205.230450px;}
.y1e_c00092{bottom:220.440450px;}
.y1d_c00092{bottom:241.140450px;}
.y1c_c00092{bottom:261.840450px;}
.y1b_c00092{bottom:298.650600px;}
.y1a_c00092{bottom:333.120600px;}
.y19_c00092{bottom:367.500450px;}
.y18_c00092{bottom:401.970450px;}
.y17_c00092{bottom:436.350450px;}
.y16_c00092{bottom:470.820450px;}
.y15_c00092{bottom:505.200450px;}
.y14_c00092{bottom:539.670450px;}
.y13_c00092{bottom:574.050450px;}
.y12_c00092{bottom:608.520450px;}
.y11_c00092{bottom:642.900450px;}
.y10_c00092{bottom:677.370450px;}
.yf_c00092{bottom:711.750450px;}
.ye_c00092{bottom:746.220450px;}
.yd_c00092{bottom:780.600450px;}
.yc_c00092{bottom:815.070450px;}
.yb_c00092{bottom:849.450450px;}
.ya_c00092{bottom:883.920450px;}
.y9_c00092{bottom:918.300450px;}
.y8_c00092{bottom:963.300450px;}
.y7_c00092{bottom:1026.030450px;}
.y6_c00092{bottom:1060.410450px;}
.y5_c00092{bottom:1094.880450px;}
.y4_c00092{bottom:1139.880450px;}
.y2_c00092{bottom:1177.860450px;}
.y1_c00092{bottom:1196.850450px;}
.h8_c00092{height:47.988281px;}
.h9_c00092{height:49.937344px;}
.h1_c00092{height:50.315273px;}
.h2_c00092{height:56.320312px;}
.h5_c00092{height:60.257812px;}
.h7_c00092{height:65.130220px;}
.h6_c00092{height:65.130820px;}
.h3_c00092{height:72.160312px;}
.h4_c00092{height:81.476719px;}
.h0_c00092{height:1263.000000px;}
.w1_c00092{width:892.500000px;}
.w0_c00092{width:892.830000px;}
.x0_c00092{left:0.000000px;}
.x1_c00092{left:127.620000px;}
.x2_c00092{left:180.810000px;}
@media print{
.v3_c00092{vertical-align:-26.559467pt;}
.v0_c00092{vertical-align:0.000000pt;}
.v1_c00092{vertical-align:14.080000pt;}
.v2_c00092{vertical-align:26.560000pt;}
.ls12_c00092{letter-spacing:-0.134400pt;}
.ls16_c00092{letter-spacing:-0.027776pt;}
.ls18_c00092{letter-spacing:-0.025600pt;}
.ls17_c00092{letter-spacing:-0.019200pt;}
.ls15_c00092{letter-spacing:-0.012800pt;}
.ls13_c00092{letter-spacing:-0.006400pt;}
.ls1c_c00092{letter-spacing:-0.004256pt;}
.ls11_c00092{letter-spacing:0.000000pt;}
.ls5_c00092{letter-spacing:0.006400pt;}
.ls7_c00092{letter-spacing:0.006944pt;}
.lsb_c00092{letter-spacing:0.012768pt;}
.ls14_c00092{letter-spacing:0.012800pt;}
.ls2_c00092{letter-spacing:0.013888pt;}
.lse_c00092{letter-spacing:0.017024pt;}
.ls9_c00092{letter-spacing:0.019200pt;}
.lsa_c00092{letter-spacing:0.025600pt;}
.ls10_c00092{letter-spacing:0.029792pt;}
.lsf_c00092{letter-spacing:0.038304pt;}
.ls19_c00092{letter-spacing:0.038400pt;}
.ls0_c00092{letter-spacing:0.042752pt;}
.ls4_c00092{letter-spacing:0.048608pt;}
.ls8_c00092{letter-spacing:0.048672pt;}
.ls1a_c00092{letter-spacing:0.083200pt;}
.lsc_c00092{letter-spacing:0.092480pt;}
.lsd_c00092{letter-spacing:0.304128pt;}
.ls1b_c00092{letter-spacing:6.131200pt;}
.ls6_c00092{letter-spacing:31.248000pt;}
.ls3_c00092{letter-spacing:73.814720pt;}
.ls1_c00092{letter-spacing:1090.880000pt;}
.ws1_c00092{word-spacing:-17.408608pt;}
.ws0_c00092{word-spacing:-17.373888pt;}
.ws2_c00092{word-spacing:-17.332224pt;}
.ws4_c00092{word-spacing:-9.911808pt;}
.ws3_c00092{word-spacing:-9.408672pt;}
.wsd_c00092{word-spacing:-0.194432pt;}
.ws2a_c00092{word-spacing:-0.021280pt;}
.ws24_c00092{word-spacing:-0.012800pt;}
.ws2b_c00092{word-spacing:-0.012768pt;}
.ws6_c00092{word-spacing:0.000000pt;}
.ws29_c00092{word-spacing:0.004256pt;}
.wsc_c00092{word-spacing:0.006400pt;}
.wsb_c00092{word-spacing:0.012800pt;}
.ws2c_c00092{word-spacing:0.021280pt;}
.ws5_c00092{word-spacing:0.037408pt;}
.ws23_c00092{word-spacing:0.633600pt;}
.ws7_c00092{word-spacing:0.646400pt;}
.ws8_c00092{word-spacing:0.678400pt;}
.ws1b_c00092{word-spacing:0.966400pt;}
.ws18_c00092{word-spacing:1.945600pt;}
.ws1e_c00092{word-spacing:2.566400pt;}
.ws1f_c00092{word-spacing:2.668800pt;}
.ws15_c00092{word-spacing:2.841600pt;}
.ws14_c00092{word-spacing:2.892800pt;}
.ws26_c00092{word-spacing:2.905600pt;}
.ws22_c00092{word-spacing:3.174400pt;}
.ws21_c00092{word-spacing:3.257600pt;}
.ws13_c00092{word-spacing:3.827200pt;}
.ws28_c00092{word-spacing:5.139200pt;}
.ws27_c00092{word-spacing:5.171200pt;}
.wsa_c00092{word-spacing:6.022400pt;}
.ws25_c00092{word-spacing:6.086400pt;}
.ws20_c00092{word-spacing:6.092800pt;}
.ws9_c00092{word-spacing:6.150400pt;}
.ws17_c00092{word-spacing:6.700800pt;}
.ws16_c00092{word-spacing:6.713600pt;}
.ws1c_c00092{word-spacing:7.686400pt;}
.ws1d_c00092{word-spacing:7.724800pt;}
.wse_c00092{word-spacing:14.739200pt;}
.ws12_c00092{word-spacing:15.699200pt;}
.ws11_c00092{word-spacing:15.705600pt;}
.ws1a_c00092{word-spacing:16.934400pt;}
.ws19_c00092{word-spacing:16.953600pt;}
.wsf_c00092{word-spacing:20.448000pt;}
.ws10_c00092{word-spacing:20.505600pt;}
._3_c00092{margin-left:-6.848000pt;}
._2_c00092{margin-left:-5.888000pt;}
._4_c00092{margin-left:-4.992000pt;}
._0_c00092{margin-left:-1.175680pt;}
._1_c00092{width:0.960000pt;}
.fs6_c00092{font-size:34.560000pt;}
.fs4_c00092{font-size:37.440000pt;}
.fs5_c00092{font-size:42.560000pt;}
.fs1_c00092{font-size:48.000000pt;}
.fs0_c00092{font-size:53.440000pt;}
.fs2_c00092{font-size:64.000000pt;}
.fs3_c00092{font-size:69.440000pt;}
.y0_c00092{bottom:0.000000pt;}
.y3_c00092{bottom:51.067067pt;}
.y24_c00092{bottom:101.065307pt;}
.y23_c00092{bottom:117.390427pt;}
.y22_c00092{bottom:133.632027pt;}
.y21_c00092{bottom:149.868667pt;}
.y20_c00092{bottom:166.190427pt;}
.y1f_c00092{bottom:182.427067pt;}
.y1e_c00092{bottom:195.947067pt;}
.y1d_c00092{bottom:214.347067pt;}
.y1c_c00092{bottom:232.747067pt;}
.y1b_c00092{bottom:265.467200pt;}
.y1a_c00092{bottom:296.107200pt;}
.y19_c00092{bottom:326.667067pt;}
.y18_c00092{bottom:357.307067pt;}
.y17_c00092{bottom:387.867067pt;}
.y16_c00092{bottom:418.507067pt;}
.y15_c00092{bottom:449.067067pt;}
.y14_c00092{bottom:479.707067pt;}
.y13_c00092{bottom:510.267067pt;}
.y12_c00092{bottom:540.907067pt;}
.y11_c00092{bottom:571.467067pt;}
.y10_c00092{bottom:602.107067pt;}
.yf_c00092{bottom:632.667067pt;}
.ye_c00092{bottom:663.307067pt;}
.yd_c00092{bottom:693.867067pt;}
.yc_c00092{bottom:724.507067pt;}
.yb_c00092{bottom:755.067067pt;}
.ya_c00092{bottom:785.707067pt;}
.y9_c00092{bottom:816.267067pt;}
.y8_c00092{bottom:856.267067pt;}
.y7_c00092{bottom:912.027067pt;}
.y6_c00092{bottom:942.587067pt;}
.y5_c00092{bottom:973.227067pt;}
.y4_c00092{bottom:1013.227067pt;}
.y2_c00092{bottom:1046.987067pt;}
.y1_c00092{bottom:1063.867067pt;}
.h8_c00092{height:42.656250pt;}
.h9_c00092{height:44.388750pt;}
.h1_c00092{height:44.724687pt;}
.h2_c00092{height:50.062500pt;}
.h5_c00092{height:53.562500pt;}
.h7_c00092{height:57.893529pt;}
.h6_c00092{height:57.894063pt;}
.h3_c00092{height:64.142500pt;}
.h4_c00092{height:72.423750pt;}
.h0_c00092{height:1122.666667pt;}
.w1_c00092{width:793.333333pt;}
.w0_c00092{width:793.626667pt;}
.x0_c00092{left:0.000000pt;}
.x1_c00092{left:113.440000pt;}
.x2_c00092{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_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_1dd60c3f7fda046884483aca.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00093;src:url('chunks/assets/font_4967159b5fceefe76b34d82f.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00093;src:url('chunks/assets/font_4f88aad8480b023c82b1b90d.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00093;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00093{font-family:ff5_c00093;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_c00093;src:url('chunks/assets/font_c45c25e8b3c22de892a4eda5.woff2')format("woff");}.ff6_c00093{font-family:ff6_c00093;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_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;}
.v1_c00093{vertical-align:29.880000px;}
.ls13_c00093{letter-spacing:-0.151200px;}
.ls11_c00093{letter-spacing:-0.048096px;}
.ls17_c00093{letter-spacing:-0.036000px;}
.ls19_c00093{letter-spacing:-0.031248px;}
.ls14_c00093{letter-spacing:-0.021600px;}
.ls10_c00093{letter-spacing:-0.018036px;}
.ls15_c00093{letter-spacing:-0.014400px;}
.ls1b_c00093{letter-spacing:-0.011664px;}
.ls16_c00093{letter-spacing:-0.007200px;}
.ls12_c00093{letter-spacing:0.000000px;}
.ls2_c00093{letter-spacing:0.007200px;}
.ls6_c00093{letter-spacing:0.014364px;}
.ls1a_c00093{letter-spacing:0.014400px;}
.ls9_c00093{letter-spacing:0.019152px;}
.ls3_c00093{letter-spacing:0.021600px;}
.lsc_c00093{letter-spacing:0.023940px;}
.lsf_c00093{letter-spacing:0.033516px;}
.ls4_c00093{letter-spacing:0.036000px;}
.ls0_c00093{letter-spacing:0.036072px;}
.lsb_c00093{letter-spacing:0.038304px;}
.lsa_c00093{letter-spacing:0.043092px;}
.ls1_c00093{letter-spacing:0.054756px;}
.lse_c00093{letter-spacing:0.062244px;}
.lsd_c00093{letter-spacing:0.067032px;}
.ls18_c00093{letter-spacing:0.093600px;}
.ls7_c00093{letter-spacing:0.104040px;}
.ls8_c00093{letter-spacing:0.342144px;}
.ls5_c00093{letter-spacing:29.373120px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00093{word-spacing:-19.530000px;}
.ws3_c00093{word-spacing:-13.310640px;}
.ws2_c00093{word-spacing:-11.150784px;}
.ws4_c00093{word-spacing:-10.796976px;}
.ws0_c00093{word-spacing:-10.584756px;}
.ws25_c00093{word-spacing:-0.086400px;}
.ws21_c00093{word-spacing:-0.062496px;}
.ws31_c00093{word-spacing:-0.043092px;}
.ws19_c00093{word-spacing:-0.036000px;}
.ws2a_c00093{word-spacing:-0.023940px;}
.ws2e_c00093{word-spacing:-0.019152px;}
.ws32_c00093{word-spacing:-0.014364px;}
.ws18_c00093{word-spacing:-0.007200px;}
.ws8_c00093{word-spacing:0.000000px;}
.ws29_c00093{word-spacing:0.004788px;}
.ws1a_c00093{word-spacing:0.007200px;}
.wsf_c00093{word-spacing:0.014400px;}
.ws24_c00093{word-spacing:0.050400px;}
.ws5_c00093{word-spacing:0.054108px;}
.ws6_c00093{word-spacing:0.108216px;}
.ws7_c00093{word-spacing:0.138276px;}
.ws1d_c00093{word-spacing:2.109600px;}
.ws22_c00093{word-spacing:2.181600px;}
.ws28_c00093{word-spacing:2.505600px;}
.ws27_c00093{word-spacing:2.527200px;}
.ws13_c00093{word-spacing:3.960000px;}
.ws14_c00093{word-spacing:3.981600px;}
.ws2f_c00093{word-spacing:5.013036px;}
.ws30_c00093{word-spacing:5.017824px;}
.ws12_c00093{word-spacing:5.752800px;}
.ws11_c00093{word-spacing:5.774400px;}
.ws2d_c00093{word-spacing:8.230572px;}
.ws2b_c00093{word-spacing:8.259300px;}
.ws2c_c00093{word-spacing:8.273664px;}
.ws26_c00093{word-spacing:8.949600px;}
.ws20_c00093{word-spacing:9.360000px;}
.ws1f_c00093{word-spacing:9.432000px;}
.wsd_c00093{word-spacing:10.879200px;}
.wse_c00093{word-spacing:10.965600px;}
.wsa_c00093{word-spacing:11.109600px;}
.ws9_c00093{word-spacing:11.181600px;}
.ws15_c00093{word-spacing:15.098400px;}
.ws17_c00093{word-spacing:15.134400px;}
.ws16_c00093{word-spacing:15.141600px;}
.wsc_c00093{word-spacing:15.408000px;}
.wsb_c00093{word-spacing:15.494400px;}
.ws10_c00093{word-spacing:17.640000px;}
.ws1b_c00093{word-spacing:17.676000px;}
.ws1e_c00093{word-spacing:19.087200px;}
.ws23_c00093{word-spacing:19.418400px;}
.ws1c_c00093{word-spacing:47.880000px;}
._0_c00093{margin-left:-1.142280px;}
._1_c00093{width:1.152000px;}
.fc0_c00093{color:rgb(0,0,0);}
.fs6_c00093{font-size:38.880000px;}
.fs3_c00093{font-size:42.120000px;}
.fs5_c00093{font-size:47.880000px;}
.fs2_c00093{font-size:54.000000px;}
.fs0_c00093{font-size:60.120000px;}
.fs1_c00093{font-size:72.000000px;}
.fs4_c00093{font-size:78.120000px;}
.y0_c00093{bottom:0.000000px;}
.y3_c00093{bottom:57.450450px;}
.y4_c00093{bottom:61.410450px;}
.y26_c00093{bottom:113.698470px;}
.y25_c00093{bottom:132.073050px;}
.y24_c00093{bottom:150.339270px;}
.y23_c00093{bottom:168.605490px;}
.y22_c00093{bottom:182.466750px;}
.y21_c00093{bottom:200.732970px;}
.y20_c00093{bottom:214.498470px;}
.y1f_c00093{bottom:232.864230px;}
.y1e_c00093{bottom:251.130450px;}
.y1d_c00093{bottom:266.340450px;}
.y1c_c00093{bottom:287.040450px;}
.y1b_c00093{bottom:307.740450px;}
.y1a_c00093{bottom:370.380450px;}
.y19_c00093{bottom:404.760450px;}
.y18_c00093{bottom:448.230450px;}
.y17_c00093{bottom:482.610450px;}
.y16_c00093{bottom:517.080450px;}
.y15_c00093{bottom:562.080450px;}
.y14_c00093{bottom:624.810600px;}
.y13_c00093{bottom:659.190600px;}
.y12_c00093{bottom:693.660600px;}
.y11_c00093{bottom:728.040600px;}
.y10_c00093{bottom:762.510600px;}
.yf_c00093{bottom:796.890600px;}
.ye_c00093{bottom:831.360450px;}
.yd_c00093{bottom:865.740450px;}
.yc_c00093{bottom:900.210450px;}
.yb_c00093{bottom:934.590450px;}
.ya_c00093{bottom:969.060450px;}
.y9_c00093{bottom:1003.440450px;}
.y8_c00093{bottom:1037.910450px;}
.y7_c00093{bottom:1072.290450px;}
.y6_c00093{bottom:1106.760450px;}
.y5_c00093{bottom:1141.140450px;}
.y2_c00093{bottom:1173.810450px;}
.y1_c00093{bottom:1196.850450px;}
.h2_c00093{height:47.988281px;}
.h9_c00093{height:49.937344px;}
.ha_c00093{height:49.945264px;}
.h1_c00093{height:50.315273px;}
.h3_c00093{height:56.320312px;}
.h5_c00093{height:60.257812px;}
.h6_c00093{height:65.130220px;}
.h4_c00093{height:65.130820px;}
.h8_c00093{height:65.131420px;}
.h7_c00093{height:81.476719px;}
.h0_c00093{height:1263.000000px;}
.w1_c00093{width:892.500000px;}
.w0_c00093{width:892.830000px;}
.x0_c00093{left:0.000000px;}
.x2_c00093{left:127.620000px;}
.x1_c00093{left:145.440000px;}
.x6_c00093{left:154.616760px;}
.x5_c00093{left:180.810000px;}
.x4_c00093{left:439.020000px;}
.x3_c00093{left:446.490000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.v1_c00093{vertical-align:26.560000pt;}
.ls13_c00093{letter-spacing:-0.134400pt;}
.ls11_c00093{letter-spacing:-0.042752pt;}
.ls17_c00093{letter-spacing:-0.032000pt;}
.ls19_c00093{letter-spacing:-0.027776pt;}
.ls14_c00093{letter-spacing:-0.019200pt;}
.ls10_c00093{letter-spacing:-0.016032pt;}
.ls15_c00093{letter-spacing:-0.012800pt;}
.ls1b_c00093{letter-spacing:-0.010368pt;}
.ls16_c00093{letter-spacing:-0.006400pt;}
.ls12_c00093{letter-spacing:0.000000pt;}
.ls2_c00093{letter-spacing:0.006400pt;}
.ls6_c00093{letter-spacing:0.012768pt;}
.ls1a_c00093{letter-spacing:0.012800pt;}
.ls9_c00093{letter-spacing:0.017024pt;}
.ls3_c00093{letter-spacing:0.019200pt;}
.lsc_c00093{letter-spacing:0.021280pt;}
.lsf_c00093{letter-spacing:0.029792pt;}
.ls4_c00093{letter-spacing:0.032000pt;}
.ls0_c00093{letter-spacing:0.032064pt;}
.lsb_c00093{letter-spacing:0.034048pt;}
.lsa_c00093{letter-spacing:0.038304pt;}
.ls1_c00093{letter-spacing:0.048672pt;}
.lse_c00093{letter-spacing:0.055328pt;}
.lsd_c00093{letter-spacing:0.059584pt;}
.ls18_c00093{letter-spacing:0.083200pt;}
.ls7_c00093{letter-spacing:0.092480pt;}
.ls8_c00093{letter-spacing:0.304128pt;}
.ls5_c00093{letter-spacing:26.109440pt;}
.ws1_c00093{word-spacing:-17.360000pt;}
.ws3_c00093{word-spacing:-11.831680pt;}
.ws2_c00093{word-spacing:-9.911808pt;}
.ws4_c00093{word-spacing:-9.597312pt;}
.ws0_c00093{word-spacing:-9.408672pt;}
.ws25_c00093{word-spacing:-0.076800pt;}
.ws21_c00093{word-spacing:-0.055552pt;}
.ws31_c00093{word-spacing:-0.038304pt;}
.ws19_c00093{word-spacing:-0.032000pt;}
.ws2a_c00093{word-spacing:-0.021280pt;}
.ws2e_c00093{word-spacing:-0.017024pt;}
.ws32_c00093{word-spacing:-0.012768pt;}
.ws18_c00093{word-spacing:-0.006400pt;}
.ws8_c00093{word-spacing:0.000000pt;}
.ws29_c00093{word-spacing:0.004256pt;}
.ws1a_c00093{word-spacing:0.006400pt;}
.wsf_c00093{word-spacing:0.012800pt;}
.ws24_c00093{word-spacing:0.044800pt;}
.ws5_c00093{word-spacing:0.048096pt;}
.ws6_c00093{word-spacing:0.096192pt;}
.ws7_c00093{word-spacing:0.122912pt;}
.ws1d_c00093{word-spacing:1.875200pt;}
.ws22_c00093{word-spacing:1.939200pt;}
.ws28_c00093{word-spacing:2.227200pt;}
.ws27_c00093{word-spacing:2.246400pt;}
.ws13_c00093{word-spacing:3.520000pt;}
.ws14_c00093{word-spacing:3.539200pt;}
.ws2f_c00093{word-spacing:4.456032pt;}
.ws30_c00093{word-spacing:4.460288pt;}
.ws12_c00093{word-spacing:5.113600pt;}
.ws11_c00093{word-spacing:5.132800pt;}
.ws2d_c00093{word-spacing:7.316064pt;}
.ws2b_c00093{word-spacing:7.341600pt;}
.ws2c_c00093{word-spacing:7.354368pt;}
.ws26_c00093{word-spacing:7.955200pt;}
.ws20_c00093{word-spacing:8.320000pt;}
.ws1f_c00093{word-spacing:8.384000pt;}
.wsd_c00093{word-spacing:9.670400pt;}
.wse_c00093{word-spacing:9.747200pt;}
.wsa_c00093{word-spacing:9.875200pt;}
.ws9_c00093{word-spacing:9.939200pt;}
.ws15_c00093{word-spacing:13.420800pt;}
.ws17_c00093{word-spacing:13.452800pt;}
.ws16_c00093{word-spacing:13.459200pt;}
.wsc_c00093{word-spacing:13.696000pt;}
.wsb_c00093{word-spacing:13.772800pt;}
.ws10_c00093{word-spacing:15.680000pt;}
.ws1b_c00093{word-spacing:15.712000pt;}
.ws1e_c00093{word-spacing:16.966400pt;}
.ws23_c00093{word-spacing:17.260800pt;}
.ws1c_c00093{word-spacing:42.560000pt;}
._0_c00093{margin-left:-1.015360pt;}
._1_c00093{width:1.024000pt;}
.fs6_c00093{font-size:34.560000pt;}
.fs3_c00093{font-size:37.440000pt;}
.fs5_c00093{font-size:42.560000pt;}
.fs2_c00093{font-size:48.000000pt;}
.fs0_c00093{font-size:53.440000pt;}
.fs1_c00093{font-size:64.000000pt;}
.fs4_c00093{font-size:69.440000pt;}
.y0_c00093{bottom:0.000000pt;}
.y3_c00093{bottom:51.067067pt;}
.y4_c00093{bottom:54.587067pt;}
.y26_c00093{bottom:101.065307pt;}
.y25_c00093{bottom:117.398267pt;}
.y24_c00093{bottom:133.634907pt;}
.y23_c00093{bottom:149.871547pt;}
.y22_c00093{bottom:162.192667pt;}
.y21_c00093{bottom:178.429307pt;}
.y20_c00093{bottom:190.665307pt;}
.y1f_c00093{bottom:206.990427pt;}
.y1e_c00093{bottom:223.227067pt;}
.y1d_c00093{bottom:236.747067pt;}
.y1c_c00093{bottom:255.147067pt;}
.y1b_c00093{bottom:273.547067pt;}
.y1a_c00093{bottom:329.227067pt;}
.y19_c00093{bottom:359.787067pt;}
.y18_c00093{bottom:398.427067pt;}
.y17_c00093{bottom:428.987067pt;}
.y16_c00093{bottom:459.627067pt;}
.y15_c00093{bottom:499.627067pt;}
.y14_c00093{bottom:555.387200pt;}
.y13_c00093{bottom:585.947200pt;}
.y12_c00093{bottom:616.587200pt;}
.y11_c00093{bottom:647.147200pt;}
.y10_c00093{bottom:677.787200pt;}
.yf_c00093{bottom:708.347200pt;}
.ye_c00093{bottom:738.987067pt;}
.yd_c00093{bottom:769.547067pt;}
.yc_c00093{bottom:800.187067pt;}
.yb_c00093{bottom:830.747067pt;}
.ya_c00093{bottom:861.387067pt;}
.y9_c00093{bottom:891.947067pt;}
.y8_c00093{bottom:922.587067pt;}
.y7_c00093{bottom:953.147067pt;}
.y6_c00093{bottom:983.787067pt;}
.y5_c00093{bottom:1014.347067pt;}
.y2_c00093{bottom:1043.387067pt;}
.y1_c00093{bottom:1063.867067pt;}
.h2_c00093{height:42.656250pt;}
.h9_c00093{height:44.388750pt;}
.ha_c00093{height:44.395790pt;}
.h1_c00093{height:44.724687pt;}
.h3_c00093{height:50.062500pt;}
.h5_c00093{height:53.562500pt;}
.h6_c00093{height:57.893529pt;}
.h4_c00093{height:57.894063pt;}
.h8_c00093{height:57.894596pt;}
.h7_c00093{height:72.423750pt;}
.h0_c00093{height:1122.666667pt;}
.w1_c00093{width:793.333333pt;}
.w0_c00093{width:793.626667pt;}
.x0_c00093{left:0.000000pt;}
.x2_c00093{left:113.440000pt;}
.x1_c00093{left:129.280000pt;}
.x6_c00093{left:137.437120pt;}
.x5_c00093{left:160.720000pt;}
.x4_c00093{left:390.240000pt;}
.x3_c00093{left:396.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_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_976e73c86da85a0b9e9f61d5.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.100098;font-style:normal;font-weight:normal;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_93b2156676a10fd889104838.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;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_c00094;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00094;src:url('chunks/assets/font_c45c25e8b3c22de892a4eda5.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;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_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);}
.v3_c00094{vertical-align:-29.880000px;}
.v0_c00094{vertical-align:0.000000px;}
.v1_c00094{vertical-align:15.840000px;}
.v2_c00094{vertical-align:29.880000px;}
.ls14_c00094{letter-spacing:-0.151200px;}
.ls17_c00094{letter-spacing:-0.050400px;}
.ls1b_c00094{letter-spacing:-0.043200px;}
.ls16_c00094{letter-spacing:-0.036000px;}
.ls1a_c00094{letter-spacing:-0.028800px;}
.ls19_c00094{letter-spacing:-0.021600px;}
.ls18_c00094{letter-spacing:-0.014400px;}
.ls15_c00094{letter-spacing:-0.007200px;}
.ls13_c00094{letter-spacing:0.000000px;}
.ls4_c00094{letter-spacing:0.007200px;}
.lsb_c00094{letter-spacing:0.014364px;}
.ls8_c00094{letter-spacing:0.014400px;}
.lse_c00094{letter-spacing:0.019152px;}
.ls5_c00094{letter-spacing:0.021600px;}
.lsa_c00094{letter-spacing:0.033516px;}
.ls10_c00094{letter-spacing:0.038304px;}
.lsf_c00094{letter-spacing:0.043092px;}
.ls0_c00094{letter-spacing:0.048096px;}
.ls11_c00094{letter-spacing:0.052668px;}
.ls6_c00094{letter-spacing:0.054756px;}
.ls12_c00094{letter-spacing:0.057456px;}
.ls9_c00094{letter-spacing:0.072000px;}
.ls7_c00094{letter-spacing:0.093600px;}
.lsc_c00094{letter-spacing:0.104040px;}
.ls2_c00094{letter-spacing:0.144000px;}
.lsd_c00094{letter-spacing:0.342144px;}
.ls3_c00094{letter-spacing:65.304000px;}
.ls1_c00094{letter-spacing:1227.240000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00094{word-spacing:-18.093600px;}
.ws2_c00094{word-spacing:-17.971200px;}
.ws3_c00094{word-spacing:-11.150784px;}
.ws0_c00094{word-spacing:-10.584756px;}
.ws20_c00094{word-spacing:-0.086400px;}
.ws30_c00094{word-spacing:-0.033516px;}
.ws2b_c00094{word-spacing:-0.023940px;}
.ws29_c00094{word-spacing:-0.014364px;}
.ws21_c00094{word-spacing:-0.007200px;}
.ws5_c00094{word-spacing:0.000000px;}
.ws2a_c00094{word-spacing:0.004788px;}
.ws8_c00094{word-spacing:0.007200px;}
.ws1a_c00094{word-spacing:0.021600px;}
.ws4_c00094{word-spacing:0.042084px;}
.ws12_c00094{word-spacing:0.057600px;}
.ws1d_c00094{word-spacing:0.223200px;}
.ws1b_c00094{word-spacing:1.843200px;}
.ws19_c00094{word-spacing:1.850400px;}
.ws18_c00094{word-spacing:1.857600px;}
.ws1c_c00094{word-spacing:1.980000px;}
.ws2d_c00094{word-spacing:3.926160px;}
.ws2c_c00094{word-spacing:3.940524px;}
.ws17_c00094{word-spacing:4.327200px;}
.ws23_c00094{word-spacing:5.335200px;}
.wsa_c00094{word-spacing:5.349600px;}
.ws9_c00094{word-spacing:5.400000px;}
.ws22_c00094{word-spacing:5.472000px;}
.ws2f_c00094{word-spacing:6.439860px;}
.ws2e_c00094{word-spacing:6.459012px;}
.ws27_c00094{word-spacing:8.654400px;}
.ws28_c00094{word-spacing:8.791200px;}
.ws1f_c00094{word-spacing:11.188800px;}
.wsc_c00094{word-spacing:12.520800px;}
.wsb_c00094{word-spacing:12.578400px;}
.wsd_c00094{word-spacing:12.636000px;}
.ws1e_c00094{word-spacing:12.974400px;}
.ws11_c00094{word-spacing:14.450400px;}
.ws10_c00094{word-spacing:14.464800px;}
.ws16_c00094{word-spacing:15.501600px;}
.ws25_c00094{word-spacing:15.566400px;}
.ws26_c00094{word-spacing:15.609600px;}
.ws15_c00094{word-spacing:16.948800px;}
.ws14_c00094{word-spacing:16.984800px;}
.wsf_c00094{word-spacing:17.294400px;}
.wse_c00094{word-spacing:17.402400px;}
.ws13_c00094{word-spacing:18.698400px;}
.ws7_c00094{word-spacing:18.720000px;}
.ws6_c00094{word-spacing:18.727200px;}
.ws24_c00094{word-spacing:18.734400px;}
._0_c00094{margin-left:-1.322640px;}
._1_c00094{width:1.087200px;}
.fc0_c00094{color:rgb(0,0,0);}
.fs5_c00094{font-size:38.880000px;}
.fs3_c00094{font-size:42.120000px;}
.fs4_c00094{font-size:47.880000px;}
.fs1_c00094{font-size:54.000000px;}
.fs0_c00094{font-size:60.120000px;}
.fs2_c00094{font-size:72.000000px;}
.y0_c00094{bottom:0.000000px;}
.y3_c00094{bottom:57.450450px;}
.y27_c00094{bottom:113.707470px;}
.y26_c00094{bottom:127.568730px;}
.y25_c00094{bottom:141.334230px;}
.y24_c00094{bottom:159.602250px;}
.y23_c00094{bottom:177.964230px;}
.y22_c00094{bottom:196.237830px;}
.y21_c00094{bottom:214.504050px;}
.y20_c00094{bottom:232.866030px;}
.y1f_c00094{bottom:251.132250px;}
.y1e_c00094{bottom:269.398470px;}
.y1d_c00094{bottom:287.760450px;}
.y1c_c00094{bottom:302.970450px;}
.y1b_c00094{bottom:323.580450px;}
.y1a_c00094{bottom:344.280450px;}
.y19_c00094{bottom:373.260450px;}
.y18_c00094{bottom:407.640450px;}
.y17_c00094{bottom:442.110450px;}
.y16_c00094{bottom:476.490450px;}
.y15_c00094{bottom:519.960450px;}
.y14_c00094{bottom:554.340450px;}
.y13_c00094{bottom:588.810450px;}
.y12_c00094{bottom:632.190450px;}
.y11_c00094{bottom:666.660450px;}
.y10_c00094{bottom:710.040450px;}
.yf_c00094{bottom:744.510450px;}
.ye_c00094{bottom:778.890450px;}
.yd_c00094{bottom:813.360450px;}
.yc_c00094{bottom:847.740450px;}
.yb_c00094{bottom:882.210450px;}
.ya_c00094{bottom:925.590450px;}
.y9_c00094{bottom:960.060450px;}
.y8_c00094{bottom:994.440450px;}
.y7_c00094{bottom:1028.910450px;}
.y6_c00094{bottom:1063.290450px;}
.y5_c00094{bottom:1106.760450px;}
.y4_c00094{bottom:1141.140450px;}
.y2_c00094{bottom:1177.860450px;}
.y1_c00094{bottom:1196.850450px;}
.h8_c00094{height:47.988281px;}
.h9_c00094{height:49.937344px;}
.h1_c00094{height:50.315273px;}
.h2_c00094{height:56.320312px;}
.h4_c00094{height:60.257812px;}
.h6_c00094{height:65.130820px;}
.h7_c00094{height:65.131420px;}
.h3_c00094{height:72.160312px;}
.h5_c00094{height:75.093750px;}
.h0_c00094{height:1263.000000px;}
.w1_c00094{width:892.500000px;}
.w0_c00094{width:892.830000px;}
.x0_c00094{left:0.000000px;}
.x1_c00094{left:127.620000px;}
.x2_c00094{left:154.620000px;}
.x3_c00094{left:181.620000px;}
.x4_c00094{left:208.620000px;}
@media print{
.v3_c00094{vertical-align:-26.560000pt;}
.v0_c00094{vertical-align:0.000000pt;}
.v1_c00094{vertical-align:14.080000pt;}
.v2_c00094{vertical-align:26.560000pt;}
.ls14_c00094{letter-spacing:-0.134400pt;}
.ls17_c00094{letter-spacing:-0.044800pt;}
.ls1b_c00094{letter-spacing:-0.038400pt;}
.ls16_c00094{letter-spacing:-0.032000pt;}
.ls1a_c00094{letter-spacing:-0.025600pt;}
.ls19_c00094{letter-spacing:-0.019200pt;}
.ls18_c00094{letter-spacing:-0.012800pt;}
.ls15_c00094{letter-spacing:-0.006400pt;}
.ls13_c00094{letter-spacing:0.000000pt;}
.ls4_c00094{letter-spacing:0.006400pt;}
.lsb_c00094{letter-spacing:0.012768pt;}
.ls8_c00094{letter-spacing:0.012800pt;}
.lse_c00094{letter-spacing:0.017024pt;}
.ls5_c00094{letter-spacing:0.019200pt;}
.lsa_c00094{letter-spacing:0.029792pt;}
.ls10_c00094{letter-spacing:0.034048pt;}
.lsf_c00094{letter-spacing:0.038304pt;}
.ls0_c00094{letter-spacing:0.042752pt;}
.ls11_c00094{letter-spacing:0.046816pt;}
.ls6_c00094{letter-spacing:0.048672pt;}
.ls12_c00094{letter-spacing:0.051072pt;}
.ls9_c00094{letter-spacing:0.064000pt;}
.ls7_c00094{letter-spacing:0.083200pt;}
.lsc_c00094{letter-spacing:0.092480pt;}
.ls2_c00094{letter-spacing:0.128000pt;}
.lsd_c00094{letter-spacing:0.304128pt;}
.ls3_c00094{letter-spacing:58.048000pt;}
.ls1_c00094{letter-spacing:1090.880000pt;}
.ws1_c00094{word-spacing:-16.083200pt;}
.ws2_c00094{word-spacing:-15.974400pt;}
.ws3_c00094{word-spacing:-9.911808pt;}
.ws0_c00094{word-spacing:-9.408672pt;}
.ws20_c00094{word-spacing:-0.076800pt;}
.ws30_c00094{word-spacing:-0.029792pt;}
.ws2b_c00094{word-spacing:-0.021280pt;}
.ws29_c00094{word-spacing:-0.012768pt;}
.ws21_c00094{word-spacing:-0.006400pt;}
.ws5_c00094{word-spacing:0.000000pt;}
.ws2a_c00094{word-spacing:0.004256pt;}
.ws8_c00094{word-spacing:0.006400pt;}
.ws1a_c00094{word-spacing:0.019200pt;}
.ws4_c00094{word-spacing:0.037408pt;}
.ws12_c00094{word-spacing:0.051200pt;}
.ws1d_c00094{word-spacing:0.198400pt;}
.ws1b_c00094{word-spacing:1.638400pt;}
.ws19_c00094{word-spacing:1.644800pt;}
.ws18_c00094{word-spacing:1.651200pt;}
.ws1c_c00094{word-spacing:1.760000pt;}
.ws2d_c00094{word-spacing:3.489920pt;}
.ws2c_c00094{word-spacing:3.502688pt;}
.ws17_c00094{word-spacing:3.846400pt;}
.ws23_c00094{word-spacing:4.742400pt;}
.wsa_c00094{word-spacing:4.755200pt;}
.ws9_c00094{word-spacing:4.800000pt;}
.ws22_c00094{word-spacing:4.864000pt;}
.ws2f_c00094{word-spacing:5.724320pt;}
.ws2e_c00094{word-spacing:5.741344pt;}
.ws27_c00094{word-spacing:7.692800pt;}
.ws28_c00094{word-spacing:7.814400pt;}
.ws1f_c00094{word-spacing:9.945600pt;}
.wsc_c00094{word-spacing:11.129600pt;}
.wsb_c00094{word-spacing:11.180800pt;}
.wsd_c00094{word-spacing:11.232000pt;}
.ws1e_c00094{word-spacing:11.532800pt;}
.ws11_c00094{word-spacing:12.844800pt;}
.ws10_c00094{word-spacing:12.857600pt;}
.ws16_c00094{word-spacing:13.779200pt;}
.ws25_c00094{word-spacing:13.836800pt;}
.ws26_c00094{word-spacing:13.875200pt;}
.ws15_c00094{word-spacing:15.065600pt;}
.ws14_c00094{word-spacing:15.097600pt;}
.wsf_c00094{word-spacing:15.372800pt;}
.wse_c00094{word-spacing:15.468800pt;}
.ws13_c00094{word-spacing:16.620800pt;}
.ws7_c00094{word-spacing:16.640000pt;}
.ws6_c00094{word-spacing:16.646400pt;}
.ws24_c00094{word-spacing:16.652800pt;}
._0_c00094{margin-left:-1.175680pt;}
._1_c00094{width:0.966400pt;}
.fs5_c00094{font-size:34.560000pt;}
.fs3_c00094{font-size:37.440000pt;}
.fs4_c00094{font-size:42.560000pt;}
.fs1_c00094{font-size:48.000000pt;}
.fs0_c00094{font-size:53.440000pt;}
.fs2_c00094{font-size:64.000000pt;}
.y0_c00094{bottom:0.000000pt;}
.y3_c00094{bottom:51.067067pt;}
.y27_c00094{bottom:101.073307pt;}
.y26_c00094{bottom:113.394427pt;}
.y25_c00094{bottom:125.630427pt;}
.y24_c00094{bottom:141.868667pt;}
.y23_c00094{bottom:158.190427pt;}
.y22_c00094{bottom:174.433627pt;}
.y21_c00094{bottom:190.670267pt;}
.y20_c00094{bottom:206.992027pt;}
.y1f_c00094{bottom:223.228667pt;}
.y1e_c00094{bottom:239.465307pt;}
.y1d_c00094{bottom:255.787067pt;}
.y1c_c00094{bottom:269.307067pt;}
.y1b_c00094{bottom:287.627067pt;}
.y1a_c00094{bottom:306.027067pt;}
.y19_c00094{bottom:331.787067pt;}
.y18_c00094{bottom:362.347067pt;}
.y17_c00094{bottom:392.987067pt;}
.y16_c00094{bottom:423.547067pt;}
.y15_c00094{bottom:462.187067pt;}
.y14_c00094{bottom:492.747067pt;}
.y13_c00094{bottom:523.387067pt;}
.y12_c00094{bottom:561.947067pt;}
.y11_c00094{bottom:592.587067pt;}
.y10_c00094{bottom:631.147067pt;}
.yf_c00094{bottom:661.787067pt;}
.ye_c00094{bottom:692.347067pt;}
.yd_c00094{bottom:722.987067pt;}
.yc_c00094{bottom:753.547067pt;}
.yb_c00094{bottom:784.187067pt;}
.ya_c00094{bottom:822.747067pt;}
.y9_c00094{bottom:853.387067pt;}
.y8_c00094{bottom:883.947067pt;}
.y7_c00094{bottom:914.587067pt;}
.y6_c00094{bottom:945.147067pt;}
.y5_c00094{bottom:983.787067pt;}
.y4_c00094{bottom:1014.347067pt;}
.y2_c00094{bottom:1046.987067pt;}
.y1_c00094{bottom:1063.867067pt;}
.h8_c00094{height:42.656250pt;}
.h9_c00094{height:44.388750pt;}
.h1_c00094{height:44.724687pt;}
.h2_c00094{height:50.062500pt;}
.h4_c00094{height:53.562500pt;}
.h6_c00094{height:57.894063pt;}
.h7_c00094{height:57.894596pt;}
.h3_c00094{height:64.142500pt;}
.h5_c00094{height:66.750000pt;}
.h0_c00094{height:1122.666667pt;}
.w1_c00094{width:793.333333pt;}
.w0_c00094{width:793.626667pt;}
.x0_c00094{left:0.000000pt;}
.x1_c00094{left:113.440000pt;}
.x2_c00094{left:137.440000pt;}
.x3_c00094{left:161.440000pt;}
.x4_c00094{left:185.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_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_d42d8557765c76441e786bc4.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00095;src:url('chunks/assets/font_adf5860fb7157c65b02ff9bc.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00095;src:url('chunks/assets/font_a6f6a8337b239ae86e2019ca.woff2')format("woff");}.ff4_c00095{font-family:ff4_c00095;line-height:0.684570;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00095;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00095{font-family:ff5_c00095;line-height:1.281250;font-style: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;}
.v1_c00095{vertical-align:29.880000px;}
.ls10_c00095{letter-spacing:-0.151200px;}
.lse_c00095{letter-spacing:-0.048096px;}
.ls16_c00095{letter-spacing:-0.043200px;}
.ls17_c00095{letter-spacing:-0.036000px;}
.ls15_c00095{letter-spacing:-0.028800px;}
.ls13_c00095{letter-spacing:-0.021600px;}
.lsd_c00095{letter-spacing:-0.018036px;}
.ls14_c00095{letter-spacing:-0.014400px;}
.ls19_c00095{letter-spacing:-0.011664px;}
.ls11_c00095{letter-spacing:-0.007200px;}
.ls18_c00095{letter-spacing:-0.003888px;}
.lsf_c00095{letter-spacing:0.000000px;}
.ls4_c00095{letter-spacing:0.007200px;}
.lsa_c00095{letter-spacing:0.014364px;}
.ls6_c00095{letter-spacing:0.014400px;}
.lsc_c00095{letter-spacing:0.019152px;}
.ls9_c00095{letter-spacing:0.033516px;}
.ls0_c00095{letter-spacing:0.036072px;}
.ls8_c00095{letter-spacing:0.038304px;}
.ls1_c00095{letter-spacing:0.054756px;}
.ls12_c00095{letter-spacing:0.093600px;}
.lsb_c00095{letter-spacing:0.104040px;}
.ls2_c00095{letter-spacing:0.144000px;}
.ls5_c00095{letter-spacing:44.784000px;}
.ls7_c00095{letter-spacing:45.504000px;}
.ls3_c00095{letter-spacing:66.024000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00095{word-spacing:-17.992800px;}
.ws2_c00095{word-spacing:-10.796976px;}
.ws1_c00095{word-spacing:-10.584756px;}
.ws24_c00095{word-spacing:-0.019152px;}
.ws11_c00095{word-spacing:-0.007200px;}
.ws6_c00095{word-spacing:0.000000px;}
.ws25_c00095{word-spacing:0.004788px;}
.wsa_c00095{word-spacing:0.007200px;}
.ws22_c00095{word-spacing:0.014400px;}
.ws3_c00095{word-spacing:0.054108px;}
.ws9_c00095{word-spacing:0.079200px;}
.ws16_c00095{word-spacing:0.086400px;}
.ws4_c00095{word-spacing:0.108216px;}
.ws5_c00095{word-spacing:0.138276px;}
.ws1f_c00095{word-spacing:0.374400px;}
.ws1e_c00095{word-spacing:0.396000px;}
.ws19_c00095{word-spacing:1.814400px;}
.ws1d_c00095{word-spacing:1.828800px;}
.ws1a_c00095{word-spacing:1.836000px;}
.ws1b_c00095{word-spacing:2.541600px;}
.ws1c_c00095{word-spacing:2.599200px;}
.ws14_c00095{word-spacing:2.815200px;}
.ws15_c00095{word-spacing:2.887200px;}
.ws23_c00095{word-spacing:2.916000px;}
.ws17_c00095{word-spacing:6.494400px;}
.ws18_c00095{word-spacing:6.508800px;}
.ws21_c00095{word-spacing:8.287200px;}
.ws20_c00095{word-spacing:8.424000px;}
.wse_c00095{word-spacing:12.232800px;}
.wsc_c00095{word-spacing:12.247200px;}
.wsb_c00095{word-spacing:12.261600px;}
.wsf_c00095{word-spacing:12.268800px;}
.ws10_c00095{word-spacing:12.283200px;}
.ws12_c00095{word-spacing:23.400000px;}
.ws13_c00095{word-spacing:23.551200px;}
.ws7_c00095{word-spacing:32.097600px;}
.ws8_c00095{word-spacing:32.140800px;}
.wsd_c00095{word-spacing:42.494400px;}
._0_c00095{margin-left:-1.142280px;}
._1_c00095{width:1.224000px;}
.fc0_c00095{color:rgb(0,0,0);}
.fs5_c00095{font-size:38.880000px;}
.fs3_c00095{font-size:42.120000px;}
.fs4_c00095{font-size:47.880000px;}
.fs2_c00095{font-size:54.000000px;}
.fs0_c00095{font-size:60.120000px;}
.fs1_c00095{font-size:72.000000px;}
.y0_c00095{bottom:0.000000px;}
.y3_c00095{bottom:57.450450px;}
.y4_c00095{bottom:61.410450px;}
.y23_c00095{bottom:113.706030px;}
.y22_c00095{bottom:132.068010px;}
.y21_c00095{bottom:150.334230px;}
.y20_c00095{bottom:168.600450px;}
.y1f_c00095{bottom:183.810600px;}
.y1e_c00095{bottom:204.510600px;}
.y1d_c00095{bottom:225.210450px;}
.y1c_c00095{bottom:286.410450px;}
.y1b_c00095{bottom:320.790450px;}
.y1a_c00095{bottom:364.260450px;}
.y19_c00095{bottom:398.640450px;}
.y18_c00095{bottom:433.110450px;}
.y17_c00095{bottom:467.490450px;}
.y16_c00095{bottom:510.960450px;}
.y15_c00095{bottom:545.340450px;}
.y14_c00095{bottom:579.810450px;}
.y13_c00095{bottom:614.190450px;}
.y12_c00095{bottom:657.660450px;}
.y11_c00095{bottom:692.040450px;}
.y10_c00095{bottom:735.510450px;}
.yf_c00095{bottom:769.890450px;}
.ye_c00095{bottom:804.360450px;}
.yd_c00095{bottom:847.740450px;}
.yc_c00095{bottom:882.210450px;}
.yb_c00095{bottom:916.590450px;}
.ya_c00095{bottom:951.060450px;}
.y9_c00095{bottom:985.440450px;}
.y8_c00095{bottom:1028.910450px;}
.y7_c00095{bottom:1063.290450px;}
.y6_c00095{bottom:1106.760450px;}
.y5_c00095{bottom:1141.140450px;}
.y2_c00095{bottom:1173.810450px;}
.y1_c00095{bottom:1196.850450px;}
.h2_c00095{height:47.988281px;}
.h7_c00095{height:47.988881px;}
.h8_c00095{height:49.937344px;}
.h1_c00095{height:50.315273px;}
.h3_c00095{height:56.320312px;}
.h4_c00095{height:60.257812px;}
.h5_c00095{height:65.130820px;}
.h6_c00095{height:75.093750px;}
.h0_c00095{height:1263.000000px;}
.w1_c00095{width:892.500000px;}
.w0_c00095{width:892.830000px;}
.x0_c00095{left:0.000000px;}
.x2_c00095{left:127.620000px;}
.x1_c00095{left:145.440000px;}
.x7_c00095{left:154.446750px;}
.x5_c00095{left:180.810000px;}
.x8_c00095{left:207.180000px;}
.x6_c00095{left:208.620000px;}
.x9_c00095{left:235.620000px;}
.x4_c00095{left:439.020000px;}
.x3_c00095{left:446.490000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.v1_c00095{vertical-align:26.560000pt;}
.ls10_c00095{letter-spacing:-0.134400pt;}
.lse_c00095{letter-spacing:-0.042752pt;}
.ls16_c00095{letter-spacing:-0.038400pt;}
.ls17_c00095{letter-spacing:-0.032000pt;}
.ls15_c00095{letter-spacing:-0.025600pt;}
.ls13_c00095{letter-spacing:-0.019200pt;}
.lsd_c00095{letter-spacing:-0.016032pt;}
.ls14_c00095{letter-spacing:-0.012800pt;}
.ls19_c00095{letter-spacing:-0.010368pt;}
.ls11_c00095{letter-spacing:-0.006400pt;}
.ls18_c00095{letter-spacing:-0.003456pt;}
.lsf_c00095{letter-spacing:0.000000pt;}
.ls4_c00095{letter-spacing:0.006400pt;}
.lsa_c00095{letter-spacing:0.012768pt;}
.ls6_c00095{letter-spacing:0.012800pt;}
.lsc_c00095{letter-spacing:0.017024pt;}
.ls9_c00095{letter-spacing:0.029792pt;}
.ls0_c00095{letter-spacing:0.032064pt;}
.ls8_c00095{letter-spacing:0.034048pt;}
.ls1_c00095{letter-spacing:0.048672pt;}
.ls12_c00095{letter-spacing:0.083200pt;}
.lsb_c00095{letter-spacing:0.092480pt;}
.ls2_c00095{letter-spacing:0.128000pt;}
.ls5_c00095{letter-spacing:39.808000pt;}
.ls7_c00095{letter-spacing:40.448000pt;}
.ls3_c00095{letter-spacing:58.688000pt;}
.ws0_c00095{word-spacing:-15.993600pt;}
.ws2_c00095{word-spacing:-9.597312pt;}
.ws1_c00095{word-spacing:-9.408672pt;}
.ws24_c00095{word-spacing:-0.017024pt;}
.ws11_c00095{word-spacing:-0.006400pt;}
.ws6_c00095{word-spacing:0.000000pt;}
.ws25_c00095{word-spacing:0.004256pt;}
.wsa_c00095{word-spacing:0.006400pt;}
.ws22_c00095{word-spacing:0.012800pt;}
.ws3_c00095{word-spacing:0.048096pt;}
.ws9_c00095{word-spacing:0.070400pt;}
.ws16_c00095{word-spacing:0.076800pt;}
.ws4_c00095{word-spacing:0.096192pt;}
.ws5_c00095{word-spacing:0.122912pt;}
.ws1f_c00095{word-spacing:0.332800pt;}
.ws1e_c00095{word-spacing:0.352000pt;}
.ws19_c00095{word-spacing:1.612800pt;}
.ws1d_c00095{word-spacing:1.625600pt;}
.ws1a_c00095{word-spacing:1.632000pt;}
.ws1b_c00095{word-spacing:2.259200pt;}
.ws1c_c00095{word-spacing:2.310400pt;}
.ws14_c00095{word-spacing:2.502400pt;}
.ws15_c00095{word-spacing:2.566400pt;}
.ws23_c00095{word-spacing:2.592000pt;}
.ws17_c00095{word-spacing:5.772800pt;}
.ws18_c00095{word-spacing:5.785600pt;}
.ws21_c00095{word-spacing:7.366400pt;}
.ws20_c00095{word-spacing:7.488000pt;}
.wse_c00095{word-spacing:10.873600pt;}
.wsc_c00095{word-spacing:10.886400pt;}
.wsb_c00095{word-spacing:10.899200pt;}
.wsf_c00095{word-spacing:10.905600pt;}
.ws10_c00095{word-spacing:10.918400pt;}
.ws12_c00095{word-spacing:20.800000pt;}
.ws13_c00095{word-spacing:20.934400pt;}
.ws7_c00095{word-spacing:28.531200pt;}
.ws8_c00095{word-spacing:28.569600pt;}
.wsd_c00095{word-spacing:37.772800pt;}
._0_c00095{margin-left:-1.015360pt;}
._1_c00095{width:1.088000pt;}
.fs5_c00095{font-size:34.560000pt;}
.fs3_c00095{font-size:37.440000pt;}
.fs4_c00095{font-size:42.560000pt;}
.fs2_c00095{font-size:48.000000pt;}
.fs0_c00095{font-size:53.440000pt;}
.fs1_c00095{font-size:64.000000pt;}
.y0_c00095{bottom:0.000000pt;}
.y3_c00095{bottom:51.067067pt;}
.y4_c00095{bottom:54.587067pt;}
.y23_c00095{bottom:101.072027pt;}
.y22_c00095{bottom:117.393787pt;}
.y21_c00095{bottom:133.630427pt;}
.y20_c00095{bottom:149.867067pt;}
.y1f_c00095{bottom:163.387200pt;}
.y1e_c00095{bottom:181.787200pt;}
.y1d_c00095{bottom:200.187067pt;}
.y1c_c00095{bottom:254.587067pt;}
.y1b_c00095{bottom:285.147067pt;}
.y1a_c00095{bottom:323.787067pt;}
.y19_c00095{bottom:354.347067pt;}
.y18_c00095{bottom:384.987067pt;}
.y17_c00095{bottom:415.547067pt;}
.y16_c00095{bottom:454.187067pt;}
.y15_c00095{bottom:484.747067pt;}
.y14_c00095{bottom:515.387067pt;}
.y13_c00095{bottom:545.947067pt;}
.y12_c00095{bottom:584.587067pt;}
.y11_c00095{bottom:615.147067pt;}
.y10_c00095{bottom:653.787067pt;}
.yf_c00095{bottom:684.347067pt;}
.ye_c00095{bottom:714.987067pt;}
.yd_c00095{bottom:753.547067pt;}
.yc_c00095{bottom:784.187067pt;}
.yb_c00095{bottom:814.747067pt;}
.ya_c00095{bottom:845.387067pt;}
.y9_c00095{bottom:875.947067pt;}
.y8_c00095{bottom:914.587067pt;}
.y7_c00095{bottom:945.147067pt;}
.y6_c00095{bottom:983.787067pt;}
.y5_c00095{bottom:1014.347067pt;}
.y2_c00095{bottom:1043.387067pt;}
.y1_c00095{bottom:1063.867067pt;}
.h2_c00095{height:42.656250pt;}
.h7_c00095{height:42.656783pt;}
.h8_c00095{height:44.388750pt;}
.h1_c00095{height:44.724687pt;}
.h3_c00095{height:50.062500pt;}
.h4_c00095{height:53.562500pt;}
.h5_c00095{height:57.894063pt;}
.h6_c00095{height:66.750000pt;}
.h0_c00095{height:1122.666667pt;}
.w1_c00095{width:793.333333pt;}
.w0_c00095{width:793.626667pt;}
.x0_c00095{left:0.000000pt;}
.x2_c00095{left:113.440000pt;}
.x1_c00095{left:129.280000pt;}
.x7_c00095{left:137.286000pt;}
.x5_c00095{left:160.720000pt;}
.x8_c00095{left:184.160000pt;}
.x6_c00095{left:185.440000pt;}
.x9_c00095{left:209.440000pt;}
.x4_c00095{left:390.240000pt;}
.x3_c00095{left:396.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_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_b84bb079e3ac864e04337029.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.100098;font-style:normal;font-weight:normal;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_a8f42db0a0732cf7d49cdd44.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;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_c00096;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00096;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.281250;font-style: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;}
.v1_c00096{vertical-align:15.840000px;}
.v2_c00096{vertical-align:29.880000px;}
.lse_c00096{letter-spacing:-0.151200px;}
.ls12_c00096{letter-spacing:-0.036000px;}
.lsf_c00096{letter-spacing:-0.028800px;}
.ls13_c00096{letter-spacing:-0.021600px;}
.ls10_c00096{letter-spacing:-0.014400px;}
.ls16_c00096{letter-spacing:-0.011664px;}
.ls11_c00096{letter-spacing:-0.007200px;}
.ls15_c00096{letter-spacing:-0.003888px;}
.lsd_c00096{letter-spacing:0.000000px;}
.ls3_c00096{letter-spacing:0.007200px;}
.lsa_c00096{letter-spacing:0.014364px;}
.ls5_c00096{letter-spacing:0.014400px;}
.lsc_c00096{letter-spacing:0.019152px;}
.ls9_c00096{letter-spacing:0.021600px;}
.ls6_c00096{letter-spacing:0.036000px;}
.ls0_c00096{letter-spacing:0.048096px;}
.ls2_c00096{letter-spacing:0.054756px;}
.ls7_c00096{letter-spacing:0.057600px;}
.ls14_c00096{letter-spacing:0.093600px;}
.lsb_c00096{letter-spacing:0.104040px;}
.ls4_c00096{letter-spacing:44.784000px;}
.ls8_c00096{letter-spacing:45.504000px;}
.ls1_c00096{letter-spacing:1227.240000px;}
.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;}
}
.ws1_c00096{word-spacing:-10.796976px;}
.ws0_c00096{word-spacing:-10.584756px;}
.ws13_c00096{word-spacing:-0.093600px;}
.ws10_c00096{word-spacing:-0.079200px;}
.wsb_c00096{word-spacing:-0.050400px;}
.ws3_c00096{word-spacing:0.000000px;}
.ws29_c00096{word-spacing:0.004788px;}
.ws12_c00096{word-spacing:0.007200px;}
.ws1f_c00096{word-spacing:0.014400px;}
.wsd_c00096{word-spacing:0.036000px;}
.ws2_c00096{word-spacing:0.042084px;}
.wsa_c00096{word-spacing:0.057600px;}
.ws20_c00096{word-spacing:0.079200px;}
.ws26_c00096{word-spacing:0.302400px;}
.ws27_c00096{word-spacing:0.453600px;}
.ws28_c00096{word-spacing:0.475200px;}
.ws25_c00096{word-spacing:1.800000px;}
.ws11_c00096{word-spacing:2.181600px;}
.ws9_c00096{word-spacing:3.650400px;}
.ws4_c00096{word-spacing:3.988800px;}
.ws5_c00096{word-spacing:5.004000px;}
.wsc_c00096{word-spacing:5.025600px;}
.ws6_c00096{word-spacing:5.068800px;}
.wsf_c00096{word-spacing:5.702400px;}
.wse_c00096{word-spacing:6.004800px;}
.ws21_c00096{word-spacing:6.501600px;}
.ws22_c00096{word-spacing:6.516000px;}
.ws1a_c00096{word-spacing:7.509600px;}
.ws1b_c00096{word-spacing:7.574400px;}
.ws16_c00096{word-spacing:10.008000px;}
.ws17_c00096{word-spacing:10.108800px;}
.ws1d_c00096{word-spacing:12.139200px;}
.ws1c_c00096{word-spacing:12.254400px;}
.ws1e_c00096{word-spacing:12.268800px;}
.ws23_c00096{word-spacing:12.592800px;}
.ws24_c00096{word-spacing:12.715200px;}
.ws8_c00096{word-spacing:12.967200px;}
.ws7_c00096{word-spacing:12.974400px;}
.ws19_c00096{word-spacing:14.047200px;}
.ws18_c00096{word-spacing:20.556000px;}
.ws15_c00096{word-spacing:26.193600px;}
.ws14_c00096{word-spacing:26.280000px;}
._0_c00096{margin-left:-1.322640px;}
._1_c00096{width:1.152000px;}
.fc0_c00096{color:rgb(0,0,0);}
.fs5_c00096{font-size:38.880000px;}
.fs3_c00096{font-size:42.120000px;}
.fs4_c00096{font-size:47.880000px;}
.fs1_c00096{font-size:54.000000px;}
.fs0_c00096{font-size:60.120000px;}
.fs2_c00096{font-size:72.000000px;}
.y0_c00096{bottom:0.000000px;}
.y3_c00096{bottom:57.450450px;}
.y21_c00096{bottom:113.698470px;}
.y20_c00096{bottom:132.064230px;}
.y1f_c00096{bottom:150.330450px;}
.y1e_c00096{bottom:165.540450px;}
.y1d_c00096{bottom:186.240450px;}
.y1c_c00096{bottom:206.940600px;}
.y1b_c00096{bottom:295.410600px;}
.y1a_c00096{bottom:329.790600px;}
.y19_c00096{bottom:364.260600px;}
.y18_c00096{bottom:398.640600px;}
.y17_c00096{bottom:442.110450px;}
.y16_c00096{bottom:476.490450px;}
.y15_c00096{bottom:510.960450px;}
.y14_c00096{bottom:545.340450px;}
.y13_c00096{bottom:579.810450px;}
.y12_c00096{bottom:614.190450px;}
.y11_c00096{bottom:648.660450px;}
.y10_c00096{bottom:683.040450px;}
.yf_c00096{bottom:726.510450px;}
.ye_c00096{bottom:769.890450px;}
.yd_c00096{bottom:804.360450px;}
.yc_c00096{bottom:847.740450px;}
.yb_c00096{bottom:882.210450px;}
.ya_c00096{bottom:925.590450px;}
.y9_c00096{bottom:960.060450px;}
.y8_c00096{bottom:1003.440450px;}
.y7_c00096{bottom:1037.910450px;}
.y6_c00096{bottom:1072.290450px;}
.y5_c00096{bottom:1106.760450px;}
.y4_c00096{bottom:1141.140450px;}
.y2_c00096{bottom:1177.860450px;}
.y1_c00096{bottom:1196.850450px;}
.h7_c00096{height:47.988281px;}
.h8_c00096{height:49.937344px;}
.h9_c00096{height:49.945264px;}
.h1_c00096{height:50.315273px;}
.h2_c00096{height:56.320312px;}
.h4_c00096{height:60.257812px;}
.h5_c00096{height:65.130820px;}
.h3_c00096{height:72.160312px;}
.h6_c00096{height:75.093750px;}
.h0_c00096{height:1263.000000px;}
.w1_c00096{width:892.500000px;}
.w0_c00096{width:892.830000px;}
.x0_c00096{left:0.000000px;}
.x1_c00096{left:127.620000px;}
.x3_c00096{left:180.810000px;}
.x2_c00096{left:208.620000px;}
.x5_c00096{left:222.120000px;}
.x4_c00096{left:235.620000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.v1_c00096{vertical-align:14.080000pt;}
.v2_c00096{vertical-align:26.560000pt;}
.lse_c00096{letter-spacing:-0.134400pt;}
.ls12_c00096{letter-spacing:-0.032000pt;}
.lsf_c00096{letter-spacing:-0.025600pt;}
.ls13_c00096{letter-spacing:-0.019200pt;}
.ls10_c00096{letter-spacing:-0.012800pt;}
.ls16_c00096{letter-spacing:-0.010368pt;}
.ls11_c00096{letter-spacing:-0.006400pt;}
.ls15_c00096{letter-spacing:-0.003456pt;}
.lsd_c00096{letter-spacing:0.000000pt;}
.ls3_c00096{letter-spacing:0.006400pt;}
.lsa_c00096{letter-spacing:0.012768pt;}
.ls5_c00096{letter-spacing:0.012800pt;}
.lsc_c00096{letter-spacing:0.017024pt;}
.ls9_c00096{letter-spacing:0.019200pt;}
.ls6_c00096{letter-spacing:0.032000pt;}
.ls0_c00096{letter-spacing:0.042752pt;}
.ls2_c00096{letter-spacing:0.048672pt;}
.ls7_c00096{letter-spacing:0.051200pt;}
.ls14_c00096{letter-spacing:0.083200pt;}
.lsb_c00096{letter-spacing:0.092480pt;}
.ls4_c00096{letter-spacing:39.808000pt;}
.ls8_c00096{letter-spacing:40.448000pt;}
.ls1_c00096{letter-spacing:1090.880000pt;}
.ws1_c00096{word-spacing:-9.597312pt;}
.ws0_c00096{word-spacing:-9.408672pt;}
.ws13_c00096{word-spacing:-0.083200pt;}
.ws10_c00096{word-spacing:-0.070400pt;}
.wsb_c00096{word-spacing:-0.044800pt;}
.ws3_c00096{word-spacing:0.000000pt;}
.ws29_c00096{word-spacing:0.004256pt;}
.ws12_c00096{word-spacing:0.006400pt;}
.ws1f_c00096{word-spacing:0.012800pt;}
.wsd_c00096{word-spacing:0.032000pt;}
.ws2_c00096{word-spacing:0.037408pt;}
.wsa_c00096{word-spacing:0.051200pt;}
.ws20_c00096{word-spacing:0.070400pt;}
.ws26_c00096{word-spacing:0.268800pt;}
.ws27_c00096{word-spacing:0.403200pt;}
.ws28_c00096{word-spacing:0.422400pt;}
.ws25_c00096{word-spacing:1.600000pt;}
.ws11_c00096{word-spacing:1.939200pt;}
.ws9_c00096{word-spacing:3.244800pt;}
.ws4_c00096{word-spacing:3.545600pt;}
.ws5_c00096{word-spacing:4.448000pt;}
.wsc_c00096{word-spacing:4.467200pt;}
.ws6_c00096{word-spacing:4.505600pt;}
.wsf_c00096{word-spacing:5.068800pt;}
.wse_c00096{word-spacing:5.337600pt;}
.ws21_c00096{word-spacing:5.779200pt;}
.ws22_c00096{word-spacing:5.792000pt;}
.ws1a_c00096{word-spacing:6.675200pt;}
.ws1b_c00096{word-spacing:6.732800pt;}
.ws16_c00096{word-spacing:8.896000pt;}
.ws17_c00096{word-spacing:8.985600pt;}
.ws1d_c00096{word-spacing:10.790400pt;}
.ws1c_c00096{word-spacing:10.892800pt;}
.ws1e_c00096{word-spacing:10.905600pt;}
.ws23_c00096{word-spacing:11.193600pt;}
.ws24_c00096{word-spacing:11.302400pt;}
.ws8_c00096{word-spacing:11.526400pt;}
.ws7_c00096{word-spacing:11.532800pt;}
.ws19_c00096{word-spacing:12.486400pt;}
.ws18_c00096{word-spacing:18.272000pt;}
.ws15_c00096{word-spacing:23.283200pt;}
.ws14_c00096{word-spacing:23.360000pt;}
._0_c00096{margin-left:-1.175680pt;}
._1_c00096{width:1.024000pt;}
.fs5_c00096{font-size:34.560000pt;}
.fs3_c00096{font-size:37.440000pt;}
.fs4_c00096{font-size:42.560000pt;}
.fs1_c00096{font-size:48.000000pt;}
.fs0_c00096{font-size:53.440000pt;}
.fs2_c00096{font-size:64.000000pt;}
.y0_c00096{bottom:0.000000pt;}
.y3_c00096{bottom:51.067067pt;}
.y21_c00096{bottom:101.065307pt;}
.y20_c00096{bottom:117.390427pt;}
.y1f_c00096{bottom:133.627067pt;}
.y1e_c00096{bottom:147.147067pt;}
.y1d_c00096{bottom:165.547067pt;}
.y1c_c00096{bottom:183.947200pt;}
.y1b_c00096{bottom:262.587200pt;}
.y1a_c00096{bottom:293.147200pt;}
.y19_c00096{bottom:323.787200pt;}
.y18_c00096{bottom:354.347200pt;}
.y17_c00096{bottom:392.987067pt;}
.y16_c00096{bottom:423.547067pt;}
.y15_c00096{bottom:454.187067pt;}
.y14_c00096{bottom:484.747067pt;}
.y13_c00096{bottom:515.387067pt;}
.y12_c00096{bottom:545.947067pt;}
.y11_c00096{bottom:576.587067pt;}
.y10_c00096{bottom:607.147067pt;}
.yf_c00096{bottom:645.787067pt;}
.ye_c00096{bottom:684.347067pt;}
.yd_c00096{bottom:714.987067pt;}
.yc_c00096{bottom:753.547067pt;}
.yb_c00096{bottom:784.187067pt;}
.ya_c00096{bottom:822.747067pt;}
.y9_c00096{bottom:853.387067pt;}
.y8_c00096{bottom:891.947067pt;}
.y7_c00096{bottom:922.587067pt;}
.y6_c00096{bottom:953.147067pt;}
.y5_c00096{bottom:983.787067pt;}
.y4_c00096{bottom:1014.347067pt;}
.y2_c00096{bottom:1046.987067pt;}
.y1_c00096{bottom:1063.867067pt;}
.h7_c00096{height:42.656250pt;}
.h8_c00096{height:44.388750pt;}
.h9_c00096{height:44.395790pt;}
.h1_c00096{height:44.724687pt;}
.h2_c00096{height:50.062500pt;}
.h4_c00096{height:53.562500pt;}
.h5_c00096{height:57.894062pt;}
.h3_c00096{height:64.142500pt;}
.h6_c00096{height:66.750000pt;}
.h0_c00096{height:1122.666667pt;}
.w1_c00096{width:793.333333pt;}
.w0_c00096{width:793.626667pt;}
.x0_c00096{left:0.000000pt;}
.x1_c00096{left:113.440000pt;}
.x3_c00096{left:160.720000pt;}
.x2_c00096{left:185.440000pt;}
.x5_c00096{left:197.440000pt;}
.x4_c00096{left:209.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_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_bede8575b0d8921331eb22ec.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00097;src:url('chunks/assets/font_4d7d43315a541e29d9fa9bb1.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00097;src:url('chunks/assets/font_367950a7f9cfe10c760aea25.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00097;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00097{font-family:ff5_c00097;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_c00097;src:url('chunks/assets/font_31cad05ea362e7bb50d75dab.woff2')format("woff");}.ff6_c00097{font-family:ff6_c00097;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_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;}
.v1_c00097{vertical-align:29.880000px;}
.ls11_c00097{letter-spacing:-0.151200px;}
.lsf_c00097{letter-spacing:-0.048096px;}
.ls1b_c00097{letter-spacing:-0.036000px;}
.ls12_c00097{letter-spacing:-0.028800px;}
.ls17_c00097{letter-spacing:-0.021600px;}
.lse_c00097{letter-spacing:-0.018036px;}
.ls14_c00097{letter-spacing:-0.014400px;}
.ls1d_c00097{letter-spacing:-0.011664px;}
.ls1a_c00097{letter-spacing:-0.007812px;}
.ls1e_c00097{letter-spacing:-0.007776px;}
.ls15_c00097{letter-spacing:-0.007200px;}
.ls1c_c00097{letter-spacing:-0.003888px;}
.ls10_c00097{letter-spacing:0.000000px;}
.ls4_c00097{letter-spacing:0.007200px;}
.lsc_c00097{letter-spacing:0.009576px;}
.ls6_c00097{letter-spacing:0.014364px;}
.ls16_c00097{letter-spacing:0.014400px;}
.ls2_c00097{letter-spacing:0.015624px;}
.ls8_c00097{letter-spacing:0.019152px;}
.ls5_c00097{letter-spacing:0.021600px;}
.ls9_c00097{letter-spacing:0.028728px;}
.lsd_c00097{letter-spacing:0.033516px;}
.ls0_c00097{letter-spacing:0.036072px;}
.ls18_c00097{letter-spacing:0.043200px;}
.lsa_c00097{letter-spacing:0.052668px;}
.ls1_c00097{letter-spacing:0.054756px;}
.lsb_c00097{letter-spacing:0.057456px;}
.ls13_c00097{letter-spacing:0.093600px;}
.ls19_c00097{letter-spacing:0.093744px;}
.ls7_c00097{letter-spacing:0.104040px;}
.ls3_c00097{letter-spacing:83.041560px;}
.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;}
}
.ws2_c00097{word-spacing:-19.623744px;}
.ws1_c00097{word-spacing:-19.545624px;}
.ws3_c00097{word-spacing:-19.522188px;}
.ws5_c00097{word-spacing:-13.310640px;}
.ws6_c00097{word-spacing:-10.804752px;}
.ws4_c00097{word-spacing:-10.796976px;}
.ws0_c00097{word-spacing:-10.584756px;}
.wsc_c00097{word-spacing:-0.093600px;}
.ws2a_c00097{word-spacing:-0.014364px;}
.ws29_c00097{word-spacing:-0.009576px;}
.wsa_c00097{word-spacing:0.000000px;}
.ws28_c00097{word-spacing:0.004788px;}
.ws1c_c00097{word-spacing:0.007200px;}
.ws2e_c00097{word-spacing:0.009576px;}
.ws7_c00097{word-spacing:0.054108px;}
.ws8_c00097{word-spacing:0.108216px;}
.ws9_c00097{word-spacing:0.138276px;}
.ws1f_c00097{word-spacing:1.396800px;}
.ws1e_c00097{word-spacing:1.454400px;}
.ws18_c00097{word-spacing:1.807200px;}
.ws19_c00097{word-spacing:1.893600px;}
.wsb_c00097{word-spacing:2.908800px;}
.ws2d_c00097{word-spacing:3.198384px;}
.ws2c_c00097{word-spacing:3.203172px;}
.ws2b_c00097{word-spacing:3.241476px;}
.ws25_c00097{word-spacing:5.428800px;}
.ws10_c00097{word-spacing:8.625600px;}
.wsf_c00097{word-spacing:8.654400px;}
.wse_c00097{word-spacing:9.007200px;}
.wsd_c00097{word-spacing:9.374400px;}
.ws13_c00097{word-spacing:10.036800px;}
.ws12_c00097{word-spacing:10.101600px;}
.ws22_c00097{word-spacing:11.138400px;}
.ws21_c00097{word-spacing:11.217600px;}
.ws1b_c00097{word-spacing:11.815200px;}
.ws1a_c00097{word-spacing:11.887200px;}
.ws11_c00097{word-spacing:12.254400px;}
.ws14_c00097{word-spacing:12.988800px;}
.ws20_c00097{word-spacing:13.003200px;}
.ws16_c00097{word-spacing:15.840000px;}
.ws15_c00097{word-spacing:15.854400px;}
.ws1d_c00097{word-spacing:18.338400px;}
.ws24_c00097{word-spacing:18.842400px;}
.ws23_c00097{word-spacing:18.914400px;}
.ws17_c00097{word-spacing:21.974400px;}
.ws26_c00097{word-spacing:24.832800px;}
.ws27_c00097{word-spacing:24.854400px;}
._0_c00097{margin-left:-1.142280px;}
._1_c00097{width:1.224000px;}
._2_c00097{width:3.666492px;}
.fc0_c00097{color:rgb(0,0,0);}
.fs6_c00097{font-size:38.880000px;}
.fs3_c00097{font-size:42.120000px;}
.fs5_c00097{font-size:47.880000px;}
.fs2_c00097{font-size:54.000000px;}
.fs0_c00097{font-size:60.120000px;}
.fs1_c00097{font-size:72.000000px;}
.fs4_c00097{font-size:78.120000px;}
.y0_c00097{bottom:0.000000px;}
.y3_c00097{bottom:57.450450px;}
.y4_c00097{bottom:61.410450px;}
.y25_c00097{bottom:113.702970px;}
.y24_c00097{bottom:132.064950px;}
.y23_c00097{bottom:145.839810px;}
.y22_c00097{bottom:164.106030px;}
.y21_c00097{bottom:182.468010px;}
.y20_c00097{bottom:200.734230px;}
.y1f_c00097{bottom:219.000450px;}
.y1e_c00097{bottom:234.210450px;}
.y1d_c00097{bottom:254.910450px;}
.y1c_c00097{bottom:275.610450px;}
.y1b_c00097{bottom:317.910600px;}
.y1a_c00097{bottom:352.380600px;}
.y19_c00097{bottom:395.760600px;}
.y18_c00097{bottom:430.230600px;}
.y17_c00097{bottom:464.610450px;}
.y16_c00097{bottom:499.080450px;}
.y15_c00097{bottom:533.460450px;}
.y14_c00097{bottom:567.930450px;}
.y13_c00097{bottom:611.310450px;}
.y12_c00097{bottom:645.780450px;}
.y11_c00097{bottom:680.160450px;}
.y10_c00097{bottom:714.630450px;}
.yf_c00097{bottom:749.010450px;}
.ye_c00097{bottom:783.480450px;}
.yd_c00097{bottom:828.480450px;}
.yc_c00097{bottom:891.210450px;}
.yb_c00097{bottom:925.590450px;}
.ya_c00097{bottom:960.060450px;}
.y9_c00097{bottom:994.440450px;}
.y8_c00097{bottom:1028.910450px;}
.y7_c00097{bottom:1063.290450px;}
.y6_c00097{bottom:1106.760450px;}
.y5_c00097{bottom:1141.140450px;}
.y2_c00097{bottom:1173.810450px;}
.y1_c00097{bottom:1196.850450px;}
.h2_c00097{height:47.988281px;}
.h8_c00097{height:49.937344px;}
.h1_c00097{height:50.315273px;}
.h3_c00097{height:56.320312px;}
.h4_c00097{height:60.257812px;}
.h7_c00097{height:65.130220px;}
.h5_c00097{height:65.130820px;}
.h6_c00097{height:81.476719px;}
.h0_c00097{height:1263.000000px;}
.w1_c00097{width:892.500000px;}
.w0_c00097{width:892.830000px;}
.x0_c00097{left:0.000000px;}
.x2_c00097{left:127.620000px;}
.x1_c00097{left:145.440000px;}
.x7_c00097{left:154.621800px;}
.x5_c00097{left:180.810000px;}
.x6_c00097{left:208.619850px;}
.x4_c00097{left:439.020000px;}
.x3_c00097{left:446.490000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.v1_c00097{vertical-align:26.560000pt;}
.ls11_c00097{letter-spacing:-0.134400pt;}
.lsf_c00097{letter-spacing:-0.042752pt;}
.ls1b_c00097{letter-spacing:-0.032000pt;}
.ls12_c00097{letter-spacing:-0.025600pt;}
.ls17_c00097{letter-spacing:-0.019200pt;}
.lse_c00097{letter-spacing:-0.016032pt;}
.ls14_c00097{letter-spacing:-0.012800pt;}
.ls1d_c00097{letter-spacing:-0.010368pt;}
.ls1a_c00097{letter-spacing:-0.006944pt;}
.ls1e_c00097{letter-spacing:-0.006912pt;}
.ls15_c00097{letter-spacing:-0.006400pt;}
.ls1c_c00097{letter-spacing:-0.003456pt;}
.ls10_c00097{letter-spacing:0.000000pt;}
.ls4_c00097{letter-spacing:0.006400pt;}
.lsc_c00097{letter-spacing:0.008512pt;}
.ls6_c00097{letter-spacing:0.012768pt;}
.ls16_c00097{letter-spacing:0.012800pt;}
.ls2_c00097{letter-spacing:0.013888pt;}
.ls8_c00097{letter-spacing:0.017024pt;}
.ls5_c00097{letter-spacing:0.019200pt;}
.ls9_c00097{letter-spacing:0.025536pt;}
.lsd_c00097{letter-spacing:0.029792pt;}
.ls0_c00097{letter-spacing:0.032064pt;}
.ls18_c00097{letter-spacing:0.038400pt;}
.lsa_c00097{letter-spacing:0.046816pt;}
.ls1_c00097{letter-spacing:0.048672pt;}
.lsb_c00097{letter-spacing:0.051072pt;}
.ls13_c00097{letter-spacing:0.083200pt;}
.ls19_c00097{letter-spacing:0.083328pt;}
.ls7_c00097{letter-spacing:0.092480pt;}
.ls3_c00097{letter-spacing:73.814720pt;}
.ws2_c00097{word-spacing:-17.443328pt;}
.ws1_c00097{word-spacing:-17.373888pt;}
.ws3_c00097{word-spacing:-17.353056pt;}
.ws5_c00097{word-spacing:-11.831680pt;}
.ws6_c00097{word-spacing:-9.604224pt;}
.ws4_c00097{word-spacing:-9.597312pt;}
.ws0_c00097{word-spacing:-9.408672pt;}
.wsc_c00097{word-spacing:-0.083200pt;}
.ws2a_c00097{word-spacing:-0.012768pt;}
.ws29_c00097{word-spacing:-0.008512pt;}
.wsa_c00097{word-spacing:0.000000pt;}
.ws28_c00097{word-spacing:0.004256pt;}
.ws1c_c00097{word-spacing:0.006400pt;}
.ws2e_c00097{word-spacing:0.008512pt;}
.ws7_c00097{word-spacing:0.048096pt;}
.ws8_c00097{word-spacing:0.096192pt;}
.ws9_c00097{word-spacing:0.122912pt;}
.ws1f_c00097{word-spacing:1.241600pt;}
.ws1e_c00097{word-spacing:1.292800pt;}
.ws18_c00097{word-spacing:1.606400pt;}
.ws19_c00097{word-spacing:1.683200pt;}
.wsb_c00097{word-spacing:2.585600pt;}
.ws2d_c00097{word-spacing:2.843008pt;}
.ws2c_c00097{word-spacing:2.847264pt;}
.ws2b_c00097{word-spacing:2.881312pt;}
.ws25_c00097{word-spacing:4.825600pt;}
.ws10_c00097{word-spacing:7.667200pt;}
.wsf_c00097{word-spacing:7.692800pt;}
.wse_c00097{word-spacing:8.006400pt;}
.wsd_c00097{word-spacing:8.332800pt;}
.ws13_c00097{word-spacing:8.921600pt;}
.ws12_c00097{word-spacing:8.979200pt;}
.ws22_c00097{word-spacing:9.900800pt;}
.ws21_c00097{word-spacing:9.971200pt;}
.ws1b_c00097{word-spacing:10.502400pt;}
.ws1a_c00097{word-spacing:10.566400pt;}
.ws11_c00097{word-spacing:10.892800pt;}
.ws14_c00097{word-spacing:11.545600pt;}
.ws20_c00097{word-spacing:11.558400pt;}
.ws16_c00097{word-spacing:14.080000pt;}
.ws15_c00097{word-spacing:14.092800pt;}
.ws1d_c00097{word-spacing:16.300800pt;}
.ws24_c00097{word-spacing:16.748800pt;}
.ws23_c00097{word-spacing:16.812800pt;}
.ws17_c00097{word-spacing:19.532800pt;}
.ws26_c00097{word-spacing:22.073600pt;}
.ws27_c00097{word-spacing:22.092800pt;}
._0_c00097{margin-left:-1.015360pt;}
._1_c00097{width:1.088000pt;}
._2_c00097{width:3.259104pt;}
.fs6_c00097{font-size:34.560000pt;}
.fs3_c00097{font-size:37.440000pt;}
.fs5_c00097{font-size:42.560000pt;}
.fs2_c00097{font-size:48.000000pt;}
.fs0_c00097{font-size:53.440000pt;}
.fs1_c00097{font-size:64.000000pt;}
.fs4_c00097{font-size:69.440000pt;}
.y0_c00097{bottom:0.000000pt;}
.y3_c00097{bottom:51.067067pt;}
.y4_c00097{bottom:54.587067pt;}
.y25_c00097{bottom:101.069307pt;}
.y24_c00097{bottom:117.391067pt;}
.y23_c00097{bottom:129.635387pt;}
.y22_c00097{bottom:145.872027pt;}
.y21_c00097{bottom:162.193787pt;}
.y20_c00097{bottom:178.430427pt;}
.y1f_c00097{bottom:194.667067pt;}
.y1e_c00097{bottom:208.187067pt;}
.y1d_c00097{bottom:226.587067pt;}
.y1c_c00097{bottom:244.987067pt;}
.y1b_c00097{bottom:282.587200pt;}
.y1a_c00097{bottom:313.227200pt;}
.y19_c00097{bottom:351.787200pt;}
.y18_c00097{bottom:382.427200pt;}
.y17_c00097{bottom:412.987067pt;}
.y16_c00097{bottom:443.627067pt;}
.y15_c00097{bottom:474.187067pt;}
.y14_c00097{bottom:504.827067pt;}
.y13_c00097{bottom:543.387067pt;}
.y12_c00097{bottom:574.027067pt;}
.y11_c00097{bottom:604.587067pt;}
.y10_c00097{bottom:635.227067pt;}
.yf_c00097{bottom:665.787067pt;}
.ye_c00097{bottom:696.427067pt;}
.yd_c00097{bottom:736.427067pt;}
.yc_c00097{bottom:792.187067pt;}
.yb_c00097{bottom:822.747067pt;}
.ya_c00097{bottom:853.387067pt;}
.y9_c00097{bottom:883.947067pt;}
.y8_c00097{bottom:914.587067pt;}
.y7_c00097{bottom:945.147067pt;}
.y6_c00097{bottom:983.787067pt;}
.y5_c00097{bottom:1014.347067pt;}
.y2_c00097{bottom:1043.387067pt;}
.y1_c00097{bottom:1063.867067pt;}
.h2_c00097{height:42.656250pt;}
.h8_c00097{height:44.388750pt;}
.h1_c00097{height:44.724687pt;}
.h3_c00097{height:50.062500pt;}
.h4_c00097{height:53.562500pt;}
.h7_c00097{height:57.893529pt;}
.h5_c00097{height:57.894063pt;}
.h6_c00097{height:72.423750pt;}
.h0_c00097{height:1122.666667pt;}
.w1_c00097{width:793.333333pt;}
.w0_c00097{width:793.626667pt;}
.x0_c00097{left:0.000000pt;}
.x2_c00097{left:113.440000pt;}
.x1_c00097{left:129.280000pt;}
.x7_c00097{left:137.441600pt;}
.x5_c00097{left:160.720000pt;}
.x6_c00097{left:185.439867pt;}
.x4_c00097{left:390.240000pt;}
.x3_c00097{left:396.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_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_e88444c6ea2aa0dab36ab186.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.100098;font-style:normal;font-weight:normal;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_fa2e7da25a75f01f6baaaf34.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;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_c00098;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00098;src:url('chunks/assets/font_416e40797d622e0559e273b6.woff2')format("woff");}.ff4_c00098{font-family:ff4_c00098;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00098;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00098{font-family:ff5_c00098;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_c00098;src:url('chunks/assets/font_00e4c0e8174cbde72757d741.woff2')format("woff");}.ff6_c00098{font-family:ff6_c00098;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_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.v1_c00098{vertical-align:15.840000px;}
.v2_c00098{vertical-align:29.880000px;}
.ls14_c00098{letter-spacing:-0.151200px;}
.ls1d_c00098{letter-spacing:-0.043200px;}
.ls1c_c00098{letter-spacing:-0.036000px;}
.ls1a_c00098{letter-spacing:-0.031248px;}
.ls18_c00098{letter-spacing:-0.028800px;}
.ls20_c00098{letter-spacing:-0.023940px;}
.ls15_c00098{letter-spacing:-0.021600px;}
.ls17_c00098{letter-spacing:-0.014400px;}
.ls1b_c00098{letter-spacing:-0.007812px;}
.ls1f_c00098{letter-spacing:-0.007776px;}
.ls16_c00098{letter-spacing:-0.007200px;}
.ls21_c00098{letter-spacing:-0.004788px;}
.ls13_c00098{letter-spacing:0.000000px;}
.lsd_c00098{letter-spacing:0.003888px;}
.ls3_c00098{letter-spacing:0.007200px;}
.lsb_c00098{letter-spacing:0.014364px;}
.ls19_c00098{letter-spacing:0.014400px;}
.ls9_c00098{letter-spacing:0.021600px;}
.ls10_c00098{letter-spacing:0.028728px;}
.ls8_c00098{letter-spacing:0.028800px;}
.lsa_c00098{letter-spacing:0.033516px;}
.ls24_c00098{letter-spacing:0.038304px;}
.ls5_c00098{letter-spacing:0.039060px;}
.lse_c00098{letter-spacing:0.043092px;}
.ls12_c00098{letter-spacing:0.047880px;}
.ls0_c00098{letter-spacing:0.048096px;}
.ls2_c00098{letter-spacing:0.054756px;}
.ls11_c00098{letter-spacing:0.062244px;}
.lsf_c00098{letter-spacing:0.075960px;}
.ls6_c00098{letter-spacing:0.144000px;}
.ls22_c00098{letter-spacing:0.346032px;}
.ls23_c00098{letter-spacing:0.357696px;}
.lsc_c00098{letter-spacing:0.435960px;}
.ls1e_c00098{letter-spacing:1.080000px;}
.ls4_c00098{letter-spacing:35.154000px;}
.ls7_c00098{letter-spacing:66.024000px;}
.ls1_c00098{letter-spacing:1227.240000px;}
.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;}
}
.ws2_c00098{word-spacing:-19.569060px;}
.ws1_c00098{word-spacing:-19.498752px;}
.ws4_c00098{word-spacing:-13.286700px;}
.ws5_c00098{word-spacing:-11.166336px;}
.ws3_c00098{word-spacing:-10.812528px;}
.ws0_c00098{word-spacing:-10.584756px;}
.ws11_c00098{word-spacing:-0.085932px;}
.ws1f_c00098{word-spacing:-0.028800px;}
.ws29_c00098{word-spacing:-0.023940px;}
.ws2e_c00098{word-spacing:-0.019152px;}
.ws27_c00098{word-spacing:-0.014364px;}
.ws7_c00098{word-spacing:0.000000px;}
.ws28_c00098{word-spacing:0.004788px;}
.wsa_c00098{word-spacing:0.007200px;}
.ws2a_c00098{word-spacing:0.023940px;}
.ws6_c00098{word-spacing:0.042084px;}
.ws16_c00098{word-spacing:0.050400px;}
.wsb_c00098{word-spacing:0.072000px;}
.ws14_c00098{word-spacing:0.331200px;}
.ws24_c00098{word-spacing:1.072800px;}
.ws23_c00098{word-spacing:2.872800px;}
.ws22_c00098{word-spacing:2.894400px;}
.ws19_c00098{word-spacing:4.687200px;}
.wsc_c00098{word-spacing:5.752800px;}
.wsd_c00098{word-spacing:6.076800px;}
.wse_c00098{word-spacing:6.084000px;}
.ws17_c00098{word-spacing:7.840800px;}
.ws18_c00098{word-spacing:7.956000px;}
.ws1b_c00098{word-spacing:9.727200px;}
.ws1a_c00098{word-spacing:9.734400px;}
.ws26_c00098{word-spacing:10.778400px;}
.ws1e_c00098{word-spacing:10.807200px;}
.ws25_c00098{word-spacing:10.850400px;}
.ws10_c00098{word-spacing:16.581600px;}
.wsf_c00098{word-spacing:16.588800px;}
.ws1c_c00098{word-spacing:16.876800px;}
.ws1d_c00098{word-spacing:16.956000px;}
.ws20_c00098{word-spacing:18.252000px;}
.ws2d_c00098{word-spacing:18.314100px;}
.ws2c_c00098{word-spacing:18.347616px;}
.ws2b_c00098{word-spacing:18.361980px;}
.ws21_c00098{word-spacing:18.381600px;}
.ws8_c00098{word-spacing:19.008000px;}
.ws9_c00098{word-spacing:19.044000px;}
.ws15_c00098{word-spacing:20.512800px;}
.ws13_c00098{word-spacing:24.127200px;}
.ws12_c00098{word-spacing:32.040000px;}
._0_c00098{margin-left:-1.322640px;}
._1_c00098{width:1.008000px;}
._2_c00098{width:17.571852px;}
.fc0_c00098{color:rgb(0,0,0);}
.fs6_c00098{font-size:38.880000px;}
.fs3_c00098{font-size:42.120000px;}
.fs5_c00098{font-size:47.880000px;}
.fs1_c00098{font-size:54.000000px;}
.fs0_c00098{font-size:60.120000px;}
.fs2_c00098{font-size:72.000000px;}
.fs4_c00098{font-size:78.120000px;}
.y0_c00098{bottom:0.000000px;}
.y3_c00098{bottom:57.450450px;}
.y21_c00098{bottom:113.699190px;}
.y20_c00098{bottom:127.564230px;}
.y1f_c00098{bottom:145.834230px;}
.y1e_c00098{bottom:164.100450px;}
.y1d_c00098{bottom:179.310600px;}
.y1c_c00098{bottom:200.010600px;}
.y1b_c00098{bottom:220.710450px;}
.y1a_c00098{bottom:299.910450px;}
.y19_c00098{bottom:334.380450px;}
.y18_c00098{bottom:368.760450px;}
.y17_c00098{bottom:403.230450px;}
.y16_c00098{bottom:446.610450px;}
.y15_c00098{bottom:481.080450px;}
.y14_c00098{bottom:515.460450px;}
.y13_c00098{bottom:549.930450px;}
.y12_c00098{bottom:584.310450px;}
.y11_c00098{bottom:618.780450px;}
.y10_c00098{bottom:671.160450px;}
.yf_c00098{bottom:705.630450px;}
.ye_c00098{bottom:740.010450px;}
.yd_c00098{bottom:774.480450px;}
.yc_c00098{bottom:817.860450px;}
.yb_c00098{bottom:852.330450px;}
.ya_c00098{bottom:897.330450px;}
.y9_c00098{bottom:960.060450px;}
.y8_c00098{bottom:994.440450px;}
.y7_c00098{bottom:1028.910450px;}
.y6_c00098{bottom:1063.290450px;}
.y5_c00098{bottom:1106.760450px;}
.y4_c00098{bottom:1141.140450px;}
.y2_c00098{bottom:1177.860450px;}
.y1_c00098{bottom:1196.850450px;}
.h9_c00098{height:47.988281px;}
.h8_c00098{height:47.988881px;}
.ha_c00098{height:49.937344px;}
.h1_c00098{height:50.315273px;}
.h2_c00098{height:56.320312px;}
.h5_c00098{height:60.257812px;}
.h4_c00098{height:65.130820px;}
.h3_c00098{height:72.160312px;}
.h7_c00098{height:75.093750px;}
.h6_c00098{height:81.476719px;}
.h0_c00098{height:1263.000000px;}
.w1_c00098{width:892.500000px;}
.w0_c00098{width:892.830000px;}
.x0_c00098{left:0.000000px;}
.x1_c00098{left:127.620000px;}
.x3_c00098{left:154.440000px;}
.x2_c00098{left:180.810000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.v1_c00098{vertical-align:14.080000pt;}
.v2_c00098{vertical-align:26.560000pt;}
.ls14_c00098{letter-spacing:-0.134400pt;}
.ls1d_c00098{letter-spacing:-0.038400pt;}
.ls1c_c00098{letter-spacing:-0.032000pt;}
.ls1a_c00098{letter-spacing:-0.027776pt;}
.ls18_c00098{letter-spacing:-0.025600pt;}
.ls20_c00098{letter-spacing:-0.021280pt;}
.ls15_c00098{letter-spacing:-0.019200pt;}
.ls17_c00098{letter-spacing:-0.012800pt;}
.ls1b_c00098{letter-spacing:-0.006944pt;}
.ls1f_c00098{letter-spacing:-0.006912pt;}
.ls16_c00098{letter-spacing:-0.006400pt;}
.ls21_c00098{letter-spacing:-0.004256pt;}
.ls13_c00098{letter-spacing:0.000000pt;}
.lsd_c00098{letter-spacing:0.003456pt;}
.ls3_c00098{letter-spacing:0.006400pt;}
.lsb_c00098{letter-spacing:0.012768pt;}
.ls19_c00098{letter-spacing:0.012800pt;}
.ls9_c00098{letter-spacing:0.019200pt;}
.ls10_c00098{letter-spacing:0.025536pt;}
.ls8_c00098{letter-spacing:0.025600pt;}
.lsa_c00098{letter-spacing:0.029792pt;}
.ls24_c00098{letter-spacing:0.034048pt;}
.ls5_c00098{letter-spacing:0.034720pt;}
.lse_c00098{letter-spacing:0.038304pt;}
.ls12_c00098{letter-spacing:0.042560pt;}
.ls0_c00098{letter-spacing:0.042752pt;}
.ls2_c00098{letter-spacing:0.048672pt;}
.ls11_c00098{letter-spacing:0.055328pt;}
.lsf_c00098{letter-spacing:0.067520pt;}
.ls6_c00098{letter-spacing:0.128000pt;}
.ls22_c00098{letter-spacing:0.307584pt;}
.ls23_c00098{letter-spacing:0.317952pt;}
.lsc_c00098{letter-spacing:0.387520pt;}
.ls1e_c00098{letter-spacing:0.960000pt;}
.ls4_c00098{letter-spacing:31.248000pt;}
.ls7_c00098{letter-spacing:58.688000pt;}
.ls1_c00098{letter-spacing:1090.880000pt;}
.ws2_c00098{word-spacing:-17.394720pt;}
.ws1_c00098{word-spacing:-17.332224pt;}
.ws4_c00098{word-spacing:-11.810400pt;}
.ws5_c00098{word-spacing:-9.925632pt;}
.ws3_c00098{word-spacing:-9.611136pt;}
.ws0_c00098{word-spacing:-9.408672pt;}
.ws11_c00098{word-spacing:-0.076384pt;}
.ws1f_c00098{word-spacing:-0.025600pt;}
.ws29_c00098{word-spacing:-0.021280pt;}
.ws2e_c00098{word-spacing:-0.017024pt;}
.ws27_c00098{word-spacing:-0.012768pt;}
.ws7_c00098{word-spacing:0.000000pt;}
.ws28_c00098{word-spacing:0.004256pt;}
.wsa_c00098{word-spacing:0.006400pt;}
.ws2a_c00098{word-spacing:0.021280pt;}
.ws6_c00098{word-spacing:0.037408pt;}
.ws16_c00098{word-spacing:0.044800pt;}
.wsb_c00098{word-spacing:0.064000pt;}
.ws14_c00098{word-spacing:0.294400pt;}
.ws24_c00098{word-spacing:0.953600pt;}
.ws23_c00098{word-spacing:2.553600pt;}
.ws22_c00098{word-spacing:2.572800pt;}
.ws19_c00098{word-spacing:4.166400pt;}
.wsc_c00098{word-spacing:5.113600pt;}
.wsd_c00098{word-spacing:5.401600pt;}
.wse_c00098{word-spacing:5.408000pt;}
.ws17_c00098{word-spacing:6.969600pt;}
.ws18_c00098{word-spacing:7.072000pt;}
.ws1b_c00098{word-spacing:8.646400pt;}
.ws1a_c00098{word-spacing:8.652800pt;}
.ws26_c00098{word-spacing:9.580800pt;}
.ws1e_c00098{word-spacing:9.606400pt;}
.ws25_c00098{word-spacing:9.644800pt;}
.ws10_c00098{word-spacing:14.739200pt;}
.wsf_c00098{word-spacing:14.745600pt;}
.ws1c_c00098{word-spacing:15.001600pt;}
.ws1d_c00098{word-spacing:15.072000pt;}
.ws20_c00098{word-spacing:16.224000pt;}
.ws2d_c00098{word-spacing:16.279200pt;}
.ws2c_c00098{word-spacing:16.308992pt;}
.ws2b_c00098{word-spacing:16.321760pt;}
.ws21_c00098{word-spacing:16.339200pt;}
.ws8_c00098{word-spacing:16.896000pt;}
.ws9_c00098{word-spacing:16.928000pt;}
.ws15_c00098{word-spacing:18.233600pt;}
.ws13_c00098{word-spacing:21.446400pt;}
.ws12_c00098{word-spacing:28.480000pt;}
._0_c00098{margin-left:-1.175680pt;}
._1_c00098{width:0.896000pt;}
._2_c00098{width:15.619424pt;}
.fs6_c00098{font-size:34.560000pt;}
.fs3_c00098{font-size:37.440000pt;}
.fs5_c00098{font-size:42.560000pt;}
.fs1_c00098{font-size:48.000000pt;}
.fs0_c00098{font-size:53.440000pt;}
.fs2_c00098{font-size:64.000000pt;}
.fs4_c00098{font-size:69.440000pt;}
.y0_c00098{bottom:0.000000pt;}
.y3_c00098{bottom:51.067067pt;}
.y21_c00098{bottom:101.065947pt;}
.y20_c00098{bottom:113.390427pt;}
.y1f_c00098{bottom:129.630427pt;}
.y1e_c00098{bottom:145.867067pt;}
.y1d_c00098{bottom:159.387200pt;}
.y1c_c00098{bottom:177.787200pt;}
.y1b_c00098{bottom:196.187067pt;}
.y1a_c00098{bottom:266.587067pt;}
.y19_c00098{bottom:297.227067pt;}
.y18_c00098{bottom:327.787067pt;}
.y17_c00098{bottom:358.427067pt;}
.y16_c00098{bottom:396.987067pt;}
.y15_c00098{bottom:427.627067pt;}
.y14_c00098{bottom:458.187067pt;}
.y13_c00098{bottom:488.827067pt;}
.y12_c00098{bottom:519.387067pt;}
.y11_c00098{bottom:550.027067pt;}
.y10_c00098{bottom:596.587067pt;}
.yf_c00098{bottom:627.227067pt;}
.ye_c00098{bottom:657.787067pt;}
.yd_c00098{bottom:688.427067pt;}
.yc_c00098{bottom:726.987067pt;}
.yb_c00098{bottom:757.627067pt;}
.ya_c00098{bottom:797.627067pt;}
.y9_c00098{bottom:853.387067pt;}
.y8_c00098{bottom:883.947067pt;}
.y7_c00098{bottom:914.587067pt;}
.y6_c00098{bottom:945.147067pt;}
.y5_c00098{bottom:983.787067pt;}
.y4_c00098{bottom:1014.347067pt;}
.y2_c00098{bottom:1046.987067pt;}
.y1_c00098{bottom:1063.867067pt;}
.h9_c00098{height:42.656250pt;}
.h8_c00098{height:42.656783pt;}
.ha_c00098{height:44.388750pt;}
.h1_c00098{height:44.724687pt;}
.h2_c00098{height:50.062500pt;}
.h5_c00098{height:53.562500pt;}
.h4_c00098{height:57.894063pt;}
.h3_c00098{height:64.142500pt;}
.h7_c00098{height:66.750000pt;}
.h6_c00098{height:72.423750pt;}
.h0_c00098{height:1122.666667pt;}
.w1_c00098{width:793.333333pt;}
.w0_c00098{width:793.626667pt;}
.x0_c00098{left:0.000000pt;}
.x1_c00098{left:113.440000pt;}
.x3_c00098{left:137.280000pt;}
.x2_c00098{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_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_1e1ccd0781d7d267b70e8d99.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00099;src:url('chunks/assets/font_a2ae05c2a564673db006f016.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;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_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00099{vertical-align:-29.880000px;}
.v0_c00099{vertical-align:0.000000px;}
.v1_c00099{vertical-align:29.880000px;}
.ls18_c00099{letter-spacing:-0.468000px;}
.ls11_c00099{letter-spacing:-0.151200px;}
.ls16_c00099{letter-spacing:-0.064800px;}
.ls17_c00099{letter-spacing:-0.050400px;}
.lsf_c00099{letter-spacing:-0.048096px;}
.ls19_c00099{letter-spacing:-0.036000px;}
.ls14_c00099{letter-spacing:-0.028800px;}
.ls13_c00099{letter-spacing:-0.021600px;}
.lse_c00099{letter-spacing:-0.018036px;}
.ls15_c00099{letter-spacing:-0.014400px;}
.ls12_c00099{letter-spacing:-0.007200px;}
.ls10_c00099{letter-spacing:0.000000px;}
.ls7_c00099{letter-spacing:0.007200px;}
.ls1_c00099{letter-spacing:0.014400px;}
.lsa_c00099{letter-spacing:0.021600px;}
.lsd_c00099{letter-spacing:0.028728px;}
.ls5_c00099{letter-spacing:0.028800px;}
.lsb_c00099{letter-spacing:0.033516px;}
.ls9_c00099{letter-spacing:0.036000px;}
.ls0_c00099{letter-spacing:0.036072px;}
.lsc_c00099{letter-spacing:0.038304px;}
.ls8_c00099{letter-spacing:0.043200px;}
.ls6_c00099{letter-spacing:0.050400px;}
.ls2_c00099{letter-spacing:0.054756px;}
.ls4_c00099{letter-spacing:0.057600px;}
.ls3_c00099{letter-spacing:0.072000px;}
.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:-18.014400px;}
.ws3_c00099{word-spacing:-18.000000px;}
.ws5_c00099{word-spacing:-17.992800px;}
.ws4_c00099{word-spacing:-17.949600px;}
.ws2_c00099{word-spacing:-17.935200px;}
.ws1_c00099{word-spacing:-10.584756px;}
.ws2d_c00099{word-spacing:-0.043200px;}
.ws30_c00099{word-spacing:-0.019152px;}
.ws2e_c00099{word-spacing:-0.014364px;}
.ws2f_c00099{word-spacing:-0.009576px;}
.ws9_c00099{word-spacing:0.000000px;}
.ws29_c00099{word-spacing:0.007200px;}
.ws2c_c00099{word-spacing:0.021600px;}
.ws6_c00099{word-spacing:0.054108px;}
.ws7_c00099{word-spacing:0.108216px;}
.ws8_c00099{word-spacing:0.138276px;}
.wsa_c00099{word-spacing:0.288000px;}
.wsc_c00099{word-spacing:0.331200px;}
.wsb_c00099{word-spacing:0.360000px;}
.ws16_c00099{word-spacing:1.360800px;}
.ws15_c00099{word-spacing:1.440000px;}
.ws14_c00099{word-spacing:1.461600px;}
.wsd_c00099{word-spacing:2.469600px;}
.wsf_c00099{word-spacing:2.527200px;}
.wse_c00099{word-spacing:2.570400px;}
.ws1b_c00099{word-spacing:3.614400px;}
.ws1f_c00099{word-spacing:3.621600px;}
.ws1a_c00099{word-spacing:3.657600px;}
.ws20_c00099{word-spacing:4.068000px;}
.ws28_c00099{word-spacing:5.738400px;}
.ws13_c00099{word-spacing:5.745600px;}
.ws11_c00099{word-spacing:5.752800px;}
.ws10_c00099{word-spacing:5.781600px;}
.ws12_c00099{word-spacing:5.839200px;}
.ws1c_c00099{word-spacing:12.225600px;}
.ws1d_c00099{word-spacing:12.261600px;}
.ws1e_c00099{word-spacing:12.290400px;}
.ws27_c00099{word-spacing:14.061600px;}
.ws26_c00099{word-spacing:14.097600px;}
.ws2b_c00099{word-spacing:14.436000px;}
.ws2a_c00099{word-spacing:15.501600px;}
.ws23_c00099{word-spacing:19.850400px;}
.ws22_c00099{word-spacing:19.864800px;}
.ws21_c00099{word-spacing:19.908000px;}
.ws17_c00099{word-spacing:26.596800px;}
.ws19_c00099{word-spacing:26.604000px;}
.ws18_c00099{word-spacing:26.611200px;}
.ws24_c00099{word-spacing:27.014400px;}
.ws25_c00099{word-spacing:27.172800px;}
._0_c00099{margin-left:-1.142280px;}
._1_c00099{width:1.224000px;}
.fc0_c00099{color:rgb(0,0,0);}
.fs3_c00099{font-size:42.120000px;}
.fs4_c00099{font-size:47.880000px;}
.fs2_c00099{font-size:54.000000px;}
.fs0_c00099{font-size:60.120000px;}
.fs1_c00099{font-size:72.000000px;}
.y0_c00099{bottom:0.000000px;}
.y3_c00099{bottom:57.450450px;}
.y4_c00099{bottom:61.410450px;}
.y2b_c00099{bottom:113.737860px;}
.y2a_c00099{bottom:132.099840px;}
.y29_c00099{bottom:150.366060px;}
.y28_c00099{bottom:168.632280px;}
.y27_c00099{bottom:186.994260px;}
.y26_c00099{bottom:205.260480px;}
.y25_c00099{bottom:223.526700px;}
.y24_c00099{bottom:241.888680px;}
.y23_c00099{bottom:260.154900px;}
.y22_c00099{bottom:278.421120px;}
.y21_c00099{bottom:296.783100px;}
.y20_c00099{bottom:315.049320px;}
.y1f_c00099{bottom:333.315540px;}
.y1e_c00099{bottom:351.581760px;}
.y1d_c00099{bottom:369.943740px;}
.y1c_c00099{bottom:388.209960px;}
.y1b_c00099{bottom:406.476180px;}
.y1a_c00099{bottom:424.838160px;}
.y19_c00099{bottom:443.104380px;}
.y18_c00099{bottom:461.370600px;}
.y17_c00099{bottom:476.580450px;}
.y16_c00099{bottom:497.280450px;}
.y15_c00099{bottom:517.980450px;}
.y14_c00099{bottom:615.810450px;}
.y13_c00099{bottom:650.190450px;}
.y12_c00099{bottom:684.660450px;}
.y11_c00099{bottom:728.040450px;}
.y10_c00099{bottom:762.510450px;}
.yf_c00099{bottom:796.890450px;}
.ye_c00099{bottom:831.360450px;}
.yd_c00099{bottom:865.740450px;}
.yc_c00099{bottom:900.210450px;}
.yb_c00099{bottom:934.590450px;}
.ya_c00099{bottom:969.060450px;}
.y9_c00099{bottom:1003.440450px;}
.y8_c00099{bottom:1037.910450px;}
.y7_c00099{bottom:1072.290450px;}
.y6_c00099{bottom:1106.760450px;}
.y5_c00099{bottom:1141.140450px;}
.y2_c00099{bottom:1173.810450px;}
.y1_c00099{bottom:1196.850450px;}
.h2_c00099{height:47.988281px;}
.h7_c00099{height:49.937344px;}
.h1_c00099{height:50.315273px;}
.h3_c00099{height:56.320312px;}
.h5_c00099{height:60.257812px;}
.h4_c00099{height:65.130820px;}
.h6_c00099{height:65.131420px;}
.h0_c00099{height:1263.000000px;}
.w1_c00099{width:892.500000px;}
.w0_c00099{width:892.830000px;}
.x0_c00099{left:0.000000px;}
.x2_c00099{left:127.620000px;}
.x1_c00099{left:145.440000px;}
.x5_c00099{left:180.810000px;}
.x4_c00099{left:439.020000px;}
.x3_c00099{left:446.490000px;}
@media print{
.v2_c00099{vertical-align:-26.560000pt;}
.v0_c00099{vertical-align:0.000000pt;}
.v1_c00099{vertical-align:26.560000pt;}
.ls18_c00099{letter-spacing:-0.416000pt;}
.ls11_c00099{letter-spacing:-0.134400pt;}
.ls16_c00099{letter-spacing:-0.057600pt;}
.ls17_c00099{letter-spacing:-0.044800pt;}
.lsf_c00099{letter-spacing:-0.042752pt;}
.ls19_c00099{letter-spacing:-0.032000pt;}
.ls14_c00099{letter-spacing:-0.025600pt;}
.ls13_c00099{letter-spacing:-0.019200pt;}
.lse_c00099{letter-spacing:-0.016032pt;}
.ls15_c00099{letter-spacing:-0.012800pt;}
.ls12_c00099{letter-spacing:-0.006400pt;}
.ls10_c00099{letter-spacing:0.000000pt;}
.ls7_c00099{letter-spacing:0.006400pt;}
.ls1_c00099{letter-spacing:0.012800pt;}
.lsa_c00099{letter-spacing:0.019200pt;}
.lsd_c00099{letter-spacing:0.025536pt;}
.ls5_c00099{letter-spacing:0.025600pt;}
.lsb_c00099{letter-spacing:0.029792pt;}
.ls9_c00099{letter-spacing:0.032000pt;}
.ls0_c00099{letter-spacing:0.032064pt;}
.lsc_c00099{letter-spacing:0.034048pt;}
.ls8_c00099{letter-spacing:0.038400pt;}
.ls6_c00099{letter-spacing:0.044800pt;}
.ls2_c00099{letter-spacing:0.048672pt;}
.ls4_c00099{letter-spacing:0.051200pt;}
.ls3_c00099{letter-spacing:0.064000pt;}
.ws0_c00099{word-spacing:-16.012800pt;}
.ws3_c00099{word-spacing:-16.000000pt;}
.ws5_c00099{word-spacing:-15.993600pt;}
.ws4_c00099{word-spacing:-15.955200pt;}
.ws2_c00099{word-spacing:-15.942400pt;}
.ws1_c00099{word-spacing:-9.408672pt;}
.ws2d_c00099{word-spacing:-0.038400pt;}
.ws30_c00099{word-spacing:-0.017024pt;}
.ws2e_c00099{word-spacing:-0.012768pt;}
.ws2f_c00099{word-spacing:-0.008512pt;}
.ws9_c00099{word-spacing:0.000000pt;}
.ws29_c00099{word-spacing:0.006400pt;}
.ws2c_c00099{word-spacing:0.019200pt;}
.ws6_c00099{word-spacing:0.048096pt;}
.ws7_c00099{word-spacing:0.096192pt;}
.ws8_c00099{word-spacing:0.122912pt;}
.wsa_c00099{word-spacing:0.256000pt;}
.wsc_c00099{word-spacing:0.294400pt;}
.wsb_c00099{word-spacing:0.320000pt;}
.ws16_c00099{word-spacing:1.209600pt;}
.ws15_c00099{word-spacing:1.280000pt;}
.ws14_c00099{word-spacing:1.299200pt;}
.wsd_c00099{word-spacing:2.195200pt;}
.wsf_c00099{word-spacing:2.246400pt;}
.wse_c00099{word-spacing:2.284800pt;}
.ws1b_c00099{word-spacing:3.212800pt;}
.ws1f_c00099{word-spacing:3.219200pt;}
.ws1a_c00099{word-spacing:3.251200pt;}
.ws20_c00099{word-spacing:3.616000pt;}
.ws28_c00099{word-spacing:5.100800pt;}
.ws13_c00099{word-spacing:5.107200pt;}
.ws11_c00099{word-spacing:5.113600pt;}
.ws10_c00099{word-spacing:5.139200pt;}
.ws12_c00099{word-spacing:5.190400pt;}
.ws1c_c00099{word-spacing:10.867200pt;}
.ws1d_c00099{word-spacing:10.899200pt;}
.ws1e_c00099{word-spacing:10.924800pt;}
.ws27_c00099{word-spacing:12.499200pt;}
.ws26_c00099{word-spacing:12.531200pt;}
.ws2b_c00099{word-spacing:12.832000pt;}
.ws2a_c00099{word-spacing:13.779200pt;}
.ws23_c00099{word-spacing:17.644800pt;}
.ws22_c00099{word-spacing:17.657600pt;}
.ws21_c00099{word-spacing:17.696000pt;}
.ws17_c00099{word-spacing:23.641600pt;}
.ws19_c00099{word-spacing:23.648000pt;}
.ws18_c00099{word-spacing:23.654400pt;}
.ws24_c00099{word-spacing:24.012800pt;}
.ws25_c00099{word-spacing:24.153600pt;}
._0_c00099{margin-left:-1.015360pt;}
._1_c00099{width:1.088000pt;}
.fs3_c00099{font-size:37.440000pt;}
.fs4_c00099{font-size:42.560000pt;}
.fs2_c00099{font-size:48.000000pt;}
.fs0_c00099{font-size:53.440000pt;}
.fs1_c00099{font-size:64.000000pt;}
.y0_c00099{bottom:0.000000pt;}
.y3_c00099{bottom:51.067067pt;}
.y4_c00099{bottom:54.587067pt;}
.y2b_c00099{bottom:101.100320pt;}
.y2a_c00099{bottom:117.422080pt;}
.y29_c00099{bottom:133.658720pt;}
.y28_c00099{bottom:149.895360pt;}
.y27_c00099{bottom:166.217120pt;}
.y26_c00099{bottom:182.453760pt;}
.y25_c00099{bottom:198.690400pt;}
.y24_c00099{bottom:215.012160pt;}
.y23_c00099{bottom:231.248800pt;}
.y22_c00099{bottom:247.485440pt;}
.y21_c00099{bottom:263.807200pt;}
.y20_c00099{bottom:280.043840pt;}
.y1f_c00099{bottom:296.280480pt;}
.y1e_c00099{bottom:312.517120pt;}
.y1d_c00099{bottom:328.838880pt;}
.y1c_c00099{bottom:345.075520pt;}
.y1b_c00099{bottom:361.312160pt;}
.y1a_c00099{bottom:377.633920pt;}
.y19_c00099{bottom:393.870560pt;}
.y18_c00099{bottom:410.107200pt;}
.y17_c00099{bottom:423.627067pt;}
.y16_c00099{bottom:442.027067pt;}
.y15_c00099{bottom:460.427067pt;}
.y14_c00099{bottom:547.387067pt;}
.y13_c00099{bottom:577.947067pt;}
.y12_c00099{bottom:608.587067pt;}
.y11_c00099{bottom:647.147067pt;}
.y10_c00099{bottom:677.787067pt;}
.yf_c00099{bottom:708.347067pt;}
.ye_c00099{bottom:738.987067pt;}
.yd_c00099{bottom:769.547067pt;}
.yc_c00099{bottom:800.187067pt;}
.yb_c00099{bottom:830.747067pt;}
.ya_c00099{bottom:861.387067pt;}
.y9_c00099{bottom:891.947067pt;}
.y8_c00099{bottom:922.587067pt;}
.y7_c00099{bottom:953.147067pt;}
.y6_c00099{bottom:983.787067pt;}
.y5_c00099{bottom:1014.347067pt;}
.y2_c00099{bottom:1043.387067pt;}
.y1_c00099{bottom:1063.867067pt;}
.h2_c00099{height:42.656250pt;}
.h7_c00099{height:44.388750pt;}
.h1_c00099{height:44.724687pt;}
.h3_c00099{height:50.062500pt;}
.h5_c00099{height:53.562500pt;}
.h4_c00099{height:57.894063pt;}
.h6_c00099{height:57.894596pt;}
.h0_c00099{height:1122.666667pt;}
.w1_c00099{width:793.333333pt;}
.w0_c00099{width:793.626667pt;}
.x0_c00099{left:0.000000pt;}
.x2_c00099{left:113.440000pt;}
.x1_c00099{left:129.280000pt;}
.x5_c00099{left:160.720000pt;}
.x4_c00099{left:390.240000pt;}
.x3_c00099{left:396.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_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_dfcda6f6f00961aba75fbc39.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.100098;font-style:normal;font-weight:normal;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_a3192731d4a7223059dfcf39.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;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_c00100;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00100;src:url('chunks/assets/font_c414f5cfa2645e57d13a5ef4.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;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_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;}
.v1_c00100{vertical-align:15.840000px;}
.v3_c00100{vertical-align:24.120000px;}
.v2_c00100{vertical-align:29.880600px;}
.ls12_c00100{letter-spacing:-0.151200px;}
.ls19_c00100{letter-spacing:-0.043200px;}
.ls1a_c00100{letter-spacing:-0.038304px;}
.ls14_c00100{letter-spacing:-0.036000px;}
.ls13_c00100{letter-spacing:-0.028800px;}
.ls18_c00100{letter-spacing:-0.021600px;}
.ls1b_c00100{letter-spacing:-0.015552px;}
.ls17_c00100{letter-spacing:-0.014400px;}
.ls1d_c00100{letter-spacing:-0.014364px;}
.ls1c_c00100{letter-spacing:-0.011664px;}
.ls16_c00100{letter-spacing:-0.007200px;}
.ls11_c00100{letter-spacing:0.000000px;}
.ls5_c00100{letter-spacing:0.007200px;}
.ls7_c00100{letter-spacing:0.014400px;}
.lsf_c00100{letter-spacing:0.019152px;}
.ls4_c00100{letter-spacing:0.021600px;}
.ls10_c00100{letter-spacing:0.033516px;}
.ls9_c00100{letter-spacing:0.038304px;}
.ls8_c00100{letter-spacing:0.043092px;}
.lsa_c00100{letter-spacing:0.047880px;}
.ls0_c00100{letter-spacing:0.048096px;}
.lsd_c00100{letter-spacing:0.052668px;}
.ls6_c00100{letter-spacing:0.054756px;}
.lse_c00100{letter-spacing:0.057456px;}
.lsc_c00100{letter-spacing:0.104040px;}
.ls2_c00100{letter-spacing:0.144000px;}
.ls1e_c00100{letter-spacing:0.253764px;}
.lsb_c00100{letter-spacing:0.464040px;}
.ls15_c00100{letter-spacing:2.779200px;}
.ls3_c00100{letter-spacing:66.024000px;}
.ls1_c00100{letter-spacing:1227.240000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00100{word-spacing:-10.796976px;}
.ws0_c00100{word-spacing:-10.584756px;}
.ws2_c00100{word-spacing:-8.306640px;}
.ws29_c00100{word-spacing:-0.028728px;}
.ws27_c00100{word-spacing:-0.023940px;}
.ws28_c00100{word-spacing:-0.019152px;}
.ws2f_c00100{word-spacing:-0.014364px;}
.ws16_c00100{word-spacing:-0.007200px;}
.ws4_c00100{word-spacing:0.000000px;}
.wsa_c00100{word-spacing:0.007200px;}
.ws9_c00100{word-spacing:0.014400px;}
.ws3_c00100{word-spacing:0.042084px;}
.ws22_c00100{word-spacing:0.079200px;}
.ws18_c00100{word-spacing:0.720000px;}
.ws25_c00100{word-spacing:0.756000px;}
.ws17_c00100{word-spacing:0.763200px;}
.ws26_c00100{word-spacing:0.856800px;}
.ws23_c00100{word-spacing:1.360800px;}
.ws24_c00100{word-spacing:1.461600px;}
.ws1a_c00100{word-spacing:2.167200px;}
.ws1b_c00100{word-spacing:2.548800px;}
.ws15_c00100{word-spacing:2.592000px;}
.ws14_c00100{word-spacing:2.649600px;}
.ws8_c00100{word-spacing:2.916000px;}
.wsc_c00100{word-spacing:3.600000px;}
.wsd_c00100{word-spacing:3.621600px;}
.ws19_c00100{word-spacing:3.988800px;}
.ws1f_c00100{word-spacing:4.327200px;}
.ws20_c00100{word-spacing:4.384800px;}
.ws11_c00100{word-spacing:5.054400px;}
.wsb_c00100{word-spacing:6.854400px;}
.wse_c00100{word-spacing:7.920000px;}
.ws7_c00100{word-spacing:7.941600px;}
.wsf_c00100{word-spacing:8.042400px;}
.ws10_c00100{word-spacing:8.287200px;}
.ws21_c00100{word-spacing:9.007200px;}
.ws12_c00100{word-spacing:9.698400px;}
.ws1e_c00100{word-spacing:12.974400px;}
.ws1c_c00100{word-spacing:12.996000px;}
.ws1d_c00100{word-spacing:13.003200px;}
.ws13_c00100{word-spacing:14.068800px;}
.ws5_c00100{word-spacing:19.346400px;}
.ws6_c00100{word-spacing:19.375200px;}
.ws2d_c00100{word-spacing:32.524884px;}
.ws2e_c00100{word-spacing:32.721192px;}
.ws2c_c00100{word-spacing:32.725980px;}
.ws2a_c00100{word-spacing:32.816952px;}
.ws2b_c00100{word-spacing:33.156900px;}
._1_c00100{margin-left:-3.501360px;}
._2_c00100{margin-left:-2.365200px;}
._0_c00100{margin-left:-1.322640px;}
._3_c00100{width:1.080000px;}
._4_c00100{width:32.994000px;}
.fc0_c00100{color:rgb(0,0,0);}
.fs6_c00100{font-size:29.880000px;}
.fs5_c00100{font-size:38.880000px;}
.fs3_c00100{font-size:42.120000px;}
.fs4_c00100{font-size:47.880000px;}
.fs1_c00100{font-size:54.000000px;}
.fs0_c00100{font-size:60.120000px;}
.fs2_c00100{font-size:72.000000px;}
.y0_c00100{bottom:0.000000px;}
.y3_c00100{bottom:57.450450px;}
.y24_c00100{bottom:113.702970px;}
.y23_c00100{bottom:132.064950px;}
.y22_c00100{bottom:145.833120px;}
.y21_c00100{bottom:159.598620px;}
.y20_c00100{bottom:177.960600px;}
.y1f_c00100{bottom:193.170450px;}
.y1e_c00100{bottom:213.870450px;}
.y1d_c00100{bottom:234.570450px;}
.y1c_c00100{bottom:269.940450px;}
.y1b_c00100{bottom:304.410450px;}
.y1a_c00100{bottom:338.790450px;}
.y19_c00100{bottom:382.260450px;}
.y18_c00100{bottom:416.640450px;}
.y17_c00100{bottom:451.110450px;}
.y16_c00100{bottom:485.490450px;}
.y15_c00100{bottom:519.960450px;}
.y14_c00100{bottom:554.340450px;}
.y13_c00100{bottom:588.810450px;}
.y12_c00100{bottom:623.190450px;}
.y11_c00100{bottom:675.660450px;}
.y10_c00100{bottom:710.040450px;}
.yf_c00100{bottom:744.510450px;}
.ye_c00100{bottom:787.890450px;}
.yd_c00100{bottom:822.360450px;}
.yc_c00100{bottom:856.740450px;}
.yb_c00100{bottom:891.210450px;}
.ya_c00100{bottom:925.590450px;}
.y9_c00100{bottom:960.060450px;}
.y8_c00100{bottom:994.440450px;}
.y7_c00100{bottom:1037.910450px;}
.y6_c00100{bottom:1072.290450px;}
.y5_c00100{bottom:1106.760450px;}
.y4_c00100{bottom:1141.140450px;}
.y2_c00100{bottom:1177.860450px;}
.y1_c00100{bottom:1196.850450px;}
.h8_c00100{height:47.988281px;}
.h9_c00100{height:49.937344px;}
.h1_c00100{height:50.315273px;}
.ha_c00100{height:55.273226px;}
.h2_c00100{height:56.320312px;}
.h5_c00100{height:60.257812px;}
.h7_c00100{height:65.130820px;}
.h6_c00100{height:65.131420px;}
.h3_c00100{height:72.160312px;}
.h4_c00100{height:75.093750px;}
.h0_c00100{height:1263.000000px;}
.w1_c00100{width:892.500000px;}
.w0_c00100{width:892.830000px;}
.x0_c00100{left:0.000000px;}
.x1_c00100{left:127.620000px;}
.x2_c00100{left:154.440000px;}
.x3_c00100{left:181.170000px;}
.x4_c00100{left:208.620000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.v1_c00100{vertical-align:14.080000pt;}
.v3_c00100{vertical-align:21.440000pt;}
.v2_c00100{vertical-align:26.560533pt;}
.ls12_c00100{letter-spacing:-0.134400pt;}
.ls19_c00100{letter-spacing:-0.038400pt;}
.ls1a_c00100{letter-spacing:-0.034048pt;}
.ls14_c00100{letter-spacing:-0.032000pt;}
.ls13_c00100{letter-spacing:-0.025600pt;}
.ls18_c00100{letter-spacing:-0.019200pt;}
.ls1b_c00100{letter-spacing:-0.013824pt;}
.ls17_c00100{letter-spacing:-0.012800pt;}
.ls1d_c00100{letter-spacing:-0.012768pt;}
.ls1c_c00100{letter-spacing:-0.010368pt;}
.ls16_c00100{letter-spacing:-0.006400pt;}
.ls11_c00100{letter-spacing:0.000000pt;}
.ls5_c00100{letter-spacing:0.006400pt;}
.ls7_c00100{letter-spacing:0.012800pt;}
.lsf_c00100{letter-spacing:0.017024pt;}
.ls4_c00100{letter-spacing:0.019200pt;}
.ls10_c00100{letter-spacing:0.029792pt;}
.ls9_c00100{letter-spacing:0.034048pt;}
.ls8_c00100{letter-spacing:0.038304pt;}
.lsa_c00100{letter-spacing:0.042560pt;}
.ls0_c00100{letter-spacing:0.042752pt;}
.lsd_c00100{letter-spacing:0.046816pt;}
.ls6_c00100{letter-spacing:0.048672pt;}
.lse_c00100{letter-spacing:0.051072pt;}
.lsc_c00100{letter-spacing:0.092480pt;}
.ls2_c00100{letter-spacing:0.128000pt;}
.ls1e_c00100{letter-spacing:0.225568pt;}
.lsb_c00100{letter-spacing:0.412480pt;}
.ls15_c00100{letter-spacing:2.470400pt;}
.ls3_c00100{letter-spacing:58.688000pt;}
.ls1_c00100{letter-spacing:1090.880000pt;}
.ws1_c00100{word-spacing:-9.597312pt;}
.ws0_c00100{word-spacing:-9.408672pt;}
.ws2_c00100{word-spacing:-7.383680pt;}
.ws29_c00100{word-spacing:-0.025536pt;}
.ws27_c00100{word-spacing:-0.021280pt;}
.ws28_c00100{word-spacing:-0.017024pt;}
.ws2f_c00100{word-spacing:-0.012768pt;}
.ws16_c00100{word-spacing:-0.006400pt;}
.ws4_c00100{word-spacing:0.000000pt;}
.wsa_c00100{word-spacing:0.006400pt;}
.ws9_c00100{word-spacing:0.012800pt;}
.ws3_c00100{word-spacing:0.037408pt;}
.ws22_c00100{word-spacing:0.070400pt;}
.ws18_c00100{word-spacing:0.640000pt;}
.ws25_c00100{word-spacing:0.672000pt;}
.ws17_c00100{word-spacing:0.678400pt;}
.ws26_c00100{word-spacing:0.761600pt;}
.ws23_c00100{word-spacing:1.209600pt;}
.ws24_c00100{word-spacing:1.299200pt;}
.ws1a_c00100{word-spacing:1.926400pt;}
.ws1b_c00100{word-spacing:2.265600pt;}
.ws15_c00100{word-spacing:2.304000pt;}
.ws14_c00100{word-spacing:2.355200pt;}
.ws8_c00100{word-spacing:2.592000pt;}
.wsc_c00100{word-spacing:3.200000pt;}
.wsd_c00100{word-spacing:3.219200pt;}
.ws19_c00100{word-spacing:3.545600pt;}
.ws1f_c00100{word-spacing:3.846400pt;}
.ws20_c00100{word-spacing:3.897600pt;}
.ws11_c00100{word-spacing:4.492800pt;}
.wsb_c00100{word-spacing:6.092800pt;}
.wse_c00100{word-spacing:7.040000pt;}
.ws7_c00100{word-spacing:7.059200pt;}
.wsf_c00100{word-spacing:7.148800pt;}
.ws10_c00100{word-spacing:7.366400pt;}
.ws21_c00100{word-spacing:8.006400pt;}
.ws12_c00100{word-spacing:8.620800pt;}
.ws1e_c00100{word-spacing:11.532800pt;}
.ws1c_c00100{word-spacing:11.552000pt;}
.ws1d_c00100{word-spacing:11.558400pt;}
.ws13_c00100{word-spacing:12.505600pt;}
.ws5_c00100{word-spacing:17.196800pt;}
.ws6_c00100{word-spacing:17.222400pt;}
.ws2d_c00100{word-spacing:28.911008pt;}
.ws2e_c00100{word-spacing:29.085504pt;}
.ws2c_c00100{word-spacing:29.089760pt;}
.ws2a_c00100{word-spacing:29.170624pt;}
.ws2b_c00100{word-spacing:29.472800pt;}
._1_c00100{margin-left:-3.112320pt;}
._2_c00100{margin-left:-2.102400pt;}
._0_c00100{margin-left:-1.175680pt;}
._3_c00100{width:0.960000pt;}
._4_c00100{width:29.328000pt;}
.fs6_c00100{font-size:26.560000pt;}
.fs5_c00100{font-size:34.560000pt;}
.fs3_c00100{font-size:37.440000pt;}
.fs4_c00100{font-size:42.560000pt;}
.fs1_c00100{font-size:48.000000pt;}
.fs0_c00100{font-size:53.440000pt;}
.fs2_c00100{font-size:64.000000pt;}
.y0_c00100{bottom:0.000000pt;}
.y3_c00100{bottom:51.067067pt;}
.y24_c00100{bottom:101.069307pt;}
.y23_c00100{bottom:117.391067pt;}
.y22_c00100{bottom:129.629440pt;}
.y21_c00100{bottom:141.865440pt;}
.y20_c00100{bottom:158.187200pt;}
.y1f_c00100{bottom:171.707067pt;}
.y1e_c00100{bottom:190.107067pt;}
.y1d_c00100{bottom:208.507067pt;}
.y1c_c00100{bottom:239.947067pt;}
.y1b_c00100{bottom:270.587067pt;}
.y1a_c00100{bottom:301.147067pt;}
.y19_c00100{bottom:339.787067pt;}
.y18_c00100{bottom:370.347067pt;}
.y17_c00100{bottom:400.987067pt;}
.y16_c00100{bottom:431.547067pt;}
.y15_c00100{bottom:462.187067pt;}
.y14_c00100{bottom:492.747067pt;}
.y13_c00100{bottom:523.387067pt;}
.y12_c00100{bottom:553.947067pt;}
.y11_c00100{bottom:600.587067pt;}
.y10_c00100{bottom:631.147067pt;}
.yf_c00100{bottom:661.787067pt;}
.ye_c00100{bottom:700.347067pt;}
.yd_c00100{bottom:730.987067pt;}
.yc_c00100{bottom:761.547067pt;}
.yb_c00100{bottom:792.187067pt;}
.ya_c00100{bottom:822.747067pt;}
.y9_c00100{bottom:853.387067pt;}
.y8_c00100{bottom:883.947067pt;}
.y7_c00100{bottom:922.587067pt;}
.y6_c00100{bottom:953.147067pt;}
.y5_c00100{bottom:983.787067pt;}
.y4_c00100{bottom:1014.347067pt;}
.y2_c00100{bottom:1046.987067pt;}
.y1_c00100{bottom:1063.867067pt;}
.h8_c00100{height:42.656250pt;}
.h9_c00100{height:44.388750pt;}
.h1_c00100{height:44.724687pt;}
.ha_c00100{height:49.131757pt;}
.h2_c00100{height:50.062500pt;}
.h5_c00100{height:53.562500pt;}
.h7_c00100{height:57.894062pt;}
.h6_c00100{height:57.894596pt;}
.h3_c00100{height:64.142500pt;}
.h4_c00100{height:66.750000pt;}
.h0_c00100{height:1122.666667pt;}
.w1_c00100{width:793.333333pt;}
.w0_c00100{width:793.626667pt;}
.x0_c00100{left:0.000000pt;}
.x1_c00100{left:113.440000pt;}
.x2_c00100{left:137.280000pt;}
.x3_c00100{left:161.040000pt;}
.x4_c00100{left:185.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_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_f880418661b2dad0d39e389e.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00101;src:url('chunks/assets/font_bc59766e1b9f1c2545d4216f.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00101;src:url('chunks/assets/font_c45c25e8b3c22de892a4eda5.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;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_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);}
.v3_c00101{vertical-align:-15.119400px;}
.v0_c00101{vertical-align:0.000000px;}
.v2_c00101{vertical-align:15.119400px;}
.v1_c00101{vertical-align:29.880000px;}
.ls13_c00101{letter-spacing:-0.151200px;}
.ls11_c00101{letter-spacing:-0.048096px;}
.ls15_c00101{letter-spacing:-0.028800px;}
.ls17_c00101{letter-spacing:-0.021600px;}
.ls10_c00101{letter-spacing:-0.018036px;}
.ls14_c00101{letter-spacing:-0.014400px;}
.ls1a_c00101{letter-spacing:-0.007776px;}
.ls16_c00101{letter-spacing:-0.007200px;}
.ls12_c00101{letter-spacing:0.000000px;}
.ls5_c00101{letter-spacing:0.007200px;}
.ls9_c00101{letter-spacing:0.014364px;}
.ls6_c00101{letter-spacing:0.018036px;}
.lse_c00101{letter-spacing:0.019152px;}
.ls8_c00101{letter-spacing:0.021600px;}
.lsa_c00101{letter-spacing:0.023940px;}
.lsb_c00101{letter-spacing:0.028728px;}
.lsf_c00101{letter-spacing:0.033516px;}
.ls19_c00101{letter-spacing:0.036000px;}
.ls0_c00101{letter-spacing:0.036072px;}
.ls3_c00101{letter-spacing:0.054756px;}
.ls18_c00101{letter-spacing:0.093600px;}
.lsc_c00101{letter-spacing:0.104040px;}
.ls7_c00101{letter-spacing:0.136080px;}
.ls1_c00101{letter-spacing:0.144000px;}
.lsd_c00101{letter-spacing:0.342144px;}
.ls1b_c00101{letter-spacing:0.357696px;}
.ls2_c00101{letter-spacing:65.304000px;}
.ls4_c00101{letter-spacing:66.024000px;}
.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;}
}
.ws2_c00101{word-spacing:-13.310640px;}
.ws3_c00101{word-spacing:-11.166336px;}
.ws4_c00101{word-spacing:-11.150784px;}
.ws0_c00101{word-spacing:-10.584756px;}
.ws1_c00101{word-spacing:-9.856080px;}
.ws1e_c00101{word-spacing:-0.014364px;}
.ws1d_c00101{word-spacing:-0.009576px;}
.ws10_c00101{word-spacing:-0.007200px;}
.ws1c_c00101{word-spacing:-0.004788px;}
.ws8_c00101{word-spacing:0.000000px;}
.ws1b_c00101{word-spacing:0.004788px;}
.ws15_c00101{word-spacing:0.014400px;}
.ws5_c00101{word-spacing:0.054108px;}
.wsd_c00101{word-spacing:0.057600px;}
.ws11_c00101{word-spacing:0.072144px;}
.ws6_c00101{word-spacing:0.108216px;}
.wsb_c00101{word-spacing:0.122400px;}
.ws7_c00101{word-spacing:0.138276px;}
.ws14_c00101{word-spacing:0.381600px;}
.ws12_c00101{word-spacing:2.232000px;}
.ws13_c00101{word-spacing:2.275200px;}
.wsf_c00101{word-spacing:3.607200px;}
.wse_c00101{word-spacing:3.628800px;}
.ws9_c00101{word-spacing:5.364000px;}
.wsa_c00101{word-spacing:5.428800px;}
.ws19_c00101{word-spacing:7.178400px;}
.ws18_c00101{word-spacing:7.221600px;}
.wsc_c00101{word-spacing:11.217600px;}
.ws1a_c00101{word-spacing:23.040000px;}
.ws16_c00101{word-spacing:24.170400px;}
.ws17_c00101{word-spacing:29.181600px;}
._0_c00101{margin-left:-1.142280px;}
._1_c00101{width:1.008000px;}
.fc0_c00101{color:rgb(0,0,0);}
.fs4_c00101{font-size:38.880000px;}
.fs3_c00101{font-size:42.120000px;}
.fs5_c00101{font-size:47.880000px;}
.fs2_c00101{font-size:54.000000px;}
.fs0_c00101{font-size:60.120000px;}
.fs1_c00101{font-size:72.000000px;}
.y0_c00101{bottom:0.000000px;}
.y3_c00101{bottom:57.450450px;}
.y4_c00101{bottom:61.410450px;}
.y19_c00101{bottom:113.702250px;}
.y18_c00101{bottom:132.064230px;}
.y17_c00101{bottom:150.330450px;}
.y16_c00101{bottom:165.540450px;}
.y15_c00101{bottom:186.240450px;}
.y14_c00101{bottom:206.940450px;}
.y13_c00101{bottom:248.250450px;}
.y12_c00101{bottom:282.720450px;}
.y11_c00101{bottom:317.100450px;}
.y10_c00101{bottom:351.570450px;}
.yf_c00101{bottom:394.950450px;}
.ye_c00101{bottom:429.420450px;}
.yd_c00101{bottom:463.800450px;}
.yc_c00101{bottom:504.120600px;}
.yb_c00101{bottom:531.120450px;}
.ya_c00101{bottom:951.060450px;}
.y9_c00101{bottom:985.440450px;}
.y8_c00101{bottom:1028.910450px;}
.y7_c00101{bottom:1063.290450px;}
.y6_c00101{bottom:1106.760450px;}
.y5_c00101{bottom:1141.140450px;}
.y2_c00101{bottom:1173.810450px;}
.y1_c00101{bottom:1196.850450px;}
.h2_c00101{height:47.988281px;}
.h7_c00101{height:49.937344px;}
.h1_c00101{height:50.315273px;}
.h3_c00101{height:56.320312px;}
.h5_c00101{height:60.257812px;}
.h6_c00101{height:65.130820px;}
.h4_c00101{height:75.093750px;}
.h0_c00101{height:1263.000000px;}
.w1_c00101{width:892.500000px;}
.w0_c00101{width:892.830000px;}
.x0_c00101{left:0.000000px;}
.x2_c00101{left:127.620000px;}
.x1_c00101{left:145.440000px;}
.x5_c00101{left:154.620000px;}
.x6_c00101{left:181.620000px;}
.x8_c00101{left:349.470000px;}
.x4_c00101{left:439.020000px;}
.x3_c00101{left:446.490000px;}
.x7_c00101{left:678.960000px;}
@media print{
.v3_c00101{vertical-align:-13.439467pt;}
.v0_c00101{vertical-align:0.000000pt;}
.v2_c00101{vertical-align:13.439467pt;}
.v1_c00101{vertical-align:26.560000pt;}
.ls13_c00101{letter-spacing:-0.134400pt;}
.ls11_c00101{letter-spacing:-0.042752pt;}
.ls15_c00101{letter-spacing:-0.025600pt;}
.ls17_c00101{letter-spacing:-0.019200pt;}
.ls10_c00101{letter-spacing:-0.016032pt;}
.ls14_c00101{letter-spacing:-0.012800pt;}
.ls1a_c00101{letter-spacing:-0.006912pt;}
.ls16_c00101{letter-spacing:-0.006400pt;}
.ls12_c00101{letter-spacing:0.000000pt;}
.ls5_c00101{letter-spacing:0.006400pt;}
.ls9_c00101{letter-spacing:0.012768pt;}
.ls6_c00101{letter-spacing:0.016032pt;}
.lse_c00101{letter-spacing:0.017024pt;}
.ls8_c00101{letter-spacing:0.019200pt;}
.lsa_c00101{letter-spacing:0.021280pt;}
.lsb_c00101{letter-spacing:0.025536pt;}
.lsf_c00101{letter-spacing:0.029792pt;}
.ls19_c00101{letter-spacing:0.032000pt;}
.ls0_c00101{letter-spacing:0.032064pt;}
.ls3_c00101{letter-spacing:0.048672pt;}
.ls18_c00101{letter-spacing:0.083200pt;}
.lsc_c00101{letter-spacing:0.092480pt;}
.ls7_c00101{letter-spacing:0.120960pt;}
.ls1_c00101{letter-spacing:0.128000pt;}
.lsd_c00101{letter-spacing:0.304128pt;}
.ls1b_c00101{letter-spacing:0.317952pt;}
.ls2_c00101{letter-spacing:58.048000pt;}
.ls4_c00101{letter-spacing:58.688000pt;}
.ws2_c00101{word-spacing:-11.831680pt;}
.ws3_c00101{word-spacing:-9.925632pt;}
.ws4_c00101{word-spacing:-9.911808pt;}
.ws0_c00101{word-spacing:-9.408672pt;}
.ws1_c00101{word-spacing:-8.760960pt;}
.ws1e_c00101{word-spacing:-0.012768pt;}
.ws1d_c00101{word-spacing:-0.008512pt;}
.ws10_c00101{word-spacing:-0.006400pt;}
.ws1c_c00101{word-spacing:-0.004256pt;}
.ws8_c00101{word-spacing:0.000000pt;}
.ws1b_c00101{word-spacing:0.004256pt;}
.ws15_c00101{word-spacing:0.012800pt;}
.ws5_c00101{word-spacing:0.048096pt;}
.wsd_c00101{word-spacing:0.051200pt;}
.ws11_c00101{word-spacing:0.064128pt;}
.ws6_c00101{word-spacing:0.096192pt;}
.wsb_c00101{word-spacing:0.108800pt;}
.ws7_c00101{word-spacing:0.122912pt;}
.ws14_c00101{word-spacing:0.339200pt;}
.ws12_c00101{word-spacing:1.984000pt;}
.ws13_c00101{word-spacing:2.022400pt;}
.wsf_c00101{word-spacing:3.206400pt;}
.wse_c00101{word-spacing:3.225600pt;}
.ws9_c00101{word-spacing:4.768000pt;}
.wsa_c00101{word-spacing:4.825600pt;}
.ws19_c00101{word-spacing:6.380800pt;}
.ws18_c00101{word-spacing:6.419200pt;}
.wsc_c00101{word-spacing:9.971200pt;}
.ws1a_c00101{word-spacing:20.480000pt;}
.ws16_c00101{word-spacing:21.484800pt;}
.ws17_c00101{word-spacing:25.939200pt;}
._0_c00101{margin-left:-1.015360pt;}
._1_c00101{width:0.896000pt;}
.fs4_c00101{font-size:34.560000pt;}
.fs3_c00101{font-size:37.440000pt;}
.fs5_c00101{font-size:42.560000pt;}
.fs2_c00101{font-size:48.000000pt;}
.fs0_c00101{font-size:53.440000pt;}
.fs1_c00101{font-size:64.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y3_c00101{bottom:51.067067pt;}
.y4_c00101{bottom:54.587067pt;}
.y19_c00101{bottom:101.068667pt;}
.y18_c00101{bottom:117.390427pt;}
.y17_c00101{bottom:133.627067pt;}
.y16_c00101{bottom:147.147067pt;}
.y15_c00101{bottom:165.547067pt;}
.y14_c00101{bottom:183.947067pt;}
.y13_c00101{bottom:220.667067pt;}
.y12_c00101{bottom:251.307067pt;}
.y11_c00101{bottom:281.867067pt;}
.y10_c00101{bottom:312.507067pt;}
.yf_c00101{bottom:351.067067pt;}
.ye_c00101{bottom:381.707067pt;}
.yd_c00101{bottom:412.267067pt;}
.yc_c00101{bottom:448.107200pt;}
.yb_c00101{bottom:472.107067pt;}
.ya_c00101{bottom:845.387067pt;}
.y9_c00101{bottom:875.947067pt;}
.y8_c00101{bottom:914.587067pt;}
.y7_c00101{bottom:945.147067pt;}
.y6_c00101{bottom:983.787067pt;}
.y5_c00101{bottom:1014.347067pt;}
.y2_c00101{bottom:1043.387067pt;}
.y1_c00101{bottom:1063.867067pt;}
.h2_c00101{height:42.656250pt;}
.h7_c00101{height:44.388750pt;}
.h1_c00101{height:44.724687pt;}
.h3_c00101{height:50.062500pt;}
.h5_c00101{height:53.562500pt;}
.h6_c00101{height:57.894063pt;}
.h4_c00101{height:66.750000pt;}
.h0_c00101{height:1122.666667pt;}
.w1_c00101{width:793.333333pt;}
.w0_c00101{width:793.626667pt;}
.x0_c00101{left:0.000000pt;}
.x2_c00101{left:113.440000pt;}
.x1_c00101{left:129.280000pt;}
.x5_c00101{left:137.440000pt;}
.x6_c00101{left:161.440000pt;}
.x8_c00101{left:310.640000pt;}
.x4_c00101{left:390.240000pt;}
.x3_c00101{left:396.880000pt;}
.x7_c00101{left:603.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_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_ad8bd1f5be6d6435ff2078c3.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.100098;font-style:normal;font-weight:normal;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_a2ae05c2a564673db006f016.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;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_c00102;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00102;src:url('chunks/assets/font_4baca2ae76fe942af3b84ee8.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00102;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00102{font-family:ff5_c00102;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_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);}
.v3_c00102{vertical-align:-29.880600px;}
.v0_c00102{vertical-align:0.000000px;}
.v1_c00102{vertical-align:15.840000px;}
.v2_c00102{vertical-align:29.880600px;}
.lsb_c00102{letter-spacing:-0.151200px;}
.ls12_c00102{letter-spacing:-0.086400px;}
.lsf_c00102{letter-spacing:-0.028800px;}
.ls10_c00102{letter-spacing:-0.021600px;}
.lsd_c00102{letter-spacing:-0.014400px;}
.lsc_c00102{letter-spacing:-0.007200px;}
.lsa_c00102{letter-spacing:0.000000px;}
.ls6_c00102{letter-spacing:0.007200px;}
.ls5_c00102{letter-spacing:0.007812px;}
.lse_c00102{letter-spacing:0.014400px;}
.ls2_c00102{letter-spacing:0.021600px;}
.ls9_c00102{letter-spacing:0.033516px;}
.ls8_c00102{letter-spacing:0.036000px;}
.ls13_c00102{letter-spacing:0.038304px;}
.ls4_c00102{letter-spacing:0.039060px;}
.ls0_c00102{letter-spacing:0.048096px;}
.ls7_c00102{letter-spacing:0.054756px;}
.ls11_c00102{letter-spacing:11.520000px;}
.ls3_c00102{letter-spacing:29.373120px;}
.ls1_c00102{letter-spacing:1227.240000px;}
.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:-19.569060px;}
.ws0_c00102{word-spacing:-19.530000px;}
.ws3_c00102{word-spacing:-17.913600px;}
.ws2_c00102{word-spacing:-10.584756px;}
.ws16_c00102{word-spacing:-0.101556px;}
.ws30_c00102{word-spacing:-0.019152px;}
.ws2e_c00102{word-spacing:-0.014364px;}
.ws2f_c00102{word-spacing:-0.009576px;}
.ws5_c00102{word-spacing:0.000000px;}
.ws15_c00102{word-spacing:0.014400px;}
.ws24_c00102{word-spacing:0.028800px;}
.ws4_c00102{word-spacing:0.042084px;}
.ws13_c00102{word-spacing:0.057600px;}
.ws14_c00102{word-spacing:0.086400px;}
.ws6_c00102{word-spacing:0.669600px;}
.ws10_c00102{word-spacing:0.698400px;}
.wsf_c00102{word-spacing:0.727200px;}
.ws7_c00102{word-spacing:0.734400px;}
.ws18_c00102{word-spacing:1.814400px;}
.ws17_c00102{word-spacing:1.843200px;}
.ws1c_c00102{word-spacing:2.124000px;}
.wse_c00102{word-spacing:2.145600px;}
.wsc_c00102{word-spacing:2.174400px;}
.wsd_c00102{word-spacing:2.188800px;}
.ws1b_c00102{word-spacing:2.239200px;}
.ws1e_c00102{word-spacing:2.498400px;}
.ws2c_c00102{word-spacing:2.527200px;}
.ws2d_c00102{word-spacing:2.548800px;}
.ws1d_c00102{word-spacing:2.570400px;}
.ws12_c00102{word-spacing:3.189600px;}
.ws11_c00102{word-spacing:3.268800px;}
.ws28_c00102{word-spacing:3.924000px;}
.ws1a_c00102{word-spacing:3.945600px;}
.ws19_c00102{word-spacing:3.960000px;}
.ws29_c00102{word-spacing:4.068000px;}
.wsb_c00102{word-spacing:4.636800px;}
.ws2a_c00102{word-spacing:4.672800px;}
.wsa_c00102{word-spacing:4.694400px;}
.ws2b_c00102{word-spacing:4.708800px;}
.ws8_c00102{word-spacing:5.760000px;}
.ws9_c00102{word-spacing:5.788800px;}
.ws23_c00102{word-spacing:6.076800px;}
.ws22_c00102{word-spacing:6.141600px;}
.ws27_c00102{word-spacing:6.480000px;}
.ws26_c00102{word-spacing:6.537600px;}
.ws20_c00102{word-spacing:6.904800px;}
.ws1f_c00102{word-spacing:6.919200px;}
.ws25_c00102{word-spacing:11.577600px;}
.ws21_c00102{word-spacing:15.508800px;}
._2_c00102{margin-left:-11.592000px;}
._3_c00102{margin-left:-10.584000px;}
._0_c00102{margin-left:-1.322640px;}
._1_c00102{width:1.008000px;}
.fc0_c00102{color:rgb(0,0,0);}
.fs4_c00102{font-size:42.120000px;}
.fs5_c00102{font-size:47.880000px;}
.fs1_c00102{font-size:54.000000px;}
.fs0_c00102{font-size:60.120000px;}
.fs2_c00102{font-size:72.000000px;}
.fs3_c00102{font-size:78.120000px;}
.y0_c00102{bottom:0.000000px;}
.y3_c00102{bottom:57.450450px;}
.y22_c00102{bottom:113.706030px;}
.y21_c00102{bottom:132.068010px;}
.y20_c00102{bottom:150.334230px;}
.y1f_c00102{bottom:168.600450px;}
.y1e_c00102{bottom:183.810600px;}
.y1d_c00102{bottom:204.510600px;}
.y1c_c00102{bottom:225.210450px;}
.y1b_c00102{bottom:292.530450px;}
.y1a_c00102{bottom:326.910450px;}
.y19_c00102{bottom:361.380450px;}
.y18_c00102{bottom:395.760450px;}
.y17_c00102{bottom:430.230450px;}
.y16_c00102{bottom:464.610450px;}
.y15_c00102{bottom:499.080450px;}
.y14_c00102{bottom:542.460450px;}
.y13_c00102{bottom:576.930450px;}
.y12_c00102{bottom:611.310450px;}
.y11_c00102{bottom:645.780450px;}
.y10_c00102{bottom:689.160450px;}
.yf_c00102{bottom:723.630450px;}
.ye_c00102{bottom:758.010450px;}
.yd_c00102{bottom:803.100450px;}
.yc_c00102{bottom:865.740450px;}
.yb_c00102{bottom:900.210450px;}
.ya_c00102{bottom:934.590450px;}
.y9_c00102{bottom:969.060450px;}
.y8_c00102{bottom:1003.440450px;}
.y7_c00102{bottom:1037.910450px;}
.y6_c00102{bottom:1072.290450px;}
.y5_c00102{bottom:1106.760450px;}
.y4_c00102{bottom:1141.140450px;}
.y2_c00102{bottom:1177.860450px;}
.y1_c00102{bottom:1196.850450px;}
.h9_c00102{height:47.988281px;}
.h8_c00102{height:47.988881px;}
.ha_c00102{height:49.937344px;}
.h1_c00102{height:50.315273px;}
.h2_c00102{height:56.320312px;}
.h4_c00102{height:60.257812px;}
.h7_c00102{height:65.130820px;}
.h6_c00102{height:65.131420px;}
.h3_c00102{height:72.160312px;}
.h5_c00102{height:81.476719px;}
.h0_c00102{height:1263.000000px;}
.w1_c00102{width:892.500000px;}
.w0_c00102{width:892.830000px;}
.x0_c00102{left:0.000000px;}
.x1_c00102{left:127.620000px;}
.x2_c00102{left:180.810000px;}
@media print{
.v3_c00102{vertical-align:-26.560533pt;}
.v0_c00102{vertical-align:0.000000pt;}
.v1_c00102{vertical-align:14.080000pt;}
.v2_c00102{vertical-align:26.560533pt;}
.lsb_c00102{letter-spacing:-0.134400pt;}
.ls12_c00102{letter-spacing:-0.076800pt;}
.lsf_c00102{letter-spacing:-0.025600pt;}
.ls10_c00102{letter-spacing:-0.019200pt;}
.lsd_c00102{letter-spacing:-0.012800pt;}
.lsc_c00102{letter-spacing:-0.006400pt;}
.lsa_c00102{letter-spacing:0.000000pt;}
.ls6_c00102{letter-spacing:0.006400pt;}
.ls5_c00102{letter-spacing:0.006944pt;}
.lse_c00102{letter-spacing:0.012800pt;}
.ls2_c00102{letter-spacing:0.019200pt;}
.ls9_c00102{letter-spacing:0.029792pt;}
.ls8_c00102{letter-spacing:0.032000pt;}
.ls13_c00102{letter-spacing:0.034048pt;}
.ls4_c00102{letter-spacing:0.034720pt;}
.ls0_c00102{letter-spacing:0.042752pt;}
.ls7_c00102{letter-spacing:0.048672pt;}
.ls11_c00102{letter-spacing:10.240000pt;}
.ls3_c00102{letter-spacing:26.109440pt;}
.ls1_c00102{letter-spacing:1090.880000pt;}
.ws1_c00102{word-spacing:-17.394720pt;}
.ws0_c00102{word-spacing:-17.360000pt;}
.ws3_c00102{word-spacing:-15.923200pt;}
.ws2_c00102{word-spacing:-9.408672pt;}
.ws16_c00102{word-spacing:-0.090272pt;}
.ws30_c00102{word-spacing:-0.017024pt;}
.ws2e_c00102{word-spacing:-0.012768pt;}
.ws2f_c00102{word-spacing:-0.008512pt;}
.ws5_c00102{word-spacing:0.000000pt;}
.ws15_c00102{word-spacing:0.012800pt;}
.ws24_c00102{word-spacing:0.025600pt;}
.ws4_c00102{word-spacing:0.037408pt;}
.ws13_c00102{word-spacing:0.051200pt;}
.ws14_c00102{word-spacing:0.076800pt;}
.ws6_c00102{word-spacing:0.595200pt;}
.ws10_c00102{word-spacing:0.620800pt;}
.wsf_c00102{word-spacing:0.646400pt;}
.ws7_c00102{word-spacing:0.652800pt;}
.ws18_c00102{word-spacing:1.612800pt;}
.ws17_c00102{word-spacing:1.638400pt;}
.ws1c_c00102{word-spacing:1.888000pt;}
.wse_c00102{word-spacing:1.907200pt;}
.wsc_c00102{word-spacing:1.932800pt;}
.wsd_c00102{word-spacing:1.945600pt;}
.ws1b_c00102{word-spacing:1.990400pt;}
.ws1e_c00102{word-spacing:2.220800pt;}
.ws2c_c00102{word-spacing:2.246400pt;}
.ws2d_c00102{word-spacing:2.265600pt;}
.ws1d_c00102{word-spacing:2.284800pt;}
.ws12_c00102{word-spacing:2.835200pt;}
.ws11_c00102{word-spacing:2.905600pt;}
.ws28_c00102{word-spacing:3.488000pt;}
.ws1a_c00102{word-spacing:3.507200pt;}
.ws19_c00102{word-spacing:3.520000pt;}
.ws29_c00102{word-spacing:3.616000pt;}
.wsb_c00102{word-spacing:4.121600pt;}
.ws2a_c00102{word-spacing:4.153600pt;}
.wsa_c00102{word-spacing:4.172800pt;}
.ws2b_c00102{word-spacing:4.185600pt;}
.ws8_c00102{word-spacing:5.120000pt;}
.ws9_c00102{word-spacing:5.145600pt;}
.ws23_c00102{word-spacing:5.401600pt;}
.ws22_c00102{word-spacing:5.459200pt;}
.ws27_c00102{word-spacing:5.760000pt;}
.ws26_c00102{word-spacing:5.811200pt;}
.ws20_c00102{word-spacing:6.137600pt;}
.ws1f_c00102{word-spacing:6.150400pt;}
.ws25_c00102{word-spacing:10.291200pt;}
.ws21_c00102{word-spacing:13.785600pt;}
._2_c00102{margin-left:-10.304000pt;}
._3_c00102{margin-left:-9.408000pt;}
._0_c00102{margin-left:-1.175680pt;}
._1_c00102{width:0.896000pt;}
.fs4_c00102{font-size:37.440000pt;}
.fs5_c00102{font-size:42.560000pt;}
.fs1_c00102{font-size:48.000000pt;}
.fs0_c00102{font-size:53.440000pt;}
.fs2_c00102{font-size:64.000000pt;}
.fs3_c00102{font-size:69.440000pt;}
.y0_c00102{bottom:0.000000pt;}
.y3_c00102{bottom:51.067067pt;}
.y22_c00102{bottom:101.072027pt;}
.y21_c00102{bottom:117.393787pt;}
.y20_c00102{bottom:133.630427pt;}
.y1f_c00102{bottom:149.867067pt;}
.y1e_c00102{bottom:163.387200pt;}
.y1d_c00102{bottom:181.787200pt;}
.y1c_c00102{bottom:200.187067pt;}
.y1b_c00102{bottom:260.027067pt;}
.y1a_c00102{bottom:290.587067pt;}
.y19_c00102{bottom:321.227067pt;}
.y18_c00102{bottom:351.787067pt;}
.y17_c00102{bottom:382.427067pt;}
.y16_c00102{bottom:412.987067pt;}
.y15_c00102{bottom:443.627067pt;}
.y14_c00102{bottom:482.187067pt;}
.y13_c00102{bottom:512.827067pt;}
.y12_c00102{bottom:543.387067pt;}
.y11_c00102{bottom:574.027067pt;}
.y10_c00102{bottom:612.587067pt;}
.yf_c00102{bottom:643.227067pt;}
.ye_c00102{bottom:673.787067pt;}
.yd_c00102{bottom:713.867067pt;}
.yc_c00102{bottom:769.547067pt;}
.yb_c00102{bottom:800.187067pt;}
.ya_c00102{bottom:830.747067pt;}
.y9_c00102{bottom:861.387067pt;}
.y8_c00102{bottom:891.947067pt;}
.y7_c00102{bottom:922.587067pt;}
.y6_c00102{bottom:953.147067pt;}
.y5_c00102{bottom:983.787067pt;}
.y4_c00102{bottom:1014.347067pt;}
.y2_c00102{bottom:1046.987067pt;}
.y1_c00102{bottom:1063.867067pt;}
.h9_c00102{height:42.656250pt;}
.h8_c00102{height:42.656783pt;}
.ha_c00102{height:44.388750pt;}
.h1_c00102{height:44.724687pt;}
.h2_c00102{height:50.062500pt;}
.h4_c00102{height:53.562500pt;}
.h7_c00102{height:57.894063pt;}
.h6_c00102{height:57.894596pt;}
.h3_c00102{height:64.142500pt;}
.h5_c00102{height:72.423750pt;}
.h0_c00102{height:1122.666667pt;}
.w1_c00102{width:793.333333pt;}
.w0_c00102{width:793.626667pt;}
.x0_c00102{left:0.000000pt;}
.x1_c00102{left:113.440000pt;}
.x2_c00102{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_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_bfc143ebd921e227cbf155cb.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00103;src:url('chunks/assets/font_06d3a51cc690aea0350f2be8.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00103;src:url('chunks/assets/font_5d82b604510b3a4c03bed5ea.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00103;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00103{font-family:ff5_c00103;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_c00103;src:url('chunks/assets/font_efa8433a6fff66ea86869bdc.woff2')format("woff");}.ff6_c00103{font-family:ff6_c00103;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_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00103{vertical-align:-29.880000px;}
.v0_c00103{vertical-align:0.000000px;}
.v1_c00103{vertical-align:29.880000px;}
.ls13_c00103{letter-spacing:-0.266400px;}
.lse_c00103{letter-spacing:-0.151200px;}
.ls16_c00103{letter-spacing:-0.078120px;}
.ls15_c00103{letter-spacing:-0.054684px;}
.lsc_c00103{letter-spacing:-0.048096px;}
.lsf_c00103{letter-spacing:-0.028800px;}
.ls11_c00103{letter-spacing:-0.021600px;}
.lsb_c00103{letter-spacing:-0.018036px;}
.ls10_c00103{letter-spacing:-0.014400px;}
.ls17_c00103{letter-spacing:-0.007200px;}
.lsd_c00103{letter-spacing:0.000000px;}
.ls1_c00103{letter-spacing:0.007200px;}
.lsa_c00103{letter-spacing:0.014364px;}
.ls19_c00103{letter-spacing:0.019152px;}
.ls5_c00103{letter-spacing:0.021600px;}
.ls6_c00103{letter-spacing:0.028728px;}
.ls3_c00103{letter-spacing:0.028800px;}
.ls0_c00103{letter-spacing:0.036072px;}
.ls7_c00103{letter-spacing:0.038304px;}
.ls18_c00103{letter-spacing:0.043200px;}
.ls8_c00103{letter-spacing:0.047880px;}
.ls14_c00103{letter-spacing:0.050400px;}
.ls2_c00103{letter-spacing:0.054756px;}
.ls9_c00103{letter-spacing:0.062244px;}
.ls12_c00103{letter-spacing:0.093600px;}
.ls4_c00103{letter-spacing:29.373120px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00103{word-spacing:-19.530000px;}
.ws2_c00103{word-spacing:-19.451880px;}
.ws0_c00103{word-spacing:-10.584756px;}
.ws2c_c00103{word-spacing:-0.043092px;}
.ws1a_c00103{word-spacing:-0.039060px;}
.ws9_c00103{word-spacing:-0.028800px;}
.ws2b_c00103{word-spacing:-0.028728px;}
.ws2a_c00103{word-spacing:-0.019152px;}
.ws29_c00103{word-spacing:-0.009576px;}
.ws6_c00103{word-spacing:0.000000px;}
.ws2d_c00103{word-spacing:0.004788px;}
.wse_c00103{word-spacing:0.021600px;}
.ws3_c00103{word-spacing:0.054108px;}
.ws7_c00103{word-spacing:0.064800px;}
.ws4_c00103{word-spacing:0.108216px;}
.ws1e_c00103{word-spacing:0.115200px;}
.ws5_c00103{word-spacing:0.138276px;}
.ws8_c00103{word-spacing:0.172800px;}
.ws20_c00103{word-spacing:1.807200px;}
.ws27_c00103{word-spacing:1.814400px;}
.ws21_c00103{word-spacing:1.872000px;}
.ws1f_c00103{word-spacing:2.160000px;}
.ws10_c00103{word-spacing:2.512800px;}
.wsf_c00103{word-spacing:2.649600px;}
.ws1c_c00103{word-spacing:2.808000px;}
.ws1b_c00103{word-spacing:2.901600px;}
.ws13_c00103{word-spacing:3.182400px;}
.ws14_c00103{word-spacing:3.254400px;}
.wsc_c00103{word-spacing:3.974400px;}
.wsd_c00103{word-spacing:4.024800px;}
.ws26_c00103{word-spacing:4.334400px;}
.ws23_c00103{word-spacing:5.738400px;}
.ws22_c00103{word-spacing:5.918400px;}
.ws1d_c00103{word-spacing:6.148800px;}
.ws25_c00103{word-spacing:6.796800px;}
.ws24_c00103{word-spacing:7.063200px;}
.ws28_c00103{word-spacing:7.624800px;}
.ws19_c00103{word-spacing:9.309600px;}
.ws18_c00103{word-spacing:9.410400px;}
.ws17_c00103{word-spacing:9.468000px;}
.ws11_c00103{word-spacing:13.320000px;}
.ws15_c00103{word-spacing:14.400000px;}
.ws16_c00103{word-spacing:14.443200px;}
.wsa_c00103{word-spacing:19.778400px;}
.wsb_c00103{word-spacing:19.792800px;}
.ws12_c00103{word-spacing:26.661600px;}
._0_c00103{margin-left:-1.142280px;}
._1_c00103{width:1.008000px;}
.fc0_c00103{color:rgb(0,0,0);}
.fs3_c00103{font-size:42.120000px;}
.fs5_c00103{font-size:47.880000px;}
.fs2_c00103{font-size:54.000000px;}
.fs0_c00103{font-size:60.120000px;}
.fs1_c00103{font-size:72.000000px;}
.fs4_c00103{font-size:78.120000px;}
.y0_c00103{bottom:0.000000px;}
.y3_c00103{bottom:57.450450px;}
.y4_c00103{bottom:61.410450px;}
.y22_c00103{bottom:113.704200px;}
.y21_c00103{bottom:132.066180px;}
.y20_c00103{bottom:150.332400px;}
.y1f_c00103{bottom:168.598620px;}
.y1e_c00103{bottom:186.960600px;}
.y1d_c00103{bottom:202.170450px;}
.y1c_c00103{bottom:222.870450px;}
.y1b_c00103{bottom:243.570450px;}
.y1a_c00103{bottom:361.380450px;}
.y19_c00103{bottom:395.760450px;}
.y18_c00103{bottom:430.230450px;}
.y17_c00103{bottom:464.610450px;}
.y16_c00103{bottom:499.080450px;}
.y15_c00103{bottom:533.460450px;}
.y14_c00103{bottom:567.930450px;}
.y13_c00103{bottom:611.310450px;}
.y12_c00103{bottom:645.780450px;}
.y11_c00103{bottom:680.160450px;}
.y10_c00103{bottom:725.250450px;}
.yf_c00103{bottom:787.890450px;}
.ye_c00103{bottom:822.360450px;}
.yd_c00103{bottom:856.740450px;}
.yc_c00103{bottom:891.210450px;}
.yb_c00103{bottom:925.590450px;}
.ya_c00103{bottom:960.060450px;}
.y9_c00103{bottom:994.440450px;}
.y8_c00103{bottom:1037.910450px;}
.y7_c00103{bottom:1072.290450px;}
.y6_c00103{bottom:1106.760450px;}
.y5_c00103{bottom:1141.140450px;}
.y2_c00103{bottom:1173.810450px;}
.y1_c00103{bottom:1196.850450px;}
.h2_c00103{height:47.988281px;}
.h8_c00103{height:49.937344px;}
.h1_c00103{height:50.315273px;}
.h3_c00103{height:56.320312px;}
.h5_c00103{height:60.257812px;}
.h4_c00103{height:65.130820px;}
.h6_c00103{height:65.131420px;}
.h7_c00103{height:81.476719px;}
.h0_c00103{height:1263.000000px;}
.w1_c00103{width:892.500000px;}
.w0_c00103{width:892.830000px;}
.x0_c00103{left:0.000000px;}
.x2_c00103{left:127.620000px;}
.x1_c00103{left:145.440000px;}
.x5_c00103{left:180.810000px;}
.x4_c00103{left:439.020000px;}
.x3_c00103{left:446.490000px;}
@media print{
.v2_c00103{vertical-align:-26.560000pt;}
.v0_c00103{vertical-align:0.000000pt;}
.v1_c00103{vertical-align:26.560000pt;}
.ls13_c00103{letter-spacing:-0.236800pt;}
.lse_c00103{letter-spacing:-0.134400pt;}
.ls16_c00103{letter-spacing:-0.069440pt;}
.ls15_c00103{letter-spacing:-0.048608pt;}
.lsc_c00103{letter-spacing:-0.042752pt;}
.lsf_c00103{letter-spacing:-0.025600pt;}
.ls11_c00103{letter-spacing:-0.019200pt;}
.lsb_c00103{letter-spacing:-0.016032pt;}
.ls10_c00103{letter-spacing:-0.012800pt;}
.ls17_c00103{letter-spacing:-0.006400pt;}
.lsd_c00103{letter-spacing:0.000000pt;}
.ls1_c00103{letter-spacing:0.006400pt;}
.lsa_c00103{letter-spacing:0.012768pt;}
.ls19_c00103{letter-spacing:0.017024pt;}
.ls5_c00103{letter-spacing:0.019200pt;}
.ls6_c00103{letter-spacing:0.025536pt;}
.ls3_c00103{letter-spacing:0.025600pt;}
.ls0_c00103{letter-spacing:0.032064pt;}
.ls7_c00103{letter-spacing:0.034048pt;}
.ls18_c00103{letter-spacing:0.038400pt;}
.ls8_c00103{letter-spacing:0.042560pt;}
.ls14_c00103{letter-spacing:0.044800pt;}
.ls2_c00103{letter-spacing:0.048672pt;}
.ls9_c00103{letter-spacing:0.055328pt;}
.ls12_c00103{letter-spacing:0.083200pt;}
.ls4_c00103{letter-spacing:26.109440pt;}
.ws1_c00103{word-spacing:-17.360000pt;}
.ws2_c00103{word-spacing:-17.290560pt;}
.ws0_c00103{word-spacing:-9.408672pt;}
.ws2c_c00103{word-spacing:-0.038304pt;}
.ws1a_c00103{word-spacing:-0.034720pt;}
.ws9_c00103{word-spacing:-0.025600pt;}
.ws2b_c00103{word-spacing:-0.025536pt;}
.ws2a_c00103{word-spacing:-0.017024pt;}
.ws29_c00103{word-spacing:-0.008512pt;}
.ws6_c00103{word-spacing:0.000000pt;}
.ws2d_c00103{word-spacing:0.004256pt;}
.wse_c00103{word-spacing:0.019200pt;}
.ws3_c00103{word-spacing:0.048096pt;}
.ws7_c00103{word-spacing:0.057600pt;}
.ws4_c00103{word-spacing:0.096192pt;}
.ws1e_c00103{word-spacing:0.102400pt;}
.ws5_c00103{word-spacing:0.122912pt;}
.ws8_c00103{word-spacing:0.153600pt;}
.ws20_c00103{word-spacing:1.606400pt;}
.ws27_c00103{word-spacing:1.612800pt;}
.ws21_c00103{word-spacing:1.664000pt;}
.ws1f_c00103{word-spacing:1.920000pt;}
.ws10_c00103{word-spacing:2.233600pt;}
.wsf_c00103{word-spacing:2.355200pt;}
.ws1c_c00103{word-spacing:2.496000pt;}
.ws1b_c00103{word-spacing:2.579200pt;}
.ws13_c00103{word-spacing:2.828800pt;}
.ws14_c00103{word-spacing:2.892800pt;}
.wsc_c00103{word-spacing:3.532800pt;}
.wsd_c00103{word-spacing:3.577600pt;}
.ws26_c00103{word-spacing:3.852800pt;}
.ws23_c00103{word-spacing:5.100800pt;}
.ws22_c00103{word-spacing:5.260800pt;}
.ws1d_c00103{word-spacing:5.465600pt;}
.ws25_c00103{word-spacing:6.041600pt;}
.ws24_c00103{word-spacing:6.278400pt;}
.ws28_c00103{word-spacing:6.777600pt;}
.ws19_c00103{word-spacing:8.275200pt;}
.ws18_c00103{word-spacing:8.364800pt;}
.ws17_c00103{word-spacing:8.416000pt;}
.ws11_c00103{word-spacing:11.840000pt;}
.ws15_c00103{word-spacing:12.800000pt;}
.ws16_c00103{word-spacing:12.838400pt;}
.wsa_c00103{word-spacing:17.580800pt;}
.wsb_c00103{word-spacing:17.593600pt;}
.ws12_c00103{word-spacing:23.699200pt;}
._0_c00103{margin-left:-1.015360pt;}
._1_c00103{width:0.896000pt;}
.fs3_c00103{font-size:37.440000pt;}
.fs5_c00103{font-size:42.560000pt;}
.fs2_c00103{font-size:48.000000pt;}
.fs0_c00103{font-size:53.440000pt;}
.fs1_c00103{font-size:64.000000pt;}
.fs4_c00103{font-size:69.440000pt;}
.y0_c00103{bottom:0.000000pt;}
.y3_c00103{bottom:51.067067pt;}
.y4_c00103{bottom:54.587067pt;}
.y22_c00103{bottom:101.070400pt;}
.y21_c00103{bottom:117.392160pt;}
.y20_c00103{bottom:133.628800pt;}
.y1f_c00103{bottom:149.865440pt;}
.y1e_c00103{bottom:166.187200pt;}
.y1d_c00103{bottom:179.707067pt;}
.y1c_c00103{bottom:198.107067pt;}
.y1b_c00103{bottom:216.507067pt;}
.y1a_c00103{bottom:321.227067pt;}
.y19_c00103{bottom:351.787067pt;}
.y18_c00103{bottom:382.427067pt;}
.y17_c00103{bottom:412.987067pt;}
.y16_c00103{bottom:443.627067pt;}
.y15_c00103{bottom:474.187067pt;}
.y14_c00103{bottom:504.827067pt;}
.y13_c00103{bottom:543.387067pt;}
.y12_c00103{bottom:574.027067pt;}
.y11_c00103{bottom:604.587067pt;}
.y10_c00103{bottom:644.667067pt;}
.yf_c00103{bottom:700.347067pt;}
.ye_c00103{bottom:730.987067pt;}
.yd_c00103{bottom:761.547067pt;}
.yc_c00103{bottom:792.187067pt;}
.yb_c00103{bottom:822.747067pt;}
.ya_c00103{bottom:853.387067pt;}
.y9_c00103{bottom:883.947067pt;}
.y8_c00103{bottom:922.587067pt;}
.y7_c00103{bottom:953.147067pt;}
.y6_c00103{bottom:983.787067pt;}
.y5_c00103{bottom:1014.347067pt;}
.y2_c00103{bottom:1043.387067pt;}
.y1_c00103{bottom:1063.867067pt;}
.h2_c00103{height:42.656250pt;}
.h8_c00103{height:44.388750pt;}
.h1_c00103{height:44.724687pt;}
.h3_c00103{height:50.062500pt;}
.h5_c00103{height:53.562500pt;}
.h4_c00103{height:57.894063pt;}
.h6_c00103{height:57.894596pt;}
.h7_c00103{height:72.423750pt;}
.h0_c00103{height:1122.666667pt;}
.w1_c00103{width:793.333333pt;}
.w0_c00103{width:793.626667pt;}
.x0_c00103{left:0.000000pt;}
.x2_c00103{left:113.440000pt;}
.x1_c00103{left:129.280000pt;}
.x5_c00103{left:160.720000pt;}
.x4_c00103{left:390.240000pt;}
.x3_c00103{left:396.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_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_e684f13e8415352878923963.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.100098;font-style:normal;font-weight:normal;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_2ee3ba83237afb5d4774218c.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;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_c00104;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00104;src:url('chunks/assets/font_b2eb6b2111d30e1547e3bc4b.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00104;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00104{font-family:ff5_c00104;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_c00104;src:url('chunks/assets/font_2459adf12ba6cfee100941d2.woff2')format("woff");}.ff6_c00104{font-family:ff6_c00104;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_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);}
.v3_c00104{vertical-align:-29.880000px;}
.v0_c00104{vertical-align:0.000000px;}
.v1_c00104{vertical-align:15.840000px;}
.v2_c00104{vertical-align:29.880000px;}
.ls21_c00104{letter-spacing:-0.453096px;}
.ls18_c00104{letter-spacing:-0.151200px;}
.ls19_c00104{letter-spacing:-0.050400px;}
.ls2b_c00104{letter-spacing:-0.047880px;}
.ls1c_c00104{letter-spacing:-0.043200px;}
.ls22_c00104{letter-spacing:-0.036000px;}
.ls1e_c00104{letter-spacing:-0.028800px;}
.ls20_c00104{letter-spacing:-0.015624px;}
.ls1b_c00104{letter-spacing:-0.014400px;}
.ls2a_c00104{letter-spacing:-0.014364px;}
.ls24_c00104{letter-spacing:-0.011664px;}
.ls1f_c00104{letter-spacing:-0.007812px;}
.ls2d_c00104{letter-spacing:-0.007776px;}
.ls1d_c00104{letter-spacing:-0.007200px;}
.ls26_c00104{letter-spacing:-0.003888px;}
.ls17_c00104{letter-spacing:0.000000px;}
.ls25_c00104{letter-spacing:0.003888px;}
.ls4_c00104{letter-spacing:0.007200px;}
.ls29_c00104{letter-spacing:0.009576px;}
.ls8_c00104{letter-spacing:0.014364px;}
.ls2_c00104{letter-spacing:0.014400px;}
.ls9_c00104{letter-spacing:0.019152px;}
.lsd_c00104{letter-spacing:0.023940px;}
.ls11_c00104{letter-spacing:0.030600px;}
.ls16_c00104{letter-spacing:0.033516px;}
.lsc_c00104{letter-spacing:0.038304px;}
.lsa_c00104{letter-spacing:0.043092px;}
.lsb_c00104{letter-spacing:0.047880px;}
.ls0_c00104{letter-spacing:0.048096px;}
.lsf_c00104{letter-spacing:0.052668px;}
.ls3_c00104{letter-spacing:0.054756px;}
.ls15_c00104{letter-spacing:0.062244px;}
.ls23_c00104{letter-spacing:0.071820px;}
.ls12_c00104{letter-spacing:0.075960px;}
.ls10_c00104{letter-spacing:0.090972px;}
.ls1a_c00104{letter-spacing:0.093600px;}
.lse_c00104{letter-spacing:0.104040px;}
.ls6_c00104{letter-spacing:0.144000px;}
.ls2c_c00104{letter-spacing:0.346032px;}
.ls27_c00104{letter-spacing:0.353808px;}
.ls28_c00104{letter-spacing:0.357696px;}
.ls14_c00104{letter-spacing:0.435960px;}
.ls13_c00104{letter-spacing:3.951360px;}
.ls5_c00104{letter-spacing:29.373120px;}
.ls7_c00104{letter-spacing:66.024000px;}
.ls1_c00104{letter-spacing:1227.240000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00104{word-spacing:-19.530000px;}
.ws3_c00104{word-spacing:-19.514376px;}
.ws1_c00104{word-spacing:-17.956800px;}
.ws8_c00104{word-spacing:-13.348944px;}
.ws4_c00104{word-spacing:-13.310640px;}
.ws7_c00104{word-spacing:-11.166336px;}
.ws5_c00104{word-spacing:-10.812528px;}
.ws6_c00104{word-spacing:-10.804752px;}
.ws9_c00104{word-spacing:-10.800864px;}
.ws0_c00104{word-spacing:-10.584756px;}
.ws1b_c00104{word-spacing:-0.085932px;}
.ws39_c00104{word-spacing:-0.019152px;}
.ws3d_c00104{word-spacing:-0.014364px;}
.ws27_c00104{word-spacing:-0.007200px;}
.ws38_c00104{word-spacing:-0.004788px;}
.wsb_c00104{word-spacing:0.000000px;}
.ws1a_c00104{word-spacing:0.007200px;}
.ws19_c00104{word-spacing:0.014400px;}
.wsa_c00104{word-spacing:0.042084px;}
.ws1f_c00104{word-spacing:0.079200px;}
.wsf_c00104{word-spacing:0.165600px;}
.ws14_c00104{word-spacing:1.080000px;}
.ws13_c00104{word-spacing:1.094400px;}
.ws1e_c00104{word-spacing:2.080800px;}
.ws1d_c00104{word-spacing:2.116800px;}
.ws37_c00104{word-spacing:3.940524px;}
.ws34_c00104{word-spacing:3.954888px;}
.ws15_c00104{word-spacing:3.967200px;}
.ws16_c00104{word-spacing:3.988800px;}
.ws36_c00104{word-spacing:3.993192px;}
.ws35_c00104{word-spacing:4.328352px;}
.ws1c_c00104{word-spacing:5.436000px;}
.ws2f_c00104{word-spacing:6.085548px;}
.ws2c_c00104{word-spacing:6.099912px;}
.ws2d_c00104{word-spacing:6.114276px;}
.ws30_c00104{word-spacing:6.444648px;}
.ws31_c00104{word-spacing:6.482952px;}
.ws2e_c00104{word-spacing:6.489072px;}
.ws20_c00104{word-spacing:6.494400px;}
.ws33_c00104{word-spacing:6.808536px;}
.ws32_c00104{word-spacing:6.832476px;}
.ws3b_c00104{word-spacing:7.517160px;}
.ws3c_c00104{word-spacing:7.521948px;}
.ws2b_c00104{word-spacing:7.531524px;}
.ws2a_c00104{word-spacing:7.536312px;}
.ws28_c00104{word-spacing:7.560252px;}
.ws3a_c00104{word-spacing:7.565040px;}
.ws29_c00104{word-spacing:7.569936px;}
.ws10_c00104{word-spacing:8.632800px;}
.ws25_c00104{word-spacing:10.792800px;}
.ws26_c00104{word-spacing:10.879200px;}
.ws18_c00104{word-spacing:11.505600px;}
.ws17_c00104{word-spacing:11.599200px;}
.ws12_c00104{word-spacing:12.945600px;}
.ws11_c00104{word-spacing:13.089600px;}
.ws21_c00104{word-spacing:13.996800px;}
.ws22_c00104{word-spacing:14.068800px;}
.ws24_c00104{word-spacing:16.560000px;}
.ws23_c00104{word-spacing:16.596000px;}
.wsd_c00104{word-spacing:24.105600px;}
.wsc_c00104{word-spacing:24.120000px;}
.wse_c00104{word-spacing:24.199200px;}
._0_c00104{margin-left:-1.322640px;}
._1_c00104{width:1.152000px;}
._3_c00104{width:6.033024px;}
._2_c00104{width:7.588980px;}
.fc0_c00104{color:rgb(0,0,0);}
.fs6_c00104{font-size:38.880000px;}
.fs3_c00104{font-size:42.120000px;}
.fs5_c00104{font-size:47.880000px;}
.fs1_c00104{font-size:54.000000px;}
.fs0_c00104{font-size:60.120000px;}
.fs2_c00104{font-size:72.000000px;}
.fs4_c00104{font-size:78.120000px;}
.y0_c00104{bottom:0.000000px;}
.y3_c00104{bottom:57.450450px;}
.y27_c00104{bottom:113.704920px;}
.y26_c00104{bottom:132.066900px;}
.y25_c00104{bottom:150.333120px;}
.y24_c00104{bottom:168.599340px;}
.y23_c00104{bottom:182.471250px;}
.y22_c00104{bottom:200.737470px;}
.y21_c00104{bottom:219.003690px;}
.y20_c00104{bottom:232.864950px;}
.y1f_c00104{bottom:246.634950px;}
.y1e_c00104{bottom:260.403690px;}
.y1d_c00104{bottom:274.264950px;}
.y1c_c00104{bottom:288.034950px;}
.y1b_c00104{bottom:301.800450px;}
.y1a_c00104{bottom:317.010450px;}
.y19_c00104{bottom:337.710450px;}
.y18_c00104{bottom:358.410450px;}
.y17_c00104{bottom:403.230450px;}
.y16_c00104{bottom:446.610450px;}
.y15_c00104{bottom:490.080450px;}
.y14_c00104{bottom:533.460450px;}
.y13_c00104{bottom:567.930450px;}
.y12_c00104{bottom:602.310450px;}
.y11_c00104{bottom:636.780450px;}
.y10_c00104{bottom:671.160450px;}
.yf_c00104{bottom:714.630450px;}
.ye_c00104{bottom:749.010450px;}
.yd_c00104{bottom:783.480450px;}
.yc_c00104{bottom:828.480450px;}
.yb_c00104{bottom:891.210450px;}
.ya_c00104{bottom:925.590450px;}
.y9_c00104{bottom:960.060450px;}
.y8_c00104{bottom:994.440450px;}
.y7_c00104{bottom:1028.910450px;}
.y6_c00104{bottom:1063.290450px;}
.y5_c00104{bottom:1106.760450px;}
.y4_c00104{bottom:1141.140450px;}
.y2_c00104{bottom:1177.860450px;}
.y1_c00104{bottom:1196.850450px;}
.h8_c00104{height:47.988281px;}
.h9_c00104{height:49.937344px;}
.h1_c00104{height:50.315273px;}
.h2_c00104{height:56.320312px;}
.h4_c00104{height:60.257812px;}
.h5_c00104{height:65.130820px;}
.h3_c00104{height:72.160312px;}
.h7_c00104{height:75.093750px;}
.h6_c00104{height:81.476719px;}
.h0_c00104{height:1263.000000px;}
.w1_c00104{width:892.500000px;}
.w0_c00104{width:892.830000px;}
.x0_c00104{left:0.000000px;}
.x1_c00104{left:127.620000px;}
.x3_c00104{left:154.440000px;}
.x2_c00104{left:180.810000px;}
@media print{
.v3_c00104{vertical-align:-26.560000pt;}
.v0_c00104{vertical-align:0.000000pt;}
.v1_c00104{vertical-align:14.080000pt;}
.v2_c00104{vertical-align:26.560000pt;}
.ls21_c00104{letter-spacing:-0.402752pt;}
.ls18_c00104{letter-spacing:-0.134400pt;}
.ls19_c00104{letter-spacing:-0.044800pt;}
.ls2b_c00104{letter-spacing:-0.042560pt;}
.ls1c_c00104{letter-spacing:-0.038400pt;}
.ls22_c00104{letter-spacing:-0.032000pt;}
.ls1e_c00104{letter-spacing:-0.025600pt;}
.ls20_c00104{letter-spacing:-0.013888pt;}
.ls1b_c00104{letter-spacing:-0.012800pt;}
.ls2a_c00104{letter-spacing:-0.012768pt;}
.ls24_c00104{letter-spacing:-0.010368pt;}
.ls1f_c00104{letter-spacing:-0.006944pt;}
.ls2d_c00104{letter-spacing:-0.006912pt;}
.ls1d_c00104{letter-spacing:-0.006400pt;}
.ls26_c00104{letter-spacing:-0.003456pt;}
.ls17_c00104{letter-spacing:0.000000pt;}
.ls25_c00104{letter-spacing:0.003456pt;}
.ls4_c00104{letter-spacing:0.006400pt;}
.ls29_c00104{letter-spacing:0.008512pt;}
.ls8_c00104{letter-spacing:0.012768pt;}
.ls2_c00104{letter-spacing:0.012800pt;}
.ls9_c00104{letter-spacing:0.017024pt;}
.lsd_c00104{letter-spacing:0.021280pt;}
.ls11_c00104{letter-spacing:0.027200pt;}
.ls16_c00104{letter-spacing:0.029792pt;}
.lsc_c00104{letter-spacing:0.034048pt;}
.lsa_c00104{letter-spacing:0.038304pt;}
.lsb_c00104{letter-spacing:0.042560pt;}
.ls0_c00104{letter-spacing:0.042752pt;}
.lsf_c00104{letter-spacing:0.046816pt;}
.ls3_c00104{letter-spacing:0.048672pt;}
.ls15_c00104{letter-spacing:0.055328pt;}
.ls23_c00104{letter-spacing:0.063840pt;}
.ls12_c00104{letter-spacing:0.067520pt;}
.ls10_c00104{letter-spacing:0.080864pt;}
.ls1a_c00104{letter-spacing:0.083200pt;}
.lse_c00104{letter-spacing:0.092480pt;}
.ls6_c00104{letter-spacing:0.128000pt;}
.ls2c_c00104{letter-spacing:0.307584pt;}
.ls27_c00104{letter-spacing:0.314496pt;}
.ls28_c00104{letter-spacing:0.317952pt;}
.ls14_c00104{letter-spacing:0.387520pt;}
.ls13_c00104{letter-spacing:3.512320pt;}
.ls5_c00104{letter-spacing:26.109440pt;}
.ls7_c00104{letter-spacing:58.688000pt;}
.ls1_c00104{letter-spacing:1090.880000pt;}
.ws2_c00104{word-spacing:-17.360000pt;}
.ws3_c00104{word-spacing:-17.346112pt;}
.ws1_c00104{word-spacing:-15.961600pt;}
.ws8_c00104{word-spacing:-11.865728pt;}
.ws4_c00104{word-spacing:-11.831680pt;}
.ws7_c00104{word-spacing:-9.925632pt;}
.ws5_c00104{word-spacing:-9.611136pt;}
.ws6_c00104{word-spacing:-9.604224pt;}
.ws9_c00104{word-spacing:-9.600768pt;}
.ws0_c00104{word-spacing:-9.408672pt;}
.ws1b_c00104{word-spacing:-0.076384pt;}
.ws39_c00104{word-spacing:-0.017024pt;}
.ws3d_c00104{word-spacing:-0.012768pt;}
.ws27_c00104{word-spacing:-0.006400pt;}
.ws38_c00104{word-spacing:-0.004256pt;}
.wsb_c00104{word-spacing:0.000000pt;}
.ws1a_c00104{word-spacing:0.006400pt;}
.ws19_c00104{word-spacing:0.012800pt;}
.wsa_c00104{word-spacing:0.037408pt;}
.ws1f_c00104{word-spacing:0.070400pt;}
.wsf_c00104{word-spacing:0.147200pt;}
.ws14_c00104{word-spacing:0.960000pt;}
.ws13_c00104{word-spacing:0.972800pt;}
.ws1e_c00104{word-spacing:1.849600pt;}
.ws1d_c00104{word-spacing:1.881600pt;}
.ws37_c00104{word-spacing:3.502688pt;}
.ws34_c00104{word-spacing:3.515456pt;}
.ws15_c00104{word-spacing:3.526400pt;}
.ws16_c00104{word-spacing:3.545600pt;}
.ws36_c00104{word-spacing:3.549504pt;}
.ws35_c00104{word-spacing:3.847424pt;}
.ws1c_c00104{word-spacing:4.832000pt;}
.ws2f_c00104{word-spacing:5.409376pt;}
.ws2c_c00104{word-spacing:5.422144pt;}
.ws2d_c00104{word-spacing:5.434912pt;}
.ws30_c00104{word-spacing:5.728576pt;}
.ws31_c00104{word-spacing:5.762624pt;}
.ws2e_c00104{word-spacing:5.768064pt;}
.ws20_c00104{word-spacing:5.772800pt;}
.ws33_c00104{word-spacing:6.052032pt;}
.ws32_c00104{word-spacing:6.073312pt;}
.ws3b_c00104{word-spacing:6.681920pt;}
.ws3c_c00104{word-spacing:6.686176pt;}
.ws2b_c00104{word-spacing:6.694688pt;}
.ws2a_c00104{word-spacing:6.698944pt;}
.ws28_c00104{word-spacing:6.720224pt;}
.ws3a_c00104{word-spacing:6.724480pt;}
.ws29_c00104{word-spacing:6.728832pt;}
.ws10_c00104{word-spacing:7.673600pt;}
.ws25_c00104{word-spacing:9.593600pt;}
.ws26_c00104{word-spacing:9.670400pt;}
.ws18_c00104{word-spacing:10.227200pt;}
.ws17_c00104{word-spacing:10.310400pt;}
.ws12_c00104{word-spacing:11.507200pt;}
.ws11_c00104{word-spacing:11.635200pt;}
.ws21_c00104{word-spacing:12.441600pt;}
.ws22_c00104{word-spacing:12.505600pt;}
.ws24_c00104{word-spacing:14.720000pt;}
.ws23_c00104{word-spacing:14.752000pt;}
.wsd_c00104{word-spacing:21.427200pt;}
.wsc_c00104{word-spacing:21.440000pt;}
.wse_c00104{word-spacing:21.510400pt;}
._0_c00104{margin-left:-1.175680pt;}
._1_c00104{width:1.024000pt;}
._3_c00104{width:5.362688pt;}
._2_c00104{width:6.745760pt;}
.fs6_c00104{font-size:34.560000pt;}
.fs3_c00104{font-size:37.440000pt;}
.fs5_c00104{font-size:42.560000pt;}
.fs1_c00104{font-size:48.000000pt;}
.fs0_c00104{font-size:53.440000pt;}
.fs2_c00104{font-size:64.000000pt;}
.fs4_c00104{font-size:69.440000pt;}
.y0_c00104{bottom:0.000000pt;}
.y3_c00104{bottom:51.067067pt;}
.y27_c00104{bottom:101.071040pt;}
.y26_c00104{bottom:117.392800pt;}
.y25_c00104{bottom:133.629440pt;}
.y24_c00104{bottom:149.866080pt;}
.y23_c00104{bottom:162.196667pt;}
.y22_c00104{bottom:178.433307pt;}
.y21_c00104{bottom:194.669947pt;}
.y20_c00104{bottom:206.991067pt;}
.y1f_c00104{bottom:219.231067pt;}
.y1e_c00104{bottom:231.469947pt;}
.y1d_c00104{bottom:243.791067pt;}
.y1c_c00104{bottom:256.031067pt;}
.y1b_c00104{bottom:268.267067pt;}
.y1a_c00104{bottom:281.787067pt;}
.y19_c00104{bottom:300.187067pt;}
.y18_c00104{bottom:318.587067pt;}
.y17_c00104{bottom:358.427067pt;}
.y16_c00104{bottom:396.987067pt;}
.y15_c00104{bottom:435.627067pt;}
.y14_c00104{bottom:474.187067pt;}
.y13_c00104{bottom:504.827067pt;}
.y12_c00104{bottom:535.387067pt;}
.y11_c00104{bottom:566.027067pt;}
.y10_c00104{bottom:596.587067pt;}
.yf_c00104{bottom:635.227067pt;}
.ye_c00104{bottom:665.787067pt;}
.yd_c00104{bottom:696.427067pt;}
.yc_c00104{bottom:736.427067pt;}
.yb_c00104{bottom:792.187067pt;}
.ya_c00104{bottom:822.747067pt;}
.y9_c00104{bottom:853.387067pt;}
.y8_c00104{bottom:883.947067pt;}
.y7_c00104{bottom:914.587067pt;}
.y6_c00104{bottom:945.147067pt;}
.y5_c00104{bottom:983.787067pt;}
.y4_c00104{bottom:1014.347067pt;}
.y2_c00104{bottom:1046.987067pt;}
.y1_c00104{bottom:1063.867067pt;}
.h8_c00104{height:42.656250pt;}
.h9_c00104{height:44.388750pt;}
.h1_c00104{height:44.724687pt;}
.h2_c00104{height:50.062500pt;}
.h4_c00104{height:53.562500pt;}
.h5_c00104{height:57.894063pt;}
.h3_c00104{height:64.142500pt;}
.h7_c00104{height:66.750000pt;}
.h6_c00104{height:72.423750pt;}
.h0_c00104{height:1122.666667pt;}
.w1_c00104{width:793.333333pt;}
.w0_c00104{width:793.626667pt;}
.x0_c00104{left:0.000000pt;}
.x1_c00104{left:113.440000pt;}
.x3_c00104{left:137.280000pt;}
.x2_c00104{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_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_10430db9739b7a62c541a9bf.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00105;src:url('chunks/assets/font_1ef37c13ba40284858965d35.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00105;src:url('chunks/assets/font_267214a6aa86d2a4f3428e74.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;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_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;}
.v2_c00105{vertical-align:15.220440px;}
.v1_c00105{vertical-align:29.880000px;}
.ls14_c00105{letter-spacing:-0.151200px;}
.ls1b_c00105{letter-spacing:-0.054108px;}
.ls12_c00105{letter-spacing:-0.048096px;}
.ls16_c00105{letter-spacing:-0.036000px;}
.ls1a_c00105{letter-spacing:-0.028800px;}
.ls1c_c00105{letter-spacing:-0.024048px;}
.ls19_c00105{letter-spacing:-0.021600px;}
.ls11_c00105{letter-spacing:-0.018036px;}
.ls15_c00105{letter-spacing:-0.014400px;}
.ls20_c00105{letter-spacing:-0.009576px;}
.ls1f_c00105{letter-spacing:-0.007776px;}
.ls18_c00105{letter-spacing:-0.007200px;}
.ls1e_c00105{letter-spacing:-0.003888px;}
.ls13_c00105{letter-spacing:0.000000px;}
.lsb_c00105{letter-spacing:0.007200px;}
.lsc_c00105{letter-spacing:0.014364px;}
.ls4_c00105{letter-spacing:0.014400px;}
.ls5_c00105{letter-spacing:0.021600px;}
.lsa_c00105{letter-spacing:0.028800px;}
.lsf_c00105{letter-spacing:0.033516px;}
.ls0_c00105{letter-spacing:0.036072px;}
.lse_c00105{letter-spacing:0.038304px;}
.ls8_c00105{letter-spacing:0.042084px;}
.ls7_c00105{letter-spacing:0.048096px;}
.ls10_c00105{letter-spacing:0.052668px;}
.ls3_c00105{letter-spacing:0.054756px;}
.ls6_c00105{letter-spacing:0.066132px;}
.ls17_c00105{letter-spacing:0.093600px;}
.ls9_c00105{letter-spacing:0.136080px;}
.ls1_c00105{letter-spacing:0.144000px;}
.ls1d_c00105{letter-spacing:0.168336px;}
.lsd_c00105{letter-spacing:0.350640px;}
.ls2_c00105{letter-spacing:66.024000px;}
.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.021600px;}
.ws3_c00105{word-spacing:-10.800864px;}
.ws0_c00105{word-spacing:-10.584756px;}
.ws1_c00105{word-spacing:-9.856080px;}
.ws15_c00105{word-spacing:-0.336672px;}
.ws2c_c00105{word-spacing:-0.033516px;}
.ws2b_c00105{word-spacing:-0.019152px;}
.ws7_c00105{word-spacing:0.000000px;}
.ws29_c00105{word-spacing:0.004788px;}
.wsd_c00105{word-spacing:0.007200px;}
.ws2d_c00105{word-spacing:0.019152px;}
.ws2a_c00105{word-spacing:0.028728px;}
.ws9_c00105{word-spacing:0.036000px;}
.ws4_c00105{word-spacing:0.054108px;}
.ws1e_c00105{word-spacing:0.072000px;}
.ws1f_c00105{word-spacing:0.100800px;}
.ws5_c00105{word-spacing:0.108216px;}
.ws1c_c00105{word-spacing:0.114228px;}
.ws6_c00105{word-spacing:0.138276px;}
.wsb_c00105{word-spacing:1.080000px;}
.wsc_c00105{word-spacing:1.087200px;}
.ws19_c00105{word-spacing:1.106208px;}
.ws14_c00105{word-spacing:1.303200px;}
.ws13_c00105{word-spacing:1.353600px;}
.ws12_c00105{word-spacing:1.468800px;}
.ws8_c00105{word-spacing:2.174400px;}
.ws11_c00105{word-spacing:3.218400px;}
.ws10_c00105{word-spacing:3.434400px;}
.ws22_c00105{word-spacing:3.614400px;}
.wsf_c00105{word-spacing:3.621600px;}
.ws21_c00105{word-spacing:3.672000px;}
.ws27_c00105{word-spacing:5.054400px;}
.ws28_c00105{word-spacing:5.169600px;}
.wse_c00105{word-spacing:5.745600px;}
.ws1a_c00105{word-spacing:6.510996px;}
.ws26_c00105{word-spacing:7.221600px;}
.ws16_c00105{word-spacing:7.292556px;}
.ws17_c00105{word-spacing:7.346664px;}
.ws25_c00105{word-spacing:7.581600px;}
.ws1d_c00105{word-spacing:7.920000px;}
.ws18_c00105{word-spacing:10.478916px;}
.wsa_c00105{word-spacing:14.047200px;}
.ws1b_c00105{word-spacing:14.086116px;}
.ws24_c00105{word-spacing:15.458400px;}
.ws23_c00105{word-spacing:15.487200px;}
.ws20_c00105{word-spacing:18.691200px;}
._0_c00105{margin-left:-1.142280px;}
._1_c00105{width:1.224000px;}
.fc0_c00105{color:rgb(0,0,0);}
.fs4_c00105{font-size:38.880000px;}
.fs3_c00105{font-size:42.120000px;}
.fs5_c00105{font-size:47.880000px;}
.fs2_c00105{font-size:54.000000px;}
.fs0_c00105{font-size:60.120000px;}
.fs1_c00105{font-size:72.000000px;}
.y0_c00105{bottom:0.000000px;}
.y3_c00105{bottom:57.450450px;}
.y4_c00105{bottom:61.410450px;}
.y26_c00105{bottom:113.704200px;}
.y25_c00105{bottom:132.066180px;}
.y24_c00105{bottom:150.332400px;}
.y23_c00105{bottom:168.598620px;}
.y22_c00105{bottom:186.960600px;}
.y21_c00105{bottom:202.170450px;}
.y20_c00105{bottom:222.870450px;}
.y1f_c00105{bottom:243.570450px;}
.y1e_c00105{bottom:322.410600px;}
.y1d_c00105{bottom:356.790600px;}
.y1c_c00105{bottom:391.260600px;}
.y1b_c00105{bottom:425.640600px;}
.y1a_c00105{bottom:469.110450px;}
.y19_c00105{bottom:503.490450px;}
.y18_c00105{bottom:537.960450px;}
.y17_c00105{bottom:572.340450px;}
.y16_c00105{bottom:615.810450px;}
.y15_c00105{bottom:650.190450px;}
.y14_c00105{bottom:687.695340px;}
.y13_c00105{bottom:704.528940px;}
.y12_c00105{bottom:721.452720px;}
.y11_c00105{bottom:738.286320px;}
.y10_c00105{bottom:755.210100px;}
.yf_c00105{bottom:772.043700px;}
.ye_c00105{bottom:797.970450px;}
.yd_c00105{bottom:838.740450px;}
.yc_c00105{bottom:873.210450px;}
.yb_c00105{bottom:907.590450px;}
.ya_c00105{bottom:942.060450px;}
.y9_c00105{bottom:985.440450px;}
.y8_c00105{bottom:1019.910450px;}
.y7_c00105{bottom:1054.290450px;}
.y6_c00105{bottom:1106.760450px;}
.y5_c00105{bottom:1141.140450px;}
.y2_c00105{bottom:1173.810450px;}
.y1_c00105{bottom:1196.850450px;}
.h2_c00105{height:47.988281px;}
.ha_c00105{height:49.937344px;}
.h1_c00105{height:50.315273px;}
.h7_c00105{height:50.415713px;}
.h3_c00105{height:56.320312px;}
.h6_c00105{height:60.257812px;}
.h9_c00105{height:65.130220px;}
.h5_c00105{height:65.130820px;}
.h8_c00105{height:65.131420px;}
.h4_c00105{height:75.093750px;}
.h0_c00105{height:1263.000000px;}
.w1_c00105{width:892.500000px;}
.w0_c00105{width:892.830000px;}
.x0_c00105{left:0.000000px;}
.x2_c00105{left:127.620000px;}
.x1_c00105{left:145.440000px;}
.x5_c00105{left:154.440000px;}
.x6_c00105{left:181.170000px;}
.x4_c00105{left:439.020000px;}
.x3_c00105{left:446.490000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.v2_c00105{vertical-align:13.529280pt;}
.v1_c00105{vertical-align:26.560000pt;}
.ls14_c00105{letter-spacing:-0.134400pt;}
.ls1b_c00105{letter-spacing:-0.048096pt;}
.ls12_c00105{letter-spacing:-0.042752pt;}
.ls16_c00105{letter-spacing:-0.032000pt;}
.ls1a_c00105{letter-spacing:-0.025600pt;}
.ls1c_c00105{letter-spacing:-0.021376pt;}
.ls19_c00105{letter-spacing:-0.019200pt;}
.ls11_c00105{letter-spacing:-0.016032pt;}
.ls15_c00105{letter-spacing:-0.012800pt;}
.ls20_c00105{letter-spacing:-0.008512pt;}
.ls1f_c00105{letter-spacing:-0.006912pt;}
.ls18_c00105{letter-spacing:-0.006400pt;}
.ls1e_c00105{letter-spacing:-0.003456pt;}
.ls13_c00105{letter-spacing:0.000000pt;}
.lsb_c00105{letter-spacing:0.006400pt;}
.lsc_c00105{letter-spacing:0.012768pt;}
.ls4_c00105{letter-spacing:0.012800pt;}
.ls5_c00105{letter-spacing:0.019200pt;}
.lsa_c00105{letter-spacing:0.025600pt;}
.lsf_c00105{letter-spacing:0.029792pt;}
.ls0_c00105{letter-spacing:0.032064pt;}
.lse_c00105{letter-spacing:0.034048pt;}
.ls8_c00105{letter-spacing:0.037408pt;}
.ls7_c00105{letter-spacing:0.042752pt;}
.ls10_c00105{letter-spacing:0.046816pt;}
.ls3_c00105{letter-spacing:0.048672pt;}
.ls6_c00105{letter-spacing:0.058784pt;}
.ls17_c00105{letter-spacing:0.083200pt;}
.ls9_c00105{letter-spacing:0.120960pt;}
.ls1_c00105{letter-spacing:0.128000pt;}
.ls1d_c00105{letter-spacing:0.149632pt;}
.lsd_c00105{letter-spacing:0.311680pt;}
.ls2_c00105{letter-spacing:58.688000pt;}
.ws2_c00105{word-spacing:-16.019200pt;}
.ws3_c00105{word-spacing:-9.600768pt;}
.ws0_c00105{word-spacing:-9.408672pt;}
.ws1_c00105{word-spacing:-8.760960pt;}
.ws15_c00105{word-spacing:-0.299264pt;}
.ws2c_c00105{word-spacing:-0.029792pt;}
.ws2b_c00105{word-spacing:-0.017024pt;}
.ws7_c00105{word-spacing:0.000000pt;}
.ws29_c00105{word-spacing:0.004256pt;}
.wsd_c00105{word-spacing:0.006400pt;}
.ws2d_c00105{word-spacing:0.017024pt;}
.ws2a_c00105{word-spacing:0.025536pt;}
.ws9_c00105{word-spacing:0.032000pt;}
.ws4_c00105{word-spacing:0.048096pt;}
.ws1e_c00105{word-spacing:0.064000pt;}
.ws1f_c00105{word-spacing:0.089600pt;}
.ws5_c00105{word-spacing:0.096192pt;}
.ws1c_c00105{word-spacing:0.101536pt;}
.ws6_c00105{word-spacing:0.122912pt;}
.wsb_c00105{word-spacing:0.960000pt;}
.wsc_c00105{word-spacing:0.966400pt;}
.ws19_c00105{word-spacing:0.983296pt;}
.ws14_c00105{word-spacing:1.158400pt;}
.ws13_c00105{word-spacing:1.203200pt;}
.ws12_c00105{word-spacing:1.305600pt;}
.ws8_c00105{word-spacing:1.932800pt;}
.ws11_c00105{word-spacing:2.860800pt;}
.ws10_c00105{word-spacing:3.052800pt;}
.ws22_c00105{word-spacing:3.212800pt;}
.wsf_c00105{word-spacing:3.219200pt;}
.ws21_c00105{word-spacing:3.264000pt;}
.ws27_c00105{word-spacing:4.492800pt;}
.ws28_c00105{word-spacing:4.595200pt;}
.wse_c00105{word-spacing:5.107200pt;}
.ws1a_c00105{word-spacing:5.787552pt;}
.ws26_c00105{word-spacing:6.419200pt;}
.ws16_c00105{word-spacing:6.482272pt;}
.ws17_c00105{word-spacing:6.530368pt;}
.ws25_c00105{word-spacing:6.739200pt;}
.ws1d_c00105{word-spacing:7.040000pt;}
.ws18_c00105{word-spacing:9.314592pt;}
.wsa_c00105{word-spacing:12.486400pt;}
.ws1b_c00105{word-spacing:12.520992pt;}
.ws24_c00105{word-spacing:13.740800pt;}
.ws23_c00105{word-spacing:13.766400pt;}
.ws20_c00105{word-spacing:16.614400pt;}
._0_c00105{margin-left:-1.015360pt;}
._1_c00105{width:1.088000pt;}
.fs4_c00105{font-size:34.560000pt;}
.fs3_c00105{font-size:37.440000pt;}
.fs5_c00105{font-size:42.560000pt;}
.fs2_c00105{font-size:48.000000pt;}
.fs0_c00105{font-size:53.440000pt;}
.fs1_c00105{font-size:64.000000pt;}
.y0_c00105{bottom:0.000000pt;}
.y3_c00105{bottom:51.067067pt;}
.y4_c00105{bottom:54.587067pt;}
.y26_c00105{bottom:101.070400pt;}
.y25_c00105{bottom:117.392160pt;}
.y24_c00105{bottom:133.628800pt;}
.y23_c00105{bottom:149.865440pt;}
.y22_c00105{bottom:166.187200pt;}
.y21_c00105{bottom:179.707067pt;}
.y20_c00105{bottom:198.107067pt;}
.y1f_c00105{bottom:216.507067pt;}
.y1e_c00105{bottom:286.587200pt;}
.y1d_c00105{bottom:317.147200pt;}
.y1c_c00105{bottom:347.787200pt;}
.y1b_c00105{bottom:378.347200pt;}
.y1a_c00105{bottom:416.987067pt;}
.y19_c00105{bottom:447.547067pt;}
.y18_c00105{bottom:478.187067pt;}
.y17_c00105{bottom:508.747067pt;}
.y16_c00105{bottom:547.387067pt;}
.y15_c00105{bottom:577.947067pt;}
.y14_c00105{bottom:611.284747pt;}
.y13_c00105{bottom:626.247947pt;}
.y12_c00105{bottom:641.291307pt;}
.y11_c00105{bottom:656.254507pt;}
.y10_c00105{bottom:671.297867pt;}
.yf_c00105{bottom:686.261067pt;}
.ye_c00105{bottom:709.307067pt;}
.yd_c00105{bottom:745.547067pt;}
.yc_c00105{bottom:776.187067pt;}
.yb_c00105{bottom:806.747067pt;}
.ya_c00105{bottom:837.387067pt;}
.y9_c00105{bottom:875.947067pt;}
.y8_c00105{bottom:906.587067pt;}
.y7_c00105{bottom:937.147067pt;}
.y6_c00105{bottom:983.787067pt;}
.y5_c00105{bottom:1014.347067pt;}
.y2_c00105{bottom:1043.387067pt;}
.y1_c00105{bottom:1063.867067pt;}
.h2_c00105{height:42.656250pt;}
.ha_c00105{height:44.388750pt;}
.h1_c00105{height:44.724687pt;}
.h7_c00105{height:44.813967pt;}
.h3_c00105{height:50.062500pt;}
.h6_c00105{height:53.562500pt;}
.h9_c00105{height:57.893529pt;}
.h5_c00105{height:57.894063pt;}
.h8_c00105{height:57.894596pt;}
.h4_c00105{height:66.750000pt;}
.h0_c00105{height:1122.666667pt;}
.w1_c00105{width:793.333333pt;}
.w0_c00105{width:793.626667pt;}
.x0_c00105{left:0.000000pt;}
.x2_c00105{left:113.440000pt;}
.x1_c00105{left:129.280000pt;}
.x5_c00105{left:137.280000pt;}
.x6_c00105{left:161.040000pt;}
.x4_c00105{left:390.240000pt;}
.x3_c00105{left:396.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_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_854a01b329533447d2553f5c.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.100098;font-style:normal;font-weight:normal;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_3ef3c8c5f8fc1173aebc8714.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;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_c00106;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_875d1a85d263108c469e4ddb.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00106;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00106{font-family:ff5_c00106;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_c00106;src:url('chunks/assets/font_bb06782510f86f5b0967f21b.woff2')format("woff");}.ff6_c00106{font-family:ff6_c00106;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_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.v1_c00106{vertical-align:15.840000px;}
.v2_c00106{vertical-align:29.880000px;}
.ls1b_c00106{letter-spacing:-0.151200px;}
.ls1e_c00106{letter-spacing:-0.043200px;}
.ls1f_c00106{letter-spacing:-0.028800px;}
.ls2e_c00106{letter-spacing:-0.023328px;}
.ls1d_c00106{letter-spacing:-0.021600px;}
.ls1c_c00106{letter-spacing:-0.015624px;}
.ls21_c00106{letter-spacing:-0.014400px;}
.ls29_c00106{letter-spacing:-0.011664px;}
.ls2d_c00106{letter-spacing:-0.009576px;}
.ls26_c00106{letter-spacing:-0.007776px;}
.ls20_c00106{letter-spacing:-0.007200px;}
.ls2c_c00106{letter-spacing:-0.003888px;}
.ls1a_c00106{letter-spacing:0.000000px;}
.ls18_c00106{letter-spacing:0.004788px;}
.ls6_c00106{letter-spacing:0.007200px;}
.ls19_c00106{letter-spacing:0.009576px;}
.lsb_c00106{letter-spacing:0.014364px;}
.ls3_c00106{letter-spacing:0.014400px;}
.ls9_c00106{letter-spacing:0.016776px;}
.lsd_c00106{letter-spacing:0.019152px;}
.ls22_c00106{letter-spacing:0.021600px;}
.ls25_c00106{letter-spacing:0.025164px;}
.lsc_c00106{letter-spacing:0.028728px;}
.ls4_c00106{letter-spacing:0.028800px;}
.ls13_c00106{letter-spacing:0.033516px;}
.ls7_c00106{letter-spacing:0.036000px;}
.ls11_c00106{letter-spacing:0.038304px;}
.ls15_c00106{letter-spacing:0.047880px;}
.ls0_c00106{letter-spacing:0.048096px;}
.ls10_c00106{letter-spacing:0.052668px;}
.ls5_c00106{letter-spacing:0.054756px;}
.lsf_c00106{letter-spacing:0.057456px;}
.ls28_c00106{letter-spacing:0.071820px;}
.ls23_c00106{letter-spacing:0.093600px;}
.ls24_c00106{letter-spacing:0.101556px;}
.lse_c00106{letter-spacing:0.104040px;}
.ls14_c00106{letter-spacing:0.105336px;}
.lsa_c00106{letter-spacing:0.109368px;}
.ls16_c00106{letter-spacing:0.292068px;}
.ls2b_c00106{letter-spacing:0.338256px;}
.ls17_c00106{letter-spacing:0.350640px;}
.ls27_c00106{letter-spacing:0.357696px;}
.ls2a_c00106{letter-spacing:0.378252px;}
.ls12_c00106{letter-spacing:6.471360px;}
.ls8_c00106{letter-spacing:23.291280px;}
.ls2_c00106{letter-spacing:29.373120px;}
.ls1_c00106{letter-spacing:1227.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;}
}
.ws4_c00106{word-spacing:-19.639368px;}
.ws3_c00106{word-spacing:-19.631556px;}
.ws0_c00106{word-spacing:-19.530000px;}
.ws1_c00106{word-spacing:-17.985600px;}
.ws5_c00106{word-spacing:-13.310640px;}
.ws6_c00106{word-spacing:-11.166336px;}
.ws8_c00106{word-spacing:-11.146896px;}
.ws9_c00106{word-spacing:-10.808640px;}
.wsa_c00106{word-spacing:-10.800864px;}
.ws7_c00106{word-spacing:-10.796976px;}
.wsb_c00106{word-spacing:-10.785312px;}
.ws2_c00106{word-spacing:-10.584756px;}
.ws27_c00106{word-spacing:-0.109044px;}
.wse_c00106{word-spacing:-0.078120px;}
.ws30_c00106{word-spacing:-0.064800px;}
.ws28_c00106{word-spacing:-0.041940px;}
.ws10_c00106{word-spacing:-0.036000px;}
.ws32_c00106{word-spacing:-0.009576px;}
.wsd_c00106{word-spacing:0.000000px;}
.ws31_c00106{word-spacing:0.004788px;}
.ws19_c00106{word-spacing:0.014400px;}
.wsf_c00106{word-spacing:0.021600px;}
.wsc_c00106{word-spacing:0.042084px;}
.ws26_c00106{word-spacing:0.064800px;}
.ws2d_c00106{word-spacing:0.684000px;}
.ws24_c00106{word-spacing:0.712800px;}
.ws25_c00106{word-spacing:0.727200px;}
.ws2a_c00106{word-spacing:1.807200px;}
.ws29_c00106{word-spacing:1.821600px;}
.ws34_c00106{word-spacing:3.198384px;}
.ws35_c00106{word-spacing:3.203172px;}
.ws36_c00106{word-spacing:3.227112px;}
.ws33_c00106{word-spacing:3.236688px;}
.ws39_c00106{word-spacing:3.940524px;}
.ws41_c00106{word-spacing:4.309200px;}
.ws42_c00106{word-spacing:4.323456px;}
.ws43_c00106{word-spacing:4.333140px;}
.ws38_c00106{word-spacing:5.721660px;}
.ws3d_c00106{word-spacing:5.740812px;}
.ws37_c00106{word-spacing:5.745600px;}
.ws3e_c00106{word-spacing:5.750388px;}
.ws18_c00106{word-spacing:6.105600px;}
.ws16_c00106{word-spacing:6.120000px;}
.ws17_c00106{word-spacing:6.206400px;}
.ws3b_c00106{word-spacing:6.439860px;}
.ws3c_c00106{word-spacing:6.463800px;}
.ws3a_c00106{word-spacing:6.468588px;}
.ws2f_c00106{word-spacing:6.847200px;}
.ws22_c00106{word-spacing:6.876000px;}
.ws21_c00106{word-spacing:6.897600px;}
.ws2e_c00106{word-spacing:6.904800px;}
.ws44_c00106{word-spacing:8.259300px;}
.ws45_c00106{word-spacing:8.268876px;}
.ws46_c00106{word-spacing:8.307180px;}
.ws14_c00106{word-spacing:12.268800px;}
.ws13_c00106{word-spacing:12.283200px;}
.ws15_c00106{word-spacing:13.716000px;}
.ws11_c00106{word-spacing:14.745600px;}
.ws12_c00106{word-spacing:14.896800px;}
.ws1d_c00106{word-spacing:15.465600px;}
.ws1c_c00106{word-spacing:15.501600px;}
.ws1e_c00106{word-spacing:16.171200px;}
.ws40_c00106{word-spacing:16.643088px;}
.ws2b_c00106{word-spacing:16.812000px;}
.ws3f_c00106{word-spacing:16.887276px;}
.ws2c_c00106{word-spacing:16.912800px;}
.ws1b_c00106{word-spacing:19.749600px;}
.ws1a_c00106{word-spacing:19.771200px;}
.ws23_c00106{word-spacing:27.028800px;}
.ws20_c00106{word-spacing:33.422400px;}
.ws1f_c00106{word-spacing:33.487200px;}
._0_c00106{margin-left:-1.322640px;}
._1_c00106{width:1.195200px;}
._2_c00106{width:3.231900px;}
._3_c00106{width:6.925932px;}
.fc0_c00106{color:rgb(0,0,0);}
.fs7_c00106{font-size:38.880000px;}
.fs4_c00106{font-size:42.120000px;}
.fs6_c00106{font-size:47.880000px;}
.fs1_c00106{font-size:54.000000px;}
.fs0_c00106{font-size:60.120000px;}
.fs2_c00106{font-size:72.000000px;}
.fs3_c00106{font-size:78.120000px;}
.fs5_c00106{font-size:83.880000px;}
.y0_c00106{bottom:0.000000px;}
.y3_c00106{bottom:57.450450px;}
.y25_c00106{bottom:113.700450px;}
.y24_c00106{bottom:127.564950px;}
.y23_c00106{bottom:141.334950px;}
.y22_c00106{bottom:155.100450px;}
.y21_c00106{bottom:168.964950px;}
.y20_c00106{bottom:182.738190px;}
.y1f_c00106{bottom:196.503690px;}
.y1e_c00106{bottom:210.364950px;}
.y1d_c00106{bottom:224.134230px;}
.y1c_c00106{bottom:242.400450px;}
.y1b_c00106{bottom:257.610450px;}
.y1a_c00106{bottom:278.310450px;}
.y19_c00106{bottom:299.010450px;}
.y18_c00106{bottom:390.090450px;}
.y17_c00106{bottom:424.470450px;}
.y16_c00106{bottom:458.940450px;}
.y15_c00106{bottom:493.320450px;}
.y14_c00106{bottom:527.790450px;}
.y13_c00106{bottom:574.320450px;}
.y12_c00106{bottom:638.310450px;}
.y11_c00106{bottom:672.780450px;}
.y10_c00106{bottom:707.160450px;}
.yf_c00106{bottom:741.630450px;}
.ye_c00106{bottom:776.010450px;}
.yd_c00106{bottom:810.480450px;}
.yc_c00106{bottom:844.860450px;}
.yb_c00106{bottom:879.330450px;}
.ya_c00106{bottom:922.710450px;}
.y9_c00106{bottom:957.180450px;}
.y8_c00106{bottom:991.560450px;}
.y7_c00106{bottom:1026.030450px;}
.y6_c00106{bottom:1060.410450px;}
.y5_c00106{bottom:1094.880450px;}
.y4_c00106{bottom:1139.880450px;}
.y2_c00106{bottom:1177.860450px;}
.y1_c00106{bottom:1196.850450px;}
.h7_c00106{height:47.988281px;}
.h8_c00106{height:49.937344px;}
.h1_c00106{height:50.315273px;}
.h2_c00106{height:56.320312px;}
.h5_c00106{height:60.257812px;}
.h6_c00106{height:65.130820px;}
.h3_c00106{height:72.160312px;}
.h4_c00106{height:81.476719px;}
.h0_c00106{height:1263.000000px;}
.w1_c00106{width:892.500000px;}
.w0_c00106{width:892.830000px;}
.x0_c00106{left:0.000000px;}
.x1_c00106{left:127.620000px;}
.x3_c00106{left:154.611630px;}
.x2_c00106{left:180.810000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.v1_c00106{vertical-align:14.080000pt;}
.v2_c00106{vertical-align:26.560000pt;}
.ls1b_c00106{letter-spacing:-0.134400pt;}
.ls1e_c00106{letter-spacing:-0.038400pt;}
.ls1f_c00106{letter-spacing:-0.025600pt;}
.ls2e_c00106{letter-spacing:-0.020736pt;}
.ls1d_c00106{letter-spacing:-0.019200pt;}
.ls1c_c00106{letter-spacing:-0.013888pt;}
.ls21_c00106{letter-spacing:-0.012800pt;}
.ls29_c00106{letter-spacing:-0.010368pt;}
.ls2d_c00106{letter-spacing:-0.008512pt;}
.ls26_c00106{letter-spacing:-0.006912pt;}
.ls20_c00106{letter-spacing:-0.006400pt;}
.ls2c_c00106{letter-spacing:-0.003456pt;}
.ls1a_c00106{letter-spacing:0.000000pt;}
.ls18_c00106{letter-spacing:0.004256pt;}
.ls6_c00106{letter-spacing:0.006400pt;}
.ls19_c00106{letter-spacing:0.008512pt;}
.lsb_c00106{letter-spacing:0.012768pt;}
.ls3_c00106{letter-spacing:0.012800pt;}
.ls9_c00106{letter-spacing:0.014912pt;}
.lsd_c00106{letter-spacing:0.017024pt;}
.ls22_c00106{letter-spacing:0.019200pt;}
.ls25_c00106{letter-spacing:0.022368pt;}
.lsc_c00106{letter-spacing:0.025536pt;}
.ls4_c00106{letter-spacing:0.025600pt;}
.ls13_c00106{letter-spacing:0.029792pt;}
.ls7_c00106{letter-spacing:0.032000pt;}
.ls11_c00106{letter-spacing:0.034048pt;}
.ls15_c00106{letter-spacing:0.042560pt;}
.ls0_c00106{letter-spacing:0.042752pt;}
.ls10_c00106{letter-spacing:0.046816pt;}
.ls5_c00106{letter-spacing:0.048672pt;}
.lsf_c00106{letter-spacing:0.051072pt;}
.ls28_c00106{letter-spacing:0.063840pt;}
.ls23_c00106{letter-spacing:0.083200pt;}
.ls24_c00106{letter-spacing:0.090272pt;}
.lse_c00106{letter-spacing:0.092480pt;}
.ls14_c00106{letter-spacing:0.093632pt;}
.lsa_c00106{letter-spacing:0.097216pt;}
.ls16_c00106{letter-spacing:0.259616pt;}
.ls2b_c00106{letter-spacing:0.300672pt;}
.ls17_c00106{letter-spacing:0.311680pt;}
.ls27_c00106{letter-spacing:0.317952pt;}
.ls2a_c00106{letter-spacing:0.336224pt;}
.ls12_c00106{letter-spacing:5.752320pt;}
.ls8_c00106{letter-spacing:20.703360pt;}
.ls2_c00106{letter-spacing:26.109440pt;}
.ls1_c00106{letter-spacing:1090.880000pt;}
.ws4_c00106{word-spacing:-17.457216pt;}
.ws3_c00106{word-spacing:-17.450272pt;}
.ws0_c00106{word-spacing:-17.360000pt;}
.ws1_c00106{word-spacing:-15.987200pt;}
.ws5_c00106{word-spacing:-11.831680pt;}
.ws6_c00106{word-spacing:-9.925632pt;}
.ws8_c00106{word-spacing:-9.908352pt;}
.ws9_c00106{word-spacing:-9.607680pt;}
.wsa_c00106{word-spacing:-9.600768pt;}
.ws7_c00106{word-spacing:-9.597312pt;}
.wsb_c00106{word-spacing:-9.586944pt;}
.ws2_c00106{word-spacing:-9.408672pt;}
.ws27_c00106{word-spacing:-0.096928pt;}
.wse_c00106{word-spacing:-0.069440pt;}
.ws30_c00106{word-spacing:-0.057600pt;}
.ws28_c00106{word-spacing:-0.037280pt;}
.ws10_c00106{word-spacing:-0.032000pt;}
.ws32_c00106{word-spacing:-0.008512pt;}
.wsd_c00106{word-spacing:0.000000pt;}
.ws31_c00106{word-spacing:0.004256pt;}
.ws19_c00106{word-spacing:0.012800pt;}
.wsf_c00106{word-spacing:0.019200pt;}
.wsc_c00106{word-spacing:0.037408pt;}
.ws26_c00106{word-spacing:0.057600pt;}
.ws2d_c00106{word-spacing:0.608000pt;}
.ws24_c00106{word-spacing:0.633600pt;}
.ws25_c00106{word-spacing:0.646400pt;}
.ws2a_c00106{word-spacing:1.606400pt;}
.ws29_c00106{word-spacing:1.619200pt;}
.ws34_c00106{word-spacing:2.843008pt;}
.ws35_c00106{word-spacing:2.847264pt;}
.ws36_c00106{word-spacing:2.868544pt;}
.ws33_c00106{word-spacing:2.877056pt;}
.ws39_c00106{word-spacing:3.502688pt;}
.ws41_c00106{word-spacing:3.830400pt;}
.ws42_c00106{word-spacing:3.843072pt;}
.ws43_c00106{word-spacing:3.851680pt;}
.ws38_c00106{word-spacing:5.085920pt;}
.ws3d_c00106{word-spacing:5.102944pt;}
.ws37_c00106{word-spacing:5.107200pt;}
.ws3e_c00106{word-spacing:5.111456pt;}
.ws18_c00106{word-spacing:5.427200pt;}
.ws16_c00106{word-spacing:5.440000pt;}
.ws17_c00106{word-spacing:5.516800pt;}
.ws3b_c00106{word-spacing:5.724320pt;}
.ws3c_c00106{word-spacing:5.745600pt;}
.ws3a_c00106{word-spacing:5.749856pt;}
.ws2f_c00106{word-spacing:6.086400pt;}
.ws22_c00106{word-spacing:6.112000pt;}
.ws21_c00106{word-spacing:6.131200pt;}
.ws2e_c00106{word-spacing:6.137600pt;}
.ws44_c00106{word-spacing:7.341600pt;}
.ws45_c00106{word-spacing:7.350112pt;}
.ws46_c00106{word-spacing:7.384160pt;}
.ws14_c00106{word-spacing:10.905600pt;}
.ws13_c00106{word-spacing:10.918400pt;}
.ws15_c00106{word-spacing:12.192000pt;}
.ws11_c00106{word-spacing:13.107200pt;}
.ws12_c00106{word-spacing:13.241600pt;}
.ws1d_c00106{word-spacing:13.747200pt;}
.ws1c_c00106{word-spacing:13.779200pt;}
.ws1e_c00106{word-spacing:14.374400pt;}
.ws40_c00106{word-spacing:14.793856pt;}
.ws2b_c00106{word-spacing:14.944000pt;}
.ws3f_c00106{word-spacing:15.010912pt;}
.ws2c_c00106{word-spacing:15.033600pt;}
.ws1b_c00106{word-spacing:17.555200pt;}
.ws1a_c00106{word-spacing:17.574400pt;}
.ws23_c00106{word-spacing:24.025600pt;}
.ws20_c00106{word-spacing:29.708800pt;}
.ws1f_c00106{word-spacing:29.766400pt;}
._0_c00106{margin-left:-1.175680pt;}
._1_c00106{width:1.062400pt;}
._2_c00106{width:2.872800pt;}
._3_c00106{width:6.156384pt;}
.fs7_c00106{font-size:34.560000pt;}
.fs4_c00106{font-size:37.440000pt;}
.fs6_c00106{font-size:42.560000pt;}
.fs1_c00106{font-size:48.000000pt;}
.fs0_c00106{font-size:53.440000pt;}
.fs2_c00106{font-size:64.000000pt;}
.fs3_c00106{font-size:69.440000pt;}
.fs5_c00106{font-size:74.560000pt;}
.y0_c00106{bottom:0.000000pt;}
.y3_c00106{bottom:51.067067pt;}
.y25_c00106{bottom:101.067067pt;}
.y24_c00106{bottom:113.391067pt;}
.y23_c00106{bottom:125.631067pt;}
.y22_c00106{bottom:137.867067pt;}
.y21_c00106{bottom:150.191067pt;}
.y20_c00106{bottom:162.433947pt;}
.y1f_c00106{bottom:174.669947pt;}
.y1e_c00106{bottom:186.991067pt;}
.y1d_c00106{bottom:199.230427pt;}
.y1c_c00106{bottom:215.467067pt;}
.y1b_c00106{bottom:228.987067pt;}
.y1a_c00106{bottom:247.387067pt;}
.y19_c00106{bottom:265.787067pt;}
.y18_c00106{bottom:346.747067pt;}
.y17_c00106{bottom:377.307067pt;}
.y16_c00106{bottom:407.947067pt;}
.y15_c00106{bottom:438.507067pt;}
.y14_c00106{bottom:469.147067pt;}
.y13_c00106{bottom:510.507067pt;}
.y12_c00106{bottom:567.387067pt;}
.y11_c00106{bottom:598.027067pt;}
.y10_c00106{bottom:628.587067pt;}
.yf_c00106{bottom:659.227067pt;}
.ye_c00106{bottom:689.787067pt;}
.yd_c00106{bottom:720.427067pt;}
.yc_c00106{bottom:750.987067pt;}
.yb_c00106{bottom:781.627067pt;}
.ya_c00106{bottom:820.187067pt;}
.y9_c00106{bottom:850.827067pt;}
.y8_c00106{bottom:881.387067pt;}
.y7_c00106{bottom:912.027067pt;}
.y6_c00106{bottom:942.587067pt;}
.y5_c00106{bottom:973.227067pt;}
.y4_c00106{bottom:1013.227067pt;}
.y2_c00106{bottom:1046.987067pt;}
.y1_c00106{bottom:1063.867067pt;}
.h7_c00106{height:42.656250pt;}
.h8_c00106{height:44.388750pt;}
.h1_c00106{height:44.724687pt;}
.h2_c00106{height:50.062500pt;}
.h5_c00106{height:53.562500pt;}
.h6_c00106{height:57.894062pt;}
.h3_c00106{height:64.142500pt;}
.h4_c00106{height:72.423750pt;}
.h0_c00106{height:1122.666667pt;}
.w1_c00106{width:793.333333pt;}
.w0_c00106{width:793.626667pt;}
.x0_c00106{left:0.000000pt;}
.x1_c00106{left:113.440000pt;}
.x3_c00106{left:137.432560pt;}
.x2_c00106{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_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_82e8f752ea568d7a431c23be.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00107;src:url('chunks/assets/font_072dc59a569b1a2c557ef644.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00107;src:url('chunks/assets/font_803eb721727730f2796ca405.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00107;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00107{font-family:ff5_c00107;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_c00107;src:url('chunks/assets/font_afb01d7e2d44d55672ac0c8c.woff2')format("woff");}.ff6_c00107{font-family:ff6_c00107;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_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;}
.v1_c00107{vertical-align:29.880000px;}
.ls12_c00107{letter-spacing:-0.151200px;}
.ls10_c00107{letter-spacing:-0.048096px;}
.ls1a_c00107{letter-spacing:-0.043200px;}
.ls19_c00107{letter-spacing:-0.036000px;}
.ls16_c00107{letter-spacing:-0.031248px;}
.ls18_c00107{letter-spacing:-0.028800px;}
.ls13_c00107{letter-spacing:-0.021600px;}
.lsf_c00107{letter-spacing:-0.018036px;}
.ls1c_c00107{letter-spacing:-0.015552px;}
.ls17_c00107{letter-spacing:-0.014400px;}
.ls15_c00107{letter-spacing:-0.007812px;}
.ls14_c00107{letter-spacing:-0.007200px;}
.ls1f_c00107{letter-spacing:-0.004788px;}
.ls1d_c00107{letter-spacing:-0.003888px;}
.ls11_c00107{letter-spacing:0.000000px;}
.ls3_c00107{letter-spacing:0.007200px;}
.ls8_c00107{letter-spacing:0.014364px;}
.ls2_c00107{letter-spacing:0.014400px;}
.ls1e_c00107{letter-spacing:0.019152px;}
.ls6_c00107{letter-spacing:0.021600px;}
.lsc_c00107{letter-spacing:0.023940px;}
.ls5_c00107{letter-spacing:0.028800px;}
.ls9_c00107{letter-spacing:0.033516px;}
.ls0_c00107{letter-spacing:0.036072px;}
.lse_c00107{letter-spacing:0.038304px;}
.lsd_c00107{letter-spacing:0.043092px;}
.lsa_c00107{letter-spacing:0.047880px;}
.ls4_c00107{letter-spacing:0.054756px;}
.lsb_c00107{letter-spacing:0.062244px;}
.ls7_c00107{letter-spacing:0.072000px;}
.ls1b_c00107{letter-spacing:0.093600px;}
.ls1_c00107{letter-spacing:83.041560px;}
.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:-19.522188px;}
.ws2_c00107{word-spacing:-13.310640px;}
.ws3_c00107{word-spacing:-10.804752px;}
.ws1_c00107{word-spacing:-10.584756px;}
.wsd_c00107{word-spacing:-0.062496px;}
.ws2b_c00107{word-spacing:-0.043092px;}
.ws2a_c00107{word-spacing:-0.028728px;}
.ws30_c00107{word-spacing:-0.019152px;}
.ws29_c00107{word-spacing:-0.014364px;}
.ws7_c00107{word-spacing:0.000000px;}
.ws28_c00107{word-spacing:0.004788px;}
.wsc_c00107{word-spacing:0.007200px;}
.ws31_c00107{word-spacing:0.023940px;}
.ws4_c00107{word-spacing:0.054108px;}
.ws5_c00107{word-spacing:0.108216px;}
.ws6_c00107{word-spacing:0.138276px;}
.ws19_c00107{word-spacing:0.288000px;}
.ws18_c00107{word-spacing:0.381600px;}
.ws24_c00107{word-spacing:0.633600px;}
.ws25_c00107{word-spacing:0.741600px;}
.ws21_c00107{word-spacing:0.763200px;}
.ws20_c00107{word-spacing:0.777600px;}
.wsa_c00107{word-spacing:1.800000px;}
.wsb_c00107{word-spacing:1.864800px;}
.ws1e_c00107{word-spacing:1.872000px;}
.ws1f_c00107{word-spacing:1.893600px;}
.ws1d_c00107{word-spacing:2.131200px;}
.ws1c_c00107{word-spacing:2.239200px;}
.wse_c00107{word-spacing:2.894400px;}
.ws1a_c00107{word-spacing:2.916000px;}
.ws1b_c00107{word-spacing:2.923200px;}
.ws27_c00107{word-spacing:3.585600px;}
.ws26_c00107{word-spacing:3.614400px;}
.ws17_c00107{word-spacing:6.458400px;}
.ws16_c00107{word-spacing:6.508800px;}
.ws2f_c00107{word-spacing:6.813324px;}
.ws2e_c00107{word-spacing:6.832476px;}
.ws2c_c00107{word-spacing:6.842052px;}
.ws2d_c00107{word-spacing:6.842880px;}
.ws9_c00107{word-spacing:7.552800px;}
.ws8_c00107{word-spacing:7.632000px;}
.ws11_c00107{word-spacing:9.712800px;}
.ws12_c00107{word-spacing:9.813600px;}
.ws13_c00107{word-spacing:9.871200px;}
.ws10_c00107{word-spacing:16.545600px;}
.wsf_c00107{word-spacing:16.603200px;}
.ws15_c00107{word-spacing:21.232800px;}
.ws14_c00107{word-spacing:21.312000px;}
.ws22_c00107{word-spacing:23.709600px;}
.ws23_c00107{word-spacing:23.803200px;}
._0_c00107{margin-left:-1.142280px;}
._1_c00107{width:1.008000px;}
.fc0_c00107{color:rgb(0,0,0);}
.fs6_c00107{font-size:38.880000px;}
.fs4_c00107{font-size:42.120000px;}
.fs5_c00107{font-size:47.880000px;}
.fs2_c00107{font-size:54.000000px;}
.fs0_c00107{font-size:60.120000px;}
.fs1_c00107{font-size:72.000000px;}
.fs3_c00107{font-size:78.120000px;}
.y0_c00107{bottom:0.000000px;}
.y3_c00107{bottom:57.450450px;}
.y4_c00107{bottom:61.410450px;}
.y22_c00107{bottom:113.702970px;}
.y21_c00107{bottom:132.064950px;}
.y20_c00107{bottom:145.839810px;}
.y1f_c00107{bottom:164.106030px;}
.y1e_c00107{bottom:182.468010px;}
.y1d_c00107{bottom:200.734230px;}
.y1c_c00107{bottom:219.000450px;}
.y1b_c00107{bottom:234.210450px;}
.y1a_c00107{bottom:254.910450px;}
.y19_c00107{bottom:275.610450px;}
.y18_c00107{bottom:430.230600px;}
.y17_c00107{bottom:464.610450px;}
.y16_c00107{bottom:499.080450px;}
.y15_c00107{bottom:533.460450px;}
.y14_c00107{bottom:576.930450px;}
.y13_c00107{bottom:611.310450px;}
.y12_c00107{bottom:645.780450px;}
.y11_c00107{bottom:680.160450px;}
.y10_c00107{bottom:723.630450px;}
.yf_c00107{bottom:758.010450px;}
.ye_c00107{bottom:792.480450px;}
.yd_c00107{bottom:826.860450px;}
.yc_c00107{bottom:861.330450px;}
.yb_c00107{bottom:895.710450px;}
.ya_c00107{bottom:930.180450px;}
.y9_c00107{bottom:964.560450px;}
.y8_c00107{bottom:1009.650450px;}
.y7_c00107{bottom:1072.290450px;}
.y6_c00107{bottom:1106.760450px;}
.y5_c00107{bottom:1141.140450px;}
.y2_c00107{bottom:1173.810450px;}
.y1_c00107{bottom:1196.850450px;}
.h2_c00107{height:47.988281px;}
.h8_c00107{height:49.937344px;}
.h1_c00107{height:50.315273px;}
.h3_c00107{height:56.320312px;}
.h4_c00107{height:60.257812px;}
.h6_c00107{height:65.130820px;}
.h7_c00107{height:65.455416px;}
.h5_c00107{height:81.476719px;}
.h0_c00107{height:1263.000000px;}
.w1_c00107{width:892.500000px;}
.w0_c00107{width:892.830000px;}
.x0_c00107{left:0.000000px;}
.x2_c00107{left:127.620000px;}
.x1_c00107{left:145.440000px;}
.x6_c00107{left:154.613160px;}
.x5_c00107{left:180.810000px;}
.x4_c00107{left:439.020000px;}
.x3_c00107{left:446.490000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.v1_c00107{vertical-align:26.560000pt;}
.ls12_c00107{letter-spacing:-0.134400pt;}
.ls10_c00107{letter-spacing:-0.042752pt;}
.ls1a_c00107{letter-spacing:-0.038400pt;}
.ls19_c00107{letter-spacing:-0.032000pt;}
.ls16_c00107{letter-spacing:-0.027776pt;}
.ls18_c00107{letter-spacing:-0.025600pt;}
.ls13_c00107{letter-spacing:-0.019200pt;}
.lsf_c00107{letter-spacing:-0.016032pt;}
.ls1c_c00107{letter-spacing:-0.013824pt;}
.ls17_c00107{letter-spacing:-0.012800pt;}
.ls15_c00107{letter-spacing:-0.006944pt;}
.ls14_c00107{letter-spacing:-0.006400pt;}
.ls1f_c00107{letter-spacing:-0.004256pt;}
.ls1d_c00107{letter-spacing:-0.003456pt;}
.ls11_c00107{letter-spacing:0.000000pt;}
.ls3_c00107{letter-spacing:0.006400pt;}
.ls8_c00107{letter-spacing:0.012768pt;}
.ls2_c00107{letter-spacing:0.012800pt;}
.ls1e_c00107{letter-spacing:0.017024pt;}
.ls6_c00107{letter-spacing:0.019200pt;}
.lsc_c00107{letter-spacing:0.021280pt;}
.ls5_c00107{letter-spacing:0.025600pt;}
.ls9_c00107{letter-spacing:0.029792pt;}
.ls0_c00107{letter-spacing:0.032064pt;}
.lse_c00107{letter-spacing:0.034048pt;}
.lsd_c00107{letter-spacing:0.038304pt;}
.lsa_c00107{letter-spacing:0.042560pt;}
.ls4_c00107{letter-spacing:0.048672pt;}
.lsb_c00107{letter-spacing:0.055328pt;}
.ls7_c00107{letter-spacing:0.064000pt;}
.ls1b_c00107{letter-spacing:0.083200pt;}
.ls1_c00107{letter-spacing:73.814720pt;}
.ws0_c00107{word-spacing:-17.353056pt;}
.ws2_c00107{word-spacing:-11.831680pt;}
.ws3_c00107{word-spacing:-9.604224pt;}
.ws1_c00107{word-spacing:-9.408672pt;}
.wsd_c00107{word-spacing:-0.055552pt;}
.ws2b_c00107{word-spacing:-0.038304pt;}
.ws2a_c00107{word-spacing:-0.025536pt;}
.ws30_c00107{word-spacing:-0.017024pt;}
.ws29_c00107{word-spacing:-0.012768pt;}
.ws7_c00107{word-spacing:0.000000pt;}
.ws28_c00107{word-spacing:0.004256pt;}
.wsc_c00107{word-spacing:0.006400pt;}
.ws31_c00107{word-spacing:0.021280pt;}
.ws4_c00107{word-spacing:0.048096pt;}
.ws5_c00107{word-spacing:0.096192pt;}
.ws6_c00107{word-spacing:0.122912pt;}
.ws19_c00107{word-spacing:0.256000pt;}
.ws18_c00107{word-spacing:0.339200pt;}
.ws24_c00107{word-spacing:0.563200pt;}
.ws25_c00107{word-spacing:0.659200pt;}
.ws21_c00107{word-spacing:0.678400pt;}
.ws20_c00107{word-spacing:0.691200pt;}
.wsa_c00107{word-spacing:1.600000pt;}
.wsb_c00107{word-spacing:1.657600pt;}
.ws1e_c00107{word-spacing:1.664000pt;}
.ws1f_c00107{word-spacing:1.683200pt;}
.ws1d_c00107{word-spacing:1.894400pt;}
.ws1c_c00107{word-spacing:1.990400pt;}
.wse_c00107{word-spacing:2.572800pt;}
.ws1a_c00107{word-spacing:2.592000pt;}
.ws1b_c00107{word-spacing:2.598400pt;}
.ws27_c00107{word-spacing:3.187200pt;}
.ws26_c00107{word-spacing:3.212800pt;}
.ws17_c00107{word-spacing:5.740800pt;}
.ws16_c00107{word-spacing:5.785600pt;}
.ws2f_c00107{word-spacing:6.056288pt;}
.ws2e_c00107{word-spacing:6.073312pt;}
.ws2c_c00107{word-spacing:6.081824pt;}
.ws2d_c00107{word-spacing:6.082560pt;}
.ws9_c00107{word-spacing:6.713600pt;}
.ws8_c00107{word-spacing:6.784000pt;}
.ws11_c00107{word-spacing:8.633600pt;}
.ws12_c00107{word-spacing:8.723200pt;}
.ws13_c00107{word-spacing:8.774400pt;}
.ws10_c00107{word-spacing:14.707200pt;}
.wsf_c00107{word-spacing:14.758400pt;}
.ws15_c00107{word-spacing:18.873600pt;}
.ws14_c00107{word-spacing:18.944000pt;}
.ws22_c00107{word-spacing:21.075200pt;}
.ws23_c00107{word-spacing:21.158400pt;}
._0_c00107{margin-left:-1.015360pt;}
._1_c00107{width:0.896000pt;}
.fs6_c00107{font-size:34.560000pt;}
.fs4_c00107{font-size:37.440000pt;}
.fs5_c00107{font-size:42.560000pt;}
.fs2_c00107{font-size:48.000000pt;}
.fs0_c00107{font-size:53.440000pt;}
.fs1_c00107{font-size:64.000000pt;}
.fs3_c00107{font-size:69.440000pt;}
.y0_c00107{bottom:0.000000pt;}
.y3_c00107{bottom:51.067067pt;}
.y4_c00107{bottom:54.587067pt;}
.y22_c00107{bottom:101.069307pt;}
.y21_c00107{bottom:117.391067pt;}
.y20_c00107{bottom:129.635387pt;}
.y1f_c00107{bottom:145.872027pt;}
.y1e_c00107{bottom:162.193787pt;}
.y1d_c00107{bottom:178.430427pt;}
.y1c_c00107{bottom:194.667067pt;}
.y1b_c00107{bottom:208.187067pt;}
.y1a_c00107{bottom:226.587067pt;}
.y19_c00107{bottom:244.987067pt;}
.y18_c00107{bottom:382.427200pt;}
.y17_c00107{bottom:412.987067pt;}
.y16_c00107{bottom:443.627067pt;}
.y15_c00107{bottom:474.187067pt;}
.y14_c00107{bottom:512.827067pt;}
.y13_c00107{bottom:543.387067pt;}
.y12_c00107{bottom:574.027067pt;}
.y11_c00107{bottom:604.587067pt;}
.y10_c00107{bottom:643.227067pt;}
.yf_c00107{bottom:673.787067pt;}
.ye_c00107{bottom:704.427067pt;}
.yd_c00107{bottom:734.987067pt;}
.yc_c00107{bottom:765.627067pt;}
.yb_c00107{bottom:796.187067pt;}
.ya_c00107{bottom:826.827067pt;}
.y9_c00107{bottom:857.387067pt;}
.y8_c00107{bottom:897.467067pt;}
.y7_c00107{bottom:953.147067pt;}
.y6_c00107{bottom:983.787067pt;}
.y5_c00107{bottom:1014.347067pt;}
.y2_c00107{bottom:1043.387067pt;}
.y1_c00107{bottom:1063.867067pt;}
.h2_c00107{height:42.656250pt;}
.h8_c00107{height:44.388750pt;}
.h1_c00107{height:44.724687pt;}
.h3_c00107{height:50.062500pt;}
.h4_c00107{height:53.562500pt;}
.h6_c00107{height:57.894063pt;}
.h7_c00107{height:58.182592pt;}
.h5_c00107{height:72.423750pt;}
.h0_c00107{height:1122.666667pt;}
.w1_c00107{width:793.333333pt;}
.w0_c00107{width:793.626667pt;}
.x0_c00107{left:0.000000pt;}
.x2_c00107{left:113.440000pt;}
.x1_c00107{left:129.280000pt;}
.x6_c00107{left:137.433920pt;}
.x5_c00107{left:160.720000pt;}
.x4_c00107{left:390.240000pt;}
.x3_c00107{left:396.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_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_2266eb1ac369e918e9465022.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.100098;font-style:normal;font-weight:normal;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_dc6aca15c852bca11b2d0db9.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;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_c00108;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00108;src:url('chunks/assets/font_57911a476ecd34051f74bea4.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;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_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.v1_c00108{vertical-align:15.840000px;}
.v2_c00108{vertical-align:29.880000px;}
.lsd_c00108{letter-spacing:-0.151200px;}
.ls14_c00108{letter-spacing:-0.036000px;}
.ls12_c00108{letter-spacing:-0.028800px;}
.ls11_c00108{letter-spacing:-0.021600px;}
.lse_c00108{letter-spacing:-0.014400px;}
.ls16_c00108{letter-spacing:-0.009576px;}
.lsf_c00108{letter-spacing:-0.007200px;}
.ls15_c00108{letter-spacing:-0.003888px;}
.lsc_c00108{letter-spacing:0.000000px;}
.ls13_c00108{letter-spacing:0.007200px;}
.ls9_c00108{letter-spacing:0.009576px;}
.ls7_c00108{letter-spacing:0.014364px;}
.ls2_c00108{letter-spacing:0.014400px;}
.ls4_c00108{letter-spacing:0.021600px;}
.lsb_c00108{letter-spacing:0.028728px;}
.lsa_c00108{letter-spacing:0.043092px;}
.ls8_c00108{letter-spacing:0.047880px;}
.ls0_c00108{letter-spacing:0.048096px;}
.ls3_c00108{letter-spacing:0.054756px;}
.ls10_c00108{letter-spacing:0.093600px;}
.ls5_c00108{letter-spacing:0.144000px;}
.ls6_c00108{letter-spacing:66.024000px;}
.ls1_c00108{letter-spacing:1227.240000px;}
.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;}
}
.ws4_c00108{word-spacing:-13.353732px;}
.ws1_c00108{word-spacing:-13.310640px;}
.ws3_c00108{word-spacing:-10.808640px;}
.ws2_c00108{word-spacing:-10.804752px;}
.ws0_c00108{word-spacing:-10.584756px;}
.ws15_c00108{word-spacing:-0.036000px;}
.ws19_c00108{word-spacing:-0.014400px;}
.ws21_c00108{word-spacing:-0.009576px;}
.ws16_c00108{word-spacing:-0.007200px;}
.ws6_c00108{word-spacing:0.000000px;}
.ws1c_c00108{word-spacing:0.004788px;}
.wsa_c00108{word-spacing:0.007200px;}
.ws12_c00108{word-spacing:0.014400px;}
.ws20_c00108{word-spacing:0.028728px;}
.ws5_c00108{word-spacing:0.042084px;}
.ws1b_c00108{word-spacing:0.043200px;}
.ws17_c00108{word-spacing:0.086400px;}
.ws18_c00108{word-spacing:0.151200px;}
.ws8_c00108{word-spacing:3.945600px;}
.ws9_c00108{word-spacing:4.010400px;}
.ws11_c00108{word-spacing:4.024800px;}
.ws10_c00108{word-spacing:4.104000px;}
.ws13_c00108{word-spacing:5.428800px;}
.ws14_c00108{word-spacing:5.508000px;}
.ws1e_c00108{word-spacing:5.731236px;}
.ws1d_c00108{word-spacing:5.764752px;}
.ws1f_c00108{word-spacing:5.769540px;}
.ws7_c00108{word-spacing:6.854400px;}
.wsd_c00108{word-spacing:7.941600px;}
.wse_c00108{word-spacing:7.948800px;}
.wsb_c00108{word-spacing:9.612000px;}
.wsc_c00108{word-spacing:9.655200px;}
.ws1a_c00108{word-spacing:12.967200px;}
.wsf_c00108{word-spacing:12.974400px;}
._0_c00108{margin-left:-1.322640px;}
._1_c00108{width:1.224000px;}
.fc0_c00108{color:rgb(0,0,0);}
.fs5_c00108{font-size:38.880000px;}
.fs3_c00108{font-size:42.120000px;}
.fs4_c00108{font-size:47.880000px;}
.fs1_c00108{font-size:54.000000px;}
.fs0_c00108{font-size:60.120000px;}
.fs2_c00108{font-size:72.000000px;}
.y0_c00108{bottom:0.000000px;}
.y3_c00108{bottom:57.450450px;}
.y21_c00108{bottom:113.702970px;}
.y20_c00108{bottom:132.064950px;}
.y1f_c00108{bottom:145.834230px;}
.y1e_c00108{bottom:164.098620px;}
.y1d_c00108{bottom:182.460600px;}
.y1c_c00108{bottom:197.670450px;}
.y1b_c00108{bottom:218.370450px;}
.y1a_c00108{bottom:239.070600px;}
.y19_c00108{bottom:301.260600px;}
.y18_c00108{bottom:344.640600px;}
.y17_c00108{bottom:388.110450px;}
.y16_c00108{bottom:422.490450px;}
.y15_c00108{bottom:465.960450px;}
.y14_c00108{bottom:509.340450px;}
.y13_c00108{bottom:552.810450px;}
.y12_c00108{bottom:596.190450px;}
.y11_c00108{bottom:639.660450px;}
.y10_c00108{bottom:683.040450px;}
.yf_c00108{bottom:726.510450px;}
.ye_c00108{bottom:769.890450px;}
.yd_c00108{bottom:813.360450px;}
.yc_c00108{bottom:847.740450px;}
.yb_c00108{bottom:891.210450px;}
.ya_c00108{bottom:925.590450px;}
.y9_c00108{bottom:960.060450px;}
.y8_c00108{bottom:994.440450px;}
.y7_c00108{bottom:1028.910450px;}
.y6_c00108{bottom:1072.290450px;}
.y5_c00108{bottom:1106.760450px;}
.y4_c00108{bottom:1141.140450px;}
.y2_c00108{bottom:1177.860450px;}
.y1_c00108{bottom:1196.850450px;}
.h7_c00108{height:47.988281px;}
.h8_c00108{height:49.937344px;}
.h9_c00108{height:49.944664px;}
.h1_c00108{height:50.315273px;}
.h2_c00108{height:56.320312px;}
.h4_c00108{height:60.257812px;}
.h5_c00108{height:65.130820px;}
.h3_c00108{height:72.160312px;}
.h6_c00108{height:75.093750px;}
.h0_c00108{height:1263.000000px;}
.w1_c00108{width:892.500000px;}
.w0_c00108{width:892.830000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:127.620000px;}
.x3_c00108{left:154.440000px;}
.x2_c00108{left:180.810000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.v1_c00108{vertical-align:14.080000pt;}
.v2_c00108{vertical-align:26.560000pt;}
.lsd_c00108{letter-spacing:-0.134400pt;}
.ls14_c00108{letter-spacing:-0.032000pt;}
.ls12_c00108{letter-spacing:-0.025600pt;}
.ls11_c00108{letter-spacing:-0.019200pt;}
.lse_c00108{letter-spacing:-0.012800pt;}
.ls16_c00108{letter-spacing:-0.008512pt;}
.lsf_c00108{letter-spacing:-0.006400pt;}
.ls15_c00108{letter-spacing:-0.003456pt;}
.lsc_c00108{letter-spacing:0.000000pt;}
.ls13_c00108{letter-spacing:0.006400pt;}
.ls9_c00108{letter-spacing:0.008512pt;}
.ls7_c00108{letter-spacing:0.012768pt;}
.ls2_c00108{letter-spacing:0.012800pt;}
.ls4_c00108{letter-spacing:0.019200pt;}
.lsb_c00108{letter-spacing:0.025536pt;}
.lsa_c00108{letter-spacing:0.038304pt;}
.ls8_c00108{letter-spacing:0.042560pt;}
.ls0_c00108{letter-spacing:0.042752pt;}
.ls3_c00108{letter-spacing:0.048672pt;}
.ls10_c00108{letter-spacing:0.083200pt;}
.ls5_c00108{letter-spacing:0.128000pt;}
.ls6_c00108{letter-spacing:58.688000pt;}
.ls1_c00108{letter-spacing:1090.880000pt;}
.ws4_c00108{word-spacing:-11.869984pt;}
.ws1_c00108{word-spacing:-11.831680pt;}
.ws3_c00108{word-spacing:-9.607680pt;}
.ws2_c00108{word-spacing:-9.604224pt;}
.ws0_c00108{word-spacing:-9.408672pt;}
.ws15_c00108{word-spacing:-0.032000pt;}
.ws19_c00108{word-spacing:-0.012800pt;}
.ws21_c00108{word-spacing:-0.008512pt;}
.ws16_c00108{word-spacing:-0.006400pt;}
.ws6_c00108{word-spacing:0.000000pt;}
.ws1c_c00108{word-spacing:0.004256pt;}
.wsa_c00108{word-spacing:0.006400pt;}
.ws12_c00108{word-spacing:0.012800pt;}
.ws20_c00108{word-spacing:0.025536pt;}
.ws5_c00108{word-spacing:0.037408pt;}
.ws1b_c00108{word-spacing:0.038400pt;}
.ws17_c00108{word-spacing:0.076800pt;}
.ws18_c00108{word-spacing:0.134400pt;}
.ws8_c00108{word-spacing:3.507200pt;}
.ws9_c00108{word-spacing:3.564800pt;}
.ws11_c00108{word-spacing:3.577600pt;}
.ws10_c00108{word-spacing:3.648000pt;}
.ws13_c00108{word-spacing:4.825600pt;}
.ws14_c00108{word-spacing:4.896000pt;}
.ws1e_c00108{word-spacing:5.094432pt;}
.ws1d_c00108{word-spacing:5.124224pt;}
.ws1f_c00108{word-spacing:5.128480pt;}
.ws7_c00108{word-spacing:6.092800pt;}
.wsd_c00108{word-spacing:7.059200pt;}
.wse_c00108{word-spacing:7.065600pt;}
.wsb_c00108{word-spacing:8.544000pt;}
.wsc_c00108{word-spacing:8.582400pt;}
.ws1a_c00108{word-spacing:11.526400pt;}
.wsf_c00108{word-spacing:11.532800pt;}
._0_c00108{margin-left:-1.175680pt;}
._1_c00108{width:1.088000pt;}
.fs5_c00108{font-size:34.560000pt;}
.fs3_c00108{font-size:37.440000pt;}
.fs4_c00108{font-size:42.560000pt;}
.fs1_c00108{font-size:48.000000pt;}
.fs0_c00108{font-size:53.440000pt;}
.fs2_c00108{font-size:64.000000pt;}
.y0_c00108{bottom:0.000000pt;}
.y3_c00108{bottom:51.067067pt;}
.y21_c00108{bottom:101.069307pt;}
.y20_c00108{bottom:117.391067pt;}
.y1f_c00108{bottom:129.630427pt;}
.y1e_c00108{bottom:145.865440pt;}
.y1d_c00108{bottom:162.187200pt;}
.y1c_c00108{bottom:175.707067pt;}
.y1b_c00108{bottom:194.107067pt;}
.y1a_c00108{bottom:212.507200pt;}
.y19_c00108{bottom:267.787200pt;}
.y18_c00108{bottom:306.347200pt;}
.y17_c00108{bottom:344.987067pt;}
.y16_c00108{bottom:375.547067pt;}
.y15_c00108{bottom:414.187067pt;}
.y14_c00108{bottom:452.747067pt;}
.y13_c00108{bottom:491.387067pt;}
.y12_c00108{bottom:529.947067pt;}
.y11_c00108{bottom:568.587067pt;}
.y10_c00108{bottom:607.147067pt;}
.yf_c00108{bottom:645.787067pt;}
.ye_c00108{bottom:684.347067pt;}
.yd_c00108{bottom:722.987067pt;}
.yc_c00108{bottom:753.547067pt;}
.yb_c00108{bottom:792.187067pt;}
.ya_c00108{bottom:822.747067pt;}
.y9_c00108{bottom:853.387067pt;}
.y8_c00108{bottom:883.947067pt;}
.y7_c00108{bottom:914.587067pt;}
.y6_c00108{bottom:953.147067pt;}
.y5_c00108{bottom:983.787067pt;}
.y4_c00108{bottom:1014.347067pt;}
.y2_c00108{bottom:1046.987067pt;}
.y1_c00108{bottom:1063.867067pt;}
.h7_c00108{height:42.656250pt;}
.h8_c00108{height:44.388750pt;}
.h9_c00108{height:44.395257pt;}
.h1_c00108{height:44.724687pt;}
.h2_c00108{height:50.062500pt;}
.h4_c00108{height:53.562500pt;}
.h5_c00108{height:57.894062pt;}
.h3_c00108{height:64.142500pt;}
.h6_c00108{height:66.750000pt;}
.h0_c00108{height:1122.666667pt;}
.w1_c00108{width:793.333333pt;}
.w0_c00108{width:793.626667pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:113.440000pt;}
.x3_c00108{left:137.280000pt;}
.x2_c00108{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_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_e80e12ccebcde3a38d3f637c.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00109;src:url('chunks/assets/font_b744c8465e5834e194b47de1.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_558b08c98ace214c655b3943.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00109;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00109{font-family:ff5_c00109;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_c00109;src:url('chunks/assets/font_f75098384e31c12ae52bd68a.woff2')format("woff");}.ff6_c00109{font-family:ff6_c00109;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00109;src:url('chunks/assets/font_e2b8c99f84b767c145c55714.woff2')format("woff");}.ff7_c00109{font-family:ff7_c00109;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_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:29.880000px;}
.ls1e_c00109{letter-spacing:-0.151200px;}
.ls23_c00109{letter-spacing:-0.093744px;}
.ls1c_c00109{letter-spacing:-0.048096px;}
.ls26_c00109{letter-spacing:-0.036000px;}
.ls20_c00109{letter-spacing:-0.028800px;}
.ls25_c00109{letter-spacing:-0.021600px;}
.ls1b_c00109{letter-spacing:-0.018036px;}
.ls22_c00109{letter-spacing:-0.015624px;}
.ls2e_c00109{letter-spacing:-0.015552px;}
.ls24_c00109{letter-spacing:-0.014400px;}
.ls29_c00109{letter-spacing:-0.011664px;}
.ls2b_c00109{letter-spacing:-0.009576px;}
.ls28_c00109{letter-spacing:-0.007776px;}
.ls1f_c00109{letter-spacing:-0.007200px;}
.ls2a_c00109{letter-spacing:-0.003888px;}
.ls1d_c00109{letter-spacing:0.000000px;}
.ls6_c00109{letter-spacing:0.007200px;}
.ls18_c00109{letter-spacing:0.007776px;}
.lsc_c00109{letter-spacing:0.009576px;}
.lsd_c00109{letter-spacing:0.014364px;}
.ls7_c00109{letter-spacing:0.014400px;}
.ls8_c00109{letter-spacing:0.021600px;}
.ls15_c00109{letter-spacing:0.023940px;}
.ls10_c00109{letter-spacing:0.028728px;}
.ls27_c00109{letter-spacing:0.028800px;}
.ls4_c00109{letter-spacing:0.031248px;}
.lsa_c00109{letter-spacing:0.033516px;}
.ls0_c00109{letter-spacing:0.036072px;}
.lsf_c00109{letter-spacing:0.038304px;}
.ls1a_c00109{letter-spacing:0.043092px;}
.ls11_c00109{letter-spacing:0.047880px;}
.ls9_c00109{letter-spacing:0.050400px;}
.ls13_c00109{letter-spacing:0.052668px;}
.ls3_c00109{letter-spacing:0.054756px;}
.ls17_c00109{letter-spacing:0.057456px;}
.ls14_c00109{letter-spacing:0.062244px;}
.ls2c_c00109{letter-spacing:0.071820px;}
.ls19_c00109{letter-spacing:0.075960px;}
.ls12_c00109{letter-spacing:0.081396px;}
.ls21_c00109{letter-spacing:0.093600px;}
.ls1_c00109{letter-spacing:0.144000px;}
.lse_c00109{letter-spacing:0.350640px;}
.lsb_c00109{letter-spacing:0.378252px;}
.ls2f_c00109{letter-spacing:0.402192px;}
.ls2d_c00109{letter-spacing:4.697028px;}
.ls16_c00109{letter-spacing:10.102680px;}
.ls2_c00109{letter-spacing:66.024000px;}
.ls5_c00109{letter-spacing:77.260680px;}
.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;}
}
.ws1_c00109{word-spacing:-19.561248px;}
.ws6_c00109{word-spacing:-13.320216px;}
.ws2_c00109{word-spacing:-13.310640px;}
.ws7_c00109{word-spacing:-10.816416px;}
.ws8_c00109{word-spacing:-10.808640px;}
.ws5_c00109{word-spacing:-10.804752px;}
.ws4_c00109{word-spacing:-10.800864px;}
.ws3_c00109{word-spacing:-10.796976px;}
.ws0_c00109{word-spacing:-10.584756px;}
.ws3c_c00109{word-spacing:-0.359100px;}
.ws10_c00109{word-spacing:-0.078120px;}
.ws3b_c00109{word-spacing:-0.033516px;}
.ws25_c00109{word-spacing:-0.028800px;}
.ws3a_c00109{word-spacing:-0.023940px;}
.ws2f_c00109{word-spacing:-0.019152px;}
.ws38_c00109{word-spacing:-0.014364px;}
.wsc_c00109{word-spacing:0.000000px;}
.ws39_c00109{word-spacing:0.003888px;}
.ws2d_c00109{word-spacing:0.004788px;}
.wsd_c00109{word-spacing:0.007200px;}
.ws2c_c00109{word-spacing:0.009576px;}
.wsf_c00109{word-spacing:0.021600px;}
.ws2e_c00109{word-spacing:0.028728px;}
.ws1a_c00109{word-spacing:0.028800px;}
.ws9_c00109{word-spacing:0.054108px;}
.wsa_c00109{word-spacing:0.108216px;}
.wsb_c00109{word-spacing:0.138276px;}
.ws27_c00109{word-spacing:0.648000px;}
.ws26_c00109{word-spacing:0.669600px;}
.ws24_c00109{word-spacing:1.130400px;}
.ws22_c00109{word-spacing:2.167200px;}
.ws20_c00109{word-spacing:2.174400px;}
.ws21_c00109{word-spacing:2.246400px;}
.ws1e_c00109{word-spacing:2.858400px;}
.ws1f_c00109{word-spacing:2.880000px;}
.ws12_c00109{word-spacing:2.887200px;}
.ws13_c00109{word-spacing:2.894400px;}
.ws16_c00109{word-spacing:3.225600px;}
.ws33_c00109{word-spacing:3.557484px;}
.ws34_c00109{word-spacing:3.586212px;}
.ws18_c00109{word-spacing:3.888000px;}
.ws19_c00109{word-spacing:3.974400px;}
.ws15_c00109{word-spacing:4.536000px;}
.ws14_c00109{word-spacing:4.644000px;}
.ws30_c00109{word-spacing:4.668300px;}
.ws23_c00109{word-spacing:6.516000px;}
.ws31_c00109{word-spacing:7.498008px;}
.ws32_c00109{word-spacing:7.526736px;}
.wse_c00109{word-spacing:7.948800px;}
.ws11_c00109{word-spacing:8.265600px;}
.ws37_c00109{word-spacing:9.695700px;}
.ws36_c00109{word-spacing:10.040436px;}
.ws35_c00109{word-spacing:10.073952px;}
.ws17_c00109{word-spacing:10.144800px;}
.ws2b_c00109{word-spacing:10.437840px;}
.ws29_c00109{word-spacing:10.782576px;}
.ws2a_c00109{word-spacing:10.804752px;}
.ws28_c00109{word-spacing:11.152800px;}
.ws1b_c00109{word-spacing:13.334400px;}
.ws1c_c00109{word-spacing:16.185600px;}
.ws1d_c00109{word-spacing:16.308000px;}
._3_c00109{margin-left:-4.585536px;}
._0_c00109{margin-left:-1.142280px;}
._1_c00109{width:1.108800px;}
._2_c00109{width:4.668300px;}
._4_c00109{width:7.565040px;}
.fc0_c00109{color:rgb(0,0,0);}
.fs6_c00109{font-size:38.880000px;}
.fs3_c00109{font-size:42.120000px;}
.fs5_c00109{font-size:47.880000px;}
.fs2_c00109{font-size:54.000000px;}
.fs0_c00109{font-size:60.120000px;}
.fs1_c00109{font-size:72.000000px;}
.fs4_c00109{font-size:78.120000px;}
.y0_c00109{bottom:0.000000px;}
.y3_c00109{bottom:57.450450px;}
.y4_c00109{bottom:61.410450px;}
.y25_c00109{bottom:113.702970px;}
.y24_c00109{bottom:132.064950px;}
.y23_c00109{bottom:145.838190px;}
.y22_c00109{bottom:159.519900px;}
.y21_c00109{bottom:173.464950px;}
.y20_c00109{bottom:187.234230px;}
.y1f_c00109{bottom:205.502970px;}
.y1e_c00109{bottom:223.864950px;}
.y1d_c00109{bottom:237.630450px;}
.y1c_c00109{bottom:252.840450px;}
.y1b_c00109{bottom:273.540450px;}
.y1a_c00109{bottom:294.240450px;}
.y19_c00109{bottom:377.760450px;}
.y18_c00109{bottom:412.230450px;}
.y17_c00109{bottom:455.610450px;}
.y16_c00109{bottom:490.080450px;}
.y15_c00109{bottom:524.460450px;}
.y14_c00109{bottom:558.930450px;}
.y13_c00109{bottom:593.310450px;}
.y12_c00109{bottom:627.780450px;}
.y11_c00109{bottom:662.160450px;}
.y10_c00109{bottom:705.630450px;}
.yf_c00109{bottom:740.010450px;}
.ye_c00109{bottom:774.480450px;}
.yd_c00109{bottom:808.860450px;}
.yc_c00109{bottom:843.330450px;}
.yb_c00109{bottom:886.710450px;}
.ya_c00109{bottom:921.180450px;}
.y9_c00109{bottom:955.560450px;}
.y8_c00109{bottom:1000.650450px;}
.y7_c00109{bottom:1063.290450px;}
.y6_c00109{bottom:1097.760450px;}
.y5_c00109{bottom:1141.140450px;}
.y2_c00109{bottom:1173.810450px;}
.y1_c00109{bottom:1196.850450px;}
.h2_c00109{height:47.988281px;}
.h9_c00109{height:49.937344px;}
.h1_c00109{height:50.315273px;}
.h3_c00109{height:56.320312px;}
.h7_c00109{height:60.257812px;}
.h8_c00109{height:60.890625px;}
.h5_c00109{height:65.130820px;}
.h4_c00109{height:75.093750px;}
.h6_c00109{height:81.476719px;}
.h0_c00109{height:1263.000000px;}
.w1_c00109{width:892.500000px;}
.w0_c00109{width:892.830000px;}
.x0_c00109{left:0.000000px;}
.x2_c00109{left:127.620000px;}
.x1_c00109{left:145.440000px;}
.x5_c00109{left:154.440000px;}
.x6_c00109{left:181.170000px;}
.x4_c00109{left:439.020000px;}
.x3_c00109{left:446.490000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.v1_c00109{vertical-align:26.560000pt;}
.ls1e_c00109{letter-spacing:-0.134400pt;}
.ls23_c00109{letter-spacing:-0.083328pt;}
.ls1c_c00109{letter-spacing:-0.042752pt;}
.ls26_c00109{letter-spacing:-0.032000pt;}
.ls20_c00109{letter-spacing:-0.025600pt;}
.ls25_c00109{letter-spacing:-0.019200pt;}
.ls1b_c00109{letter-spacing:-0.016032pt;}
.ls22_c00109{letter-spacing:-0.013888pt;}
.ls2e_c00109{letter-spacing:-0.013824pt;}
.ls24_c00109{letter-spacing:-0.012800pt;}
.ls29_c00109{letter-spacing:-0.010368pt;}
.ls2b_c00109{letter-spacing:-0.008512pt;}
.ls28_c00109{letter-spacing:-0.006912pt;}
.ls1f_c00109{letter-spacing:-0.006400pt;}
.ls2a_c00109{letter-spacing:-0.003456pt;}
.ls1d_c00109{letter-spacing:0.000000pt;}
.ls6_c00109{letter-spacing:0.006400pt;}
.ls18_c00109{letter-spacing:0.006912pt;}
.lsc_c00109{letter-spacing:0.008512pt;}
.lsd_c00109{letter-spacing:0.012768pt;}
.ls7_c00109{letter-spacing:0.012800pt;}
.ls8_c00109{letter-spacing:0.019200pt;}
.ls15_c00109{letter-spacing:0.021280pt;}
.ls10_c00109{letter-spacing:0.025536pt;}
.ls27_c00109{letter-spacing:0.025600pt;}
.ls4_c00109{letter-spacing:0.027776pt;}
.lsa_c00109{letter-spacing:0.029792pt;}
.ls0_c00109{letter-spacing:0.032064pt;}
.lsf_c00109{letter-spacing:0.034048pt;}
.ls1a_c00109{letter-spacing:0.038304pt;}
.ls11_c00109{letter-spacing:0.042560pt;}
.ls9_c00109{letter-spacing:0.044800pt;}
.ls13_c00109{letter-spacing:0.046816pt;}
.ls3_c00109{letter-spacing:0.048672pt;}
.ls17_c00109{letter-spacing:0.051072pt;}
.ls14_c00109{letter-spacing:0.055328pt;}
.ls2c_c00109{letter-spacing:0.063840pt;}
.ls19_c00109{letter-spacing:0.067520pt;}
.ls12_c00109{letter-spacing:0.072352pt;}
.ls21_c00109{letter-spacing:0.083200pt;}
.ls1_c00109{letter-spacing:0.128000pt;}
.lse_c00109{letter-spacing:0.311680pt;}
.lsb_c00109{letter-spacing:0.336224pt;}
.ls2f_c00109{letter-spacing:0.357504pt;}
.ls2d_c00109{letter-spacing:4.175136pt;}
.ls16_c00109{letter-spacing:8.980160pt;}
.ls2_c00109{letter-spacing:58.688000pt;}
.ls5_c00109{letter-spacing:68.676160pt;}
.ws1_c00109{word-spacing:-17.387776pt;}
.ws6_c00109{word-spacing:-11.840192pt;}
.ws2_c00109{word-spacing:-11.831680pt;}
.ws7_c00109{word-spacing:-9.614592pt;}
.ws8_c00109{word-spacing:-9.607680pt;}
.ws5_c00109{word-spacing:-9.604224pt;}
.ws4_c00109{word-spacing:-9.600768pt;}
.ws3_c00109{word-spacing:-9.597312pt;}
.ws0_c00109{word-spacing:-9.408672pt;}
.ws3c_c00109{word-spacing:-0.319200pt;}
.ws10_c00109{word-spacing:-0.069440pt;}
.ws3b_c00109{word-spacing:-0.029792pt;}
.ws25_c00109{word-spacing:-0.025600pt;}
.ws3a_c00109{word-spacing:-0.021280pt;}
.ws2f_c00109{word-spacing:-0.017024pt;}
.ws38_c00109{word-spacing:-0.012768pt;}
.wsc_c00109{word-spacing:0.000000pt;}
.ws39_c00109{word-spacing:0.003456pt;}
.ws2d_c00109{word-spacing:0.004256pt;}
.wsd_c00109{word-spacing:0.006400pt;}
.ws2c_c00109{word-spacing:0.008512pt;}
.wsf_c00109{word-spacing:0.019200pt;}
.ws2e_c00109{word-spacing:0.025536pt;}
.ws1a_c00109{word-spacing:0.025600pt;}
.ws9_c00109{word-spacing:0.048096pt;}
.wsa_c00109{word-spacing:0.096192pt;}
.wsb_c00109{word-spacing:0.122912pt;}
.ws27_c00109{word-spacing:0.576000pt;}
.ws26_c00109{word-spacing:0.595200pt;}
.ws24_c00109{word-spacing:1.004800pt;}
.ws22_c00109{word-spacing:1.926400pt;}
.ws20_c00109{word-spacing:1.932800pt;}
.ws21_c00109{word-spacing:1.996800pt;}
.ws1e_c00109{word-spacing:2.540800pt;}
.ws1f_c00109{word-spacing:2.560000pt;}
.ws12_c00109{word-spacing:2.566400pt;}
.ws13_c00109{word-spacing:2.572800pt;}
.ws16_c00109{word-spacing:2.867200pt;}
.ws33_c00109{word-spacing:3.162208pt;}
.ws34_c00109{word-spacing:3.187744pt;}
.ws18_c00109{word-spacing:3.456000pt;}
.ws19_c00109{word-spacing:3.532800pt;}
.ws15_c00109{word-spacing:4.032000pt;}
.ws14_c00109{word-spacing:4.128000pt;}
.ws30_c00109{word-spacing:4.149600pt;}
.ws23_c00109{word-spacing:5.792000pt;}
.ws31_c00109{word-spacing:6.664896pt;}
.ws32_c00109{word-spacing:6.690432pt;}
.wse_c00109{word-spacing:7.065600pt;}
.ws11_c00109{word-spacing:7.347200pt;}
.ws37_c00109{word-spacing:8.618400pt;}
.ws36_c00109{word-spacing:8.924832pt;}
.ws35_c00109{word-spacing:8.954624pt;}
.ws17_c00109{word-spacing:9.017600pt;}
.ws2b_c00109{word-spacing:9.278080pt;}
.ws29_c00109{word-spacing:9.584512pt;}
.ws2a_c00109{word-spacing:9.604224pt;}
.ws28_c00109{word-spacing:9.913600pt;}
.ws1b_c00109{word-spacing:11.852800pt;}
.ws1c_c00109{word-spacing:14.387200pt;}
.ws1d_c00109{word-spacing:14.496000pt;}
._3_c00109{margin-left:-4.076032pt;}
._0_c00109{margin-left:-1.015360pt;}
._1_c00109{width:0.985600pt;}
._2_c00109{width:4.149600pt;}
._4_c00109{width:6.724480pt;}
.fs6_c00109{font-size:34.560000pt;}
.fs3_c00109{font-size:37.440000pt;}
.fs5_c00109{font-size:42.560000pt;}
.fs2_c00109{font-size:48.000000pt;}
.fs0_c00109{font-size:53.440000pt;}
.fs1_c00109{font-size:64.000000pt;}
.fs4_c00109{font-size:69.440000pt;}
.y0_c00109{bottom:0.000000pt;}
.y3_c00109{bottom:51.067067pt;}
.y4_c00109{bottom:54.587067pt;}
.y25_c00109{bottom:101.069307pt;}
.y24_c00109{bottom:117.391067pt;}
.y23_c00109{bottom:129.633947pt;}
.y22_c00109{bottom:141.795467pt;}
.y21_c00109{bottom:154.191067pt;}
.y20_c00109{bottom:166.430427pt;}
.y1f_c00109{bottom:182.669307pt;}
.y1e_c00109{bottom:198.991067pt;}
.y1d_c00109{bottom:211.227067pt;}
.y1c_c00109{bottom:224.747067pt;}
.y1b_c00109{bottom:243.147067pt;}
.y1a_c00109{bottom:261.547067pt;}
.y19_c00109{bottom:335.787067pt;}
.y18_c00109{bottom:366.427067pt;}
.y17_c00109{bottom:404.987067pt;}
.y16_c00109{bottom:435.627067pt;}
.y15_c00109{bottom:466.187067pt;}
.y14_c00109{bottom:496.827067pt;}
.y13_c00109{bottom:527.387067pt;}
.y12_c00109{bottom:558.027067pt;}
.y11_c00109{bottom:588.587067pt;}
.y10_c00109{bottom:627.227067pt;}
.yf_c00109{bottom:657.787067pt;}
.ye_c00109{bottom:688.427067pt;}
.yd_c00109{bottom:718.987067pt;}
.yc_c00109{bottom:749.627067pt;}
.yb_c00109{bottom:788.187067pt;}
.ya_c00109{bottom:818.827067pt;}
.y9_c00109{bottom:849.387067pt;}
.y8_c00109{bottom:889.467067pt;}
.y7_c00109{bottom:945.147067pt;}
.y6_c00109{bottom:975.787067pt;}
.y5_c00109{bottom:1014.347067pt;}
.y2_c00109{bottom:1043.387067pt;}
.y1_c00109{bottom:1063.867067pt;}
.h2_c00109{height:42.656250pt;}
.h9_c00109{height:44.388750pt;}
.h1_c00109{height:44.724687pt;}
.h3_c00109{height:50.062500pt;}
.h7_c00109{height:53.562500pt;}
.h8_c00109{height:54.125000pt;}
.h5_c00109{height:57.894062pt;}
.h4_c00109{height:66.750000pt;}
.h6_c00109{height:72.423750pt;}
.h0_c00109{height:1122.666667pt;}
.w1_c00109{width:793.333333pt;}
.w0_c00109{width:793.626667pt;}
.x0_c00109{left:0.000000pt;}
.x2_c00109{left:113.440000pt;}
.x1_c00109{left:129.280000pt;}
.x5_c00109{left:137.280000pt;}
.x6_c00109{left:161.040000pt;}
.x4_c00109{left:390.240000pt;}
.x3_c00109{left:396.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_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_7868fc5d88fb01f3e10ecf99.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.100098;font-style:normal;font-weight:normal;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_9cc126ed150f02359450b417.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;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_c00110;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00110;src:url('chunks/assets/font_3ea25460a565b77eb550b029.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00110;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;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_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:15.840000px;}
.v2_c00110{vertical-align:29.880000px;}
.lsf_c00110{letter-spacing:-0.151200px;}
.ls1a_c00110{letter-spacing:-0.093744px;}
.ls11_c00110{letter-spacing:-0.088452px;}
.ls19_c00110{letter-spacing:-0.062496px;}
.ls17_c00110{letter-spacing:-0.043200px;}
.ls16_c00110{letter-spacing:-0.036000px;}
.ls13_c00110{letter-spacing:-0.028800px;}
.ls12_c00110{letter-spacing:-0.021600px;}
.ls18_c00110{letter-spacing:-0.015624px;}
.ls14_c00110{letter-spacing:-0.014400px;}
.ls10_c00110{letter-spacing:-0.007200px;}
.lse_c00110{letter-spacing:0.000000px;}
.ls2_c00110{letter-spacing:0.007200px;}
.lsc_c00110{letter-spacing:0.014364px;}
.ls9_c00110{letter-spacing:0.014400px;}
.ls8_c00110{letter-spacing:0.015624px;}
.ls5_c00110{letter-spacing:0.021600px;}
.lsb_c00110{letter-spacing:0.033516px;}
.ls1b_c00110{letter-spacing:0.036000px;}
.lsd_c00110{letter-spacing:0.038304px;}
.ls6_c00110{letter-spacing:0.043200px;}
.ls0_c00110{letter-spacing:0.048096px;}
.ls3_c00110{letter-spacing:0.054756px;}
.ls4_c00110{letter-spacing:0.072000px;}
.ls15_c00110{letter-spacing:0.093600px;}
.lsa_c00110{letter-spacing:3.240000px;}
.ls7_c00110{letter-spacing:29.373120px;}
.ls1_c00110{letter-spacing:1227.240000px;}
.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;}
}
.ws2_c00110{word-spacing:-19.545624px;}
.ws1_c00110{word-spacing:-19.514376px;}
.ws3_c00110{word-spacing:-19.467504px;}
.ws4_c00110{word-spacing:-18.021600px;}
.ws5_c00110{word-spacing:-10.808640px;}
.ws0_c00110{word-spacing:-10.584756px;}
.ws23_c00110{word-spacing:-0.093744px;}
.ws22_c00110{word-spacing:-0.057600px;}
.ws2c_c00110{word-spacing:-0.019152px;}
.ws2a_c00110{word-spacing:-0.014364px;}
.ws21_c00110{word-spacing:-0.007200px;}
.ws7_c00110{word-spacing:0.000000px;}
.ws2b_c00110{word-spacing:0.004788px;}
.wsa_c00110{word-spacing:0.007200px;}
.ws6_c00110{word-spacing:0.042084px;}
.ws13_c00110{word-spacing:0.086400px;}
.ws20_c00110{word-spacing:0.316800px;}
.ws1f_c00110{word-spacing:0.331200px;}
.wsc_c00110{word-spacing:0.360000px;}
.wsf_c00110{word-spacing:0.727200px;}
.ws1a_c00110{word-spacing:1.440000px;}
.ws29_c00110{word-spacing:3.204000px;}
.ws28_c00110{word-spacing:3.240000px;}
.ws24_c00110{word-spacing:4.219200px;}
.ws25_c00110{word-spacing:4.269600px;}
.wsb_c00110{word-spacing:6.501600px;}
.ws1b_c00110{word-spacing:7.574400px;}
.ws1c_c00110{word-spacing:7.603200px;}
.ws18_c00110{word-spacing:7.941600px;}
.ws19_c00110{word-spacing:7.956000px;}
.wsd_c00110{word-spacing:8.287200px;}
.wse_c00110{word-spacing:8.330400px;}
.ws8_c00110{word-spacing:9.352800px;}
.ws9_c00110{word-spacing:9.367200px;}
.ws1d_c00110{word-spacing:10.072800px;}
.ws1e_c00110{word-spacing:10.173600px;}
.ws10_c00110{word-spacing:11.548800px;}
.ws27_c00110{word-spacing:15.825600px;}
.ws26_c00110{word-spacing:15.840000px;}
.ws15_c00110{word-spacing:17.280000px;}
.ws17_c00110{word-spacing:17.388000px;}
.ws16_c00110{word-spacing:17.431200px;}
.ws11_c00110{word-spacing:17.956800px;}
.ws12_c00110{word-spacing:18.007200px;}
.ws14_c00110{word-spacing:18.424800px;}
._0_c00110{margin-left:-1.322640px;}
._1_c00110{width:1.008000px;}
.fc0_c00110{color:rgb(0,0,0);}
.fs6_c00110{font-size:38.880000px;}
.fs3_c00110{font-size:42.120000px;}
.fs5_c00110{font-size:47.880000px;}
.fs1_c00110{font-size:54.000000px;}
.fs0_c00110{font-size:60.120000px;}
.fs2_c00110{font-size:72.000000px;}
.fs4_c00110{font-size:78.120000px;}
.y0_c00110{bottom:0.000000px;}
.y3_c00110{bottom:57.450450px;}
.y23_c00110{bottom:113.698470px;}
.y22_c00110{bottom:132.064230px;}
.y21_c00110{bottom:150.332400px;}
.y20_c00110{bottom:168.598620px;}
.y1f_c00110{bottom:186.960600px;}
.y1e_c00110{bottom:202.170450px;}
.y1d_c00110{bottom:222.870450px;}
.y1c_c00110{bottom:243.570450px;}
.y1b_c00110{bottom:274.530450px;}
.y1a_c00110{bottom:308.910450px;}
.y19_c00110{bottom:343.380450px;}
.y18_c00110{bottom:377.760450px;}
.y17_c00110{bottom:422.850450px;}
.y16_c00110{bottom:485.490450px;}
.y15_c00110{bottom:519.960450px;}
.y14_c00110{bottom:563.340450px;}
.y13_c00110{bottom:597.810450px;}
.y12_c00110{bottom:632.190450px;}
.y11_c00110{bottom:666.660450px;}
.y10_c00110{bottom:710.040450px;}
.yf_c00110{bottom:744.510450px;}
.ye_c00110{bottom:778.890450px;}
.yd_c00110{bottom:813.360450px;}
.yc_c00110{bottom:856.740450px;}
.yb_c00110{bottom:891.210450px;}
.ya_c00110{bottom:925.590450px;}
.y9_c00110{bottom:960.060450px;}
.y8_c00110{bottom:994.440450px;}
.y7_c00110{bottom:1028.910450px;}
.y6_c00110{bottom:1063.290450px;}
.y5_c00110{bottom:1106.760450px;}
.y4_c00110{bottom:1141.140450px;}
.y2_c00110{bottom:1177.860450px;}
.y1_c00110{bottom:1196.850450px;}
.h9_c00110{height:47.988281px;}
.ha_c00110{height:49.937344px;}
.h1_c00110{height:50.315273px;}
.h2_c00110{height:56.320312px;}
.h5_c00110{height:60.257812px;}
.h8_c00110{height:60.328125px;}
.h4_c00110{height:65.130820px;}
.h6_c00110{height:65.131420px;}
.h3_c00110{height:72.160312px;}
.h7_c00110{height:81.476719px;}
.h0_c00110{height:1263.000000px;}
.w1_c00110{width:892.500000px;}
.w0_c00110{width:892.830000px;}
.x0_c00110{left:0.000000px;}
.x1_c00110{left:127.620000px;}
.x2_c00110{left:180.810000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.v1_c00110{vertical-align:14.080000pt;}
.v2_c00110{vertical-align:26.560000pt;}
.lsf_c00110{letter-spacing:-0.134400pt;}
.ls1a_c00110{letter-spacing:-0.083328pt;}
.ls11_c00110{letter-spacing:-0.078624pt;}
.ls19_c00110{letter-spacing:-0.055552pt;}
.ls17_c00110{letter-spacing:-0.038400pt;}
.ls16_c00110{letter-spacing:-0.032000pt;}
.ls13_c00110{letter-spacing:-0.025600pt;}
.ls12_c00110{letter-spacing:-0.019200pt;}
.ls18_c00110{letter-spacing:-0.013888pt;}
.ls14_c00110{letter-spacing:-0.012800pt;}
.ls10_c00110{letter-spacing:-0.006400pt;}
.lse_c00110{letter-spacing:0.000000pt;}
.ls2_c00110{letter-spacing:0.006400pt;}
.lsc_c00110{letter-spacing:0.012768pt;}
.ls9_c00110{letter-spacing:0.012800pt;}
.ls8_c00110{letter-spacing:0.013888pt;}
.ls5_c00110{letter-spacing:0.019200pt;}
.lsb_c00110{letter-spacing:0.029792pt;}
.ls1b_c00110{letter-spacing:0.032000pt;}
.lsd_c00110{letter-spacing:0.034048pt;}
.ls6_c00110{letter-spacing:0.038400pt;}
.ls0_c00110{letter-spacing:0.042752pt;}
.ls3_c00110{letter-spacing:0.048672pt;}
.ls4_c00110{letter-spacing:0.064000pt;}
.ls15_c00110{letter-spacing:0.083200pt;}
.lsa_c00110{letter-spacing:2.880000pt;}
.ls7_c00110{letter-spacing:26.109440pt;}
.ls1_c00110{letter-spacing:1090.880000pt;}
.ws2_c00110{word-spacing:-17.373888pt;}
.ws1_c00110{word-spacing:-17.346112pt;}
.ws3_c00110{word-spacing:-17.304448pt;}
.ws4_c00110{word-spacing:-16.019200pt;}
.ws5_c00110{word-spacing:-9.607680pt;}
.ws0_c00110{word-spacing:-9.408672pt;}
.ws23_c00110{word-spacing:-0.083328pt;}
.ws22_c00110{word-spacing:-0.051200pt;}
.ws2c_c00110{word-spacing:-0.017024pt;}
.ws2a_c00110{word-spacing:-0.012768pt;}
.ws21_c00110{word-spacing:-0.006400pt;}
.ws7_c00110{word-spacing:0.000000pt;}
.ws2b_c00110{word-spacing:0.004256pt;}
.wsa_c00110{word-spacing:0.006400pt;}
.ws6_c00110{word-spacing:0.037408pt;}
.ws13_c00110{word-spacing:0.076800pt;}
.ws20_c00110{word-spacing:0.281600pt;}
.ws1f_c00110{word-spacing:0.294400pt;}
.wsc_c00110{word-spacing:0.320000pt;}
.wsf_c00110{word-spacing:0.646400pt;}
.ws1a_c00110{word-spacing:1.280000pt;}
.ws29_c00110{word-spacing:2.848000pt;}
.ws28_c00110{word-spacing:2.880000pt;}
.ws24_c00110{word-spacing:3.750400pt;}
.ws25_c00110{word-spacing:3.795200pt;}
.wsb_c00110{word-spacing:5.779200pt;}
.ws1b_c00110{word-spacing:6.732800pt;}
.ws1c_c00110{word-spacing:6.758400pt;}
.ws18_c00110{word-spacing:7.059200pt;}
.ws19_c00110{word-spacing:7.072000pt;}
.wsd_c00110{word-spacing:7.366400pt;}
.wse_c00110{word-spacing:7.404800pt;}
.ws8_c00110{word-spacing:8.313600pt;}
.ws9_c00110{word-spacing:8.326400pt;}
.ws1d_c00110{word-spacing:8.953600pt;}
.ws1e_c00110{word-spacing:9.043200pt;}
.ws10_c00110{word-spacing:10.265600pt;}
.ws27_c00110{word-spacing:14.067200pt;}
.ws26_c00110{word-spacing:14.080000pt;}
.ws15_c00110{word-spacing:15.360000pt;}
.ws17_c00110{word-spacing:15.456000pt;}
.ws16_c00110{word-spacing:15.494400pt;}
.ws11_c00110{word-spacing:15.961600pt;}
.ws12_c00110{word-spacing:16.006400pt;}
.ws14_c00110{word-spacing:16.377600pt;}
._0_c00110{margin-left:-1.175680pt;}
._1_c00110{width:0.896000pt;}
.fs6_c00110{font-size:34.560000pt;}
.fs3_c00110{font-size:37.440000pt;}
.fs5_c00110{font-size:42.560000pt;}
.fs1_c00110{font-size:48.000000pt;}
.fs0_c00110{font-size:53.440000pt;}
.fs2_c00110{font-size:64.000000pt;}
.fs4_c00110{font-size:69.440000pt;}
.y0_c00110{bottom:0.000000pt;}
.y3_c00110{bottom:51.067067pt;}
.y23_c00110{bottom:101.065307pt;}
.y22_c00110{bottom:117.390427pt;}
.y21_c00110{bottom:133.628800pt;}
.y20_c00110{bottom:149.865440pt;}
.y1f_c00110{bottom:166.187200pt;}
.y1e_c00110{bottom:179.707067pt;}
.y1d_c00110{bottom:198.107067pt;}
.y1c_c00110{bottom:216.507067pt;}
.y1b_c00110{bottom:244.027067pt;}
.y1a_c00110{bottom:274.587067pt;}
.y19_c00110{bottom:305.227067pt;}
.y18_c00110{bottom:335.787067pt;}
.y17_c00110{bottom:375.867067pt;}
.y16_c00110{bottom:431.547067pt;}
.y15_c00110{bottom:462.187067pt;}
.y14_c00110{bottom:500.747067pt;}
.y13_c00110{bottom:531.387067pt;}
.y12_c00110{bottom:561.947067pt;}
.y11_c00110{bottom:592.587067pt;}
.y10_c00110{bottom:631.147067pt;}
.yf_c00110{bottom:661.787067pt;}
.ye_c00110{bottom:692.347067pt;}
.yd_c00110{bottom:722.987067pt;}
.yc_c00110{bottom:761.547067pt;}
.yb_c00110{bottom:792.187067pt;}
.ya_c00110{bottom:822.747067pt;}
.y9_c00110{bottom:853.387067pt;}
.y8_c00110{bottom:883.947067pt;}
.y7_c00110{bottom:914.587067pt;}
.y6_c00110{bottom:945.147067pt;}
.y5_c00110{bottom:983.787067pt;}
.y4_c00110{bottom:1014.347067pt;}
.y2_c00110{bottom:1046.987067pt;}
.y1_c00110{bottom:1063.867067pt;}
.h9_c00110{height:42.656250pt;}
.ha_c00110{height:44.388750pt;}
.h1_c00110{height:44.724687pt;}
.h2_c00110{height:50.062500pt;}
.h5_c00110{height:53.562500pt;}
.h8_c00110{height:53.625000pt;}
.h4_c00110{height:57.894063pt;}
.h6_c00110{height:57.894596pt;}
.h3_c00110{height:64.142500pt;}
.h7_c00110{height:72.423750pt;}
.h0_c00110{height:1122.666667pt;}
.w1_c00110{width:793.333333pt;}
.w0_c00110{width:793.626667pt;}
.x0_c00110{left:0.000000pt;}
.x1_c00110{left:113.440000pt;}
.x2_c00110{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_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_f1759460c9338b69f0eff612.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00111;src:url('chunks/assets/font_898d085596ed563459eed81e.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00111;src:url('chunks/assets/font_6892dcf82018f4072cb7abcd.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00111;src:url('chunks/assets/font_b18cc610294e37beb81942b3.woff2')format("woff");}.ff5_c00111{font-family:ff5_c00111;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00111;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00111{font-family:ff6_c00111;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00111;src:url('chunks/assets/font_b306d632870a91cf9dbfa99f.woff2')format("woff");}.ff7_c00111{font-family:ff7_c00111;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_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;}
.v1_c00111{vertical-align:29.880000px;}
.ls16_c00111{letter-spacing:-0.266400px;}
.lsd_c00111{letter-spacing:-0.151200px;}
.ls1b_c00111{letter-spacing:-0.093744px;}
.ls11_c00111{letter-spacing:-0.064800px;}
.ls18_c00111{letter-spacing:-0.054684px;}
.ls14_c00111{letter-spacing:-0.050400px;}
.lsb_c00111{letter-spacing:-0.048096px;}
.ls19_c00111{letter-spacing:-0.046872px;}
.ls12_c00111{letter-spacing:-0.043200px;}
.ls17_c00111{letter-spacing:-0.031248px;}
.lse_c00111{letter-spacing:-0.028800px;}
.ls10_c00111{letter-spacing:-0.021600px;}
.lsa_c00111{letter-spacing:-0.018036px;}
.ls1f_c00111{letter-spacing:-0.015552px;}
.ls15_c00111{letter-spacing:-0.014400px;}
.ls1e_c00111{letter-spacing:-0.009576px;}
.ls1a_c00111{letter-spacing:-0.007812px;}
.ls1d_c00111{letter-spacing:-0.007776px;}
.lsf_c00111{letter-spacing:-0.007200px;}
.ls1c_c00111{letter-spacing:-0.003888px;}
.lsc_c00111{letter-spacing:0.000000px;}
.ls2_c00111{letter-spacing:0.007200px;}
.ls6_c00111{letter-spacing:0.014364px;}
.ls3_c00111{letter-spacing:0.014400px;}
.ls5_c00111{letter-spacing:0.021600px;}
.ls0_c00111{letter-spacing:0.036072px;}
.ls8_c00111{letter-spacing:0.038304px;}
.ls9_c00111{letter-spacing:0.043092px;}
.ls1_c00111{letter-spacing:0.054756px;}
.ls13_c00111{letter-spacing:0.093600px;}
.ls7_c00111{letter-spacing:0.350640px;}
.ls4_c00111{letter-spacing:64.683360px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00111{word-spacing:-19.522188px;}
.ws1_c00111{word-spacing:-19.498752px;}
.ws2_c00111{word-spacing:-19.483128px;}
.ws5_c00111{word-spacing:-13.310640px;}
.ws6_c00111{word-spacing:-10.804752px;}
.ws4_c00111{word-spacing:-10.800864px;}
.ws0_c00111{word-spacing:-10.584756px;}
.ws2c_c00111{word-spacing:-0.093600px;}
.ws14_c00111{word-spacing:-0.086400px;}
.ws23_c00111{word-spacing:-0.039060px;}
.ws31_c00111{word-spacing:-0.023940px;}
.ws30_c00111{word-spacing:-0.019152px;}
.ws20_c00111{word-spacing:-0.014400px;}
.ws28_c00111{word-spacing:-0.007200px;}
.wsa_c00111{word-spacing:0.000000px;}
.ws2e_c00111{word-spacing:0.004788px;}
.ws22_c00111{word-spacing:0.007200px;}
.ws2b_c00111{word-spacing:0.014400px;}
.ws2f_c00111{word-spacing:0.028728px;}
.ws13_c00111{word-spacing:0.028800px;}
.ws7_c00111{word-spacing:0.054108px;}
.ws27_c00111{word-spacing:0.064800px;}
.ws8_c00111{word-spacing:0.108216px;}
.ws9_c00111{word-spacing:0.138276px;}
.ws16_c00111{word-spacing:0.756000px;}
.ws15_c00111{word-spacing:0.784800px;}
.ws1b_c00111{word-spacing:2.246400px;}
.ws1c_c00111{word-spacing:2.268000px;}
.ws29_c00111{word-spacing:3.232800px;}
.ws2a_c00111{word-spacing:3.254400px;}
.ws1f_c00111{word-spacing:4.701600px;}
.ws24_c00111{word-spacing:5.428800px;}
.wsc_c00111{word-spacing:7.920000px;}
.wsd_c00111{word-spacing:7.927200px;}
.wse_c00111{word-spacing:7.941600px;}
.ws11_c00111{word-spacing:7.984800px;}
.ws10_c00111{word-spacing:8.071200px;}
.ws12_c00111{word-spacing:8.143200px;}
.wsf_c00111{word-spacing:8.308800px;}
.ws1e_c00111{word-spacing:10.792800px;}
.wsb_c00111{word-spacing:11.908800px;}
.ws21_c00111{word-spacing:12.254400px;}
.ws2d_c00111{word-spacing:13.694400px;}
.ws18_c00111{word-spacing:15.213600px;}
.ws17_c00111{word-spacing:15.220800px;}
.ws1d_c00111{word-spacing:18.007200px;}
.ws25_c00111{word-spacing:23.738400px;}
.ws26_c00111{word-spacing:23.918400px;}
.ws1a_c00111{word-spacing:24.494400px;}
.ws19_c00111{word-spacing:24.559200px;}
._0_c00111{margin-left:-1.142280px;}
._1_c00111{width:1.202400px;}
.fc0_c00111{color:rgb(0,0,0);}
.fs6_c00111{font-size:38.880000px;}
.fs3_c00111{font-size:42.120000px;}
.fs5_c00111{font-size:47.880000px;}
.fs2_c00111{font-size:54.000000px;}
.fs0_c00111{font-size:60.120000px;}
.fs1_c00111{font-size:72.000000px;}
.fs4_c00111{font-size:78.120000px;}
.y0_c00111{bottom:0.000000px;}
.y3_c00111{bottom:57.450450px;}
.y4_c00111{bottom:61.410450px;}
.y21_c00111{bottom:113.698470px;}
.y20_c00111{bottom:132.064230px;}
.y1f_c00111{bottom:150.334230px;}
.y1e_c00111{bottom:168.600450px;}
.y1d_c00111{bottom:183.810600px;}
.y1c_c00111{bottom:204.510600px;}
.y1b_c00111{bottom:225.210450px;}
.y1a_c00111{bottom:343.380450px;}
.y19_c00111{bottom:377.760450px;}
.y18_c00111{bottom:421.230450px;}
.y17_c00111{bottom:455.610450px;}
.y16_c00111{bottom:499.080450px;}
.y15_c00111{bottom:533.460450px;}
.y14_c00111{bottom:567.930450px;}
.y13_c00111{bottom:612.930450px;}
.y12_c00111{bottom:675.660450px;}
.y11_c00111{bottom:710.040450px;}
.y10_c00111{bottom:753.510450px;}
.yf_c00111{bottom:787.890450px;}
.ye_c00111{bottom:822.360450px;}
.yd_c00111{bottom:856.740450px;}
.yc_c00111{bottom:891.210450px;}
.yb_c00111{bottom:925.590450px;}
.ya_c00111{bottom:960.060450px;}
.y9_c00111{bottom:994.440450px;}
.y8_c00111{bottom:1037.910450px;}
.y7_c00111{bottom:1072.290450px;}
.y6_c00111{bottom:1106.760450px;}
.y5_c00111{bottom:1141.140450px;}
.y2_c00111{bottom:1173.810450px;}
.y1_c00111{bottom:1196.850450px;}
.h2_c00111{height:47.988281px;}
.h9_c00111{height:47.988881px;}
.ha_c00111{height:49.937344px;}
.hb_c00111{height:49.945264px;}
.h1_c00111{height:50.315273px;}
.h3_c00111{height:56.320312px;}
.h4_c00111{height:60.257812px;}
.h6_c00111{height:60.890625px;}
.h5_c00111{height:65.130820px;}
.h8_c00111{height:65.131420px;}
.h7_c00111{height:81.476719px;}
.h0_c00111{height:1263.000000px;}
.w1_c00111{width:892.500000px;}
.w0_c00111{width:892.830000px;}
.x0_c00111{left:0.000000px;}
.x2_c00111{left:127.620000px;}
.x1_c00111{left:145.440000px;}
.x5_c00111{left:180.810000px;}
.x4_c00111{left:439.020000px;}
.x3_c00111{left:446.490000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.v1_c00111{vertical-align:26.560000pt;}
.ls16_c00111{letter-spacing:-0.236800pt;}
.lsd_c00111{letter-spacing:-0.134400pt;}
.ls1b_c00111{letter-spacing:-0.083328pt;}
.ls11_c00111{letter-spacing:-0.057600pt;}
.ls18_c00111{letter-spacing:-0.048608pt;}
.ls14_c00111{letter-spacing:-0.044800pt;}
.lsb_c00111{letter-spacing:-0.042752pt;}
.ls19_c00111{letter-spacing:-0.041664pt;}
.ls12_c00111{letter-spacing:-0.038400pt;}
.ls17_c00111{letter-spacing:-0.027776pt;}
.lse_c00111{letter-spacing:-0.025600pt;}
.ls10_c00111{letter-spacing:-0.019200pt;}
.lsa_c00111{letter-spacing:-0.016032pt;}
.ls1f_c00111{letter-spacing:-0.013824pt;}
.ls15_c00111{letter-spacing:-0.012800pt;}
.ls1e_c00111{letter-spacing:-0.008512pt;}
.ls1a_c00111{letter-spacing:-0.006944pt;}
.ls1d_c00111{letter-spacing:-0.006912pt;}
.lsf_c00111{letter-spacing:-0.006400pt;}
.ls1c_c00111{letter-spacing:-0.003456pt;}
.lsc_c00111{letter-spacing:0.000000pt;}
.ls2_c00111{letter-spacing:0.006400pt;}
.ls6_c00111{letter-spacing:0.012768pt;}
.ls3_c00111{letter-spacing:0.012800pt;}
.ls5_c00111{letter-spacing:0.019200pt;}
.ls0_c00111{letter-spacing:0.032064pt;}
.ls8_c00111{letter-spacing:0.034048pt;}
.ls9_c00111{letter-spacing:0.038304pt;}
.ls1_c00111{letter-spacing:0.048672pt;}
.ls13_c00111{letter-spacing:0.083200pt;}
.ls7_c00111{letter-spacing:0.311680pt;}
.ls4_c00111{letter-spacing:57.496320pt;}
.ws3_c00111{word-spacing:-17.353056pt;}
.ws1_c00111{word-spacing:-17.332224pt;}
.ws2_c00111{word-spacing:-17.318336pt;}
.ws5_c00111{word-spacing:-11.831680pt;}
.ws6_c00111{word-spacing:-9.604224pt;}
.ws4_c00111{word-spacing:-9.600768pt;}
.ws0_c00111{word-spacing:-9.408672pt;}
.ws2c_c00111{word-spacing:-0.083200pt;}
.ws14_c00111{word-spacing:-0.076800pt;}
.ws23_c00111{word-spacing:-0.034720pt;}
.ws31_c00111{word-spacing:-0.021280pt;}
.ws30_c00111{word-spacing:-0.017024pt;}
.ws20_c00111{word-spacing:-0.012800pt;}
.ws28_c00111{word-spacing:-0.006400pt;}
.wsa_c00111{word-spacing:0.000000pt;}
.ws2e_c00111{word-spacing:0.004256pt;}
.ws22_c00111{word-spacing:0.006400pt;}
.ws2b_c00111{word-spacing:0.012800pt;}
.ws2f_c00111{word-spacing:0.025536pt;}
.ws13_c00111{word-spacing:0.025600pt;}
.ws7_c00111{word-spacing:0.048096pt;}
.ws27_c00111{word-spacing:0.057600pt;}
.ws8_c00111{word-spacing:0.096192pt;}
.ws9_c00111{word-spacing:0.122912pt;}
.ws16_c00111{word-spacing:0.672000pt;}
.ws15_c00111{word-spacing:0.697600pt;}
.ws1b_c00111{word-spacing:1.996800pt;}
.ws1c_c00111{word-spacing:2.016000pt;}
.ws29_c00111{word-spacing:2.873600pt;}
.ws2a_c00111{word-spacing:2.892800pt;}
.ws1f_c00111{word-spacing:4.179200pt;}
.ws24_c00111{word-spacing:4.825600pt;}
.wsc_c00111{word-spacing:7.040000pt;}
.wsd_c00111{word-spacing:7.046400pt;}
.wse_c00111{word-spacing:7.059200pt;}
.ws11_c00111{word-spacing:7.097600pt;}
.ws10_c00111{word-spacing:7.174400pt;}
.ws12_c00111{word-spacing:7.238400pt;}
.wsf_c00111{word-spacing:7.385600pt;}
.ws1e_c00111{word-spacing:9.593600pt;}
.wsb_c00111{word-spacing:10.585600pt;}
.ws21_c00111{word-spacing:10.892800pt;}
.ws2d_c00111{word-spacing:12.172800pt;}
.ws18_c00111{word-spacing:13.523200pt;}
.ws17_c00111{word-spacing:13.529600pt;}
.ws1d_c00111{word-spacing:16.006400pt;}
.ws25_c00111{word-spacing:21.100800pt;}
.ws26_c00111{word-spacing:21.260800pt;}
.ws1a_c00111{word-spacing:21.772800pt;}
.ws19_c00111{word-spacing:21.830400pt;}
._0_c00111{margin-left:-1.015360pt;}
._1_c00111{width:1.068800pt;}
.fs6_c00111{font-size:34.560000pt;}
.fs3_c00111{font-size:37.440000pt;}
.fs5_c00111{font-size:42.560000pt;}
.fs2_c00111{font-size:48.000000pt;}
.fs0_c00111{font-size:53.440000pt;}
.fs1_c00111{font-size:64.000000pt;}
.fs4_c00111{font-size:69.440000pt;}
.y0_c00111{bottom:0.000000pt;}
.y3_c00111{bottom:51.067067pt;}
.y4_c00111{bottom:54.587067pt;}
.y21_c00111{bottom:101.065307pt;}
.y20_c00111{bottom:117.390427pt;}
.y1f_c00111{bottom:133.630427pt;}
.y1e_c00111{bottom:149.867067pt;}
.y1d_c00111{bottom:163.387200pt;}
.y1c_c00111{bottom:181.787200pt;}
.y1b_c00111{bottom:200.187067pt;}
.y1a_c00111{bottom:305.227067pt;}
.y19_c00111{bottom:335.787067pt;}
.y18_c00111{bottom:374.427067pt;}
.y17_c00111{bottom:404.987067pt;}
.y16_c00111{bottom:443.627067pt;}
.y15_c00111{bottom:474.187067pt;}
.y14_c00111{bottom:504.827067pt;}
.y13_c00111{bottom:544.827067pt;}
.y12_c00111{bottom:600.587067pt;}
.y11_c00111{bottom:631.147067pt;}
.y10_c00111{bottom:669.787067pt;}
.yf_c00111{bottom:700.347067pt;}
.ye_c00111{bottom:730.987067pt;}
.yd_c00111{bottom:761.547067pt;}
.yc_c00111{bottom:792.187067pt;}
.yb_c00111{bottom:822.747067pt;}
.ya_c00111{bottom:853.387067pt;}
.y9_c00111{bottom:883.947067pt;}
.y8_c00111{bottom:922.587067pt;}
.y7_c00111{bottom:953.147067pt;}
.y6_c00111{bottom:983.787067pt;}
.y5_c00111{bottom:1014.347067pt;}
.y2_c00111{bottom:1043.387067pt;}
.y1_c00111{bottom:1063.867067pt;}
.h2_c00111{height:42.656250pt;}
.h9_c00111{height:42.656783pt;}
.ha_c00111{height:44.388750pt;}
.hb_c00111{height:44.395790pt;}
.h1_c00111{height:44.724687pt;}
.h3_c00111{height:50.062500pt;}
.h4_c00111{height:53.562500pt;}
.h6_c00111{height:54.125000pt;}
.h5_c00111{height:57.894063pt;}
.h8_c00111{height:57.894596pt;}
.h7_c00111{height:72.423750pt;}
.h0_c00111{height:1122.666667pt;}
.w1_c00111{width:793.333333pt;}
.w0_c00111{width:793.626667pt;}
.x0_c00111{left:0.000000pt;}
.x2_c00111{left:113.440000pt;}
.x1_c00111{left:129.280000pt;}
.x5_c00111{left:160.720000pt;}
.x4_c00111{left:390.240000pt;}
.x3_c00111{left:396.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_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_57f677cc1254b0ef4f124270.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.100098;font-style:normal;font-weight:normal;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_7f696abbe11414fe23ba4678.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;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_c00112;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00112;src:url('chunks/assets/font_329a73fb7bc7d9c01fe7ea71.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00112;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00112{font-family:ff5_c00112;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_c00112;src:url('chunks/assets/font_efa8433a6fff66ea86869bdc.woff2')format("woff");}.ff6_c00112{font-family:ff6_c00112;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_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;}
.v1_c00112{vertical-align:15.840000px;}
.v2_c00112{vertical-align:29.880000px;}
.lse_c00112{letter-spacing:-0.151200px;}
.ls16_c00112{letter-spacing:-0.086400px;}
.ls12_c00112{letter-spacing:-0.057600px;}
.ls17_c00112{letter-spacing:-0.036000px;}
.ls15_c00112{letter-spacing:-0.028800px;}
.ls1a_c00112{letter-spacing:-0.023940px;}
.ls11_c00112{letter-spacing:-0.021600px;}
.ls1b_c00112{letter-spacing:-0.015552px;}
.ls13_c00112{letter-spacing:-0.014400px;}
.lsf_c00112{letter-spacing:-0.007812px;}
.ls10_c00112{letter-spacing:-0.007200px;}
.ls1c_c00112{letter-spacing:-0.003888px;}
.lsd_c00112{letter-spacing:0.000000px;}
.ls4_c00112{letter-spacing:0.007200px;}
.ls19_c00112{letter-spacing:0.009576px;}
.ls9_c00112{letter-spacing:0.014364px;}
.ls3_c00112{letter-spacing:0.014400px;}
.ls18_c00112{letter-spacing:0.019152px;}
.ls6_c00112{letter-spacing:0.021600px;}
.lsa_c00112{letter-spacing:0.023940px;}
.lsb_c00112{letter-spacing:0.028728px;}
.lsc_c00112{letter-spacing:0.033516px;}
.ls7_c00112{letter-spacing:0.047880px;}
.ls0_c00112{letter-spacing:0.048096px;}
.ls5_c00112{letter-spacing:0.054756px;}
.ls8_c00112{letter-spacing:0.062244px;}
.ls14_c00112{letter-spacing:0.093600px;}
.ls2_c00112{letter-spacing:58.902480px;}
.ls1_c00112{letter-spacing:1227.240000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00112{word-spacing:-19.522188px;}
.ws2_c00112{word-spacing:-17.971200px;}
.ws4_c00112{word-spacing:-13.310640px;}
.ws3_c00112{word-spacing:-10.808640px;}
.ws5_c00112{word-spacing:-10.804752px;}
.ws1_c00112{word-spacing:-10.584756px;}
.ws17_c00112{word-spacing:-0.093600px;}
.ws8_c00112{word-spacing:-0.085932px;}
.ws2e_c00112{word-spacing:-0.043092px;}
.ws2d_c00112{word-spacing:-0.028728px;}
.ws33_c00112{word-spacing:-0.014364px;}
.ws30_c00112{word-spacing:-0.004788px;}
.ws7_c00112{word-spacing:0.000000px;}
.ws2f_c00112{word-spacing:0.004788px;}
.wse_c00112{word-spacing:0.007200px;}
.ws15_c00112{word-spacing:0.014400px;}
.ws16_c00112{word-spacing:0.021600px;}
.ws6_c00112{word-spacing:0.042084px;}
.ws32_c00112{word-spacing:0.043092px;}
.ws31_c00112{word-spacing:1.067724px;}
.ws2a_c00112{word-spacing:2.880000px;}
.ws29_c00112{word-spacing:2.959200px;}
.ws1f_c00112{word-spacing:3.211200px;}
.ws1e_c00112{word-spacing:3.254400px;}
.ws1c_c00112{word-spacing:4.298400px;}
.ws1d_c00112{word-spacing:4.406400px;}
.ws1b_c00112{word-spacing:4.514400px;}
.wsb_c00112{word-spacing:4.600800px;}
.wsa_c00112{word-spacing:4.680000px;}
.ws27_c00112{word-spacing:4.701600px;}
.ws22_c00112{word-spacing:6.465600px;}
.ws21_c00112{word-spacing:6.537600px;}
.ws2b_c00112{word-spacing:8.640000px;}
.ws2c_c00112{word-spacing:8.726400px;}
.ws18_c00112{word-spacing:9.057600px;}
.ws19_c00112{word-spacing:9.129600px;}
.ws20_c00112{word-spacing:9.734400px;}
.wsc_c00112{word-spacing:10.447200px;}
.wsd_c00112{word-spacing:10.461600px;}
.ws12_c00112{word-spacing:14.032800px;}
.ws10_c00112{word-spacing:14.068800px;}
.ws11_c00112{word-spacing:14.119200px;}
.ws1a_c00112{word-spacing:16.552800px;}
.ws9_c00112{word-spacing:16.560000px;}
.wsf_c00112{word-spacing:17.301600px;}
.ws25_c00112{word-spacing:17.992800px;}
.ws26_c00112{word-spacing:18.000000px;}
.ws24_c00112{word-spacing:18.136800px;}
.ws28_c00112{word-spacing:19.476000px;}
.ws13_c00112{word-spacing:21.528000px;}
.ws14_c00112{word-spacing:21.657600px;}
.ws23_c00112{word-spacing:29.160000px;}
._0_c00112{margin-left:-1.322640px;}
._1_c00112{width:1.080000px;}
.fc0_c00112{color:rgb(0,0,0);}
.fs6_c00112{font-size:38.880000px;}
.fs4_c00112{font-size:42.120000px;}
.fs5_c00112{font-size:47.880000px;}
.fs1_c00112{font-size:54.000000px;}
.fs0_c00112{font-size:60.120000px;}
.fs2_c00112{font-size:72.000000px;}
.fs3_c00112{font-size:78.120000px;}
.y0_c00112{bottom:0.000000px;}
.y3_c00112{bottom:57.450450px;}
.y23_c00112{bottom:113.702970px;}
.y22_c00112{bottom:132.064950px;}
.y21_c00112{bottom:145.836030px;}
.y20_c00112{bottom:164.102250px;}
.y1f_c00112{bottom:182.464230px;}
.y1e_c00112{bottom:200.730450px;}
.y1d_c00112{bottom:215.940450px;}
.y1c_c00112{bottom:236.640450px;}
.y1b_c00112{bottom:257.340450px;}
.y1a_c00112{bottom:335.910450px;}
.y19_c00112{bottom:370.380450px;}
.y18_c00112{bottom:413.760450px;}
.y17_c00112{bottom:448.230450px;}
.y16_c00112{bottom:482.610450px;}
.y15_c00112{bottom:517.080450px;}
.y14_c00112{bottom:551.460450px;}
.y13_c00112{bottom:585.930450px;}
.y12_c00112{bottom:620.310450px;}
.y11_c00112{bottom:654.780450px;}
.y10_c00112{bottom:698.160450px;}
.yf_c00112{bottom:732.630600px;}
.ye_c00112{bottom:767.010600px;}
.yd_c00112{bottom:801.480600px;}
.yc_c00112{bottom:844.860450px;}
.yb_c00112{bottom:879.330450px;}
.ya_c00112{bottom:913.710450px;}
.y9_c00112{bottom:948.180450px;}
.y8_c00112{bottom:991.560450px;}
.y7_c00112{bottom:1026.030450px;}
.y6_c00112{bottom:1060.410450px;}
.y5_c00112{bottom:1094.880450px;}
.y4_c00112{bottom:1139.880450px;}
.y2_c00112{bottom:1177.860450px;}
.y1_c00112{bottom:1196.850450px;}
.h8_c00112{height:47.988281px;}
.h9_c00112{height:49.937344px;}
.h1_c00112{height:50.315273px;}
.h2_c00112{height:56.320312px;}
.h5_c00112{height:60.257812px;}
.h7_c00112{height:65.130220px;}
.h6_c00112{height:65.130820px;}
.h3_c00112{height:72.160312px;}
.h4_c00112{height:81.476719px;}
.h0_c00112{height:1263.000000px;}
.w1_c00112{width:892.500000px;}
.w0_c00112{width:892.830000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:127.620000px;}
.x3_c00112{left:154.620720px;}
.x2_c00112{left:180.810000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.v1_c00112{vertical-align:14.080000pt;}
.v2_c00112{vertical-align:26.560000pt;}
.lse_c00112{letter-spacing:-0.134400pt;}
.ls16_c00112{letter-spacing:-0.076800pt;}
.ls12_c00112{letter-spacing:-0.051200pt;}
.ls17_c00112{letter-spacing:-0.032000pt;}
.ls15_c00112{letter-spacing:-0.025600pt;}
.ls1a_c00112{letter-spacing:-0.021280pt;}
.ls11_c00112{letter-spacing:-0.019200pt;}
.ls1b_c00112{letter-spacing:-0.013824pt;}
.ls13_c00112{letter-spacing:-0.012800pt;}
.lsf_c00112{letter-spacing:-0.006944pt;}
.ls10_c00112{letter-spacing:-0.006400pt;}
.ls1c_c00112{letter-spacing:-0.003456pt;}
.lsd_c00112{letter-spacing:0.000000pt;}
.ls4_c00112{letter-spacing:0.006400pt;}
.ls19_c00112{letter-spacing:0.008512pt;}
.ls9_c00112{letter-spacing:0.012768pt;}
.ls3_c00112{letter-spacing:0.012800pt;}
.ls18_c00112{letter-spacing:0.017024pt;}
.ls6_c00112{letter-spacing:0.019200pt;}
.lsa_c00112{letter-spacing:0.021280pt;}
.lsb_c00112{letter-spacing:0.025536pt;}
.lsc_c00112{letter-spacing:0.029792pt;}
.ls7_c00112{letter-spacing:0.042560pt;}
.ls0_c00112{letter-spacing:0.042752pt;}
.ls5_c00112{letter-spacing:0.048672pt;}
.ls8_c00112{letter-spacing:0.055328pt;}
.ls14_c00112{letter-spacing:0.083200pt;}
.ls2_c00112{letter-spacing:52.357760pt;}
.ls1_c00112{letter-spacing:1090.880000pt;}
.ws0_c00112{word-spacing:-17.353056pt;}
.ws2_c00112{word-spacing:-15.974400pt;}
.ws4_c00112{word-spacing:-11.831680pt;}
.ws3_c00112{word-spacing:-9.607680pt;}
.ws5_c00112{word-spacing:-9.604224pt;}
.ws1_c00112{word-spacing:-9.408672pt;}
.ws17_c00112{word-spacing:-0.083200pt;}
.ws8_c00112{word-spacing:-0.076384pt;}
.ws2e_c00112{word-spacing:-0.038304pt;}
.ws2d_c00112{word-spacing:-0.025536pt;}
.ws33_c00112{word-spacing:-0.012768pt;}
.ws30_c00112{word-spacing:-0.004256pt;}
.ws7_c00112{word-spacing:0.000000pt;}
.ws2f_c00112{word-spacing:0.004256pt;}
.wse_c00112{word-spacing:0.006400pt;}
.ws15_c00112{word-spacing:0.012800pt;}
.ws16_c00112{word-spacing:0.019200pt;}
.ws6_c00112{word-spacing:0.037408pt;}
.ws32_c00112{word-spacing:0.038304pt;}
.ws31_c00112{word-spacing:0.949088pt;}
.ws2a_c00112{word-spacing:2.560000pt;}
.ws29_c00112{word-spacing:2.630400pt;}
.ws1f_c00112{word-spacing:2.854400pt;}
.ws1e_c00112{word-spacing:2.892800pt;}
.ws1c_c00112{word-spacing:3.820800pt;}
.ws1d_c00112{word-spacing:3.916800pt;}
.ws1b_c00112{word-spacing:4.012800pt;}
.wsb_c00112{word-spacing:4.089600pt;}
.wsa_c00112{word-spacing:4.160000pt;}
.ws27_c00112{word-spacing:4.179200pt;}
.ws22_c00112{word-spacing:5.747200pt;}
.ws21_c00112{word-spacing:5.811200pt;}
.ws2b_c00112{word-spacing:7.680000pt;}
.ws2c_c00112{word-spacing:7.756800pt;}
.ws18_c00112{word-spacing:8.051200pt;}
.ws19_c00112{word-spacing:8.115200pt;}
.ws20_c00112{word-spacing:8.652800pt;}
.wsc_c00112{word-spacing:9.286400pt;}
.wsd_c00112{word-spacing:9.299200pt;}
.ws12_c00112{word-spacing:12.473600pt;}
.ws10_c00112{word-spacing:12.505600pt;}
.ws11_c00112{word-spacing:12.550400pt;}
.ws1a_c00112{word-spacing:14.713600pt;}
.ws9_c00112{word-spacing:14.720000pt;}
.wsf_c00112{word-spacing:15.379200pt;}
.ws25_c00112{word-spacing:15.993600pt;}
.ws26_c00112{word-spacing:16.000000pt;}
.ws24_c00112{word-spacing:16.121600pt;}
.ws28_c00112{word-spacing:17.312000pt;}
.ws13_c00112{word-spacing:19.136000pt;}
.ws14_c00112{word-spacing:19.251200pt;}
.ws23_c00112{word-spacing:25.920000pt;}
._0_c00112{margin-left:-1.175680pt;}
._1_c00112{width:0.960000pt;}
.fs6_c00112{font-size:34.560000pt;}
.fs4_c00112{font-size:37.440000pt;}
.fs5_c00112{font-size:42.560000pt;}
.fs1_c00112{font-size:48.000000pt;}
.fs0_c00112{font-size:53.440000pt;}
.fs2_c00112{font-size:64.000000pt;}
.fs3_c00112{font-size:69.440000pt;}
.y0_c00112{bottom:0.000000pt;}
.y3_c00112{bottom:51.067067pt;}
.y23_c00112{bottom:101.069307pt;}
.y22_c00112{bottom:117.391067pt;}
.y21_c00112{bottom:129.632027pt;}
.y20_c00112{bottom:145.868667pt;}
.y1f_c00112{bottom:162.190427pt;}
.y1e_c00112{bottom:178.427067pt;}
.y1d_c00112{bottom:191.947067pt;}
.y1c_c00112{bottom:210.347067pt;}
.y1b_c00112{bottom:228.747067pt;}
.y1a_c00112{bottom:298.587067pt;}
.y19_c00112{bottom:329.227067pt;}
.y18_c00112{bottom:367.787067pt;}
.y17_c00112{bottom:398.427067pt;}
.y16_c00112{bottom:428.987067pt;}
.y15_c00112{bottom:459.627067pt;}
.y14_c00112{bottom:490.187067pt;}
.y13_c00112{bottom:520.827067pt;}
.y12_c00112{bottom:551.387067pt;}
.y11_c00112{bottom:582.027067pt;}
.y10_c00112{bottom:620.587067pt;}
.yf_c00112{bottom:651.227200pt;}
.ye_c00112{bottom:681.787200pt;}
.yd_c00112{bottom:712.427200pt;}
.yc_c00112{bottom:750.987067pt;}
.yb_c00112{bottom:781.627067pt;}
.ya_c00112{bottom:812.187067pt;}
.y9_c00112{bottom:842.827067pt;}
.y8_c00112{bottom:881.387067pt;}
.y7_c00112{bottom:912.027067pt;}
.y6_c00112{bottom:942.587067pt;}
.y5_c00112{bottom:973.227067pt;}
.y4_c00112{bottom:1013.227067pt;}
.y2_c00112{bottom:1046.987067pt;}
.y1_c00112{bottom:1063.867067pt;}
.h8_c00112{height:42.656250pt;}
.h9_c00112{height:44.388750pt;}
.h1_c00112{height:44.724687pt;}
.h2_c00112{height:50.062500pt;}
.h5_c00112{height:53.562500pt;}
.h7_c00112{height:57.893529pt;}
.h6_c00112{height:57.894063pt;}
.h3_c00112{height:64.142500pt;}
.h4_c00112{height:72.423750pt;}
.h0_c00112{height:1122.666667pt;}
.w1_c00112{width:793.333333pt;}
.w0_c00112{width:793.626667pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:113.440000pt;}
.x3_c00112{left:137.440640pt;}
.x2_c00112{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_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_32d29797da4fe0af3fbd8788.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00113;src:url('chunks/assets/font_262522ea38f0c949d49863f8.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00113;src:url('chunks/assets/font_afbe0e3fab27d4a7506ead03.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00113;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00113{font-family:ff5_c00113;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_c00113;src:url('chunks/assets/font_700cd85ce5433bba800d76e7.woff2')format("woff");}.ff6_c00113{font-family:ff6_c00113;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_c00113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.v1_c00113{vertical-align:29.880000px;}
.ls12_c00113{letter-spacing:-0.151200px;}
.ls18_c00113{letter-spacing:-0.050400px;}
.ls10_c00113{letter-spacing:-0.048096px;}
.ls1a_c00113{letter-spacing:-0.046872px;}
.ls16_c00113{letter-spacing:-0.036000px;}
.ls13_c00113{letter-spacing:-0.021600px;}
.lsf_c00113{letter-spacing:-0.018036px;}
.ls1c_c00113{letter-spacing:-0.015552px;}
.ls15_c00113{letter-spacing:-0.014400px;}
.ls19_c00113{letter-spacing:-0.007812px;}
.ls17_c00113{letter-spacing:-0.007200px;}
.ls1d_c00113{letter-spacing:-0.003888px;}
.ls11_c00113{letter-spacing:0.000000px;}
.ls2_c00113{letter-spacing:0.007200px;}
.ls8_c00113{letter-spacing:0.014364px;}
.ls3_c00113{letter-spacing:0.014400px;}
.ls5_c00113{letter-spacing:0.015624px;}
.ls1e_c00113{letter-spacing:0.019152px;}
.lse_c00113{letter-spacing:0.028728px;}
.ls6_c00113{letter-spacing:0.028800px;}
.lsd_c00113{letter-spacing:0.033516px;}
.ls0_c00113{letter-spacing:0.036072px;}
.lsa_c00113{letter-spacing:0.038304px;}
.ls9_c00113{letter-spacing:0.043092px;}
.lsb_c00113{letter-spacing:0.047880px;}
.ls1b_c00113{letter-spacing:0.050400px;}
.ls7_c00113{letter-spacing:0.052668px;}
.ls1_c00113{letter-spacing:0.054756px;}
.lsc_c00113{letter-spacing:0.062244px;}
.ls14_c00113{letter-spacing:0.093600px;}
.ls4_c00113{letter-spacing:58.902480px;}
.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;}
}
.ws4_c00113{word-spacing:-19.545624px;}
.ws3_c00113{word-spacing:-19.522188px;}
.ws5_c00113{word-spacing:-19.483128px;}
.ws1_c00113{word-spacing:-18.014400px;}
.ws6_c00113{word-spacing:-17.985600px;}
.ws2_c00113{word-spacing:-17.949600px;}
.ws7_c00113{word-spacing:-13.310640px;}
.ws9_c00113{word-spacing:-10.808640px;}
.ws8_c00113{word-spacing:-10.804752px;}
.ws0_c00113{word-spacing:-10.584756px;}
.ws10_c00113{word-spacing:-0.086400px;}
.ws2e_c00113{word-spacing:-0.043092px;}
.ws29_c00113{word-spacing:-0.033516px;}
.ws2d_c00113{word-spacing:-0.028728px;}
.ws2b_c00113{word-spacing:-0.023940px;}
.ws2c_c00113{word-spacing:-0.019152px;}
.ws2f_c00113{word-spacing:-0.014364px;}
.ws30_c00113{word-spacing:-0.009576px;}
.wsd_c00113{word-spacing:0.000000px;}
.ws2a_c00113{word-spacing:0.004788px;}
.ws15_c00113{word-spacing:0.007200px;}
.wsa_c00113{word-spacing:0.054108px;}
.wsf_c00113{word-spacing:0.079200px;}
.wsb_c00113{word-spacing:0.108216px;}
.wsc_c00113{word-spacing:0.138276px;}
.ws12_c00113{word-spacing:1.094400px;}
.ws27_c00113{word-spacing:2.152800px;}
.ws19_c00113{word-spacing:2.167200px;}
.ws28_c00113{word-spacing:2.174400px;}
.ws16_c00113{word-spacing:2.534400px;}
.ws14_c00113{word-spacing:4.334400px;}
.ws13_c00113{word-spacing:4.356000px;}
.ws1a_c00113{word-spacing:4.363200px;}
.ws23_c00113{word-spacing:6.746400px;}
.ws24_c00113{word-spacing:6.811200px;}
.ws25_c00113{word-spacing:7.927200px;}
.ws26_c00113{word-spacing:7.970400px;}
.ws20_c00113{word-spacing:8.949600px;}
.ws1f_c00113{word-spacing:9.043200px;}
.ws11_c00113{word-spacing:9.374400px;}
.ws1c_c00113{word-spacing:10.065600px;}
.ws18_c00113{word-spacing:12.175200px;}
.ws17_c00113{word-spacing:12.261600px;}
.wse_c00113{word-spacing:14.061600px;}
.ws21_c00113{word-spacing:16.545600px;}
.ws22_c00113{word-spacing:16.581600px;}
.ws1d_c00113{word-spacing:23.407200px;}
.ws1e_c00113{word-spacing:23.479200px;}
.ws1b_c00113{word-spacing:25.574400px;}
._0_c00113{margin-left:-1.142280px;}
._1_c00113{width:1.296000px;}
.fc0_c00113{color:rgb(0,0,0);}
.fs6_c00113{font-size:38.880000px;}
.fs3_c00113{font-size:42.120000px;}
.fs5_c00113{font-size:47.880000px;}
.fs2_c00113{font-size:54.000000px;}
.fs0_c00113{font-size:60.120000px;}
.fs1_c00113{font-size:72.000000px;}
.fs4_c00113{font-size:78.120000px;}
.y0_c00113{bottom:0.000000px;}
.y3_c00113{bottom:57.450450px;}
.y4_c00113{bottom:61.410450px;}
.y25_c00113{bottom:113.704200px;}
.y24_c00113{bottom:132.066180px;}
.y23_c00113{bottom:150.332400px;}
.y22_c00113{bottom:168.598620px;}
.y21_c00113{bottom:186.964230px;}
.y20_c00113{bottom:205.234230px;}
.y1f_c00113{bottom:223.500450px;}
.y1e_c00113{bottom:238.710450px;}
.y1d_c00113{bottom:259.410450px;}
.y1c_c00113{bottom:280.110450px;}
.y1b_c00113{bottom:308.910450px;}
.y1a_c00113{bottom:343.380450px;}
.y19_c00113{bottom:377.760450px;}
.y18_c00113{bottom:421.230450px;}
.y17_c00113{bottom:455.610450px;}
.y16_c00113{bottom:490.080450px;}
.y15_c00113{bottom:533.460450px;}
.y14_c00113{bottom:567.930450px;}
.y13_c00113{bottom:602.310450px;}
.y12_c00113{bottom:636.780450px;}
.y11_c00113{bottom:681.780450px;}
.y10_c00113{bottom:744.510450px;}
.yf_c00113{bottom:778.890450px;}
.ye_c00113{bottom:813.360450px;}
.yd_c00113{bottom:847.740450px;}
.yc_c00113{bottom:882.210450px;}
.yb_c00113{bottom:916.590450px;}
.ya_c00113{bottom:960.060450px;}
.y9_c00113{bottom:994.440450px;}
.y8_c00113{bottom:1028.910450px;}
.y7_c00113{bottom:1063.290450px;}
.y6_c00113{bottom:1106.760450px;}
.y5_c00113{bottom:1141.140450px;}
.y2_c00113{bottom:1173.810450px;}
.y1_c00113{bottom:1196.850450px;}
.h2_c00113{height:47.988281px;}
.h8_c00113{height:49.937344px;}
.h1_c00113{height:50.315273px;}
.h3_c00113{height:56.320312px;}
.h4_c00113{height:60.257812px;}
.h5_c00113{height:65.130820px;}
.h6_c00113{height:65.131420px;}
.h7_c00113{height:81.476719px;}
.h0_c00113{height:1263.000000px;}
.w1_c00113{width:892.500000px;}
.w0_c00113{width:892.830000px;}
.x0_c00113{left:0.000000px;}
.x2_c00113{left:127.620000px;}
.x1_c00113{left:145.440000px;}
.x5_c00113{left:180.810000px;}
.x4_c00113{left:439.020000px;}
.x3_c00113{left:446.490000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.v1_c00113{vertical-align:26.560000pt;}
.ls12_c00113{letter-spacing:-0.134400pt;}
.ls18_c00113{letter-spacing:-0.044800pt;}
.ls10_c00113{letter-spacing:-0.042752pt;}
.ls1a_c00113{letter-spacing:-0.041664pt;}
.ls16_c00113{letter-spacing:-0.032000pt;}
.ls13_c00113{letter-spacing:-0.019200pt;}
.lsf_c00113{letter-spacing:-0.016032pt;}
.ls1c_c00113{letter-spacing:-0.013824pt;}
.ls15_c00113{letter-spacing:-0.012800pt;}
.ls19_c00113{letter-spacing:-0.006944pt;}
.ls17_c00113{letter-spacing:-0.006400pt;}
.ls1d_c00113{letter-spacing:-0.003456pt;}
.ls11_c00113{letter-spacing:0.000000pt;}
.ls2_c00113{letter-spacing:0.006400pt;}
.ls8_c00113{letter-spacing:0.012768pt;}
.ls3_c00113{letter-spacing:0.012800pt;}
.ls5_c00113{letter-spacing:0.013888pt;}
.ls1e_c00113{letter-spacing:0.017024pt;}
.lse_c00113{letter-spacing:0.025536pt;}
.ls6_c00113{letter-spacing:0.025600pt;}
.lsd_c00113{letter-spacing:0.029792pt;}
.ls0_c00113{letter-spacing:0.032064pt;}
.lsa_c00113{letter-spacing:0.034048pt;}
.ls9_c00113{letter-spacing:0.038304pt;}
.lsb_c00113{letter-spacing:0.042560pt;}
.ls1b_c00113{letter-spacing:0.044800pt;}
.ls7_c00113{letter-spacing:0.046816pt;}
.ls1_c00113{letter-spacing:0.048672pt;}
.lsc_c00113{letter-spacing:0.055328pt;}
.ls14_c00113{letter-spacing:0.083200pt;}
.ls4_c00113{letter-spacing:52.357760pt;}
.ws4_c00113{word-spacing:-17.373888pt;}
.ws3_c00113{word-spacing:-17.353056pt;}
.ws5_c00113{word-spacing:-17.318336pt;}
.ws1_c00113{word-spacing:-16.012800pt;}
.ws6_c00113{word-spacing:-15.987200pt;}
.ws2_c00113{word-spacing:-15.955200pt;}
.ws7_c00113{word-spacing:-11.831680pt;}
.ws9_c00113{word-spacing:-9.607680pt;}
.ws8_c00113{word-spacing:-9.604224pt;}
.ws0_c00113{word-spacing:-9.408672pt;}
.ws10_c00113{word-spacing:-0.076800pt;}
.ws2e_c00113{word-spacing:-0.038304pt;}
.ws29_c00113{word-spacing:-0.029792pt;}
.ws2d_c00113{word-spacing:-0.025536pt;}
.ws2b_c00113{word-spacing:-0.021280pt;}
.ws2c_c00113{word-spacing:-0.017024pt;}
.ws2f_c00113{word-spacing:-0.012768pt;}
.ws30_c00113{word-spacing:-0.008512pt;}
.wsd_c00113{word-spacing:0.000000pt;}
.ws2a_c00113{word-spacing:0.004256pt;}
.ws15_c00113{word-spacing:0.006400pt;}
.wsa_c00113{word-spacing:0.048096pt;}
.wsf_c00113{word-spacing:0.070400pt;}
.wsb_c00113{word-spacing:0.096192pt;}
.wsc_c00113{word-spacing:0.122912pt;}
.ws12_c00113{word-spacing:0.972800pt;}
.ws27_c00113{word-spacing:1.913600pt;}
.ws19_c00113{word-spacing:1.926400pt;}
.ws28_c00113{word-spacing:1.932800pt;}
.ws16_c00113{word-spacing:2.252800pt;}
.ws14_c00113{word-spacing:3.852800pt;}
.ws13_c00113{word-spacing:3.872000pt;}
.ws1a_c00113{word-spacing:3.878400pt;}
.ws23_c00113{word-spacing:5.996800pt;}
.ws24_c00113{word-spacing:6.054400pt;}
.ws25_c00113{word-spacing:7.046400pt;}
.ws26_c00113{word-spacing:7.084800pt;}
.ws20_c00113{word-spacing:7.955200pt;}
.ws1f_c00113{word-spacing:8.038400pt;}
.ws11_c00113{word-spacing:8.332800pt;}
.ws1c_c00113{word-spacing:8.947200pt;}
.ws18_c00113{word-spacing:10.822400pt;}
.ws17_c00113{word-spacing:10.899200pt;}
.wse_c00113{word-spacing:12.499200pt;}
.ws21_c00113{word-spacing:14.707200pt;}
.ws22_c00113{word-spacing:14.739200pt;}
.ws1d_c00113{word-spacing:20.806400pt;}
.ws1e_c00113{word-spacing:20.870400pt;}
.ws1b_c00113{word-spacing:22.732800pt;}
._0_c00113{margin-left:-1.015360pt;}
._1_c00113{width:1.152000pt;}
.fs6_c00113{font-size:34.560000pt;}
.fs3_c00113{font-size:37.440000pt;}
.fs5_c00113{font-size:42.560000pt;}
.fs2_c00113{font-size:48.000000pt;}
.fs0_c00113{font-size:53.440000pt;}
.fs1_c00113{font-size:64.000000pt;}
.fs4_c00113{font-size:69.440000pt;}
.y0_c00113{bottom:0.000000pt;}
.y3_c00113{bottom:51.067067pt;}
.y4_c00113{bottom:54.587067pt;}
.y25_c00113{bottom:101.070400pt;}
.y24_c00113{bottom:117.392160pt;}
.y23_c00113{bottom:133.628800pt;}
.y22_c00113{bottom:149.865440pt;}
.y21_c00113{bottom:166.190427pt;}
.y20_c00113{bottom:182.430427pt;}
.y1f_c00113{bottom:198.667067pt;}
.y1e_c00113{bottom:212.187067pt;}
.y1d_c00113{bottom:230.587067pt;}
.y1c_c00113{bottom:248.987067pt;}
.y1b_c00113{bottom:274.587067pt;}
.y1a_c00113{bottom:305.227067pt;}
.y19_c00113{bottom:335.787067pt;}
.y18_c00113{bottom:374.427067pt;}
.y17_c00113{bottom:404.987067pt;}
.y16_c00113{bottom:435.627067pt;}
.y15_c00113{bottom:474.187067pt;}
.y14_c00113{bottom:504.827067pt;}
.y13_c00113{bottom:535.387067pt;}
.y12_c00113{bottom:566.027067pt;}
.y11_c00113{bottom:606.027067pt;}
.y10_c00113{bottom:661.787067pt;}
.yf_c00113{bottom:692.347067pt;}
.ye_c00113{bottom:722.987067pt;}
.yd_c00113{bottom:753.547067pt;}
.yc_c00113{bottom:784.187067pt;}
.yb_c00113{bottom:814.747067pt;}
.ya_c00113{bottom:853.387067pt;}
.y9_c00113{bottom:883.947067pt;}
.y8_c00113{bottom:914.587067pt;}
.y7_c00113{bottom:945.147067pt;}
.y6_c00113{bottom:983.787067pt;}
.y5_c00113{bottom:1014.347067pt;}
.y2_c00113{bottom:1043.387067pt;}
.y1_c00113{bottom:1063.867067pt;}
.h2_c00113{height:42.656250pt;}
.h8_c00113{height:44.388750pt;}
.h1_c00113{height:44.724687pt;}
.h3_c00113{height:50.062500pt;}
.h4_c00113{height:53.562500pt;}
.h5_c00113{height:57.894063pt;}
.h6_c00113{height:57.894596pt;}
.h7_c00113{height:72.423750pt;}
.h0_c00113{height:1122.666667pt;}
.w1_c00113{width:793.333333pt;}
.w0_c00113{width:793.626667pt;}
.x0_c00113{left:0.000000pt;}
.x2_c00113{left:113.440000pt;}
.x1_c00113{left:129.280000pt;}
.x5_c00113{left:160.720000pt;}
.x4_c00113{left:390.240000pt;}
.x3_c00113{left:396.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_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_ee996c7022a654511b4a492d.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.100098;font-style:normal;font-weight:normal;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_262522ea38f0c949d49863f8.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;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_c00114;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_2f077903031a935c38b4a02e.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00114;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;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_c00114;src:url('chunks/assets/font_02b54628afd4e24183a88e96.woff2')format("woff");}.ff6_c00114{font-family:ff6_c00114;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_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;}
.v1_c00114{vertical-align:15.840000px;}
.v2_c00114{vertical-align:29.880000px;}
.ls13_c00114{letter-spacing:-0.151200px;}
.ls17_c00114{letter-spacing:-0.093744px;}
.ls1d_c00114{letter-spacing:-0.079200px;}
.ls16_c00114{letter-spacing:-0.054684px;}
.ls1a_c00114{letter-spacing:-0.036000px;}
.ls1b_c00114{letter-spacing:-0.023436px;}
.ls18_c00114{letter-spacing:-0.021600px;}
.ls1c_c00114{letter-spacing:-0.015624px;}
.ls1f_c00114{letter-spacing:-0.015552px;}
.ls19_c00114{letter-spacing:-0.014400px;}
.ls14_c00114{letter-spacing:-0.007200px;}
.ls20_c00114{letter-spacing:-0.003888px;}
.ls12_c00114{letter-spacing:0.000000px;}
.ls6_c00114{letter-spacing:0.007200px;}
.ls4_c00114{letter-spacing:0.007812px;}
.lse_c00114{letter-spacing:0.014364px;}
.ls2_c00114{letter-spacing:0.014400px;}
.ls1e_c00114{letter-spacing:0.019152px;}
.lsb_c00114{letter-spacing:0.021600px;}
.ls7_c00114{letter-spacing:0.028800px;}
.ls11_c00114{letter-spacing:0.033516px;}
.lsa_c00114{letter-spacing:0.036000px;}
.ls10_c00114{letter-spacing:0.038304px;}
.ls9_c00114{letter-spacing:0.039060px;}
.lsf_c00114{letter-spacing:0.043092px;}
.lsc_c00114{letter-spacing:0.047880px;}
.ls0_c00114{letter-spacing:0.048096px;}
.ls3_c00114{letter-spacing:0.054756px;}
.lsd_c00114{letter-spacing:0.062244px;}
.ls15_c00114{letter-spacing:0.093600px;}
.ls5_c00114{letter-spacing:23.670360px;}
.ls8_c00114{letter-spacing:58.902480px;}
.ls1_c00114{letter-spacing:1227.240000px;}
.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;}
}
.ws3_c00114{word-spacing:-19.569060px;}
.ws1_c00114{word-spacing:-19.537812px;}
.ws4_c00114{word-spacing:-19.514376px;}
.ws2_c00114{word-spacing:-19.506564px;}
.ws6_c00114{word-spacing:-18.000000px;}
.ws5_c00114{word-spacing:-17.978400px;}
.ws7_c00114{word-spacing:-13.310640px;}
.ws9_c00114{word-spacing:-10.808640px;}
.ws8_c00114{word-spacing:-10.804752px;}
.ws0_c00114{word-spacing:-10.584756px;}
.ws2a_c00114{word-spacing:-0.359100px;}
.ws1d_c00114{word-spacing:-0.086400px;}
.ws29_c00114{word-spacing:-0.043092px;}
.wse_c00114{word-spacing:-0.039060px;}
.ws28_c00114{word-spacing:-0.028728px;}
.ws2c_c00114{word-spacing:-0.023940px;}
.ws26_c00114{word-spacing:-0.021600px;}
.ws2d_c00114{word-spacing:-0.019152px;}
.ws20_c00114{word-spacing:-0.007200px;}
.wsb_c00114{word-spacing:0.000000px;}
.ws2b_c00114{word-spacing:0.004788px;}
.wsd_c00114{word-spacing:0.007200px;}
.ws13_c00114{word-spacing:0.014400px;}
.ws27_c00114{word-spacing:0.021600px;}
.wsa_c00114{word-spacing:0.042084px;}
.ws1a_c00114{word-spacing:1.418400px;}
.ws19_c00114{word-spacing:1.447200px;}
.ws15_c00114{word-spacing:2.498400px;}
.ws14_c00114{word-spacing:2.613600px;}
.ws1f_c00114{word-spacing:4.694400px;}
.ws11_c00114{word-spacing:5.731200px;}
.ws10_c00114{word-spacing:5.803200px;}
.ws18_c00114{word-spacing:6.472800px;}
.ws17_c00114{word-spacing:7.185600px;}
.ws16_c00114{word-spacing:7.236000px;}
.ws12_c00114{word-spacing:7.581600px;}
.wsf_c00114{word-spacing:8.280000px;}
.wsc_c00114{word-spacing:10.425600px;}
.ws21_c00114{word-spacing:19.411200px;}
.ws22_c00114{word-spacing:19.497600px;}
.ws1e_c00114{word-spacing:24.487200px;}
.ws1b_c00114{word-spacing:26.640000px;}
.ws1c_c00114{word-spacing:26.733600px;}
.ws24_c00114{word-spacing:29.124000px;}
.ws23_c00114{word-spacing:29.181600px;}
.ws25_c00114{word-spacing:29.239200px;}
._0_c00114{margin-left:-1.322640px;}
._1_c00114{width:1.008000px;}
.fc0_c00114{color:rgb(0,0,0);}
.fs6_c00114{font-size:38.880000px;}
.fs3_c00114{font-size:42.120000px;}
.fs5_c00114{font-size:47.880000px;}
.fs1_c00114{font-size:54.000000px;}
.fs0_c00114{font-size:60.120000px;}
.fs2_c00114{font-size:72.000000px;}
.fs4_c00114{font-size:78.120000px;}
.y0_c00114{bottom:0.000000px;}
.y3_c00114{bottom:57.450450px;}
.y21_c00114{bottom:113.698470px;}
.y20_c00114{bottom:132.064230px;}
.y1f_c00114{bottom:150.334230px;}
.y1e_c00114{bottom:168.598620px;}
.y1d_c00114{bottom:186.960600px;}
.y1c_c00114{bottom:202.170450px;}
.y1b_c00114{bottom:222.870450px;}
.y1a_c00114{bottom:243.570450px;}
.y19_c00114{bottom:304.500450px;}
.y18_c00114{bottom:338.970450px;}
.y17_c00114{bottom:373.350450px;}
.y16_c00114{bottom:416.820450px;}
.y15_c00114{bottom:451.200450px;}
.y14_c00114{bottom:485.670450px;}
.y13_c00114{bottom:529.050450px;}
.y12_c00114{bottom:563.520450px;}
.y11_c00114{bottom:597.900450px;}
.y10_c00114{bottom:642.900450px;}
.yf_c00114{bottom:705.630450px;}
.ye_c00114{bottom:740.010450px;}
.yd_c00114{bottom:783.480450px;}
.yc_c00114{bottom:817.860450px;}
.yb_c00114{bottom:852.330450px;}
.ya_c00114{bottom:895.710450px;}
.y9_c00114{bottom:930.180450px;}
.y8_c00114{bottom:964.560450px;}
.y7_c00114{bottom:999.030450px;}
.y6_c00114{bottom:1044.030450px;}
.y5_c00114{bottom:1106.760450px;}
.y4_c00114{bottom:1141.140450px;}
.y2_c00114{bottom:1177.860450px;}
.y1_c00114{bottom:1196.850450px;}
.h7_c00114{height:47.988281px;}
.h8_c00114{height:49.937344px;}
.h9_c00114{height:49.944664px;}
.h1_c00114{height:50.315273px;}
.h2_c00114{height:56.320312px;}
.h4_c00114{height:60.257812px;}
.h5_c00114{height:65.130820px;}
.h3_c00114{height:72.160312px;}
.h6_c00114{height:81.476719px;}
.h0_c00114{height:1263.000000px;}
.w1_c00114{width:892.500000px;}
.w0_c00114{width:892.830000px;}
.x0_c00114{left:0.000000px;}
.x1_c00114{left:127.620000px;}
.x2_c00114{left:180.810000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.v1_c00114{vertical-align:14.080000pt;}
.v2_c00114{vertical-align:26.560000pt;}
.ls13_c00114{letter-spacing:-0.134400pt;}
.ls17_c00114{letter-spacing:-0.083328pt;}
.ls1d_c00114{letter-spacing:-0.070400pt;}
.ls16_c00114{letter-spacing:-0.048608pt;}
.ls1a_c00114{letter-spacing:-0.032000pt;}
.ls1b_c00114{letter-spacing:-0.020832pt;}
.ls18_c00114{letter-spacing:-0.019200pt;}
.ls1c_c00114{letter-spacing:-0.013888pt;}
.ls1f_c00114{letter-spacing:-0.013824pt;}
.ls19_c00114{letter-spacing:-0.012800pt;}
.ls14_c00114{letter-spacing:-0.006400pt;}
.ls20_c00114{letter-spacing:-0.003456pt;}
.ls12_c00114{letter-spacing:0.000000pt;}
.ls6_c00114{letter-spacing:0.006400pt;}
.ls4_c00114{letter-spacing:0.006944pt;}
.lse_c00114{letter-spacing:0.012768pt;}
.ls2_c00114{letter-spacing:0.012800pt;}
.ls1e_c00114{letter-spacing:0.017024pt;}
.lsb_c00114{letter-spacing:0.019200pt;}
.ls7_c00114{letter-spacing:0.025600pt;}
.ls11_c00114{letter-spacing:0.029792pt;}
.lsa_c00114{letter-spacing:0.032000pt;}
.ls10_c00114{letter-spacing:0.034048pt;}
.ls9_c00114{letter-spacing:0.034720pt;}
.lsf_c00114{letter-spacing:0.038304pt;}
.lsc_c00114{letter-spacing:0.042560pt;}
.ls0_c00114{letter-spacing:0.042752pt;}
.ls3_c00114{letter-spacing:0.048672pt;}
.lsd_c00114{letter-spacing:0.055328pt;}
.ls15_c00114{letter-spacing:0.083200pt;}
.ls5_c00114{letter-spacing:21.040320pt;}
.ls8_c00114{letter-spacing:52.357760pt;}
.ls1_c00114{letter-spacing:1090.880000pt;}
.ws3_c00114{word-spacing:-17.394720pt;}
.ws1_c00114{word-spacing:-17.366944pt;}
.ws4_c00114{word-spacing:-17.346112pt;}
.ws2_c00114{word-spacing:-17.339168pt;}
.ws6_c00114{word-spacing:-16.000000pt;}
.ws5_c00114{word-spacing:-15.980800pt;}
.ws7_c00114{word-spacing:-11.831680pt;}
.ws9_c00114{word-spacing:-9.607680pt;}
.ws8_c00114{word-spacing:-9.604224pt;}
.ws0_c00114{word-spacing:-9.408672pt;}
.ws2a_c00114{word-spacing:-0.319200pt;}
.ws1d_c00114{word-spacing:-0.076800pt;}
.ws29_c00114{word-spacing:-0.038304pt;}
.wse_c00114{word-spacing:-0.034720pt;}
.ws28_c00114{word-spacing:-0.025536pt;}
.ws2c_c00114{word-spacing:-0.021280pt;}
.ws26_c00114{word-spacing:-0.019200pt;}
.ws2d_c00114{word-spacing:-0.017024pt;}
.ws20_c00114{word-spacing:-0.006400pt;}
.wsb_c00114{word-spacing:0.000000pt;}
.ws2b_c00114{word-spacing:0.004256pt;}
.wsd_c00114{word-spacing:0.006400pt;}
.ws13_c00114{word-spacing:0.012800pt;}
.ws27_c00114{word-spacing:0.019200pt;}
.wsa_c00114{word-spacing:0.037408pt;}
.ws1a_c00114{word-spacing:1.260800pt;}
.ws19_c00114{word-spacing:1.286400pt;}
.ws15_c00114{word-spacing:2.220800pt;}
.ws14_c00114{word-spacing:2.323200pt;}
.ws1f_c00114{word-spacing:4.172800pt;}
.ws11_c00114{word-spacing:5.094400pt;}
.ws10_c00114{word-spacing:5.158400pt;}
.ws18_c00114{word-spacing:5.753600pt;}
.ws17_c00114{word-spacing:6.387200pt;}
.ws16_c00114{word-spacing:6.432000pt;}
.ws12_c00114{word-spacing:6.739200pt;}
.wsf_c00114{word-spacing:7.360000pt;}
.wsc_c00114{word-spacing:9.267200pt;}
.ws21_c00114{word-spacing:17.254400pt;}
.ws22_c00114{word-spacing:17.331200pt;}
.ws1e_c00114{word-spacing:21.766400pt;}
.ws1b_c00114{word-spacing:23.680000pt;}
.ws1c_c00114{word-spacing:23.763200pt;}
.ws24_c00114{word-spacing:25.888000pt;}
.ws23_c00114{word-spacing:25.939200pt;}
.ws25_c00114{word-spacing:25.990400pt;}
._0_c00114{margin-left:-1.175680pt;}
._1_c00114{width:0.896000pt;}
.fs6_c00114{font-size:34.560000pt;}
.fs3_c00114{font-size:37.440000pt;}
.fs5_c00114{font-size:42.560000pt;}
.fs1_c00114{font-size:48.000000pt;}
.fs0_c00114{font-size:53.440000pt;}
.fs2_c00114{font-size:64.000000pt;}
.fs4_c00114{font-size:69.440000pt;}
.y0_c00114{bottom:0.000000pt;}
.y3_c00114{bottom:51.067067pt;}
.y21_c00114{bottom:101.065307pt;}
.y20_c00114{bottom:117.390427pt;}
.y1f_c00114{bottom:133.630427pt;}
.y1e_c00114{bottom:149.865440pt;}
.y1d_c00114{bottom:166.187200pt;}
.y1c_c00114{bottom:179.707067pt;}
.y1b_c00114{bottom:198.107067pt;}
.y1a_c00114{bottom:216.507067pt;}
.y19_c00114{bottom:270.667067pt;}
.y18_c00114{bottom:301.307067pt;}
.y17_c00114{bottom:331.867067pt;}
.y16_c00114{bottom:370.507067pt;}
.y15_c00114{bottom:401.067067pt;}
.y14_c00114{bottom:431.707067pt;}
.y13_c00114{bottom:470.267067pt;}
.y12_c00114{bottom:500.907067pt;}
.y11_c00114{bottom:531.467067pt;}
.y10_c00114{bottom:571.467067pt;}
.yf_c00114{bottom:627.227067pt;}
.ye_c00114{bottom:657.787067pt;}
.yd_c00114{bottom:696.427067pt;}
.yc_c00114{bottom:726.987067pt;}
.yb_c00114{bottom:757.627067pt;}
.ya_c00114{bottom:796.187067pt;}
.y9_c00114{bottom:826.827067pt;}
.y8_c00114{bottom:857.387067pt;}
.y7_c00114{bottom:888.027067pt;}
.y6_c00114{bottom:928.027067pt;}
.y5_c00114{bottom:983.787067pt;}
.y4_c00114{bottom:1014.347067pt;}
.y2_c00114{bottom:1046.987067pt;}
.y1_c00114{bottom:1063.867067pt;}
.h7_c00114{height:42.656250pt;}
.h8_c00114{height:44.388750pt;}
.h9_c00114{height:44.395257pt;}
.h1_c00114{height:44.724687pt;}
.h2_c00114{height:50.062500pt;}
.h4_c00114{height:53.562500pt;}
.h5_c00114{height:57.894063pt;}
.h3_c00114{height:64.142500pt;}
.h6_c00114{height:72.423750pt;}
.h0_c00114{height:1122.666667pt;}
.w1_c00114{width:793.333333pt;}
.w0_c00114{width:793.626667pt;}
.x0_c00114{left:0.000000pt;}
.x1_c00114{left:113.440000pt;}
.x2_c00114{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_c00115 {
    display:none;
  }
  .loading-indicator_c00115.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00115 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00115 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00115" -> "#page-container .classname_c00115")
 */
.pf_c00115 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00115 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00115 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00115 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00115 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00115 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00115 {overflow:visible;}
  }
}
.c_c00115 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00115 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00115:after { /* webkit #35443 */
  content: '';
}
.t_c00115:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00115 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00115 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00115 { /* info for Javascript */
  display:none;
}
.l_c00115 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00115 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00115 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00115:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00115;src:url('chunks/assets/font_42ff1508287ab95bf38e23be.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00115;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00115;src:url('chunks/assets/font_f67d3fe8cb9feeac72fec13e.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00115;src:url('chunks/assets/font_a073bf386358fc6e849867fd.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00115;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00115{font-family:ff5_c00115;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_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.v1_c00115{vertical-align:29.880000px;}
.ls12_c00115{letter-spacing:-0.151200px;}
.ls17_c00115{letter-spacing:-0.093744px;}
.ls1b_c00115{letter-spacing:-0.072000px;}
.ls10_c00115{letter-spacing:-0.048096px;}
.ls1a_c00115{letter-spacing:-0.036000px;}
.ls19_c00115{letter-spacing:-0.028800px;}
.ls16_c00115{letter-spacing:-0.023436px;}
.ls18_c00115{letter-spacing:-0.021600px;}
.lsf_c00115{letter-spacing:-0.018036px;}
.ls14_c00115{letter-spacing:-0.014400px;}
.ls13_c00115{letter-spacing:-0.007200px;}
.ls11_c00115{letter-spacing:0.000000px;}
.ls4_c00115{letter-spacing:0.007200px;}
.lsc_c00115{letter-spacing:0.014364px;}
.ls5_c00115{letter-spacing:0.015624px;}
.lsd_c00115{letter-spacing:0.028728px;}
.lse_c00115{letter-spacing:0.033516px;}
.ls0_c00115{letter-spacing:0.036072px;}
.ls9_c00115{letter-spacing:0.038304px;}
.ls3_c00115{letter-spacing:0.039060px;}
.lsa_c00115{letter-spacing:0.043092px;}
.ls6_c00115{letter-spacing:0.046872px;}
.ls8_c00115{letter-spacing:0.047880px;}
.ls1_c00115{letter-spacing:0.054756px;}
.ls7_c00115{letter-spacing:0.057456px;}
.lsb_c00115{letter-spacing:0.062244px;}
.ls1c_c00115{letter-spacing:0.086184px;}
.ls15_c00115{letter-spacing:0.093600px;}
.ls2_c00115{letter-spacing:53.121600px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00115{word-spacing:-19.576872px;}
.ws2_c00115{word-spacing:-19.569060px;}
.ws4_c00115{word-spacing:-19.545624px;}
.ws1_c00115{word-spacing:-19.530000px;}
.ws3_c00115{word-spacing:-19.506564px;}
.ws6_c00115{word-spacing:-10.808640px;}
.ws0_c00115{word-spacing:-10.584756px;}
.ws15_c00115{word-spacing:-0.093600px;}
.ws16_c00115{word-spacing:-0.086400px;}
.ws21_c00115{word-spacing:-0.067032px;}
.ws27_c00115{word-spacing:-0.043092px;}
.ws25_c00115{word-spacing:-0.038304px;}
.ws22_c00115{word-spacing:-0.028728px;}
.ws26_c00115{word-spacing:-0.023940px;}
.ws23_c00115{word-spacing:-0.019152px;}
.ws29_c00115{word-spacing:-0.009576px;}
.wsa_c00115{word-spacing:0.000000px;}
.ws28_c00115{word-spacing:0.004788px;}
.wsd_c00115{word-spacing:0.007200px;}
.ws1b_c00115{word-spacing:0.014400px;}
.wsf_c00115{word-spacing:0.036000px;}
.ws7_c00115{word-spacing:0.054108px;}
.ws8_c00115{word-spacing:0.108216px;}
.ws9_c00115{word-spacing:0.138276px;}
.wse_c00115{word-spacing:0.741600px;}
.ws1d_c00115{word-spacing:1.072800px;}
.ws17_c00115{word-spacing:1.101600px;}
.ws18_c00115{word-spacing:1.152000px;}
.ws1e_c00115{word-spacing:1.216800px;}
.ws24_c00115{word-spacing:6.080760px;}
.ws10_c00115{word-spacing:8.215200px;}
.ws1f_c00115{word-spacing:8.240148px;}
.ws20_c00115{word-spacing:8.249724px;}
.ws11_c00115{word-spacing:8.308800px;}
.wsb_c00115{word-spacing:11.167200px;}
.wsc_c00115{word-spacing:11.174400px;}
.ws14_c00115{word-spacing:12.240000px;}
.ws13_c00115{word-spacing:12.348000px;}
.ws1c_c00115{word-spacing:13.680000px;}
.ws1a_c00115{word-spacing:15.760800px;}
.ws19_c00115{word-spacing:15.847200px;}
.ws12_c00115{word-spacing:35.654400px;}
._2_c00115{margin-left:-4.680000px;}
._0_c00115{margin-left:-1.142280px;}
._1_c00115{width:1.080000px;}
.fc0_c00115{color:rgb(0,0,0);}
.fs6_c00115{font-size:38.880000px;}
.fs3_c00115{font-size:42.120000px;}
.fs5_c00115{font-size:47.880000px;}
.fs2_c00115{font-size:54.000000px;}
.fs0_c00115{font-size:60.120000px;}
.fs1_c00115{font-size:72.000000px;}
.fs4_c00115{font-size:78.120000px;}
.y0_c00115{bottom:0.000000px;}
.y3_c00115{bottom:57.450450px;}
.y4_c00115{bottom:61.410450px;}
.y26_c00115{bottom:113.698470px;}
.y25_c00115{bottom:132.064230px;}
.y24_c00115{bottom:150.332400px;}
.y23_c00115{bottom:168.598620px;}
.y22_c00115{bottom:186.964230px;}
.y21_c00115{bottom:205.234230px;}
.y20_c00115{bottom:223.516830px;}
.y1f_c00115{bottom:241.878810px;}
.y1e_c00115{bottom:260.145030px;}
.y1d_c00115{bottom:278.411250px;}
.y1c_c00115{bottom:292.272510px;}
.y1b_c00115{bottom:310.538730px;}
.y1a_c00115{bottom:328.804950px;}
.y19_c00115{bottom:342.570450px;}
.y18_c00115{bottom:357.780600px;}
.y17_c00115{bottom:378.480600px;}
.y16_c00115{bottom:399.180450px;}
.y15_c00115{bottom:485.670450px;}
.y14_c00115{bottom:520.050450px;}
.y13_c00115{bottom:554.520450px;}
.y12_c00115{bottom:599.520450px;}
.y11_c00115{bottom:662.160450px;}
.y10_c00115{bottom:696.630450px;}
.yf_c00115{bottom:740.010450px;}
.ye_c00115{bottom:774.480600px;}
.yd_c00115{bottom:817.860450px;}
.yc_c00115{bottom:852.330450px;}
.yb_c00115{bottom:886.710450px;}
.ya_c00115{bottom:921.180450px;}
.y9_c00115{bottom:964.560450px;}
.y8_c00115{bottom:999.030450px;}
.y7_c00115{bottom:1044.030450px;}
.y6_c00115{bottom:1106.760450px;}
.y5_c00115{bottom:1141.140450px;}
.y2_c00115{bottom:1173.810450px;}
.y1_c00115{bottom:1196.850450px;}
.h2_c00115{height:47.988281px;}
.h8_c00115{height:47.988881px;}
.h9_c00115{height:49.937344px;}
.ha_c00115{height:49.945264px;}
.h1_c00115{height:50.315273px;}
.h3_c00115{height:56.320312px;}
.h4_c00115{height:60.257812px;}
.h7_c00115{height:65.130220px;}
.h5_c00115{height:65.130820px;}
.h6_c00115{height:81.476719px;}
.h0_c00115{height:1263.000000px;}
.w1_c00115{width:892.500000px;}
.w0_c00115{width:892.830000px;}
.x0_c00115{left:0.000000px;}
.x2_c00115{left:127.620000px;}
.x1_c00115{left:145.440000px;}
.x6_c00115{left:154.612350px;}
.x5_c00115{left:180.810000px;}
.x4_c00115{left:439.020000px;}
.x3_c00115{left:446.490000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.v1_c00115{vertical-align:26.560000pt;}
.ls12_c00115{letter-spacing:-0.134400pt;}
.ls17_c00115{letter-spacing:-0.083328pt;}
.ls1b_c00115{letter-spacing:-0.064000pt;}
.ls10_c00115{letter-spacing:-0.042752pt;}
.ls1a_c00115{letter-spacing:-0.032000pt;}
.ls19_c00115{letter-spacing:-0.025600pt;}
.ls16_c00115{letter-spacing:-0.020832pt;}
.ls18_c00115{letter-spacing:-0.019200pt;}
.lsf_c00115{letter-spacing:-0.016032pt;}
.ls14_c00115{letter-spacing:-0.012800pt;}
.ls13_c00115{letter-spacing:-0.006400pt;}
.ls11_c00115{letter-spacing:0.000000pt;}
.ls4_c00115{letter-spacing:0.006400pt;}
.lsc_c00115{letter-spacing:0.012768pt;}
.ls5_c00115{letter-spacing:0.013888pt;}
.lsd_c00115{letter-spacing:0.025536pt;}
.lse_c00115{letter-spacing:0.029792pt;}
.ls0_c00115{letter-spacing:0.032064pt;}
.ls9_c00115{letter-spacing:0.034048pt;}
.ls3_c00115{letter-spacing:0.034720pt;}
.lsa_c00115{letter-spacing:0.038304pt;}
.ls6_c00115{letter-spacing:0.041664pt;}
.ls8_c00115{letter-spacing:0.042560pt;}
.ls1_c00115{letter-spacing:0.048672pt;}
.ls7_c00115{letter-spacing:0.051072pt;}
.lsb_c00115{letter-spacing:0.055328pt;}
.ls1c_c00115{letter-spacing:0.076608pt;}
.ls15_c00115{letter-spacing:0.083200pt;}
.ls2_c00115{letter-spacing:47.219200pt;}
.ws5_c00115{word-spacing:-17.401664pt;}
.ws2_c00115{word-spacing:-17.394720pt;}
.ws4_c00115{word-spacing:-17.373888pt;}
.ws1_c00115{word-spacing:-17.360000pt;}
.ws3_c00115{word-spacing:-17.339168pt;}
.ws6_c00115{word-spacing:-9.607680pt;}
.ws0_c00115{word-spacing:-9.408672pt;}
.ws15_c00115{word-spacing:-0.083200pt;}
.ws16_c00115{word-spacing:-0.076800pt;}
.ws21_c00115{word-spacing:-0.059584pt;}
.ws27_c00115{word-spacing:-0.038304pt;}
.ws25_c00115{word-spacing:-0.034048pt;}
.ws22_c00115{word-spacing:-0.025536pt;}
.ws26_c00115{word-spacing:-0.021280pt;}
.ws23_c00115{word-spacing:-0.017024pt;}
.ws29_c00115{word-spacing:-0.008512pt;}
.wsa_c00115{word-spacing:0.000000pt;}
.ws28_c00115{word-spacing:0.004256pt;}
.wsd_c00115{word-spacing:0.006400pt;}
.ws1b_c00115{word-spacing:0.012800pt;}
.wsf_c00115{word-spacing:0.032000pt;}
.ws7_c00115{word-spacing:0.048096pt;}
.ws8_c00115{word-spacing:0.096192pt;}
.ws9_c00115{word-spacing:0.122912pt;}
.wse_c00115{word-spacing:0.659200pt;}
.ws1d_c00115{word-spacing:0.953600pt;}
.ws17_c00115{word-spacing:0.979200pt;}
.ws18_c00115{word-spacing:1.024000pt;}
.ws1e_c00115{word-spacing:1.081600pt;}
.ws24_c00115{word-spacing:5.405120pt;}
.ws10_c00115{word-spacing:7.302400pt;}
.ws1f_c00115{word-spacing:7.324576pt;}
.ws20_c00115{word-spacing:7.333088pt;}
.ws11_c00115{word-spacing:7.385600pt;}
.wsb_c00115{word-spacing:9.926400pt;}
.wsc_c00115{word-spacing:9.932800pt;}
.ws14_c00115{word-spacing:10.880000pt;}
.ws13_c00115{word-spacing:10.976000pt;}
.ws1c_c00115{word-spacing:12.160000pt;}
.ws1a_c00115{word-spacing:14.009600pt;}
.ws19_c00115{word-spacing:14.086400pt;}
.ws12_c00115{word-spacing:31.692800pt;}
._2_c00115{margin-left:-4.160000pt;}
._0_c00115{margin-left:-1.015360pt;}
._1_c00115{width:0.960000pt;}
.fs6_c00115{font-size:34.560000pt;}
.fs3_c00115{font-size:37.440000pt;}
.fs5_c00115{font-size:42.560000pt;}
.fs2_c00115{font-size:48.000000pt;}
.fs0_c00115{font-size:53.440000pt;}
.fs1_c00115{font-size:64.000000pt;}
.fs4_c00115{font-size:69.440000pt;}
.y0_c00115{bottom:0.000000pt;}
.y3_c00115{bottom:51.067067pt;}
.y4_c00115{bottom:54.587067pt;}
.y26_c00115{bottom:101.065307pt;}
.y25_c00115{bottom:117.390427pt;}
.y24_c00115{bottom:133.628800pt;}
.y23_c00115{bottom:149.865440pt;}
.y22_c00115{bottom:166.190427pt;}
.y21_c00115{bottom:182.430427pt;}
.y20_c00115{bottom:198.681627pt;}
.y1f_c00115{bottom:215.003387pt;}
.y1e_c00115{bottom:231.240027pt;}
.y1d_c00115{bottom:247.476667pt;}
.y1c_c00115{bottom:259.797787pt;}
.y1b_c00115{bottom:276.034427pt;}
.y1a_c00115{bottom:292.271067pt;}
.y19_c00115{bottom:304.507067pt;}
.y18_c00115{bottom:318.027200pt;}
.y17_c00115{bottom:336.427200pt;}
.y16_c00115{bottom:354.827067pt;}
.y15_c00115{bottom:431.707067pt;}
.y14_c00115{bottom:462.267067pt;}
.y13_c00115{bottom:492.907067pt;}
.y12_c00115{bottom:532.907067pt;}
.y11_c00115{bottom:588.587067pt;}
.y10_c00115{bottom:619.227067pt;}
.yf_c00115{bottom:657.787067pt;}
.ye_c00115{bottom:688.427200pt;}
.yd_c00115{bottom:726.987067pt;}
.yc_c00115{bottom:757.627067pt;}
.yb_c00115{bottom:788.187067pt;}
.ya_c00115{bottom:818.827067pt;}
.y9_c00115{bottom:857.387067pt;}
.y8_c00115{bottom:888.027067pt;}
.y7_c00115{bottom:928.027067pt;}
.y6_c00115{bottom:983.787067pt;}
.y5_c00115{bottom:1014.347067pt;}
.y2_c00115{bottom:1043.387067pt;}
.y1_c00115{bottom:1063.867067pt;}
.h2_c00115{height:42.656250pt;}
.h8_c00115{height:42.656783pt;}
.h9_c00115{height:44.388750pt;}
.ha_c00115{height:44.395790pt;}
.h1_c00115{height:44.724687pt;}
.h3_c00115{height:50.062500pt;}
.h4_c00115{height:53.562500pt;}
.h7_c00115{height:57.893529pt;}
.h5_c00115{height:57.894063pt;}
.h6_c00115{height:72.423750pt;}
.h0_c00115{height:1122.666667pt;}
.w1_c00115{width:793.333333pt;}
.w0_c00115{width:793.626667pt;}
.x0_c00115{left:0.000000pt;}
.x2_c00115{left:113.440000pt;}
.x1_c00115{left:129.280000pt;}
.x6_c00115{left:137.433200pt;}
.x5_c00115{left:160.720000pt;}
.x4_c00115{left:390.240000pt;}
.x3_c00115{left:396.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_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_d7faddea0a45a2ab094f7f7f.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00116;src:url('chunks/assets/font_006539367bd2348762a3abe9.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;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_c00116;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00116;src:url('chunks/assets/font_01dcd36f7d3da382cf2b630d.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00116;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00116{font-family:ff5_c00116;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_c00116;src:url('chunks/assets/font_fdee3c189d237d48945ba7ea.woff2')format("woff");}.ff6_c00116{font-family:ff6_c00116;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00116;src:url('chunks/assets/font_e0998d9679414b2a792619ba.woff2')format("woff");}.ff7_c00116{font-family:ff7_c00116;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_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;}
.v1_c00116{vertical-align:15.840000px;}
.v2_c00116{vertical-align:29.880000px;}
.ls17_c00116{letter-spacing:-0.151200px;}
.ls1f_c00116{letter-spacing:-0.050400px;}
.ls1d_c00116{letter-spacing:-0.036000px;}
.ls1b_c00116{letter-spacing:-0.028800px;}
.ls20_c00116{letter-spacing:-0.023940px;}
.ls1c_c00116{letter-spacing:-0.021600px;}
.ls1e_c00116{letter-spacing:-0.015624px;}
.ls19_c00116{letter-spacing:-0.014400px;}
.ls18_c00116{letter-spacing:-0.007200px;}
.ls21_c00116{letter-spacing:-0.004788px;}
.ls16_c00116{letter-spacing:0.000000px;}
.ls8_c00116{letter-spacing:0.007200px;}
.ls13_c00116{letter-spacing:0.009576px;}
.lsa_c00116{letter-spacing:0.014364px;}
.ls7_c00116{letter-spacing:0.014400px;}
.ls5_c00116{letter-spacing:0.015624px;}
.ls15_c00116{letter-spacing:0.019152px;}
.ls6_c00116{letter-spacing:0.021600px;}
.ls10_c00116{letter-spacing:0.023940px;}
.lsc_c00116{letter-spacing:0.028728px;}
.ls3_c00116{letter-spacing:0.031248px;}
.lse_c00116{letter-spacing:0.033516px;}
.lsb_c00116{letter-spacing:0.038304px;}
.lsf_c00116{letter-spacing:0.043092px;}
.ls11_c00116{letter-spacing:0.047880px;}
.ls0_c00116{letter-spacing:0.048096px;}
.ls2_c00116{letter-spacing:0.054756px;}
.lsd_c00116{letter-spacing:0.062244px;}
.ls12_c00116{letter-spacing:0.067032px;}
.ls14_c00116{letter-spacing:0.071820px;}
.ls1a_c00116{letter-spacing:0.093600px;}
.ls9_c00116{letter-spacing:29.373120px;}
.ls4_c00116{letter-spacing:77.260680px;}
.ls1_c00116{letter-spacing:1227.240000px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00116{word-spacing:-19.561248px;}
.ws4_c00116{word-spacing:-19.545624px;}
.ws3_c00116{word-spacing:-19.514376px;}
.ws2_c00116{word-spacing:-17.985600px;}
.ws5_c00116{word-spacing:-17.949600px;}
.ws7_c00116{word-spacing:-13.353732px;}
.ws6_c00116{word-spacing:-10.808640px;}
.ws0_c00116{word-spacing:-10.584756px;}
.ws33_c00116{word-spacing:-0.363888px;}
.ws1d_c00116{word-spacing:-0.124992px;}
.wsd_c00116{word-spacing:-0.109368px;}
.ws32_c00116{word-spacing:-0.052668px;}
.ws2f_c00116{word-spacing:-0.047880px;}
.ws31_c00116{word-spacing:-0.023940px;}
.ws23_c00116{word-spacing:-0.019152px;}
.ws24_c00116{word-spacing:-0.009576px;}
.ws1c_c00116{word-spacing:-0.007200px;}
.ws9_c00116{word-spacing:0.000000px;}
.ws22_c00116{word-spacing:0.004788px;}
.wsc_c00116{word-spacing:0.007200px;}
.ws30_c00116{word-spacing:0.009576px;}
.ws28_c00116{word-spacing:0.023940px;}
.ws10_c00116{word-spacing:0.036000px;}
.ws8_c00116{word-spacing:0.042084px;}
.ws19_c00116{word-spacing:0.108000px;}
.ws14_c00116{word-spacing:0.669600px;}
.ws1e_c00116{word-spacing:0.720000px;}
.ws13_c00116{word-spacing:0.748800px;}
.ws16_c00116{word-spacing:2.102400px;}
.ws15_c00116{word-spacing:2.145600px;}
.ws26_c00116{word-spacing:2.475396px;}
.ws27_c00116{word-spacing:2.504124px;}
.ws25_c00116{word-spacing:2.523276px;}
.wsb_c00116{word-spacing:4.334400px;}
.ws2d_c00116{word-spacing:4.649148px;}
.ws2c_c00116{word-spacing:4.653936px;}
.ws2e_c00116{word-spacing:4.658724px;}
.wsf_c00116{word-spacing:4.716000px;}
.wse_c00116{word-spacing:4.737600px;}
.wsa_c00116{word-spacing:6.127200px;}
.ws1b_c00116{word-spacing:6.472800px;}
.ws2b_c00116{word-spacing:7.876260px;}
.ws29_c00116{word-spacing:7.909776px;}
.ws2a_c00116{word-spacing:7.914564px;}
.ws1a_c00116{word-spacing:7.920000px;}
.ws12_c00116{word-spacing:11.160000px;}
.ws20_c00116{word-spacing:14.392800px;}
.ws21_c00116{word-spacing:14.522400px;}
.ws1f_c00116{word-spacing:15.480000px;}
.ws11_c00116{word-spacing:15.487200px;}
.ws17_c00116{word-spacing:24.098400px;}
.ws18_c00116{word-spacing:24.177600px;}
._0_c00116{margin-left:-1.322640px;}
._1_c00116{width:1.174428px;}
.fc0_c00116{color:rgb(0,0,0);}
.fs6_c00116{font-size:38.880000px;}
.fs3_c00116{font-size:42.120000px;}
.fs5_c00116{font-size:47.880000px;}
.fs1_c00116{font-size:54.000000px;}
.fs0_c00116{font-size:60.120000px;}
.fs2_c00116{font-size:72.000000px;}
.fs4_c00116{font-size:78.120000px;}
.y0_c00116{bottom:0.000000px;}
.y3_c00116{bottom:57.450450px;}
.y21_c00116{bottom:113.706360px;}
.y20_c00116{bottom:127.567620px;}
.y1f_c00116{bottom:141.333120px;}
.y1e_c00116{bottom:159.599340px;}
.y1d_c00116{bottom:173.468010px;}
.y1c_c00116{bottom:191.734230px;}
.y1b_c00116{bottom:210.000450px;}
.y1a_c00116{bottom:225.210450px;}
.y19_c00116{bottom:245.910450px;}
.y18_c00116{bottom:266.610450px;}
.y17_c00116{bottom:391.350450px;}
.y16_c00116{bottom:425.820450px;}
.y15_c00116{bottom:460.200450px;}
.y14_c00116{bottom:494.670450px;}
.y13_c00116{bottom:539.670450px;}
.y12_c00116{bottom:602.310450px;}
.y11_c00116{bottom:636.780450px;}
.y10_c00116{bottom:671.160450px;}
.yf_c00116{bottom:714.630450px;}
.ye_c00116{bottom:749.010450px;}
.yd_c00116{bottom:783.480450px;}
.yc_c00116{bottom:817.860450px;}
.yb_c00116{bottom:852.330450px;}
.ya_c00116{bottom:886.710450px;}
.y9_c00116{bottom:930.180450px;}
.y8_c00116{bottom:964.560450px;}
.y7_c00116{bottom:1009.650450px;}
.y6_c00116{bottom:1072.290450px;}
.y5_c00116{bottom:1106.760450px;}
.y4_c00116{bottom:1141.140450px;}
.y2_c00116{bottom:1177.860450px;}
.y1_c00116{bottom:1196.850450px;}
.h8_c00116{height:47.988281px;}
.h9_c00116{height:49.937344px;}
.h1_c00116{height:50.315273px;}
.h2_c00116{height:56.320312px;}
.h4_c00116{height:60.257812px;}
.h7_c00116{height:60.890625px;}
.h5_c00116{height:65.130820px;}
.h3_c00116{height:72.160312px;}
.h6_c00116{height:81.476719px;}
.h0_c00116{height:1263.000000px;}
.w1_c00116{width:892.500000px;}
.w0_c00116{width:892.830000px;}
.x0_c00116{left:0.000000px;}
.x1_c00116{left:127.620000px;}
.x3_c00116{left:154.625040px;}
.x2_c00116{left:180.810000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.v1_c00116{vertical-align:14.080000pt;}
.v2_c00116{vertical-align:26.560000pt;}
.ls17_c00116{letter-spacing:-0.134400pt;}
.ls1f_c00116{letter-spacing:-0.044800pt;}
.ls1d_c00116{letter-spacing:-0.032000pt;}
.ls1b_c00116{letter-spacing:-0.025600pt;}
.ls20_c00116{letter-spacing:-0.021280pt;}
.ls1c_c00116{letter-spacing:-0.019200pt;}
.ls1e_c00116{letter-spacing:-0.013888pt;}
.ls19_c00116{letter-spacing:-0.012800pt;}
.ls18_c00116{letter-spacing:-0.006400pt;}
.ls21_c00116{letter-spacing:-0.004256pt;}
.ls16_c00116{letter-spacing:0.000000pt;}
.ls8_c00116{letter-spacing:0.006400pt;}
.ls13_c00116{letter-spacing:0.008512pt;}
.lsa_c00116{letter-spacing:0.012768pt;}
.ls7_c00116{letter-spacing:0.012800pt;}
.ls5_c00116{letter-spacing:0.013888pt;}
.ls15_c00116{letter-spacing:0.017024pt;}
.ls6_c00116{letter-spacing:0.019200pt;}
.ls10_c00116{letter-spacing:0.021280pt;}
.lsc_c00116{letter-spacing:0.025536pt;}
.ls3_c00116{letter-spacing:0.027776pt;}
.lse_c00116{letter-spacing:0.029792pt;}
.lsb_c00116{letter-spacing:0.034048pt;}
.lsf_c00116{letter-spacing:0.038304pt;}
.ls11_c00116{letter-spacing:0.042560pt;}
.ls0_c00116{letter-spacing:0.042752pt;}
.ls2_c00116{letter-spacing:0.048672pt;}
.lsd_c00116{letter-spacing:0.055328pt;}
.ls12_c00116{letter-spacing:0.059584pt;}
.ls14_c00116{letter-spacing:0.063840pt;}
.ls1a_c00116{letter-spacing:0.083200pt;}
.ls9_c00116{letter-spacing:26.109440pt;}
.ls4_c00116{letter-spacing:68.676160pt;}
.ls1_c00116{letter-spacing:1090.880000pt;}
.ws1_c00116{word-spacing:-17.387776pt;}
.ws4_c00116{word-spacing:-17.373888pt;}
.ws3_c00116{word-spacing:-17.346112pt;}
.ws2_c00116{word-spacing:-15.987200pt;}
.ws5_c00116{word-spacing:-15.955200pt;}
.ws7_c00116{word-spacing:-11.869984pt;}
.ws6_c00116{word-spacing:-9.607680pt;}
.ws0_c00116{word-spacing:-9.408672pt;}
.ws33_c00116{word-spacing:-0.323456pt;}
.ws1d_c00116{word-spacing:-0.111104pt;}
.wsd_c00116{word-spacing:-0.097216pt;}
.ws32_c00116{word-spacing:-0.046816pt;}
.ws2f_c00116{word-spacing:-0.042560pt;}
.ws31_c00116{word-spacing:-0.021280pt;}
.ws23_c00116{word-spacing:-0.017024pt;}
.ws24_c00116{word-spacing:-0.008512pt;}
.ws1c_c00116{word-spacing:-0.006400pt;}
.ws9_c00116{word-spacing:0.000000pt;}
.ws22_c00116{word-spacing:0.004256pt;}
.wsc_c00116{word-spacing:0.006400pt;}
.ws30_c00116{word-spacing:0.008512pt;}
.ws28_c00116{word-spacing:0.021280pt;}
.ws10_c00116{word-spacing:0.032000pt;}
.ws8_c00116{word-spacing:0.037408pt;}
.ws19_c00116{word-spacing:0.096000pt;}
.ws14_c00116{word-spacing:0.595200pt;}
.ws1e_c00116{word-spacing:0.640000pt;}
.ws13_c00116{word-spacing:0.665600pt;}
.ws16_c00116{word-spacing:1.868800pt;}
.ws15_c00116{word-spacing:1.907200pt;}
.ws26_c00116{word-spacing:2.200352pt;}
.ws27_c00116{word-spacing:2.225888pt;}
.ws25_c00116{word-spacing:2.242912pt;}
.wsb_c00116{word-spacing:3.852800pt;}
.ws2d_c00116{word-spacing:4.132576pt;}
.ws2c_c00116{word-spacing:4.136832pt;}
.ws2e_c00116{word-spacing:4.141088pt;}
.wsf_c00116{word-spacing:4.192000pt;}
.wse_c00116{word-spacing:4.211200pt;}
.wsa_c00116{word-spacing:5.446400pt;}
.ws1b_c00116{word-spacing:5.753600pt;}
.ws2b_c00116{word-spacing:7.001120pt;}
.ws29_c00116{word-spacing:7.030912pt;}
.ws2a_c00116{word-spacing:7.035168pt;}
.ws1a_c00116{word-spacing:7.040000pt;}
.ws12_c00116{word-spacing:9.920000pt;}
.ws20_c00116{word-spacing:12.793600pt;}
.ws21_c00116{word-spacing:12.908800pt;}
.ws1f_c00116{word-spacing:13.760000pt;}
.ws11_c00116{word-spacing:13.766400pt;}
.ws17_c00116{word-spacing:21.420800pt;}
.ws18_c00116{word-spacing:21.491200pt;}
._0_c00116{margin-left:-1.175680pt;}
._1_c00116{width:1.043936pt;}
.fs6_c00116{font-size:34.560000pt;}
.fs3_c00116{font-size:37.440000pt;}
.fs5_c00116{font-size:42.560000pt;}
.fs1_c00116{font-size:48.000000pt;}
.fs0_c00116{font-size:53.440000pt;}
.fs2_c00116{font-size:64.000000pt;}
.fs4_c00116{font-size:69.440000pt;}
.y0_c00116{bottom:0.000000pt;}
.y3_c00116{bottom:51.067067pt;}
.y21_c00116{bottom:101.072320pt;}
.y20_c00116{bottom:113.393440pt;}
.y1f_c00116{bottom:125.629440pt;}
.y1e_c00116{bottom:141.866080pt;}
.y1d_c00116{bottom:154.193787pt;}
.y1c_c00116{bottom:170.430427pt;}
.y1b_c00116{bottom:186.667067pt;}
.y1a_c00116{bottom:200.187067pt;}
.y19_c00116{bottom:218.587067pt;}
.y18_c00116{bottom:236.987067pt;}
.y17_c00116{bottom:347.867067pt;}
.y16_c00116{bottom:378.507067pt;}
.y15_c00116{bottom:409.067067pt;}
.y14_c00116{bottom:439.707067pt;}
.y13_c00116{bottom:479.707067pt;}
.y12_c00116{bottom:535.387067pt;}
.y11_c00116{bottom:566.027067pt;}
.y10_c00116{bottom:596.587067pt;}
.yf_c00116{bottom:635.227067pt;}
.ye_c00116{bottom:665.787067pt;}
.yd_c00116{bottom:696.427067pt;}
.yc_c00116{bottom:726.987067pt;}
.yb_c00116{bottom:757.627067pt;}
.ya_c00116{bottom:788.187067pt;}
.y9_c00116{bottom:826.827067pt;}
.y8_c00116{bottom:857.387067pt;}
.y7_c00116{bottom:897.467067pt;}
.y6_c00116{bottom:953.147067pt;}
.y5_c00116{bottom:983.787067pt;}
.y4_c00116{bottom:1014.347067pt;}
.y2_c00116{bottom:1046.987067pt;}
.y1_c00116{bottom:1063.867067pt;}
.h8_c00116{height:42.656250pt;}
.h9_c00116{height:44.388750pt;}
.h1_c00116{height:44.724687pt;}
.h2_c00116{height:50.062500pt;}
.h4_c00116{height:53.562500pt;}
.h7_c00116{height:54.125000pt;}
.h5_c00116{height:57.894062pt;}
.h3_c00116{height:64.142500pt;}
.h6_c00116{height:72.423750pt;}
.h0_c00116{height:1122.666667pt;}
.w1_c00116{width:793.333333pt;}
.w0_c00116{width:793.626667pt;}
.x0_c00116{left:0.000000pt;}
.x1_c00116{left:113.440000pt;}
.x3_c00116{left:137.444480pt;}
.x2_c00116{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_c00117 {
    display:none;
  }
  .loading-indicator_c00117.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00117 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00117 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00117" -> "#page-container .classname_c00117")
 */
.pf_c00117 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00117 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00117 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00117 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00117 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00117 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00117 {overflow:visible;}
  }
}
.c_c00117 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00117 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00117:after { /* webkit #35443 */
  content: '';
}
.t_c00117:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00117 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00117 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00117 { /* info for Javascript */
  display:none;
}
.l_c00117 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00117 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00117 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00117:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00117;src:url('chunks/assets/font_285bd802ae3b6d4207c9c07d.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00117;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00117;src:url('chunks/assets/font_406171a86bd103ff246143d3.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;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_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.v1_c00117{vertical-align:29.880000px;}
.lsd_c00117{letter-spacing:-0.151200px;}
.lsb_c00117{letter-spacing:-0.048096px;}
.lsf_c00117{letter-spacing:-0.043200px;}
.ls16_c00117{letter-spacing:-0.036000px;}
.ls12_c00117{letter-spacing:-0.028800px;}
.ls14_c00117{letter-spacing:-0.021600px;}
.lsa_c00117{letter-spacing:-0.018036px;}
.ls17_c00117{letter-spacing:-0.015552px;}
.ls13_c00117{letter-spacing:-0.014400px;}
.lse_c00117{letter-spacing:-0.007200px;}
.ls18_c00117{letter-spacing:-0.003888px;}
.lsc_c00117{letter-spacing:0.000000px;}
.ls4_c00117{letter-spacing:0.007200px;}
.ls8_c00117{letter-spacing:0.014364px;}
.ls6_c00117{letter-spacing:0.014400px;}
.ls11_c00117{letter-spacing:0.021600px;}
.ls5_c00117{letter-spacing:0.028800px;}
.ls0_c00117{letter-spacing:0.036072px;}
.ls9_c00117{letter-spacing:0.043092px;}
.ls3_c00117{letter-spacing:0.054756px;}
.ls10_c00117{letter-spacing:0.093600px;}
.ls1_c00117{letter-spacing:0.144000px;}
.ls15_c00117{letter-spacing:10.440000px;}
.ls7_c00117{letter-spacing:65.304000px;}
.ls2_c00117{letter-spacing:66.024000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00117{word-spacing:-13.310640px;}
.ws3_c00117{word-spacing:-10.808640px;}
.ws2_c00117{word-spacing:-10.804752px;}
.ws0_c00117{word-spacing:-10.584756px;}
.ws1f_c00117{word-spacing:-0.093600px;}
.wsc_c00117{word-spacing:-0.086400px;}
.ws29_c00117{word-spacing:-0.023940px;}
.ws7_c00117{word-spacing:0.000000px;}
.ws28_c00117{word-spacing:0.004788px;}
.wsb_c00117{word-spacing:0.007200px;}
.ws4_c00117{word-spacing:0.054108px;}
.ws1e_c00117{word-spacing:0.064800px;}
.ws21_c00117{word-spacing:0.079200px;}
.ws5_c00117{word-spacing:0.108216px;}
.ws6_c00117{word-spacing:0.138276px;}
.ws11_c00117{word-spacing:0.669600px;}
.ws10_c00117{word-spacing:0.748800px;}
.ws16_c00117{word-spacing:1.785600px;}
.wsa_c00117{word-spacing:1.836000px;}
.ws17_c00117{word-spacing:1.951200px;}
.ws15_c00117{word-spacing:3.931200px;}
.ws14_c00117{word-spacing:4.017600px;}
.ws1c_c00117{word-spacing:6.343200px;}
.ws1b_c00117{word-spacing:6.480000px;}
.ws8_c00117{word-spacing:7.804800px;}
.ws9_c00117{word-spacing:7.963200px;}
.ws27_c00117{word-spacing:10.087200px;}
.ws25_c00117{word-spacing:10.764000px;}
.ws26_c00117{word-spacing:10.792800px;}
.ws20_c00117{word-spacing:11.210400px;}
.ws19_c00117{word-spacing:11.599200px;}
.ws18_c00117{word-spacing:11.606400px;}
.ws22_c00117{word-spacing:12.672000px;}
.ws23_c00117{word-spacing:12.751200px;}
.wsd_c00117{word-spacing:13.716000px;}
.wse_c00117{word-spacing:19.432800px;}
.wsf_c00117{word-spacing:19.476000px;}
.ws24_c00117{word-spacing:20.124000px;}
.ws1d_c00117{word-spacing:22.320000px;}
.ws1a_c00117{word-spacing:23.385600px;}
.ws12_c00117{word-spacing:26.251200px;}
.ws13_c00117{word-spacing:26.330400px;}
._3_c00117{margin-left:-11.448000px;}
._2_c00117{margin-left:-10.440000px;}
._4_c00117{margin-left:-9.288000px;}
._0_c00117{margin-left:-1.142280px;}
._1_c00117{width:1.224000px;}
.fc0_c00117{color:rgb(0,0,0);}
.fs5_c00117{font-size:38.880000px;}
.fs3_c00117{font-size:42.120000px;}
.fs4_c00117{font-size:47.880000px;}
.fs2_c00117{font-size:54.000000px;}
.fs0_c00117{font-size:60.120000px;}
.fs1_c00117{font-size:72.000000px;}
.y0_c00117{bottom:0.000000px;}
.y3_c00117{bottom:57.450450px;}
.y4_c00117{bottom:61.410450px;}
.y24_c00117{bottom:113.698470px;}
.y23_c00117{bottom:132.064230px;}
.y22_c00117{bottom:150.334230px;}
.y21_c00117{bottom:168.598620px;}
.y20_c00117{bottom:186.960600px;}
.y1f_c00117{bottom:202.170450px;}
.y1e_c00117{bottom:222.870450px;}
.y1d_c00117{bottom:243.570450px;}
.y1c_c00117{bottom:295.410450px;}
.y1b_c00117{bottom:329.790450px;}
.y1a_c00117{bottom:373.260450px;}
.y19_c00117{bottom:407.640450px;}
.y18_c00117{bottom:442.110450px;}
.y17_c00117{bottom:485.490450px;}
.y16_c00117{bottom:519.960450px;}
.y15_c00117{bottom:563.340600px;}
.y14_c00117{bottom:597.810600px;}
.y13_c00117{bottom:632.190600px;}
.y12_c00117{bottom:666.660600px;}
.y11_c00117{bottom:701.040600px;}
.y10_c00117{bottom:735.510600px;}
.yf_c00117{bottom:769.890600px;}
.ye_c00117{bottom:813.360450px;}
.yd_c00117{bottom:847.740450px;}
.yc_c00117{bottom:882.210450px;}
.yb_c00117{bottom:916.590450px;}
.ya_c00117{bottom:951.060450px;}
.y9_c00117{bottom:994.440450px;}
.y8_c00117{bottom:1028.910450px;}
.y7_c00117{bottom:1072.290450px;}
.y6_c00117{bottom:1106.760450px;}
.y5_c00117{bottom:1141.140450px;}
.y2_c00117{bottom:1173.810450px;}
.y1_c00117{bottom:1196.850450px;}
.h2_c00117{height:47.988281px;}
.h9_c00117{height:49.937344px;}
.ha_c00117{height:49.944664px;}
.hb_c00117{height:49.945264px;}
.h1_c00117{height:50.315273px;}
.h3_c00117{height:56.320312px;}
.h5_c00117{height:60.257812px;}
.h7_c00117{height:65.130220px;}
.h6_c00117{height:65.130820px;}
.h8_c00117{height:65.131420px;}
.h4_c00117{height:75.093750px;}
.h0_c00117{height:1263.000000px;}
.w1_c00117{width:892.500000px;}
.w0_c00117{width:892.830000px;}
.x0_c00117{left:0.000000px;}
.x2_c00117{left:127.620000px;}
.x1_c00117{left:145.440000px;}
.x5_c00117{left:154.440000px;}
.x6_c00117{left:181.170000px;}
.x7_c00117{left:207.000000px;}
.x4_c00117{left:439.020000px;}
.x3_c00117{left:446.490000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.v1_c00117{vertical-align:26.560000pt;}
.lsd_c00117{letter-spacing:-0.134400pt;}
.lsb_c00117{letter-spacing:-0.042752pt;}
.lsf_c00117{letter-spacing:-0.038400pt;}
.ls16_c00117{letter-spacing:-0.032000pt;}
.ls12_c00117{letter-spacing:-0.025600pt;}
.ls14_c00117{letter-spacing:-0.019200pt;}
.lsa_c00117{letter-spacing:-0.016032pt;}
.ls17_c00117{letter-spacing:-0.013824pt;}
.ls13_c00117{letter-spacing:-0.012800pt;}
.lse_c00117{letter-spacing:-0.006400pt;}
.ls18_c00117{letter-spacing:-0.003456pt;}
.lsc_c00117{letter-spacing:0.000000pt;}
.ls4_c00117{letter-spacing:0.006400pt;}
.ls8_c00117{letter-spacing:0.012768pt;}
.ls6_c00117{letter-spacing:0.012800pt;}
.ls11_c00117{letter-spacing:0.019200pt;}
.ls5_c00117{letter-spacing:0.025600pt;}
.ls0_c00117{letter-spacing:0.032064pt;}
.ls9_c00117{letter-spacing:0.038304pt;}
.ls3_c00117{letter-spacing:0.048672pt;}
.ls10_c00117{letter-spacing:0.083200pt;}
.ls1_c00117{letter-spacing:0.128000pt;}
.ls15_c00117{letter-spacing:9.280000pt;}
.ls7_c00117{letter-spacing:58.048000pt;}
.ls2_c00117{letter-spacing:58.688000pt;}
.ws1_c00117{word-spacing:-11.831680pt;}
.ws3_c00117{word-spacing:-9.607680pt;}
.ws2_c00117{word-spacing:-9.604224pt;}
.ws0_c00117{word-spacing:-9.408672pt;}
.ws1f_c00117{word-spacing:-0.083200pt;}
.wsc_c00117{word-spacing:-0.076800pt;}
.ws29_c00117{word-spacing:-0.021280pt;}
.ws7_c00117{word-spacing:0.000000pt;}
.ws28_c00117{word-spacing:0.004256pt;}
.wsb_c00117{word-spacing:0.006400pt;}
.ws4_c00117{word-spacing:0.048096pt;}
.ws1e_c00117{word-spacing:0.057600pt;}
.ws21_c00117{word-spacing:0.070400pt;}
.ws5_c00117{word-spacing:0.096192pt;}
.ws6_c00117{word-spacing:0.122912pt;}
.ws11_c00117{word-spacing:0.595200pt;}
.ws10_c00117{word-spacing:0.665600pt;}
.ws16_c00117{word-spacing:1.587200pt;}
.wsa_c00117{word-spacing:1.632000pt;}
.ws17_c00117{word-spacing:1.734400pt;}
.ws15_c00117{word-spacing:3.494400pt;}
.ws14_c00117{word-spacing:3.571200pt;}
.ws1c_c00117{word-spacing:5.638400pt;}
.ws1b_c00117{word-spacing:5.760000pt;}
.ws8_c00117{word-spacing:6.937600pt;}
.ws9_c00117{word-spacing:7.078400pt;}
.ws27_c00117{word-spacing:8.966400pt;}
.ws25_c00117{word-spacing:9.568000pt;}
.ws26_c00117{word-spacing:9.593600pt;}
.ws20_c00117{word-spacing:9.964800pt;}
.ws19_c00117{word-spacing:10.310400pt;}
.ws18_c00117{word-spacing:10.316800pt;}
.ws22_c00117{word-spacing:11.264000pt;}
.ws23_c00117{word-spacing:11.334400pt;}
.wsd_c00117{word-spacing:12.192000pt;}
.wse_c00117{word-spacing:17.273600pt;}
.wsf_c00117{word-spacing:17.312000pt;}
.ws24_c00117{word-spacing:17.888000pt;}
.ws1d_c00117{word-spacing:19.840000pt;}
.ws1a_c00117{word-spacing:20.787200pt;}
.ws12_c00117{word-spacing:23.334400pt;}
.ws13_c00117{word-spacing:23.404800pt;}
._3_c00117{margin-left:-10.176000pt;}
._2_c00117{margin-left:-9.280000pt;}
._4_c00117{margin-left:-8.256000pt;}
._0_c00117{margin-left:-1.015360pt;}
._1_c00117{width:1.088000pt;}
.fs5_c00117{font-size:34.560000pt;}
.fs3_c00117{font-size:37.440000pt;}
.fs4_c00117{font-size:42.560000pt;}
.fs2_c00117{font-size:48.000000pt;}
.fs0_c00117{font-size:53.440000pt;}
.fs1_c00117{font-size:64.000000pt;}
.y0_c00117{bottom:0.000000pt;}
.y3_c00117{bottom:51.067067pt;}
.y4_c00117{bottom:54.587067pt;}
.y24_c00117{bottom:101.065307pt;}
.y23_c00117{bottom:117.390427pt;}
.y22_c00117{bottom:133.630427pt;}
.y21_c00117{bottom:149.865440pt;}
.y20_c00117{bottom:166.187200pt;}
.y1f_c00117{bottom:179.707067pt;}
.y1e_c00117{bottom:198.107067pt;}
.y1d_c00117{bottom:216.507067pt;}
.y1c_c00117{bottom:262.587067pt;}
.y1b_c00117{bottom:293.147067pt;}
.y1a_c00117{bottom:331.787067pt;}
.y19_c00117{bottom:362.347067pt;}
.y18_c00117{bottom:392.987067pt;}
.y17_c00117{bottom:431.547067pt;}
.y16_c00117{bottom:462.187067pt;}
.y15_c00117{bottom:500.747200pt;}
.y14_c00117{bottom:531.387200pt;}
.y13_c00117{bottom:561.947200pt;}
.y12_c00117{bottom:592.587200pt;}
.y11_c00117{bottom:623.147200pt;}
.y10_c00117{bottom:653.787200pt;}
.yf_c00117{bottom:684.347200pt;}
.ye_c00117{bottom:722.987067pt;}
.yd_c00117{bottom:753.547067pt;}
.yc_c00117{bottom:784.187067pt;}
.yb_c00117{bottom:814.747067pt;}
.ya_c00117{bottom:845.387067pt;}
.y9_c00117{bottom:883.947067pt;}
.y8_c00117{bottom:914.587067pt;}
.y7_c00117{bottom:953.147067pt;}
.y6_c00117{bottom:983.787067pt;}
.y5_c00117{bottom:1014.347067pt;}
.y2_c00117{bottom:1043.387067pt;}
.y1_c00117{bottom:1063.867067pt;}
.h2_c00117{height:42.656250pt;}
.h9_c00117{height:44.388750pt;}
.ha_c00117{height:44.395257pt;}
.hb_c00117{height:44.395790pt;}
.h1_c00117{height:44.724687pt;}
.h3_c00117{height:50.062500pt;}
.h5_c00117{height:53.562500pt;}
.h7_c00117{height:57.893529pt;}
.h6_c00117{height:57.894062pt;}
.h8_c00117{height:57.894596pt;}
.h4_c00117{height:66.750000pt;}
.h0_c00117{height:1122.666667pt;}
.w1_c00117{width:793.333333pt;}
.w0_c00117{width:793.626667pt;}
.x0_c00117{left:0.000000pt;}
.x2_c00117{left:113.440000pt;}
.x1_c00117{left:129.280000pt;}
.x5_c00117{left:137.280000pt;}
.x6_c00117{left:161.040000pt;}
.x7_c00117{left:184.000000pt;}
.x4_c00117{left:390.240000pt;}
.x3_c00117{left:396.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_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_503861e0e415c11a2306e152.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.100098;font-style:normal;font-weight:normal;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_9869e26a780071f42fe987d0.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;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_c00118;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.v1_c00118{vertical-align:15.840000px;}
.v2_c00118{vertical-align:29.880000px;}
.lsb_c00118{letter-spacing:-0.151200px;}
.ls12_c00118{letter-spacing:-0.043200px;}
.ls13_c00118{letter-spacing:-0.036000px;}
.lsf_c00118{letter-spacing:-0.028800px;}
.ls11_c00118{letter-spacing:-0.021600px;}
.ls15_c00118{letter-spacing:-0.015552px;}
.ls10_c00118{letter-spacing:-0.014400px;}
.lsc_c00118{letter-spacing:-0.007200px;}
.ls16_c00118{letter-spacing:-0.003888px;}
.lsa_c00118{letter-spacing:0.000000px;}
.ls4_c00118{letter-spacing:0.007200px;}
.ls8_c00118{letter-spacing:0.014364px;}
.ls3_c00118{letter-spacing:0.014400px;}
.ls14_c00118{letter-spacing:0.021600px;}
.lse_c00118{letter-spacing:0.028800px;}
.ls7_c00118{letter-spacing:0.036000px;}
.ls9_c00118{letter-spacing:0.043092px;}
.ls0_c00118{letter-spacing:0.048096px;}
.ls2_c00118{letter-spacing:0.054756px;}
.lsd_c00118{letter-spacing:0.093600px;}
.ls5_c00118{letter-spacing:0.144000px;}
.ls6_c00118{letter-spacing:65.304000px;}
.ls1_c00118{letter-spacing:1227.240000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00118{word-spacing:-18.036000px;}
.ws2_c00118{word-spacing:-13.310640px;}
.ws4_c00118{word-spacing:-10.808640px;}
.ws3_c00118{word-spacing:-10.804752px;}
.ws0_c00118{word-spacing:-10.584756px;}
.wsb_c00118{word-spacing:-0.086400px;}
.ws2c_c00118{word-spacing:-0.023940px;}
.ws6_c00118{word-spacing:0.000000px;}
.ws2b_c00118{word-spacing:0.004788px;}
.wsa_c00118{word-spacing:0.007200px;}
.ws5_c00118{word-spacing:0.042084px;}
.ws13_c00118{word-spacing:0.057600px;}
.ws2a_c00118{word-spacing:1.101600px;}
.ws25_c00118{word-spacing:1.130400px;}
.ws27_c00118{word-spacing:1.821600px;}
.ws9_c00118{word-spacing:1.857600px;}
.ws8_c00118{word-spacing:1.922400px;}
.ws18_c00118{word-spacing:2.822400px;}
.ws19_c00118{word-spacing:2.872800px;}
.ws16_c00118{word-spacing:4.341600px;}
.ws15_c00118{word-spacing:4.363200px;}
.ws1f_c00118{word-spacing:4.953600px;}
.ws1e_c00118{word-spacing:5.061600px;}
.wsc_c00118{word-spacing:6.156000px;}
.wse_c00118{word-spacing:6.465600px;}
.wsd_c00118{word-spacing:6.480000px;}
.ws17_c00118{word-spacing:7.567200px;}
.ws11_c00118{word-spacing:7.855200px;}
.ws12_c00118{word-spacing:7.948800px;}
.wsf_c00118{word-spacing:9.993600px;}
.ws10_c00118{word-spacing:10.051200px;}
.ws14_c00118{word-spacing:10.101600px;}
.ws1d_c00118{word-spacing:11.160000px;}
.ws1c_c00118{word-spacing:11.210400px;}
.ws28_c00118{word-spacing:11.865600px;}
.ws29_c00118{word-spacing:11.916000px;}
.ws24_c00118{word-spacing:12.600000px;}
.ws1a_c00118{word-spacing:15.134400px;}
.ws1b_c00118{word-spacing:15.177600px;}
.ws20_c00118{word-spacing:19.886400px;}
.ws21_c00118{word-spacing:19.951200px;}
.ws7_c00118{word-spacing:20.887200px;}
.ws26_c00118{word-spacing:24.868800px;}
.ws23_c00118{word-spacing:47.786400px;}
.ws22_c00118{word-spacing:47.887200px;}
._0_c00118{margin-left:-1.322640px;}
._1_c00118{width:1.080000px;}
.fc0_c00118{color:rgb(0,0,0);}
.fs5_c00118{font-size:38.880000px;}
.fs3_c00118{font-size:42.120000px;}
.fs4_c00118{font-size:47.880000px;}
.fs1_c00118{font-size:54.000000px;}
.fs0_c00118{font-size:60.120000px;}
.fs2_c00118{font-size:72.000000px;}
.y0_c00118{bottom:0.000000px;}
.y3_c00118{bottom:57.450450px;}
.y23_c00118{bottom:113.698470px;}
.y22_c00118{bottom:132.064230px;}
.y21_c00118{bottom:150.334230px;}
.y20_c00118{bottom:168.600450px;}
.y1f_c00118{bottom:183.810600px;}
.y1e_c00118{bottom:204.510600px;}
.y1d_c00118{bottom:225.210450px;}
.y1c_c00118{bottom:278.940450px;}
.y1b_c00118{bottom:313.410450px;}
.y1a_c00118{bottom:347.790450px;}
.y19_c00118{bottom:391.260450px;}
.y18_c00118{bottom:425.640450px;}
.y17_c00118{bottom:460.110450px;}
.y16_c00118{bottom:494.490450px;}
.y15_c00118{bottom:528.960450px;}
.y14_c00118{bottom:563.340450px;}
.y13_c00118{bottom:597.810450px;}
.y12_c00118{bottom:632.190450px;}
.y11_c00118{bottom:675.660450px;}
.y10_c00118{bottom:710.040450px;}
.yf_c00118{bottom:744.510450px;}
.ye_c00118{bottom:778.890450px;}
.yd_c00118{bottom:813.360450px;}
.yc_c00118{bottom:847.740450px;}
.yb_c00118{bottom:891.210450px;}
.ya_c00118{bottom:925.590450px;}
.y9_c00118{bottom:960.060450px;}
.y8_c00118{bottom:994.440450px;}
.y7_c00118{bottom:1028.910450px;}
.y6_c00118{bottom:1072.290450px;}
.y5_c00118{bottom:1106.760450px;}
.y4_c00118{bottom:1141.140450px;}
.y2_c00118{bottom:1177.860450px;}
.y1_c00118{bottom:1196.850450px;}
.h8_c00118{height:47.988281px;}
.h7_c00118{height:47.988881px;}
.h9_c00118{height:49.937344px;}
.ha_c00118{height:49.945264px;}
.h1_c00118{height:50.315273px;}
.h2_c00118{height:56.320312px;}
.h4_c00118{height:60.257812px;}
.h5_c00118{height:65.130820px;}
.h3_c00118{height:72.160312px;}
.h6_c00118{height:75.093750px;}
.h0_c00118{height:1263.000000px;}
.w1_c00118{width:892.500000px;}
.w0_c00118{width:892.830000px;}
.x0_c00118{left:0.000000px;}
.x1_c00118{left:127.620000px;}
.x4_c00118{left:154.620000px;}
.x2_c00118{left:180.720000px;}
.x3_c00118{left:206.910000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.v1_c00118{vertical-align:14.080000pt;}
.v2_c00118{vertical-align:26.560000pt;}
.lsb_c00118{letter-spacing:-0.134400pt;}
.ls12_c00118{letter-spacing:-0.038400pt;}
.ls13_c00118{letter-spacing:-0.032000pt;}
.lsf_c00118{letter-spacing:-0.025600pt;}
.ls11_c00118{letter-spacing:-0.019200pt;}
.ls15_c00118{letter-spacing:-0.013824pt;}
.ls10_c00118{letter-spacing:-0.012800pt;}
.lsc_c00118{letter-spacing:-0.006400pt;}
.ls16_c00118{letter-spacing:-0.003456pt;}
.lsa_c00118{letter-spacing:0.000000pt;}
.ls4_c00118{letter-spacing:0.006400pt;}
.ls8_c00118{letter-spacing:0.012768pt;}
.ls3_c00118{letter-spacing:0.012800pt;}
.ls14_c00118{letter-spacing:0.019200pt;}
.lse_c00118{letter-spacing:0.025600pt;}
.ls7_c00118{letter-spacing:0.032000pt;}
.ls9_c00118{letter-spacing:0.038304pt;}
.ls0_c00118{letter-spacing:0.042752pt;}
.ls2_c00118{letter-spacing:0.048672pt;}
.lsd_c00118{letter-spacing:0.083200pt;}
.ls5_c00118{letter-spacing:0.128000pt;}
.ls6_c00118{letter-spacing:58.048000pt;}
.ls1_c00118{letter-spacing:1090.880000pt;}
.ws1_c00118{word-spacing:-16.032000pt;}
.ws2_c00118{word-spacing:-11.831680pt;}
.ws4_c00118{word-spacing:-9.607680pt;}
.ws3_c00118{word-spacing:-9.604224pt;}
.ws0_c00118{word-spacing:-9.408672pt;}
.wsb_c00118{word-spacing:-0.076800pt;}
.ws2c_c00118{word-spacing:-0.021280pt;}
.ws6_c00118{word-spacing:0.000000pt;}
.ws2b_c00118{word-spacing:0.004256pt;}
.wsa_c00118{word-spacing:0.006400pt;}
.ws5_c00118{word-spacing:0.037408pt;}
.ws13_c00118{word-spacing:0.051200pt;}
.ws2a_c00118{word-spacing:0.979200pt;}
.ws25_c00118{word-spacing:1.004800pt;}
.ws27_c00118{word-spacing:1.619200pt;}
.ws9_c00118{word-spacing:1.651200pt;}
.ws8_c00118{word-spacing:1.708800pt;}
.ws18_c00118{word-spacing:2.508800pt;}
.ws19_c00118{word-spacing:2.553600pt;}
.ws16_c00118{word-spacing:3.859200pt;}
.ws15_c00118{word-spacing:3.878400pt;}
.ws1f_c00118{word-spacing:4.403200pt;}
.ws1e_c00118{word-spacing:4.499200pt;}
.wsc_c00118{word-spacing:5.472000pt;}
.wse_c00118{word-spacing:5.747200pt;}
.wsd_c00118{word-spacing:5.760000pt;}
.ws17_c00118{word-spacing:6.726400pt;}
.ws11_c00118{word-spacing:6.982400pt;}
.ws12_c00118{word-spacing:7.065600pt;}
.wsf_c00118{word-spacing:8.883200pt;}
.ws10_c00118{word-spacing:8.934400pt;}
.ws14_c00118{word-spacing:8.979200pt;}
.ws1d_c00118{word-spacing:9.920000pt;}
.ws1c_c00118{word-spacing:9.964800pt;}
.ws28_c00118{word-spacing:10.547200pt;}
.ws29_c00118{word-spacing:10.592000pt;}
.ws24_c00118{word-spacing:11.200000pt;}
.ws1a_c00118{word-spacing:13.452800pt;}
.ws1b_c00118{word-spacing:13.491200pt;}
.ws20_c00118{word-spacing:17.676800pt;}
.ws21_c00118{word-spacing:17.734400pt;}
.ws7_c00118{word-spacing:18.566400pt;}
.ws26_c00118{word-spacing:22.105600pt;}
.ws23_c00118{word-spacing:42.476800pt;}
.ws22_c00118{word-spacing:42.566400pt;}
._0_c00118{margin-left:-1.175680pt;}
._1_c00118{width:0.960000pt;}
.fs5_c00118{font-size:34.560000pt;}
.fs3_c00118{font-size:37.440000pt;}
.fs4_c00118{font-size:42.560000pt;}
.fs1_c00118{font-size:48.000000pt;}
.fs0_c00118{font-size:53.440000pt;}
.fs2_c00118{font-size:64.000000pt;}
.y0_c00118{bottom:0.000000pt;}
.y3_c00118{bottom:51.067067pt;}
.y23_c00118{bottom:101.065307pt;}
.y22_c00118{bottom:117.390427pt;}
.y21_c00118{bottom:133.630427pt;}
.y20_c00118{bottom:149.867067pt;}
.y1f_c00118{bottom:163.387200pt;}
.y1e_c00118{bottom:181.787200pt;}
.y1d_c00118{bottom:200.187067pt;}
.y1c_c00118{bottom:247.947067pt;}
.y1b_c00118{bottom:278.587067pt;}
.y1a_c00118{bottom:309.147067pt;}
.y19_c00118{bottom:347.787067pt;}
.y18_c00118{bottom:378.347067pt;}
.y17_c00118{bottom:408.987067pt;}
.y16_c00118{bottom:439.547067pt;}
.y15_c00118{bottom:470.187067pt;}
.y14_c00118{bottom:500.747067pt;}
.y13_c00118{bottom:531.387067pt;}
.y12_c00118{bottom:561.947067pt;}
.y11_c00118{bottom:600.587067pt;}
.y10_c00118{bottom:631.147067pt;}
.yf_c00118{bottom:661.787067pt;}
.ye_c00118{bottom:692.347067pt;}
.yd_c00118{bottom:722.987067pt;}
.yc_c00118{bottom:753.547067pt;}
.yb_c00118{bottom:792.187067pt;}
.ya_c00118{bottom:822.747067pt;}
.y9_c00118{bottom:853.387067pt;}
.y8_c00118{bottom:883.947067pt;}
.y7_c00118{bottom:914.587067pt;}
.y6_c00118{bottom:953.147067pt;}
.y5_c00118{bottom:983.787067pt;}
.y4_c00118{bottom:1014.347067pt;}
.y2_c00118{bottom:1046.987067pt;}
.y1_c00118{bottom:1063.867067pt;}
.h8_c00118{height:42.656250pt;}
.h7_c00118{height:42.656783pt;}
.h9_c00118{height:44.388750pt;}
.ha_c00118{height:44.395790pt;}
.h1_c00118{height:44.724687pt;}
.h2_c00118{height:50.062500pt;}
.h4_c00118{height:53.562500pt;}
.h5_c00118{height:57.894062pt;}
.h3_c00118{height:64.142500pt;}
.h6_c00118{height:66.750000pt;}
.h0_c00118{height:1122.666667pt;}
.w1_c00118{width:793.333333pt;}
.w0_c00118{width:793.626667pt;}
.x0_c00118{left:0.000000pt;}
.x1_c00118{left:113.440000pt;}
.x4_c00118{left:137.440000pt;}
.x2_c00118{left:160.640000pt;}
.x3_c00118{left:183.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fa30f0e1a26d3ac2e4880087.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00119;src:url('chunks/assets/font_4673b5bb1a9d51b25f15f400.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;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_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;}
.v1_c00119{vertical-align:29.880000px;}
.ls12_c00119{letter-spacing:-0.266400px;}
.lsd_c00119{letter-spacing:-0.151200px;}
.ls11_c00119{letter-spacing:-0.057600px;}
.lsb_c00119{letter-spacing:-0.048096px;}
.ls16_c00119{letter-spacing:-0.028800px;}
.lsf_c00119{letter-spacing:-0.021600px;}
.lsa_c00119{letter-spacing:-0.018036px;}
.ls17_c00119{letter-spacing:-0.015552px;}
.ls13_c00119{letter-spacing:-0.014400px;}
.lse_c00119{letter-spacing:-0.007200px;}
.ls18_c00119{letter-spacing:-0.003888px;}
.lsc_c00119{letter-spacing:0.000000px;}
.ls2_c00119{letter-spacing:0.007200px;}
.ls8_c00119{letter-spacing:0.014364px;}
.ls1_c00119{letter-spacing:0.014400px;}
.ls4_c00119{letter-spacing:0.021600px;}
.ls10_c00119{letter-spacing:0.028800px;}
.ls7_c00119{letter-spacing:0.033516px;}
.ls0_c00119{letter-spacing:0.036072px;}
.ls9_c00119{letter-spacing:0.043092px;}
.ls3_c00119{letter-spacing:0.054756px;}
.ls15_c00119{letter-spacing:0.057600px;}
.ls14_c00119{letter-spacing:0.093600px;}
.ls5_c00119{letter-spacing:0.144000px;}
.ls6_c00119{letter-spacing:66.024000px;}
.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.021600px;}
.ws0_c00119{word-spacing:-17.942400px;}
.ws4_c00119{word-spacing:-13.310640px;}
.ws3_c00119{word-spacing:-10.808640px;}
.ws5_c00119{word-spacing:-10.804752px;}
.ws1_c00119{word-spacing:-10.584756px;}
.ws2c_c00119{word-spacing:-0.023940px;}
.ws2a_c00119{word-spacing:-0.014364px;}
.ws9_c00119{word-spacing:0.000000px;}
.ws2b_c00119{word-spacing:0.004788px;}
.ws25_c00119{word-spacing:0.007200px;}
.ws6_c00119{word-spacing:0.054108px;}
.ws7_c00119{word-spacing:0.108216px;}
.ws8_c00119{word-spacing:0.138276px;}
.ws11_c00119{word-spacing:2.167200px;}
.ws19_c00119{word-spacing:2.174400px;}
.ws10_c00119{word-spacing:2.210400px;}
.wsf_c00119{word-spacing:2.253600px;}
.ws28_c00119{word-spacing:2.887200px;}
.ws29_c00119{word-spacing:2.908800px;}
.ws17_c00119{word-spacing:3.960000px;}
.ws26_c00119{word-spacing:4.672800px;}
.ws27_c00119{word-spacing:4.780800px;}
.ws1c_c00119{word-spacing:5.767200px;}
.ws22_c00119{word-spacing:5.788800px;}
.ws20_c00119{word-spacing:5.817600px;}
.ws1d_c00119{word-spacing:5.846400px;}
.ws21_c00119{word-spacing:5.882400px;}
.ws1b_c00119{word-spacing:6.019200px;}
.ws24_c00119{word-spacing:6.112800px;}
.ws1a_c00119{word-spacing:6.127200px;}
.wsa_c00119{word-spacing:7.567200px;}
.wsd_c00119{word-spacing:8.985600px;}
.wsc_c00119{word-spacing:9.072000px;}
.ws1e_c00119{word-spacing:11.181600px;}
.ws1f_c00119{word-spacing:12.247200px;}
.ws23_c00119{word-spacing:13.341600px;}
.ws18_c00119{word-spacing:14.767200px;}
.ws13_c00119{word-spacing:15.811200px;}
.ws12_c00119{word-spacing:15.847200px;}
.wse_c00119{word-spacing:19.137600px;}
.ws16_c00119{word-spacing:19.807200px;}
.ws15_c00119{word-spacing:19.814400px;}
.wsb_c00119{word-spacing:20.541600px;}
.ws14_c00119{word-spacing:25.214400px;}
._0_c00119{margin-left:-1.142280px;}
._1_c00119{width:1.296000px;}
.fc0_c00119{color:rgb(0,0,0);}
.fs5_c00119{font-size:38.880000px;}
.fs3_c00119{font-size:42.120000px;}
.fs4_c00119{font-size:47.880000px;}
.fs2_c00119{font-size:54.000000px;}
.fs0_c00119{font-size:60.120000px;}
.fs1_c00119{font-size:72.000000px;}
.y0_c00119{bottom:0.000000px;}
.y3_c00119{bottom:57.450450px;}
.y4_c00119{bottom:61.410450px;}
.y24_c00119{bottom:113.698470px;}
.y23_c00119{bottom:132.064230px;}
.y22_c00119{bottom:150.334230px;}
.y21_c00119{bottom:168.600450px;}
.y20_c00119{bottom:183.810600px;}
.y1f_c00119{bottom:204.510600px;}
.y1e_c00119{bottom:225.210600px;}
.y1d_c00119{bottom:278.940600px;}
.y1c_c00119{bottom:313.410600px;}
.y1b_c00119{bottom:356.790450px;}
.y1a_c00119{bottom:391.260450px;}
.y19_c00119{bottom:434.640450px;}
.y18_c00119{bottom:469.110450px;}
.y17_c00119{bottom:503.490450px;}
.y16_c00119{bottom:537.960450px;}
.y15_c00119{bottom:572.340450px;}
.y14_c00119{bottom:606.810450px;}
.y13_c00119{bottom:641.190450px;}
.y12_c00119{bottom:675.660450px;}
.y11_c00119{bottom:719.040450px;}
.y10_c00119{bottom:753.510450px;}
.yf_c00119{bottom:787.890450px;}
.ye_c00119{bottom:822.360450px;}
.yd_c00119{bottom:856.740450px;}
.yc_c00119{bottom:900.210450px;}
.yb_c00119{bottom:934.590450px;}
.ya_c00119{bottom:969.060450px;}
.y9_c00119{bottom:1003.440450px;}
.y8_c00119{bottom:1037.910450px;}
.y7_c00119{bottom:1072.290450px;}
.y6_c00119{bottom:1106.760450px;}
.y5_c00119{bottom:1141.140450px;}
.y2_c00119{bottom:1173.810450px;}
.y1_c00119{bottom:1196.850450px;}
.h2_c00119{height:47.988281px;}
.h8_c00119{height:49.937344px;}
.h9_c00119{height:49.945264px;}
.h1_c00119{height:50.315273px;}
.h3_c00119{height:56.320312px;}
.h4_c00119{height:60.257812px;}
.h5_c00119{height:65.130820px;}
.h6_c00119{height:65.131420px;}
.h7_c00119{height:75.093750px;}
.h0_c00119{height:1263.000000px;}
.w1_c00119{width:892.500000px;}
.w0_c00119{width:892.830000px;}
.x0_c00119{left:0.000000px;}
.x2_c00119{left:127.620000px;}
.x1_c00119{left:145.440000px;}
.x7_c00119{left:154.440000px;}
.x5_c00119{left:180.810000px;}
.x6_c00119{left:207.000000px;}
.x4_c00119{left:439.020000px;}
.x3_c00119{left:446.490000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.v1_c00119{vertical-align:26.560000pt;}
.ls12_c00119{letter-spacing:-0.236800pt;}
.lsd_c00119{letter-spacing:-0.134400pt;}
.ls11_c00119{letter-spacing:-0.051200pt;}
.lsb_c00119{letter-spacing:-0.042752pt;}
.ls16_c00119{letter-spacing:-0.025600pt;}
.lsf_c00119{letter-spacing:-0.019200pt;}
.lsa_c00119{letter-spacing:-0.016032pt;}
.ls17_c00119{letter-spacing:-0.013824pt;}
.ls13_c00119{letter-spacing:-0.012800pt;}
.lse_c00119{letter-spacing:-0.006400pt;}
.ls18_c00119{letter-spacing:-0.003456pt;}
.lsc_c00119{letter-spacing:0.000000pt;}
.ls2_c00119{letter-spacing:0.006400pt;}
.ls8_c00119{letter-spacing:0.012768pt;}
.ls1_c00119{letter-spacing:0.012800pt;}
.ls4_c00119{letter-spacing:0.019200pt;}
.ls10_c00119{letter-spacing:0.025600pt;}
.ls7_c00119{letter-spacing:0.029792pt;}
.ls0_c00119{letter-spacing:0.032064pt;}
.ls9_c00119{letter-spacing:0.038304pt;}
.ls3_c00119{letter-spacing:0.048672pt;}
.ls15_c00119{letter-spacing:0.051200pt;}
.ls14_c00119{letter-spacing:0.083200pt;}
.ls5_c00119{letter-spacing:0.128000pt;}
.ls6_c00119{letter-spacing:58.688000pt;}
.ws2_c00119{word-spacing:-16.019200pt;}
.ws0_c00119{word-spacing:-15.948800pt;}
.ws4_c00119{word-spacing:-11.831680pt;}
.ws3_c00119{word-spacing:-9.607680pt;}
.ws5_c00119{word-spacing:-9.604224pt;}
.ws1_c00119{word-spacing:-9.408672pt;}
.ws2c_c00119{word-spacing:-0.021280pt;}
.ws2a_c00119{word-spacing:-0.012768pt;}
.ws9_c00119{word-spacing:0.000000pt;}
.ws2b_c00119{word-spacing:0.004256pt;}
.ws25_c00119{word-spacing:0.006400pt;}
.ws6_c00119{word-spacing:0.048096pt;}
.ws7_c00119{word-spacing:0.096192pt;}
.ws8_c00119{word-spacing:0.122912pt;}
.ws11_c00119{word-spacing:1.926400pt;}
.ws19_c00119{word-spacing:1.932800pt;}
.ws10_c00119{word-spacing:1.964800pt;}
.wsf_c00119{word-spacing:2.003200pt;}
.ws28_c00119{word-spacing:2.566400pt;}
.ws29_c00119{word-spacing:2.585600pt;}
.ws17_c00119{word-spacing:3.520000pt;}
.ws26_c00119{word-spacing:4.153600pt;}
.ws27_c00119{word-spacing:4.249600pt;}
.ws1c_c00119{word-spacing:5.126400pt;}
.ws22_c00119{word-spacing:5.145600pt;}
.ws20_c00119{word-spacing:5.171200pt;}
.ws1d_c00119{word-spacing:5.196800pt;}
.ws21_c00119{word-spacing:5.228800pt;}
.ws1b_c00119{word-spacing:5.350400pt;}
.ws24_c00119{word-spacing:5.433600pt;}
.ws1a_c00119{word-spacing:5.446400pt;}
.wsa_c00119{word-spacing:6.726400pt;}
.wsd_c00119{word-spacing:7.987200pt;}
.wsc_c00119{word-spacing:8.064000pt;}
.ws1e_c00119{word-spacing:9.939200pt;}
.ws1f_c00119{word-spacing:10.886400pt;}
.ws23_c00119{word-spacing:11.859200pt;}
.ws18_c00119{word-spacing:13.126400pt;}
.ws13_c00119{word-spacing:14.054400pt;}
.ws12_c00119{word-spacing:14.086400pt;}
.wse_c00119{word-spacing:17.011200pt;}
.ws16_c00119{word-spacing:17.606400pt;}
.ws15_c00119{word-spacing:17.612800pt;}
.wsb_c00119{word-spacing:18.259200pt;}
.ws14_c00119{word-spacing:22.412800pt;}
._0_c00119{margin-left:-1.015360pt;}
._1_c00119{width:1.152000pt;}
.fs5_c00119{font-size:34.560000pt;}
.fs3_c00119{font-size:37.440000pt;}
.fs4_c00119{font-size:42.560000pt;}
.fs2_c00119{font-size:48.000000pt;}
.fs0_c00119{font-size:53.440000pt;}
.fs1_c00119{font-size:64.000000pt;}
.y0_c00119{bottom:0.000000pt;}
.y3_c00119{bottom:51.067067pt;}
.y4_c00119{bottom:54.587067pt;}
.y24_c00119{bottom:101.065307pt;}
.y23_c00119{bottom:117.390427pt;}
.y22_c00119{bottom:133.630427pt;}
.y21_c00119{bottom:149.867067pt;}
.y20_c00119{bottom:163.387200pt;}
.y1f_c00119{bottom:181.787200pt;}
.y1e_c00119{bottom:200.187200pt;}
.y1d_c00119{bottom:247.947200pt;}
.y1c_c00119{bottom:278.587200pt;}
.y1b_c00119{bottom:317.147067pt;}
.y1a_c00119{bottom:347.787067pt;}
.y19_c00119{bottom:386.347067pt;}
.y18_c00119{bottom:416.987067pt;}
.y17_c00119{bottom:447.547067pt;}
.y16_c00119{bottom:478.187067pt;}
.y15_c00119{bottom:508.747067pt;}
.y14_c00119{bottom:539.387067pt;}
.y13_c00119{bottom:569.947067pt;}
.y12_c00119{bottom:600.587067pt;}
.y11_c00119{bottom:639.147067pt;}
.y10_c00119{bottom:669.787067pt;}
.yf_c00119{bottom:700.347067pt;}
.ye_c00119{bottom:730.987067pt;}
.yd_c00119{bottom:761.547067pt;}
.yc_c00119{bottom:800.187067pt;}
.yb_c00119{bottom:830.747067pt;}
.ya_c00119{bottom:861.387067pt;}
.y9_c00119{bottom:891.947067pt;}
.y8_c00119{bottom:922.587067pt;}
.y7_c00119{bottom:953.147067pt;}
.y6_c00119{bottom:983.787067pt;}
.y5_c00119{bottom:1014.347067pt;}
.y2_c00119{bottom:1043.387067pt;}
.y1_c00119{bottom:1063.867067pt;}
.h2_c00119{height:42.656250pt;}
.h8_c00119{height:44.388750pt;}
.h9_c00119{height:44.395790pt;}
.h1_c00119{height:44.724687pt;}
.h3_c00119{height:50.062500pt;}
.h4_c00119{height:53.562500pt;}
.h5_c00119{height:57.894063pt;}
.h6_c00119{height:57.894596pt;}
.h7_c00119{height:66.750000pt;}
.h0_c00119{height:1122.666667pt;}
.w1_c00119{width:793.333333pt;}
.w0_c00119{width:793.626667pt;}
.x0_c00119{left:0.000000pt;}
.x2_c00119{left:113.440000pt;}
.x1_c00119{left:129.280000pt;}
.x7_c00119{left:137.280000pt;}
.x5_c00119{left:160.720000pt;}
.x6_c00119{left:184.000000pt;}
.x4_c00119{left:390.240000pt;}
.x3_c00119{left:396.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_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_9521e0117cc5b1ef9e7ca706.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.100098;font-style:normal;font-weight:normal;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_a719bfd966feb19acf6353c5.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;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_c00120;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00120{vertical-align:15.840000px;}
.v2_c00120{vertical-align:29.880000px;}
.lsc_c00120{letter-spacing:-0.151200px;}
.ls10_c00120{letter-spacing:-0.043200px;}
.ls13_c00120{letter-spacing:-0.028800px;}
.ls11_c00120{letter-spacing:-0.021600px;}
.ls14_c00120{letter-spacing:-0.015552px;}
.lsf_c00120{letter-spacing:-0.014400px;}
.lsd_c00120{letter-spacing:-0.007200px;}
.ls15_c00120{letter-spacing:-0.003888px;}
.lsb_c00120{letter-spacing:0.000000px;}
.ls6_c00120{letter-spacing:0.007200px;}
.ls8_c00120{letter-spacing:0.014364px;}
.ls3_c00120{letter-spacing:0.014400px;}
.ls7_c00120{letter-spacing:0.021600px;}
.ls9_c00120{letter-spacing:0.033516px;}
.lsa_c00120{letter-spacing:0.043092px;}
.ls12_c00120{letter-spacing:0.043200px;}
.ls0_c00120{letter-spacing:0.048096px;}
.ls2_c00120{letter-spacing:0.054756px;}
.lse_c00120{letter-spacing:0.093600px;}
.ls4_c00120{letter-spacing:0.144000px;}
.ls5_c00120{letter-spacing:66.024000px;}
.ls1_c00120{letter-spacing:1227.240000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00120{word-spacing:-13.310640px;}
.ws2_c00120{word-spacing:-10.804752px;}
.ws0_c00120{word-spacing:-10.584756px;}
.wse_c00120{word-spacing:-0.086400px;}
.ws2a_c00120{word-spacing:-0.023940px;}
.ws27_c00120{word-spacing:-0.021600px;}
.ws11_c00120{word-spacing:-0.014400px;}
.ws29_c00120{word-spacing:-0.014364px;}
.ws4_c00120{word-spacing:0.000000px;}
.ws28_c00120{word-spacing:0.004788px;}
.ws7_c00120{word-spacing:0.007200px;}
.ws15_c00120{word-spacing:0.014400px;}
.ws3_c00120{word-spacing:0.042084px;}
.ws1c_c00120{word-spacing:0.050400px;}
.ws1b_c00120{word-spacing:0.367200px;}
.ws1a_c00120{word-spacing:0.432000px;}
.ws20_c00120{word-spacing:0.712800px;}
.ws12_c00120{word-spacing:1.015200px;}
.ws13_c00120{word-spacing:1.123200px;}
.ws9_c00120{word-spacing:3.240000px;}
.ws21_c00120{word-spacing:3.254400px;}
.ws22_c00120{word-spacing:3.268800px;}
.wsa_c00120{word-spacing:3.319200px;}
.ws25_c00120{word-spacing:4.327200px;}
.ws26_c00120{word-spacing:4.399200px;}
.ws14_c00120{word-spacing:6.141600px;}
.ws23_c00120{word-spacing:6.552000px;}
.ws24_c00120{word-spacing:6.638400px;}
.wsf_c00120{word-spacing:11.145600px;}
.ws10_c00120{word-spacing:11.152800px;}
.ws8_c00120{word-spacing:11.563200px;}
.wsd_c00120{word-spacing:14.457600px;}
.wsc_c00120{word-spacing:14.472000px;}
.ws1f_c00120{word-spacing:16.560000px;}
.ws16_c00120{word-spacing:16.927200px;}
.ws17_c00120{word-spacing:16.970400px;}
.ws19_c00120{word-spacing:19.785600px;}
.ws18_c00120{word-spacing:19.800000px;}
.wsb_c00120{word-spacing:20.851200px;}
.ws5_c00120{word-spacing:27.367200px;}
.ws6_c00120{word-spacing:27.424800px;}
.ws1d_c00120{word-spacing:30.960000px;}
.ws1e_c00120{word-spacing:31.060800px;}
._0_c00120{margin-left:-1.322640px;}
._1_c00120{width:1.008000px;}
.fc0_c00120{color:rgb(0,0,0);}
.fs5_c00120{font-size:38.880000px;}
.fs3_c00120{font-size:42.120000px;}
.fs4_c00120{font-size:47.880000px;}
.fs1_c00120{font-size:54.000000px;}
.fs0_c00120{font-size:60.120000px;}
.fs2_c00120{font-size:72.000000px;}
.y0_c00120{bottom:0.000000px;}
.y3_c00120{bottom:57.450450px;}
.y22_c00120{bottom:113.698470px;}
.y21_c00120{bottom:132.064230px;}
.y20_c00120{bottom:150.334230px;}
.y1f_c00120{bottom:168.600450px;}
.y1e_c00120{bottom:183.810600px;}
.y1d_c00120{bottom:204.510600px;}
.y1c_c00120{bottom:225.210450px;}
.y1b_c00120{bottom:277.410450px;}
.y1a_c00120{bottom:311.790450px;}
.y19_c00120{bottom:346.260450px;}
.y18_c00120{bottom:398.640450px;}
.y17_c00120{bottom:433.110450px;}
.y16_c00120{bottom:467.490450px;}
.y15_c00120{bottom:501.960450px;}
.y14_c00120{bottom:536.340450px;}
.y13_c00120{bottom:579.810450px;}
.y12_c00120{bottom:614.190450px;}
.y11_c00120{bottom:648.660450px;}
.y10_c00120{bottom:683.040450px;}
.yf_c00120{bottom:726.510450px;}
.ye_c00120{bottom:760.890450px;}
.yd_c00120{bottom:795.360450px;}
.yc_c00120{bottom:838.740450px;}
.yb_c00120{bottom:873.210450px;}
.ya_c00120{bottom:916.590450px;}
.y9_c00120{bottom:951.060450px;}
.y8_c00120{bottom:985.440450px;}
.y7_c00120{bottom:1019.910450px;}
.y6_c00120{bottom:1054.290450px;}
.y5_c00120{bottom:1106.760450px;}
.y4_c00120{bottom:1141.140450px;}
.y2_c00120{bottom:1177.860450px;}
.y1_c00120{bottom:1196.850450px;}
.h9_c00120{height:47.988281px;}
.h8_c00120{height:47.988881px;}
.ha_c00120{height:49.937344px;}
.hb_c00120{height:49.945264px;}
.h1_c00120{height:50.315273px;}
.h2_c00120{height:56.320312px;}
.h4_c00120{height:60.257812px;}
.h5_c00120{height:65.130820px;}
.h7_c00120{height:65.131420px;}
.h3_c00120{height:72.160312px;}
.h6_c00120{height:75.093750px;}
.h0_c00120{height:1263.000000px;}
.w1_c00120{width:892.500000px;}
.w0_c00120{width:892.830000px;}
.x0_c00120{left:0.000000px;}
.x1_c00120{left:127.620000px;}
.x3_c00120{left:154.440000px;}
.x2_c00120{left:181.170000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.v1_c00120{vertical-align:14.080000pt;}
.v2_c00120{vertical-align:26.560000pt;}
.lsc_c00120{letter-spacing:-0.134400pt;}
.ls10_c00120{letter-spacing:-0.038400pt;}
.ls13_c00120{letter-spacing:-0.025600pt;}
.ls11_c00120{letter-spacing:-0.019200pt;}
.ls14_c00120{letter-spacing:-0.013824pt;}
.lsf_c00120{letter-spacing:-0.012800pt;}
.lsd_c00120{letter-spacing:-0.006400pt;}
.ls15_c00120{letter-spacing:-0.003456pt;}
.lsb_c00120{letter-spacing:0.000000pt;}
.ls6_c00120{letter-spacing:0.006400pt;}
.ls8_c00120{letter-spacing:0.012768pt;}
.ls3_c00120{letter-spacing:0.012800pt;}
.ls7_c00120{letter-spacing:0.019200pt;}
.ls9_c00120{letter-spacing:0.029792pt;}
.lsa_c00120{letter-spacing:0.038304pt;}
.ls12_c00120{letter-spacing:0.038400pt;}
.ls0_c00120{letter-spacing:0.042752pt;}
.ls2_c00120{letter-spacing:0.048672pt;}
.lse_c00120{letter-spacing:0.083200pt;}
.ls4_c00120{letter-spacing:0.128000pt;}
.ls5_c00120{letter-spacing:58.688000pt;}
.ls1_c00120{letter-spacing:1090.880000pt;}
.ws1_c00120{word-spacing:-11.831680pt;}
.ws2_c00120{word-spacing:-9.604224pt;}
.ws0_c00120{word-spacing:-9.408672pt;}
.wse_c00120{word-spacing:-0.076800pt;}
.ws2a_c00120{word-spacing:-0.021280pt;}
.ws27_c00120{word-spacing:-0.019200pt;}
.ws11_c00120{word-spacing:-0.012800pt;}
.ws29_c00120{word-spacing:-0.012768pt;}
.ws4_c00120{word-spacing:0.000000pt;}
.ws28_c00120{word-spacing:0.004256pt;}
.ws7_c00120{word-spacing:0.006400pt;}
.ws15_c00120{word-spacing:0.012800pt;}
.ws3_c00120{word-spacing:0.037408pt;}
.ws1c_c00120{word-spacing:0.044800pt;}
.ws1b_c00120{word-spacing:0.326400pt;}
.ws1a_c00120{word-spacing:0.384000pt;}
.ws20_c00120{word-spacing:0.633600pt;}
.ws12_c00120{word-spacing:0.902400pt;}
.ws13_c00120{word-spacing:0.998400pt;}
.ws9_c00120{word-spacing:2.880000pt;}
.ws21_c00120{word-spacing:2.892800pt;}
.ws22_c00120{word-spacing:2.905600pt;}
.wsa_c00120{word-spacing:2.950400pt;}
.ws25_c00120{word-spacing:3.846400pt;}
.ws26_c00120{word-spacing:3.910400pt;}
.ws14_c00120{word-spacing:5.459200pt;}
.ws23_c00120{word-spacing:5.824000pt;}
.ws24_c00120{word-spacing:5.900800pt;}
.wsf_c00120{word-spacing:9.907200pt;}
.ws10_c00120{word-spacing:9.913600pt;}
.ws8_c00120{word-spacing:10.278400pt;}
.wsd_c00120{word-spacing:12.851200pt;}
.wsc_c00120{word-spacing:12.864000pt;}
.ws1f_c00120{word-spacing:14.720000pt;}
.ws16_c00120{word-spacing:15.046400pt;}
.ws17_c00120{word-spacing:15.084800pt;}
.ws19_c00120{word-spacing:17.587200pt;}
.ws18_c00120{word-spacing:17.600000pt;}
.wsb_c00120{word-spacing:18.534400pt;}
.ws5_c00120{word-spacing:24.326400pt;}
.ws6_c00120{word-spacing:24.377600pt;}
.ws1d_c00120{word-spacing:27.520000pt;}
.ws1e_c00120{word-spacing:27.609600pt;}
._0_c00120{margin-left:-1.175680pt;}
._1_c00120{width:0.896000pt;}
.fs5_c00120{font-size:34.560000pt;}
.fs3_c00120{font-size:37.440000pt;}
.fs4_c00120{font-size:42.560000pt;}
.fs1_c00120{font-size:48.000000pt;}
.fs0_c00120{font-size:53.440000pt;}
.fs2_c00120{font-size:64.000000pt;}
.y0_c00120{bottom:0.000000pt;}
.y3_c00120{bottom:51.067067pt;}
.y22_c00120{bottom:101.065307pt;}
.y21_c00120{bottom:117.390427pt;}
.y20_c00120{bottom:133.630427pt;}
.y1f_c00120{bottom:149.867067pt;}
.y1e_c00120{bottom:163.387200pt;}
.y1d_c00120{bottom:181.787200pt;}
.y1c_c00120{bottom:200.187067pt;}
.y1b_c00120{bottom:246.587067pt;}
.y1a_c00120{bottom:277.147067pt;}
.y19_c00120{bottom:307.787067pt;}
.y18_c00120{bottom:354.347067pt;}
.y17_c00120{bottom:384.987067pt;}
.y16_c00120{bottom:415.547067pt;}
.y15_c00120{bottom:446.187067pt;}
.y14_c00120{bottom:476.747067pt;}
.y13_c00120{bottom:515.387067pt;}
.y12_c00120{bottom:545.947067pt;}
.y11_c00120{bottom:576.587067pt;}
.y10_c00120{bottom:607.147067pt;}
.yf_c00120{bottom:645.787067pt;}
.ye_c00120{bottom:676.347067pt;}
.yd_c00120{bottom:706.987067pt;}
.yc_c00120{bottom:745.547067pt;}
.yb_c00120{bottom:776.187067pt;}
.ya_c00120{bottom:814.747067pt;}
.y9_c00120{bottom:845.387067pt;}
.y8_c00120{bottom:875.947067pt;}
.y7_c00120{bottom:906.587067pt;}
.y6_c00120{bottom:937.147067pt;}
.y5_c00120{bottom:983.787067pt;}
.y4_c00120{bottom:1014.347067pt;}
.y2_c00120{bottom:1046.987067pt;}
.y1_c00120{bottom:1063.867067pt;}
.h9_c00120{height:42.656250pt;}
.h8_c00120{height:42.656783pt;}
.ha_c00120{height:44.388750pt;}
.hb_c00120{height:44.395790pt;}
.h1_c00120{height:44.724687pt;}
.h2_c00120{height:50.062500pt;}
.h4_c00120{height:53.562500pt;}
.h5_c00120{height:57.894063pt;}
.h7_c00120{height:57.894596pt;}
.h3_c00120{height:64.142500pt;}
.h6_c00120{height:66.750000pt;}
.h0_c00120{height:1122.666667pt;}
.w1_c00120{width:793.333333pt;}
.w0_c00120{width:793.626667pt;}
.x0_c00120{left:0.000000pt;}
.x1_c00120{left:113.440000pt;}
.x3_c00120{left:137.280000pt;}
.x2_c00120{left:161.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_213af6535dde9ae138352b8b.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00121;src:url('chunks/assets/font_a4a0808af9ec422c9e9aab4e.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00121;src:url('chunks/assets/font_1787d70ac336f298e75f3374.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00121;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00121{font-family:ff5_c00121;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_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.v1_c00121{vertical-align:29.880000px;}
.ls14_c00121{letter-spacing:-0.151200px;}
.ls1d_c00121{letter-spacing:-0.079200px;}
.ls12_c00121{letter-spacing:-0.048096px;}
.ls16_c00121{letter-spacing:-0.046872px;}
.ls1a_c00121{letter-spacing:-0.043200px;}
.ls1c_c00121{letter-spacing:-0.028800px;}
.ls18_c00121{letter-spacing:-0.021600px;}
.ls11_c00121{letter-spacing:-0.018036px;}
.ls17_c00121{letter-spacing:-0.014400px;}
.ls19_c00121{letter-spacing:-0.007200px;}
.ls13_c00121{letter-spacing:0.000000px;}
.ls5_c00121{letter-spacing:0.007200px;}
.ls1_c00121{letter-spacing:0.007812px;}
.lsf_c00121{letter-spacing:0.014364px;}
.ls6_c00121{letter-spacing:0.014400px;}
.lsb_c00121{letter-spacing:0.019152px;}
.ls3_c00121{letter-spacing:0.023436px;}
.ls10_c00121{letter-spacing:0.028728px;}
.lsa_c00121{letter-spacing:0.033516px;}
.ls0_c00121{letter-spacing:0.036072px;}
.lse_c00121{letter-spacing:0.038304px;}
.ls7_c00121{letter-spacing:0.043092px;}
.ls1b_c00121{letter-spacing:0.043200px;}
.ls9_c00121{letter-spacing:0.052668px;}
.ls4_c00121{letter-spacing:0.054756px;}
.lsc_c00121{letter-spacing:0.057456px;}
.ls8_c00121{letter-spacing:0.062244px;}
.lsd_c00121{letter-spacing:0.067032px;}
.ls1e_c00121{letter-spacing:0.093600px;}
.ls15_c00121{letter-spacing:0.093744px;}
.ls2_c00121{letter-spacing:23.670360px;}
.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;}
}
.ws1_c00121{word-spacing:-19.623744px;}
.ws2_c00121{word-spacing:-19.553436px;}
.ws0_c00121{word-spacing:-19.537812px;}
.ws4_c00121{word-spacing:-10.808640px;}
.ws3_c00121{word-spacing:-10.584756px;}
.ws9_c00121{word-spacing:-0.039060px;}
.ws34_c00121{word-spacing:-0.033516px;}
.ws36_c00121{word-spacing:-0.023940px;}
.ws37_c00121{word-spacing:-0.009576px;}
.ws12_c00121{word-spacing:-0.007200px;}
.ws8_c00121{word-spacing:0.000000px;}
.ws35_c00121{word-spacing:0.004788px;}
.ws1c_c00121{word-spacing:0.028800px;}
.ws5_c00121{word-spacing:0.054108px;}
.ws29_c00121{word-spacing:0.079200px;}
.ws6_c00121{word-spacing:0.108216px;}
.ws7_c00121{word-spacing:0.138276px;}
.ws20_c00121{word-spacing:1.454400px;}
.ws19_c00121{word-spacing:3.600000px;}
.ws18_c00121{word-spacing:3.628800px;}
.ws2c_c00121{word-spacing:3.926160px;}
.ws2d_c00121{word-spacing:3.945312px;}
.ws2e_c00121{word-spacing:3.959676px;}
.wsc_c00121{word-spacing:4.320000px;}
.wsd_c00121{word-spacing:4.341600px;}
.ws15_c00121{word-spacing:6.429600px;}
.ws14_c00121{word-spacing:6.472800px;}
.wse_c00121{word-spacing:6.832800px;}
.ws31_c00121{word-spacing:7.512372px;}
.ws32_c00121{word-spacing:7.526736px;}
.ws33_c00121{word-spacing:7.900200px;}
.ws17_c00121{word-spacing:8.956800px;}
.ws26_c00121{word-spacing:9.021600px;}
.ws16_c00121{word-spacing:9.122400px;}
.ws23_c00121{word-spacing:9.345600px;}
.ws24_c00121{word-spacing:9.367200px;}
.ws10_c00121{word-spacing:9.655200px;}
.wsf_c00121{word-spacing:9.720000px;}
.ws11_c00121{word-spacing:9.763200px;}
.ws13_c00121{word-spacing:9.835200px;}
.wsb_c00121{word-spacing:10.080000px;}
.wsa_c00121{word-spacing:10.094400px;}
.ws2b_c00121{word-spacing:10.753848px;}
.ws2a_c00121{word-spacing:10.773000px;}
.ws25_c00121{word-spacing:11.894400px;}
.ws2f_c00121{word-spacing:12.199824px;}
.ws30_c00121{word-spacing:12.223764px;}
.ws21_c00121{word-spacing:12.578400px;}
.ws22_c00121{word-spacing:12.679200px;}
.ws28_c00121{word-spacing:14.040000px;}
.ws27_c00121{word-spacing:14.054400px;}
.ws1e_c00121{word-spacing:24.854400px;}
.ws1f_c00121{word-spacing:24.883200px;}
.ws1d_c00121{word-spacing:29.181600px;}
.ws1b_c00121{word-spacing:38.167200px;}
.ws1a_c00121{word-spacing:38.174400px;}
._0_c00121{margin-left:-1.142280px;}
._1_c00121{width:1.224000px;}
.fc0_c00121{color:rgb(0,0,0);}
.fs6_c00121{font-size:38.880000px;}
.fs4_c00121{font-size:42.120000px;}
.fs5_c00121{font-size:47.880000px;}
.fs2_c00121{font-size:54.000000px;}
.fs0_c00121{font-size:60.120000px;}
.fs1_c00121{font-size:72.000000px;}
.fs3_c00121{font-size:78.120000px;}
.y0_c00121{bottom:0.000000px;}
.y3_c00121{bottom:57.450450px;}
.y4_c00121{bottom:61.410450px;}
.y27_c00121{bottom:113.698470px;}
.y26_c00121{bottom:132.066180px;}
.y25_c00121{bottom:150.332400px;}
.y24_c00121{bottom:168.598620px;}
.y23_c00121{bottom:186.976470px;}
.y22_c00121{bottom:205.242690px;}
.y21_c00121{bottom:219.008190px;}
.y20_c00121{bottom:232.869450px;}
.y1f_c00121{bottom:246.634950px;}
.y1e_c00121{bottom:260.400450px;}
.y1d_c00121{bottom:275.610450px;}
.y1c_c00121{bottom:296.310450px;}
.y1b_c00121{bottom:317.010450px;}
.y1a_c00121{bottom:379.380450px;}
.y19_c00121{bottom:413.760450px;}
.y18_c00121{bottom:457.230450px;}
.y17_c00121{bottom:491.610450px;}
.y16_c00121{bottom:526.080450px;}
.y15_c00121{bottom:560.460450px;}
.y14_c00121{bottom:594.930450px;}
.y13_c00121{bottom:629.310450px;}
.y12_c00121{bottom:663.780450px;}
.y11_c00121{bottom:698.160450px;}
.y10_c00121{bottom:741.630450px;}
.yf_c00121{bottom:776.010450px;}
.ye_c00121{bottom:810.480450px;}
.yd_c00121{bottom:844.860450px;}
.yc_c00121{bottom:879.330450px;}
.yb_c00121{bottom:913.710450px;}
.ya_c00121{bottom:957.180450px;}
.y9_c00121{bottom:991.560450px;}
.y8_c00121{bottom:1026.030450px;}
.y7_c00121{bottom:1060.410450px;}
.y6_c00121{bottom:1094.880450px;}
.y5_c00121{bottom:1139.880450px;}
.y2_c00121{bottom:1173.810450px;}
.y1_c00121{bottom:1196.850450px;}
.h2_c00121{height:47.988281px;}
.h7_c00121{height:49.937344px;}
.h8_c00121{height:49.945264px;}
.h1_c00121{height:50.315273px;}
.h3_c00121{height:56.320312px;}
.h5_c00121{height:60.257812px;}
.h6_c00121{height:65.130820px;}
.h4_c00121{height:81.476719px;}
.h0_c00121{height:1263.000000px;}
.w1_c00121{width:892.500000px;}
.w0_c00121{width:892.830000px;}
.x0_c00121{left:0.000000px;}
.x2_c00121{left:127.620000px;}
.x1_c00121{left:145.440000px;}
.x6_c00121{left:154.624320px;}
.x5_c00121{left:180.810000px;}
.x4_c00121{left:439.020000px;}
.x3_c00121{left:446.490000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.v1_c00121{vertical-align:26.560000pt;}
.ls14_c00121{letter-spacing:-0.134400pt;}
.ls1d_c00121{letter-spacing:-0.070400pt;}
.ls12_c00121{letter-spacing:-0.042752pt;}
.ls16_c00121{letter-spacing:-0.041664pt;}
.ls1a_c00121{letter-spacing:-0.038400pt;}
.ls1c_c00121{letter-spacing:-0.025600pt;}
.ls18_c00121{letter-spacing:-0.019200pt;}
.ls11_c00121{letter-spacing:-0.016032pt;}
.ls17_c00121{letter-spacing:-0.012800pt;}
.ls19_c00121{letter-spacing:-0.006400pt;}
.ls13_c00121{letter-spacing:0.000000pt;}
.ls5_c00121{letter-spacing:0.006400pt;}
.ls1_c00121{letter-spacing:0.006944pt;}
.lsf_c00121{letter-spacing:0.012768pt;}
.ls6_c00121{letter-spacing:0.012800pt;}
.lsb_c00121{letter-spacing:0.017024pt;}
.ls3_c00121{letter-spacing:0.020832pt;}
.ls10_c00121{letter-spacing:0.025536pt;}
.lsa_c00121{letter-spacing:0.029792pt;}
.ls0_c00121{letter-spacing:0.032064pt;}
.lse_c00121{letter-spacing:0.034048pt;}
.ls7_c00121{letter-spacing:0.038304pt;}
.ls1b_c00121{letter-spacing:0.038400pt;}
.ls9_c00121{letter-spacing:0.046816pt;}
.ls4_c00121{letter-spacing:0.048672pt;}
.lsc_c00121{letter-spacing:0.051072pt;}
.ls8_c00121{letter-spacing:0.055328pt;}
.lsd_c00121{letter-spacing:0.059584pt;}
.ls1e_c00121{letter-spacing:0.083200pt;}
.ls15_c00121{letter-spacing:0.083328pt;}
.ls2_c00121{letter-spacing:21.040320pt;}
.ws1_c00121{word-spacing:-17.443328pt;}
.ws2_c00121{word-spacing:-17.380832pt;}
.ws0_c00121{word-spacing:-17.366944pt;}
.ws4_c00121{word-spacing:-9.607680pt;}
.ws3_c00121{word-spacing:-9.408672pt;}
.ws9_c00121{word-spacing:-0.034720pt;}
.ws34_c00121{word-spacing:-0.029792pt;}
.ws36_c00121{word-spacing:-0.021280pt;}
.ws37_c00121{word-spacing:-0.008512pt;}
.ws12_c00121{word-spacing:-0.006400pt;}
.ws8_c00121{word-spacing:0.000000pt;}
.ws35_c00121{word-spacing:0.004256pt;}
.ws1c_c00121{word-spacing:0.025600pt;}
.ws5_c00121{word-spacing:0.048096pt;}
.ws29_c00121{word-spacing:0.070400pt;}
.ws6_c00121{word-spacing:0.096192pt;}
.ws7_c00121{word-spacing:0.122912pt;}
.ws20_c00121{word-spacing:1.292800pt;}
.ws19_c00121{word-spacing:3.200000pt;}
.ws18_c00121{word-spacing:3.225600pt;}
.ws2c_c00121{word-spacing:3.489920pt;}
.ws2d_c00121{word-spacing:3.506944pt;}
.ws2e_c00121{word-spacing:3.519712pt;}
.wsc_c00121{word-spacing:3.840000pt;}
.wsd_c00121{word-spacing:3.859200pt;}
.ws15_c00121{word-spacing:5.715200pt;}
.ws14_c00121{word-spacing:5.753600pt;}
.wse_c00121{word-spacing:6.073600pt;}
.ws31_c00121{word-spacing:6.677664pt;}
.ws32_c00121{word-spacing:6.690432pt;}
.ws33_c00121{word-spacing:7.022400pt;}
.ws17_c00121{word-spacing:7.961600pt;}
.ws26_c00121{word-spacing:8.019200pt;}
.ws16_c00121{word-spacing:8.108800pt;}
.ws23_c00121{word-spacing:8.307200pt;}
.ws24_c00121{word-spacing:8.326400pt;}
.ws10_c00121{word-spacing:8.582400pt;}
.wsf_c00121{word-spacing:8.640000pt;}
.ws11_c00121{word-spacing:8.678400pt;}
.ws13_c00121{word-spacing:8.742400pt;}
.wsb_c00121{word-spacing:8.960000pt;}
.wsa_c00121{word-spacing:8.972800pt;}
.ws2b_c00121{word-spacing:9.558976pt;}
.ws2a_c00121{word-spacing:9.576000pt;}
.ws25_c00121{word-spacing:10.572800pt;}
.ws2f_c00121{word-spacing:10.844288pt;}
.ws30_c00121{word-spacing:10.865568pt;}
.ws21_c00121{word-spacing:11.180800pt;}
.ws22_c00121{word-spacing:11.270400pt;}
.ws28_c00121{word-spacing:12.480000pt;}
.ws27_c00121{word-spacing:12.492800pt;}
.ws1e_c00121{word-spacing:22.092800pt;}
.ws1f_c00121{word-spacing:22.118400pt;}
.ws1d_c00121{word-spacing:25.939200pt;}
.ws1b_c00121{word-spacing:33.926400pt;}
.ws1a_c00121{word-spacing:33.932800pt;}
._0_c00121{margin-left:-1.015360pt;}
._1_c00121{width:1.088000pt;}
.fs6_c00121{font-size:34.560000pt;}
.fs4_c00121{font-size:37.440000pt;}
.fs5_c00121{font-size:42.560000pt;}
.fs2_c00121{font-size:48.000000pt;}
.fs0_c00121{font-size:53.440000pt;}
.fs1_c00121{font-size:64.000000pt;}
.fs3_c00121{font-size:69.440000pt;}
.y0_c00121{bottom:0.000000pt;}
.y3_c00121{bottom:51.067067pt;}
.y4_c00121{bottom:54.587067pt;}
.y27_c00121{bottom:101.065307pt;}
.y26_c00121{bottom:117.392160pt;}
.y25_c00121{bottom:133.628800pt;}
.y24_c00121{bottom:149.865440pt;}
.y23_c00121{bottom:166.201307pt;}
.y22_c00121{bottom:182.437947pt;}
.y21_c00121{bottom:194.673947pt;}
.y20_c00121{bottom:206.995067pt;}
.y1f_c00121{bottom:219.231067pt;}
.y1e_c00121{bottom:231.467067pt;}
.y1d_c00121{bottom:244.987067pt;}
.y1c_c00121{bottom:263.387067pt;}
.y1b_c00121{bottom:281.787067pt;}
.y1a_c00121{bottom:337.227067pt;}
.y19_c00121{bottom:367.787067pt;}
.y18_c00121{bottom:406.427067pt;}
.y17_c00121{bottom:436.987067pt;}
.y16_c00121{bottom:467.627067pt;}
.y15_c00121{bottom:498.187067pt;}
.y14_c00121{bottom:528.827067pt;}
.y13_c00121{bottom:559.387067pt;}
.y12_c00121{bottom:590.027067pt;}
.y11_c00121{bottom:620.587067pt;}
.y10_c00121{bottom:659.227067pt;}
.yf_c00121{bottom:689.787067pt;}
.ye_c00121{bottom:720.427067pt;}
.yd_c00121{bottom:750.987067pt;}
.yc_c00121{bottom:781.627067pt;}
.yb_c00121{bottom:812.187067pt;}
.ya_c00121{bottom:850.827067pt;}
.y9_c00121{bottom:881.387067pt;}
.y8_c00121{bottom:912.027067pt;}
.y7_c00121{bottom:942.587067pt;}
.y6_c00121{bottom:973.227067pt;}
.y5_c00121{bottom:1013.227067pt;}
.y2_c00121{bottom:1043.387067pt;}
.y1_c00121{bottom:1063.867067pt;}
.h2_c00121{height:42.656250pt;}
.h7_c00121{height:44.388750pt;}
.h8_c00121{height:44.395790pt;}
.h1_c00121{height:44.724687pt;}
.h3_c00121{height:50.062500pt;}
.h5_c00121{height:53.562500pt;}
.h6_c00121{height:57.894062pt;}
.h4_c00121{height:72.423750pt;}
.h0_c00121{height:1122.666667pt;}
.w1_c00121{width:793.333333pt;}
.w0_c00121{width:793.626667pt;}
.x0_c00121{left:0.000000pt;}
.x2_c00121{left:113.440000pt;}
.x1_c00121{left:129.280000pt;}
.x6_c00121{left:137.443840pt;}
.x5_c00121{left:160.720000pt;}
.x4_c00121{left:390.240000pt;}
.x3_c00121{left:396.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_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_2598f009de7bf3affb036175.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.100098;font-style:normal;font-weight:normal;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_6e8227b84d2a120cdbee8081.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;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_c00122;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00122;src:url('chunks/assets/font_1f4e0257f4c85b34ae77d4f1.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00122;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00122{font-family:ff5_c00122;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_c00122;src:url('chunks/assets/font_5177f530edc3ab9431b37bdf.woff2')format("woff");}.ff6_c00122{font-family:ff6_c00122;line-height:1.102051;font-style:normal;font-weight:normal;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_4256d29e0d13dfd2e2158928.woff2')format("woff");}.ff7_c00122{font-family:ff7_c00122;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_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);}
.v3_c00122{vertical-align:-29.880000px;}
.v0_c00122{vertical-align:0.000000px;}
.v1_c00122{vertical-align:15.840000px;}
.v2_c00122{vertical-align:29.880000px;}
.ls17_c00122{letter-spacing:-0.151200px;}
.ls1b_c00122{letter-spacing:-0.050400px;}
.ls19_c00122{letter-spacing:-0.036000px;}
.ls22_c00122{letter-spacing:-0.033516px;}
.ls1c_c00122{letter-spacing:-0.028800px;}
.ls27_c00122{letter-spacing:-0.023940px;}
.ls1e_c00122{letter-spacing:-0.021600px;}
.ls25_c00122{letter-spacing:-0.015552px;}
.ls1a_c00122{letter-spacing:-0.014400px;}
.ls20_c00122{letter-spacing:-0.011664px;}
.ls21_c00122{letter-spacing:-0.007776px;}
.ls1f_c00122{letter-spacing:-0.007200px;}
.ls23_c00122{letter-spacing:-0.003888px;}
.ls16_c00122{letter-spacing:0.000000px;}
.ls8_c00122{letter-spacing:0.007200px;}
.lsb_c00122{letter-spacing:0.014364px;}
.ls7_c00122{letter-spacing:0.014400px;}
.ls14_c00122{letter-spacing:0.018720px;}
.lsf_c00122{letter-spacing:0.019152px;}
.lsa_c00122{letter-spacing:0.021600px;}
.ls15_c00122{letter-spacing:0.028728px;}
.ls9_c00122{letter-spacing:0.028800px;}
.ls12_c00122{letter-spacing:0.033516px;}
.ls3_c00122{letter-spacing:0.033552px;}
.ls13_c00122{letter-spacing:0.043092px;}
.lse_c00122{letter-spacing:0.047880px;}
.ls0_c00122{letter-spacing:0.048096px;}
.ls6_c00122{letter-spacing:0.054756px;}
.lsd_c00122{letter-spacing:0.071820px;}
.ls5_c00122{letter-spacing:0.075492px;}
.ls1d_c00122{letter-spacing:0.093600px;}
.ls18_c00122{letter-spacing:0.101556px;}
.ls4_c00122{letter-spacing:0.109044px;}
.ls10_c00122{letter-spacing:0.189360px;}
.ls11_c00122{letter-spacing:0.351360px;}
.ls24_c00122{letter-spacing:0.353808px;}
.ls26_c00122{letter-spacing:0.373464px;}
.ls28_c00122{letter-spacing:0.737352px;}
.lsc_c00122{letter-spacing:8.631360px;}
.ls2_c00122{letter-spacing:23.291280px;}
.ls1_c00122{letter-spacing:1227.240000px;}
.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;}
}
.ws1_c00122{word-spacing:-21.079044px;}
.ws0_c00122{word-spacing:-19.631556px;}
.ws3_c00122{word-spacing:-18.000000px;}
.ws4_c00122{word-spacing:-13.310640px;}
.ws6_c00122{word-spacing:-11.162448px;}
.ws8_c00122{word-spacing:-10.804752px;}
.ws5_c00122{word-spacing:-10.800864px;}
.ws7_c00122{word-spacing:-10.793088px;}
.ws2_c00122{word-spacing:-10.584756px;}
.wsb_c00122{word-spacing:-0.125820px;}
.ws26_c00122{word-spacing:-0.093600px;}
.ws3c_c00122{word-spacing:-0.023940px;}
.ws14_c00122{word-spacing:-0.014400px;}
.ws2e_c00122{word-spacing:-0.014364px;}
.ws35_c00122{word-spacing:-0.009576px;}
.ws27_c00122{word-spacing:-0.007200px;}
.wsa_c00122{word-spacing:0.000000px;}
.ws2d_c00122{word-spacing:0.004788px;}
.ws25_c00122{word-spacing:0.007200px;}
.wsc_c00122{word-spacing:0.008388px;}
.ws9_c00122{word-spacing:0.042084px;}
.ws1e_c00122{word-spacing:0.093600px;}
.ws1c_c00122{word-spacing:0.331200px;}
.ws1d_c00122{word-spacing:0.338400px;}
.ws34_c00122{word-spacing:1.785924px;}
.ws33_c00122{word-spacing:1.800288px;}
.ws20_c00122{word-spacing:2.167200px;}
.ws18_c00122{word-spacing:3.960000px;}
.ws17_c00122{word-spacing:3.974400px;}
.ws19_c00122{word-spacing:4.327200px;}
.ws1a_c00122{word-spacing:4.341600px;}
.ws24_c00122{word-spacing:6.112800px;}
.ws30_c00122{word-spacing:6.123852px;}
.ws23_c00122{word-spacing:6.177600px;}
.ws31_c00122{word-spacing:6.454224px;}
.ws32_c00122{word-spacing:6.463800px;}
.ws2f_c00122{word-spacing:6.482952px;}
.ws22_c00122{word-spacing:8.294400px;}
.ws21_c00122{word-spacing:8.330400px;}
.ws29_c00122{word-spacing:8.584884px;}
.ws2a_c00122{word-spacing:8.608824px;}
.ws2b_c00122{word-spacing:8.637552px;}
.ws28_c00122{word-spacing:8.642340px;}
.ws2c_c00122{word-spacing:8.690220px;}
.wse_c00122{word-spacing:9.014400px;}
.wsd_c00122{word-spacing:9.050400px;}
.ws15_c00122{word-spacing:9.324000px;}
.ws16_c00122{word-spacing:9.410400px;}
.ws39_c00122{word-spacing:10.064376px;}
.ws37_c00122{word-spacing:10.081584px;}
.ws36_c00122{word-spacing:10.083528px;}
.ws38_c00122{word-spacing:10.121832px;}
.wsf_c00122{word-spacing:10.785600px;}
.ws11_c00122{word-spacing:10.814400px;}
.ws10_c00122{word-spacing:10.836000px;}
.ws12_c00122{word-spacing:10.850400px;}
.ws3a_c00122{word-spacing:11.146464px;}
.ws3b_c00122{word-spacing:11.156040px;}
.ws1b_c00122{word-spacing:15.832800px;}
.ws13_c00122{word-spacing:17.668800px;}
.ws1f_c00122{word-spacing:19.087200px;}
._0_c00122{margin-left:-1.322640px;}
._1_c00122{width:1.283292px;}
._3_c00122{width:6.109632px;}
._2_c00122{width:9.079164px;}
.fc0_c00122{color:rgb(0,0,0);}
.fs7_c00122{font-size:38.880000px;}
.fs5_c00122{font-size:42.120000px;}
.fs6_c00122{font-size:47.880000px;}
.fs1_c00122{font-size:54.000000px;}
.fs0_c00122{font-size:60.120000px;}
.fs2_c00122{font-size:72.000000px;}
.fs3_c00122{font-size:78.120000px;}
.fs4_c00122{font-size:83.880000px;}
.y0_c00122{bottom:0.000000px;}
.y3_c00122{bottom:57.450450px;}
.y24_c00122{bottom:113.709270px;}
.y23_c00122{bottom:132.071250px;}
.y22_c00122{bottom:150.337470px;}
.y21_c00122{bottom:168.603690px;}
.y20_c00122{bottom:182.464950px;}
.y1f_c00122{bottom:196.237470px;}
.y1e_c00122{bottom:214.503690px;}
.y1d_c00122{bottom:228.364950px;}
.y1c_c00122{bottom:242.134230px;}
.y1b_c00122{bottom:260.402970px;}
.y1a_c00122{bottom:278.764950px;}
.y19_c00122{bottom:292.530450px;}
.y18_c00122{bottom:307.740450px;}
.y17_c00122{bottom:328.440450px;}
.y16_c00122{bottom:349.140450px;}
.y15_c00122{bottom:532.200450px;}
.y14_c00122{bottom:566.670450px;}
.y13_c00122{bottom:610.050450px;}
.y12_c00122{bottom:644.520450px;}
.y11_c00122{bottom:678.900450px;}
.y10_c00122{bottom:713.370450px;}
.yf_c00122{bottom:747.750450px;}
.ye_c00122{bottom:782.220450px;}
.yd_c00122{bottom:816.600450px;}
.yc_c00122{bottom:851.070450px;}
.yb_c00122{bottom:885.450450px;}
.ya_c00122{bottom:919.920450px;}
.y9_c00122{bottom:954.300450px;}
.y8_c00122{bottom:988.770450px;}
.y7_c00122{bottom:1023.150450px;}
.y6_c00122{bottom:1057.620450px;}
.y5_c00122{bottom:1092.000450px;}
.y4_c00122{bottom:1138.530450px;}
.y2_c00122{bottom:1177.860450px;}
.y1_c00122{bottom:1196.850450px;}
.h7_c00122{height:47.988281px;}
.h8_c00122{height:49.937344px;}
.h1_c00122{height:50.315273px;}
.h2_c00122{height:56.320312px;}
.h5_c00122{height:60.257812px;}
.h6_c00122{height:65.130820px;}
.h3_c00122{height:72.160312px;}
.h4_c00122{height:81.476719px;}
.h0_c00122{height:1263.000000px;}
.w1_c00122{width:892.500000px;}
.w0_c00122{width:892.830000px;}
.x0_c00122{left:0.000000px;}
.x1_c00122{left:127.620000px;}
.x3_c00122{left:154.617660px;}
.x2_c00122{left:180.810000px;}
@media print{
.v3_c00122{vertical-align:-26.560000pt;}
.v0_c00122{vertical-align:0.000000pt;}
.v1_c00122{vertical-align:14.080000pt;}
.v2_c00122{vertical-align:26.560000pt;}
.ls17_c00122{letter-spacing:-0.134400pt;}
.ls1b_c00122{letter-spacing:-0.044800pt;}
.ls19_c00122{letter-spacing:-0.032000pt;}
.ls22_c00122{letter-spacing:-0.029792pt;}
.ls1c_c00122{letter-spacing:-0.025600pt;}
.ls27_c00122{letter-spacing:-0.021280pt;}
.ls1e_c00122{letter-spacing:-0.019200pt;}
.ls25_c00122{letter-spacing:-0.013824pt;}
.ls1a_c00122{letter-spacing:-0.012800pt;}
.ls20_c00122{letter-spacing:-0.010368pt;}
.ls21_c00122{letter-spacing:-0.006912pt;}
.ls1f_c00122{letter-spacing:-0.006400pt;}
.ls23_c00122{letter-spacing:-0.003456pt;}
.ls16_c00122{letter-spacing:0.000000pt;}
.ls8_c00122{letter-spacing:0.006400pt;}
.lsb_c00122{letter-spacing:0.012768pt;}
.ls7_c00122{letter-spacing:0.012800pt;}
.ls14_c00122{letter-spacing:0.016640pt;}
.lsf_c00122{letter-spacing:0.017024pt;}
.lsa_c00122{letter-spacing:0.019200pt;}
.ls15_c00122{letter-spacing:0.025536pt;}
.ls9_c00122{letter-spacing:0.025600pt;}
.ls12_c00122{letter-spacing:0.029792pt;}
.ls3_c00122{letter-spacing:0.029824pt;}
.ls13_c00122{letter-spacing:0.038304pt;}
.lse_c00122{letter-spacing:0.042560pt;}
.ls0_c00122{letter-spacing:0.042752pt;}
.ls6_c00122{letter-spacing:0.048672pt;}
.lsd_c00122{letter-spacing:0.063840pt;}
.ls5_c00122{letter-spacing:0.067104pt;}
.ls1d_c00122{letter-spacing:0.083200pt;}
.ls18_c00122{letter-spacing:0.090272pt;}
.ls4_c00122{letter-spacing:0.096928pt;}
.ls10_c00122{letter-spacing:0.168320pt;}
.ls11_c00122{letter-spacing:0.312320pt;}
.ls24_c00122{letter-spacing:0.314496pt;}
.ls26_c00122{letter-spacing:0.331968pt;}
.ls28_c00122{letter-spacing:0.655424pt;}
.lsc_c00122{letter-spacing:7.672320pt;}
.ls2_c00122{letter-spacing:20.703360pt;}
.ls1_c00122{letter-spacing:1090.880000pt;}
.ws1_c00122{word-spacing:-18.736928pt;}
.ws0_c00122{word-spacing:-17.450272pt;}
.ws3_c00122{word-spacing:-16.000000pt;}
.ws4_c00122{word-spacing:-11.831680pt;}
.ws6_c00122{word-spacing:-9.922176pt;}
.ws8_c00122{word-spacing:-9.604224pt;}
.ws5_c00122{word-spacing:-9.600768pt;}
.ws7_c00122{word-spacing:-9.593856pt;}
.ws2_c00122{word-spacing:-9.408672pt;}
.wsb_c00122{word-spacing:-0.111840pt;}
.ws26_c00122{word-spacing:-0.083200pt;}
.ws3c_c00122{word-spacing:-0.021280pt;}
.ws14_c00122{word-spacing:-0.012800pt;}
.ws2e_c00122{word-spacing:-0.012768pt;}
.ws35_c00122{word-spacing:-0.008512pt;}
.ws27_c00122{word-spacing:-0.006400pt;}
.wsa_c00122{word-spacing:0.000000pt;}
.ws2d_c00122{word-spacing:0.004256pt;}
.ws25_c00122{word-spacing:0.006400pt;}
.wsc_c00122{word-spacing:0.007456pt;}
.ws9_c00122{word-spacing:0.037408pt;}
.ws1e_c00122{word-spacing:0.083200pt;}
.ws1c_c00122{word-spacing:0.294400pt;}
.ws1d_c00122{word-spacing:0.300800pt;}
.ws34_c00122{word-spacing:1.587488pt;}
.ws33_c00122{word-spacing:1.600256pt;}
.ws20_c00122{word-spacing:1.926400pt;}
.ws18_c00122{word-spacing:3.520000pt;}
.ws17_c00122{word-spacing:3.532800pt;}
.ws19_c00122{word-spacing:3.846400pt;}
.ws1a_c00122{word-spacing:3.859200pt;}
.ws24_c00122{word-spacing:5.433600pt;}
.ws30_c00122{word-spacing:5.443424pt;}
.ws23_c00122{word-spacing:5.491200pt;}
.ws31_c00122{word-spacing:5.737088pt;}
.ws32_c00122{word-spacing:5.745600pt;}
.ws2f_c00122{word-spacing:5.762624pt;}
.ws22_c00122{word-spacing:7.372800pt;}
.ws21_c00122{word-spacing:7.404800pt;}
.ws29_c00122{word-spacing:7.631008pt;}
.ws2a_c00122{word-spacing:7.652288pt;}
.ws2b_c00122{word-spacing:7.677824pt;}
.ws28_c00122{word-spacing:7.682080pt;}
.ws2c_c00122{word-spacing:7.724640pt;}
.wse_c00122{word-spacing:8.012800pt;}
.wsd_c00122{word-spacing:8.044800pt;}
.ws15_c00122{word-spacing:8.288000pt;}
.ws16_c00122{word-spacing:8.364800pt;}
.ws39_c00122{word-spacing:8.946112pt;}
.ws37_c00122{word-spacing:8.961408pt;}
.ws36_c00122{word-spacing:8.963136pt;}
.ws38_c00122{word-spacing:8.997184pt;}
.wsf_c00122{word-spacing:9.587200pt;}
.ws11_c00122{word-spacing:9.612800pt;}
.ws10_c00122{word-spacing:9.632000pt;}
.ws12_c00122{word-spacing:9.644800pt;}
.ws3a_c00122{word-spacing:9.907968pt;}
.ws3b_c00122{word-spacing:9.916480pt;}
.ws1b_c00122{word-spacing:14.073600pt;}
.ws13_c00122{word-spacing:15.705600pt;}
.ws1f_c00122{word-spacing:16.966400pt;}
._0_c00122{margin-left:-1.175680pt;}
._1_c00122{width:1.140704pt;}
._3_c00122{width:5.430784pt;}
._2_c00122{width:8.070368pt;}
.fs7_c00122{font-size:34.560000pt;}
.fs5_c00122{font-size:37.440000pt;}
.fs6_c00122{font-size:42.560000pt;}
.fs1_c00122{font-size:48.000000pt;}
.fs0_c00122{font-size:53.440000pt;}
.fs2_c00122{font-size:64.000000pt;}
.fs3_c00122{font-size:69.440000pt;}
.fs4_c00122{font-size:74.560000pt;}
.y0_c00122{bottom:0.000000pt;}
.y3_c00122{bottom:51.067067pt;}
.y24_c00122{bottom:101.074907pt;}
.y23_c00122{bottom:117.396667pt;}
.y22_c00122{bottom:133.633307pt;}
.y21_c00122{bottom:149.869947pt;}
.y20_c00122{bottom:162.191067pt;}
.y1f_c00122{bottom:174.433307pt;}
.y1e_c00122{bottom:190.669947pt;}
.y1d_c00122{bottom:202.991067pt;}
.y1c_c00122{bottom:215.230427pt;}
.y1b_c00122{bottom:231.469307pt;}
.y1a_c00122{bottom:247.791067pt;}
.y19_c00122{bottom:260.027067pt;}
.y18_c00122{bottom:273.547067pt;}
.y17_c00122{bottom:291.947067pt;}
.y16_c00122{bottom:310.347067pt;}
.y15_c00122{bottom:473.067067pt;}
.y14_c00122{bottom:503.707067pt;}
.y13_c00122{bottom:542.267067pt;}
.y12_c00122{bottom:572.907067pt;}
.y11_c00122{bottom:603.467067pt;}
.y10_c00122{bottom:634.107067pt;}
.yf_c00122{bottom:664.667067pt;}
.ye_c00122{bottom:695.307067pt;}
.yd_c00122{bottom:725.867067pt;}
.yc_c00122{bottom:756.507067pt;}
.yb_c00122{bottom:787.067067pt;}
.ya_c00122{bottom:817.707067pt;}
.y9_c00122{bottom:848.267067pt;}
.y8_c00122{bottom:878.907067pt;}
.y7_c00122{bottom:909.467067pt;}
.y6_c00122{bottom:940.107067pt;}
.y5_c00122{bottom:970.667067pt;}
.y4_c00122{bottom:1012.027067pt;}
.y2_c00122{bottom:1046.987067pt;}
.y1_c00122{bottom:1063.867067pt;}
.h7_c00122{height:42.656250pt;}
.h8_c00122{height:44.388750pt;}
.h1_c00122{height:44.724687pt;}
.h2_c00122{height:50.062500pt;}
.h5_c00122{height:53.562500pt;}
.h6_c00122{height:57.894062pt;}
.h3_c00122{height:64.142500pt;}
.h4_c00122{height:72.423750pt;}
.h0_c00122{height:1122.666667pt;}
.w1_c00122{width:793.333333pt;}
.w0_c00122{width:793.626667pt;}
.x0_c00122{left:0.000000pt;}
.x1_c00122{left:113.440000pt;}
.x3_c00122{left:137.437920pt;}
.x2_c00122{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_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_4184181c203e0c84e26521d2.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00123;src:url('chunks/assets/font_a8fd58fb6089a1c5994bb3f4.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00123;src:url('chunks/assets/font_a51218c1f2594e8b330c7d25.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00123;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;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_c00123;src:url('chunks/assets/font_397f4962b1a79c0b39e1edcf.woff2')format("woff");}.ff6_c00123{font-family:ff6_c00123;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00123;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff7_c00123{font-family:ff7_c00123;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00123;src:url('chunks/assets/font_2944105c3f7cc535135d0e59.woff2')format("woff");}.ff8_c00123{font-family:ff8_c00123;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_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;}
.v1_c00123{vertical-align:29.880000px;}
.ls1b_c00123{letter-spacing:-0.151200px;}
.ls1f_c00123{letter-spacing:-0.108000px;}
.ls19_c00123{letter-spacing:-0.048096px;}
.ls21_c00123{letter-spacing:-0.036000px;}
.ls1d_c00123{letter-spacing:-0.031248px;}
.ls23_c00123{letter-spacing:-0.028800px;}
.ls1e_c00123{letter-spacing:-0.021600px;}
.ls18_c00123{letter-spacing:-0.018036px;}
.ls26_c00123{letter-spacing:-0.015552px;}
.ls24_c00123{letter-spacing:-0.014400px;}
.ls27_c00123{letter-spacing:-0.011664px;}
.ls1c_c00123{letter-spacing:-0.007812px;}
.ls28_c00123{letter-spacing:-0.007776px;}
.ls20_c00123{letter-spacing:-0.007200px;}
.ls29_c00123{letter-spacing:-0.003888px;}
.ls1a_c00123{letter-spacing:0.000000px;}
.ls25_c00123{letter-spacing:0.007200px;}
.lsb_c00123{letter-spacing:0.014364px;}
.ls8_c00123{letter-spacing:0.014400px;}
.ls12_c00123{letter-spacing:0.019152px;}
.ls5_c00123{letter-spacing:0.021600px;}
.ls15_c00123{letter-spacing:0.033516px;}
.ls2_c00123{letter-spacing:0.036000px;}
.ls0_c00123{letter-spacing:0.036072px;}
.ls13_c00123{letter-spacing:0.038304px;}
.ls17_c00123{letter-spacing:0.043092px;}
.lse_c00123{letter-spacing:0.047880px;}
.ls3_c00123{letter-spacing:0.050400px;}
.ls4_c00123{letter-spacing:0.054756px;}
.lsc_c00123{letter-spacing:0.057456px;}
.lsd_c00123{letter-spacing:0.067032px;}
.ls10_c00123{letter-spacing:0.075960px;}
.ls22_c00123{letter-spacing:0.093600px;}
.ls6_c00123{letter-spacing:0.144000px;}
.ls16_c00123{letter-spacing:0.189360px;}
.ls11_c00123{letter-spacing:0.351360px;}
.ls2a_c00123{letter-spacing:0.353808px;}
.ls14_c00123{letter-spacing:0.378720px;}
.lsf_c00123{letter-spacing:5.391360px;}
.ls9_c00123{letter-spacing:44.784000px;}
.ls7_c00123{letter-spacing:65.304000px;}
.lsa_c00123{letter-spacing:66.024000px;}
.ls1_c00123{letter-spacing:83.041560px;}
.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:-19.522188px;}
.ws3_c00123{word-spacing:-13.310640px;}
.ws6_c00123{word-spacing:-11.162448px;}
.ws5_c00123{word-spacing:-10.804752px;}
.ws4_c00123{word-spacing:-10.800864px;}
.ws2_c00123{word-spacing:-10.793088px;}
.ws1_c00123{word-spacing:-10.584756px;}
.ws15_c00123{word-spacing:-0.453600px;}
.ws28_c00123{word-spacing:-0.093600px;}
.wsb_c00123{word-spacing:-0.062496px;}
.ws14_c00123{word-spacing:-0.050400px;}
.ws35_c00123{word-spacing:-0.038304px;}
.ws36_c00123{word-spacing:-0.028728px;}
.ws38_c00123{word-spacing:-0.023940px;}
.ws33_c00123{word-spacing:-0.019152px;}
.ws37_c00123{word-spacing:-0.014364px;}
.wsa_c00123{word-spacing:0.000000px;}
.ws34_c00123{word-spacing:0.004788px;}
.ws12_c00123{word-spacing:0.007200px;}
.ws19_c00123{word-spacing:0.021600px;}
.ws21_c00123{word-spacing:0.050400px;}
.ws7_c00123{word-spacing:0.054108px;}
.ws8_c00123{word-spacing:0.108216px;}
.ws9_c00123{word-spacing:0.138276px;}
.ws13_c00123{word-spacing:0.180000px;}
.ws26_c00123{word-spacing:1.324800px;}
.ws25_c00123{word-spacing:1.461600px;}
.ws1f_c00123{word-spacing:3.240000px;}
.ws20_c00123{word-spacing:3.355200px;}
.ws29_c00123{word-spacing:4.017600px;}
.ws2a_c00123{word-spacing:4.024800px;}
.ws2c_c00123{word-spacing:4.312800px;}
.ws2b_c00123{word-spacing:4.341600px;}
.ws2d_c00123{word-spacing:4.716000px;}
.ws31_c00123{word-spacing:5.348196px;}
.ws30_c00123{word-spacing:5.357772px;}
.ws32_c00123{word-spacing:5.367348px;}
.ws2f_c00123{word-spacing:5.372136px;}
.ws2e_c00123{word-spacing:5.400864px;}
.ws1c_c00123{word-spacing:6.508800px;}
.ws18_c00123{word-spacing:10.778400px;}
.ws17_c00123{word-spacing:10.800000px;}
.ws24_c00123{word-spacing:11.102400px;}
.ws23_c00123{word-spacing:11.188800px;}
.ws11_c00123{word-spacing:12.909600px;}
.ws10_c00123{word-spacing:12.924000px;}
.ws1a_c00123{word-spacing:12.945600px;}
.wse_c00123{word-spacing:12.960000px;}
.wsf_c00123{word-spacing:13.068000px;}
.ws1b_c00123{word-spacing:13.082400px;}
.ws22_c00123{word-spacing:15.148800px;}
.wsc_c00123{word-spacing:15.480000px;}
.wsd_c00123{word-spacing:15.501600px;}
.ws1e_c00123{word-spacing:16.963200px;}
.ws27_c00123{word-spacing:18.741600px;}
.ws16_c00123{word-spacing:22.665600px;}
.ws1d_c00123{word-spacing:25.574400px;}
._0_c00123{margin-left:-1.142280px;}
._1_c00123{width:1.000800px;}
.fc0_c00123{color:rgb(0,0,0);}
.fs6_c00123{font-size:38.880000px;}
.fs4_c00123{font-size:42.120000px;}
.fs5_c00123{font-size:47.880000px;}
.fs2_c00123{font-size:54.000000px;}
.fs0_c00123{font-size:60.120000px;}
.fs1_c00123{font-size:72.000000px;}
.fs3_c00123{font-size:78.120000px;}
.y0_c00123{bottom:0.000000px;}
.y3_c00123{bottom:57.450450px;}
.y4_c00123{bottom:61.410450px;}
.y24_c00123{bottom:113.702250px;}
.y23_c00123{bottom:132.064230px;}
.y22_c00123{bottom:150.332400px;}
.y21_c00123{bottom:168.598620px;}
.y20_c00123{bottom:186.964230px;}
.y1f_c00123{bottom:205.230450px;}
.y1e_c00123{bottom:219.000450px;}
.y1d_c00123{bottom:234.210450px;}
.y1c_c00123{bottom:254.910450px;}
.y1b_c00123{bottom:275.610450px;}
.y1a_c00123{bottom:361.380450px;}
.y19_c00123{bottom:395.760600px;}
.y18_c00123{bottom:430.230600px;}
.y17_c00123{bottom:473.610450px;}
.y16_c00123{bottom:508.080450px;}
.y15_c00123{bottom:542.460450px;}
.y14_c00123{bottom:576.930450px;}
.y13_c00123{bottom:611.310450px;}
.y12_c00123{bottom:654.780600px;}
.y11_c00123{bottom:689.160600px;}
.y10_c00123{bottom:723.630600px;}
.yf_c00123{bottom:758.010600px;}
.ye_c00123{bottom:792.480600px;}
.yd_c00123{bottom:835.860450px;}
.yc_c00123{bottom:870.330450px;}
.yb_c00123{bottom:913.710450px;}
.ya_c00123{bottom:948.180450px;}
.y9_c00123{bottom:982.560450px;}
.y8_c00123{bottom:1026.030450px;}
.y7_c00123{bottom:1060.410450px;}
.y6_c00123{bottom:1094.880450px;}
.y5_c00123{bottom:1139.880450px;}
.y2_c00123{bottom:1173.810450px;}
.y1_c00123{bottom:1196.850450px;}
.h2_c00123{height:47.988281px;}
.h9_c00123{height:49.937344px;}
.h1_c00123{height:50.315273px;}
.h3_c00123{height:56.320312px;}
.h5_c00123{height:60.257812px;}
.h8_c00123{height:65.130220px;}
.h6_c00123{height:65.130820px;}
.h7_c00123{height:75.093750px;}
.h4_c00123{height:81.476719px;}
.h0_c00123{height:1263.000000px;}
.w1_c00123{width:892.500000px;}
.w0_c00123{width:892.830000px;}
.x0_c00123{left:0.000000px;}
.x2_c00123{left:127.620000px;}
.x1_c00123{left:145.440000px;}
.x6_c00123{left:154.620000px;}
.x5_c00123{left:180.810000px;}
.x7_c00123{left:208.620000px;}
.x8_c00123{left:235.620000px;}
.x4_c00123{left:439.020000px;}
.x3_c00123{left:446.490000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.v1_c00123{vertical-align:26.560000pt;}
.ls1b_c00123{letter-spacing:-0.134400pt;}
.ls1f_c00123{letter-spacing:-0.096000pt;}
.ls19_c00123{letter-spacing:-0.042752pt;}
.ls21_c00123{letter-spacing:-0.032000pt;}
.ls1d_c00123{letter-spacing:-0.027776pt;}
.ls23_c00123{letter-spacing:-0.025600pt;}
.ls1e_c00123{letter-spacing:-0.019200pt;}
.ls18_c00123{letter-spacing:-0.016032pt;}
.ls26_c00123{letter-spacing:-0.013824pt;}
.ls24_c00123{letter-spacing:-0.012800pt;}
.ls27_c00123{letter-spacing:-0.010368pt;}
.ls1c_c00123{letter-spacing:-0.006944pt;}
.ls28_c00123{letter-spacing:-0.006912pt;}
.ls20_c00123{letter-spacing:-0.006400pt;}
.ls29_c00123{letter-spacing:-0.003456pt;}
.ls1a_c00123{letter-spacing:0.000000pt;}
.ls25_c00123{letter-spacing:0.006400pt;}
.lsb_c00123{letter-spacing:0.012768pt;}
.ls8_c00123{letter-spacing:0.012800pt;}
.ls12_c00123{letter-spacing:0.017024pt;}
.ls5_c00123{letter-spacing:0.019200pt;}
.ls15_c00123{letter-spacing:0.029792pt;}
.ls2_c00123{letter-spacing:0.032000pt;}
.ls0_c00123{letter-spacing:0.032064pt;}
.ls13_c00123{letter-spacing:0.034048pt;}
.ls17_c00123{letter-spacing:0.038304pt;}
.lse_c00123{letter-spacing:0.042560pt;}
.ls3_c00123{letter-spacing:0.044800pt;}
.ls4_c00123{letter-spacing:0.048672pt;}
.lsc_c00123{letter-spacing:0.051072pt;}
.lsd_c00123{letter-spacing:0.059584pt;}
.ls10_c00123{letter-spacing:0.067520pt;}
.ls22_c00123{letter-spacing:0.083200pt;}
.ls6_c00123{letter-spacing:0.128000pt;}
.ls16_c00123{letter-spacing:0.168320pt;}
.ls11_c00123{letter-spacing:0.312320pt;}
.ls2a_c00123{letter-spacing:0.314496pt;}
.ls14_c00123{letter-spacing:0.336640pt;}
.lsf_c00123{letter-spacing:4.792320pt;}
.ls9_c00123{letter-spacing:39.808000pt;}
.ls7_c00123{letter-spacing:58.048000pt;}
.lsa_c00123{letter-spacing:58.688000pt;}
.ls1_c00123{letter-spacing:73.814720pt;}
.ws0_c00123{word-spacing:-17.353056pt;}
.ws3_c00123{word-spacing:-11.831680pt;}
.ws6_c00123{word-spacing:-9.922176pt;}
.ws5_c00123{word-spacing:-9.604224pt;}
.ws4_c00123{word-spacing:-9.600768pt;}
.ws2_c00123{word-spacing:-9.593856pt;}
.ws1_c00123{word-spacing:-9.408672pt;}
.ws15_c00123{word-spacing:-0.403200pt;}
.ws28_c00123{word-spacing:-0.083200pt;}
.wsb_c00123{word-spacing:-0.055552pt;}
.ws14_c00123{word-spacing:-0.044800pt;}
.ws35_c00123{word-spacing:-0.034048pt;}
.ws36_c00123{word-spacing:-0.025536pt;}
.ws38_c00123{word-spacing:-0.021280pt;}
.ws33_c00123{word-spacing:-0.017024pt;}
.ws37_c00123{word-spacing:-0.012768pt;}
.wsa_c00123{word-spacing:0.000000pt;}
.ws34_c00123{word-spacing:0.004256pt;}
.ws12_c00123{word-spacing:0.006400pt;}
.ws19_c00123{word-spacing:0.019200pt;}
.ws21_c00123{word-spacing:0.044800pt;}
.ws7_c00123{word-spacing:0.048096pt;}
.ws8_c00123{word-spacing:0.096192pt;}
.ws9_c00123{word-spacing:0.122912pt;}
.ws13_c00123{word-spacing:0.160000pt;}
.ws26_c00123{word-spacing:1.177600pt;}
.ws25_c00123{word-spacing:1.299200pt;}
.ws1f_c00123{word-spacing:2.880000pt;}
.ws20_c00123{word-spacing:2.982400pt;}
.ws29_c00123{word-spacing:3.571200pt;}
.ws2a_c00123{word-spacing:3.577600pt;}
.ws2c_c00123{word-spacing:3.833600pt;}
.ws2b_c00123{word-spacing:3.859200pt;}
.ws2d_c00123{word-spacing:4.192000pt;}
.ws31_c00123{word-spacing:4.753952pt;}
.ws30_c00123{word-spacing:4.762464pt;}
.ws32_c00123{word-spacing:4.770976pt;}
.ws2f_c00123{word-spacing:4.775232pt;}
.ws2e_c00123{word-spacing:4.800768pt;}
.ws1c_c00123{word-spacing:5.785600pt;}
.ws18_c00123{word-spacing:9.580800pt;}
.ws17_c00123{word-spacing:9.600000pt;}
.ws24_c00123{word-spacing:9.868800pt;}
.ws23_c00123{word-spacing:9.945600pt;}
.ws11_c00123{word-spacing:11.475200pt;}
.ws10_c00123{word-spacing:11.488000pt;}
.ws1a_c00123{word-spacing:11.507200pt;}
.wse_c00123{word-spacing:11.520000pt;}
.wsf_c00123{word-spacing:11.616000pt;}
.ws1b_c00123{word-spacing:11.628800pt;}
.ws22_c00123{word-spacing:13.465600pt;}
.wsc_c00123{word-spacing:13.760000pt;}
.wsd_c00123{word-spacing:13.779200pt;}
.ws1e_c00123{word-spacing:15.078400pt;}
.ws27_c00123{word-spacing:16.659200pt;}
.ws16_c00123{word-spacing:20.147200pt;}
.ws1d_c00123{word-spacing:22.732800pt;}
._0_c00123{margin-left:-1.015360pt;}
._1_c00123{width:0.889600pt;}
.fs6_c00123{font-size:34.560000pt;}
.fs4_c00123{font-size:37.440000pt;}
.fs5_c00123{font-size:42.560000pt;}
.fs2_c00123{font-size:48.000000pt;}
.fs0_c00123{font-size:53.440000pt;}
.fs1_c00123{font-size:64.000000pt;}
.fs3_c00123{font-size:69.440000pt;}
.y0_c00123{bottom:0.000000pt;}
.y3_c00123{bottom:51.067067pt;}
.y4_c00123{bottom:54.587067pt;}
.y24_c00123{bottom:101.068667pt;}
.y23_c00123{bottom:117.390427pt;}
.y22_c00123{bottom:133.628800pt;}
.y21_c00123{bottom:149.865440pt;}
.y20_c00123{bottom:166.190427pt;}
.y1f_c00123{bottom:182.427067pt;}
.y1e_c00123{bottom:194.667067pt;}
.y1d_c00123{bottom:208.187067pt;}
.y1c_c00123{bottom:226.587067pt;}
.y1b_c00123{bottom:244.987067pt;}
.y1a_c00123{bottom:321.227067pt;}
.y19_c00123{bottom:351.787200pt;}
.y18_c00123{bottom:382.427200pt;}
.y17_c00123{bottom:420.987067pt;}
.y16_c00123{bottom:451.627067pt;}
.y15_c00123{bottom:482.187067pt;}
.y14_c00123{bottom:512.827067pt;}
.y13_c00123{bottom:543.387067pt;}
.y12_c00123{bottom:582.027200pt;}
.y11_c00123{bottom:612.587200pt;}
.y10_c00123{bottom:643.227200pt;}
.yf_c00123{bottom:673.787200pt;}
.ye_c00123{bottom:704.427200pt;}
.yd_c00123{bottom:742.987067pt;}
.yc_c00123{bottom:773.627067pt;}
.yb_c00123{bottom:812.187067pt;}
.ya_c00123{bottom:842.827067pt;}
.y9_c00123{bottom:873.387067pt;}
.y8_c00123{bottom:912.027067pt;}
.y7_c00123{bottom:942.587067pt;}
.y6_c00123{bottom:973.227067pt;}
.y5_c00123{bottom:1013.227067pt;}
.y2_c00123{bottom:1043.387067pt;}
.y1_c00123{bottom:1063.867067pt;}
.h2_c00123{height:42.656250pt;}
.h9_c00123{height:44.388750pt;}
.h1_c00123{height:44.724687pt;}
.h3_c00123{height:50.062500pt;}
.h5_c00123{height:53.562500pt;}
.h8_c00123{height:57.893529pt;}
.h6_c00123{height:57.894063pt;}
.h7_c00123{height:66.750000pt;}
.h4_c00123{height:72.423750pt;}
.h0_c00123{height:1122.666667pt;}
.w1_c00123{width:793.333333pt;}
.w0_c00123{width:793.626667pt;}
.x0_c00123{left:0.000000pt;}
.x2_c00123{left:113.440000pt;}
.x1_c00123{left:129.280000pt;}
.x6_c00123{left:137.440000pt;}
.x5_c00123{left:160.720000pt;}
.x7_c00123{left:185.440000pt;}
.x8_c00123{left:209.440000pt;}
.x4_c00123{left:390.240000pt;}
.x3_c00123{left:396.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_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_7678a6534e3afdef3c689fb3.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.100098;font-style:normal;font-weight:normal;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_58f4eb9f6d6664421ce57509.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;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_c00124;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00124;src:url('chunks/assets/font_a7f16c99dc676563840f5ec2.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;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_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;}
.v1_c00124{vertical-align:15.840000px;}
.v2_c00124{vertical-align:29.880000px;}
.ls11_c00124{letter-spacing:-0.151200px;}
.ls18_c00124{letter-spacing:-0.043200px;}
.ls17_c00124{letter-spacing:-0.036000px;}
.ls14_c00124{letter-spacing:-0.028800px;}
.ls12_c00124{letter-spacing:-0.021600px;}
.ls13_c00124{letter-spacing:-0.014400px;}
.ls16_c00124{letter-spacing:-0.007200px;}
.ls19_c00124{letter-spacing:-0.003888px;}
.ls10_c00124{letter-spacing:0.000000px;}
.ls4_c00124{letter-spacing:0.007200px;}
.ls9_c00124{letter-spacing:0.014364px;}
.ls3_c00124{letter-spacing:0.014400px;}
.ls7_c00124{letter-spacing:0.021600px;}
.lsc_c00124{letter-spacing:0.028728px;}
.lse_c00124{letter-spacing:0.033516px;}
.lsd_c00124{letter-spacing:0.043092px;}
.lsb_c00124{letter-spacing:0.047880px;}
.ls0_c00124{letter-spacing:0.048096px;}
.ls8_c00124{letter-spacing:0.050400px;}
.ls2_c00124{letter-spacing:0.054756px;}
.lsf_c00124{letter-spacing:0.057456px;}
.ls15_c00124{letter-spacing:0.093600px;}
.ls5_c00124{letter-spacing:0.144000px;}
.lsa_c00124{letter-spacing:0.378720px;}
.ls6_c00124{letter-spacing:66.024000px;}
.ls1_c00124{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00124{word-spacing:-18.021600px;}
.ws1_c00124{word-spacing:-18.014400px;}
.ws3_c00124{word-spacing:-17.964000px;}
.ws4_c00124{word-spacing:-17.956800px;}
.ws5_c00124{word-spacing:-10.804752px;}
.ws0_c00124{word-spacing:-10.584756px;}
.wsb_c00124{word-spacing:-0.446400px;}
.ws18_c00124{word-spacing:-0.093600px;}
.ws2c_c00124{word-spacing:-0.038304px;}
.ws28_c00124{word-spacing:-0.028728px;}
.ws2b_c00124{word-spacing:-0.023940px;}
.ws2a_c00124{word-spacing:-0.014364px;}
.ws29_c00124{word-spacing:-0.009576px;}
.ws7_c00124{word-spacing:0.000000px;}
.ws27_c00124{word-spacing:0.004788px;}
.ws17_c00124{word-spacing:0.007200px;}
.ws23_c00124{word-spacing:0.014400px;}
.ws12_c00124{word-spacing:0.021600px;}
.ws6_c00124{word-spacing:0.042084px;}
.wsa_c00124{word-spacing:0.208800px;}
.ws11_c00124{word-spacing:0.741600px;}
.ws10_c00124{word-spacing:0.777600px;}
.ws1c_c00124{word-spacing:2.469600px;}
.ws1b_c00124{word-spacing:2.548800px;}
.ws9_c00124{word-spacing:3.182400px;}
.ws8_c00124{word-spacing:3.261600px;}
.ws14_c00124{word-spacing:5.025600px;}
.wsf_c00124{word-spacing:5.061600px;}
.wse_c00124{word-spacing:5.119200px;}
.ws13_c00124{word-spacing:6.134400px;}
.ws15_c00124{word-spacing:8.251200px;}
.ws16_c00124{word-spacing:8.301600px;}
.ws22_c00124{word-spacing:11.952000px;}
.ws1a_c00124{word-spacing:14.104800px;}
.ws19_c00124{word-spacing:14.760000px;}
.ws24_c00124{word-spacing:14.774400px;}
.wsd_c00124{word-spacing:16.221600px;}
.wsc_c00124{word-spacing:16.293600px;}
.ws26_c00124{word-spacing:18.691200px;}
.ws25_c00124{word-spacing:18.734400px;}
.ws21_c00124{word-spacing:20.880000px;}
.ws1e_c00124{word-spacing:23.738400px;}
.ws1d_c00124{word-spacing:23.767200px;}
.ws1f_c00124{word-spacing:31.687200px;}
.ws20_c00124{word-spacing:31.701600px;}
._0_c00124{margin-left:-1.322640px;}
._1_c00124{width:1.000800px;}
.fc0_c00124{color:rgb(0,0,0);}
.fs5_c00124{font-size:38.880000px;}
.fs3_c00124{font-size:42.120000px;}
.fs4_c00124{font-size:47.880000px;}
.fs1_c00124{font-size:54.000000px;}
.fs0_c00124{font-size:60.120000px;}
.fs2_c00124{font-size:72.000000px;}
.y0_c00124{bottom:0.000000px;}
.y3_c00124{bottom:57.450450px;}
.y26_c00124{bottom:113.713410px;}
.y25_c00124{bottom:132.075390px;}
.y24_c00124{bottom:150.341610px;}
.y23_c00124{bottom:168.607830px;}
.y22_c00124{bottom:186.969810px;}
.y21_c00124{bottom:205.236030px;}
.y20_c00124{bottom:223.502250px;}
.y1f_c00124{bottom:241.864230px;}
.y1e_c00124{bottom:260.130450px;}
.y1d_c00124{bottom:275.340450px;}
.y1c_c00124{bottom:296.040450px;}
.y1b_c00124{bottom:316.740450px;}
.y1a_c00124{bottom:356.790450px;}
.y19_c00124{bottom:391.260450px;}
.y18_c00124{bottom:434.640450px;}
.y17_c00124{bottom:469.110450px;}
.y16_c00124{bottom:503.490450px;}
.y15_c00124{bottom:537.960450px;}
.y14_c00124{bottom:581.340450px;}
.y13_c00124{bottom:615.810450px;}
.y12_c00124{bottom:650.190450px;}
.y11_c00124{bottom:684.660450px;}
.y10_c00124{bottom:719.040600px;}
.yf_c00124{bottom:753.510600px;}
.ye_c00124{bottom:787.890600px;}
.yd_c00124{bottom:822.360450px;}
.yc_c00124{bottom:856.740450px;}
.yb_c00124{bottom:891.210450px;}
.ya_c00124{bottom:925.590450px;}
.y9_c00124{bottom:969.060450px;}
.y8_c00124{bottom:1003.440450px;}
.y7_c00124{bottom:1037.910450px;}
.y6_c00124{bottom:1072.290450px;}
.y5_c00124{bottom:1106.760450px;}
.y4_c00124{bottom:1141.140450px;}
.y2_c00124{bottom:1177.860450px;}
.y1_c00124{bottom:1196.850450px;}
.h8_c00124{height:47.988281px;}
.h9_c00124{height:49.937344px;}
.h1_c00124{height:50.315273px;}
.h2_c00124{height:56.320312px;}
.h4_c00124{height:60.257812px;}
.h7_c00124{height:65.130220px;}
.h5_c00124{height:65.130820px;}
.h3_c00124{height:72.160312px;}
.h6_c00124{height:75.093750px;}
.h0_c00124{height:1263.000000px;}
.w1_c00124{width:892.500000px;}
.w0_c00124{width:892.830000px;}
.x0_c00124{left:0.000000px;}
.x1_c00124{left:127.620000px;}
.x4_c00124{left:154.440000px;}
.x2_c00124{left:181.170000px;}
.x3_c00124{left:207.180000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.v1_c00124{vertical-align:14.080000pt;}
.v2_c00124{vertical-align:26.560000pt;}
.ls11_c00124{letter-spacing:-0.134400pt;}
.ls18_c00124{letter-spacing:-0.038400pt;}
.ls17_c00124{letter-spacing:-0.032000pt;}
.ls14_c00124{letter-spacing:-0.025600pt;}
.ls12_c00124{letter-spacing:-0.019200pt;}
.ls13_c00124{letter-spacing:-0.012800pt;}
.ls16_c00124{letter-spacing:-0.006400pt;}
.ls19_c00124{letter-spacing:-0.003456pt;}
.ls10_c00124{letter-spacing:0.000000pt;}
.ls4_c00124{letter-spacing:0.006400pt;}
.ls9_c00124{letter-spacing:0.012768pt;}
.ls3_c00124{letter-spacing:0.012800pt;}
.ls7_c00124{letter-spacing:0.019200pt;}
.lsc_c00124{letter-spacing:0.025536pt;}
.lse_c00124{letter-spacing:0.029792pt;}
.lsd_c00124{letter-spacing:0.038304pt;}
.lsb_c00124{letter-spacing:0.042560pt;}
.ls0_c00124{letter-spacing:0.042752pt;}
.ls8_c00124{letter-spacing:0.044800pt;}
.ls2_c00124{letter-spacing:0.048672pt;}
.lsf_c00124{letter-spacing:0.051072pt;}
.ls15_c00124{letter-spacing:0.083200pt;}
.ls5_c00124{letter-spacing:0.128000pt;}
.lsa_c00124{letter-spacing:0.336640pt;}
.ls6_c00124{letter-spacing:58.688000pt;}
.ls1_c00124{letter-spacing:1077.440000pt;}
.ws2_c00124{word-spacing:-16.019200pt;}
.ws1_c00124{word-spacing:-16.012800pt;}
.ws3_c00124{word-spacing:-15.968000pt;}
.ws4_c00124{word-spacing:-15.961600pt;}
.ws5_c00124{word-spacing:-9.604224pt;}
.ws0_c00124{word-spacing:-9.408672pt;}
.wsb_c00124{word-spacing:-0.396800pt;}
.ws18_c00124{word-spacing:-0.083200pt;}
.ws2c_c00124{word-spacing:-0.034048pt;}
.ws28_c00124{word-spacing:-0.025536pt;}
.ws2b_c00124{word-spacing:-0.021280pt;}
.ws2a_c00124{word-spacing:-0.012768pt;}
.ws29_c00124{word-spacing:-0.008512pt;}
.ws7_c00124{word-spacing:0.000000pt;}
.ws27_c00124{word-spacing:0.004256pt;}
.ws17_c00124{word-spacing:0.006400pt;}
.ws23_c00124{word-spacing:0.012800pt;}
.ws12_c00124{word-spacing:0.019200pt;}
.ws6_c00124{word-spacing:0.037408pt;}
.wsa_c00124{word-spacing:0.185600pt;}
.ws11_c00124{word-spacing:0.659200pt;}
.ws10_c00124{word-spacing:0.691200pt;}
.ws1c_c00124{word-spacing:2.195200pt;}
.ws1b_c00124{word-spacing:2.265600pt;}
.ws9_c00124{word-spacing:2.828800pt;}
.ws8_c00124{word-spacing:2.899200pt;}
.ws14_c00124{word-spacing:4.467200pt;}
.wsf_c00124{word-spacing:4.499200pt;}
.wse_c00124{word-spacing:4.550400pt;}
.ws13_c00124{word-spacing:5.452800pt;}
.ws15_c00124{word-spacing:7.334400pt;}
.ws16_c00124{word-spacing:7.379200pt;}
.ws22_c00124{word-spacing:10.624000pt;}
.ws1a_c00124{word-spacing:12.537600pt;}
.ws19_c00124{word-spacing:13.120000pt;}
.ws24_c00124{word-spacing:13.132800pt;}
.wsd_c00124{word-spacing:14.419200pt;}
.wsc_c00124{word-spacing:14.483200pt;}
.ws26_c00124{word-spacing:16.614400pt;}
.ws25_c00124{word-spacing:16.652800pt;}
.ws21_c00124{word-spacing:18.560000pt;}
.ws1e_c00124{word-spacing:21.100800pt;}
.ws1d_c00124{word-spacing:21.126400pt;}
.ws1f_c00124{word-spacing:28.166400pt;}
.ws20_c00124{word-spacing:28.179200pt;}
._0_c00124{margin-left:-1.175680pt;}
._1_c00124{width:0.889600pt;}
.fs5_c00124{font-size:34.560000pt;}
.fs3_c00124{font-size:37.440000pt;}
.fs4_c00124{font-size:42.560000pt;}
.fs1_c00124{font-size:48.000000pt;}
.fs0_c00124{font-size:53.440000pt;}
.fs2_c00124{font-size:64.000000pt;}
.y0_c00124{bottom:0.000000pt;}
.y3_c00124{bottom:51.067067pt;}
.y26_c00124{bottom:101.078587pt;}
.y25_c00124{bottom:117.400347pt;}
.y24_c00124{bottom:133.636987pt;}
.y23_c00124{bottom:149.873627pt;}
.y22_c00124{bottom:166.195387pt;}
.y21_c00124{bottom:182.432027pt;}
.y20_c00124{bottom:198.668667pt;}
.y1f_c00124{bottom:214.990427pt;}
.y1e_c00124{bottom:231.227067pt;}
.y1d_c00124{bottom:244.747067pt;}
.y1c_c00124{bottom:263.147067pt;}
.y1b_c00124{bottom:281.547067pt;}
.y1a_c00124{bottom:317.147067pt;}
.y19_c00124{bottom:347.787067pt;}
.y18_c00124{bottom:386.347067pt;}
.y17_c00124{bottom:416.987067pt;}
.y16_c00124{bottom:447.547067pt;}
.y15_c00124{bottom:478.187067pt;}
.y14_c00124{bottom:516.747067pt;}
.y13_c00124{bottom:547.387067pt;}
.y12_c00124{bottom:577.947067pt;}
.y11_c00124{bottom:608.587067pt;}
.y10_c00124{bottom:639.147200pt;}
.yf_c00124{bottom:669.787200pt;}
.ye_c00124{bottom:700.347200pt;}
.yd_c00124{bottom:730.987067pt;}
.yc_c00124{bottom:761.547067pt;}
.yb_c00124{bottom:792.187067pt;}
.ya_c00124{bottom:822.747067pt;}
.y9_c00124{bottom:861.387067pt;}
.y8_c00124{bottom:891.947067pt;}
.y7_c00124{bottom:922.587067pt;}
.y6_c00124{bottom:953.147067pt;}
.y5_c00124{bottom:983.787067pt;}
.y4_c00124{bottom:1014.347067pt;}
.y2_c00124{bottom:1046.987067pt;}
.y1_c00124{bottom:1063.867067pt;}
.h8_c00124{height:42.656250pt;}
.h9_c00124{height:44.388750pt;}
.h1_c00124{height:44.724687pt;}
.h2_c00124{height:50.062500pt;}
.h4_c00124{height:53.562500pt;}
.h7_c00124{height:57.893529pt;}
.h5_c00124{height:57.894063pt;}
.h3_c00124{height:64.142500pt;}
.h6_c00124{height:66.750000pt;}
.h0_c00124{height:1122.666667pt;}
.w1_c00124{width:793.333333pt;}
.w0_c00124{width:793.626667pt;}
.x0_c00124{left:0.000000pt;}
.x1_c00124{left:113.440000pt;}
.x4_c00124{left:137.280000pt;}
.x2_c00124{left:161.040000pt;}
.x3_c00124{left:184.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec64772ffd5cf56de89418cc.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00125;src:url('chunks/assets/font_d578c3109e4f740c6a08b036.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00125;src:url('chunks/assets/font_a7f16c99dc676563840f5ec2.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00125{vertical-align:29.880000px;}
.ls17_c00125{letter-spacing:-0.468000px;}
.ls10_c00125{letter-spacing:-0.151200px;}
.lse_c00125{letter-spacing:-0.048096px;}
.ls15_c00125{letter-spacing:-0.043200px;}
.ls12_c00125{letter-spacing:-0.036000px;}
.ls18_c00125{letter-spacing:-0.028800px;}
.ls13_c00125{letter-spacing:-0.021600px;}
.lsd_c00125{letter-spacing:-0.018036px;}
.ls16_c00125{letter-spacing:-0.014400px;}
.ls11_c00125{letter-spacing:-0.007200px;}
.ls19_c00125{letter-spacing:-0.003888px;}
.lsf_c00125{letter-spacing:0.000000px;}
.ls2_c00125{letter-spacing:0.007200px;}
.ls8_c00125{letter-spacing:0.014364px;}
.ls4_c00125{letter-spacing:0.014400px;}
.ls1_c00125{letter-spacing:0.021600px;}
.lsa_c00125{letter-spacing:0.028728px;}
.ls5_c00125{letter-spacing:0.028800px;}
.lsc_c00125{letter-spacing:0.033516px;}
.ls0_c00125{letter-spacing:0.036072px;}
.ls6_c00125{letter-spacing:0.038304px;}
.ls7_c00125{letter-spacing:0.047880px;}
.ls3_c00125{letter-spacing:0.054756px;}
.lsb_c00125{letter-spacing:0.057456px;}
.ls14_c00125{letter-spacing:0.093600px;}
.ls9_c00125{letter-spacing:0.378720px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00125{word-spacing:-10.804752px;}
.ws0_c00125{word-spacing:-10.584756px;}
.ws31_c00125{word-spacing:-0.038304px;}
.ws2f_c00125{word-spacing:-0.019152px;}
.ws32_c00125{word-spacing:-0.014364px;}
.ws30_c00125{word-spacing:-0.009576px;}
.ws1b_c00125{word-spacing:-0.007200px;}
.ws5_c00125{word-spacing:0.000000px;}
.ws2e_c00125{word-spacing:0.004788px;}
.wsd_c00125{word-spacing:0.007200px;}
.ws2_c00125{word-spacing:0.054108px;}
.ws3_c00125{word-spacing:0.108216px;}
.ws4_c00125{word-spacing:0.138276px;}
.ws2b_c00125{word-spacing:0.158400px;}
.ws29_c00125{word-spacing:1.087200px;}
.ws2a_c00125{word-spacing:1.108800px;}
.ws2d_c00125{word-spacing:1.407672px;}
.ws2c_c00125{word-spacing:1.417248px;}
.ws25_c00125{word-spacing:1.749600px;}
.ws26_c00125{word-spacing:1.828800px;}
.ws24_c00125{word-spacing:2.534400px;}
.ws1f_c00125{word-spacing:2.556000px;}
.ws1e_c00125{word-spacing:2.592000px;}
.ws23_c00125{word-spacing:2.606400px;}
.ws11_c00125{word-spacing:2.923200px;}
.ws10_c00125{word-spacing:3.024000px;}
.ws12_c00125{word-spacing:4.312800px;}
.ws13_c00125{word-spacing:4.377600px;}
.ws18_c00125{word-spacing:5.738400px;}
.ws19_c00125{word-spacing:5.745600px;}
.ws1a_c00125{word-spacing:6.228000px;}
.ws7_c00125{word-spacing:6.753600px;}
.ws6_c00125{word-spacing:6.847200px;}
.ws1d_c00125{word-spacing:7.920000px;}
.ws1c_c00125{word-spacing:7.927200px;}
.wsa_c00125{word-spacing:10.411200px;}
.ws8_c00125{word-spacing:10.432800px;}
.ws9_c00125{word-spacing:10.713600px;}
.ws28_c00125{word-spacing:11.448000px;}
.ws15_c00125{word-spacing:11.498400px;}
.ws27_c00125{word-spacing:11.556000px;}
.ws14_c00125{word-spacing:11.570400px;}
.ws20_c00125{word-spacing:13.356000px;}
.wse_c00125{word-spacing:14.133600px;}
.wsf_c00125{word-spacing:14.162400px;}
.wsb_c00125{word-spacing:15.429600px;}
.wsc_c00125{word-spacing:15.501600px;}
.ws16_c00125{word-spacing:20.174400px;}
.ws17_c00125{word-spacing:20.289600px;}
.ws22_c00125{word-spacing:22.348800px;}
.ws21_c00125{word-spacing:22.370400px;}
._0_c00125{margin-left:-1.142280px;}
._1_c00125{width:1.224000px;}
.fc0_c00125{color:rgb(0,0,0);}
.fs5_c00125{font-size:38.880000px;}
.fs3_c00125{font-size:42.120000px;}
.fs4_c00125{font-size:47.880000px;}
.fs2_c00125{font-size:54.000000px;}
.fs0_c00125{font-size:60.120000px;}
.fs1_c00125{font-size:72.000000px;}
.y0_c00125{bottom:0.000000px;}
.y3_c00125{bottom:57.450450px;}
.y4_c00125{bottom:61.410450px;}
.y24_c00125{bottom:113.707830px;}
.y23_c00125{bottom:132.069810px;}
.y22_c00125{bottom:150.336030px;}
.y21_c00125{bottom:168.602250px;}
.y20_c00125{bottom:186.964230px;}
.y1f_c00125{bottom:205.232970px;}
.y1e_c00125{bottom:223.499190px;}
.y1d_c00125{bottom:237.360450px;}
.y1c_c00125{bottom:252.570450px;}
.y1b_c00125{bottom:273.270450px;}
.y1a_c00125{bottom:293.970450px;}
.y19_c00125{bottom:425.640450px;}
.y18_c00125{bottom:460.110450px;}
.y17_c00125{bottom:494.490450px;}
.y16_c00125{bottom:528.960450px;}
.y15_c00125{bottom:563.340450px;}
.y14_c00125{bottom:597.810450px;}
.y13_c00125{bottom:632.190450px;}
.y12_c00125{bottom:666.660450px;}
.y11_c00125{bottom:701.040450px;}
.y10_c00125{bottom:744.510450px;}
.yf_c00125{bottom:778.890450px;}
.ye_c00125{bottom:813.360450px;}
.yd_c00125{bottom:856.740450px;}
.yc_c00125{bottom:891.210450px;}
.yb_c00125{bottom:925.590450px;}
.ya_c00125{bottom:960.060450px;}
.y9_c00125{bottom:994.440450px;}
.y8_c00125{bottom:1037.910450px;}
.y7_c00125{bottom:1072.290450px;}
.y6_c00125{bottom:1106.760450px;}
.y5_c00125{bottom:1141.140450px;}
.y2_c00125{bottom:1173.810450px;}
.y1_c00125{bottom:1196.850450px;}
.h2_c00125{height:47.988281px;}
.h7_c00125{height:49.937344px;}
.h1_c00125{height:50.315273px;}
.h3_c00125{height:56.320312px;}
.h4_c00125{height:60.257812px;}
.h5_c00125{height:65.130820px;}
.h6_c00125{height:65.131420px;}
.h0_c00125{height:1263.000000px;}
.w1_c00125{width:892.500000px;}
.w0_c00125{width:892.830000px;}
.x0_c00125{left:0.000000px;}
.x2_c00125{left:127.620000px;}
.x1_c00125{left:145.440000px;}
.x6_c00125{left:154.612350px;}
.x5_c00125{left:180.810000px;}
.x4_c00125{left:435.240000px;}
.x3_c00125{left:446.490000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.v1_c00125{vertical-align:26.560000pt;}
.ls17_c00125{letter-spacing:-0.416000pt;}
.ls10_c00125{letter-spacing:-0.134400pt;}
.lse_c00125{letter-spacing:-0.042752pt;}
.ls15_c00125{letter-spacing:-0.038400pt;}
.ls12_c00125{letter-spacing:-0.032000pt;}
.ls18_c00125{letter-spacing:-0.025600pt;}
.ls13_c00125{letter-spacing:-0.019200pt;}
.lsd_c00125{letter-spacing:-0.016032pt;}
.ls16_c00125{letter-spacing:-0.012800pt;}
.ls11_c00125{letter-spacing:-0.006400pt;}
.ls19_c00125{letter-spacing:-0.003456pt;}
.lsf_c00125{letter-spacing:0.000000pt;}
.ls2_c00125{letter-spacing:0.006400pt;}
.ls8_c00125{letter-spacing:0.012768pt;}
.ls4_c00125{letter-spacing:0.012800pt;}
.ls1_c00125{letter-spacing:0.019200pt;}
.lsa_c00125{letter-spacing:0.025536pt;}
.ls5_c00125{letter-spacing:0.025600pt;}
.lsc_c00125{letter-spacing:0.029792pt;}
.ls0_c00125{letter-spacing:0.032064pt;}
.ls6_c00125{letter-spacing:0.034048pt;}
.ls7_c00125{letter-spacing:0.042560pt;}
.ls3_c00125{letter-spacing:0.048672pt;}
.lsb_c00125{letter-spacing:0.051072pt;}
.ls14_c00125{letter-spacing:0.083200pt;}
.ls9_c00125{letter-spacing:0.336640pt;}
.ws1_c00125{word-spacing:-9.604224pt;}
.ws0_c00125{word-spacing:-9.408672pt;}
.ws31_c00125{word-spacing:-0.034048pt;}
.ws2f_c00125{word-spacing:-0.017024pt;}
.ws32_c00125{word-spacing:-0.012768pt;}
.ws30_c00125{word-spacing:-0.008512pt;}
.ws1b_c00125{word-spacing:-0.006400pt;}
.ws5_c00125{word-spacing:0.000000pt;}
.ws2e_c00125{word-spacing:0.004256pt;}
.wsd_c00125{word-spacing:0.006400pt;}
.ws2_c00125{word-spacing:0.048096pt;}
.ws3_c00125{word-spacing:0.096192pt;}
.ws4_c00125{word-spacing:0.122912pt;}
.ws2b_c00125{word-spacing:0.140800pt;}
.ws29_c00125{word-spacing:0.966400pt;}
.ws2a_c00125{word-spacing:0.985600pt;}
.ws2d_c00125{word-spacing:1.251264pt;}
.ws2c_c00125{word-spacing:1.259776pt;}
.ws25_c00125{word-spacing:1.555200pt;}
.ws26_c00125{word-spacing:1.625600pt;}
.ws24_c00125{word-spacing:2.252800pt;}
.ws1f_c00125{word-spacing:2.272000pt;}
.ws1e_c00125{word-spacing:2.304000pt;}
.ws23_c00125{word-spacing:2.316800pt;}
.ws11_c00125{word-spacing:2.598400pt;}
.ws10_c00125{word-spacing:2.688000pt;}
.ws12_c00125{word-spacing:3.833600pt;}
.ws13_c00125{word-spacing:3.891200pt;}
.ws18_c00125{word-spacing:5.100800pt;}
.ws19_c00125{word-spacing:5.107200pt;}
.ws1a_c00125{word-spacing:5.536000pt;}
.ws7_c00125{word-spacing:6.003200pt;}
.ws6_c00125{word-spacing:6.086400pt;}
.ws1d_c00125{word-spacing:7.040000pt;}
.ws1c_c00125{word-spacing:7.046400pt;}
.wsa_c00125{word-spacing:9.254400pt;}
.ws8_c00125{word-spacing:9.273600pt;}
.ws9_c00125{word-spacing:9.523200pt;}
.ws28_c00125{word-spacing:10.176000pt;}
.ws15_c00125{word-spacing:10.220800pt;}
.ws27_c00125{word-spacing:10.272000pt;}
.ws14_c00125{word-spacing:10.284800pt;}
.ws20_c00125{word-spacing:11.872000pt;}
.wse_c00125{word-spacing:12.563200pt;}
.wsf_c00125{word-spacing:12.588800pt;}
.wsb_c00125{word-spacing:13.715200pt;}
.wsc_c00125{word-spacing:13.779200pt;}
.ws16_c00125{word-spacing:17.932800pt;}
.ws17_c00125{word-spacing:18.035200pt;}
.ws22_c00125{word-spacing:19.865600pt;}
.ws21_c00125{word-spacing:19.884800pt;}
._0_c00125{margin-left:-1.015360pt;}
._1_c00125{width:1.088000pt;}
.fs5_c00125{font-size:34.560000pt;}
.fs3_c00125{font-size:37.440000pt;}
.fs4_c00125{font-size:42.560000pt;}
.fs2_c00125{font-size:48.000000pt;}
.fs0_c00125{font-size:53.440000pt;}
.fs1_c00125{font-size:64.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y3_c00125{bottom:51.067067pt;}
.y4_c00125{bottom:54.587067pt;}
.y24_c00125{bottom:101.073627pt;}
.y23_c00125{bottom:117.395387pt;}
.y22_c00125{bottom:133.632027pt;}
.y21_c00125{bottom:149.868667pt;}
.y20_c00125{bottom:166.190427pt;}
.y1f_c00125{bottom:182.429307pt;}
.y1e_c00125{bottom:198.665947pt;}
.y1d_c00125{bottom:210.987067pt;}
.y1c_c00125{bottom:224.507067pt;}
.y1b_c00125{bottom:242.907067pt;}
.y1a_c00125{bottom:261.307067pt;}
.y19_c00125{bottom:378.347067pt;}
.y18_c00125{bottom:408.987067pt;}
.y17_c00125{bottom:439.547067pt;}
.y16_c00125{bottom:470.187067pt;}
.y15_c00125{bottom:500.747067pt;}
.y14_c00125{bottom:531.387067pt;}
.y13_c00125{bottom:561.947067pt;}
.y12_c00125{bottom:592.587067pt;}
.y11_c00125{bottom:623.147067pt;}
.y10_c00125{bottom:661.787067pt;}
.yf_c00125{bottom:692.347067pt;}
.ye_c00125{bottom:722.987067pt;}
.yd_c00125{bottom:761.547067pt;}
.yc_c00125{bottom:792.187067pt;}
.yb_c00125{bottom:822.747067pt;}
.ya_c00125{bottom:853.387067pt;}
.y9_c00125{bottom:883.947067pt;}
.y8_c00125{bottom:922.587067pt;}
.y7_c00125{bottom:953.147067pt;}
.y6_c00125{bottom:983.787067pt;}
.y5_c00125{bottom:1014.347067pt;}
.y2_c00125{bottom:1043.387067pt;}
.y1_c00125{bottom:1063.867067pt;}
.h2_c00125{height:42.656250pt;}
.h7_c00125{height:44.388750pt;}
.h1_c00125{height:44.724687pt;}
.h3_c00125{height:50.062500pt;}
.h4_c00125{height:53.562500pt;}
.h5_c00125{height:57.894063pt;}
.h6_c00125{height:57.894596pt;}
.h0_c00125{height:1122.666667pt;}
.w1_c00125{width:793.333333pt;}
.w0_c00125{width:793.626667pt;}
.x0_c00125{left:0.000000pt;}
.x2_c00125{left:113.440000pt;}
.x1_c00125{left:129.280000pt;}
.x6_c00125{left:137.433200pt;}
.x5_c00125{left:160.720000pt;}
.x4_c00125{left:386.880000pt;}
.x3_c00125{left:396.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_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_9bd06c0a4a2c581c4a0133ba.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.100098;font-style:normal;font-weight:normal;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_a19b9679edf5fec634049dcf.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;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_c00126;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00126;src:url('chunks/assets/font_b7f9503f4f1f9b295b14fe2b.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00126;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;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_c00126;src:url('chunks/assets/font_a7f16c99dc676563840f5ec2.woff2')format("woff");}.ff6_c00126{font-family:ff6_c00126;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_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;}
.v1_c00126{vertical-align:15.840000px;}
.v2_c00126{vertical-align:29.880000px;}
.lsc_c00126{letter-spacing:-0.151200px;}
.ls16_c00126{letter-spacing:-0.043200px;}
.lsf_c00126{letter-spacing:-0.031248px;}
.ls14_c00126{letter-spacing:-0.028800px;}
.ls13_c00126{letter-spacing:-0.021600px;}
.lse_c00126{letter-spacing:-0.014400px;}
.ls11_c00126{letter-spacing:-0.007812px;}
.lsd_c00126{letter-spacing:-0.007200px;}
.ls17_c00126{letter-spacing:-0.003888px;}
.lsb_c00126{letter-spacing:0.000000px;}
.lsa_c00126{letter-spacing:0.004788px;}
.ls4_c00126{letter-spacing:0.007200px;}
.ls7_c00126{letter-spacing:0.014364px;}
.ls2_c00126{letter-spacing:0.014400px;}
.ls12_c00126{letter-spacing:0.028800px;}
.ls6_c00126{letter-spacing:0.033516px;}
.ls0_c00126{letter-spacing:0.048096px;}
.ls5_c00126{letter-spacing:0.054756px;}
.ls9_c00126{letter-spacing:0.057456px;}
.ls15_c00126{letter-spacing:0.093600px;}
.ls10_c00126{letter-spacing:0.093744px;}
.ls8_c00126{letter-spacing:0.378720px;}
.ls3_c00126{letter-spacing:35.154000px;}
.ls1_c00126{letter-spacing:1212.120000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00126{word-spacing:-19.623744px;}
.ws2_c00126{word-spacing:-19.522188px;}
.ws0_c00126{word-spacing:-19.498752px;}
.ws4_c00126{word-spacing:-10.804752px;}
.ws3_c00126{word-spacing:-10.584756px;}
.ws2b_c00126{word-spacing:-0.038304px;}
.ws29_c00126{word-spacing:-0.014364px;}
.ws6_c00126{word-spacing:0.000000px;}
.ws2a_c00126{word-spacing:0.004788px;}
.wsf_c00126{word-spacing:0.007200px;}
.ws2c_c00126{word-spacing:0.014364px;}
.ws24_c00126{word-spacing:0.014400px;}
.ws5_c00126{word-spacing:0.042084px;}
.ws18_c00126{word-spacing:0.115200px;}
.ws1e_c00126{word-spacing:0.410400px;}
.ws1f_c00126{word-spacing:0.439200px;}
.ws1c_c00126{word-spacing:0.712800px;}
.ws1b_c00126{word-spacing:0.784800px;}
.ws16_c00126{word-spacing:3.600000px;}
.ws22_c00126{word-spacing:6.854400px;}
.ws23_c00126{word-spacing:6.868800px;}
.ws28_c00126{word-spacing:7.617600px;}
.ws20_c00126{word-spacing:7.819200px;}
.ws21_c00126{word-spacing:7.920000px;}
.ws1a_c00126{word-spacing:8.575200px;}
.ws19_c00126{word-spacing:8.596800px;}
.ws27_c00126{word-spacing:8.654400px;}
.ws13_c00126{word-spacing:9.021600px;}
.ws14_c00126{word-spacing:12.967200px;}
.ws10_c00126{word-spacing:16.135200px;}
.ws11_c00126{word-spacing:16.214400px;}
.ws15_c00126{word-spacing:16.574400px;}
.ws1d_c00126{word-spacing:16.603200px;}
.ws12_c00126{word-spacing:17.272800px;}
.wsc_c00126{word-spacing:17.560800px;}
.ws7_c00126{word-spacing:17.625600px;}
.wsd_c00126{word-spacing:17.647200px;}
.wsb_c00126{word-spacing:17.654400px;}
.wse_c00126{word-spacing:17.668800px;}
.ws8_c00126{word-spacing:17.712000px;}
.ws9_c00126{word-spacing:18.007200px;}
.wsa_c00126{word-spacing:18.014400px;}
.ws25_c00126{word-spacing:24.861600px;}
.ws26_c00126{word-spacing:24.883200px;}
.ws17_c00126{word-spacing:33.501600px;}
._0_c00126{margin-left:-1.322640px;}
._1_c00126{width:1.008000px;}
.fc0_c00126{color:rgb(0,0,0);}
.fs6_c00126{font-size:38.880000px;}
.fs4_c00126{font-size:42.120000px;}
.fs5_c00126{font-size:47.880000px;}
.fs1_c00126{font-size:54.000000px;}
.fs0_c00126{font-size:60.120000px;}
.fs2_c00126{font-size:72.000000px;}
.fs3_c00126{font-size:78.120000px;}
.y0_c00126{bottom:0.000000px;}
.y3_c00126{bottom:57.450450px;}
.y22_c00126{bottom:113.702250px;}
.y21_c00126{bottom:132.064230px;}
.y20_c00126{bottom:150.330450px;}
.y1f_c00126{bottom:165.540450px;}
.y1e_c00126{bottom:186.240450px;}
.y1d_c00126{bottom:206.940450px;}
.y1c_c00126{bottom:249.060450px;}
.y1b_c00126{bottom:283.530450px;}
.y1a_c00126{bottom:317.910450px;}
.y19_c00126{bottom:361.380450px;}
.y18_c00126{bottom:395.760450px;}
.y17_c00126{bottom:430.230450px;}
.y16_c00126{bottom:464.610450px;}
.y15_c00126{bottom:499.080450px;}
.y14_c00126{bottom:533.460450px;}
.y13_c00126{bottom:567.930450px;}
.y12_c00126{bottom:611.310450px;}
.y11_c00126{bottom:645.780450px;}
.y10_c00126{bottom:680.160450px;}
.yf_c00126{bottom:714.630450px;}
.ye_c00126{bottom:749.010450px;}
.yd_c00126{bottom:783.480450px;}
.yc_c00126{bottom:817.860450px;}
.yb_c00126{bottom:852.330450px;}
.ya_c00126{bottom:895.710450px;}
.y9_c00126{bottom:930.180450px;}
.y8_c00126{bottom:964.560450px;}
.y7_c00126{bottom:1009.650450px;}
.y6_c00126{bottom:1072.290450px;}
.y5_c00126{bottom:1106.760450px;}
.y4_c00126{bottom:1141.140450px;}
.y2_c00126{bottom:1177.860450px;}
.y1_c00126{bottom:1196.850450px;}
.h8_c00126{height:47.988281px;}
.h9_c00126{height:49.937344px;}
.h1_c00126{height:50.315273px;}
.h2_c00126{height:56.320312px;}
.h4_c00126{height:60.257812px;}
.h6_c00126{height:65.130820px;}
.h7_c00126{height:65.131420px;}
.h3_c00126{height:72.160312px;}
.h5_c00126{height:81.476719px;}
.h0_c00126{height:1263.000000px;}
.w1_c00126{width:892.500000px;}
.w0_c00126{width:892.830000px;}
.x0_c00126{left:0.000000px;}
.x1_c00126{left:127.620000px;}
.x2_c00126{left:180.810000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.v1_c00126{vertical-align:14.080000pt;}
.v2_c00126{vertical-align:26.560000pt;}
.lsc_c00126{letter-spacing:-0.134400pt;}
.ls16_c00126{letter-spacing:-0.038400pt;}
.lsf_c00126{letter-spacing:-0.027776pt;}
.ls14_c00126{letter-spacing:-0.025600pt;}
.ls13_c00126{letter-spacing:-0.019200pt;}
.lse_c00126{letter-spacing:-0.012800pt;}
.ls11_c00126{letter-spacing:-0.006944pt;}
.lsd_c00126{letter-spacing:-0.006400pt;}
.ls17_c00126{letter-spacing:-0.003456pt;}
.lsb_c00126{letter-spacing:0.000000pt;}
.lsa_c00126{letter-spacing:0.004256pt;}
.ls4_c00126{letter-spacing:0.006400pt;}
.ls7_c00126{letter-spacing:0.012768pt;}
.ls2_c00126{letter-spacing:0.012800pt;}
.ls12_c00126{letter-spacing:0.025600pt;}
.ls6_c00126{letter-spacing:0.029792pt;}
.ls0_c00126{letter-spacing:0.042752pt;}
.ls5_c00126{letter-spacing:0.048672pt;}
.ls9_c00126{letter-spacing:0.051072pt;}
.ls15_c00126{letter-spacing:0.083200pt;}
.ls10_c00126{letter-spacing:0.083328pt;}
.ls8_c00126{letter-spacing:0.336640pt;}
.ls3_c00126{letter-spacing:31.248000pt;}
.ls1_c00126{letter-spacing:1077.440000pt;}
.ws1_c00126{word-spacing:-17.443328pt;}
.ws2_c00126{word-spacing:-17.353056pt;}
.ws0_c00126{word-spacing:-17.332224pt;}
.ws4_c00126{word-spacing:-9.604224pt;}
.ws3_c00126{word-spacing:-9.408672pt;}
.ws2b_c00126{word-spacing:-0.034048pt;}
.ws29_c00126{word-spacing:-0.012768pt;}
.ws6_c00126{word-spacing:0.000000pt;}
.ws2a_c00126{word-spacing:0.004256pt;}
.wsf_c00126{word-spacing:0.006400pt;}
.ws2c_c00126{word-spacing:0.012768pt;}
.ws24_c00126{word-spacing:0.012800pt;}
.ws5_c00126{word-spacing:0.037408pt;}
.ws18_c00126{word-spacing:0.102400pt;}
.ws1e_c00126{word-spacing:0.364800pt;}
.ws1f_c00126{word-spacing:0.390400pt;}
.ws1c_c00126{word-spacing:0.633600pt;}
.ws1b_c00126{word-spacing:0.697600pt;}
.ws16_c00126{word-spacing:3.200000pt;}
.ws22_c00126{word-spacing:6.092800pt;}
.ws23_c00126{word-spacing:6.105600pt;}
.ws28_c00126{word-spacing:6.771200pt;}
.ws20_c00126{word-spacing:6.950400pt;}
.ws21_c00126{word-spacing:7.040000pt;}
.ws1a_c00126{word-spacing:7.622400pt;}
.ws19_c00126{word-spacing:7.641600pt;}
.ws27_c00126{word-spacing:7.692800pt;}
.ws13_c00126{word-spacing:8.019200pt;}
.ws14_c00126{word-spacing:11.526400pt;}
.ws10_c00126{word-spacing:14.342400pt;}
.ws11_c00126{word-spacing:14.412800pt;}
.ws15_c00126{word-spacing:14.732800pt;}
.ws1d_c00126{word-spacing:14.758400pt;}
.ws12_c00126{word-spacing:15.353600pt;}
.wsc_c00126{word-spacing:15.609600pt;}
.ws7_c00126{word-spacing:15.667200pt;}
.wsd_c00126{word-spacing:15.686400pt;}
.wsb_c00126{word-spacing:15.692800pt;}
.wse_c00126{word-spacing:15.705600pt;}
.ws8_c00126{word-spacing:15.744000pt;}
.ws9_c00126{word-spacing:16.006400pt;}
.wsa_c00126{word-spacing:16.012800pt;}
.ws25_c00126{word-spacing:22.099200pt;}
.ws26_c00126{word-spacing:22.118400pt;}
.ws17_c00126{word-spacing:29.779200pt;}
._0_c00126{margin-left:-1.175680pt;}
._1_c00126{width:0.896000pt;}
.fs6_c00126{font-size:34.560000pt;}
.fs4_c00126{font-size:37.440000pt;}
.fs5_c00126{font-size:42.560000pt;}
.fs1_c00126{font-size:48.000000pt;}
.fs0_c00126{font-size:53.440000pt;}
.fs2_c00126{font-size:64.000000pt;}
.fs3_c00126{font-size:69.440000pt;}
.y0_c00126{bottom:0.000000pt;}
.y3_c00126{bottom:51.067067pt;}
.y22_c00126{bottom:101.068667pt;}
.y21_c00126{bottom:117.390427pt;}
.y20_c00126{bottom:133.627067pt;}
.y1f_c00126{bottom:147.147067pt;}
.y1e_c00126{bottom:165.547067pt;}
.y1d_c00126{bottom:183.947067pt;}
.y1c_c00126{bottom:221.387067pt;}
.y1b_c00126{bottom:252.027067pt;}
.y1a_c00126{bottom:282.587067pt;}
.y19_c00126{bottom:321.227067pt;}
.y18_c00126{bottom:351.787067pt;}
.y17_c00126{bottom:382.427067pt;}
.y16_c00126{bottom:412.987067pt;}
.y15_c00126{bottom:443.627067pt;}
.y14_c00126{bottom:474.187067pt;}
.y13_c00126{bottom:504.827067pt;}
.y12_c00126{bottom:543.387067pt;}
.y11_c00126{bottom:574.027067pt;}
.y10_c00126{bottom:604.587067pt;}
.yf_c00126{bottom:635.227067pt;}
.ye_c00126{bottom:665.787067pt;}
.yd_c00126{bottom:696.427067pt;}
.yc_c00126{bottom:726.987067pt;}
.yb_c00126{bottom:757.627067pt;}
.ya_c00126{bottom:796.187067pt;}
.y9_c00126{bottom:826.827067pt;}
.y8_c00126{bottom:857.387067pt;}
.y7_c00126{bottom:897.467067pt;}
.y6_c00126{bottom:953.147067pt;}
.y5_c00126{bottom:983.787067pt;}
.y4_c00126{bottom:1014.347067pt;}
.y2_c00126{bottom:1046.987067pt;}
.y1_c00126{bottom:1063.867067pt;}
.h8_c00126{height:42.656250pt;}
.h9_c00126{height:44.388750pt;}
.h1_c00126{height:44.724687pt;}
.h2_c00126{height:50.062500pt;}
.h4_c00126{height:53.562500pt;}
.h6_c00126{height:57.894063pt;}
.h7_c00126{height:57.894596pt;}
.h3_c00126{height:64.142500pt;}
.h5_c00126{height:72.423750pt;}
.h0_c00126{height:1122.666667pt;}
.w1_c00126{width:793.333333pt;}
.w0_c00126{width:793.626667pt;}
.x0_c00126{left:0.000000pt;}
.x1_c00126{left:113.440000pt;}
.x2_c00126{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_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_e02e229f40355c2b4882408f.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00127;src:url('chunks/assets/font_b6285873c4b032e783168926.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00127;src:url('chunks/assets/font_a91ceb7059bd7ae688888ca4.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00127;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00127{font-family:ff5_c00127;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_c00127;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff6_c00127{font-family:ff6_c00127;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00127;src:url('chunks/assets/font_d39ecba5f33179f08815b9ff.woff2')format("woff");}.ff7_c00127{font-family:ff7_c00127;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_c00127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.v1_c00127{vertical-align:29.880000px;}
.ls19_c00127{letter-spacing:-0.151200px;}
.ls20_c00127{letter-spacing:-0.064800px;}
.ls17_c00127{letter-spacing:-0.048096px;}
.ls1c_c00127{letter-spacing:-0.043200px;}
.ls1d_c00127{letter-spacing:-0.036000px;}
.ls1a_c00127{letter-spacing:-0.028800px;}
.ls1f_c00127{letter-spacing:-0.021600px;}
.ls16_c00127{letter-spacing:-0.018036px;}
.ls1e_c00127{letter-spacing:-0.014400px;}
.ls1b_c00127{letter-spacing:-0.007200px;}
.ls25_c00127{letter-spacing:-0.004788px;}
.ls24_c00127{letter-spacing:-0.003888px;}
.ls18_c00127{letter-spacing:0.000000px;}
.ls15_c00127{letter-spacing:0.004788px;}
.ls1_c00127{letter-spacing:0.007200px;}
.ls12_c00127{letter-spacing:0.014364px;}
.ls9_c00127{letter-spacing:0.014400px;}
.ls6_c00127{letter-spacing:0.015624px;}
.lsc_c00127{letter-spacing:0.021600px;}
.ls7_c00127{letter-spacing:0.028800px;}
.lse_c00127{letter-spacing:0.033516px;}
.ls0_c00127{letter-spacing:0.036072px;}
.ls10_c00127{letter-spacing:0.038304px;}
.ls5_c00127{letter-spacing:0.039060px;}
.ls2_c00127{letter-spacing:0.054756px;}
.ls14_c00127{letter-spacing:0.057456px;}
.ls11_c00127{letter-spacing:0.062244px;}
.ls22_c00127{letter-spacing:0.071820px;}
.ls3_c00127{letter-spacing:0.072000px;}
.lsf_c00127{letter-spacing:0.075960px;}
.ls21_c00127{letter-spacing:0.093600px;}
.lsa_c00127{letter-spacing:0.144000px;}
.ls13_c00127{letter-spacing:0.378720px;}
.ls23_c00127{letter-spacing:1.819440px;}
.ls8_c00127{letter-spacing:3.600000px;}
.ls4_c00127{letter-spacing:29.373120px;}
.lsd_c00127{letter-spacing:44.784000px;}
.lsb_c00127{letter-spacing:65.304000px;}
.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;}
}
.ws2_c00127{word-spacing:-19.569060px;}
.ws1_c00127{word-spacing:-19.530000px;}
.ws3_c00127{word-spacing:-18.021600px;}
.ws4_c00127{word-spacing:-10.808640px;}
.ws5_c00127{word-spacing:-10.804752px;}
.ws0_c00127{word-spacing:-10.584756px;}
.ws17_c00127{word-spacing:-0.109368px;}
.ws2c_c00127{word-spacing:-0.079200px;}
.ws32_c00127{word-spacing:-0.043092px;}
.ws35_c00127{word-spacing:-0.038304px;}
.ws31_c00127{word-spacing:-0.019152px;}
.wsc_c00127{word-spacing:-0.007200px;}
.ws9_c00127{word-spacing:0.000000px;}
.ws34_c00127{word-spacing:0.004788px;}
.wsd_c00127{word-spacing:0.007200px;}
.ws36_c00127{word-spacing:0.014364px;}
.ws21_c00127{word-spacing:0.014400px;}
.ws33_c00127{word-spacing:0.023940px;}
.ws6_c00127{word-spacing:0.054108px;}
.ws2a_c00127{word-spacing:0.064800px;}
.ws7_c00127{word-spacing:0.108216px;}
.ws8_c00127{word-spacing:0.138276px;}
.ws27_c00127{word-spacing:0.252000px;}
.ws26_c00127{word-spacing:0.309600px;}
.ws16_c00127{word-spacing:0.741600px;}
.ws15_c00127{word-spacing:0.792000px;}
.wsf_c00127{word-spacing:0.914400px;}
.wse_c00127{word-spacing:1.108800px;}
.ws14_c00127{word-spacing:1.749600px;}
.ws30_c00127{word-spacing:1.781136px;}
.ws2f_c00127{word-spacing:1.785924px;}
.ws13_c00127{word-spacing:1.836000px;}
.ws18_c00127{word-spacing:3.211200px;}
.ws19_c00127{word-spacing:3.348000px;}
.ws1a_c00127{word-spacing:3.945600px;}
.ws1b_c00127{word-spacing:3.974400px;}
.ws1e_c00127{word-spacing:4.348800px;}
.ws11_c00127{word-spacing:4.665600px;}
.ws10_c00127{word-spacing:4.708800px;}
.ws22_c00127{word-spacing:5.392800px;}
.ws23_c00127{word-spacing:5.544000px;}
.ws28_c00127{word-spacing:5.803200px;}
.ws29_c00127{word-spacing:5.832000px;}
.ws2b_c00127{word-spacing:7.581600px;}
.wsb_c00127{word-spacing:11.095200px;}
.wsa_c00127{word-spacing:11.188800px;}
.ws1c_c00127{word-spacing:11.844000px;}
.ws1d_c00127{word-spacing:11.995200px;}
.ws2d_c00127{word-spacing:13.716000px;}
.ws2e_c00127{word-spacing:13.773600px;}
.ws12_c00127{word-spacing:16.876800px;}
.ws20_c00127{word-spacing:19.432800px;}
.ws1f_c00127{word-spacing:19.468800px;}
.ws25_c00127{word-spacing:34.509600px;}
.ws24_c00127{word-spacing:34.574400px;}
._0_c00127{margin-left:-1.142280px;}
._1_c00127{width:1.008000px;}
._2_c00127{width:7.603200px;}
.fc0_c00127{color:rgb(0,0,0);}
.fs6_c00127{font-size:38.880000px;}
.fs3_c00127{font-size:42.120000px;}
.fs5_c00127{font-size:47.880000px;}
.fs2_c00127{font-size:54.000000px;}
.fs0_c00127{font-size:60.120000px;}
.fs1_c00127{font-size:72.000000px;}
.fs4_c00127{font-size:78.120000px;}
.y0_c00127{bottom:0.000000px;}
.y3_c00127{bottom:57.450450px;}
.y4_c00127{bottom:61.410450px;}
.y23_c00127{bottom:113.702970px;}
.y22_c00127{bottom:132.064950px;}
.y21_c00127{bottom:145.830450px;}
.y20_c00127{bottom:161.040450px;}
.y1f_c00127{bottom:181.740450px;}
.y1e_c00127{bottom:202.440450px;}
.y1d_c00127{bottom:231.060450px;}
.y1c_c00127{bottom:265.530450px;}
.y1b_c00127{bottom:308.910450px;}
.y1a_c00127{bottom:343.380450px;}
.y19_c00127{bottom:386.760450px;}
.y18_c00127{bottom:421.230450px;}
.y17_c00127{bottom:455.610450px;}
.y16_c00127{bottom:499.080450px;}
.y15_c00127{bottom:533.460450px;}
.y14_c00127{bottom:567.930450px;}
.y13_c00127{bottom:611.310450px;}
.y12_c00127{bottom:645.780450px;}
.y11_c00127{bottom:680.160450px;}
.y10_c00127{bottom:714.630450px;}
.yf_c00127{bottom:749.010450px;}
.ye_c00127{bottom:783.480450px;}
.yd_c00127{bottom:828.480090px;}
.yc_c00127{bottom:891.210450px;}
.yb_c00127{bottom:925.590450px;}
.ya_c00127{bottom:960.060450px;}
.y9_c00127{bottom:994.440450px;}
.y8_c00127{bottom:1028.910450px;}
.y7_c00127{bottom:1063.290450px;}
.y6_c00127{bottom:1106.760450px;}
.y5_c00127{bottom:1141.140450px;}
.y2_c00127{bottom:1173.810450px;}
.y1_c00127{bottom:1196.850450px;}
.h2_c00127{height:47.988281px;}
.ha_c00127{height:49.937344px;}
.h1_c00127{height:50.315273px;}
.h3_c00127{height:56.320312px;}
.h4_c00127{height:60.257812px;}
.h7_c00127{height:60.328125px;}
.h8_c00127{height:65.130820px;}
.h5_c00127{height:65.456016px;}
.h9_c00127{height:75.093750px;}
.h6_c00127{height:81.476719px;}
.h0_c00127{height:1263.000000px;}
.w1_c00127{width:892.500000px;}
.w0_c00127{width:892.830000px;}
.x0_c00127{left:0.000000px;}
.x2_c00127{left:127.620000px;}
.x1_c00127{left:145.440000px;}
.x9_c00127{left:154.621710px;}
.x5_c00127{left:180.810000px;}
.x6_c00127{left:207.720000px;}
.x7_c00127{left:234.720000px;}
.x8_c00127{left:261.720000px;}
.x4_c00127{left:435.240000px;}
.x3_c00127{left:446.490000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.v1_c00127{vertical-align:26.560000pt;}
.ls19_c00127{letter-spacing:-0.134400pt;}
.ls20_c00127{letter-spacing:-0.057600pt;}
.ls17_c00127{letter-spacing:-0.042752pt;}
.ls1c_c00127{letter-spacing:-0.038400pt;}
.ls1d_c00127{letter-spacing:-0.032000pt;}
.ls1a_c00127{letter-spacing:-0.025600pt;}
.ls1f_c00127{letter-spacing:-0.019200pt;}
.ls16_c00127{letter-spacing:-0.016032pt;}
.ls1e_c00127{letter-spacing:-0.012800pt;}
.ls1b_c00127{letter-spacing:-0.006400pt;}
.ls25_c00127{letter-spacing:-0.004256pt;}
.ls24_c00127{letter-spacing:-0.003456pt;}
.ls18_c00127{letter-spacing:0.000000pt;}
.ls15_c00127{letter-spacing:0.004256pt;}
.ls1_c00127{letter-spacing:0.006400pt;}
.ls12_c00127{letter-spacing:0.012768pt;}
.ls9_c00127{letter-spacing:0.012800pt;}
.ls6_c00127{letter-spacing:0.013888pt;}
.lsc_c00127{letter-spacing:0.019200pt;}
.ls7_c00127{letter-spacing:0.025600pt;}
.lse_c00127{letter-spacing:0.029792pt;}
.ls0_c00127{letter-spacing:0.032064pt;}
.ls10_c00127{letter-spacing:0.034048pt;}
.ls5_c00127{letter-spacing:0.034720pt;}
.ls2_c00127{letter-spacing:0.048672pt;}
.ls14_c00127{letter-spacing:0.051072pt;}
.ls11_c00127{letter-spacing:0.055328pt;}
.ls22_c00127{letter-spacing:0.063840pt;}
.ls3_c00127{letter-spacing:0.064000pt;}
.lsf_c00127{letter-spacing:0.067520pt;}
.ls21_c00127{letter-spacing:0.083200pt;}
.lsa_c00127{letter-spacing:0.128000pt;}
.ls13_c00127{letter-spacing:0.336640pt;}
.ls23_c00127{letter-spacing:1.617280pt;}
.ls8_c00127{letter-spacing:3.200000pt;}
.ls4_c00127{letter-spacing:26.109440pt;}
.lsd_c00127{letter-spacing:39.808000pt;}
.lsb_c00127{letter-spacing:58.048000pt;}
.ws2_c00127{word-spacing:-17.394720pt;}
.ws1_c00127{word-spacing:-17.360000pt;}
.ws3_c00127{word-spacing:-16.019200pt;}
.ws4_c00127{word-spacing:-9.607680pt;}
.ws5_c00127{word-spacing:-9.604224pt;}
.ws0_c00127{word-spacing:-9.408672pt;}
.ws17_c00127{word-spacing:-0.097216pt;}
.ws2c_c00127{word-spacing:-0.070400pt;}
.ws32_c00127{word-spacing:-0.038304pt;}
.ws35_c00127{word-spacing:-0.034048pt;}
.ws31_c00127{word-spacing:-0.017024pt;}
.wsc_c00127{word-spacing:-0.006400pt;}
.ws9_c00127{word-spacing:0.000000pt;}
.ws34_c00127{word-spacing:0.004256pt;}
.wsd_c00127{word-spacing:0.006400pt;}
.ws36_c00127{word-spacing:0.012768pt;}
.ws21_c00127{word-spacing:0.012800pt;}
.ws33_c00127{word-spacing:0.021280pt;}
.ws6_c00127{word-spacing:0.048096pt;}
.ws2a_c00127{word-spacing:0.057600pt;}
.ws7_c00127{word-spacing:0.096192pt;}
.ws8_c00127{word-spacing:0.122912pt;}
.ws27_c00127{word-spacing:0.224000pt;}
.ws26_c00127{word-spacing:0.275200pt;}
.ws16_c00127{word-spacing:0.659200pt;}
.ws15_c00127{word-spacing:0.704000pt;}
.wsf_c00127{word-spacing:0.812800pt;}
.wse_c00127{word-spacing:0.985600pt;}
.ws14_c00127{word-spacing:1.555200pt;}
.ws30_c00127{word-spacing:1.583232pt;}
.ws2f_c00127{word-spacing:1.587488pt;}
.ws13_c00127{word-spacing:1.632000pt;}
.ws18_c00127{word-spacing:2.854400pt;}
.ws19_c00127{word-spacing:2.976000pt;}
.ws1a_c00127{word-spacing:3.507200pt;}
.ws1b_c00127{word-spacing:3.532800pt;}
.ws1e_c00127{word-spacing:3.865600pt;}
.ws11_c00127{word-spacing:4.147200pt;}
.ws10_c00127{word-spacing:4.185600pt;}
.ws22_c00127{word-spacing:4.793600pt;}
.ws23_c00127{word-spacing:4.928000pt;}
.ws28_c00127{word-spacing:5.158400pt;}
.ws29_c00127{word-spacing:5.184000pt;}
.ws2b_c00127{word-spacing:6.739200pt;}
.wsb_c00127{word-spacing:9.862400pt;}
.wsa_c00127{word-spacing:9.945600pt;}
.ws1c_c00127{word-spacing:10.528000pt;}
.ws1d_c00127{word-spacing:10.662400pt;}
.ws2d_c00127{word-spacing:12.192000pt;}
.ws2e_c00127{word-spacing:12.243200pt;}
.ws12_c00127{word-spacing:15.001600pt;}
.ws20_c00127{word-spacing:17.273600pt;}
.ws1f_c00127{word-spacing:17.305600pt;}
.ws25_c00127{word-spacing:30.675200pt;}
.ws24_c00127{word-spacing:30.732800pt;}
._0_c00127{margin-left:-1.015360pt;}
._1_c00127{width:0.896000pt;}
._2_c00127{width:6.758400pt;}
.fs6_c00127{font-size:34.560000pt;}
.fs3_c00127{font-size:37.440000pt;}
.fs5_c00127{font-size:42.560000pt;}
.fs2_c00127{font-size:48.000000pt;}
.fs0_c00127{font-size:53.440000pt;}
.fs1_c00127{font-size:64.000000pt;}
.fs4_c00127{font-size:69.440000pt;}
.y0_c00127{bottom:0.000000pt;}
.y3_c00127{bottom:51.067067pt;}
.y4_c00127{bottom:54.587067pt;}
.y23_c00127{bottom:101.069307pt;}
.y22_c00127{bottom:117.391067pt;}
.y21_c00127{bottom:129.627067pt;}
.y20_c00127{bottom:143.147067pt;}
.y1f_c00127{bottom:161.547067pt;}
.y1e_c00127{bottom:179.947067pt;}
.y1d_c00127{bottom:205.387067pt;}
.y1c_c00127{bottom:236.027067pt;}
.y1b_c00127{bottom:274.587067pt;}
.y1a_c00127{bottom:305.227067pt;}
.y19_c00127{bottom:343.787067pt;}
.y18_c00127{bottom:374.427067pt;}
.y17_c00127{bottom:404.987067pt;}
.y16_c00127{bottom:443.627067pt;}
.y15_c00127{bottom:474.187067pt;}
.y14_c00127{bottom:504.827067pt;}
.y13_c00127{bottom:543.387067pt;}
.y12_c00127{bottom:574.027067pt;}
.y11_c00127{bottom:604.587067pt;}
.y10_c00127{bottom:635.227067pt;}
.yf_c00127{bottom:665.787067pt;}
.ye_c00127{bottom:696.427067pt;}
.yd_c00127{bottom:736.426747pt;}
.yc_c00127{bottom:792.187067pt;}
.yb_c00127{bottom:822.747067pt;}
.ya_c00127{bottom:853.387067pt;}
.y9_c00127{bottom:883.947067pt;}
.y8_c00127{bottom:914.587067pt;}
.y7_c00127{bottom:945.147067pt;}
.y6_c00127{bottom:983.787067pt;}
.y5_c00127{bottom:1014.347067pt;}
.y2_c00127{bottom:1043.387067pt;}
.y1_c00127{bottom:1063.867067pt;}
.h2_c00127{height:42.656250pt;}
.ha_c00127{height:44.388750pt;}
.h1_c00127{height:44.724687pt;}
.h3_c00127{height:50.062500pt;}
.h4_c00127{height:53.562500pt;}
.h7_c00127{height:53.625000pt;}
.h8_c00127{height:57.894062pt;}
.h5_c00127{height:58.183125pt;}
.h9_c00127{height:66.750000pt;}
.h6_c00127{height:72.423750pt;}
.h0_c00127{height:1122.666667pt;}
.w1_c00127{width:793.333333pt;}
.w0_c00127{width:793.626667pt;}
.x0_c00127{left:0.000000pt;}
.x2_c00127{left:113.440000pt;}
.x1_c00127{left:129.280000pt;}
.x9_c00127{left:137.441520pt;}
.x5_c00127{left:160.720000pt;}
.x6_c00127{left:184.640000pt;}
.x7_c00127{left:208.640000pt;}
.x8_c00127{left:232.640000pt;}
.x4_c00127{left:386.880000pt;}
.x3_c00127{left:396.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_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_dd909e9a8a9db631be23b3c6.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.100098;font-style:normal;font-weight:normal;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_19a22eb8d38eeba89252a67e.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;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_c00128;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00128;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.281250;font-style:normal;font-weight:normal;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_7bccd4b99dc875455aef4fd9.woff2')format("woff");}.ff5_c00128{font-family:ff5_c00128;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_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;}
.v1_c00128{vertical-align:15.840000px;}
.v2_c00128{vertical-align:29.880600px;}
.lse_c00128{letter-spacing:-0.151200px;}
.ls15_c00128{letter-spacing:-0.057600px;}
.ls13_c00128{letter-spacing:-0.043200px;}
.ls10_c00128{letter-spacing:-0.028800px;}
.ls12_c00128{letter-spacing:-0.021600px;}
.ls11_c00128{letter-spacing:-0.014400px;}
.ls16_c00128{letter-spacing:-0.007776px;}
.lsf_c00128{letter-spacing:-0.007200px;}
.ls17_c00128{letter-spacing:-0.003888px;}
.lsd_c00128{letter-spacing:0.000000px;}
.ls3_c00128{letter-spacing:0.007200px;}
.ls9_c00128{letter-spacing:0.014364px;}
.lsc_c00128{letter-spacing:0.019152px;}
.ls4_c00128{letter-spacing:0.021600px;}
.ls7_c00128{letter-spacing:0.033516px;}
.ls8_c00128{letter-spacing:0.038304px;}
.ls0_c00128{letter-spacing:0.048096px;}
.ls5_c00128{letter-spacing:0.054756px;}
.ls14_c00128{letter-spacing:0.093600px;}
.lsa_c00128{letter-spacing:0.189360px;}
.lsb_c00128{letter-spacing:0.351360px;}
.ls18_c00128{letter-spacing:0.353808px;}
.ls6_c00128{letter-spacing:44.424000px;}
.ls2_c00128{letter-spacing:44.784000px;}
.ls1_c00128{letter-spacing:1212.120000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00128{word-spacing:-13.310640px;}
.ws2_c00128{word-spacing:-11.162448px;}
.ws0_c00128{word-spacing:-10.584756px;}
.ws1c_c00128{word-spacing:-0.014364px;}
.wsb_c00128{word-spacing:-0.007200px;}
.ws4_c00128{word-spacing:0.000000px;}
.ws1d_c00128{word-spacing:0.004788px;}
.ws5_c00128{word-spacing:0.007200px;}
.ws1e_c00128{word-spacing:0.019152px;}
.wsf_c00128{word-spacing:0.021600px;}
.ws3_c00128{word-spacing:0.042084px;}
.ws10_c00128{word-spacing:0.072000px;}
.ws6_c00128{word-spacing:0.079200px;}
.ws19_c00128{word-spacing:0.374400px;}
.ws17_c00128{word-spacing:1.058400px;}
.ws18_c00128{word-spacing:1.137600px;}
.wsd_c00128{word-spacing:3.952800px;}
.wsc_c00128{word-spacing:3.988800px;}
.ws11_c00128{word-spacing:6.580800px;}
.ws12_c00128{word-spacing:6.638400px;}
.ws7_c00128{word-spacing:15.148800px;}
.ws16_c00128{word-spacing:15.177600px;}
.wse_c00128{word-spacing:15.854400px;}
.ws14_c00128{word-spacing:16.538400px;}
.ws13_c00128{word-spacing:16.581600px;}
.ws9_c00128{word-spacing:20.152800px;}
.wsa_c00128{word-spacing:20.260800px;}
.ws15_c00128{word-spacing:21.297600px;}
.ws8_c00128{word-spacing:21.672000px;}
.ws1b_c00128{word-spacing:28.418400px;}
.ws1a_c00128{word-spacing:29.498400px;}
._0_c00128{margin-left:-1.322640px;}
._1_c00128{width:1.080000px;}
.fc0_c00128{color:rgb(0,0,0);}
.fs5_c00128{font-size:38.880000px;}
.fs3_c00128{font-size:42.120000px;}
.fs4_c00128{font-size:47.880000px;}
.fs1_c00128{font-size:54.000000px;}
.fs0_c00128{font-size:60.120000px;}
.fs2_c00128{font-size:72.000000px;}
.y0_c00128{bottom:0.000000px;}
.y3_c00128{bottom:57.450450px;}
.y21_c00128{bottom:113.702250px;}
.y20_c00128{bottom:132.064230px;}
.y1f_c00128{bottom:150.330450px;}
.y1e_c00128{bottom:165.540450px;}
.y1d_c00128{bottom:186.240450px;}
.y1c_c00128{bottom:206.940450px;}
.y1b_c00128{bottom:241.410450px;}
.y1a_c00128{bottom:275.790450px;}
.y19_c00128{bottom:310.260450px;}
.y18_c00128{bottom:362.640600px;}
.y17_c00128{bottom:397.110450px;}
.y16_c00128{bottom:440.490450px;}
.y15_c00128{bottom:474.960450px;}
.y14_c00128{bottom:518.340450px;}
.y13_c00128{bottom:552.810450px;}
.y12_c00128{bottom:587.190450px;}
.y11_c00128{bottom:630.660450px;}
.y10_c00128{bottom:665.040450px;}
.yf_c00128{bottom:708.510450px;}
.ye_c00128{bottom:751.890450px;}
.yd_c00128{bottom:795.360450px;}
.yc_c00128{bottom:829.740450px;}
.yb_c00128{bottom:864.210450px;}
.ya_c00128{bottom:907.590450px;}
.y9_c00128{bottom:942.060450px;}
.y8_c00128{bottom:985.440450px;}
.y7_c00128{bottom:1019.910450px;}
.y6_c00128{bottom:1063.290450px;}
.y5_c00128{bottom:1097.760450px;}
.y4_c00128{bottom:1141.140450px;}
.y2_c00128{bottom:1177.860450px;}
.y1_c00128{bottom:1196.850450px;}
.h8_c00128{height:47.988281px;}
.h9_c00128{height:49.937344px;}
.h1_c00128{height:50.315273px;}
.h2_c00128{height:56.320312px;}
.h5_c00128{height:60.257812px;}
.h7_c00128{height:65.130220px;}
.h6_c00128{height:65.131420px;}
.h3_c00128{height:72.160312px;}
.h4_c00128{height:75.093750px;}
.h0_c00128{height:1263.000000px;}
.w1_c00128{width:892.500000px;}
.w0_c00128{width:892.830000px;}
.x0_c00128{left:0.000000px;}
.x1_c00128{left:127.620000px;}
.x2_c00128{left:234.720000px;}
.x3_c00128{left:261.720000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.v1_c00128{vertical-align:14.080000pt;}
.v2_c00128{vertical-align:26.560533pt;}
.lse_c00128{letter-spacing:-0.134400pt;}
.ls15_c00128{letter-spacing:-0.051200pt;}
.ls13_c00128{letter-spacing:-0.038400pt;}
.ls10_c00128{letter-spacing:-0.025600pt;}
.ls12_c00128{letter-spacing:-0.019200pt;}
.ls11_c00128{letter-spacing:-0.012800pt;}
.ls16_c00128{letter-spacing:-0.006912pt;}
.lsf_c00128{letter-spacing:-0.006400pt;}
.ls17_c00128{letter-spacing:-0.003456pt;}
.lsd_c00128{letter-spacing:0.000000pt;}
.ls3_c00128{letter-spacing:0.006400pt;}
.ls9_c00128{letter-spacing:0.012768pt;}
.lsc_c00128{letter-spacing:0.017024pt;}
.ls4_c00128{letter-spacing:0.019200pt;}
.ls7_c00128{letter-spacing:0.029792pt;}
.ls8_c00128{letter-spacing:0.034048pt;}
.ls0_c00128{letter-spacing:0.042752pt;}
.ls5_c00128{letter-spacing:0.048672pt;}
.ls14_c00128{letter-spacing:0.083200pt;}
.lsa_c00128{letter-spacing:0.168320pt;}
.lsb_c00128{letter-spacing:0.312320pt;}
.ls18_c00128{letter-spacing:0.314496pt;}
.ls6_c00128{letter-spacing:39.488000pt;}
.ls2_c00128{letter-spacing:39.808000pt;}
.ls1_c00128{letter-spacing:1077.440000pt;}
.ws1_c00128{word-spacing:-11.831680pt;}
.ws2_c00128{word-spacing:-9.922176pt;}
.ws0_c00128{word-spacing:-9.408672pt;}
.ws1c_c00128{word-spacing:-0.012768pt;}
.wsb_c00128{word-spacing:-0.006400pt;}
.ws4_c00128{word-spacing:0.000000pt;}
.ws1d_c00128{word-spacing:0.004256pt;}
.ws5_c00128{word-spacing:0.006400pt;}
.ws1e_c00128{word-spacing:0.017024pt;}
.wsf_c00128{word-spacing:0.019200pt;}
.ws3_c00128{word-spacing:0.037408pt;}
.ws10_c00128{word-spacing:0.064000pt;}
.ws6_c00128{word-spacing:0.070400pt;}
.ws19_c00128{word-spacing:0.332800pt;}
.ws17_c00128{word-spacing:0.940800pt;}
.ws18_c00128{word-spacing:1.011200pt;}
.wsd_c00128{word-spacing:3.513600pt;}
.wsc_c00128{word-spacing:3.545600pt;}
.ws11_c00128{word-spacing:5.849600pt;}
.ws12_c00128{word-spacing:5.900800pt;}
.ws7_c00128{word-spacing:13.465600pt;}
.ws16_c00128{word-spacing:13.491200pt;}
.wse_c00128{word-spacing:14.092800pt;}
.ws14_c00128{word-spacing:14.700800pt;}
.ws13_c00128{word-spacing:14.739200pt;}
.ws9_c00128{word-spacing:17.913600pt;}
.wsa_c00128{word-spacing:18.009600pt;}
.ws15_c00128{word-spacing:18.931200pt;}
.ws8_c00128{word-spacing:19.264000pt;}
.ws1b_c00128{word-spacing:25.260800pt;}
.ws1a_c00128{word-spacing:26.220800pt;}
._0_c00128{margin-left:-1.175680pt;}
._1_c00128{width:0.960000pt;}
.fs5_c00128{font-size:34.560000pt;}
.fs3_c00128{font-size:37.440000pt;}
.fs4_c00128{font-size:42.560000pt;}
.fs1_c00128{font-size:48.000000pt;}
.fs0_c00128{font-size:53.440000pt;}
.fs2_c00128{font-size:64.000000pt;}
.y0_c00128{bottom:0.000000pt;}
.y3_c00128{bottom:51.067067pt;}
.y21_c00128{bottom:101.068667pt;}
.y20_c00128{bottom:117.390427pt;}
.y1f_c00128{bottom:133.627067pt;}
.y1e_c00128{bottom:147.147067pt;}
.y1d_c00128{bottom:165.547067pt;}
.y1c_c00128{bottom:183.947067pt;}
.y1b_c00128{bottom:214.587067pt;}
.y1a_c00128{bottom:245.147067pt;}
.y19_c00128{bottom:275.787067pt;}
.y18_c00128{bottom:322.347200pt;}
.y17_c00128{bottom:352.987067pt;}
.y16_c00128{bottom:391.547067pt;}
.y15_c00128{bottom:422.187067pt;}
.y14_c00128{bottom:460.747067pt;}
.y13_c00128{bottom:491.387067pt;}
.y12_c00128{bottom:521.947067pt;}
.y11_c00128{bottom:560.587067pt;}
.y10_c00128{bottom:591.147067pt;}
.yf_c00128{bottom:629.787067pt;}
.ye_c00128{bottom:668.347067pt;}
.yd_c00128{bottom:706.987067pt;}
.yc_c00128{bottom:737.547067pt;}
.yb_c00128{bottom:768.187067pt;}
.ya_c00128{bottom:806.747067pt;}
.y9_c00128{bottom:837.387067pt;}
.y8_c00128{bottom:875.947067pt;}
.y7_c00128{bottom:906.587067pt;}
.y6_c00128{bottom:945.147067pt;}
.y5_c00128{bottom:975.787067pt;}
.y4_c00128{bottom:1014.347067pt;}
.y2_c00128{bottom:1046.987067pt;}
.y1_c00128{bottom:1063.867067pt;}
.h8_c00128{height:42.656250pt;}
.h9_c00128{height:44.388750pt;}
.h1_c00128{height:44.724687pt;}
.h2_c00128{height:50.062500pt;}
.h5_c00128{height:53.562500pt;}
.h7_c00128{height:57.893529pt;}
.h6_c00128{height:57.894596pt;}
.h3_c00128{height:64.142500pt;}
.h4_c00128{height:66.750000pt;}
.h0_c00128{height:1122.666667pt;}
.w1_c00128{width:793.333333pt;}
.w0_c00128{width:793.626667pt;}
.x0_c00128{left:0.000000pt;}
.x1_c00128{left:113.440000pt;}
.x2_c00128{left:208.640000pt;}
.x3_c00128{left:232.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_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_94b5acadefba0c62d331a64e.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00129;src:url('chunks/assets/font_b0efa139b39eb72ab55a5890.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00129;src:url('chunks/assets/font_fb08dbbdcd746e6672271200.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00129;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00129{font-family:ff5_c00129;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00129;src:url('chunks/assets/font_7a179bf48a632b5baa47b054.woff2')format("woff");}.ff6_c00129{font-family:ff6_c00129;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_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;}
.v1_c00129{vertical-align:29.880000px;}
.ls1a_c00129{letter-spacing:-0.266400px;}
.ls18_c00129{letter-spacing:-0.151200px;}
.ls1f_c00129{letter-spacing:-0.050400px;}
.ls16_c00129{letter-spacing:-0.048096px;}
.ls1e_c00129{letter-spacing:-0.043200px;}
.ls1d_c00129{letter-spacing:-0.028800px;}
.ls1c_c00129{letter-spacing:-0.021600px;}
.ls15_c00129{letter-spacing:-0.018036px;}
.ls1b_c00129{letter-spacing:-0.014400px;}
.ls23_c00129{letter-spacing:-0.007776px;}
.ls19_c00129{letter-spacing:-0.007200px;}
.ls21_c00129{letter-spacing:-0.003888px;}
.ls17_c00129{letter-spacing:0.000000px;}
.lsa_c00129{letter-spacing:0.007200px;}
.lsd_c00129{letter-spacing:0.014364px;}
.ls13_c00129{letter-spacing:0.019152px;}
.ls2_c00129{letter-spacing:0.021600px;}
.ls8_c00129{letter-spacing:0.028800px;}
.lsc_c00129{letter-spacing:0.033516px;}
.ls7_c00129{letter-spacing:0.036000px;}
.ls0_c00129{letter-spacing:0.036072px;}
.lsb_c00129{letter-spacing:0.038304px;}
.lsf_c00129{letter-spacing:0.052668px;}
.ls3_c00129{letter-spacing:0.054756px;}
.ls1_c00129{letter-spacing:0.057600px;}
.ls14_c00129{letter-spacing:0.062244px;}
.ls20_c00129{letter-spacing:0.093600px;}
.ls4_c00129{letter-spacing:0.144000px;}
.ls12_c00129{letter-spacing:0.189360px;}
.ls10_c00129{letter-spacing:0.255960px;}
.ls22_c00129{letter-spacing:0.353808px;}
.ls24_c00129{letter-spacing:0.357696px;}
.lse_c00129{letter-spacing:0.378720px;}
.ls11_c00129{letter-spacing:1.791360px;}
.ls9_c00129{letter-spacing:44.424000px;}
.ls6_c00129{letter-spacing:44.784000px;}
.ls5_c00129{letter-spacing:65.304000px;}
.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;}
}
.ws4_c00129{word-spacing:-13.344156px;}
.ws2_c00129{word-spacing:-13.310640px;}
.ws3_c00129{word-spacing:-11.166336px;}
.ws1_c00129{word-spacing:-10.804752px;}
.ws0_c00129{word-spacing:-10.584756px;}
.ws11_c00129{word-spacing:-0.072000px;}
.ws17_c00129{word-spacing:-0.021600px;}
.ws26_c00129{word-spacing:-0.019152px;}
.ws12_c00129{word-spacing:-0.007200px;}
.ws8_c00129{word-spacing:0.000000px;}
.ws2d_c00129{word-spacing:0.004788px;}
.wsb_c00129{word-spacing:0.007200px;}
.ws16_c00129{word-spacing:0.014400px;}
.ws5_c00129{word-spacing:0.054108px;}
.ws22_c00129{word-spacing:0.057600px;}
.ws6_c00129{word-spacing:0.108216px;}
.ws7_c00129{word-spacing:0.138276px;}
.ws1c_c00129{word-spacing:0.288000px;}
.ws9_c00129{word-spacing:0.302400px;}
.wsa_c00129{word-spacing:0.338400px;}
.ws21_c00129{word-spacing:0.388800px;}
.ws1b_c00129{word-spacing:1.116000px;}
.ws2c_c00129{word-spacing:1.757196px;}
.ws2a_c00129{word-spacing:1.766772px;}
.ws28_c00129{word-spacing:1.800144px;}
.ws2b_c00129{word-spacing:1.800288px;}
.ws27_c00129{word-spacing:1.805076px;}
.ws29_c00129{word-spacing:1.819440px;}
.ws25_c00129{word-spacing:2.080800px;}
.ws24_c00129{word-spacing:2.152800px;}
.ws1a_c00129{word-spacing:4.284000px;}
.ws19_c00129{word-spacing:4.298400px;}
.ws1f_c00129{word-spacing:4.392000px;}
.ws1e_c00129{word-spacing:4.651200px;}
.ws1d_c00129{word-spacing:4.687200px;}
.ws15_c00129{word-spacing:5.738400px;}
.ws14_c00129{word-spacing:6.163200px;}
.ws18_c00129{word-spacing:7.603200px;}
.wsc_c00129{word-spacing:8.956800px;}
.wsd_c00129{word-spacing:9.021600px;}
.wsf_c00129{word-spacing:11.620800px;}
.wse_c00129{word-spacing:11.656800px;}
.ws20_c00129{word-spacing:14.097600px;}
.ws10_c00129{word-spacing:14.788800px;}
.ws23_c00129{word-spacing:16.941600px;}
.ws13_c00129{word-spacing:20.160000px;}
._0_c00129{margin-left:-1.142280px;}
._2_c00129{width:1.173600px;}
._1_c00129{width:9.043200px;}
.fc0_c00129{color:rgb(0,0,0);}
.fs5_c00129{font-size:38.880000px;}
.fs3_c00129{font-size:42.120000px;}
.fs4_c00129{font-size:47.880000px;}
.fs2_c00129{font-size:54.000000px;}
.fs0_c00129{font-size:60.120000px;}
.fs1_c00129{font-size:72.000000px;}
.y0_c00129{bottom:0.000000px;}
.y3_c00129{bottom:57.450450px;}
.y4_c00129{bottom:61.410450px;}
.y23_c00129{bottom:113.699190px;}
.y22_c00129{bottom:127.569810px;}
.y21_c00129{bottom:145.836030px;}
.y20_c00129{bottom:164.102250px;}
.y1f_c00129{bottom:182.464230px;}
.y1e_c00129{bottom:200.730450px;}
.y1d_c00129{bottom:215.940450px;}
.y1c_c00129{bottom:236.640450px;}
.y1b_c00129{bottom:257.340600px;}
.y1a_c00129{bottom:355.260600px;}
.y19_c00129{bottom:389.640600px;}
.y18_c00129{bottom:433.110450px;}
.y17_c00129{bottom:467.490450px;}
.y16_c00129{bottom:501.960450px;}
.y15_c00129{bottom:545.340450px;}
.y14_c00129{bottom:579.810450px;}
.y13_c00129{bottom:614.190450px;}
.y12_c00129{bottom:657.660450px;}
.y11_c00129{bottom:692.040450px;}
.y10_c00129{bottom:726.510450px;}
.yf_c00129{bottom:769.890450px;}
.ye_c00129{bottom:804.360450px;}
.yd_c00129{bottom:847.740450px;}
.yc_c00129{bottom:882.210450px;}
.yb_c00129{bottom:916.590450px;}
.ya_c00129{bottom:960.060450px;}
.y9_c00129{bottom:994.440450px;}
.y8_c00129{bottom:1028.910450px;}
.y7_c00129{bottom:1063.290450px;}
.y6_c00129{bottom:1106.760450px;}
.y5_c00129{bottom:1141.140450px;}
.y2_c00129{bottom:1173.810450px;}
.y1_c00129{bottom:1196.850450px;}
.h2_c00129{height:47.988281px;}
.h8_c00129{height:49.937344px;}
.h1_c00129{height:50.315273px;}
.h3_c00129{height:56.320312px;}
.h4_c00129{height:60.257812px;}
.h5_c00129{height:65.130820px;}
.h7_c00129{height:65.131420px;}
.h6_c00129{height:75.093750px;}
.h0_c00129{height:1263.000000px;}
.w1_c00129{width:892.500000px;}
.w0_c00129{width:892.830000px;}
.x0_c00129{left:0.000000px;}
.x2_c00129{left:127.620000px;}
.x1_c00129{left:145.440000px;}
.x9_c00129{left:154.620900px;}
.x6_c00129{left:180.720000px;}
.x7_c00129{left:207.720000px;}
.x5_c00129{left:234.720000px;}
.x8_c00129{left:261.720000px;}
.x4_c00129{left:435.240000px;}
.x3_c00129{left:446.490000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.v1_c00129{vertical-align:26.560000pt;}
.ls1a_c00129{letter-spacing:-0.236800pt;}
.ls18_c00129{letter-spacing:-0.134400pt;}
.ls1f_c00129{letter-spacing:-0.044800pt;}
.ls16_c00129{letter-spacing:-0.042752pt;}
.ls1e_c00129{letter-spacing:-0.038400pt;}
.ls1d_c00129{letter-spacing:-0.025600pt;}
.ls1c_c00129{letter-spacing:-0.019200pt;}
.ls15_c00129{letter-spacing:-0.016032pt;}
.ls1b_c00129{letter-spacing:-0.012800pt;}
.ls23_c00129{letter-spacing:-0.006912pt;}
.ls19_c00129{letter-spacing:-0.006400pt;}
.ls21_c00129{letter-spacing:-0.003456pt;}
.ls17_c00129{letter-spacing:0.000000pt;}
.lsa_c00129{letter-spacing:0.006400pt;}
.lsd_c00129{letter-spacing:0.012768pt;}
.ls13_c00129{letter-spacing:0.017024pt;}
.ls2_c00129{letter-spacing:0.019200pt;}
.ls8_c00129{letter-spacing:0.025600pt;}
.lsc_c00129{letter-spacing:0.029792pt;}
.ls7_c00129{letter-spacing:0.032000pt;}
.ls0_c00129{letter-spacing:0.032064pt;}
.lsb_c00129{letter-spacing:0.034048pt;}
.lsf_c00129{letter-spacing:0.046816pt;}
.ls3_c00129{letter-spacing:0.048672pt;}
.ls1_c00129{letter-spacing:0.051200pt;}
.ls14_c00129{letter-spacing:0.055328pt;}
.ls20_c00129{letter-spacing:0.083200pt;}
.ls4_c00129{letter-spacing:0.128000pt;}
.ls12_c00129{letter-spacing:0.168320pt;}
.ls10_c00129{letter-spacing:0.227520pt;}
.ls22_c00129{letter-spacing:0.314496pt;}
.ls24_c00129{letter-spacing:0.317952pt;}
.lse_c00129{letter-spacing:0.336640pt;}
.ls11_c00129{letter-spacing:1.592320pt;}
.ls9_c00129{letter-spacing:39.488000pt;}
.ls6_c00129{letter-spacing:39.808000pt;}
.ls5_c00129{letter-spacing:58.048000pt;}
.ws4_c00129{word-spacing:-11.861472pt;}
.ws2_c00129{word-spacing:-11.831680pt;}
.ws3_c00129{word-spacing:-9.925632pt;}
.ws1_c00129{word-spacing:-9.604224pt;}
.ws0_c00129{word-spacing:-9.408672pt;}
.ws11_c00129{word-spacing:-0.064000pt;}
.ws17_c00129{word-spacing:-0.019200pt;}
.ws26_c00129{word-spacing:-0.017024pt;}
.ws12_c00129{word-spacing:-0.006400pt;}
.ws8_c00129{word-spacing:0.000000pt;}
.ws2d_c00129{word-spacing:0.004256pt;}
.wsb_c00129{word-spacing:0.006400pt;}
.ws16_c00129{word-spacing:0.012800pt;}
.ws5_c00129{word-spacing:0.048096pt;}
.ws22_c00129{word-spacing:0.051200pt;}
.ws6_c00129{word-spacing:0.096192pt;}
.ws7_c00129{word-spacing:0.122912pt;}
.ws1c_c00129{word-spacing:0.256000pt;}
.ws9_c00129{word-spacing:0.268800pt;}
.wsa_c00129{word-spacing:0.300800pt;}
.ws21_c00129{word-spacing:0.345600pt;}
.ws1b_c00129{word-spacing:0.992000pt;}
.ws2c_c00129{word-spacing:1.561952pt;}
.ws2a_c00129{word-spacing:1.570464pt;}
.ws28_c00129{word-spacing:1.600128pt;}
.ws2b_c00129{word-spacing:1.600256pt;}
.ws27_c00129{word-spacing:1.604512pt;}
.ws29_c00129{word-spacing:1.617280pt;}
.ws25_c00129{word-spacing:1.849600pt;}
.ws24_c00129{word-spacing:1.913600pt;}
.ws1a_c00129{word-spacing:3.808000pt;}
.ws19_c00129{word-spacing:3.820800pt;}
.ws1f_c00129{word-spacing:3.904000pt;}
.ws1e_c00129{word-spacing:4.134400pt;}
.ws1d_c00129{word-spacing:4.166400pt;}
.ws15_c00129{word-spacing:5.100800pt;}
.ws14_c00129{word-spacing:5.478400pt;}
.ws18_c00129{word-spacing:6.758400pt;}
.wsc_c00129{word-spacing:7.961600pt;}
.wsd_c00129{word-spacing:8.019200pt;}
.wsf_c00129{word-spacing:10.329600pt;}
.wse_c00129{word-spacing:10.361600pt;}
.ws20_c00129{word-spacing:12.531200pt;}
.ws10_c00129{word-spacing:13.145600pt;}
.ws23_c00129{word-spacing:15.059200pt;}
.ws13_c00129{word-spacing:17.920000pt;}
._0_c00129{margin-left:-1.015360pt;}
._2_c00129{width:1.043200pt;}
._1_c00129{width:8.038400pt;}
.fs5_c00129{font-size:34.560000pt;}
.fs3_c00129{font-size:37.440000pt;}
.fs4_c00129{font-size:42.560000pt;}
.fs2_c00129{font-size:48.000000pt;}
.fs0_c00129{font-size:53.440000pt;}
.fs1_c00129{font-size:64.000000pt;}
.y0_c00129{bottom:0.000000pt;}
.y3_c00129{bottom:51.067067pt;}
.y4_c00129{bottom:54.587067pt;}
.y23_c00129{bottom:101.065947pt;}
.y22_c00129{bottom:113.395387pt;}
.y21_c00129{bottom:129.632027pt;}
.y20_c00129{bottom:145.868667pt;}
.y1f_c00129{bottom:162.190427pt;}
.y1e_c00129{bottom:178.427067pt;}
.y1d_c00129{bottom:191.947067pt;}
.y1c_c00129{bottom:210.347067pt;}
.y1b_c00129{bottom:228.747200pt;}
.y1a_c00129{bottom:315.787200pt;}
.y19_c00129{bottom:346.347200pt;}
.y18_c00129{bottom:384.987067pt;}
.y17_c00129{bottom:415.547067pt;}
.y16_c00129{bottom:446.187067pt;}
.y15_c00129{bottom:484.747067pt;}
.y14_c00129{bottom:515.387067pt;}
.y13_c00129{bottom:545.947067pt;}
.y12_c00129{bottom:584.587067pt;}
.y11_c00129{bottom:615.147067pt;}
.y10_c00129{bottom:645.787067pt;}
.yf_c00129{bottom:684.347067pt;}
.ye_c00129{bottom:714.987067pt;}
.yd_c00129{bottom:753.547067pt;}
.yc_c00129{bottom:784.187067pt;}
.yb_c00129{bottom:814.747067pt;}
.ya_c00129{bottom:853.387067pt;}
.y9_c00129{bottom:883.947067pt;}
.y8_c00129{bottom:914.587067pt;}
.y7_c00129{bottom:945.147067pt;}
.y6_c00129{bottom:983.787067pt;}
.y5_c00129{bottom:1014.347067pt;}
.y2_c00129{bottom:1043.387067pt;}
.y1_c00129{bottom:1063.867067pt;}
.h2_c00129{height:42.656250pt;}
.h8_c00129{height:44.388750pt;}
.h1_c00129{height:44.724687pt;}
.h3_c00129{height:50.062500pt;}
.h4_c00129{height:53.562500pt;}
.h5_c00129{height:57.894063pt;}
.h7_c00129{height:57.894596pt;}
.h6_c00129{height:66.750000pt;}
.h0_c00129{height:1122.666667pt;}
.w1_c00129{width:793.333333pt;}
.w0_c00129{width:793.626667pt;}
.x0_c00129{left:0.000000pt;}
.x2_c00129{left:113.440000pt;}
.x1_c00129{left:129.280000pt;}
.x9_c00129{left:137.440800pt;}
.x6_c00129{left:160.640000pt;}
.x7_c00129{left:184.640000pt;}
.x5_c00129{left:208.640000pt;}
.x8_c00129{left:232.640000pt;}
.x4_c00129{left:386.880000pt;}
.x3_c00129{left:396.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_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_838b4729487890799f48eecd.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.100098;font-style:normal;font-weight:normal;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_f7bb4212bef8f642d1f0eeb1.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00130;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00130;src:url('chunks/assets/font_5fb2c782e9d4949c6282e4db.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00130;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00130{font-family:ff5_c00130;line-height:1.281250;font-style:normal;font-weight:normal;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_7bccd4b99dc875455aef4fd9.woff2')format("woff");}.ff6_c00130{font-family:ff6_c00130;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00130{vertical-align:15.840000px;}
.v2_c00130{vertical-align:29.880000px;}
.ls13_c00130{letter-spacing:-0.151200px;}
.ls18_c00130{letter-spacing:-0.021600px;}
.ls16_c00130{letter-spacing:-0.014400px;}
.ls1a_c00130{letter-spacing:-0.007776px;}
.ls17_c00130{letter-spacing:-0.007200px;}
.ls1b_c00130{letter-spacing:-0.003888px;}
.ls12_c00130{letter-spacing:0.000000px;}
.ls8_c00130{letter-spacing:0.007200px;}
.lsd_c00130{letter-spacing:0.014364px;}
.ls19_c00130{letter-spacing:0.014400px;}
.ls10_c00130{letter-spacing:0.019152px;}
.lsc_c00130{letter-spacing:0.028728px;}
.ls2_c00130{letter-spacing:0.028800px;}
.ls11_c00130{letter-spacing:0.033516px;}
.lsb_c00130{letter-spacing:0.038304px;}
.ls14_c00130{letter-spacing:0.043200px;}
.ls0_c00130{letter-spacing:0.048096px;}
.lsa_c00130{letter-spacing:0.050400px;}
.ls3_c00130{letter-spacing:0.054756px;}
.ls6_c00130{letter-spacing:0.057600px;}
.ls15_c00130{letter-spacing:0.093600px;}
.ls4_c00130{letter-spacing:0.144000px;}
.lse_c00130{letter-spacing:0.189360px;}
.lsf_c00130{letter-spacing:0.351360px;}
.ls1c_c00130{letter-spacing:0.353808px;}
.ls9_c00130{letter-spacing:44.424000px;}
.ls7_c00130{letter-spacing:44.784000px;}
.ls5_c00130{letter-spacing:65.304000px;}
.ls1_c00130{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00130{word-spacing:-18.057600px;}
.ws2_c00130{word-spacing:-18.050400px;}
.ws3_c00130{word-spacing:-13.310640px;}
.ws4_c00130{word-spacing:-11.162448px;}
.ws0_c00130{word-spacing:-10.584756px;}
.ws9_c00130{word-spacing:-0.086400px;}
.ws1f_c00130{word-spacing:-0.019152px;}
.ws1d_c00130{word-spacing:-0.014400px;}
.ws22_c00130{word-spacing:-0.014364px;}
.ws20_c00130{word-spacing:-0.009576px;}
.wsb_c00130{word-spacing:-0.007200px;}
.ws6_c00130{word-spacing:0.000000px;}
.ws21_c00130{word-spacing:0.004788px;}
.ws12_c00130{word-spacing:0.007200px;}
.ws14_c00130{word-spacing:0.014400px;}
.ws10_c00130{word-spacing:0.021600px;}
.ws5_c00130{word-spacing:0.042084px;}
.ws17_c00130{word-spacing:0.720000px;}
.ws18_c00130{word-spacing:0.813600px;}
.wsf_c00130{word-spacing:1.807200px;}
.ws7_c00130{word-spacing:2.131200px;}
.ws8_c00130{word-spacing:2.152800px;}
.ws1c_c00130{word-spacing:4.262400px;}
.ws1b_c00130{word-spacing:4.363200px;}
.ws1e_c00130{word-spacing:5.371200px;}
.ws13_c00130{word-spacing:5.752800px;}
.wsa_c00130{word-spacing:6.487200px;}
.ws19_c00130{word-spacing:7.912800px;}
.ws16_c00130{word-spacing:8.316000px;}
.wsc_c00130{word-spacing:9.352800px;}
.wsd_c00130{word-spacing:9.432000px;}
.ws11_c00130{word-spacing:12.960000px;}
.ws1a_c00130{word-spacing:13.687200px;}
.wse_c00130{word-spacing:14.047200px;}
.ws15_c00130{word-spacing:29.534400px;}
._0_c00130{margin-left:-1.322640px;}
._2_c00130{width:1.440000px;}
._1_c00130{width:6.523200px;}
._3_c00130{width:13.723200px;}
.fc0_c00130{color:rgb(0,0,0);}
.fs5_c00130{font-size:38.880000px;}
.fs3_c00130{font-size:42.120000px;}
.fs4_c00130{font-size:47.880000px;}
.fs1_c00130{font-size:54.000000px;}
.fs0_c00130{font-size:60.120000px;}
.fs2_c00130{font-size:72.000000px;}
.y0_c00130{bottom:0.000000px;}
.y3_c00130{bottom:57.450450px;}
.y21_c00130{bottom:113.698470px;}
.y20_c00130{bottom:132.068010px;}
.y1f_c00130{bottom:150.334230px;}
.y1e_c00130{bottom:168.600450px;}
.y1d_c00130{bottom:183.810600px;}
.y1c_c00130{bottom:204.510600px;}
.y1b_c00130{bottom:225.210600px;}
.y1a_c00130{bottom:302.790600px;}
.y19_c00130{bottom:337.260600px;}
.y18_c00130{bottom:380.640600px;}
.y17_c00130{bottom:415.110600px;}
.y16_c00130{bottom:449.490600px;}
.y15_c00130{bottom:492.960450px;}
.y14_c00130{bottom:527.340450px;}
.y13_c00130{bottom:561.810450px;}
.y12_c00130{bottom:596.190450px;}
.y11_c00130{bottom:630.660450px;}
.y10_c00130{bottom:683.040450px;}
.yf_c00130{bottom:717.510450px;}
.ye_c00130{bottom:760.890450px;}
.yd_c00130{bottom:795.360450px;}
.yc_c00130{bottom:838.740450px;}
.yb_c00130{bottom:882.210450px;}
.ya_c00130{bottom:916.590450px;}
.y9_c00130{bottom:951.060450px;}
.y8_c00130{bottom:985.440450px;}
.y7_c00130{bottom:1028.910450px;}
.y6_c00130{bottom:1063.290450px;}
.y5_c00130{bottom:1106.760450px;}
.y4_c00130{bottom:1141.140450px;}
.y2_c00130{bottom:1177.860450px;}
.y1_c00130{bottom:1196.850450px;}
.h8_c00130{height:47.988281px;}
.h9_c00130{height:49.937344px;}
.h1_c00130{height:50.315273px;}
.h2_c00130{height:56.320312px;}
.h4_c00130{height:60.257812px;}
.h5_c00130{height:65.130820px;}
.h7_c00130{height:65.131420px;}
.h3_c00130{height:72.160312px;}
.h6_c00130{height:75.093750px;}
.h0_c00130{height:1263.000000px;}
.w1_c00130{width:892.500000px;}
.w0_c00130{width:892.830000px;}
.x0_c00130{left:0.000000px;}
.x1_c00130{left:127.620000px;}
.x3_c00130{left:180.720000px;}
.x4_c00130{left:207.720000px;}
.x2_c00130{left:234.720000px;}
.x5_c00130{left:261.720000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.v1_c00130{vertical-align:14.080000pt;}
.v2_c00130{vertical-align:26.560000pt;}
.ls13_c00130{letter-spacing:-0.134400pt;}
.ls18_c00130{letter-spacing:-0.019200pt;}
.ls16_c00130{letter-spacing:-0.012800pt;}
.ls1a_c00130{letter-spacing:-0.006912pt;}
.ls17_c00130{letter-spacing:-0.006400pt;}
.ls1b_c00130{letter-spacing:-0.003456pt;}
.ls12_c00130{letter-spacing:0.000000pt;}
.ls8_c00130{letter-spacing:0.006400pt;}
.lsd_c00130{letter-spacing:0.012768pt;}
.ls19_c00130{letter-spacing:0.012800pt;}
.ls10_c00130{letter-spacing:0.017024pt;}
.lsc_c00130{letter-spacing:0.025536pt;}
.ls2_c00130{letter-spacing:0.025600pt;}
.ls11_c00130{letter-spacing:0.029792pt;}
.lsb_c00130{letter-spacing:0.034048pt;}
.ls14_c00130{letter-spacing:0.038400pt;}
.ls0_c00130{letter-spacing:0.042752pt;}
.lsa_c00130{letter-spacing:0.044800pt;}
.ls3_c00130{letter-spacing:0.048672pt;}
.ls6_c00130{letter-spacing:0.051200pt;}
.ls15_c00130{letter-spacing:0.083200pt;}
.ls4_c00130{letter-spacing:0.128000pt;}
.lse_c00130{letter-spacing:0.168320pt;}
.lsf_c00130{letter-spacing:0.312320pt;}
.ls1c_c00130{letter-spacing:0.314496pt;}
.ls9_c00130{letter-spacing:39.488000pt;}
.ls7_c00130{letter-spacing:39.808000pt;}
.ls5_c00130{letter-spacing:58.048000pt;}
.ls1_c00130{letter-spacing:1077.440000pt;}
.ws1_c00130{word-spacing:-16.051200pt;}
.ws2_c00130{word-spacing:-16.044800pt;}
.ws3_c00130{word-spacing:-11.831680pt;}
.ws4_c00130{word-spacing:-9.922176pt;}
.ws0_c00130{word-spacing:-9.408672pt;}
.ws9_c00130{word-spacing:-0.076800pt;}
.ws1f_c00130{word-spacing:-0.017024pt;}
.ws1d_c00130{word-spacing:-0.012800pt;}
.ws22_c00130{word-spacing:-0.012768pt;}
.ws20_c00130{word-spacing:-0.008512pt;}
.wsb_c00130{word-spacing:-0.006400pt;}
.ws6_c00130{word-spacing:0.000000pt;}
.ws21_c00130{word-spacing:0.004256pt;}
.ws12_c00130{word-spacing:0.006400pt;}
.ws14_c00130{word-spacing:0.012800pt;}
.ws10_c00130{word-spacing:0.019200pt;}
.ws5_c00130{word-spacing:0.037408pt;}
.ws17_c00130{word-spacing:0.640000pt;}
.ws18_c00130{word-spacing:0.723200pt;}
.wsf_c00130{word-spacing:1.606400pt;}
.ws7_c00130{word-spacing:1.894400pt;}
.ws8_c00130{word-spacing:1.913600pt;}
.ws1c_c00130{word-spacing:3.788800pt;}
.ws1b_c00130{word-spacing:3.878400pt;}
.ws1e_c00130{word-spacing:4.774400pt;}
.ws13_c00130{word-spacing:5.113600pt;}
.wsa_c00130{word-spacing:5.766400pt;}
.ws19_c00130{word-spacing:7.033600pt;}
.ws16_c00130{word-spacing:7.392000pt;}
.wsc_c00130{word-spacing:8.313600pt;}
.wsd_c00130{word-spacing:8.384000pt;}
.ws11_c00130{word-spacing:11.520000pt;}
.ws1a_c00130{word-spacing:12.166400pt;}
.wse_c00130{word-spacing:12.486400pt;}
.ws15_c00130{word-spacing:26.252800pt;}
._0_c00130{margin-left:-1.175680pt;}
._2_c00130{width:1.280000pt;}
._1_c00130{width:5.798400pt;}
._3_c00130{width:12.198400pt;}
.fs5_c00130{font-size:34.560000pt;}
.fs3_c00130{font-size:37.440000pt;}
.fs4_c00130{font-size:42.560000pt;}
.fs1_c00130{font-size:48.000000pt;}
.fs0_c00130{font-size:53.440000pt;}
.fs2_c00130{font-size:64.000000pt;}
.y0_c00130{bottom:0.000000pt;}
.y3_c00130{bottom:51.067067pt;}
.y21_c00130{bottom:101.065307pt;}
.y20_c00130{bottom:117.393787pt;}
.y1f_c00130{bottom:133.630427pt;}
.y1e_c00130{bottom:149.867067pt;}
.y1d_c00130{bottom:163.387200pt;}
.y1c_c00130{bottom:181.787200pt;}
.y1b_c00130{bottom:200.187200pt;}
.y1a_c00130{bottom:269.147200pt;}
.y19_c00130{bottom:299.787200pt;}
.y18_c00130{bottom:338.347200pt;}
.y17_c00130{bottom:368.987200pt;}
.y16_c00130{bottom:399.547200pt;}
.y15_c00130{bottom:438.187067pt;}
.y14_c00130{bottom:468.747067pt;}
.y13_c00130{bottom:499.387067pt;}
.y12_c00130{bottom:529.947067pt;}
.y11_c00130{bottom:560.587067pt;}
.y10_c00130{bottom:607.147067pt;}
.yf_c00130{bottom:637.787067pt;}
.ye_c00130{bottom:676.347067pt;}
.yd_c00130{bottom:706.987067pt;}
.yc_c00130{bottom:745.547067pt;}
.yb_c00130{bottom:784.187067pt;}
.ya_c00130{bottom:814.747067pt;}
.y9_c00130{bottom:845.387067pt;}
.y8_c00130{bottom:875.947067pt;}
.y7_c00130{bottom:914.587067pt;}
.y6_c00130{bottom:945.147067pt;}
.y5_c00130{bottom:983.787067pt;}
.y4_c00130{bottom:1014.347067pt;}
.y2_c00130{bottom:1046.987067pt;}
.y1_c00130{bottom:1063.867067pt;}
.h8_c00130{height:42.656250pt;}
.h9_c00130{height:44.388750pt;}
.h1_c00130{height:44.724687pt;}
.h2_c00130{height:50.062500pt;}
.h4_c00130{height:53.562500pt;}
.h5_c00130{height:57.894063pt;}
.h7_c00130{height:57.894596pt;}
.h3_c00130{height:64.142500pt;}
.h6_c00130{height:66.750000pt;}
.h0_c00130{height:1122.666667pt;}
.w1_c00130{width:793.333333pt;}
.w0_c00130{width:793.626667pt;}
.x0_c00130{left:0.000000pt;}
.x1_c00130{left:113.440000pt;}
.x3_c00130{left:160.640000pt;}
.x4_c00130{left:184.640000pt;}
.x2_c00130{left:208.640000pt;}
.x5_c00130{left:232.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_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_bd681bc32dbcfdf47e33642f.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00131;src:url('chunks/assets/font_38486d96adc38818aad06963.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00131;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00131;src:url('chunks/assets/font_7bccd4b99dc875455aef4fd9.woff2')format("woff");}.ff5_c00131{font-family:ff5_c00131;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_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;}
.v1_c00131{vertical-align:29.880000px;}
.ls10_c00131{letter-spacing:-0.151200px;}
.lse_c00131{letter-spacing:-0.048096px;}
.ls14_c00131{letter-spacing:-0.021600px;}
.lsd_c00131{letter-spacing:-0.018036px;}
.ls12_c00131{letter-spacing:-0.014400px;}
.ls17_c00131{letter-spacing:-0.007776px;}
.ls11_c00131{letter-spacing:-0.007200px;}
.ls18_c00131{letter-spacing:-0.003888px;}
.lsf_c00131{letter-spacing:0.000000px;}
.ls7_c00131{letter-spacing:0.014364px;}
.ls2_c00131{letter-spacing:0.014400px;}
.lsa_c00131{letter-spacing:0.019152px;}
.ls4_c00131{letter-spacing:0.021600px;}
.ls3_c00131{letter-spacing:0.028800px;}
.lsb_c00131{letter-spacing:0.033516px;}
.ls0_c00131{letter-spacing:0.036072px;}
.ls13_c00131{letter-spacing:0.043200px;}
.lsc_c00131{letter-spacing:0.052668px;}
.ls6_c00131{letter-spacing:0.054756px;}
.ls15_c00131{letter-spacing:0.064800px;}
.ls16_c00131{letter-spacing:0.093600px;}
.ls8_c00131{letter-spacing:0.189360px;}
.ls9_c00131{letter-spacing:0.351360px;}
.ls19_c00131{letter-spacing:0.353808px;}
.ls5_c00131{letter-spacing:44.424000px;}
.ls1_c00131{letter-spacing:44.784000px;}
.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;}
}
.ws1_c00131{word-spacing:-13.310640px;}
.ws2_c00131{word-spacing:-11.162448px;}
.ws0_c00131{word-spacing:-10.584756px;}
.ws22_c00131{word-spacing:-0.014364px;}
.ws6_c00131{word-spacing:0.000000px;}
.ws21_c00131{word-spacing:0.004788px;}
.ws11_c00131{word-spacing:0.007200px;}
.ws8_c00131{word-spacing:0.014400px;}
.ws3_c00131{word-spacing:0.054108px;}
.wsf_c00131{word-spacing:0.079200px;}
.ws1a_c00131{word-spacing:0.086400px;}
.ws4_c00131{word-spacing:0.108216px;}
.ws5_c00131{word-spacing:0.138276px;}
.ws23_c00131{word-spacing:0.325584px;}
.ws16_c00131{word-spacing:0.691200px;}
.ws15_c00131{word-spacing:0.741600px;}
.ws1c_c00131{word-spacing:2.484000px;}
.ws1d_c00131{word-spacing:2.534400px;}
.ws20_c00131{word-spacing:5.428800px;}
.ws7_c00131{word-spacing:8.676000px;}
.ws9_c00131{word-spacing:9.374400px;}
.wsb_c00131{word-spacing:10.396800px;}
.wsa_c00131{word-spacing:10.411200px;}
.wsc_c00131{word-spacing:10.440000px;}
.ws13_c00131{word-spacing:10.879200px;}
.ws14_c00131{word-spacing:11.052000px;}
.ws19_c00131{word-spacing:11.548800px;}
.wse_c00131{word-spacing:11.815200px;}
.wsd_c00131{word-spacing:11.930400px;}
.ws1e_c00131{word-spacing:12.974400px;}
.ws1f_c00131{word-spacing:12.996000px;}
.ws1b_c00131{word-spacing:18.741600px;}
.ws17_c00131{word-spacing:20.124000px;}
.ws18_c00131{word-spacing:21.585600px;}
.ws12_c00131{word-spacing:23.421600px;}
.ws10_c00131{word-spacing:34.898400px;}
._0_c00131{margin-left:-1.142280px;}
._1_c00131{width:1.152000px;}
.fc0_c00131{color:rgb(0,0,0);}
.fs5_c00131{font-size:38.880000px;}
.fs3_c00131{font-size:42.120000px;}
.fs4_c00131{font-size:47.880000px;}
.fs2_c00131{font-size:54.000000px;}
.fs0_c00131{font-size:60.120000px;}
.fs1_c00131{font-size:72.000000px;}
.y0_c00131{bottom:0.000000px;}
.y3_c00131{bottom:57.450450px;}
.y4_c00131{bottom:61.410450px;}
.y21_c00131{bottom:109.743120px;}
.y20_c00131{bottom:123.604380px;}
.y1f_c00131{bottom:141.870600px;}
.y1e_c00131{bottom:157.080450px;}
.y1d_c00131{bottom:177.780450px;}
.y1c_c00131{bottom:198.480450px;}
.y1b_c00131{bottom:311.790450px;}
.y1a_c00131{bottom:346.260450px;}
.y19_c00131{bottom:380.640450px;}
.y18_c00131{bottom:415.110450px;}
.y17_c00131{bottom:458.490450px;}
.y16_c00131{bottom:492.960450px;}
.y15_c00131{bottom:527.340450px;}
.y14_c00131{bottom:561.810450px;}
.y13_c00131{bottom:596.190450px;}
.y12_c00131{bottom:630.660450px;}
.y11_c00131{bottom:683.040450px;}
.y10_c00131{bottom:717.510450px;}
.yf_c00131{bottom:760.890450px;}
.ye_c00131{bottom:795.360450px;}
.yd_c00131{bottom:838.740450px;}
.yc_c00131{bottom:873.210450px;}
.yb_c00131{bottom:916.590450px;}
.ya_c00131{bottom:951.060450px;}
.y9_c00131{bottom:985.440450px;}
.y8_c00131{bottom:1028.910450px;}
.y7_c00131{bottom:1063.290450px;}
.y6_c00131{bottom:1106.760450px;}
.y5_c00131{bottom:1141.140450px;}
.y2_c00131{bottom:1173.810450px;}
.y1_c00131{bottom:1196.850450px;}
.h2_c00131{height:47.988281px;}
.h7_c00131{height:49.937344px;}
.h1_c00131{height:50.315273px;}
.h3_c00131{height:56.320312px;}
.h5_c00131{height:60.257812px;}
.h6_c00131{height:65.130820px;}
.h4_c00131{height:75.093750px;}
.h0_c00131{height:1263.000000px;}
.w1_c00131{width:892.500000px;}
.w0_c00131{width:892.830000px;}
.x0_c00131{left:0.000000px;}
.x2_c00131{left:127.620000px;}
.x1_c00131{left:145.440000px;}
.x7_c00131{left:154.620450px;}
.x5_c00131{left:234.720000px;}
.x6_c00131{left:261.720000px;}
.x4_c00131{left:435.240000px;}
.x3_c00131{left:446.490000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.v1_c00131{vertical-align:26.560000pt;}
.ls10_c00131{letter-spacing:-0.134400pt;}
.lse_c00131{letter-spacing:-0.042752pt;}
.ls14_c00131{letter-spacing:-0.019200pt;}
.lsd_c00131{letter-spacing:-0.016032pt;}
.ls12_c00131{letter-spacing:-0.012800pt;}
.ls17_c00131{letter-spacing:-0.006912pt;}
.ls11_c00131{letter-spacing:-0.006400pt;}
.ls18_c00131{letter-spacing:-0.003456pt;}
.lsf_c00131{letter-spacing:0.000000pt;}
.ls7_c00131{letter-spacing:0.012768pt;}
.ls2_c00131{letter-spacing:0.012800pt;}
.lsa_c00131{letter-spacing:0.017024pt;}
.ls4_c00131{letter-spacing:0.019200pt;}
.ls3_c00131{letter-spacing:0.025600pt;}
.lsb_c00131{letter-spacing:0.029792pt;}
.ls0_c00131{letter-spacing:0.032064pt;}
.ls13_c00131{letter-spacing:0.038400pt;}
.lsc_c00131{letter-spacing:0.046816pt;}
.ls6_c00131{letter-spacing:0.048672pt;}
.ls15_c00131{letter-spacing:0.057600pt;}
.ls16_c00131{letter-spacing:0.083200pt;}
.ls8_c00131{letter-spacing:0.168320pt;}
.ls9_c00131{letter-spacing:0.312320pt;}
.ls19_c00131{letter-spacing:0.314496pt;}
.ls5_c00131{letter-spacing:39.488000pt;}
.ls1_c00131{letter-spacing:39.808000pt;}
.ws1_c00131{word-spacing:-11.831680pt;}
.ws2_c00131{word-spacing:-9.922176pt;}
.ws0_c00131{word-spacing:-9.408672pt;}
.ws22_c00131{word-spacing:-0.012768pt;}
.ws6_c00131{word-spacing:0.000000pt;}
.ws21_c00131{word-spacing:0.004256pt;}
.ws11_c00131{word-spacing:0.006400pt;}
.ws8_c00131{word-spacing:0.012800pt;}
.ws3_c00131{word-spacing:0.048096pt;}
.wsf_c00131{word-spacing:0.070400pt;}
.ws1a_c00131{word-spacing:0.076800pt;}
.ws4_c00131{word-spacing:0.096192pt;}
.ws5_c00131{word-spacing:0.122912pt;}
.ws23_c00131{word-spacing:0.289408pt;}
.ws16_c00131{word-spacing:0.614400pt;}
.ws15_c00131{word-spacing:0.659200pt;}
.ws1c_c00131{word-spacing:2.208000pt;}
.ws1d_c00131{word-spacing:2.252800pt;}
.ws20_c00131{word-spacing:4.825600pt;}
.ws7_c00131{word-spacing:7.712000pt;}
.ws9_c00131{word-spacing:8.332800pt;}
.wsb_c00131{word-spacing:9.241600pt;}
.wsa_c00131{word-spacing:9.254400pt;}
.wsc_c00131{word-spacing:9.280000pt;}
.ws13_c00131{word-spacing:9.670400pt;}
.ws14_c00131{word-spacing:9.824000pt;}
.ws19_c00131{word-spacing:10.265600pt;}
.wse_c00131{word-spacing:10.502400pt;}
.wsd_c00131{word-spacing:10.604800pt;}
.ws1e_c00131{word-spacing:11.532800pt;}
.ws1f_c00131{word-spacing:11.552000pt;}
.ws1b_c00131{word-spacing:16.659200pt;}
.ws17_c00131{word-spacing:17.888000pt;}
.ws18_c00131{word-spacing:19.187200pt;}
.ws12_c00131{word-spacing:20.819200pt;}
.ws10_c00131{word-spacing:31.020800pt;}
._0_c00131{margin-left:-1.015360pt;}
._1_c00131{width:1.024000pt;}
.fs5_c00131{font-size:34.560000pt;}
.fs3_c00131{font-size:37.440000pt;}
.fs4_c00131{font-size:42.560000pt;}
.fs2_c00131{font-size:48.000000pt;}
.fs0_c00131{font-size:53.440000pt;}
.fs1_c00131{font-size:64.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.y3_c00131{bottom:51.067067pt;}
.y4_c00131{bottom:54.587067pt;}
.y21_c00131{bottom:97.549440pt;}
.y20_c00131{bottom:109.870560pt;}
.y1f_c00131{bottom:126.107200pt;}
.y1e_c00131{bottom:139.627067pt;}
.y1d_c00131{bottom:158.027067pt;}
.y1c_c00131{bottom:176.427067pt;}
.y1b_c00131{bottom:277.147067pt;}
.y1a_c00131{bottom:307.787067pt;}
.y19_c00131{bottom:338.347067pt;}
.y18_c00131{bottom:368.987067pt;}
.y17_c00131{bottom:407.547067pt;}
.y16_c00131{bottom:438.187067pt;}
.y15_c00131{bottom:468.747067pt;}
.y14_c00131{bottom:499.387067pt;}
.y13_c00131{bottom:529.947067pt;}
.y12_c00131{bottom:560.587067pt;}
.y11_c00131{bottom:607.147067pt;}
.y10_c00131{bottom:637.787067pt;}
.yf_c00131{bottom:676.347067pt;}
.ye_c00131{bottom:706.987067pt;}
.yd_c00131{bottom:745.547067pt;}
.yc_c00131{bottom:776.187067pt;}
.yb_c00131{bottom:814.747067pt;}
.ya_c00131{bottom:845.387067pt;}
.y9_c00131{bottom:875.947067pt;}
.y8_c00131{bottom:914.587067pt;}
.y7_c00131{bottom:945.147067pt;}
.y6_c00131{bottom:983.787067pt;}
.y5_c00131{bottom:1014.347067pt;}
.y2_c00131{bottom:1043.387067pt;}
.y1_c00131{bottom:1063.867067pt;}
.h2_c00131{height:42.656250pt;}
.h7_c00131{height:44.388750pt;}
.h1_c00131{height:44.724687pt;}
.h3_c00131{height:50.062500pt;}
.h5_c00131{height:53.562500pt;}
.h6_c00131{height:57.894062pt;}
.h4_c00131{height:66.750000pt;}
.h0_c00131{height:1122.666667pt;}
.w1_c00131{width:793.333333pt;}
.w0_c00131{width:793.626667pt;}
.x0_c00131{left:0.000000pt;}
.x2_c00131{left:113.440000pt;}
.x1_c00131{left:129.280000pt;}
.x7_c00131{left:137.440400pt;}
.x5_c00131{left:208.640000pt;}
.x6_c00131{left:232.640000pt;}
.x4_c00131{left:386.880000pt;}
.x3_c00131{left:396.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_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_3ef8cc4d1f0186b477f9530a.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.100098;font-style:normal;font-weight:normal;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_1fd1b3c2bac968d7686c0701.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;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_c00132;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00132;src:url('chunks/assets/font_780947c833151c6fcea9e20e.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00132;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00132{font-family:ff5_c00132;line-height:1.281250;font-style:normal;font-weight:normal;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_7bccd4b99dc875455aef4fd9.woff2')format("woff");}.ff6_c00132{font-family:ff6_c00132;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_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;}
.v1_c00132{vertical-align:15.840000px;}
.v2_c00132{vertical-align:29.880000px;}
.ls13_c00132{letter-spacing:-0.151200px;}
.ls15_c00132{letter-spacing:-0.028800px;}
.ls14_c00132{letter-spacing:-0.021600px;}
.ls17_c00132{letter-spacing:-0.014400px;}
.ls19_c00132{letter-spacing:-0.007776px;}
.ls16_c00132{letter-spacing:-0.007200px;}
.ls1a_c00132{letter-spacing:-0.003888px;}
.ls12_c00132{letter-spacing:0.000000px;}
.ls9_c00132{letter-spacing:0.007200px;}
.lsd_c00132{letter-spacing:0.014364px;}
.lsb_c00132{letter-spacing:0.014400px;}
.ls10_c00132{letter-spacing:0.019152px;}
.ls11_c00132{letter-spacing:0.033516px;}
.lsc_c00132{letter-spacing:0.038304px;}
.ls6_c00132{letter-spacing:0.043200px;}
.ls0_c00132{letter-spacing:0.048096px;}
.ls3_c00132{letter-spacing:0.054756px;}
.ls2_c00132{letter-spacing:0.093600px;}
.ls8_c00132{letter-spacing:0.122400px;}
.ls4_c00132{letter-spacing:0.144000px;}
.lse_c00132{letter-spacing:0.189360px;}
.lsf_c00132{letter-spacing:0.351360px;}
.ls1b_c00132{letter-spacing:0.353808px;}
.ls18_c00132{letter-spacing:0.676800px;}
.ls7_c00132{letter-spacing:14.400000px;}
.lsa_c00132{letter-spacing:44.424000px;}
.ls5_c00132{letter-spacing:65.304000px;}
.ls1_c00132{letter-spacing:1212.120000px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00132{word-spacing:-18.093600px;}
.ws2_c00132{word-spacing:-17.978400px;}
.ws3_c00132{word-spacing:-13.310640px;}
.ws4_c00132{word-spacing:-11.162448px;}
.ws1_c00132{word-spacing:-10.584756px;}
.ws8_c00132{word-spacing:-0.086400px;}
.ws27_c00132{word-spacing:-0.019152px;}
.ws29_c00132{word-spacing:-0.014364px;}
.ws1a_c00132{word-spacing:-0.007200px;}
.ws6_c00132{word-spacing:0.000000px;}
.ws28_c00132{word-spacing:0.004788px;}
.ws16_c00132{word-spacing:0.007200px;}
.ws24_c00132{word-spacing:0.021600px;}
.ws5_c00132{word-spacing:0.042084px;}
.ws11_c00132{word-spacing:0.050400px;}
.ws26_c00132{word-spacing:0.064800px;}
.ws17_c00132{word-spacing:0.806400px;}
.ws18_c00132{word-spacing:0.864000px;}
.wse_c00132{word-spacing:1.137600px;}
.wsf_c00132{word-spacing:1.159200px;}
.ws15_c00132{word-spacing:2.102400px;}
.ws14_c00132{word-spacing:2.188800px;}
.ws1d_c00132{word-spacing:2.224800px;}
.ws1e_c00132{word-spacing:2.282400px;}
.ws25_c00132{word-spacing:3.988800px;}
.ws23_c00132{word-spacing:5.767200px;}
.wsb_c00132{word-spacing:6.789600px;}
.wsc_c00132{word-spacing:6.847200px;}
.ws19_c00132{word-spacing:7.610400px;}
.ws12_c00132{word-spacing:8.683200px;}
.ws13_c00132{word-spacing:10.072800px;}
.ws1f_c00132{word-spacing:10.468800px;}
.wsd_c00132{word-spacing:13.053600px;}
.ws7_c00132{word-spacing:13.730400px;}
.wsa_c00132{word-spacing:14.277600px;}
.ws10_c00132{word-spacing:14.421600px;}
.ws9_c00132{word-spacing:14.428800px;}
.ws21_c00132{word-spacing:15.343200px;}
.ws20_c00132{word-spacing:15.472800px;}
.ws1c_c00132{word-spacing:15.825600px;}
.ws1b_c00132{word-spacing:15.854400px;}
.ws22_c00132{word-spacing:26.287200px;}
._0_c00132{margin-left:-1.322640px;}
._2_c00132{width:1.224000px;}
._1_c00132{width:14.371200px;}
.fc0_c00132{color:rgb(0,0,0);}
.fs5_c00132{font-size:38.880000px;}
.fs3_c00132{font-size:42.120000px;}
.fs4_c00132{font-size:47.880000px;}
.fs1_c00132{font-size:54.000000px;}
.fs0_c00132{font-size:60.120000px;}
.fs2_c00132{font-size:72.000000px;}
.y0_c00132{bottom:0.000000px;}
.y3_c00132{bottom:57.450450px;}
.y21_c00132{bottom:113.698470px;}
.y20_c00132{bottom:132.060450px;}
.y1f_c00132{bottom:147.270450px;}
.y1e_c00132{bottom:167.970450px;}
.y1d_c00132{bottom:188.670450px;}
.y1c_c00132{bottom:260.940450px;}
.y1b_c00132{bottom:295.410450px;}
.y1a_c00132{bottom:338.790450px;}
.y19_c00132{bottom:373.260450px;}
.y18_c00132{bottom:407.640450px;}
.y17_c00132{bottom:451.110450px;}
.y16_c00132{bottom:485.490450px;}
.y15_c00132{bottom:519.960450px;}
.y14_c00132{bottom:554.340450px;}
.y13_c00132{bottom:588.810450px;}
.y12_c00132{bottom:632.190450px;}
.y11_c00132{bottom:666.660450px;}
.y10_c00132{bottom:701.040450px;}
.yf_c00132{bottom:744.510450px;}
.ye_c00132{bottom:778.890450px;}
.yd_c00132{bottom:813.360450px;}
.yc_c00132{bottom:847.740450px;}
.yb_c00132{bottom:891.210450px;}
.ya_c00132{bottom:925.590450px;}
.y9_c00132{bottom:960.060450px;}
.y8_c00132{bottom:994.440450px;}
.y7_c00132{bottom:1028.910450px;}
.y6_c00132{bottom:1063.290450px;}
.y5_c00132{bottom:1106.760450px;}
.y4_c00132{bottom:1141.140450px;}
.y2_c00132{bottom:1177.860450px;}
.y1_c00132{bottom:1196.850450px;}
.h7_c00132{height:47.988281px;}
.h8_c00132{height:49.937344px;}
.h9_c00132{height:49.945264px;}
.h1_c00132{height:50.315273px;}
.h2_c00132{height:56.320312px;}
.h4_c00132{height:60.257812px;}
.h5_c00132{height:65.130820px;}
.h3_c00132{height:72.160312px;}
.h6_c00132{height:75.093750px;}
.h0_c00132{height:1263.000000px;}
.w1_c00132{width:892.500000px;}
.w0_c00132{width:892.830000px;}
.x0_c00132{left:0.000000px;}
.x1_c00132{left:127.620000px;}
.x3_c00132{left:180.720000px;}
.x4_c00132{left:207.720000px;}
.x2_c00132{left:234.000000px;}
.x5_c00132{left:235.620000px;}
.x6_c00132{left:261.540000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.v1_c00132{vertical-align:14.080000pt;}
.v2_c00132{vertical-align:26.560000pt;}
.ls13_c00132{letter-spacing:-0.134400pt;}
.ls15_c00132{letter-spacing:-0.025600pt;}
.ls14_c00132{letter-spacing:-0.019200pt;}
.ls17_c00132{letter-spacing:-0.012800pt;}
.ls19_c00132{letter-spacing:-0.006912pt;}
.ls16_c00132{letter-spacing:-0.006400pt;}
.ls1a_c00132{letter-spacing:-0.003456pt;}
.ls12_c00132{letter-spacing:0.000000pt;}
.ls9_c00132{letter-spacing:0.006400pt;}
.lsd_c00132{letter-spacing:0.012768pt;}
.lsb_c00132{letter-spacing:0.012800pt;}
.ls10_c00132{letter-spacing:0.017024pt;}
.ls11_c00132{letter-spacing:0.029792pt;}
.lsc_c00132{letter-spacing:0.034048pt;}
.ls6_c00132{letter-spacing:0.038400pt;}
.ls0_c00132{letter-spacing:0.042752pt;}
.ls3_c00132{letter-spacing:0.048672pt;}
.ls2_c00132{letter-spacing:0.083200pt;}
.ls8_c00132{letter-spacing:0.108800pt;}
.ls4_c00132{letter-spacing:0.128000pt;}
.lse_c00132{letter-spacing:0.168320pt;}
.lsf_c00132{letter-spacing:0.312320pt;}
.ls1b_c00132{letter-spacing:0.314496pt;}
.ls18_c00132{letter-spacing:0.601600pt;}
.ls7_c00132{letter-spacing:12.800000pt;}
.lsa_c00132{letter-spacing:39.488000pt;}
.ls5_c00132{letter-spacing:58.048000pt;}
.ls1_c00132{letter-spacing:1077.440000pt;}
.ws0_c00132{word-spacing:-16.083200pt;}
.ws2_c00132{word-spacing:-15.980800pt;}
.ws3_c00132{word-spacing:-11.831680pt;}
.ws4_c00132{word-spacing:-9.922176pt;}
.ws1_c00132{word-spacing:-9.408672pt;}
.ws8_c00132{word-spacing:-0.076800pt;}
.ws27_c00132{word-spacing:-0.017024pt;}
.ws29_c00132{word-spacing:-0.012768pt;}
.ws1a_c00132{word-spacing:-0.006400pt;}
.ws6_c00132{word-spacing:0.000000pt;}
.ws28_c00132{word-spacing:0.004256pt;}
.ws16_c00132{word-spacing:0.006400pt;}
.ws24_c00132{word-spacing:0.019200pt;}
.ws5_c00132{word-spacing:0.037408pt;}
.ws11_c00132{word-spacing:0.044800pt;}
.ws26_c00132{word-spacing:0.057600pt;}
.ws17_c00132{word-spacing:0.716800pt;}
.ws18_c00132{word-spacing:0.768000pt;}
.wse_c00132{word-spacing:1.011200pt;}
.wsf_c00132{word-spacing:1.030400pt;}
.ws15_c00132{word-spacing:1.868800pt;}
.ws14_c00132{word-spacing:1.945600pt;}
.ws1d_c00132{word-spacing:1.977600pt;}
.ws1e_c00132{word-spacing:2.028800pt;}
.ws25_c00132{word-spacing:3.545600pt;}
.ws23_c00132{word-spacing:5.126400pt;}
.wsb_c00132{word-spacing:6.035200pt;}
.wsc_c00132{word-spacing:6.086400pt;}
.ws19_c00132{word-spacing:6.764800pt;}
.ws12_c00132{word-spacing:7.718400pt;}
.ws13_c00132{word-spacing:8.953600pt;}
.ws1f_c00132{word-spacing:9.305600pt;}
.wsd_c00132{word-spacing:11.603200pt;}
.ws7_c00132{word-spacing:12.204800pt;}
.wsa_c00132{word-spacing:12.691200pt;}
.ws10_c00132{word-spacing:12.819200pt;}
.ws9_c00132{word-spacing:12.825600pt;}
.ws21_c00132{word-spacing:13.638400pt;}
.ws20_c00132{word-spacing:13.753600pt;}
.ws1c_c00132{word-spacing:14.067200pt;}
.ws1b_c00132{word-spacing:14.092800pt;}
.ws22_c00132{word-spacing:23.366400pt;}
._0_c00132{margin-left:-1.175680pt;}
._2_c00132{width:1.088000pt;}
._1_c00132{width:12.774400pt;}
.fs5_c00132{font-size:34.560000pt;}
.fs3_c00132{font-size:37.440000pt;}
.fs4_c00132{font-size:42.560000pt;}
.fs1_c00132{font-size:48.000000pt;}
.fs0_c00132{font-size:53.440000pt;}
.fs2_c00132{font-size:64.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.y3_c00132{bottom:51.067067pt;}
.y21_c00132{bottom:101.065307pt;}
.y20_c00132{bottom:117.387067pt;}
.y1f_c00132{bottom:130.907067pt;}
.y1e_c00132{bottom:149.307067pt;}
.y1d_c00132{bottom:167.707067pt;}
.y1c_c00132{bottom:231.947067pt;}
.y1b_c00132{bottom:262.587067pt;}
.y1a_c00132{bottom:301.147067pt;}
.y19_c00132{bottom:331.787067pt;}
.y18_c00132{bottom:362.347067pt;}
.y17_c00132{bottom:400.987067pt;}
.y16_c00132{bottom:431.547067pt;}
.y15_c00132{bottom:462.187067pt;}
.y14_c00132{bottom:492.747067pt;}
.y13_c00132{bottom:523.387067pt;}
.y12_c00132{bottom:561.947067pt;}
.y11_c00132{bottom:592.587067pt;}
.y10_c00132{bottom:623.147067pt;}
.yf_c00132{bottom:661.787067pt;}
.ye_c00132{bottom:692.347067pt;}
.yd_c00132{bottom:722.987067pt;}
.yc_c00132{bottom:753.547067pt;}
.yb_c00132{bottom:792.187067pt;}
.ya_c00132{bottom:822.747067pt;}
.y9_c00132{bottom:853.387067pt;}
.y8_c00132{bottom:883.947067pt;}
.y7_c00132{bottom:914.587067pt;}
.y6_c00132{bottom:945.147067pt;}
.y5_c00132{bottom:983.787067pt;}
.y4_c00132{bottom:1014.347067pt;}
.y2_c00132{bottom:1046.987067pt;}
.y1_c00132{bottom:1063.867067pt;}
.h7_c00132{height:42.656250pt;}
.h8_c00132{height:44.388750pt;}
.h9_c00132{height:44.395790pt;}
.h1_c00132{height:44.724687pt;}
.h2_c00132{height:50.062500pt;}
.h4_c00132{height:53.562500pt;}
.h5_c00132{height:57.894063pt;}
.h3_c00132{height:64.142500pt;}
.h6_c00132{height:66.750000pt;}
.h0_c00132{height:1122.666667pt;}
.w1_c00132{width:793.333333pt;}
.w0_c00132{width:793.626667pt;}
.x0_c00132{left:0.000000pt;}
.x1_c00132{left:113.440000pt;}
.x3_c00132{left:160.640000pt;}
.x4_c00132{left:184.640000pt;}
.x2_c00132{left:208.000000pt;}
.x5_c00132{left:209.440000pt;}
.x6_c00132{left:232.480000pt;}
}





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

.ir_c00133:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00133;src:url('chunks/assets/font_fc21047d075519d99cfe59de.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00133;src:url('chunks/assets/font_0c50b0e3baa6f81d917be7a9.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00133;src:url('chunks/assets/font_1fcdf78b009128eeec7581ae.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00133;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00133{font-family:ff5_c00133;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_c00133;src:url('chunks/assets/font_7a179bf48a632b5baa47b054.woff2')format("woff");}.ff6_c00133{font-family:ff6_c00133;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_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;}
.v1_c00133{vertical-align:29.880000px;}
.ls1a_c00133{letter-spacing:-0.151200px;}
.ls23_c00133{letter-spacing:-0.075492px;}
.ls18_c00133{letter-spacing:-0.048096px;}
.ls1e_c00133{letter-spacing:-0.043200px;}
.ls21_c00133{letter-spacing:-0.036000px;}
.ls1c_c00133{letter-spacing:-0.028800px;}
.ls24_c00133{letter-spacing:-0.025164px;}
.ls1f_c00133{letter-spacing:-0.021600px;}
.ls17_c00133{letter-spacing:-0.018036px;}
.ls1d_c00133{letter-spacing:-0.014400px;}
.ls27_c00133{letter-spacing:-0.007776px;}
.ls20_c00133{letter-spacing:-0.007200px;}
.ls26_c00133{letter-spacing:-0.003888px;}
.ls19_c00133{letter-spacing:0.000000px;}
.lsc_c00133{letter-spacing:0.004788px;}
.ls1_c00133{letter-spacing:0.007200px;}
.ls9_c00133{letter-spacing:0.014364px;}
.ls7_c00133{letter-spacing:0.014400px;}
.lsf_c00133{letter-spacing:0.019152px;}
.ls3_c00133{letter-spacing:0.021600px;}
.ls12_c00133{letter-spacing:0.023940px;}
.ls14_c00133{letter-spacing:0.028728px;}
.ls25_c00133{letter-spacing:0.028800px;}
.ls10_c00133{letter-spacing:0.033516px;}
.ls4_c00133{letter-spacing:0.036000px;}
.ls0_c00133{letter-spacing:0.036072px;}
.ls8_c00133{letter-spacing:0.038304px;}
.ls13_c00133{letter-spacing:0.043092px;}
.ls15_c00133{letter-spacing:0.047880px;}
.ls11_c00133{letter-spacing:0.052668px;}
.ls6_c00133{letter-spacing:0.054684px;}
.ls2_c00133{letter-spacing:0.054756px;}
.lsb_c00133{letter-spacing:0.057456px;}
.ls22_c00133{letter-spacing:0.079200px;}
.ls1b_c00133{letter-spacing:0.093600px;}
.lsd_c00133{letter-spacing:0.189360px;}
.lse_c00133{letter-spacing:0.351360px;}
.ls28_c00133{letter-spacing:0.353808px;}
.ls29_c00133{letter-spacing:0.357696px;}
.lsa_c00133{letter-spacing:0.378720px;}
.ls16_c00133{letter-spacing:1.071360px;}
.ls5_c00133{letter-spacing:29.371320px;}
.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;}
}
.ws4_c00133{word-spacing:-20.944836px;}
.ws2_c00133{word-spacing:-20.894508px;}
.ws3_c00133{word-spacing:-19.584684px;}
.ws1_c00133{word-spacing:-19.530000px;}
.ws5_c00133{word-spacing:-17.956800px;}
.ws7_c00133{word-spacing:-13.310640px;}
.ws9_c00133{word-spacing:-11.166336px;}
.ws8_c00133{word-spacing:-11.162448px;}
.ws6_c00133{word-spacing:-10.804752px;}
.ws0_c00133{word-spacing:-10.584756px;}
.ws28_c00133{word-spacing:-0.093600px;}
.ws2b_c00133{word-spacing:-0.038304px;}
.ws20_c00133{word-spacing:-0.036000px;}
.ws30_c00133{word-spacing:-0.033516px;}
.ws32_c00133{word-spacing:-0.023940px;}
.ws1f_c00133{word-spacing:-0.021600px;}
.ws29_c00133{word-spacing:-0.019152px;}
.ws2d_c00133{word-spacing:-0.014364px;}
.ws3a_c00133{word-spacing:-0.009576px;}
.wsf_c00133{word-spacing:-0.007200px;}
.wsd_c00133{word-spacing:0.000000px;}
.ws2a_c00133{word-spacing:0.004788px;}
.ws15_c00133{word-spacing:0.007200px;}
.ws2c_c00133{word-spacing:0.014364px;}
.ws1c_c00133{word-spacing:0.021600px;}
.wsa_c00133{word-spacing:0.054108px;}
.wsb_c00133{word-spacing:0.108216px;}
.wsc_c00133{word-spacing:0.138276px;}
.ws31_c00133{word-spacing:0.359100px;}
.ws38_c00133{word-spacing:1.053360px;}
.ws39_c00133{word-spacing:1.077300px;}
.ws1a_c00133{word-spacing:2.224800px;}
.ws2e_c00133{word-spacing:2.484972px;}
.ws2f_c00133{word-spacing:2.513700px;}
.ws18_c00133{word-spacing:2.793600px;}
.ws17_c00133{word-spacing:2.916000px;}
.ws21_c00133{word-spacing:5.428800px;}
.ws11_c00133{word-spacing:5.760000px;}
.ws10_c00133{word-spacing:5.788800px;}
.ws1e_c00133{word-spacing:6.832800px;}
.ws1d_c00133{word-spacing:6.926400px;}
.wse_c00133{word-spacing:7.581600px;}
.ws1b_c00133{word-spacing:8.632800px;}
.ws14_c00133{word-spacing:10.101600px;}
.ws13_c00133{word-spacing:10.180800px;}
.ws34_c00133{word-spacing:11.141676px;}
.ws33_c00133{word-spacing:11.160828px;}
.ws23_c00133{word-spacing:11.232000px;}
.ws22_c00133{word-spacing:11.253600px;}
.ws25_c00133{word-spacing:11.851200px;}
.ws24_c00133{word-spacing:11.858400px;}
.ws26_c00133{word-spacing:11.916000px;}
.ws27_c00133{word-spacing:11.930400px;}
.ws12_c00133{word-spacing:14.054400px;}
.ws16_c00133{word-spacing:15.861600px;}
.ws37_c00133{word-spacing:19.415340px;}
.ws35_c00133{word-spacing:19.420128px;}
.ws36_c00133{word-spacing:19.429704px;}
.ws19_c00133{word-spacing:24.861600px;}
._0_c00133{margin-left:-1.142280px;}
._1_c00133{width:1.152000px;}
.fc0_c00133{color:rgb(0,0,0);}
.fs7_c00133{font-size:38.880000px;}
.fs3_c00133{font-size:42.120000px;}
.fs6_c00133{font-size:47.880000px;}
.fs2_c00133{font-size:54.000000px;}
.fs0_c00133{font-size:60.120000px;}
.fs1_c00133{font-size:72.000000px;}
.fs4_c00133{font-size:78.120000px;}
.fs5_c00133{font-size:83.880000px;}
.y0_c00133{bottom:0.000000px;}
.y3_c00133{bottom:57.450450px;}
.y4_c00133{bottom:61.410450px;}
.y27_c00133{bottom:113.702970px;}
.y26_c00133{bottom:132.064950px;}
.y25_c00133{bottom:145.837470px;}
.y24_c00133{bottom:159.602970px;}
.y23_c00133{bottom:173.464230px;}
.y22_c00133{bottom:191.734230px;}
.y21_c00133{bottom:210.002970px;}
.y20_c00133{bottom:223.864230px;}
.y1f_c00133{bottom:242.134230px;}
.y1e_c00133{bottom:260.398470px;}
.y1d_c00133{bottom:278.760450px;}
.y1c_c00133{bottom:293.970450px;}
.y1b_c00133{bottom:314.580450px;}
.y1a_c00133{bottom:335.280450px;}
.y19_c00133{bottom:374.970450px;}
.y18_c00133{bottom:409.350450px;}
.y17_c00133{bottom:443.820600px;}
.y16_c00133{bottom:478.200450px;}
.y15_c00133{bottom:512.670450px;}
.y14_c00133{bottom:559.200450px;}
.y13_c00133{bottom:623.190450px;}
.y12_c00133{bottom:657.660450px;}
.y11_c00133{bottom:692.040450px;}
.y10_c00133{bottom:735.510450px;}
.yf_c00133{bottom:769.890450px;}
.ye_c00133{bottom:804.360450px;}
.yd_c00133{bottom:838.740450px;}
.yc_c00133{bottom:873.210450px;}
.yb_c00133{bottom:907.590450px;}
.ya_c00133{bottom:951.060450px;}
.y9_c00133{bottom:985.440450px;}
.y8_c00133{bottom:1019.910450px;}
.y7_c00133{bottom:1054.290450px;}
.y6_c00133{bottom:1106.760450px;}
.y5_c00133{bottom:1141.140450px;}
.y2_c00133{bottom:1173.810450px;}
.y1_c00133{bottom:1196.850450px;}
.h2_c00133{height:47.988281px;}
.h7_c00133{height:49.937344px;}
.h8_c00133{height:49.945264px;}
.h1_c00133{height:50.315273px;}
.h3_c00133{height:56.320312px;}
.h4_c00133{height:60.257812px;}
.h5_c00133{height:65.130820px;}
.h6_c00133{height:81.476719px;}
.h0_c00133{height:1263.000000px;}
.w1_c00133{width:892.500000px;}
.w0_c00133{width:892.830000px;}
.x0_c00133{left:0.000000px;}
.x2_c00133{left:127.620000px;}
.x1_c00133{left:145.440000px;}
.x7_c00133{left:154.620450px;}
.x6_c00133{left:180.810000px;}
.x5_c00133{left:261.540000px;}
.x4_c00133{left:435.240000px;}
.x3_c00133{left:446.490000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.v1_c00133{vertical-align:26.560000pt;}
.ls1a_c00133{letter-spacing:-0.134400pt;}
.ls23_c00133{letter-spacing:-0.067104pt;}
.ls18_c00133{letter-spacing:-0.042752pt;}
.ls1e_c00133{letter-spacing:-0.038400pt;}
.ls21_c00133{letter-spacing:-0.032000pt;}
.ls1c_c00133{letter-spacing:-0.025600pt;}
.ls24_c00133{letter-spacing:-0.022368pt;}
.ls1f_c00133{letter-spacing:-0.019200pt;}
.ls17_c00133{letter-spacing:-0.016032pt;}
.ls1d_c00133{letter-spacing:-0.012800pt;}
.ls27_c00133{letter-spacing:-0.006912pt;}
.ls20_c00133{letter-spacing:-0.006400pt;}
.ls26_c00133{letter-spacing:-0.003456pt;}
.ls19_c00133{letter-spacing:0.000000pt;}
.lsc_c00133{letter-spacing:0.004256pt;}
.ls1_c00133{letter-spacing:0.006400pt;}
.ls9_c00133{letter-spacing:0.012768pt;}
.ls7_c00133{letter-spacing:0.012800pt;}
.lsf_c00133{letter-spacing:0.017024pt;}
.ls3_c00133{letter-spacing:0.019200pt;}
.ls12_c00133{letter-spacing:0.021280pt;}
.ls14_c00133{letter-spacing:0.025536pt;}
.ls25_c00133{letter-spacing:0.025600pt;}
.ls10_c00133{letter-spacing:0.029792pt;}
.ls4_c00133{letter-spacing:0.032000pt;}
.ls0_c00133{letter-spacing:0.032064pt;}
.ls8_c00133{letter-spacing:0.034048pt;}
.ls13_c00133{letter-spacing:0.038304pt;}
.ls15_c00133{letter-spacing:0.042560pt;}
.ls11_c00133{letter-spacing:0.046816pt;}
.ls6_c00133{letter-spacing:0.048608pt;}
.ls2_c00133{letter-spacing:0.048672pt;}
.lsb_c00133{letter-spacing:0.051072pt;}
.ls22_c00133{letter-spacing:0.070400pt;}
.ls1b_c00133{letter-spacing:0.083200pt;}
.lsd_c00133{letter-spacing:0.168320pt;}
.lse_c00133{letter-spacing:0.312320pt;}
.ls28_c00133{letter-spacing:0.314496pt;}
.ls29_c00133{letter-spacing:0.317952pt;}
.lsa_c00133{letter-spacing:0.336640pt;}
.ls16_c00133{letter-spacing:0.952320pt;}
.ls5_c00133{letter-spacing:26.107840pt;}
.ws4_c00133{word-spacing:-18.617632pt;}
.ws2_c00133{word-spacing:-18.572896pt;}
.ws3_c00133{word-spacing:-17.408608pt;}
.ws1_c00133{word-spacing:-17.360000pt;}
.ws5_c00133{word-spacing:-15.961600pt;}
.ws7_c00133{word-spacing:-11.831680pt;}
.ws9_c00133{word-spacing:-9.925632pt;}
.ws8_c00133{word-spacing:-9.922176pt;}
.ws6_c00133{word-spacing:-9.604224pt;}
.ws0_c00133{word-spacing:-9.408672pt;}
.ws28_c00133{word-spacing:-0.083200pt;}
.ws2b_c00133{word-spacing:-0.034048pt;}
.ws20_c00133{word-spacing:-0.032000pt;}
.ws30_c00133{word-spacing:-0.029792pt;}
.ws32_c00133{word-spacing:-0.021280pt;}
.ws1f_c00133{word-spacing:-0.019200pt;}
.ws29_c00133{word-spacing:-0.017024pt;}
.ws2d_c00133{word-spacing:-0.012768pt;}
.ws3a_c00133{word-spacing:-0.008512pt;}
.wsf_c00133{word-spacing:-0.006400pt;}
.wsd_c00133{word-spacing:0.000000pt;}
.ws2a_c00133{word-spacing:0.004256pt;}
.ws15_c00133{word-spacing:0.006400pt;}
.ws2c_c00133{word-spacing:0.012768pt;}
.ws1c_c00133{word-spacing:0.019200pt;}
.wsa_c00133{word-spacing:0.048096pt;}
.wsb_c00133{word-spacing:0.096192pt;}
.wsc_c00133{word-spacing:0.122912pt;}
.ws31_c00133{word-spacing:0.319200pt;}
.ws38_c00133{word-spacing:0.936320pt;}
.ws39_c00133{word-spacing:0.957600pt;}
.ws1a_c00133{word-spacing:1.977600pt;}
.ws2e_c00133{word-spacing:2.208864pt;}
.ws2f_c00133{word-spacing:2.234400pt;}
.ws18_c00133{word-spacing:2.483200pt;}
.ws17_c00133{word-spacing:2.592000pt;}
.ws21_c00133{word-spacing:4.825600pt;}
.ws11_c00133{word-spacing:5.120000pt;}
.ws10_c00133{word-spacing:5.145600pt;}
.ws1e_c00133{word-spacing:6.073600pt;}
.ws1d_c00133{word-spacing:6.156800pt;}
.wse_c00133{word-spacing:6.739200pt;}
.ws1b_c00133{word-spacing:7.673600pt;}
.ws14_c00133{word-spacing:8.979200pt;}
.ws13_c00133{word-spacing:9.049600pt;}
.ws34_c00133{word-spacing:9.903712pt;}
.ws33_c00133{word-spacing:9.920736pt;}
.ws23_c00133{word-spacing:9.984000pt;}
.ws22_c00133{word-spacing:10.003200pt;}
.ws25_c00133{word-spacing:10.534400pt;}
.ws24_c00133{word-spacing:10.540800pt;}
.ws26_c00133{word-spacing:10.592000pt;}
.ws27_c00133{word-spacing:10.604800pt;}
.ws12_c00133{word-spacing:12.492800pt;}
.ws16_c00133{word-spacing:14.099200pt;}
.ws37_c00133{word-spacing:17.258080pt;}
.ws35_c00133{word-spacing:17.262336pt;}
.ws36_c00133{word-spacing:17.270848pt;}
.ws19_c00133{word-spacing:22.099200pt;}
._0_c00133{margin-left:-1.015360pt;}
._1_c00133{width:1.024000pt;}
.fs7_c00133{font-size:34.560000pt;}
.fs3_c00133{font-size:37.440000pt;}
.fs6_c00133{font-size:42.560000pt;}
.fs2_c00133{font-size:48.000000pt;}
.fs0_c00133{font-size:53.440000pt;}
.fs1_c00133{font-size:64.000000pt;}
.fs4_c00133{font-size:69.440000pt;}
.fs5_c00133{font-size:74.560000pt;}
.y0_c00133{bottom:0.000000pt;}
.y3_c00133{bottom:51.067067pt;}
.y4_c00133{bottom:54.587067pt;}
.y27_c00133{bottom:101.069307pt;}
.y26_c00133{bottom:117.391067pt;}
.y25_c00133{bottom:129.633307pt;}
.y24_c00133{bottom:141.869307pt;}
.y23_c00133{bottom:154.190427pt;}
.y22_c00133{bottom:170.430427pt;}
.y21_c00133{bottom:186.669307pt;}
.y20_c00133{bottom:198.990427pt;}
.y1f_c00133{bottom:215.230427pt;}
.y1e_c00133{bottom:231.465307pt;}
.y1d_c00133{bottom:247.787067pt;}
.y1c_c00133{bottom:261.307067pt;}
.y1b_c00133{bottom:279.627067pt;}
.y1a_c00133{bottom:298.027067pt;}
.y19_c00133{bottom:333.307067pt;}
.y18_c00133{bottom:363.867067pt;}
.y17_c00133{bottom:394.507200pt;}
.y16_c00133{bottom:425.067067pt;}
.y15_c00133{bottom:455.707067pt;}
.y14_c00133{bottom:497.067067pt;}
.y13_c00133{bottom:553.947067pt;}
.y12_c00133{bottom:584.587067pt;}
.y11_c00133{bottom:615.147067pt;}
.y10_c00133{bottom:653.787067pt;}
.yf_c00133{bottom:684.347067pt;}
.ye_c00133{bottom:714.987067pt;}
.yd_c00133{bottom:745.547067pt;}
.yc_c00133{bottom:776.187067pt;}
.yb_c00133{bottom:806.747067pt;}
.ya_c00133{bottom:845.387067pt;}
.y9_c00133{bottom:875.947067pt;}
.y8_c00133{bottom:906.587067pt;}
.y7_c00133{bottom:937.147067pt;}
.y6_c00133{bottom:983.787067pt;}
.y5_c00133{bottom:1014.347067pt;}
.y2_c00133{bottom:1043.387067pt;}
.y1_c00133{bottom:1063.867067pt;}
.h2_c00133{height:42.656250pt;}
.h7_c00133{height:44.388750pt;}
.h8_c00133{height:44.395790pt;}
.h1_c00133{height:44.724687pt;}
.h3_c00133{height:50.062500pt;}
.h4_c00133{height:53.562500pt;}
.h5_c00133{height:57.894063pt;}
.h6_c00133{height:72.423750pt;}
.h0_c00133{height:1122.666667pt;}
.w1_c00133{width:793.333333pt;}
.w0_c00133{width:793.626667pt;}
.x0_c00133{left:0.000000pt;}
.x2_c00133{left:113.440000pt;}
.x1_c00133{left:129.280000pt;}
.x7_c00133{left:137.440400pt;}
.x6_c00133{left:160.720000pt;}
.x5_c00133{left:232.480000pt;}
.x4_c00133{left:386.880000pt;}
.x3_c00133{left:396.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_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_e77928d4018a40d9c6ae9e8a.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.100098;font-style:normal;font-weight:normal;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_5e52add90f3b80695bfdaa75.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;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_c00134;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00134;src:url('chunks/assets/font_a7f16c99dc676563840f5ec2.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;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_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;}
.v1_c00134{vertical-align:15.840000px;}
.v2_c00134{vertical-align:29.880000px;}
.ls11_c00134{letter-spacing:-0.151200px;}
.ls1a_c00134{letter-spacing:-0.036072px;}
.ls14_c00134{letter-spacing:-0.036000px;}
.ls17_c00134{letter-spacing:-0.028800px;}
.ls12_c00134{letter-spacing:-0.021600px;}
.ls15_c00134{letter-spacing:-0.014400px;}
.ls1b_c00134{letter-spacing:-0.012024px;}
.ls13_c00134{letter-spacing:-0.007200px;}
.ls19_c00134{letter-spacing:-0.006012px;}
.ls1c_c00134{letter-spacing:-0.003888px;}
.ls10_c00134{letter-spacing:0.000000px;}
.lsd_c00134{letter-spacing:0.004788px;}
.ls2_c00134{letter-spacing:0.007200px;}
.ls8_c00134{letter-spacing:0.014364px;}
.ls4_c00134{letter-spacing:0.014400px;}
.lsf_c00134{letter-spacing:0.019152px;}
.ls5_c00134{letter-spacing:0.021600px;}
.lse_c00134{letter-spacing:0.023940px;}
.lsb_c00134{letter-spacing:0.028728px;}
.ls18_c00134{letter-spacing:0.036000px;}
.lsc_c00134{letter-spacing:0.047880px;}
.ls0_c00134{letter-spacing:0.048096px;}
.ls6_c00134{letter-spacing:0.054108px;}
.ls3_c00134{letter-spacing:0.054756px;}
.lsa_c00134{letter-spacing:0.057456px;}
.ls16_c00134{letter-spacing:0.093600px;}
.ls7_c00134{letter-spacing:0.136080px;}
.ls9_c00134{letter-spacing:0.378720px;}
.ls1_c00134{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00134{word-spacing:-10.804752px;}
.ws0_c00134{word-spacing:-10.584756px;}
.ws1_c00134{word-spacing:-9.856080px;}
.ws27_c00134{word-spacing:-0.270540px;}
.ws2b_c00134{word-spacing:-0.086400px;}
.ws2d_c00134{word-spacing:-0.038304px;}
.ws2f_c00134{word-spacing:-0.028728px;}
.ws2e_c00134{word-spacing:-0.009576px;}
.wsf_c00134{word-spacing:-0.007200px;}
.ws32_c00134{word-spacing:-0.004788px;}
.ws4_c00134{word-spacing:0.000000px;}
.ws2c_c00134{word-spacing:0.004788px;}
.ws20_c00134{word-spacing:0.007200px;}
.ws31_c00134{word-spacing:0.014364px;}
.ws30_c00134{word-spacing:0.019152px;}
.ws17_c00134{word-spacing:0.028800px;}
.ws2a_c00134{word-spacing:0.036000px;}
.ws3_c00134{word-spacing:0.042084px;}
.ws26_c00134{word-spacing:0.102204px;}
.ws1c_c00134{word-spacing:0.324000px;}
.ws1b_c00134{word-spacing:0.338400px;}
.ws14_c00134{word-spacing:4.363200px;}
.ws15_c00134{word-spacing:5.047200px;}
.ws16_c00134{word-spacing:5.119200px;}
.ws21_c00134{word-spacing:5.378400px;}
.ws22_c00134{word-spacing:5.385600px;}
.ws6_c00134{word-spacing:7.495200px;}
.ws5_c00134{word-spacing:7.581600px;}
.ws11_c00134{word-spacing:8.618400px;}
.ws18_c00134{word-spacing:8.654400px;}
.ws10_c00134{word-spacing:8.690400px;}
.ws25_c00134{word-spacing:9.036036px;}
.ws23_c00134{word-spacing:9.456876px;}
.ws24_c00134{word-spacing:9.486936px;}
.wsa_c00134{word-spacing:10.022400px;}
.ws9_c00134{word-spacing:10.087200px;}
.ws12_c00134{word-spacing:10.389600px;}
.ws13_c00134{word-spacing:10.425600px;}
.ws1d_c00134{word-spacing:10.454400px;}
.ws29_c00134{word-spacing:10.800000px;}
.ws28_c00134{word-spacing:10.850400px;}
.wsd_c00134{word-spacing:11.527200px;}
.wse_c00134{word-spacing:11.534400px;}
.ws1a_c00134{word-spacing:11.541600px;}
.ws19_c00134{word-spacing:11.548800px;}
.wsc_c00134{word-spacing:14.371200px;}
.wsb_c00134{word-spacing:14.421600px;}
.ws1e_c00134{word-spacing:17.287200px;}
.ws1f_c00134{word-spacing:17.301600px;}
.ws7_c00134{word-spacing:25.243200px;}
.ws8_c00134{word-spacing:25.264800px;}
._0_c00134{margin-left:-1.322640px;}
._1_c00134{width:1.116000px;}
.fc0_c00134{color:rgb(0,0,0);}
.fs4_c00134{font-size:38.880000px;}
.fs3_c00134{font-size:42.120000px;}
.fs5_c00134{font-size:47.880000px;}
.fs1_c00134{font-size:54.000000px;}
.fs0_c00134{font-size:60.120000px;}
.fs2_c00134{font-size:72.000000px;}
.y0_c00134{bottom:0.000000px;}
.y3_c00134{bottom:57.450450px;}
.y24_c00134{bottom:113.706030px;}
.y23_c00134{bottom:132.068010px;}
.y22_c00134{bottom:150.334230px;}
.y21_c00134{bottom:168.598620px;}
.y20_c00134{bottom:186.964230px;}
.y1f_c00134{bottom:205.230450px;}
.y1e_c00134{bottom:220.440450px;}
.y1d_c00134{bottom:241.140450px;}
.y1c_c00134{bottom:261.840450px;}
.y1b_c00134{bottom:312.510450px;}
.y1a_c00134{bottom:346.890450px;}
.y19_c00134{bottom:393.417000px;}
.y18_c00134{bottom:410.250600px;}
.y17_c00134{bottom:451.110450px;}
.y16_c00134{bottom:485.490450px;}
.y15_c00134{bottom:528.960450px;}
.y14_c00134{bottom:563.340450px;}
.y13_c00134{bottom:597.810450px;}
.y12_c00134{bottom:632.190450px;}
.y11_c00134{bottom:666.660600px;}
.y10_c00134{bottom:701.040600px;}
.yf_c00134{bottom:744.510600px;}
.ye_c00134{bottom:778.890600px;}
.yd_c00134{bottom:822.360450px;}
.yc_c00134{bottom:856.740450px;}
.yb_c00134{bottom:891.210450px;}
.ya_c00134{bottom:925.590450px;}
.y9_c00134{bottom:969.060450px;}
.y8_c00134{bottom:1003.440450px;}
.y7_c00134{bottom:1037.910450px;}
.y6_c00134{bottom:1072.290450px;}
.y5_c00134{bottom:1106.760450px;}
.y4_c00134{bottom:1141.140450px;}
.y2_c00134{bottom:1177.860450px;}
.y1_c00134{bottom:1196.850450px;}
.h8_c00134{height:47.988281px;}
.h9_c00134{height:49.937344px;}
.ha_c00134{height:49.944664px;}
.h1_c00134{height:50.315273px;}
.h7_c00134{height:50.329073px;}
.h2_c00134{height:56.320312px;}
.h4_c00134{height:60.257812px;}
.h6_c00134{height:65.130220px;}
.h5_c00134{height:65.130820px;}
.h3_c00134{height:72.160312px;}
.h0_c00134{height:1263.000000px;}
.w1_c00134{width:892.500000px;}
.w0_c00134{width:892.830000px;}
.x0_c00134{left:0.000000px;}
.x1_c00134{left:127.620000px;}
.x3_c00134{left:168.030000px;}
.x2_c00134{left:180.810000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.v1_c00134{vertical-align:14.080000pt;}
.v2_c00134{vertical-align:26.560000pt;}
.ls11_c00134{letter-spacing:-0.134400pt;}
.ls1a_c00134{letter-spacing:-0.032064pt;}
.ls14_c00134{letter-spacing:-0.032000pt;}
.ls17_c00134{letter-spacing:-0.025600pt;}
.ls12_c00134{letter-spacing:-0.019200pt;}
.ls15_c00134{letter-spacing:-0.012800pt;}
.ls1b_c00134{letter-spacing:-0.010688pt;}
.ls13_c00134{letter-spacing:-0.006400pt;}
.ls19_c00134{letter-spacing:-0.005344pt;}
.ls1c_c00134{letter-spacing:-0.003456pt;}
.ls10_c00134{letter-spacing:0.000000pt;}
.lsd_c00134{letter-spacing:0.004256pt;}
.ls2_c00134{letter-spacing:0.006400pt;}
.ls8_c00134{letter-spacing:0.012768pt;}
.ls4_c00134{letter-spacing:0.012800pt;}
.lsf_c00134{letter-spacing:0.017024pt;}
.ls5_c00134{letter-spacing:0.019200pt;}
.lse_c00134{letter-spacing:0.021280pt;}
.lsb_c00134{letter-spacing:0.025536pt;}
.ls18_c00134{letter-spacing:0.032000pt;}
.lsc_c00134{letter-spacing:0.042560pt;}
.ls0_c00134{letter-spacing:0.042752pt;}
.ls6_c00134{letter-spacing:0.048096pt;}
.ls3_c00134{letter-spacing:0.048672pt;}
.lsa_c00134{letter-spacing:0.051072pt;}
.ls16_c00134{letter-spacing:0.083200pt;}
.ls7_c00134{letter-spacing:0.120960pt;}
.ls9_c00134{letter-spacing:0.336640pt;}
.ls1_c00134{letter-spacing:1077.440000pt;}
.ws2_c00134{word-spacing:-9.604224pt;}
.ws0_c00134{word-spacing:-9.408672pt;}
.ws1_c00134{word-spacing:-8.760960pt;}
.ws27_c00134{word-spacing:-0.240480pt;}
.ws2b_c00134{word-spacing:-0.076800pt;}
.ws2d_c00134{word-spacing:-0.034048pt;}
.ws2f_c00134{word-spacing:-0.025536pt;}
.ws2e_c00134{word-spacing:-0.008512pt;}
.wsf_c00134{word-spacing:-0.006400pt;}
.ws32_c00134{word-spacing:-0.004256pt;}
.ws4_c00134{word-spacing:0.000000pt;}
.ws2c_c00134{word-spacing:0.004256pt;}
.ws20_c00134{word-spacing:0.006400pt;}
.ws31_c00134{word-spacing:0.012768pt;}
.ws30_c00134{word-spacing:0.017024pt;}
.ws17_c00134{word-spacing:0.025600pt;}
.ws2a_c00134{word-spacing:0.032000pt;}
.ws3_c00134{word-spacing:0.037408pt;}
.ws26_c00134{word-spacing:0.090848pt;}
.ws1c_c00134{word-spacing:0.288000pt;}
.ws1b_c00134{word-spacing:0.300800pt;}
.ws14_c00134{word-spacing:3.878400pt;}
.ws15_c00134{word-spacing:4.486400pt;}
.ws16_c00134{word-spacing:4.550400pt;}
.ws21_c00134{word-spacing:4.780800pt;}
.ws22_c00134{word-spacing:4.787200pt;}
.ws6_c00134{word-spacing:6.662400pt;}
.ws5_c00134{word-spacing:6.739200pt;}
.ws11_c00134{word-spacing:7.660800pt;}
.ws18_c00134{word-spacing:7.692800pt;}
.ws10_c00134{word-spacing:7.724800pt;}
.ws25_c00134{word-spacing:8.032032pt;}
.ws23_c00134{word-spacing:8.406112pt;}
.ws24_c00134{word-spacing:8.432832pt;}
.wsa_c00134{word-spacing:8.908800pt;}
.ws9_c00134{word-spacing:8.966400pt;}
.ws12_c00134{word-spacing:9.235200pt;}
.ws13_c00134{word-spacing:9.267200pt;}
.ws1d_c00134{word-spacing:9.292800pt;}
.ws29_c00134{word-spacing:9.600000pt;}
.ws28_c00134{word-spacing:9.644800pt;}
.wsd_c00134{word-spacing:10.246400pt;}
.wse_c00134{word-spacing:10.252800pt;}
.ws1a_c00134{word-spacing:10.259200pt;}
.ws19_c00134{word-spacing:10.265600pt;}
.wsc_c00134{word-spacing:12.774400pt;}
.wsb_c00134{word-spacing:12.819200pt;}
.ws1e_c00134{word-spacing:15.366400pt;}
.ws1f_c00134{word-spacing:15.379200pt;}
.ws7_c00134{word-spacing:22.438400pt;}
.ws8_c00134{word-spacing:22.457600pt;}
._0_c00134{margin-left:-1.175680pt;}
._1_c00134{width:0.992000pt;}
.fs4_c00134{font-size:34.560000pt;}
.fs3_c00134{font-size:37.440000pt;}
.fs5_c00134{font-size:42.560000pt;}
.fs1_c00134{font-size:48.000000pt;}
.fs0_c00134{font-size:53.440000pt;}
.fs2_c00134{font-size:64.000000pt;}
.y0_c00134{bottom:0.000000pt;}
.y3_c00134{bottom:51.067067pt;}
.y24_c00134{bottom:101.072027pt;}
.y23_c00134{bottom:117.393787pt;}
.y22_c00134{bottom:133.630427pt;}
.y21_c00134{bottom:149.865440pt;}
.y20_c00134{bottom:166.190427pt;}
.y1f_c00134{bottom:182.427067pt;}
.y1e_c00134{bottom:195.947067pt;}
.y1d_c00134{bottom:214.347067pt;}
.y1c_c00134{bottom:232.747067pt;}
.y1b_c00134{bottom:277.787067pt;}
.y1a_c00134{bottom:308.347067pt;}
.y19_c00134{bottom:349.704000pt;}
.y18_c00134{bottom:364.667200pt;}
.y17_c00134{bottom:400.987067pt;}
.y16_c00134{bottom:431.547067pt;}
.y15_c00134{bottom:470.187067pt;}
.y14_c00134{bottom:500.747067pt;}
.y13_c00134{bottom:531.387067pt;}
.y12_c00134{bottom:561.947067pt;}
.y11_c00134{bottom:592.587200pt;}
.y10_c00134{bottom:623.147200pt;}
.yf_c00134{bottom:661.787200pt;}
.ye_c00134{bottom:692.347200pt;}
.yd_c00134{bottom:730.987067pt;}
.yc_c00134{bottom:761.547067pt;}
.yb_c00134{bottom:792.187067pt;}
.ya_c00134{bottom:822.747067pt;}
.y9_c00134{bottom:861.387067pt;}
.y8_c00134{bottom:891.947067pt;}
.y7_c00134{bottom:922.587067pt;}
.y6_c00134{bottom:953.147067pt;}
.y5_c00134{bottom:983.787067pt;}
.y4_c00134{bottom:1014.347067pt;}
.y2_c00134{bottom:1046.987067pt;}
.y1_c00134{bottom:1063.867067pt;}
.h8_c00134{height:42.656250pt;}
.h9_c00134{height:44.388750pt;}
.ha_c00134{height:44.395257pt;}
.h1_c00134{height:44.724687pt;}
.h7_c00134{height:44.736954pt;}
.h2_c00134{height:50.062500pt;}
.h4_c00134{height:53.562500pt;}
.h6_c00134{height:57.893529pt;}
.h5_c00134{height:57.894063pt;}
.h3_c00134{height:64.142500pt;}
.h0_c00134{height:1122.666667pt;}
.w1_c00134{width:793.333333pt;}
.w0_c00134{width:793.626667pt;}
.x0_c00134{left:0.000000pt;}
.x1_c00134{left:113.440000pt;}
.x3_c00134{left:149.360000pt;}
.x2_c00134{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_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_d22e44c039ee9868ae1e742c.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_ce12318ca095a576950fb559.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00135;src:url('chunks/assets/font_fe782cae6091f2a1d8610e89.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00135;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;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_c00135;src:url('chunks/assets/font_7a179bf48a632b5baa47b054.woff2')format("woff");}.ff6_c00135{font-family:ff6_c00135;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_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);}
.v3_c00135{vertical-align:-15.120000px;}
.v0_c00135{vertical-align:0.000000px;}
.v2_c00135{vertical-align:15.149520px;}
.v1_c00135{vertical-align:29.880000px;}
.ls1c_c00135{letter-spacing:-0.266400px;}
.ls16_c00135{letter-spacing:-0.151200px;}
.ls1a_c00135{letter-spacing:-0.092268px;}
.ls18_c00135{letter-spacing:-0.075492px;}
.ls26_c00135{letter-spacing:-0.064800px;}
.ls1f_c00135{letter-spacing:-0.060120px;}
.ls14_c00135{letter-spacing:-0.048096px;}
.ls23_c00135{letter-spacing:-0.036000px;}
.ls1d_c00135{letter-spacing:-0.030060px;}
.ls25_c00135{letter-spacing:-0.028800px;}
.ls1b_c00135{letter-spacing:-0.021600px;}
.ls13_c00135{letter-spacing:-0.018036px;}
.ls24_c00135{letter-spacing:-0.014400px;}
.ls1e_c00135{letter-spacing:-0.012024px;}
.ls19_c00135{letter-spacing:-0.008388px;}
.ls28_c00135{letter-spacing:-0.007776px;}
.ls22_c00135{letter-spacing:-0.007200px;}
.ls29_c00135{letter-spacing:-0.003888px;}
.ls15_c00135{letter-spacing:0.000000px;}
.ls10_c00135{letter-spacing:0.004788px;}
.ls1_c00135{letter-spacing:0.007200px;}
.ls6_c00135{letter-spacing:0.012024px;}
.lsa_c00135{letter-spacing:0.014364px;}
.lsd_c00135{letter-spacing:0.019152px;}
.ls5_c00135{letter-spacing:0.021600px;}
.ls11_c00135{letter-spacing:0.023940px;}
.ls8_c00135{letter-spacing:0.028800px;}
.ls9_c00135{letter-spacing:0.033516px;}
.ls21_c00135{letter-spacing:0.036000px;}
.ls0_c00135{letter-spacing:0.036072px;}
.ls27_c00135{letter-spacing:0.043200px;}
.ls2_c00135{letter-spacing:0.054756px;}
.lsf_c00135{letter-spacing:0.057456px;}
.ls12_c00135{letter-spacing:0.062244px;}
.ls17_c00135{letter-spacing:0.093600px;}
.ls7_c00135{letter-spacing:0.136080px;}
.ls20_c00135{letter-spacing:0.168336px;}
.lsb_c00135{letter-spacing:0.189360px;}
.ls4_c00135{letter-spacing:0.327132px;}
.lsc_c00135{letter-spacing:0.351360px;}
.ls2a_c00135{letter-spacing:0.353808px;}
.lse_c00135{letter-spacing:0.378720px;}
.ls3_c00135{letter-spacing:29.371320px;}
.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;}
}
.ws3_c00135{word-spacing:-21.297132px;}
.ws4_c00135{word-spacing:-20.961612px;}
.ws2_c00135{word-spacing:-20.894508px;}
.ws1_c00135{word-spacing:-19.530000px;}
.ws6_c00135{word-spacing:-17.935200px;}
.ws7_c00135{word-spacing:-13.310640px;}
.ws8_c00135{word-spacing:-11.162448px;}
.ws9_c00135{word-spacing:-10.804752px;}
.ws0_c00135{word-spacing:-10.584756px;}
.ws5_c00135{word-spacing:-9.856080px;}
.ws23_c00135{word-spacing:-0.086400px;}
.ws37_c00135{word-spacing:-0.043092px;}
.ws34_c00135{word-spacing:-0.038304px;}
.ws10_c00135{word-spacing:-0.021600px;}
.ws31_c00135{word-spacing:-0.014364px;}
.ws33_c00135{word-spacing:-0.009576px;}
.ws11_c00135{word-spacing:-0.007200px;}
.ws36_c00135{word-spacing:-0.004788px;}
.wsd_c00135{word-spacing:0.000000px;}
.ws32_c00135{word-spacing:0.004788px;}
.ws1b_c00135{word-spacing:0.007200px;}
.ws35_c00135{word-spacing:0.014364px;}
.ws22_c00135{word-spacing:0.036000px;}
.wsa_c00135{word-spacing:0.054108px;}
.ws13_c00135{word-spacing:0.102204px;}
.wsb_c00135{word-spacing:0.108216px;}
.ws12_c00135{word-spacing:0.120240px;}
.wsc_c00135{word-spacing:0.138276px;}
.ws1c_c00135{word-spacing:1.029600px;}
.ws1d_c00135{word-spacing:1.080000px;}
.ws21_c00135{word-spacing:1.382400px;}
.ws20_c00135{word-spacing:1.411200px;}
.ws1e_c00135{word-spacing:1.742400px;}
.ws1f_c00135{word-spacing:1.836000px;}
.wsf_c00135{word-spacing:2.181600px;}
.ws24_c00135{word-spacing:2.188800px;}
.ws30_c00135{word-spacing:2.851200px;}
.ws2f_c00135{word-spacing:2.980800px;}
.ws25_c00135{word-spacing:3.232800px;}
.ws26_c00135{word-spacing:3.276000px;}
.ws19_c00135{word-spacing:3.470400px;}
.ws18_c00135{word-spacing:3.571200px;}
.ws17_c00135{word-spacing:3.600000px;}
.ws2d_c00135{word-spacing:6.472800px;}
.ws2e_c00135{word-spacing:6.487200px;}
.ws2a_c00135{word-spacing:7.581600px;}
.ws29_c00135{word-spacing:7.646400px;}
.ws27_c00135{word-spacing:7.884000px;}
.ws28_c00135{word-spacing:7.948800px;}
.ws15_c00135{word-spacing:10.160280px;}
.ws14_c00135{word-spacing:10.190340px;}
.ws16_c00135{word-spacing:10.232424px;}
.ws1a_c00135{word-spacing:13.341600px;}
.ws2c_c00135{word-spacing:24.472800px;}
.ws2b_c00135{word-spacing:24.480000px;}
.wse_c00135{word-spacing:26.632800px;}
._0_c00135{margin-left:-1.142280px;}
._1_c00135{width:1.080000px;}
.fc0_c00135{color:rgb(0,0,0);}
.fs6_c00135{font-size:38.880000px;}
.fs3_c00135{font-size:42.120000px;}
.fs7_c00135{font-size:47.880000px;}
.fs2_c00135{font-size:54.000000px;}
.fs0_c00135{font-size:60.120000px;}
.fs1_c00135{font-size:72.000000px;}
.fs4_c00135{font-size:78.120000px;}
.fs5_c00135{font-size:83.880000px;}
.y0_c00135{bottom:0.000000px;}
.y3_c00135{bottom:57.450450px;}
.y4_c00135{bottom:61.410450px;}
.y25_c00135{bottom:113.706030px;}
.y24_c00135{bottom:132.068010px;}
.y23_c00135{bottom:150.334230px;}
.y22_c00135{bottom:168.598620px;}
.y21_c00135{bottom:186.964230px;}
.y20_c00135{bottom:205.234230px;}
.y1f_c00135{bottom:223.500450px;}
.y1e_c00135{bottom:238.710450px;}
.y1d_c00135{bottom:259.410450px;}
.y1c_c00135{bottom:280.110600px;}
.y1b_c00135{bottom:349.770600px;}
.y1a_c00135{bottom:384.150600px;}
.y19_c00135{bottom:418.620450px;}
.y18_c00135{bottom:453.000450px;}
.y17_c00135{bottom:487.470450px;}
.y16_c00135{bottom:521.850450px;}
.y15_c00135{bottom:556.320450px;}
.y14_c00135{bottom:599.700450px;}
.y13_c00135{bottom:634.170450px;}
.y12_c00135{bottom:668.550450px;}
.y11_c00135{bottom:703.020450px;}
.y10_c00135{bottom:746.400450px;}
.yf_c00135{bottom:780.870450px;}
.ye_c00135{bottom:815.250450px;}
.yd_c00135{bottom:849.720450px;}
.yc_c00135{bottom:887.153070px;}
.yb_c00135{bottom:904.076850px;}
.ya_c00135{bottom:920.910450px;}
.y9_c00135{bottom:961.770450px;}
.y8_c00135{bottom:996.150450px;}
.y7_c00135{bottom:1042.680450px;}
.y6_c00135{bottom:1106.760450px;}
.y5_c00135{bottom:1141.140450px;}
.y2_c00135{bottom:1173.810450px;}
.y1_c00135{bottom:1196.850450px;}
.h2_c00135{height:47.988281px;}
.h9_c00135{height:49.937344px;}
.ha_c00135{height:49.944664px;}
.h1_c00135{height:50.315273px;}
.h7_c00135{height:50.344793px;}
.h3_c00135{height:56.320312px;}
.h4_c00135{height:60.257812px;}
.h5_c00135{height:65.130820px;}
.h8_c00135{height:65.131420px;}
.h6_c00135{height:81.476719px;}
.h0_c00135{height:1263.000000px;}
.w1_c00135{width:892.500000px;}
.w0_c00135{width:892.830000px;}
.x0_c00135{left:0.000000px;}
.x2_c00135{left:127.620000px;}
.x1_c00135{left:145.440000px;}
.x6_c00135{left:154.800000px;}
.x5_c00135{left:180.810000px;}
.x4_c00135{left:435.240000px;}
.x3_c00135{left:446.490000px;}
@media print{
.v3_c00135{vertical-align:-13.440000pt;}
.v0_c00135{vertical-align:0.000000pt;}
.v2_c00135{vertical-align:13.466240pt;}
.v1_c00135{vertical-align:26.560000pt;}
.ls1c_c00135{letter-spacing:-0.236800pt;}
.ls16_c00135{letter-spacing:-0.134400pt;}
.ls1a_c00135{letter-spacing:-0.082016pt;}
.ls18_c00135{letter-spacing:-0.067104pt;}
.ls26_c00135{letter-spacing:-0.057600pt;}
.ls1f_c00135{letter-spacing:-0.053440pt;}
.ls14_c00135{letter-spacing:-0.042752pt;}
.ls23_c00135{letter-spacing:-0.032000pt;}
.ls1d_c00135{letter-spacing:-0.026720pt;}
.ls25_c00135{letter-spacing:-0.025600pt;}
.ls1b_c00135{letter-spacing:-0.019200pt;}
.ls13_c00135{letter-spacing:-0.016032pt;}
.ls24_c00135{letter-spacing:-0.012800pt;}
.ls1e_c00135{letter-spacing:-0.010688pt;}
.ls19_c00135{letter-spacing:-0.007456pt;}
.ls28_c00135{letter-spacing:-0.006912pt;}
.ls22_c00135{letter-spacing:-0.006400pt;}
.ls29_c00135{letter-spacing:-0.003456pt;}
.ls15_c00135{letter-spacing:0.000000pt;}
.ls10_c00135{letter-spacing:0.004256pt;}
.ls1_c00135{letter-spacing:0.006400pt;}
.ls6_c00135{letter-spacing:0.010688pt;}
.lsa_c00135{letter-spacing:0.012768pt;}
.lsd_c00135{letter-spacing:0.017024pt;}
.ls5_c00135{letter-spacing:0.019200pt;}
.ls11_c00135{letter-spacing:0.021280pt;}
.ls8_c00135{letter-spacing:0.025600pt;}
.ls9_c00135{letter-spacing:0.029792pt;}
.ls21_c00135{letter-spacing:0.032000pt;}
.ls0_c00135{letter-spacing:0.032064pt;}
.ls27_c00135{letter-spacing:0.038400pt;}
.ls2_c00135{letter-spacing:0.048672pt;}
.lsf_c00135{letter-spacing:0.051072pt;}
.ls12_c00135{letter-spacing:0.055328pt;}
.ls17_c00135{letter-spacing:0.083200pt;}
.ls7_c00135{letter-spacing:0.120960pt;}
.ls20_c00135{letter-spacing:0.149632pt;}
.lsb_c00135{letter-spacing:0.168320pt;}
.ls4_c00135{letter-spacing:0.290784pt;}
.lsc_c00135{letter-spacing:0.312320pt;}
.ls2a_c00135{letter-spacing:0.314496pt;}
.lse_c00135{letter-spacing:0.336640pt;}
.ls3_c00135{letter-spacing:26.107840pt;}
.ws3_c00135{word-spacing:-18.930784pt;}
.ws4_c00135{word-spacing:-18.632544pt;}
.ws2_c00135{word-spacing:-18.572896pt;}
.ws1_c00135{word-spacing:-17.360000pt;}
.ws6_c00135{word-spacing:-15.942400pt;}
.ws7_c00135{word-spacing:-11.831680pt;}
.ws8_c00135{word-spacing:-9.922176pt;}
.ws9_c00135{word-spacing:-9.604224pt;}
.ws0_c00135{word-spacing:-9.408672pt;}
.ws5_c00135{word-spacing:-8.760960pt;}
.ws23_c00135{word-spacing:-0.076800pt;}
.ws37_c00135{word-spacing:-0.038304pt;}
.ws34_c00135{word-spacing:-0.034048pt;}
.ws10_c00135{word-spacing:-0.019200pt;}
.ws31_c00135{word-spacing:-0.012768pt;}
.ws33_c00135{word-spacing:-0.008512pt;}
.ws11_c00135{word-spacing:-0.006400pt;}
.ws36_c00135{word-spacing:-0.004256pt;}
.wsd_c00135{word-spacing:0.000000pt;}
.ws32_c00135{word-spacing:0.004256pt;}
.ws1b_c00135{word-spacing:0.006400pt;}
.ws35_c00135{word-spacing:0.012768pt;}
.ws22_c00135{word-spacing:0.032000pt;}
.wsa_c00135{word-spacing:0.048096pt;}
.ws13_c00135{word-spacing:0.090848pt;}
.wsb_c00135{word-spacing:0.096192pt;}
.ws12_c00135{word-spacing:0.106880pt;}
.wsc_c00135{word-spacing:0.122912pt;}
.ws1c_c00135{word-spacing:0.915200pt;}
.ws1d_c00135{word-spacing:0.960000pt;}
.ws21_c00135{word-spacing:1.228800pt;}
.ws20_c00135{word-spacing:1.254400pt;}
.ws1e_c00135{word-spacing:1.548800pt;}
.ws1f_c00135{word-spacing:1.632000pt;}
.wsf_c00135{word-spacing:1.939200pt;}
.ws24_c00135{word-spacing:1.945600pt;}
.ws30_c00135{word-spacing:2.534400pt;}
.ws2f_c00135{word-spacing:2.649600pt;}
.ws25_c00135{word-spacing:2.873600pt;}
.ws26_c00135{word-spacing:2.912000pt;}
.ws19_c00135{word-spacing:3.084800pt;}
.ws18_c00135{word-spacing:3.174400pt;}
.ws17_c00135{word-spacing:3.200000pt;}
.ws2d_c00135{word-spacing:5.753600pt;}
.ws2e_c00135{word-spacing:5.766400pt;}
.ws2a_c00135{word-spacing:6.739200pt;}
.ws29_c00135{word-spacing:6.796800pt;}
.ws27_c00135{word-spacing:7.008000pt;}
.ws28_c00135{word-spacing:7.065600pt;}
.ws15_c00135{word-spacing:9.031360pt;}
.ws14_c00135{word-spacing:9.058080pt;}
.ws16_c00135{word-spacing:9.095488pt;}
.ws1a_c00135{word-spacing:11.859200pt;}
.ws2c_c00135{word-spacing:21.753600pt;}
.ws2b_c00135{word-spacing:21.760000pt;}
.wse_c00135{word-spacing:23.673600pt;}
._0_c00135{margin-left:-1.015360pt;}
._1_c00135{width:0.960000pt;}
.fs6_c00135{font-size:34.560000pt;}
.fs3_c00135{font-size:37.440000pt;}
.fs7_c00135{font-size:42.560000pt;}
.fs2_c00135{font-size:48.000000pt;}
.fs0_c00135{font-size:53.440000pt;}
.fs1_c00135{font-size:64.000000pt;}
.fs4_c00135{font-size:69.440000pt;}
.fs5_c00135{font-size:74.560000pt;}
.y0_c00135{bottom:0.000000pt;}
.y3_c00135{bottom:51.067067pt;}
.y4_c00135{bottom:54.587067pt;}
.y25_c00135{bottom:101.072027pt;}
.y24_c00135{bottom:117.393787pt;}
.y23_c00135{bottom:133.630427pt;}
.y22_c00135{bottom:149.865440pt;}
.y21_c00135{bottom:166.190427pt;}
.y20_c00135{bottom:182.430427pt;}
.y1f_c00135{bottom:198.667067pt;}
.y1e_c00135{bottom:212.187067pt;}
.y1d_c00135{bottom:230.587067pt;}
.y1c_c00135{bottom:248.987200pt;}
.y1b_c00135{bottom:310.907200pt;}
.y1a_c00135{bottom:341.467200pt;}
.y19_c00135{bottom:372.107067pt;}
.y18_c00135{bottom:402.667067pt;}
.y17_c00135{bottom:433.307067pt;}
.y16_c00135{bottom:463.867067pt;}
.y15_c00135{bottom:494.507067pt;}
.y14_c00135{bottom:533.067067pt;}
.y13_c00135{bottom:563.707067pt;}
.y12_c00135{bottom:594.267067pt;}
.y11_c00135{bottom:624.907067pt;}
.y10_c00135{bottom:663.467067pt;}
.yf_c00135{bottom:694.107067pt;}
.ye_c00135{bottom:724.667067pt;}
.yd_c00135{bottom:755.307067pt;}
.yc_c00135{bottom:788.580507pt;}
.yb_c00135{bottom:803.623867pt;}
.ya_c00135{bottom:818.587067pt;}
.y9_c00135{bottom:854.907067pt;}
.y8_c00135{bottom:885.467067pt;}
.y7_c00135{bottom:926.827067pt;}
.y6_c00135{bottom:983.787067pt;}
.y5_c00135{bottom:1014.347067pt;}
.y2_c00135{bottom:1043.387067pt;}
.y1_c00135{bottom:1063.867067pt;}
.h2_c00135{height:42.656250pt;}
.h9_c00135{height:44.388750pt;}
.ha_c00135{height:44.395257pt;}
.h1_c00135{height:44.724687pt;}
.h7_c00135{height:44.750928pt;}
.h3_c00135{height:50.062500pt;}
.h4_c00135{height:53.562500pt;}
.h5_c00135{height:57.894063pt;}
.h8_c00135{height:57.894596pt;}
.h6_c00135{height:72.423750pt;}
.h0_c00135{height:1122.666667pt;}
.w1_c00135{width:793.333333pt;}
.w0_c00135{width:793.626667pt;}
.x0_c00135{left:0.000000pt;}
.x2_c00135{left:113.440000pt;}
.x1_c00135{left:129.280000pt;}
.x6_c00135{left:137.600000pt;}
.x5_c00135{left:160.720000pt;}
.x4_c00135{left:386.880000pt;}
.x3_c00135{left:396.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_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_ecd1a4b71959fb02e23d8156.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.100098;font-style:normal;font-weight:normal;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_04fdb55d94da18fe9abd6135.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;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_c00136;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00136;src:url('chunks/assets/font_07c9b57133bf0357e74a15c6.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00136;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00136{font-family:ff5_c00136;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_c00136;src:url('chunks/assets/font_a7f16c99dc676563840f5ec2.woff2')format("woff");}.ff6_c00136{font-family:ff6_c00136;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_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;}
.v1_c00136{vertical-align:15.840000px;}
.v2_c00136{vertical-align:29.880000px;}
.ls11_c00136{letter-spacing:-0.151200px;}
.ls19_c00136{letter-spacing:-0.043200px;}
.ls18_c00136{letter-spacing:-0.036000px;}
.ls17_c00136{letter-spacing:-0.028800px;}
.ls13_c00136{letter-spacing:-0.021600px;}
.ls15_c00136{letter-spacing:-0.014400px;}
.ls12_c00136{letter-spacing:-0.007200px;}
.ls1a_c00136{letter-spacing:-0.003888px;}
.ls10_c00136{letter-spacing:0.000000px;}
.lsc_c00136{letter-spacing:0.004788px;}
.ls3_c00136{letter-spacing:0.007200px;}
.ls9_c00136{letter-spacing:0.014364px;}
.ls7_c00136{letter-spacing:0.014400px;}
.lsd_c00136{letter-spacing:0.019152px;}
.ls16_c00136{letter-spacing:0.021600px;}
.ls5_c00136{letter-spacing:0.025164px;}
.ls8_c00136{letter-spacing:0.028728px;}
.lsf_c00136{letter-spacing:0.033516px;}
.lse_c00136{letter-spacing:0.038304px;}
.ls0_c00136{letter-spacing:0.048096px;}
.ls2_c00136{letter-spacing:0.054756px;}
.lsb_c00136{letter-spacing:0.057456px;}
.ls6_c00136{letter-spacing:0.075492px;}
.ls14_c00136{letter-spacing:0.093600px;}
.lsa_c00136{letter-spacing:0.378720px;}
.ls4_c00136{letter-spacing:29.371320px;}
.ls1_c00136{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00136{word-spacing:-20.995164px;}
.ws1_c00136{word-spacing:-19.530000px;}
.ws3_c00136{word-spacing:-17.956800px;}
.ws4_c00136{word-spacing:-10.804752px;}
.ws0_c00136{word-spacing:-10.584756px;}
.ws1d_c00136{word-spacing:-0.167760px;}
.ws27_c00136{word-spacing:-0.038304px;}
.ws29_c00136{word-spacing:-0.019152px;}
.ws25_c00136{word-spacing:-0.014364px;}
.ws24_c00136{word-spacing:-0.009576px;}
.ws1c_c00136{word-spacing:-0.007200px;}
.ws6_c00136{word-spacing:0.000000px;}
.ws26_c00136{word-spacing:0.004788px;}
.wsa_c00136{word-spacing:0.007200px;}
.ws28_c00136{word-spacing:0.014364px;}
.ws5_c00136{word-spacing:0.042084px;}
.ws23_c00136{word-spacing:0.064800px;}
.ws10_c00136{word-spacing:0.302400px;}
.wsf_c00136{word-spacing:0.374400px;}
.ws9_c00136{word-spacing:0.381600px;}
.ws12_c00136{word-spacing:1.087200px;}
.ws13_c00136{word-spacing:1.094400px;}
.ws11_c00136{word-spacing:1.173600px;}
.wsb_c00136{word-spacing:2.541600px;}
.ws16_c00136{word-spacing:4.348800px;}
.ws17_c00136{word-spacing:6.127200px;}
.ws18_c00136{word-spacing:6.148800px;}
.ws8_c00136{word-spacing:7.552800px;}
.ws7_c00136{word-spacing:7.567200px;}
.wsd_c00136{word-spacing:9.295200px;}
.wsc_c00136{word-spacing:9.388800px;}
.ws1e_c00136{word-spacing:9.720000px;}
.ws1f_c00136{word-spacing:9.741600px;}
.ws19_c00136{word-spacing:11.217600px;}
.ws1a_c00136{word-spacing:11.275200px;}
.ws1b_c00136{word-spacing:12.607200px;}
.ws15_c00136{word-spacing:13.298400px;}
.ws14_c00136{word-spacing:13.312800px;}
.wse_c00136{word-spacing:17.301600px;}
.ws20_c00136{word-spacing:20.505600px;}
.ws22_c00136{word-spacing:29.685600px;}
.ws21_c00136{word-spacing:29.750400px;}
._0_c00136{margin-left:-1.322640px;}
._1_c00136{width:1.065600px;}
.fc0_c00136{color:rgb(0,0,0);}
.fs7_c00136{font-size:38.880000px;}
.fs3_c00136{font-size:42.120000px;}
.fs6_c00136{font-size:47.880000px;}
.fs1_c00136{font-size:54.000000px;}
.fs0_c00136{font-size:60.120000px;}
.fs2_c00136{font-size:72.000000px;}
.fs4_c00136{font-size:78.120000px;}
.fs5_c00136{font-size:83.880000px;}
.y0_c00136{bottom:0.000000px;}
.y3_c00136{bottom:57.450450px;}
.y24_c00136{bottom:113.711610px;}
.y23_c00136{bottom:132.073590px;}
.y22_c00136{bottom:150.339810px;}
.y21_c00136{bottom:168.606030px;}
.y20_c00136{bottom:186.968010px;}
.y1f_c00136{bottom:205.234230px;}
.y1e_c00136{bottom:223.502250px;}
.y1d_c00136{bottom:241.864230px;}
.y1c_c00136{bottom:260.130450px;}
.y1b_c00136{bottom:275.340450px;}
.y1a_c00136{bottom:296.040450px;}
.y19_c00136{bottom:316.740450px;}
.y18_c00136{bottom:383.970450px;}
.y17_c00136{bottom:418.350450px;}
.y16_c00136{bottom:452.820600px;}
.y15_c00136{bottom:487.200600px;}
.y14_c00136{bottom:533.730450px;}
.y13_c00136{bottom:597.810450px;}
.y12_c00136{bottom:632.190450px;}
.y11_c00136{bottom:675.660450px;}
.y10_c00136{bottom:710.040450px;}
.yf_c00136{bottom:744.510450px;}
.ye_c00136{bottom:778.890450px;}
.yd_c00136{bottom:813.360450px;}
.yc_c00136{bottom:847.740450px;}
.yb_c00136{bottom:882.210450px;}
.ya_c00136{bottom:925.590450px;}
.y9_c00136{bottom:960.060450px;}
.y8_c00136{bottom:994.440450px;}
.y7_c00136{bottom:1028.910450px;}
.y6_c00136{bottom:1072.290450px;}
.y5_c00136{bottom:1106.760450px;}
.y4_c00136{bottom:1141.140450px;}
.y2_c00136{bottom:1177.860450px;}
.y1_c00136{bottom:1196.850450px;}
.h7_c00136{height:47.988281px;}
.h8_c00136{height:49.937344px;}
.h1_c00136{height:50.315273px;}
.h2_c00136{height:56.320312px;}
.h5_c00136{height:60.257812px;}
.h4_c00136{height:65.130820px;}
.h3_c00136{height:72.160312px;}
.h6_c00136{height:81.476719px;}
.h0_c00136{height:1263.000000px;}
.w1_c00136{width:892.500000px;}
.w0_c00136{width:892.830000px;}
.x0_c00136{left:0.000000px;}
.x1_c00136{left:127.620000px;}
.x2_c00136{left:180.810000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.v1_c00136{vertical-align:14.080000pt;}
.v2_c00136{vertical-align:26.560000pt;}
.ls11_c00136{letter-spacing:-0.134400pt;}
.ls19_c00136{letter-spacing:-0.038400pt;}
.ls18_c00136{letter-spacing:-0.032000pt;}
.ls17_c00136{letter-spacing:-0.025600pt;}
.ls13_c00136{letter-spacing:-0.019200pt;}
.ls15_c00136{letter-spacing:-0.012800pt;}
.ls12_c00136{letter-spacing:-0.006400pt;}
.ls1a_c00136{letter-spacing:-0.003456pt;}
.ls10_c00136{letter-spacing:0.000000pt;}
.lsc_c00136{letter-spacing:0.004256pt;}
.ls3_c00136{letter-spacing:0.006400pt;}
.ls9_c00136{letter-spacing:0.012768pt;}
.ls7_c00136{letter-spacing:0.012800pt;}
.lsd_c00136{letter-spacing:0.017024pt;}
.ls16_c00136{letter-spacing:0.019200pt;}
.ls5_c00136{letter-spacing:0.022368pt;}
.ls8_c00136{letter-spacing:0.025536pt;}
.lsf_c00136{letter-spacing:0.029792pt;}
.lse_c00136{letter-spacing:0.034048pt;}
.ls0_c00136{letter-spacing:0.042752pt;}
.ls2_c00136{letter-spacing:0.048672pt;}
.lsb_c00136{letter-spacing:0.051072pt;}
.ls6_c00136{letter-spacing:0.067104pt;}
.ls14_c00136{letter-spacing:0.083200pt;}
.lsa_c00136{letter-spacing:0.336640pt;}
.ls4_c00136{letter-spacing:26.107840pt;}
.ls1_c00136{letter-spacing:1077.440000pt;}
.ws2_c00136{word-spacing:-18.662368pt;}
.ws1_c00136{word-spacing:-17.360000pt;}
.ws3_c00136{word-spacing:-15.961600pt;}
.ws4_c00136{word-spacing:-9.604224pt;}
.ws0_c00136{word-spacing:-9.408672pt;}
.ws1d_c00136{word-spacing:-0.149120pt;}
.ws27_c00136{word-spacing:-0.034048pt;}
.ws29_c00136{word-spacing:-0.017024pt;}
.ws25_c00136{word-spacing:-0.012768pt;}
.ws24_c00136{word-spacing:-0.008512pt;}
.ws1c_c00136{word-spacing:-0.006400pt;}
.ws6_c00136{word-spacing:0.000000pt;}
.ws26_c00136{word-spacing:0.004256pt;}
.wsa_c00136{word-spacing:0.006400pt;}
.ws28_c00136{word-spacing:0.012768pt;}
.ws5_c00136{word-spacing:0.037408pt;}
.ws23_c00136{word-spacing:0.057600pt;}
.ws10_c00136{word-spacing:0.268800pt;}
.wsf_c00136{word-spacing:0.332800pt;}
.ws9_c00136{word-spacing:0.339200pt;}
.ws12_c00136{word-spacing:0.966400pt;}
.ws13_c00136{word-spacing:0.972800pt;}
.ws11_c00136{word-spacing:1.043200pt;}
.wsb_c00136{word-spacing:2.259200pt;}
.ws16_c00136{word-spacing:3.865600pt;}
.ws17_c00136{word-spacing:5.446400pt;}
.ws18_c00136{word-spacing:5.465600pt;}
.ws8_c00136{word-spacing:6.713600pt;}
.ws7_c00136{word-spacing:6.726400pt;}
.wsd_c00136{word-spacing:8.262400pt;}
.wsc_c00136{word-spacing:8.345600pt;}
.ws1e_c00136{word-spacing:8.640000pt;}
.ws1f_c00136{word-spacing:8.659200pt;}
.ws19_c00136{word-spacing:9.971200pt;}
.ws1a_c00136{word-spacing:10.022400pt;}
.ws1b_c00136{word-spacing:11.206400pt;}
.ws15_c00136{word-spacing:11.820800pt;}
.ws14_c00136{word-spacing:11.833600pt;}
.wse_c00136{word-spacing:15.379200pt;}
.ws20_c00136{word-spacing:18.227200pt;}
.ws22_c00136{word-spacing:26.387200pt;}
.ws21_c00136{word-spacing:26.444800pt;}
._0_c00136{margin-left:-1.175680pt;}
._1_c00136{width:0.947200pt;}
.fs7_c00136{font-size:34.560000pt;}
.fs3_c00136{font-size:37.440000pt;}
.fs6_c00136{font-size:42.560000pt;}
.fs1_c00136{font-size:48.000000pt;}
.fs0_c00136{font-size:53.440000pt;}
.fs2_c00136{font-size:64.000000pt;}
.fs4_c00136{font-size:69.440000pt;}
.fs5_c00136{font-size:74.560000pt;}
.y0_c00136{bottom:0.000000pt;}
.y3_c00136{bottom:51.067067pt;}
.y24_c00136{bottom:101.076987pt;}
.y23_c00136{bottom:117.398747pt;}
.y22_c00136{bottom:133.635387pt;}
.y21_c00136{bottom:149.872027pt;}
.y20_c00136{bottom:166.193787pt;}
.y1f_c00136{bottom:182.430427pt;}
.y1e_c00136{bottom:198.668667pt;}
.y1d_c00136{bottom:214.990427pt;}
.y1c_c00136{bottom:231.227067pt;}
.y1b_c00136{bottom:244.747067pt;}
.y1a_c00136{bottom:263.147067pt;}
.y19_c00136{bottom:281.547067pt;}
.y18_c00136{bottom:341.307067pt;}
.y17_c00136{bottom:371.867067pt;}
.y16_c00136{bottom:402.507200pt;}
.y15_c00136{bottom:433.067200pt;}
.y14_c00136{bottom:474.427067pt;}
.y13_c00136{bottom:531.387067pt;}
.y12_c00136{bottom:561.947067pt;}
.y11_c00136{bottom:600.587067pt;}
.y10_c00136{bottom:631.147067pt;}
.yf_c00136{bottom:661.787067pt;}
.ye_c00136{bottom:692.347067pt;}
.yd_c00136{bottom:722.987067pt;}
.yc_c00136{bottom:753.547067pt;}
.yb_c00136{bottom:784.187067pt;}
.ya_c00136{bottom:822.747067pt;}
.y9_c00136{bottom:853.387067pt;}
.y8_c00136{bottom:883.947067pt;}
.y7_c00136{bottom:914.587067pt;}
.y6_c00136{bottom:953.147067pt;}
.y5_c00136{bottom:983.787067pt;}
.y4_c00136{bottom:1014.347067pt;}
.y2_c00136{bottom:1046.987067pt;}
.y1_c00136{bottom:1063.867067pt;}
.h7_c00136{height:42.656250pt;}
.h8_c00136{height:44.388750pt;}
.h1_c00136{height:44.724687pt;}
.h2_c00136{height:50.062500pt;}
.h5_c00136{height:53.562500pt;}
.h4_c00136{height:57.894063pt;}
.h3_c00136{height:64.142500pt;}
.h6_c00136{height:72.423750pt;}
.h0_c00136{height:1122.666667pt;}
.w1_c00136{width:793.333333pt;}
.w0_c00136{width:793.626667pt;}
.x0_c00136{left:0.000000pt;}
.x1_c00136{left:113.440000pt;}
.x2_c00136{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_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_ff30f3c8b51f0d1a61500472.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00137;src:url('chunks/assets/font_ab043350690f903f92f39f1e.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00137;src:url('chunks/assets/font_30772873fb1c1ab00a0f8e04.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00137;src:url('chunks/assets/font_36aba04696c5f8ce1a626372.woff2')format("woff");}.ff5_c00137{font-family:ff5_c00137;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_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;}
.v1_c00137{vertical-align:29.880000px;}
.ls11_c00137{letter-spacing:-0.151200px;}
.lsf_c00137{letter-spacing:-0.048096px;}
.ls16_c00137{letter-spacing:-0.028800px;}
.ls14_c00137{letter-spacing:-0.021600px;}
.lse_c00137{letter-spacing:-0.018036px;}
.ls15_c00137{letter-spacing:-0.014400px;}
.ls17_c00137{letter-spacing:-0.007776px;}
.ls12_c00137{letter-spacing:-0.007200px;}
.ls18_c00137{letter-spacing:-0.003888px;}
.ls10_c00137{letter-spacing:0.000000px;}
.ls8_c00137{letter-spacing:0.007200px;}
.lsa_c00137{letter-spacing:0.014364px;}
.lsd_c00137{letter-spacing:0.019152px;}
.ls4_c00137{letter-spacing:0.021600px;}
.ls9_c00137{letter-spacing:0.028728px;}
.ls0_c00137{letter-spacing:0.036072px;}
.ls3_c00137{letter-spacing:0.054756px;}
.ls5_c00137{letter-spacing:0.086400px;}
.ls13_c00137{letter-spacing:0.093600px;}
.ls1_c00137{letter-spacing:0.144000px;}
.lsb_c00137{letter-spacing:0.189360px;}
.lsc_c00137{letter-spacing:0.351360px;}
.ls19_c00137{letter-spacing:0.353808px;}
.ls7_c00137{letter-spacing:21.600000px;}
.ls2_c00137{letter-spacing:64.944000px;}
.ls6_c00137{letter-spacing:65.304000px;}
.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;}
}
.ws1_c00137{word-spacing:-17.971200px;}
.ws2_c00137{word-spacing:-13.310640px;}
.ws3_c00137{word-spacing:-11.162448px;}
.ws0_c00137{word-spacing:-10.584756px;}
.wsb_c00137{word-spacing:-0.086400px;}
.ws22_c00137{word-spacing:-0.014364px;}
.ws21_c00137{word-spacing:-0.009576px;}
.ws7_c00137{word-spacing:0.000000px;}
.ws23_c00137{word-spacing:0.004788px;}
.ws8_c00137{word-spacing:0.007200px;}
.wsf_c00137{word-spacing:0.014400px;}
.ws4_c00137{word-spacing:0.054108px;}
.ws11_c00137{word-spacing:0.064800px;}
.ws5_c00137{word-spacing:0.108216px;}
.ws6_c00137{word-spacing:0.138276px;}
.wse_c00137{word-spacing:0.151200px;}
.wsa_c00137{word-spacing:0.158400px;}
.wsd_c00137{word-spacing:0.367200px;}
.wsc_c00137{word-spacing:0.381600px;}
.ws20_c00137{word-spacing:1.864800px;}
.ws19_c00137{word-spacing:1.886400px;}
.ws1d_c00137{word-spacing:6.098400px;}
.ws1c_c00137{word-spacing:6.184800px;}
.ws14_c00137{word-spacing:9.698400px;}
.ws15_c00137{word-spacing:9.756000px;}
.ws16_c00137{word-spacing:12.909600px;}
.ws17_c00137{word-spacing:12.988800px;}
.ws1e_c00137{word-spacing:17.308800px;}
.ws1a_c00137{word-spacing:17.647200px;}
.ws1b_c00137{word-spacing:18.698400px;}
.ws10_c00137{word-spacing:20.145600px;}
.ws12_c00137{word-spacing:21.578400px;}
.ws13_c00137{word-spacing:21.607200px;}
.ws9_c00137{word-spacing:21.988800px;}
.ws18_c00137{word-spacing:23.428800px;}
.ws1f_c00137{word-spacing:23.803200px;}
._0_c00137{margin-left:-1.142280px;}
._1_c00137{width:1.238400px;}
.fc0_c00137{color:rgb(0,0,0);}
.fs5_c00137{font-size:38.880000px;}
.fs3_c00137{font-size:42.120000px;}
.fs4_c00137{font-size:47.880000px;}
.fs2_c00137{font-size:54.000000px;}
.fs0_c00137{font-size:60.120000px;}
.fs1_c00137{font-size:72.000000px;}
.y0_c00137{bottom:0.000000px;}
.y3_c00137{bottom:57.450450px;}
.y4_c00137{bottom:61.410450px;}
.y24_c00137{bottom:113.698470px;}
.y23_c00137{bottom:132.064230px;}
.y22_c00137{bottom:150.339810px;}
.y21_c00137{bottom:168.606030px;}
.y20_c00137{bottom:186.968010px;}
.y1f_c00137{bottom:205.234230px;}
.y1e_c00137{bottom:223.500450px;}
.y1d_c00137{bottom:238.710450px;}
.y1c_c00137{bottom:259.410450px;}
.y1b_c00137{bottom:280.110600px;}
.y1a_c00137{bottom:337.260600px;}
.y19_c00137{bottom:371.640600px;}
.y18_c00137{bottom:415.110450px;}
.y17_c00137{bottom:449.490450px;}
.y16_c00137{bottom:483.960450px;}
.y15_c00137{bottom:518.340450px;}
.y14_c00137{bottom:552.810450px;}
.y13_c00137{bottom:596.190450px;}
.y12_c00137{bottom:630.660450px;}
.y11_c00137{bottom:665.040450px;}
.y10_c00137{bottom:699.510450px;}
.yf_c00137{bottom:742.890600px;}
.ye_c00137{bottom:777.360450px;}
.yd_c00137{bottom:811.740450px;}
.yc_c00137{bottom:855.210450px;}
.yb_c00137{bottom:889.590450px;}
.ya_c00137{bottom:942.060450px;}
.y9_c00137{bottom:985.440450px;}
.y8_c00137{bottom:1019.910450px;}
.y7_c00137{bottom:1063.290450px;}
.y6_c00137{bottom:1097.760450px;}
.y5_c00137{bottom:1141.140450px;}
.y2_c00137{bottom:1173.810450px;}
.y1_c00137{bottom:1196.850450px;}
.h2_c00137{height:47.988281px;}
.h8_c00137{height:49.937344px;}
.h1_c00137{height:50.315273px;}
.h3_c00137{height:56.320312px;}
.h6_c00137{height:60.257812px;}
.h7_c00137{height:65.130220px;}
.h5_c00137{height:65.130820px;}
.h4_c00137{height:75.093750px;}
.h0_c00137{height:1263.000000px;}
.w1_c00137{width:892.500000px;}
.w0_c00137{width:892.830000px;}
.x0_c00137{left:0.000000px;}
.x2_c00137{left:127.620000px;}
.x1_c00137{left:145.440000px;}
.x7_c00137{left:154.620000px;}
.x5_c00137{left:180.810000px;}
.x6_c00137{left:207.540000px;}
.x8_c00137{left:208.620000px;}
.x4_c00137{left:435.240000px;}
.x3_c00137{left:446.490000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.v1_c00137{vertical-align:26.560000pt;}
.ls11_c00137{letter-spacing:-0.134400pt;}
.lsf_c00137{letter-spacing:-0.042752pt;}
.ls16_c00137{letter-spacing:-0.025600pt;}
.ls14_c00137{letter-spacing:-0.019200pt;}
.lse_c00137{letter-spacing:-0.016032pt;}
.ls15_c00137{letter-spacing:-0.012800pt;}
.ls17_c00137{letter-spacing:-0.006912pt;}
.ls12_c00137{letter-spacing:-0.006400pt;}
.ls18_c00137{letter-spacing:-0.003456pt;}
.ls10_c00137{letter-spacing:0.000000pt;}
.ls8_c00137{letter-spacing:0.006400pt;}
.lsa_c00137{letter-spacing:0.012768pt;}
.lsd_c00137{letter-spacing:0.017024pt;}
.ls4_c00137{letter-spacing:0.019200pt;}
.ls9_c00137{letter-spacing:0.025536pt;}
.ls0_c00137{letter-spacing:0.032064pt;}
.ls3_c00137{letter-spacing:0.048672pt;}
.ls5_c00137{letter-spacing:0.076800pt;}
.ls13_c00137{letter-spacing:0.083200pt;}
.ls1_c00137{letter-spacing:0.128000pt;}
.lsb_c00137{letter-spacing:0.168320pt;}
.lsc_c00137{letter-spacing:0.312320pt;}
.ls19_c00137{letter-spacing:0.314496pt;}
.ls7_c00137{letter-spacing:19.200000pt;}
.ls2_c00137{letter-spacing:57.728000pt;}
.ls6_c00137{letter-spacing:58.048000pt;}
.ws1_c00137{word-spacing:-15.974400pt;}
.ws2_c00137{word-spacing:-11.831680pt;}
.ws3_c00137{word-spacing:-9.922176pt;}
.ws0_c00137{word-spacing:-9.408672pt;}
.wsb_c00137{word-spacing:-0.076800pt;}
.ws22_c00137{word-spacing:-0.012768pt;}
.ws21_c00137{word-spacing:-0.008512pt;}
.ws7_c00137{word-spacing:0.000000pt;}
.ws23_c00137{word-spacing:0.004256pt;}
.ws8_c00137{word-spacing:0.006400pt;}
.wsf_c00137{word-spacing:0.012800pt;}
.ws4_c00137{word-spacing:0.048096pt;}
.ws11_c00137{word-spacing:0.057600pt;}
.ws5_c00137{word-spacing:0.096192pt;}
.ws6_c00137{word-spacing:0.122912pt;}
.wse_c00137{word-spacing:0.134400pt;}
.wsa_c00137{word-spacing:0.140800pt;}
.wsd_c00137{word-spacing:0.326400pt;}
.wsc_c00137{word-spacing:0.339200pt;}
.ws20_c00137{word-spacing:1.657600pt;}
.ws19_c00137{word-spacing:1.676800pt;}
.ws1d_c00137{word-spacing:5.420800pt;}
.ws1c_c00137{word-spacing:5.497600pt;}
.ws14_c00137{word-spacing:8.620800pt;}
.ws15_c00137{word-spacing:8.672000pt;}
.ws16_c00137{word-spacing:11.475200pt;}
.ws17_c00137{word-spacing:11.545600pt;}
.ws1e_c00137{word-spacing:15.385600pt;}
.ws1a_c00137{word-spacing:15.686400pt;}
.ws1b_c00137{word-spacing:16.620800pt;}
.ws10_c00137{word-spacing:17.907200pt;}
.ws12_c00137{word-spacing:19.180800pt;}
.ws13_c00137{word-spacing:19.206400pt;}
.ws9_c00137{word-spacing:19.545600pt;}
.ws18_c00137{word-spacing:20.825600pt;}
.ws1f_c00137{word-spacing:21.158400pt;}
._0_c00137{margin-left:-1.015360pt;}
._1_c00137{width:1.100800pt;}
.fs5_c00137{font-size:34.560000pt;}
.fs3_c00137{font-size:37.440000pt;}
.fs4_c00137{font-size:42.560000pt;}
.fs2_c00137{font-size:48.000000pt;}
.fs0_c00137{font-size:53.440000pt;}
.fs1_c00137{font-size:64.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y3_c00137{bottom:51.067067pt;}
.y4_c00137{bottom:54.587067pt;}
.y24_c00137{bottom:101.065307pt;}
.y23_c00137{bottom:117.390427pt;}
.y22_c00137{bottom:133.635387pt;}
.y21_c00137{bottom:149.872027pt;}
.y20_c00137{bottom:166.193787pt;}
.y1f_c00137{bottom:182.430427pt;}
.y1e_c00137{bottom:198.667067pt;}
.y1d_c00137{bottom:212.187067pt;}
.y1c_c00137{bottom:230.587067pt;}
.y1b_c00137{bottom:248.987200pt;}
.y1a_c00137{bottom:299.787200pt;}
.y19_c00137{bottom:330.347200pt;}
.y18_c00137{bottom:368.987067pt;}
.y17_c00137{bottom:399.547067pt;}
.y16_c00137{bottom:430.187067pt;}
.y15_c00137{bottom:460.747067pt;}
.y14_c00137{bottom:491.387067pt;}
.y13_c00137{bottom:529.947067pt;}
.y12_c00137{bottom:560.587067pt;}
.y11_c00137{bottom:591.147067pt;}
.y10_c00137{bottom:621.787067pt;}
.yf_c00137{bottom:660.347200pt;}
.ye_c00137{bottom:690.987067pt;}
.yd_c00137{bottom:721.547067pt;}
.yc_c00137{bottom:760.187067pt;}
.yb_c00137{bottom:790.747067pt;}
.ya_c00137{bottom:837.387067pt;}
.y9_c00137{bottom:875.947067pt;}
.y8_c00137{bottom:906.587067pt;}
.y7_c00137{bottom:945.147067pt;}
.y6_c00137{bottom:975.787067pt;}
.y5_c00137{bottom:1014.347067pt;}
.y2_c00137{bottom:1043.387067pt;}
.y1_c00137{bottom:1063.867067pt;}
.h2_c00137{height:42.656250pt;}
.h8_c00137{height:44.388750pt;}
.h1_c00137{height:44.724687pt;}
.h3_c00137{height:50.062500pt;}
.h6_c00137{height:53.562500pt;}
.h7_c00137{height:57.893529pt;}
.h5_c00137{height:57.894062pt;}
.h4_c00137{height:66.750000pt;}
.h0_c00137{height:1122.666667pt;}
.w1_c00137{width:793.333333pt;}
.w0_c00137{width:793.626667pt;}
.x0_c00137{left:0.000000pt;}
.x2_c00137{left:113.440000pt;}
.x1_c00137{left:129.280000pt;}
.x7_c00137{left:137.440000pt;}
.x5_c00137{left:160.720000pt;}
.x6_c00137{left:184.480000pt;}
.x8_c00137{left:185.440000pt;}
.x4_c00137{left:386.880000pt;}
.x3_c00137{left:396.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_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_bbbbe317c8c737b2f9c2fc61.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.100098;font-style:normal;font-weight:normal;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_114415814f2277d252bf9449.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;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_c00138;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00138;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:1.281250;font-style:normal;font-weight:normal;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_36aba04696c5f8ce1a626372.woff2')format("woff");}.ff5_c00138{font-family:ff5_c00138;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_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;}
.v1_c00138{vertical-align:15.840000px;}
.v2_c00138{vertical-align:29.880000px;}
.ls11_c00138{letter-spacing:-0.151200px;}
.ls13_c00138{letter-spacing:-0.043200px;}
.ls16_c00138{letter-spacing:-0.028800px;}
.ls12_c00138{letter-spacing:-0.014400px;}
.ls18_c00138{letter-spacing:-0.007776px;}
.ls14_c00138{letter-spacing:-0.007200px;}
.ls19_c00138{letter-spacing:-0.003888px;}
.ls10_c00138{letter-spacing:0.000000px;}
.ls3_c00138{letter-spacing:0.007200px;}
.lsa_c00138{letter-spacing:0.014364px;}
.ls15_c00138{letter-spacing:0.014400px;}
.lsd_c00138{letter-spacing:0.019152px;}
.lse_c00138{letter-spacing:0.028728px;}
.ls5_c00138{letter-spacing:0.028800px;}
.lsf_c00138{letter-spacing:0.033516px;}
.ls9_c00138{letter-spacing:0.043200px;}
.ls0_c00138{letter-spacing:0.048096px;}
.ls2_c00138{letter-spacing:0.054756px;}
.ls17_c00138{letter-spacing:0.093600px;}
.ls6_c00138{letter-spacing:0.144000px;}
.lsb_c00138{letter-spacing:0.189360px;}
.lsc_c00138{letter-spacing:0.351360px;}
.ls1a_c00138{letter-spacing:0.353808px;}
.ls4_c00138{letter-spacing:44.784000px;}
.ls7_c00138{letter-spacing:65.304000px;}
.ls8_c00138{letter-spacing:95.184000px;}
.ls1_c00138{letter-spacing:1212.120000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00138{word-spacing:-13.310640px;}
.ws2_c00138{word-spacing:-11.162448px;}
.ws0_c00138{word-spacing:-10.584756px;}
.ws13_c00138{word-spacing:-0.036000px;}
.wse_c00138{word-spacing:-0.014400px;}
.ws21_c00138{word-spacing:-0.014364px;}
.ws20_c00138{word-spacing:-0.009576px;}
.ws4_c00138{word-spacing:0.000000px;}
.ws1f_c00138{word-spacing:0.004788px;}
.ws9_c00138{word-spacing:0.007200px;}
.ws17_c00138{word-spacing:0.014400px;}
.ws3_c00138{word-spacing:0.042084px;}
.ws18_c00138{word-spacing:0.050400px;}
.wsa_c00138{word-spacing:1.051200px;}
.wsb_c00138{word-spacing:1.123200px;}
.ws6_c00138{word-spacing:2.512800px;}
.ws5_c00138{word-spacing:2.534400px;}
.ws19_c00138{word-spacing:2.901600px;}
.ws15_c00138{word-spacing:3.247200px;}
.ws14_c00138{word-spacing:3.254400px;}
.ws1c_c00138{word-spacing:3.600000px;}
.ws1e_c00138{word-spacing:3.614400px;}
.ws1a_c00138{word-spacing:3.636000px;}
.ws1d_c00138{word-spacing:3.643200px;}
.ws1b_c00138{word-spacing:3.758400px;}
.wsd_c00138{word-spacing:6.120000px;}
.wsc_c00138{word-spacing:6.134400px;}
.ws16_c00138{word-spacing:6.847200px;}
.ws7_c00138{word-spacing:7.574400px;}
.ws8_c00138{word-spacing:7.603200px;}
.ws11_c00138{word-spacing:9.014400px;}
.ws12_c00138{word-spacing:9.028800px;}
.wsf_c00138{word-spacing:9.734400px;}
.ws10_c00138{word-spacing:15.847200px;}
._0_c00138{margin-left:-1.322640px;}
._1_c00138{width:1.209600px;}
.fc0_c00138{color:rgb(0,0,0);}
.fs5_c00138{font-size:38.880000px;}
.fs3_c00138{font-size:42.120000px;}
.fs4_c00138{font-size:47.880000px;}
.fs1_c00138{font-size:54.000000px;}
.fs0_c00138{font-size:60.120000px;}
.fs2_c00138{font-size:72.000000px;}
.y0_c00138{bottom:0.000000px;}
.y3_c00138{bottom:57.450450px;}
.y21_c00138{bottom:113.698470px;}
.y20_c00138{bottom:132.064230px;}
.y1f_c00138{bottom:150.330450px;}
.y1e_c00138{bottom:165.540450px;}
.y1d_c00138{bottom:186.240450px;}
.y1c_c00138{bottom:206.940450px;}
.y1b_c00138{bottom:250.410450px;}
.y1a_c00138{bottom:284.790450px;}
.y19_c00138{bottom:319.260450px;}
.y18_c00138{bottom:362.640450px;}
.y17_c00138{bottom:397.110450px;}
.y16_c00138{bottom:440.490450px;}
.y15_c00138{bottom:483.960450px;}
.y14_c00138{bottom:527.340450px;}
.y13_c00138{bottom:570.810450px;}
.y12_c00138{bottom:605.190450px;}
.y11_c00138{bottom:639.660450px;}
.y10_c00138{bottom:683.040450px;}
.yf_c00138{bottom:726.510450px;}
.ye_c00138{bottom:769.890450px;}
.yd_c00138{bottom:804.360450px;}
.yc_c00138{bottom:847.740450px;}
.yb_c00138{bottom:882.210450px;}
.ya_c00138{bottom:916.590450px;}
.y9_c00138{bottom:960.060450px;}
.y8_c00138{bottom:994.440450px;}
.y7_c00138{bottom:1028.910450px;}
.y6_c00138{bottom:1072.290450px;}
.y5_c00138{bottom:1106.760450px;}
.y4_c00138{bottom:1141.140450px;}
.y2_c00138{bottom:1177.860450px;}
.y1_c00138{bottom:1196.850450px;}
.h7_c00138{height:47.988281px;}
.h8_c00138{height:49.937344px;}
.h9_c00138{height:49.945264px;}
.h1_c00138{height:50.315273px;}
.h2_c00138{height:56.320312px;}
.h5_c00138{height:60.257812px;}
.h4_c00138{height:65.130820px;}
.h3_c00138{height:72.160312px;}
.h6_c00138{height:75.093750px;}
.h0_c00138{height:1263.000000px;}
.w1_c00138{width:892.500000px;}
.w0_c00138{width:892.830000px;}
.x0_c00138{left:0.000000px;}
.x1_c00138{left:127.620000px;}
.x5_c00138{left:154.620000px;}
.x2_c00138{left:181.620000px;}
.x3_c00138{left:222.120000px;}
.x4_c00138{left:249.120000px;}
.x6_c00138{left:262.620000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.v1_c00138{vertical-align:14.080000pt;}
.v2_c00138{vertical-align:26.560000pt;}
.ls11_c00138{letter-spacing:-0.134400pt;}
.ls13_c00138{letter-spacing:-0.038400pt;}
.ls16_c00138{letter-spacing:-0.025600pt;}
.ls12_c00138{letter-spacing:-0.012800pt;}
.ls18_c00138{letter-spacing:-0.006912pt;}
.ls14_c00138{letter-spacing:-0.006400pt;}
.ls19_c00138{letter-spacing:-0.003456pt;}
.ls10_c00138{letter-spacing:0.000000pt;}
.ls3_c00138{letter-spacing:0.006400pt;}
.lsa_c00138{letter-spacing:0.012768pt;}
.ls15_c00138{letter-spacing:0.012800pt;}
.lsd_c00138{letter-spacing:0.017024pt;}
.lse_c00138{letter-spacing:0.025536pt;}
.ls5_c00138{letter-spacing:0.025600pt;}
.lsf_c00138{letter-spacing:0.029792pt;}
.ls9_c00138{letter-spacing:0.038400pt;}
.ls0_c00138{letter-spacing:0.042752pt;}
.ls2_c00138{letter-spacing:0.048672pt;}
.ls17_c00138{letter-spacing:0.083200pt;}
.ls6_c00138{letter-spacing:0.128000pt;}
.lsb_c00138{letter-spacing:0.168320pt;}
.lsc_c00138{letter-spacing:0.312320pt;}
.ls1a_c00138{letter-spacing:0.314496pt;}
.ls4_c00138{letter-spacing:39.808000pt;}
.ls7_c00138{letter-spacing:58.048000pt;}
.ls8_c00138{letter-spacing:84.608000pt;}
.ls1_c00138{letter-spacing:1077.440000pt;}
.ws1_c00138{word-spacing:-11.831680pt;}
.ws2_c00138{word-spacing:-9.922176pt;}
.ws0_c00138{word-spacing:-9.408672pt;}
.ws13_c00138{word-spacing:-0.032000pt;}
.wse_c00138{word-spacing:-0.012800pt;}
.ws21_c00138{word-spacing:-0.012768pt;}
.ws20_c00138{word-spacing:-0.008512pt;}
.ws4_c00138{word-spacing:0.000000pt;}
.ws1f_c00138{word-spacing:0.004256pt;}
.ws9_c00138{word-spacing:0.006400pt;}
.ws17_c00138{word-spacing:0.012800pt;}
.ws3_c00138{word-spacing:0.037408pt;}
.ws18_c00138{word-spacing:0.044800pt;}
.wsa_c00138{word-spacing:0.934400pt;}
.wsb_c00138{word-spacing:0.998400pt;}
.ws6_c00138{word-spacing:2.233600pt;}
.ws5_c00138{word-spacing:2.252800pt;}
.ws19_c00138{word-spacing:2.579200pt;}
.ws15_c00138{word-spacing:2.886400pt;}
.ws14_c00138{word-spacing:2.892800pt;}
.ws1c_c00138{word-spacing:3.200000pt;}
.ws1e_c00138{word-spacing:3.212800pt;}
.ws1a_c00138{word-spacing:3.232000pt;}
.ws1d_c00138{word-spacing:3.238400pt;}
.ws1b_c00138{word-spacing:3.340800pt;}
.wsd_c00138{word-spacing:5.440000pt;}
.wsc_c00138{word-spacing:5.452800pt;}
.ws16_c00138{word-spacing:6.086400pt;}
.ws7_c00138{word-spacing:6.732800pt;}
.ws8_c00138{word-spacing:6.758400pt;}
.ws11_c00138{word-spacing:8.012800pt;}
.ws12_c00138{word-spacing:8.025600pt;}
.wsf_c00138{word-spacing:8.652800pt;}
.ws10_c00138{word-spacing:14.086400pt;}
._0_c00138{margin-left:-1.175680pt;}
._1_c00138{width:1.075200pt;}
.fs5_c00138{font-size:34.560000pt;}
.fs3_c00138{font-size:37.440000pt;}
.fs4_c00138{font-size:42.560000pt;}
.fs1_c00138{font-size:48.000000pt;}
.fs0_c00138{font-size:53.440000pt;}
.fs2_c00138{font-size:64.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y3_c00138{bottom:51.067067pt;}
.y21_c00138{bottom:101.065307pt;}
.y20_c00138{bottom:117.390427pt;}
.y1f_c00138{bottom:133.627067pt;}
.y1e_c00138{bottom:147.147067pt;}
.y1d_c00138{bottom:165.547067pt;}
.y1c_c00138{bottom:183.947067pt;}
.y1b_c00138{bottom:222.587067pt;}
.y1a_c00138{bottom:253.147067pt;}
.y19_c00138{bottom:283.787067pt;}
.y18_c00138{bottom:322.347067pt;}
.y17_c00138{bottom:352.987067pt;}
.y16_c00138{bottom:391.547067pt;}
.y15_c00138{bottom:430.187067pt;}
.y14_c00138{bottom:468.747067pt;}
.y13_c00138{bottom:507.387067pt;}
.y12_c00138{bottom:537.947067pt;}
.y11_c00138{bottom:568.587067pt;}
.y10_c00138{bottom:607.147067pt;}
.yf_c00138{bottom:645.787067pt;}
.ye_c00138{bottom:684.347067pt;}
.yd_c00138{bottom:714.987067pt;}
.yc_c00138{bottom:753.547067pt;}
.yb_c00138{bottom:784.187067pt;}
.ya_c00138{bottom:814.747067pt;}
.y9_c00138{bottom:853.387067pt;}
.y8_c00138{bottom:883.947067pt;}
.y7_c00138{bottom:914.587067pt;}
.y6_c00138{bottom:953.147067pt;}
.y5_c00138{bottom:983.787067pt;}
.y4_c00138{bottom:1014.347067pt;}
.y2_c00138{bottom:1046.987067pt;}
.y1_c00138{bottom:1063.867067pt;}
.h7_c00138{height:42.656250pt;}
.h8_c00138{height:44.388750pt;}
.h9_c00138{height:44.395790pt;}
.h1_c00138{height:44.724687pt;}
.h2_c00138{height:50.062500pt;}
.h5_c00138{height:53.562500pt;}
.h4_c00138{height:57.894063pt;}
.h3_c00138{height:64.142500pt;}
.h6_c00138{height:66.750000pt;}
.h0_c00138{height:1122.666667pt;}
.w1_c00138{width:793.333333pt;}
.w0_c00138{width:793.626667pt;}
.x0_c00138{left:0.000000pt;}
.x1_c00138{left:113.440000pt;}
.x5_c00138{left:137.440000pt;}
.x2_c00138{left:161.440000pt;}
.x3_c00138{left:197.440000pt;}
.x4_c00138{left:221.440000pt;}
.x6_c00138{left:233.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_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_ac616619aa3377c4186cba8e.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00139;src:url('chunks/assets/font_4f5add3f6db7d5a443b0f432.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00139;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00139;src:url('chunks/assets/font_557a944391ae64414c6b5cba.woff2')format("woff");}.ff5_c00139{font-family:ff5_c00139;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_c00139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.v1_c00139{vertical-align:29.880000px;}
.ls17_c00139{letter-spacing:-0.151200px;}
.ls15_c00139{letter-spacing:-0.048096px;}
.ls1d_c00139{letter-spacing:-0.036000px;}
.ls19_c00139{letter-spacing:-0.021600px;}
.ls14_c00139{letter-spacing:-0.018036px;}
.ls1b_c00139{letter-spacing:-0.014400px;}
.ls1e_c00139{letter-spacing:-0.007776px;}
.ls1a_c00139{letter-spacing:-0.007200px;}
.ls1f_c00139{letter-spacing:-0.003888px;}
.ls16_c00139{letter-spacing:0.000000px;}
.ls12_c00139{letter-spacing:0.004788px;}
.ls5_c00139{letter-spacing:0.007200px;}
.ls8_c00139{letter-spacing:0.014364px;}
.ls1c_c00139{letter-spacing:0.014400px;}
.lsb_c00139{letter-spacing:0.019152px;}
.ls11_c00139{letter-spacing:0.023940px;}
.ls13_c00139{letter-spacing:0.028728px;}
.lsc_c00139{letter-spacing:0.033516px;}
.ls0_c00139{letter-spacing:0.036072px;}
.ls10_c00139{letter-spacing:0.038304px;}
.lse_c00139{letter-spacing:0.043092px;}
.lsf_c00139{letter-spacing:0.047880px;}
.ls3_c00139{letter-spacing:0.054756px;}
.ls18_c00139{letter-spacing:0.093600px;}
.ls1_c00139{letter-spacing:0.144000px;}
.ls9_c00139{letter-spacing:0.189360px;}
.lsa_c00139{letter-spacing:0.351360px;}
.ls20_c00139{letter-spacing:0.353808px;}
.lsd_c00139{letter-spacing:0.464040px;}
.ls7_c00139{letter-spacing:44.784000px;}
.ls2_c00139{letter-spacing:65.304000px;}
.ls6_c00139{letter-spacing:66.024000px;}
.ls4_c00139{letter-spacing:95.184000px;}
.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:-13.310640px;}
.ws2_c00139{word-spacing:-11.162448px;}
.ws3_c00139{word-spacing:-10.804752px;}
.ws0_c00139{word-spacing:-10.584756px;}
.ws15_c00139{word-spacing:-0.093600px;}
.ws2a_c00139{word-spacing:-0.028728px;}
.ws10_c00139{word-spacing:-0.014400px;}
.ws21_c00139{word-spacing:-0.014364px;}
.ws2c_c00139{word-spacing:-0.009576px;}
.ws11_c00139{word-spacing:-0.007200px;}
.ws28_c00139{word-spacing:-0.004788px;}
.ws7_c00139{word-spacing:0.000000px;}
.ws20_c00139{word-spacing:0.004788px;}
.wsc_c00139{word-spacing:0.007200px;}
.ws2b_c00139{word-spacing:0.014364px;}
.wsb_c00139{word-spacing:0.014400px;}
.ws19_c00139{word-spacing:0.021600px;}
.ws4_c00139{word-spacing:0.054108px;}
.ws12_c00139{word-spacing:0.086400px;}
.ws5_c00139{word-spacing:0.108216px;}
.ws6_c00139{word-spacing:0.138276px;}
.ws29_c00139{word-spacing:0.363888px;}
.wsd_c00139{word-spacing:2.512800px;}
.wse_c00139{word-spacing:2.592000px;}
.ws16_c00139{word-spacing:3.290400px;}
.ws17_c00139{word-spacing:3.348000px;}
.ws14_c00139{word-spacing:5.047200px;}
.ws1c_c00139{word-spacing:5.068800px;}
.ws1b_c00139{word-spacing:5.126400px;}
.wsa_c00139{word-spacing:5.349600px;}
.ws18_c00139{word-spacing:5.400000px;}
.ws9_c00139{word-spacing:5.421600px;}
.ws8_c00139{word-spacing:7.171200px;}
.ws26_c00139{word-spacing:7.531524px;}
.ws27_c00139{word-spacing:7.541100px;}
.ws25_c00139{word-spacing:8.254512px;}
.ws23_c00139{word-spacing:8.277552px;}
.ws22_c00139{word-spacing:8.283240px;}
.ws24_c00139{word-spacing:8.642340px;}
.ws1a_c00139{word-spacing:9.381600px;}
.ws13_c00139{word-spacing:10.447200px;}
.ws1e_c00139{word-spacing:11.750400px;}
.ws1f_c00139{word-spacing:11.973600px;}
.ws1d_c00139{word-spacing:11.988000px;}
.wsf_c00139{word-spacing:15.494400px;}
._2_c00139{margin-left:-4.680000px;}
._0_c00139{margin-left:-1.142280px;}
._1_c00139{width:1.152000px;}
.fc0_c00139{color:rgb(0,0,0);}
.fs5_c00139{font-size:38.880000px;}
.fs3_c00139{font-size:42.120000px;}
.fs4_c00139{font-size:47.880000px;}
.fs2_c00139{font-size:54.000000px;}
.fs0_c00139{font-size:60.120000px;}
.fs1_c00139{font-size:72.000000px;}
.y0_c00139{bottom:0.000000px;}
.y3_c00139{bottom:57.450450px;}
.y4_c00139{bottom:61.410450px;}
.y25_c00139{bottom:113.698470px;}
.y24_c00139{bottom:132.064230px;}
.y23_c00139{bottom:150.334230px;}
.y22_c00139{bottom:168.595500px;}
.y21_c00139{bottom:186.957480px;}
.y20_c00139{bottom:200.639190px;}
.y1f_c00139{bottom:214.498470px;}
.y1e_c00139{bottom:232.864230px;}
.y1d_c00139{bottom:251.130450px;}
.y1c_c00139{bottom:266.340450px;}
.y1b_c00139{bottom:287.040450px;}
.y1a_c00139{bottom:307.740600px;}
.y19_c00139{bottom:353.640600px;}
.y18_c00139{bottom:388.110600px;}
.y17_c00139{bottom:422.490600px;}
.y16_c00139{bottom:474.960450px;}
.y15_c00139{bottom:509.340450px;}
.y14_c00139{bottom:543.810450px;}
.y13_c00139{bottom:587.190450px;}
.y12_c00139{bottom:621.660450px;}
.y11_c00139{bottom:656.040450px;}
.y10_c00139{bottom:699.510450px;}
.yf_c00139{bottom:742.890450px;}
.ye_c00139{bottom:786.360450px;}
.yd_c00139{bottom:829.740450px;}
.yc_c00139{bottom:864.210450px;}
.yb_c00139{bottom:907.590450px;}
.ya_c00139{bottom:951.060450px;}
.y9_c00139{bottom:994.440450px;}
.y8_c00139{bottom:1028.910450px;}
.y7_c00139{bottom:1072.290450px;}
.y6_c00139{bottom:1106.760450px;}
.y5_c00139{bottom:1141.140450px;}
.y2_c00139{bottom:1173.810450px;}
.y1_c00139{bottom:1196.850450px;}
.h2_c00139{height:47.988281px;}
.h8_c00139{height:49.937344px;}
.h9_c00139{height:49.945264px;}
.ha_c00139{height:49.957144px;}
.h1_c00139{height:50.315273px;}
.h3_c00139{height:56.320312px;}
.h5_c00139{height:60.257812px;}
.h6_c00139{height:65.130820px;}
.h7_c00139{height:65.131420px;}
.h4_c00139{height:75.093750px;}
.h0_c00139{height:1263.000000px;}
.w1_c00139{width:892.500000px;}
.w0_c00139{width:892.830000px;}
.x0_c00139{left:0.000000px;}
.x2_c00139{left:127.620000px;}
.x1_c00139{left:145.440000px;}
.x5_c00139{left:154.620000px;}
.x6_c00139{left:181.620000px;}
.x7_c00139{left:222.120000px;}
.x8_c00139{left:262.620000px;}
.x4_c00139{left:435.240000px;}
.x3_c00139{left:446.490000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.v1_c00139{vertical-align:26.560000pt;}
.ls17_c00139{letter-spacing:-0.134400pt;}
.ls15_c00139{letter-spacing:-0.042752pt;}
.ls1d_c00139{letter-spacing:-0.032000pt;}
.ls19_c00139{letter-spacing:-0.019200pt;}
.ls14_c00139{letter-spacing:-0.016032pt;}
.ls1b_c00139{letter-spacing:-0.012800pt;}
.ls1e_c00139{letter-spacing:-0.006912pt;}
.ls1a_c00139{letter-spacing:-0.006400pt;}
.ls1f_c00139{letter-spacing:-0.003456pt;}
.ls16_c00139{letter-spacing:0.000000pt;}
.ls12_c00139{letter-spacing:0.004256pt;}
.ls5_c00139{letter-spacing:0.006400pt;}
.ls8_c00139{letter-spacing:0.012768pt;}
.ls1c_c00139{letter-spacing:0.012800pt;}
.lsb_c00139{letter-spacing:0.017024pt;}
.ls11_c00139{letter-spacing:0.021280pt;}
.ls13_c00139{letter-spacing:0.025536pt;}
.lsc_c00139{letter-spacing:0.029792pt;}
.ls0_c00139{letter-spacing:0.032064pt;}
.ls10_c00139{letter-spacing:0.034048pt;}
.lse_c00139{letter-spacing:0.038304pt;}
.lsf_c00139{letter-spacing:0.042560pt;}
.ls3_c00139{letter-spacing:0.048672pt;}
.ls18_c00139{letter-spacing:0.083200pt;}
.ls1_c00139{letter-spacing:0.128000pt;}
.ls9_c00139{letter-spacing:0.168320pt;}
.lsa_c00139{letter-spacing:0.312320pt;}
.ls20_c00139{letter-spacing:0.314496pt;}
.lsd_c00139{letter-spacing:0.412480pt;}
.ls7_c00139{letter-spacing:39.808000pt;}
.ls2_c00139{letter-spacing:58.048000pt;}
.ls6_c00139{letter-spacing:58.688000pt;}
.ls4_c00139{letter-spacing:84.608000pt;}
.ws1_c00139{word-spacing:-11.831680pt;}
.ws2_c00139{word-spacing:-9.922176pt;}
.ws3_c00139{word-spacing:-9.604224pt;}
.ws0_c00139{word-spacing:-9.408672pt;}
.ws15_c00139{word-spacing:-0.083200pt;}
.ws2a_c00139{word-spacing:-0.025536pt;}
.ws10_c00139{word-spacing:-0.012800pt;}
.ws21_c00139{word-spacing:-0.012768pt;}
.ws2c_c00139{word-spacing:-0.008512pt;}
.ws11_c00139{word-spacing:-0.006400pt;}
.ws28_c00139{word-spacing:-0.004256pt;}
.ws7_c00139{word-spacing:0.000000pt;}
.ws20_c00139{word-spacing:0.004256pt;}
.wsc_c00139{word-spacing:0.006400pt;}
.ws2b_c00139{word-spacing:0.012768pt;}
.wsb_c00139{word-spacing:0.012800pt;}
.ws19_c00139{word-spacing:0.019200pt;}
.ws4_c00139{word-spacing:0.048096pt;}
.ws12_c00139{word-spacing:0.076800pt;}
.ws5_c00139{word-spacing:0.096192pt;}
.ws6_c00139{word-spacing:0.122912pt;}
.ws29_c00139{word-spacing:0.323456pt;}
.wsd_c00139{word-spacing:2.233600pt;}
.wse_c00139{word-spacing:2.304000pt;}
.ws16_c00139{word-spacing:2.924800pt;}
.ws17_c00139{word-spacing:2.976000pt;}
.ws14_c00139{word-spacing:4.486400pt;}
.ws1c_c00139{word-spacing:4.505600pt;}
.ws1b_c00139{word-spacing:4.556800pt;}
.wsa_c00139{word-spacing:4.755200pt;}
.ws18_c00139{word-spacing:4.800000pt;}
.ws9_c00139{word-spacing:4.819200pt;}
.ws8_c00139{word-spacing:6.374400pt;}
.ws26_c00139{word-spacing:6.694688pt;}
.ws27_c00139{word-spacing:6.703200pt;}
.ws25_c00139{word-spacing:7.337344pt;}
.ws23_c00139{word-spacing:7.357824pt;}
.ws22_c00139{word-spacing:7.362880pt;}
.ws24_c00139{word-spacing:7.682080pt;}
.ws1a_c00139{word-spacing:8.339200pt;}
.ws13_c00139{word-spacing:9.286400pt;}
.ws1e_c00139{word-spacing:10.444800pt;}
.ws1f_c00139{word-spacing:10.643200pt;}
.ws1d_c00139{word-spacing:10.656000pt;}
.wsf_c00139{word-spacing:13.772800pt;}
._2_c00139{margin-left:-4.160000pt;}
._0_c00139{margin-left:-1.015360pt;}
._1_c00139{width:1.024000pt;}
.fs5_c00139{font-size:34.560000pt;}
.fs3_c00139{font-size:37.440000pt;}
.fs4_c00139{font-size:42.560000pt;}
.fs2_c00139{font-size:48.000000pt;}
.fs0_c00139{font-size:53.440000pt;}
.fs1_c00139{font-size:64.000000pt;}
.y0_c00139{bottom:0.000000pt;}
.y3_c00139{bottom:51.067067pt;}
.y4_c00139{bottom:54.587067pt;}
.y25_c00139{bottom:101.065307pt;}
.y24_c00139{bottom:117.390427pt;}
.y23_c00139{bottom:133.630427pt;}
.y22_c00139{bottom:149.862667pt;}
.y21_c00139{bottom:166.184427pt;}
.y20_c00139{bottom:178.345947pt;}
.y1f_c00139{bottom:190.665307pt;}
.y1e_c00139{bottom:206.990427pt;}
.y1d_c00139{bottom:223.227067pt;}
.y1c_c00139{bottom:236.747067pt;}
.y1b_c00139{bottom:255.147067pt;}
.y1a_c00139{bottom:273.547200pt;}
.y19_c00139{bottom:314.347200pt;}
.y18_c00139{bottom:344.987200pt;}
.y17_c00139{bottom:375.547200pt;}
.y16_c00139{bottom:422.187067pt;}
.y15_c00139{bottom:452.747067pt;}
.y14_c00139{bottom:483.387067pt;}
.y13_c00139{bottom:521.947067pt;}
.y12_c00139{bottom:552.587067pt;}
.y11_c00139{bottom:583.147067pt;}
.y10_c00139{bottom:621.787067pt;}
.yf_c00139{bottom:660.347067pt;}
.ye_c00139{bottom:698.987067pt;}
.yd_c00139{bottom:737.547067pt;}
.yc_c00139{bottom:768.187067pt;}
.yb_c00139{bottom:806.747067pt;}
.ya_c00139{bottom:845.387067pt;}
.y9_c00139{bottom:883.947067pt;}
.y8_c00139{bottom:914.587067pt;}
.y7_c00139{bottom:953.147067pt;}
.y6_c00139{bottom:983.787067pt;}
.y5_c00139{bottom:1014.347067pt;}
.y2_c00139{bottom:1043.387067pt;}
.y1_c00139{bottom:1063.867067pt;}
.h2_c00139{height:42.656250pt;}
.h8_c00139{height:44.388750pt;}
.h9_c00139{height:44.395790pt;}
.ha_c00139{height:44.406350pt;}
.h1_c00139{height:44.724687pt;}
.h3_c00139{height:50.062500pt;}
.h5_c00139{height:53.562500pt;}
.h6_c00139{height:57.894062pt;}
.h7_c00139{height:57.894596pt;}
.h4_c00139{height:66.750000pt;}
.h0_c00139{height:1122.666667pt;}
.w1_c00139{width:793.333333pt;}
.w0_c00139{width:793.626667pt;}
.x0_c00139{left:0.000000pt;}
.x2_c00139{left:113.440000pt;}
.x1_c00139{left:129.280000pt;}
.x5_c00139{left:137.440000pt;}
.x6_c00139{left:161.440000pt;}
.x7_c00139{left:197.440000pt;}
.x8_c00139{left:233.440000pt;}
.x4_c00139{left:386.880000pt;}
.x3_c00139{left:396.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_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_cfc39d05e8152ce2be48e82b.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.100098;font-style:normal;font-weight:normal;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_d9e7aea4e8c0ee894c4e09ef.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;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_c00140;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00140{vertical-align:15.840000px;}
.v2_c00140{vertical-align:29.880000px;}
.lsa_c00140{letter-spacing:-0.151200px;}
.lsd_c00140{letter-spacing:-0.036000px;}
.ls12_c00140{letter-spacing:-0.028800px;}
.ls11_c00140{letter-spacing:-0.021600px;}
.ls10_c00140{letter-spacing:-0.014400px;}
.lsf_c00140{letter-spacing:-0.007200px;}
.ls9_c00140{letter-spacing:0.000000px;}
.ls3_c00140{letter-spacing:0.007200px;}
.ls7_c00140{letter-spacing:0.021600px;}
.ls8_c00140{letter-spacing:0.028728px;}
.ls2_c00140{letter-spacing:0.028800px;}
.lsc_c00140{letter-spacing:0.043200px;}
.ls0_c00140{letter-spacing:0.048096px;}
.ls4_c00140{letter-spacing:0.054756px;}
.lsb_c00140{letter-spacing:0.079200px;}
.lse_c00140{letter-spacing:0.093600px;}
.ls5_c00140{letter-spacing:0.144000px;}
.ls6_c00140{letter-spacing:66.024000px;}
.ls1_c00140{letter-spacing:1212.120000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00140{word-spacing:-17.971200px;}
.ws0_c00140{word-spacing:-10.584756px;}
.ws1c_c00140{word-spacing:-0.014364px;}
.ws1b_c00140{word-spacing:-0.009576px;}
.wsc_c00140{word-spacing:-0.007200px;}
.ws3_c00140{word-spacing:0.000000px;}
.wsd_c00140{word-spacing:0.007200px;}
.ws2_c00140{word-spacing:0.042084px;}
.ws1a_c00140{word-spacing:0.050400px;}
.ws13_c00140{word-spacing:0.072000px;}
.wsb_c00140{word-spacing:0.100800px;}
.ws6_c00140{word-spacing:0.280800px;}
.ws14_c00140{word-spacing:0.338400px;}
.ws4_c00140{word-spacing:0.360000px;}
.ws9_c00140{word-spacing:0.396000px;}
.ws15_c00140{word-spacing:0.496800px;}
.ws5_c00140{word-spacing:0.511200px;}
.wse_c00140{word-spacing:2.937600px;}
.wsf_c00140{word-spacing:2.959200px;}
.ws10_c00140{word-spacing:5.328000px;}
.ws11_c00140{word-spacing:5.392800px;}
.wsa_c00140{word-spacing:8.668800px;}
.ws7_c00140{word-spacing:9.640800px;}
.ws8_c00140{word-spacing:9.676800px;}
.ws19_c00140{word-spacing:14.428800px;}
.ws18_c00140{word-spacing:16.142400px;}
.ws17_c00140{word-spacing:16.171200px;}
.ws12_c00140{word-spacing:19.483200px;}
.ws16_c00140{word-spacing:35.647200px;}
._0_c00140{margin-left:-1.322640px;}
._1_c00140{width:1.224000px;}
.fc0_c00140{color:rgb(0,0,0);}
.fs3_c00140{font-size:42.120000px;}
.fs4_c00140{font-size:47.880000px;}
.fs1_c00140{font-size:54.000000px;}
.fs0_c00140{font-size:60.120000px;}
.fs2_c00140{font-size:72.000000px;}
.y0_c00140{bottom:0.000000px;}
.y3_c00140{bottom:57.450450px;}
.y20_c00140{bottom:113.698470px;}
.y1f_c00140{bottom:132.060450px;}
.y1e_c00140{bottom:147.270450px;}
.y1d_c00140{bottom:167.970450px;}
.y1c_c00140{bottom:188.670600px;}
.y1b_c00140{bottom:232.410600px;}
.y1a_c00140{bottom:275.790600px;}
.y19_c00140{bottom:319.260600px;}
.y18_c00140{bottom:353.640600px;}
.y17_c00140{bottom:388.110600px;}
.y16_c00140{bottom:431.490600px;}
.y15_c00140{bottom:474.960450px;}
.y14_c00140{bottom:509.340450px;}
.y13_c00140{bottom:552.810450px;}
.y12_c00140{bottom:587.190450px;}
.y11_c00140{bottom:630.660450px;}
.y10_c00140{bottom:674.040450px;}
.yf_c00140{bottom:717.510450px;}
.ye_c00140{bottom:751.890450px;}
.yd_c00140{bottom:795.360450px;}
.yc_c00140{bottom:829.740450px;}
.yb_c00140{bottom:864.210450px;}
.ya_c00140{bottom:907.590450px;}
.y9_c00140{bottom:951.060450px;}
.y8_c00140{bottom:994.440450px;}
.y7_c00140{bottom:1028.910450px;}
.y6_c00140{bottom:1072.290450px;}
.y5_c00140{bottom:1106.760450px;}
.y4_c00140{bottom:1141.140450px;}
.y2_c00140{bottom:1177.860450px;}
.y1_c00140{bottom:1196.850450px;}
.h8_c00140{height:47.988281px;}
.h9_c00140{height:49.937344px;}
.h1_c00140{height:50.315273px;}
.h2_c00140{height:56.320312px;}
.h4_c00140{height:60.257812px;}
.h5_c00140{height:65.130820px;}
.h7_c00140{height:65.131420px;}
.h3_c00140{height:72.160312px;}
.h6_c00140{height:75.093750px;}
.h0_c00140{height:1263.000000px;}
.w1_c00140{width:892.500000px;}
.w0_c00140{width:892.830000px;}
.x0_c00140{left:0.000000px;}
.x1_c00140{left:127.620000px;}
.x2_c00140{left:154.440000px;}
.x3_c00140{left:181.170000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.v1_c00140{vertical-align:14.080000pt;}
.v2_c00140{vertical-align:26.560000pt;}
.lsa_c00140{letter-spacing:-0.134400pt;}
.lsd_c00140{letter-spacing:-0.032000pt;}
.ls12_c00140{letter-spacing:-0.025600pt;}
.ls11_c00140{letter-spacing:-0.019200pt;}
.ls10_c00140{letter-spacing:-0.012800pt;}
.lsf_c00140{letter-spacing:-0.006400pt;}
.ls9_c00140{letter-spacing:0.000000pt;}
.ls3_c00140{letter-spacing:0.006400pt;}
.ls7_c00140{letter-spacing:0.019200pt;}
.ls8_c00140{letter-spacing:0.025536pt;}
.ls2_c00140{letter-spacing:0.025600pt;}
.lsc_c00140{letter-spacing:0.038400pt;}
.ls0_c00140{letter-spacing:0.042752pt;}
.ls4_c00140{letter-spacing:0.048672pt;}
.lsb_c00140{letter-spacing:0.070400pt;}
.lse_c00140{letter-spacing:0.083200pt;}
.ls5_c00140{letter-spacing:0.128000pt;}
.ls6_c00140{letter-spacing:58.688000pt;}
.ls1_c00140{letter-spacing:1077.440000pt;}
.ws1_c00140{word-spacing:-15.974400pt;}
.ws0_c00140{word-spacing:-9.408672pt;}
.ws1c_c00140{word-spacing:-0.012768pt;}
.ws1b_c00140{word-spacing:-0.008512pt;}
.wsc_c00140{word-spacing:-0.006400pt;}
.ws3_c00140{word-spacing:0.000000pt;}
.wsd_c00140{word-spacing:0.006400pt;}
.ws2_c00140{word-spacing:0.037408pt;}
.ws1a_c00140{word-spacing:0.044800pt;}
.ws13_c00140{word-spacing:0.064000pt;}
.wsb_c00140{word-spacing:0.089600pt;}
.ws6_c00140{word-spacing:0.249600pt;}
.ws14_c00140{word-spacing:0.300800pt;}
.ws4_c00140{word-spacing:0.320000pt;}
.ws9_c00140{word-spacing:0.352000pt;}
.ws15_c00140{word-spacing:0.441600pt;}
.ws5_c00140{word-spacing:0.454400pt;}
.wse_c00140{word-spacing:2.611200pt;}
.wsf_c00140{word-spacing:2.630400pt;}
.ws10_c00140{word-spacing:4.736000pt;}
.ws11_c00140{word-spacing:4.793600pt;}
.wsa_c00140{word-spacing:7.705600pt;}
.ws7_c00140{word-spacing:8.569600pt;}
.ws8_c00140{word-spacing:8.601600pt;}
.ws19_c00140{word-spacing:12.825600pt;}
.ws18_c00140{word-spacing:14.348800pt;}
.ws17_c00140{word-spacing:14.374400pt;}
.ws12_c00140{word-spacing:17.318400pt;}
.ws16_c00140{word-spacing:31.686400pt;}
._0_c00140{margin-left:-1.175680pt;}
._1_c00140{width:1.088000pt;}
.fs3_c00140{font-size:37.440000pt;}
.fs4_c00140{font-size:42.560000pt;}
.fs1_c00140{font-size:48.000000pt;}
.fs0_c00140{font-size:53.440000pt;}
.fs2_c00140{font-size:64.000000pt;}
.y0_c00140{bottom:0.000000pt;}
.y3_c00140{bottom:51.067067pt;}
.y20_c00140{bottom:101.065307pt;}
.y1f_c00140{bottom:117.387067pt;}
.y1e_c00140{bottom:130.907067pt;}
.y1d_c00140{bottom:149.307067pt;}
.y1c_c00140{bottom:167.707200pt;}
.y1b_c00140{bottom:206.587200pt;}
.y1a_c00140{bottom:245.147200pt;}
.y19_c00140{bottom:283.787200pt;}
.y18_c00140{bottom:314.347200pt;}
.y17_c00140{bottom:344.987200pt;}
.y16_c00140{bottom:383.547200pt;}
.y15_c00140{bottom:422.187067pt;}
.y14_c00140{bottom:452.747067pt;}
.y13_c00140{bottom:491.387067pt;}
.y12_c00140{bottom:521.947067pt;}
.y11_c00140{bottom:560.587067pt;}
.y10_c00140{bottom:599.147067pt;}
.yf_c00140{bottom:637.787067pt;}
.ye_c00140{bottom:668.347067pt;}
.yd_c00140{bottom:706.987067pt;}
.yc_c00140{bottom:737.547067pt;}
.yb_c00140{bottom:768.187067pt;}
.ya_c00140{bottom:806.747067pt;}
.y9_c00140{bottom:845.387067pt;}
.y8_c00140{bottom:883.947067pt;}
.y7_c00140{bottom:914.587067pt;}
.y6_c00140{bottom:953.147067pt;}
.y5_c00140{bottom:983.787067pt;}
.y4_c00140{bottom:1014.347067pt;}
.y2_c00140{bottom:1046.987067pt;}
.y1_c00140{bottom:1063.867067pt;}
.h8_c00140{height:42.656250pt;}
.h9_c00140{height:44.388750pt;}
.h1_c00140{height:44.724687pt;}
.h2_c00140{height:50.062500pt;}
.h4_c00140{height:53.562500pt;}
.h5_c00140{height:57.894062pt;}
.h7_c00140{height:57.894596pt;}
.h3_c00140{height:64.142500pt;}
.h6_c00140{height:66.750000pt;}
.h0_c00140{height:1122.666667pt;}
.w1_c00140{width:793.333333pt;}
.w0_c00140{width:793.626667pt;}
.x0_c00140{left:0.000000pt;}
.x1_c00140{left:113.440000pt;}
.x2_c00140{left:137.280000pt;}
.x3_c00140{left:161.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_92e8381853aa59263fe57b9e.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00141;src:url('chunks/assets/font_2b5feaafccc4292c74d618fd.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00141;src:url('chunks/assets/font_1c64d229d19138b948630ff5.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00141;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff5_c00141{font-family:ff5_c00141;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_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;}
.v1_c00141{vertical-align:29.880000px;}
.lse_c00141{letter-spacing:-0.151200px;}
.lsc_c00141{letter-spacing:-0.048096px;}
.ls14_c00141{letter-spacing:-0.036000px;}
.ls13_c00141{letter-spacing:-0.028800px;}
.lsf_c00141{letter-spacing:-0.021600px;}
.lsb_c00141{letter-spacing:-0.018036px;}
.ls10_c00141{letter-spacing:-0.014400px;}
.ls11_c00141{letter-spacing:-0.007200px;}
.ls15_c00141{letter-spacing:-0.003888px;}
.lsd_c00141{letter-spacing:0.000000px;}
.ls3_c00141{letter-spacing:0.007200px;}
.ls8_c00141{letter-spacing:0.014364px;}
.ls5_c00141{letter-spacing:0.014400px;}
.ls16_c00141{letter-spacing:0.019152px;}
.ls6_c00141{letter-spacing:0.021600px;}
.ls7_c00141{letter-spacing:0.033516px;}
.ls0_c00141{letter-spacing:0.036072px;}
.lsa_c00141{letter-spacing:0.047880px;}
.ls4_c00141{letter-spacing:0.054756px;}
.ls12_c00141{letter-spacing:0.093600px;}
.ls1_c00141{letter-spacing:0.144000px;}
.ls9_c00141{letter-spacing:0.464040px;}
.ls2_c00141{letter-spacing:66.024000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00141{word-spacing:-17.992800px;}
.ws2_c00141{word-spacing:-10.804752px;}
.ws0_c00141{word-spacing:-10.584756px;}
.ws23_c00141{word-spacing:-0.028728px;}
.ws20_c00141{word-spacing:-0.014364px;}
.wsc_c00141{word-spacing:-0.007200px;}
.ws6_c00141{word-spacing:0.000000px;}
.ws21_c00141{word-spacing:0.004788px;}
.wsb_c00141{word-spacing:0.007200px;}
.ws9_c00141{word-spacing:0.014400px;}
.ws12_c00141{word-spacing:0.021600px;}
.ws10_c00141{word-spacing:0.050400px;}
.ws3_c00141{word-spacing:0.054108px;}
.wsa_c00141{word-spacing:0.100800px;}
.ws7_c00141{word-spacing:0.108000px;}
.ws4_c00141{word-spacing:0.108216px;}
.ws5_c00141{word-spacing:0.138276px;}
.ws22_c00141{word-spacing:0.363888px;}
.ws8_c00141{word-spacing:2.541600px;}
.ws1a_c00141{word-spacing:3.628800px;}
.ws19_c00141{word-spacing:3.664800px;}
.ws1e_c00141{word-spacing:5.025600px;}
.ws1f_c00141{word-spacing:5.076000px;}
.ws15_c00141{word-spacing:5.407200px;}
.ws14_c00141{word-spacing:5.486400px;}
.wsd_c00141{word-spacing:8.647200px;}
.wsf_c00141{word-spacing:14.047200px;}
.wse_c00141{word-spacing:14.104800px;}
.ws18_c00141{word-spacing:17.978400px;}
.ws16_c00141{word-spacing:18.021600px;}
.ws17_c00141{word-spacing:18.028800px;}
.ws11_c00141{word-spacing:21.225600px;}
.ws1d_c00141{word-spacing:22.694400px;}
.ws1b_c00141{word-spacing:22.802400px;}
.ws1c_c00141{word-spacing:22.845600px;}
.ws13_c00141{word-spacing:25.552800px;}
._0_c00141{margin-left:-1.142280px;}
._1_c00141{width:1.224000px;}
.fc0_c00141{color:rgb(0,0,0);}
.fs5_c00141{font-size:38.880000px;}
.fs3_c00141{font-size:42.120000px;}
.fs4_c00141{font-size:47.880000px;}
.fs2_c00141{font-size:54.000000px;}
.fs0_c00141{font-size:60.120000px;}
.fs1_c00141{font-size:72.000000px;}
.y0_c00141{bottom:0.000000px;}
.y3_c00141{bottom:57.450450px;}
.y4_c00141{bottom:61.410450px;}
.y21_c00141{bottom:113.702250px;}
.y20_c00141{bottom:132.064230px;}
.y1f_c00141{bottom:150.330450px;}
.y1e_c00141{bottom:165.540450px;}
.y1d_c00141{bottom:186.240450px;}
.y1c_c00141{bottom:206.940450px;}
.y1b_c00141{bottom:257.790450px;}
.y1a_c00141{bottom:292.260600px;}
.y19_c00141{bottom:326.640600px;}
.y18_c00141{bottom:361.110600px;}
.y17_c00141{bottom:395.490600px;}
.y16_c00141{bottom:447.960600px;}
.y15_c00141{bottom:491.340450px;}
.y14_c00141{bottom:525.810450px;}
.y13_c00141{bottom:569.190450px;}
.y12_c00141{bottom:612.660450px;}
.y11_c00141{bottom:647.040450px;}
.y10_c00141{bottom:690.510450px;}
.yf_c00141{bottom:733.890450px;}
.ye_c00141{bottom:768.360450px;}
.yd_c00141{bottom:811.740450px;}
.yc_c00141{bottom:846.210450px;}
.yb_c00141{bottom:889.590450px;}
.ya_c00141{bottom:933.060450px;}
.y9_c00141{bottom:976.440450px;}
.y8_c00141{bottom:1019.910450px;}
.y7_c00141{bottom:1054.290450px;}
.y6_c00141{bottom:1097.760450px;}
.y5_c00141{bottom:1141.140450px;}
.y2_c00141{bottom:1173.810450px;}
.y1_c00141{bottom:1196.850450px;}
.h2_c00141{height:47.988281px;}
.h9_c00141{height:49.937344px;}
.h1_c00141{height:50.315273px;}
.h3_c00141{height:56.320312px;}
.h5_c00141{height:60.257812px;}
.h7_c00141{height:60.890625px;}
.h8_c00141{height:65.130220px;}
.h6_c00141{height:65.130820px;}
.h4_c00141{height:75.093750px;}
.h0_c00141{height:1263.000000px;}
.w1_c00141{width:892.500000px;}
.w0_c00141{width:892.830000px;}
.x0_c00141{left:0.000000px;}
.x2_c00141{left:127.620000px;}
.x1_c00141{left:145.440000px;}
.x5_c00141{left:154.440000px;}
.x6_c00141{left:181.170000px;}
.x4_c00141{left:435.240000px;}
.x3_c00141{left:446.490000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.v1_c00141{vertical-align:26.560000pt;}
.lse_c00141{letter-spacing:-0.134400pt;}
.lsc_c00141{letter-spacing:-0.042752pt;}
.ls14_c00141{letter-spacing:-0.032000pt;}
.ls13_c00141{letter-spacing:-0.025600pt;}
.lsf_c00141{letter-spacing:-0.019200pt;}
.lsb_c00141{letter-spacing:-0.016032pt;}
.ls10_c00141{letter-spacing:-0.012800pt;}
.ls11_c00141{letter-spacing:-0.006400pt;}
.ls15_c00141{letter-spacing:-0.003456pt;}
.lsd_c00141{letter-spacing:0.000000pt;}
.ls3_c00141{letter-spacing:0.006400pt;}
.ls8_c00141{letter-spacing:0.012768pt;}
.ls5_c00141{letter-spacing:0.012800pt;}
.ls16_c00141{letter-spacing:0.017024pt;}
.ls6_c00141{letter-spacing:0.019200pt;}
.ls7_c00141{letter-spacing:0.029792pt;}
.ls0_c00141{letter-spacing:0.032064pt;}
.lsa_c00141{letter-spacing:0.042560pt;}
.ls4_c00141{letter-spacing:0.048672pt;}
.ls12_c00141{letter-spacing:0.083200pt;}
.ls1_c00141{letter-spacing:0.128000pt;}
.ls9_c00141{letter-spacing:0.412480pt;}
.ls2_c00141{letter-spacing:58.688000pt;}
.ws1_c00141{word-spacing:-15.993600pt;}
.ws2_c00141{word-spacing:-9.604224pt;}
.ws0_c00141{word-spacing:-9.408672pt;}
.ws23_c00141{word-spacing:-0.025536pt;}
.ws20_c00141{word-spacing:-0.012768pt;}
.wsc_c00141{word-spacing:-0.006400pt;}
.ws6_c00141{word-spacing:0.000000pt;}
.ws21_c00141{word-spacing:0.004256pt;}
.wsb_c00141{word-spacing:0.006400pt;}
.ws9_c00141{word-spacing:0.012800pt;}
.ws12_c00141{word-spacing:0.019200pt;}
.ws10_c00141{word-spacing:0.044800pt;}
.ws3_c00141{word-spacing:0.048096pt;}
.wsa_c00141{word-spacing:0.089600pt;}
.ws7_c00141{word-spacing:0.096000pt;}
.ws4_c00141{word-spacing:0.096192pt;}
.ws5_c00141{word-spacing:0.122912pt;}
.ws22_c00141{word-spacing:0.323456pt;}
.ws8_c00141{word-spacing:2.259200pt;}
.ws1a_c00141{word-spacing:3.225600pt;}
.ws19_c00141{word-spacing:3.257600pt;}
.ws1e_c00141{word-spacing:4.467200pt;}
.ws1f_c00141{word-spacing:4.512000pt;}
.ws15_c00141{word-spacing:4.806400pt;}
.ws14_c00141{word-spacing:4.876800pt;}
.wsd_c00141{word-spacing:7.686400pt;}
.wsf_c00141{word-spacing:12.486400pt;}
.wse_c00141{word-spacing:12.537600pt;}
.ws18_c00141{word-spacing:15.980800pt;}
.ws16_c00141{word-spacing:16.019200pt;}
.ws17_c00141{word-spacing:16.025600pt;}
.ws11_c00141{word-spacing:18.867200pt;}
.ws1d_c00141{word-spacing:20.172800pt;}
.ws1b_c00141{word-spacing:20.268800pt;}
.ws1c_c00141{word-spacing:20.307200pt;}
.ws13_c00141{word-spacing:22.713600pt;}
._0_c00141{margin-left:-1.015360pt;}
._1_c00141{width:1.088000pt;}
.fs5_c00141{font-size:34.560000pt;}
.fs3_c00141{font-size:37.440000pt;}
.fs4_c00141{font-size:42.560000pt;}
.fs2_c00141{font-size:48.000000pt;}
.fs0_c00141{font-size:53.440000pt;}
.fs1_c00141{font-size:64.000000pt;}
.y0_c00141{bottom:0.000000pt;}
.y3_c00141{bottom:51.067067pt;}
.y4_c00141{bottom:54.587067pt;}
.y21_c00141{bottom:101.068667pt;}
.y20_c00141{bottom:117.390427pt;}
.y1f_c00141{bottom:133.627067pt;}
.y1e_c00141{bottom:147.147067pt;}
.y1d_c00141{bottom:165.547067pt;}
.y1c_c00141{bottom:183.947067pt;}
.y1b_c00141{bottom:229.147067pt;}
.y1a_c00141{bottom:259.787200pt;}
.y19_c00141{bottom:290.347200pt;}
.y18_c00141{bottom:320.987200pt;}
.y17_c00141{bottom:351.547200pt;}
.y16_c00141{bottom:398.187200pt;}
.y15_c00141{bottom:436.747067pt;}
.y14_c00141{bottom:467.387067pt;}
.y13_c00141{bottom:505.947067pt;}
.y12_c00141{bottom:544.587067pt;}
.y11_c00141{bottom:575.147067pt;}
.y10_c00141{bottom:613.787067pt;}
.yf_c00141{bottom:652.347067pt;}
.ye_c00141{bottom:682.987067pt;}
.yd_c00141{bottom:721.547067pt;}
.yc_c00141{bottom:752.187067pt;}
.yb_c00141{bottom:790.747067pt;}
.ya_c00141{bottom:829.387067pt;}
.y9_c00141{bottom:867.947067pt;}
.y8_c00141{bottom:906.587067pt;}
.y7_c00141{bottom:937.147067pt;}
.y6_c00141{bottom:975.787067pt;}
.y5_c00141{bottom:1014.347067pt;}
.y2_c00141{bottom:1043.387067pt;}
.y1_c00141{bottom:1063.867067pt;}
.h2_c00141{height:42.656250pt;}
.h9_c00141{height:44.388750pt;}
.h1_c00141{height:44.724687pt;}
.h3_c00141{height:50.062500pt;}
.h5_c00141{height:53.562500pt;}
.h7_c00141{height:54.125000pt;}
.h8_c00141{height:57.893529pt;}
.h6_c00141{height:57.894062pt;}
.h4_c00141{height:66.750000pt;}
.h0_c00141{height:1122.666667pt;}
.w1_c00141{width:793.333333pt;}
.w0_c00141{width:793.626667pt;}
.x0_c00141{left:0.000000pt;}
.x2_c00141{left:113.440000pt;}
.x1_c00141{left:129.280000pt;}
.x5_c00141{left:137.280000pt;}
.x6_c00141{left:161.040000pt;}
.x4_c00141{left:386.880000pt;}
.x3_c00141{left:396.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_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_406c48e551d34cf0a69f60a4.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.100098;font-style:normal;font-weight:normal;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_62e8fb6105276dc44155aa30.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;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_c00142;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00142;src:url('chunks/assets/font_e1094acd0abf492e31249678.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00142;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00142{font-family:ff5_c00142;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_c00142;src:url('chunks/assets/font_ec3786b504162f0e6ef53e83.woff2')format("woff");}.ff6_c00142{font-family:ff6_c00142;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_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.v1_c00142{vertical-align:15.840000px;}
.v2_c00142{vertical-align:29.880000px;}
.ls1b_c00142{letter-spacing:-0.266400px;}
.ls18_c00142{letter-spacing:-0.151200px;}
.ls1a_c00142{letter-spacing:-0.043200px;}
.ls1e_c00142{letter-spacing:-0.036000px;}
.ls20_c00142{letter-spacing:-0.028800px;}
.ls1d_c00142{letter-spacing:-0.021600px;}
.ls1c_c00142{letter-spacing:-0.014400px;}
.ls24_c00142{letter-spacing:-0.007776px;}
.ls19_c00142{letter-spacing:-0.007200px;}
.ls22_c00142{letter-spacing:-0.003888px;}
.ls17_c00142{letter-spacing:0.000000px;}
.ls2_c00142{letter-spacing:0.007200px;}
.lsd_c00142{letter-spacing:0.014364px;}
.ls3_c00142{letter-spacing:0.014400px;}
.lsc_c00142{letter-spacing:0.015624px;}
.ls16_c00142{letter-spacing:0.019152px;}
.ls4_c00142{letter-spacing:0.021600px;}
.ls12_c00142{letter-spacing:0.023940px;}
.ls11_c00142{letter-spacing:0.028728px;}
.ls6_c00142{letter-spacing:0.028800px;}
.ls9_c00142{letter-spacing:0.031248px;}
.ls10_c00142{letter-spacing:0.033516px;}
.ls1f_c00142{letter-spacing:0.036000px;}
.lsf_c00142{letter-spacing:0.047880px;}
.ls0_c00142{letter-spacing:0.048096px;}
.ls5_c00142{letter-spacing:0.050400px;}
.ls7_c00142{letter-spacing:0.054756px;}
.ls8_c00142{letter-spacing:0.057600px;}
.lsb_c00142{letter-spacing:0.058716px;}
.ls21_c00142{letter-spacing:0.093600px;}
.ls14_c00142{letter-spacing:0.104040px;}
.ls25_c00142{letter-spacing:0.346032px;}
.ls15_c00142{letter-spacing:0.350640px;}
.ls23_c00142{letter-spacing:0.357696px;}
.ls26_c00142{letter-spacing:0.378252px;}
.lse_c00142{letter-spacing:0.464040px;}
.ls13_c00142{letter-spacing:2.151360px;}
.lsa_c00142{letter-spacing:77.299920px;}
.ls1_c00142{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00142{word-spacing:-19.561248px;}
.ws2_c00142{word-spacing:-19.545624px;}
.ws4_c00142{word-spacing:-13.310640px;}
.ws5_c00142{word-spacing:-11.166336px;}
.ws6_c00142{word-spacing:-11.154672px;}
.ws3_c00142{word-spacing:-10.804752px;}
.ws0_c00142{word-spacing:-10.584756px;}
.ws21_c00142{word-spacing:-0.150984px;}
.ws24_c00142{word-spacing:-0.093600px;}
.ws30_c00142{word-spacing:-0.028728px;}
.ws32_c00142{word-spacing:-0.014364px;}
.ws33_c00142{word-spacing:-0.009576px;}
.ws34_c00142{word-spacing:-0.004788px;}
.ws8_c00142{word-spacing:0.000000px;}
.ws2e_c00142{word-spacing:0.004788px;}
.ws31_c00142{word-spacing:0.019152px;}
.ws19_c00142{word-spacing:0.021600px;}
.ws7_c00142{word-spacing:0.042084px;}
.ws29_c00142{word-spacing:0.064800px;}
.ws23_c00142{word-spacing:0.072000px;}
.ws1a_c00142{word-spacing:0.079200px;}
.ws20_c00142{word-spacing:0.086400px;}
.ws2f_c00142{word-spacing:0.363888px;}
.ws12_c00142{word-spacing:0.577044px;}
.ws36_c00142{word-spacing:1.062936px;}
.ws35_c00142{word-spacing:1.072512px;}
.ws1c_c00142{word-spacing:1.087200px;}
.ws10_c00142{word-spacing:1.101600px;}
.ws15_c00142{word-spacing:1.116000px;}
.ws11_c00142{word-spacing:1.137600px;}
.ws1b_c00142{word-spacing:1.144800px;}
.wsf_c00142{word-spacing:1.152000px;}
.ws18_c00142{word-spacing:1.778400px;}
.ws17_c00142{word-spacing:1.843200px;}
.ws16_c00142{word-spacing:1.879200px;}
.ws37_c00142{word-spacing:2.130660px;}
.ws38_c00142{word-spacing:2.165616px;}
.ws13_c00142{word-spacing:2.196000px;}
.ws9_c00142{word-spacing:2.541600px;}
.ws22_c00142{word-spacing:2.599200px;}
.ws25_c00142{word-spacing:2.887200px;}
.ws14_c00142{word-spacing:2.901600px;}
.ws26_c00142{word-spacing:2.952000px;}
.wsd_c00142{word-spacing:3.513600px;}
.wsc_c00142{word-spacing:3.643200px;}
.ws28_c00142{word-spacing:3.909600px;}
.ws27_c00142{word-spacing:4.003200px;}
.ws1e_c00142{word-spacing:4.262400px;}
.ws1f_c00142{word-spacing:4.284000px;}
.ws1d_c00142{word-spacing:4.298400px;}
.ws2c_c00142{word-spacing:5.335200px;}
.ws2b_c00142{word-spacing:5.436000px;}
.ws2d_c00142{word-spacing:5.522400px;}
.ws39_c00142{word-spacing:7.167636px;}
.ws2a_c00142{word-spacing:7.560000px;}
.wsb_c00142{word-spacing:11.476800px;}
.wsa_c00142{word-spacing:11.527200px;}
.wse_c00142{word-spacing:13.298400px;}
._0_c00142{margin-left:-1.322640px;}
._1_c00142{width:1.008000px;}
._2_c00142{width:4.378536px;}
._3_c00142{width:7.201152px;}
.fc0_c00142{color:rgb(0,0,0);}
.fs7_c00142{font-size:38.880000px;}
.fs3_c00142{font-size:42.120000px;}
.fs6_c00142{font-size:47.880000px;}
.fs1_c00142{font-size:54.000000px;}
.fs0_c00142{font-size:60.120000px;}
.fs2_c00142{font-size:72.000000px;}
.fs4_c00142{font-size:78.120000px;}
.fs5_c00142{font-size:83.880000px;}
.y0_c00142{bottom:0.000000px;}
.y3_c00142{bottom:57.450450px;}
.y25_c00142{bottom:113.703690px;}
.y24_c00142{bottom:127.564950px;}
.y23_c00142{bottom:141.338550px;}
.y22_c00142{bottom:159.604770px;}
.y21_c00142{bottom:173.466030px;}
.y20_c00142{bottom:191.732250px;}
.y1f_c00142{bottom:209.998470px;}
.y1e_c00142{bottom:228.364230px;}
.y1d_c00142{bottom:246.630450px;}
.y1c_c00142{bottom:261.840450px;}
.y1b_c00142{bottom:282.540450px;}
.y1a_c00142{bottom:303.240450px;}
.y19_c00142{bottom:340.500450px;}
.y18_c00142{bottom:374.970450px;}
.y17_c00142{bottom:418.350450px;}
.y16_c00142{bottom:452.820450px;}
.y15_c00142{bottom:487.200450px;}
.y14_c00142{bottom:530.670450px;}
.y13_c00142{bottom:565.050450px;}
.y12_c00142{bottom:611.580450px;}
.y11_c00142{bottom:675.660450px;}
.y10_c00142{bottom:710.040600px;}
.yf_c00142{bottom:744.510600px;}
.ye_c00142{bottom:787.890600px;}
.yd_c00142{bottom:822.360450px;}
.yc_c00142{bottom:856.740450px;}
.yb_c00142{bottom:891.210450px;}
.ya_c00142{bottom:934.590450px;}
.y9_c00142{bottom:969.060450px;}
.y8_c00142{bottom:1003.440450px;}
.y7_c00142{bottom:1037.910450px;}
.y6_c00142{bottom:1072.290450px;}
.y5_c00142{bottom:1106.760450px;}
.y4_c00142{bottom:1141.140450px;}
.y2_c00142{bottom:1177.860450px;}
.y1_c00142{bottom:1196.850450px;}
.h8_c00142{height:47.988281px;}
.h9_c00142{height:49.937344px;}
.h1_c00142{height:50.315273px;}
.h2_c00142{height:56.320312px;}
.h4_c00142{height:60.257812px;}
.h6_c00142{height:65.130220px;}
.h5_c00142{height:65.130820px;}
.h3_c00142{height:72.160312px;}
.h7_c00142{height:81.476719px;}
.h0_c00142{height:1263.000000px;}
.w1_c00142{width:892.500000px;}
.w0_c00142{width:892.830000px;}
.x0_c00142{left:0.000000px;}
.x1_c00142{left:127.620000px;}
.x3_c00142{left:154.624050px;}
.x2_c00142{left:180.810000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.v1_c00142{vertical-align:14.080000pt;}
.v2_c00142{vertical-align:26.560000pt;}
.ls1b_c00142{letter-spacing:-0.236800pt;}
.ls18_c00142{letter-spacing:-0.134400pt;}
.ls1a_c00142{letter-spacing:-0.038400pt;}
.ls1e_c00142{letter-spacing:-0.032000pt;}
.ls20_c00142{letter-spacing:-0.025600pt;}
.ls1d_c00142{letter-spacing:-0.019200pt;}
.ls1c_c00142{letter-spacing:-0.012800pt;}
.ls24_c00142{letter-spacing:-0.006912pt;}
.ls19_c00142{letter-spacing:-0.006400pt;}
.ls22_c00142{letter-spacing:-0.003456pt;}
.ls17_c00142{letter-spacing:0.000000pt;}
.ls2_c00142{letter-spacing:0.006400pt;}
.lsd_c00142{letter-spacing:0.012768pt;}
.ls3_c00142{letter-spacing:0.012800pt;}
.lsc_c00142{letter-spacing:0.013888pt;}
.ls16_c00142{letter-spacing:0.017024pt;}
.ls4_c00142{letter-spacing:0.019200pt;}
.ls12_c00142{letter-spacing:0.021280pt;}
.ls11_c00142{letter-spacing:0.025536pt;}
.ls6_c00142{letter-spacing:0.025600pt;}
.ls9_c00142{letter-spacing:0.027776pt;}
.ls10_c00142{letter-spacing:0.029792pt;}
.ls1f_c00142{letter-spacing:0.032000pt;}
.lsf_c00142{letter-spacing:0.042560pt;}
.ls0_c00142{letter-spacing:0.042752pt;}
.ls5_c00142{letter-spacing:0.044800pt;}
.ls7_c00142{letter-spacing:0.048672pt;}
.ls8_c00142{letter-spacing:0.051200pt;}
.lsb_c00142{letter-spacing:0.052192pt;}
.ls21_c00142{letter-spacing:0.083200pt;}
.ls14_c00142{letter-spacing:0.092480pt;}
.ls25_c00142{letter-spacing:0.307584pt;}
.ls15_c00142{letter-spacing:0.311680pt;}
.ls23_c00142{letter-spacing:0.317952pt;}
.ls26_c00142{letter-spacing:0.336224pt;}
.lse_c00142{letter-spacing:0.412480pt;}
.ls13_c00142{letter-spacing:1.912320pt;}
.lsa_c00142{letter-spacing:68.711040pt;}
.ls1_c00142{letter-spacing:1077.440000pt;}
.ws1_c00142{word-spacing:-17.387776pt;}
.ws2_c00142{word-spacing:-17.373888pt;}
.ws4_c00142{word-spacing:-11.831680pt;}
.ws5_c00142{word-spacing:-9.925632pt;}
.ws6_c00142{word-spacing:-9.915264pt;}
.ws3_c00142{word-spacing:-9.604224pt;}
.ws0_c00142{word-spacing:-9.408672pt;}
.ws21_c00142{word-spacing:-0.134208pt;}
.ws24_c00142{word-spacing:-0.083200pt;}
.ws30_c00142{word-spacing:-0.025536pt;}
.ws32_c00142{word-spacing:-0.012768pt;}
.ws33_c00142{word-spacing:-0.008512pt;}
.ws34_c00142{word-spacing:-0.004256pt;}
.ws8_c00142{word-spacing:0.000000pt;}
.ws2e_c00142{word-spacing:0.004256pt;}
.ws31_c00142{word-spacing:0.017024pt;}
.ws19_c00142{word-spacing:0.019200pt;}
.ws7_c00142{word-spacing:0.037408pt;}
.ws29_c00142{word-spacing:0.057600pt;}
.ws23_c00142{word-spacing:0.064000pt;}
.ws1a_c00142{word-spacing:0.070400pt;}
.ws20_c00142{word-spacing:0.076800pt;}
.ws2f_c00142{word-spacing:0.323456pt;}
.ws12_c00142{word-spacing:0.512928pt;}
.ws36_c00142{word-spacing:0.944832pt;}
.ws35_c00142{word-spacing:0.953344pt;}
.ws1c_c00142{word-spacing:0.966400pt;}
.ws10_c00142{word-spacing:0.979200pt;}
.ws15_c00142{word-spacing:0.992000pt;}
.ws11_c00142{word-spacing:1.011200pt;}
.ws1b_c00142{word-spacing:1.017600pt;}
.wsf_c00142{word-spacing:1.024000pt;}
.ws18_c00142{word-spacing:1.580800pt;}
.ws17_c00142{word-spacing:1.638400pt;}
.ws16_c00142{word-spacing:1.670400pt;}
.ws37_c00142{word-spacing:1.893920pt;}
.ws38_c00142{word-spacing:1.924992pt;}
.ws13_c00142{word-spacing:1.952000pt;}
.ws9_c00142{word-spacing:2.259200pt;}
.ws22_c00142{word-spacing:2.310400pt;}
.ws25_c00142{word-spacing:2.566400pt;}
.ws14_c00142{word-spacing:2.579200pt;}
.ws26_c00142{word-spacing:2.624000pt;}
.wsd_c00142{word-spacing:3.123200pt;}
.wsc_c00142{word-spacing:3.238400pt;}
.ws28_c00142{word-spacing:3.475200pt;}
.ws27_c00142{word-spacing:3.558400pt;}
.ws1e_c00142{word-spacing:3.788800pt;}
.ws1f_c00142{word-spacing:3.808000pt;}
.ws1d_c00142{word-spacing:3.820800pt;}
.ws2c_c00142{word-spacing:4.742400pt;}
.ws2b_c00142{word-spacing:4.832000pt;}
.ws2d_c00142{word-spacing:4.908800pt;}
.ws39_c00142{word-spacing:6.371232pt;}
.ws2a_c00142{word-spacing:6.720000pt;}
.wsb_c00142{word-spacing:10.201600pt;}
.wsa_c00142{word-spacing:10.246400pt;}
.wse_c00142{word-spacing:11.820800pt;}
._0_c00142{margin-left:-1.175680pt;}
._1_c00142{width:0.896000pt;}
._2_c00142{width:3.892032pt;}
._3_c00142{width:6.401024pt;}
.fs7_c00142{font-size:34.560000pt;}
.fs3_c00142{font-size:37.440000pt;}
.fs6_c00142{font-size:42.560000pt;}
.fs1_c00142{font-size:48.000000pt;}
.fs0_c00142{font-size:53.440000pt;}
.fs2_c00142{font-size:64.000000pt;}
.fs4_c00142{font-size:69.440000pt;}
.fs5_c00142{font-size:74.560000pt;}
.y0_c00142{bottom:0.000000pt;}
.y3_c00142{bottom:51.067067pt;}
.y25_c00142{bottom:101.069947pt;}
.y24_c00142{bottom:113.391067pt;}
.y23_c00142{bottom:125.634267pt;}
.y22_c00142{bottom:141.870907pt;}
.y21_c00142{bottom:154.192027pt;}
.y20_c00142{bottom:170.428667pt;}
.y1f_c00142{bottom:186.665307pt;}
.y1e_c00142{bottom:202.990427pt;}
.y1d_c00142{bottom:219.227067pt;}
.y1c_c00142{bottom:232.747067pt;}
.y1b_c00142{bottom:251.147067pt;}
.y1a_c00142{bottom:269.547067pt;}
.y19_c00142{bottom:302.667067pt;}
.y18_c00142{bottom:333.307067pt;}
.y17_c00142{bottom:371.867067pt;}
.y16_c00142{bottom:402.507067pt;}
.y15_c00142{bottom:433.067067pt;}
.y14_c00142{bottom:471.707067pt;}
.y13_c00142{bottom:502.267067pt;}
.y12_c00142{bottom:543.627067pt;}
.y11_c00142{bottom:600.587067pt;}
.y10_c00142{bottom:631.147200pt;}
.yf_c00142{bottom:661.787200pt;}
.ye_c00142{bottom:700.347200pt;}
.yd_c00142{bottom:730.987067pt;}
.yc_c00142{bottom:761.547067pt;}
.yb_c00142{bottom:792.187067pt;}
.ya_c00142{bottom:830.747067pt;}
.y9_c00142{bottom:861.387067pt;}
.y8_c00142{bottom:891.947067pt;}
.y7_c00142{bottom:922.587067pt;}
.y6_c00142{bottom:953.147067pt;}
.y5_c00142{bottom:983.787067pt;}
.y4_c00142{bottom:1014.347067pt;}
.y2_c00142{bottom:1046.987067pt;}
.y1_c00142{bottom:1063.867067pt;}
.h8_c00142{height:42.656250pt;}
.h9_c00142{height:44.388750pt;}
.h1_c00142{height:44.724687pt;}
.h2_c00142{height:50.062500pt;}
.h4_c00142{height:53.562500pt;}
.h6_c00142{height:57.893529pt;}
.h5_c00142{height:57.894062pt;}
.h3_c00142{height:64.142500pt;}
.h7_c00142{height:72.423750pt;}
.h0_c00142{height:1122.666667pt;}
.w1_c00142{width:793.333333pt;}
.w0_c00142{width:793.626667pt;}
.x0_c00142{left:0.000000pt;}
.x1_c00142{left:113.440000pt;}
.x3_c00142{left:137.443600pt;}
.x2_c00142{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_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_5a712326ec874d1ab190a3f0.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00143;src:url('chunks/assets/font_bed434dcfc5c36367abe6c4e.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;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_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;}
.v1_c00143{vertical-align:29.880000px;}
.ls9_c00143{letter-spacing:-0.151200px;}
.ls7_c00143{letter-spacing:-0.048096px;}
.lsd_c00143{letter-spacing:-0.028800px;}
.lsa_c00143{letter-spacing:-0.021600px;}
.ls6_c00143{letter-spacing:-0.018036px;}
.lsc_c00143{letter-spacing:-0.014400px;}
.lsb_c00143{letter-spacing:-0.007200px;}
.ls8_c00143{letter-spacing:0.000000px;}
.ls1_c00143{letter-spacing:0.007200px;}
.ls2_c00143{letter-spacing:0.014400px;}
.ls5_c00143{letter-spacing:0.028728px;}
.ls0_c00143{letter-spacing:0.036072px;}
.ls4_c00143{letter-spacing:0.052668px;}
.ls3_c00143{letter-spacing:0.054756px;}
.lse_c00143{letter-spacing:0.093600px;}
.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;}
}
.ws0_c00143{word-spacing:-10.584756px;}
.ws17_c00143{word-spacing:-0.033516px;}
.ws18_c00143{word-spacing:-0.009576px;}
.ws16_c00143{word-spacing:-0.007200px;}
.ws4_c00143{word-spacing:0.000000px;}
.ws8_c00143{word-spacing:0.007200px;}
.ws1_c00143{word-spacing:0.054108px;}
.ws2_c00143{word-spacing:0.108216px;}
.ws3_c00143{word-spacing:0.138276px;}
.ws6_c00143{word-spacing:2.181600px;}
.wse_c00143{word-spacing:2.203200px;}
.ws5_c00143{word-spacing:2.880000px;}
.ws11_c00143{word-spacing:3.614400px;}
.wsd_c00143{word-spacing:5.788800px;}
.ws12_c00143{word-spacing:8.287200px;}
.ws13_c00143{word-spacing:8.344800px;}
.wsc_c00143{word-spacing:10.447200px;}
.ws15_c00143{word-spacing:12.585600px;}
.ws14_c00143{word-spacing:12.664800px;}
.wsb_c00143{word-spacing:15.825600px;}
.wsf_c00143{word-spacing:24.840000px;}
.ws10_c00143{word-spacing:24.984000px;}
.ws7_c00143{word-spacing:25.552800px;}
.ws9_c00143{word-spacing:29.469600px;}
.wsa_c00143{word-spacing:29.620800px;}
._0_c00143{margin-left:-1.142280px;}
._1_c00143{width:1.296000px;}
.fc0_c00143{color:rgb(0,0,0);}
.fs3_c00143{font-size:42.120000px;}
.fs4_c00143{font-size:47.880000px;}
.fs2_c00143{font-size:54.000000px;}
.fs0_c00143{font-size:60.120000px;}
.fs1_c00143{font-size:72.000000px;}
.y0_c00143{bottom:0.000000px;}
.y3_c00143{bottom:57.450450px;}
.y4_c00143{bottom:61.410450px;}
.y22_c00143{bottom:113.700450px;}
.y21_c00143{bottom:128.910450px;}
.y20_c00143{bottom:149.610450px;}
.y1f_c00143{bottom:170.310450px;}
.y1e_c00143{bottom:216.195510px;}
.y1d_c00143{bottom:254.537040px;}
.y1c_c00143{bottom:292.788390px;}
.y1b_c00143{bottom:331.129920px;}
.y1a_c00143{bottom:369.471450px;}
.y19_c00143{bottom:407.812980px;}
.y18_c00143{bottom:446.154510px;}
.y17_c00143{bottom:484.405860px;}
.y16_c00143{bottom:522.747390px;}
.y15_c00143{bottom:561.088920px;}
.y14_c00143{bottom:599.430450px;}
.y13_c00143{bottom:641.190450px;}
.y12_c00143{bottom:675.660450px;}
.y11_c00143{bottom:710.040450px;}
.y10_c00143{bottom:744.510450px;}
.yf_c00143{bottom:778.890450px;}
.ye_c00143{bottom:813.360450px;}
.yd_c00143{bottom:847.740450px;}
.yc_c00143{bottom:891.210450px;}
.yb_c00143{bottom:925.590450px;}
.ya_c00143{bottom:960.060450px;}
.y9_c00143{bottom:994.440450px;}
.y8_c00143{bottom:1037.910450px;}
.y7_c00143{bottom:1072.290450px;}
.y6_c00143{bottom:1106.760450px;}
.y5_c00143{bottom:1141.140450px;}
.y2_c00143{bottom:1173.810450px;}
.y1_c00143{bottom:1196.850450px;}
.h2_c00143{height:47.988281px;}
.h7_c00143{height:49.937344px;}
.h1_c00143{height:50.315273px;}
.h3_c00143{height:56.320312px;}
.h4_c00143{height:60.257812px;}
.h6_c00143{height:62.703281px;}
.h5_c00143{height:65.130820px;}
.h0_c00143{height:1263.000000px;}
.w1_c00143{width:892.500000px;}
.w0_c00143{width:892.830000px;}
.x0_c00143{left:0.000000px;}
.x2_c00143{left:127.620000px;}
.x1_c00143{left:145.440000px;}
.x5_c00143{left:180.810000px;}
.x4_c00143{left:435.240000px;}
.x3_c00143{left:446.490000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.v1_c00143{vertical-align:26.560000pt;}
.ls9_c00143{letter-spacing:-0.134400pt;}
.ls7_c00143{letter-spacing:-0.042752pt;}
.lsd_c00143{letter-spacing:-0.025600pt;}
.lsa_c00143{letter-spacing:-0.019200pt;}
.ls6_c00143{letter-spacing:-0.016032pt;}
.lsc_c00143{letter-spacing:-0.012800pt;}
.lsb_c00143{letter-spacing:-0.006400pt;}
.ls8_c00143{letter-spacing:0.000000pt;}
.ls1_c00143{letter-spacing:0.006400pt;}
.ls2_c00143{letter-spacing:0.012800pt;}
.ls5_c00143{letter-spacing:0.025536pt;}
.ls0_c00143{letter-spacing:0.032064pt;}
.ls4_c00143{letter-spacing:0.046816pt;}
.ls3_c00143{letter-spacing:0.048672pt;}
.lse_c00143{letter-spacing:0.083200pt;}
.ws0_c00143{word-spacing:-9.408672pt;}
.ws17_c00143{word-spacing:-0.029792pt;}
.ws18_c00143{word-spacing:-0.008512pt;}
.ws16_c00143{word-spacing:-0.006400pt;}
.ws4_c00143{word-spacing:0.000000pt;}
.ws8_c00143{word-spacing:0.006400pt;}
.ws1_c00143{word-spacing:0.048096pt;}
.ws2_c00143{word-spacing:0.096192pt;}
.ws3_c00143{word-spacing:0.122912pt;}
.ws6_c00143{word-spacing:1.939200pt;}
.wse_c00143{word-spacing:1.958400pt;}
.ws5_c00143{word-spacing:2.560000pt;}
.ws11_c00143{word-spacing:3.212800pt;}
.wsd_c00143{word-spacing:5.145600pt;}
.ws12_c00143{word-spacing:7.366400pt;}
.ws13_c00143{word-spacing:7.417600pt;}
.wsc_c00143{word-spacing:9.286400pt;}
.ws15_c00143{word-spacing:11.187200pt;}
.ws14_c00143{word-spacing:11.257600pt;}
.wsb_c00143{word-spacing:14.067200pt;}
.wsf_c00143{word-spacing:22.080000pt;}
.ws10_c00143{word-spacing:22.208000pt;}
.ws7_c00143{word-spacing:22.713600pt;}
.ws9_c00143{word-spacing:26.195200pt;}
.wsa_c00143{word-spacing:26.329600pt;}
._0_c00143{margin-left:-1.015360pt;}
._1_c00143{width:1.152000pt;}
.fs3_c00143{font-size:37.440000pt;}
.fs4_c00143{font-size:42.560000pt;}
.fs2_c00143{font-size:48.000000pt;}
.fs0_c00143{font-size:53.440000pt;}
.fs1_c00143{font-size:64.000000pt;}
.y0_c00143{bottom:0.000000pt;}
.y3_c00143{bottom:51.067067pt;}
.y4_c00143{bottom:54.587067pt;}
.y22_c00143{bottom:101.067067pt;}
.y21_c00143{bottom:114.587067pt;}
.y20_c00143{bottom:132.987067pt;}
.y1f_c00143{bottom:151.387067pt;}
.y1e_c00143{bottom:192.173787pt;}
.y1d_c00143{bottom:226.255147pt;}
.y1c_c00143{bottom:260.256347pt;}
.y1b_c00143{bottom:294.337707pt;}
.y1a_c00143{bottom:328.419067pt;}
.y19_c00143{bottom:362.500427pt;}
.y18_c00143{bottom:396.581787pt;}
.y17_c00143{bottom:430.582987pt;}
.y16_c00143{bottom:464.664347pt;}
.y15_c00143{bottom:498.745707pt;}
.y14_c00143{bottom:532.827067pt;}
.y13_c00143{bottom:569.947067pt;}
.y12_c00143{bottom:600.587067pt;}
.y11_c00143{bottom:631.147067pt;}
.y10_c00143{bottom:661.787067pt;}
.yf_c00143{bottom:692.347067pt;}
.ye_c00143{bottom:722.987067pt;}
.yd_c00143{bottom:753.547067pt;}
.yc_c00143{bottom:792.187067pt;}
.yb_c00143{bottom:822.747067pt;}
.ya_c00143{bottom:853.387067pt;}
.y9_c00143{bottom:883.947067pt;}
.y8_c00143{bottom:922.587067pt;}
.y7_c00143{bottom:953.147067pt;}
.y6_c00143{bottom:983.787067pt;}
.y5_c00143{bottom:1014.347067pt;}
.y2_c00143{bottom:1043.387067pt;}
.y1_c00143{bottom:1063.867067pt;}
.h2_c00143{height:42.656250pt;}
.h7_c00143{height:44.388750pt;}
.h1_c00143{height:44.724687pt;}
.h3_c00143{height:50.062500pt;}
.h4_c00143{height:53.562500pt;}
.h6_c00143{height:55.736250pt;}
.h5_c00143{height:57.894062pt;}
.h0_c00143{height:1122.666667pt;}
.w1_c00143{width:793.333333pt;}
.w0_c00143{width:793.626667pt;}
.x0_c00143{left:0.000000pt;}
.x2_c00143{left:113.440000pt;}
.x1_c00143{left:129.280000pt;}
.x5_c00143{left:160.720000pt;}
.x4_c00143{left:386.880000pt;}
.x3_c00143{left:396.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_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;}
.sc__c00144{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
}
.y0_c00144{bottom:0.000000px;}
.h0_c00144{height:1263.000000px;}
.w1_c00144{width:892.500000px;}
.w0_c00144{width:892.830000px;}
.x0_c00144{left:0.000000px;}
@media print{
.y0_c00144{bottom:0.000000pt;}
.h0_c00144{height:1122.666667pt;}
.w1_c00144{width:793.333333pt;}
.w0_c00144{width:793.626667pt;}
.x0_c00144{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_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_859300c011e99521974ddd02.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00145;src:url('chunks/assets/font_f54c9e9a201decd3681cce82.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:0.676000;font-style:normal;font-weight:normal;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_0cca72844a803ff0550fc032.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:0.919000;font-style:normal;font-weight:normal;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_860078c5e1790abfd16d8b14.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:1.090000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00145;src:url('chunks/assets/font_a0bf6f255b35e5d81cbbafe4.woff2')format("woff");}.ff5_c00145{font-family:ff5_c00145;line-height:0.674805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00145;src:url('chunks/assets/font_eed44dc65c6e33fc0eb212da.woff2')format("woff");}.ff6_c00145{font-family:ff6_c00145;line-height:0.674805;font-style: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);}
.va_c00145{vertical-align:-15.000000px;}
.v0_c00145{vertical-align:0.000000px;}
.v9_c00145{vertical-align:15.000000px;}
.v1_c00145{vertical-align:21.138600px;}
.v7_c00145{vertical-align:25.560000px;}
.v8_c00145{vertical-align:28.524000px;}
.v2_c00145{vertical-align:30.024000px;}
.v3_c00145{vertical-align:31.530000px;}
.v5_c00145{vertical-align:53.976000px;}
.v6_c00145{vertical-align:60.018000px;}
.v4_c00145{vertical-align:61.530000px;}
.ls6b_c00145{letter-spacing:-1.200000px;}
.ls61_c00145{letter-spacing:-0.567000px;}
.ls3f_c00145{letter-spacing:-0.529200px;}
.ls4c_c00145{letter-spacing:-0.528000px;}
.ls54_c00145{letter-spacing:-0.518400px;}
.ls39_c00145{letter-spacing:-0.516000px;}
.ls55_c00145{letter-spacing:-0.504000px;}
.ls3b_c00145{letter-spacing:-0.494400px;}
.ls42_c00145{letter-spacing:-0.486000px;}
.ls51_c00145{letter-spacing:-0.480600px;}
.ls40_c00145{letter-spacing:-0.480000px;}
.ls53_c00145{letter-spacing:-0.475200px;}
.ls62_c00145{letter-spacing:-0.469800px;}
.ls4f_c00145{letter-spacing:-0.459000px;}
.ls5a_c00145{letter-spacing:-0.448200px;}
.ls52_c00145{letter-spacing:-0.432000px;}
.ls5f_c00145{letter-spacing:-0.421200px;}
.ls44_c00145{letter-spacing:-0.410400px;}
.ls69_c00145{letter-spacing:-0.394200px;}
.ls4b_c00145{letter-spacing:-0.383400px;}
.ls68_c00145{letter-spacing:-0.361800px;}
.ls63_c00145{letter-spacing:-0.324000px;}
.ls56_c00145{letter-spacing:-0.313200px;}
.ls6a_c00145{letter-spacing:-0.292500px;}
.ls60_c00145{letter-spacing:-0.243000px;}
.ls3d_c00145{letter-spacing:-0.216000px;}
.ls4a_c00145{letter-spacing:-0.102600px;}
.ls45_c00145{letter-spacing:-0.070200px;}
.ls4e_c00145{letter-spacing:-0.048600px;}
.ls57_c00145{letter-spacing:-0.043200px;}
.ls3c_c00145{letter-spacing:-0.037800px;}
.ls50_c00145{letter-spacing:-0.032400px;}
.ls49_c00145{letter-spacing:-0.027000px;}
.ls5d_c00145{letter-spacing:-0.021600px;}
.ls3e_c00145{letter-spacing:-0.016200px;}
.ls5e_c00145{letter-spacing:-0.010800px;}
.ls3a_c00145{letter-spacing:0.000000px;}
.ls5c_c00145{letter-spacing:0.009600px;}
.ls47_c00145{letter-spacing:0.010800px;}
.ls11_c00145{letter-spacing:0.014400px;}
.ls2e_c00145{letter-spacing:0.016200px;}
.ls23_c00145{letter-spacing:0.021600px;}
.ls8_c00145{letter-spacing:0.027000px;}
.ls31_c00145{letter-spacing:0.032400px;}
.ls18_c00145{letter-spacing:0.037800px;}
.lsa_c00145{letter-spacing:0.043200px;}
.lsb_c00145{letter-spacing:0.048600px;}
.ls6_c00145{letter-spacing:0.054000px;}
.ls9_c00145{letter-spacing:0.059400px;}
.lsd_c00145{letter-spacing:0.064800px;}
.ls1b_c00145{letter-spacing:0.070200px;}
.lsf_c00145{letter-spacing:0.075600px;}
.ls5_c00145{letter-spacing:0.081000px;}
.ls25_c00145{letter-spacing:0.086400px;}
.ls1a_c00145{letter-spacing:0.097200px;}
.ls7_c00145{letter-spacing:0.102600px;}
.ls64_c00145{letter-spacing:0.108000px;}
.ls5b_c00145{letter-spacing:0.113400px;}
.ls2b_c00145{letter-spacing:0.118800px;}
.ls27_c00145{letter-spacing:0.124200px;}
.ls32_c00145{letter-spacing:0.129600px;}
.ls24_c00145{letter-spacing:0.135000px;}
.ls33_c00145{letter-spacing:0.140400px;}
.ls16_c00145{letter-spacing:0.145800px;}
.ls14_c00145{letter-spacing:0.151200px;}
.ls37_c00145{letter-spacing:0.156600px;}
.ls21_c00145{letter-spacing:0.167400px;}
.ls3_c00145{letter-spacing:0.172800px;}
.ls2_c00145{letter-spacing:0.178200px;}
.ls65_c00145{letter-spacing:0.226800px;}
.ls1_c00145{letter-spacing:0.312000px;}
.ls38_c00145{letter-spacing:0.330000px;}
.ls66_c00145{letter-spacing:0.360000px;}
.ls59_c00145{letter-spacing:0.432000px;}
.ls4_c00145{letter-spacing:0.460800px;}
.ls4d_c00145{letter-spacing:0.480000px;}
.ls46_c00145{letter-spacing:0.507600px;}
.ls48_c00145{letter-spacing:0.518400px;}
.ls10_c00145{letter-spacing:0.528000px;}
.ls43_c00145{letter-spacing:0.702000px;}
.ls58_c00145{letter-spacing:0.718200px;}
.ls67_c00145{letter-spacing:1.020600px;}
.ls41_c00145{letter-spacing:1.674000px;}
.ls29_c00145{letter-spacing:72.036000px;}
.lsc_c00145{letter-spacing:237.006000px;}
.ls13_c00145{letter-spacing:259.686000px;}
.ls2d_c00145{letter-spacing:262.602000px;}
.ls36_c00145{letter-spacing:406.620000px;}
.ls20_c00145{letter-spacing:432.000000px;}
.ls28_c00145{letter-spacing:439.506000px;}
.ls2a_c00145{letter-spacing:569.970000px;}
.ls12_c00145{letter-spacing:615.168000px;}
.lse_c00145{letter-spacing:632.988000px;}
.ls26_c00145{letter-spacing:753.138000px;}
.ls1f_c00145{letter-spacing:894.132000px;}
.ls35_c00145{letter-spacing:925.614000px;}
.ls1c_c00145{letter-spacing:1018.656000px;}
.ls22_c00145{letter-spacing:1209.114000px;}
.ls1e_c00145{letter-spacing:1287.198000px;}
.ls2f_c00145{letter-spacing:1303.668000px;}
.ls34_c00145{letter-spacing:1491.318000px;}
.ls15_c00145{letter-spacing:1534.680000px;}
.ls17_c00145{letter-spacing:1776.276000px;}
.ls2c_c00145{letter-spacing:1788.318000px;}
.ls1d_c00145{letter-spacing:2313.306000px;}
.ls30_c00145{letter-spacing:2635.956000px;}
.ls19_c00145{letter-spacing:2935.926000px;}
.ls0_c00145{letter-spacing:4268.280600px;}
.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;}
}
.ws9_c00145{word-spacing:-13.672800px;}
.ws7_c00145{word-spacing:-13.559400px;}
.ws8_c00145{word-spacing:-13.554000px;}
.ws6_c00145{word-spacing:-13.548600px;}
.ws2_c00145{word-spacing:-13.510800px;}
.ws1_c00145{word-spacing:-13.500000px;}
.ws3_c00145{word-spacing:-13.483800px;}
.ws0_c00145{word-spacing:-13.284000px;}
.ws4_c00145{word-spacing:-12.000000px;}
.ws5_c00145{word-spacing:-11.472000px;}
.wsa_c00145{word-spacing:-9.750000px;}
.ws38_c00145{word-spacing:-0.718200px;}
.ws1e_c00145{word-spacing:-0.702000px;}
.ws21_c00145{word-spacing:-0.507600px;}
.ws10_c00145{word-spacing:-0.331200px;}
.ws3b_c00145{word-spacing:-0.167400px;}
.ws4d_c00145{word-spacing:-0.162000px;}
.ws51_c00145{word-spacing:-0.156600px;}
.ws26_c00145{word-spacing:-0.151200px;}
.ws29_c00145{word-spacing:-0.145800px;}
.ws4e_c00145{word-spacing:-0.140400px;}
.ws40_c00145{word-spacing:-0.135000px;}
.ws33_c00145{word-spacing:-0.129600px;}
.ws19_c00145{word-spacing:-0.124200px;}
.ws47_c00145{word-spacing:-0.118800px;}
.ws3a_c00145{word-spacing:-0.113400px;}
.ws4c_c00145{word-spacing:-0.108000px;}
.ws15_c00145{word-spacing:-0.102600px;}
.ws2c_c00145{word-spacing:-0.097200px;}
.ws41_c00145{word-spacing:-0.086400px;}
.ws11_c00145{word-spacing:-0.081000px;}
.ws23_c00145{word-spacing:-0.075600px;}
.ws34_c00145{word-spacing:-0.070200px;}
.ws1d_c00145{word-spacing:-0.064800px;}
.ws18_c00145{word-spacing:-0.059400px;}
.ws13_c00145{word-spacing:-0.054000px;}
.ws1b_c00145{word-spacing:-0.048600px;}
.ws1a_c00145{word-spacing:-0.043200px;}
.ws2b_c00145{word-spacing:-0.037800px;}
.ws2e_c00145{word-spacing:-0.032400px;}
.ws16_c00145{word-spacing:-0.027000px;}
.ws3f_c00145{word-spacing:-0.021600px;}
.ws4b_c00145{word-spacing:-0.016200px;}
.ws22_c00145{word-spacing:-0.010800px;}
.wsc_c00145{word-spacing:0.000000px;}
.ws42_c00145{word-spacing:0.010800px;}
.ws14_c00145{word-spacing:0.016200px;}
.ws3e_c00145{word-spacing:0.021600px;}
.ws24_c00145{word-spacing:0.027000px;}
.ws2d_c00145{word-spacing:0.032400px;}
.ws12_c00145{word-spacing:0.037800px;}
.ws37_c00145{word-spacing:0.043200px;}
.ws28_c00145{word-spacing:0.048600px;}
.ws36_c00145{word-spacing:0.067200px;}
.ws20_c00145{word-spacing:0.070200px;}
.ws25_c00145{word-spacing:0.102600px;}
.ws35_c00145{word-spacing:0.216000px;}
.ws45_c00145{word-spacing:0.243000px;}
.ws32_c00145{word-spacing:0.313200px;}
.ws4a_c00145{word-spacing:0.324000px;}
.ws50_c00145{word-spacing:0.361800px;}
.ws27_c00145{word-spacing:0.383400px;}
.ws52_c00145{word-spacing:0.394200px;}
.ws1f_c00145{word-spacing:0.410400px;}
.ws44_c00145{word-spacing:0.421200px;}
.ws4f_c00145{word-spacing:0.432000px;}
.ws39_c00145{word-spacing:0.448200px;}
.ws2a_c00145{word-spacing:0.459000px;}
.ws49_c00145{word-spacing:0.469800px;}
.ws30_c00145{word-spacing:0.475200px;}
.ws2f_c00145{word-spacing:0.480600px;}
.ws1c_c00145{word-spacing:0.486000px;}
.wsb_c00145{word-spacing:0.516000px;}
.ws3d_c00145{word-spacing:0.518400px;}
.ws17_c00145{word-spacing:0.529200px;}
.ws46_c00145{word-spacing:0.567000px;}
.ws31_c00145{word-spacing:0.648000px;}
.ws54_c00145{word-spacing:1.041300px;}
.ws53_c00145{word-spacing:1.044000px;}
.ws55_c00145{word-spacing:1.296000px;}
.ws3c_c00145{word-spacing:144.007200px;}
.wsd_c00145{word-spacing:149.839200px;}
.ws43_c00145{word-spacing:172.449000px;}
.wse_c00145{word-spacing:181.321200px;}
.wsf_c00145{word-spacing:187.444800px;}
.ws48_c00145{word-spacing:193.449600px;}
._19_c00145{margin-left:-42.174000px;}
._12_c00145{margin-left:-31.374000px;}
._5_c00145{margin-left:-28.512000px;}
._11_c00145{margin-left:-23.976000px;}
._18_c00145{margin-left:-21.060000px;}
._16_c00145{margin-left:-19.402200px;}
._8_c00145{margin-left:-5.994000px;}
._a_c00145{margin-left:-4.338000px;}
._2_c00145{margin-left:-1.488000px;}
._0_c00145{width:1.260000px;}
._1_c00145{width:2.280000px;}
._39_c00145{width:3.402000px;}
._6_c00145{width:4.428000px;}
._e_c00145{width:7.506000px;}
._b_c00145{width:11.988000px;}
._15_c00145{width:15.012000px;}
._7_c00145{width:30.162000px;}
._9_c00145{width:31.896000px;}
._14_c00145{width:34.506000px;}
._c_c00145{width:56.970000px;}
._f_c00145{width:61.560000px;}
._d_c00145{width:102.006000px;}
._13_c00145{width:113.994000px;}
._4_c00145{width:139.482000px;}
._3_c00145{width:166.644000px;}
._17_c00145{width:214.347600px;}
._25_c00145{width:217.092000px;}
._10_c00145{width:233.949600px;}
._35_c00145{width:239.829600px;}
._26_c00145{width:242.828400px;}
._22_c00145{width:248.592000px;}
._21_c00145{width:267.018600px;}
._2a_c00145{width:308.491800px;}
._2e_c00145{width:406.807200px;}
._34_c00145{width:429.835200px;}
._1f_c00145{width:437.088000px;}
._20_c00145{width:487.232400px;}
._1e_c00145{width:549.576000px;}
._29_c00145{width:581.567400px;}
._36_c00145{width:588.762600px;}
._1b_c00145{width:617.640000px;}
._1a_c00145{width:635.936400px;}
._37_c00145{width:719.763600px;}
._38_c00145{width:897.045000px;}
._2c_c00145{width:917.453400px;}
._30_c00145{width:935.484600px;}
._24_c00145{width:1053.268200px;}
._28_c00145{width:1090.749000px;}
._33_c00145{width:1165.459200px;}
._2b_c00145{width:1304.208000px;}
._27_c00145{width:1338.087600px;}
._32_c00145{width:1617.025200px;}
._23_c00145{width:1730.686800px;}
._31_c00145{width:1943.712600px;}
._2d_c00145{width:2156.710800px;}
._2f_c00145{width:2550.208800px;}
._1d_c00145{width:3820.357200px;}
._1c_c00145{width:3909.470400px;}
.fc2_c00145{color:transparent;}
.fc1_c00145{color:rgb(255,255,255);}
.fc0_c00145{color:rgb(0,0,0);}
.fs4_c00145{font-size:39.000000px;}
.fs2_c00145{font-size:48.000000px;}
.fs3_c00145{font-size:54.000000px;}
.fs0_c00145{font-size:60.000000px;}
.fs1_c00145{font-size:72.000000px;}
.y0_c00145{bottom:0.000000px;}
.y3_c00145{bottom:58.127850px;}
.y9f_c00145{bottom:84.037500px;}
.y9e_c00145{bottom:99.412500px;}
.y9d_c00145{bottom:151.170000px;}
.y9c_c00145{bottom:167.673000px;}
.y9b_c00145{bottom:182.658000px;}
.y9a_c00145{bottom:204.825000px;}
.y99_c00145{bottom:220.201500px;}
.y98_c00145{bottom:235.200000px;}
.y97_c00145{bottom:250.576500px;}
.y96_c00145{bottom:265.575000px;}
.y95_c00145{bottom:281.700000px;}
.y92_c00145{bottom:289.194000px;}
.y91_c00145{bottom:289.198500px;}
.y8f_c00145{bottom:290.325000px;}
.y94_c00145{bottom:296.700000px;}
.y8e_c00145{bottom:303.825000px;}
.y90_c00145{bottom:304.575000px;}
.y93_c00145{bottom:312.076500px;}
.y89_c00145{bottom:327.870000px;}
.y8c_c00145{bottom:335.739000px;}
.y8b_c00145{bottom:335.740500px;}
.y86_c00145{bottom:336.870000px;}
.y88_c00145{bottom:343.246500px;}
.y85_c00145{bottom:350.370000px;}
.y8d_c00145{bottom:350.751000px;}
.y8a_c00145{bottom:350.752500px;}
.y87_c00145{bottom:358.245000px;}
.y83_c00145{bottom:374.364000px;}
.y82_c00145{bottom:375.480000px;}
.y81_c00145{bottom:388.980000px;}
.y84_c00145{bottom:389.349000px;}
.y7f_c00145{bottom:405.496500px;}
.y80_c00145{bottom:412.989000px;}
.y7c_c00145{bottom:412.993500px;}
.y7a_c00145{bottom:414.120000px;}
.y7e_c00145{bottom:420.495000px;}
.y79_c00145{bottom:427.620000px;}
.y7b_c00145{bottom:428.370000px;}
.y7d_c00145{bottom:435.871500px;}
.y77_c00145{bottom:451.648500px;}
.y74_c00145{bottom:451.650000px;}
.y78_c00145{bottom:459.532500px;}
.y71_c00145{bottom:460.650000px;}
.y75_c00145{bottom:467.025000px;}
.y73_c00145{bottom:467.026500px;}
.y70_c00145{bottom:474.150000px;}
.y76_c00145{bottom:482.023500px;}
.y72_c00145{bottom:482.025000px;}
.y6f_c00145{bottom:498.144000px;}
.y6e_c00145{bottom:498.151500px;}
.y6c_c00145{bottom:499.275000px;}
.y6b_c00145{bottom:512.775000px;}
.y6d_c00145{bottom:513.150000px;}
.y68_c00145{bottom:529.276500px;}
.y69_c00145{bottom:529.282500px;}
.y66_c00145{bottom:530.400000px;}
.y65_c00145{bottom:543.900000px;}
.y67_c00145{bottom:544.275000px;}
.y6a_c00145{bottom:544.281000px;}
.y64_c00145{bottom:560.410500px;}
.y60_c00145{bottom:567.943500px;}
.y5d_c00145{bottom:575.443500px;}
.y63_c00145{bottom:575.449500px;}
.y5b_c00145{bottom:576.570000px;}
.y5f_c00145{bottom:583.320000px;}
.y5a_c00145{bottom:590.070000px;}
.y5c_c00145{bottom:590.820000px;}
.y62_c00145{bottom:590.826000px;}
.y5e_c00145{bottom:598.318500px;}
.y61_c00145{bottom:605.824500px;}
.y53_c00145{bottom:621.195000px;}
.y59_c00145{bottom:626.068500px;}
.y55_c00145{bottom:633.568500px;}
.y56_c00145{bottom:633.574500px;}
.y52_c00145{bottom:634.695000px;}
.y58_c00145{bottom:641.445000px;}
.y51_c00145{bottom:648.195000px;}
.y54_c00145{bottom:648.945000px;}
.y57_c00145{bottom:656.443500px;}
.y50_c00145{bottom:661.695000px;}
.y4e_c00145{bottom:675.951000px;}
.y4f_c00145{bottom:681.574500px;}
.y4d_c00145{bottom:689.451000px;}
.y4c_c00145{bottom:702.975000px;}
.y49_c00145{bottom:717.975000px;}
.y46_c00145{bottom:719.850000px;}
.y4b_c00145{bottom:725.469000px;}
.y48_c00145{bottom:732.973500px;}
.y4a_c00145{bottom:732.975000px;}
.y45_c00145{bottom:733.350000px;}
.y44_c00145{bottom:746.850000px;}
.y47_c00145{bottom:748.350000px;}
.y3e_c00145{bottom:764.100000px;}
.y40_c00145{bottom:771.970500px;}
.y42_c00145{bottom:771.975000px;}
.y3b_c00145{bottom:773.100000px;}
.y3d_c00145{bottom:779.476500px;}
.y3a_c00145{bottom:786.600000px;}
.y3f_c00145{bottom:786.969000px;}
.y43_c00145{bottom:786.973500px;}
.y41_c00145{bottom:786.975000px;}
.y3c_c00145{bottom:794.475000px;}
.y38_c00145{bottom:810.610500px;}
.y35_c00145{bottom:818.103000px;}
.y39_c00145{bottom:825.630000px;}
.y37_c00145{bottom:825.636000px;}
.y34_c00145{bottom:826.020000px;}
.y36_c00145{bottom:841.012500px;}
.y31_c00145{bottom:856.753500px;}
.y2e_c00145{bottom:856.755000px;}
.y32_c00145{bottom:864.637500px;}
.y2b_c00145{bottom:865.755000px;}
.y2f_c00145{bottom:872.130000px;}
.y2d_c00145{bottom:872.131500px;}
.y2a_c00145{bottom:879.255000px;}
.y33_c00145{bottom:879.636000px;}
.y30_c00145{bottom:887.128500px;}
.y2c_c00145{bottom:887.130000px;}
.y28_c00145{bottom:910.378500px;}
.y29_c00145{bottom:910.384500px;}
.y27_c00145{bottom:918.255000px;}
.y24_c00145{bottom:948.627000px;}
.y26_c00145{bottom:961.057500px;}
.y23_c00145{bottom:962.175000px;}
.y25_c00145{bottom:968.550000px;}
.y22_c00145{bottom:975.675000px;}
.y21_c00145{bottom:989.175000px;}
.y1f_c00145{bottom:1003.792500px;}
.y1a_c00145{bottom:1005.675000px;}
.y20_c00145{bottom:1011.292500px;}
.y1c_c00145{bottom:1011.298500px;}
.y1e_c00145{bottom:1019.169000px;}
.y19_c00145{bottom:1019.175000px;}
.y1b_c00145{bottom:1026.675000px;}
.y18_c00145{bottom:1032.675000px;}
.y1d_c00145{bottom:1034.167500px;}
.y15_c00145{bottom:1050.309000px;}
.y10_c00145{bottom:1052.180850px;}
.y12_c00145{bottom:1057.801500px;}
.y17_c00145{bottom:1057.807500px;}
.y16_c00145{bottom:1065.300000px;}
.y14_c00145{bottom:1065.307500px;}
.yf_c00145{bottom:1065.680850px;}
.y11_c00145{bottom:1072.800000px;}
.ye_c00145{bottom:1079.204850px;}
.y13_c00145{bottom:1080.711000px;}
.yb_c00145{bottom:1096.455000px;}
.y8_c00145{bottom:1098.329850px;}
.yd_c00145{bottom:1103.947500px;}
.y7_c00145{bottom:1111.829850px;}
.ya_c00145{bottom:1111.831500px;}
.yc_c00145{bottom:1119.324000px;}
.y6_c00145{bottom:1125.329850px;}
.y9_c00145{bottom:1126.830000px;}
.y5_c00145{bottom:1142.950500px;}
.y4_c00145{bottom:1158.705000px;}
.y2_c00145{bottom:1174.829850px;}
.y1_c00145{bottom:1197.705000px;}
.h12_c00145{height:31.992188px;}
.h4_c00145{height:37.584000px;}
.h8_c00145{height:37.638000px;}
.h5_c00145{height:40.320000px;}
.h1_c00145{height:41.760000px;}
.h1c_c00145{height:42.144000px;}
.h1d_c00145{height:43.200000px;}
.h6_c00145{height:45.360000px;}
.h2_c00145{height:48.672000px;}
.h3_c00145{height:55.698600px;}
.h16_c00145{height:67.554000px;}
.h17_c00145{height:67.590000px;}
.ha_c00145{height:67.608000px;}
.h11_c00145{height:69.066000px;}
.h13_c00145{height:69.090000px;}
.h19_c00145{height:70.284000px;}
.hb_c00145{height:75.360000px;}
.h7_c00145{height:75.384000px;}
.he_c00145{height:76.842000px;}
.h9_c00145{height:76.890000px;}
.h18_c00145{height:100.836000px;}
.h15_c00145{height:105.324000px;}
.h14_c00145{height:105.378000px;}
.h1a_c00145{height:105.402000px;}
.h1b_c00145{height:106.848000px;}
.hd_c00145{height:106.866000px;}
.hc_c00145{height:106.890000px;}
.h10_c00145{height:106.974000px;}
.hf_c00145{height:129.468000px;}
.h0_c00145{height:1263.000000px;}
.w0_c00145{width:2551.500000px;}
.x0_c00145{left:0.000000px;}
.x3_c00145{left:134.189100px;}
.x2_c00145{left:193.818600px;}
.x6d_c00145{left:218.601600px;}
.x34_c00145{left:220.110750px;}
.x33_c00145{left:224.606250px;}
.x28_c00145{left:225.738600px;}
.x6c_c00145{left:227.606100px;}
.x2e_c00145{left:234.722250px;}
.x2d_c00145{left:235.856250px;}
.x35_c00145{left:243.357750px;}
.x1a_c00145{left:248.225100px;}
.x18_c00145{left:250.848600px;}
.x3d_c00145{left:251.979600px;}
.x3c_c00145{left:257.973600px;}
.x6e_c00145{left:263.597100px;}
.x4_c00145{left:266.598600px;}
.x5_c00145{left:269.217600px;}
.x58_c00145{left:278.225100px;}
.x1f_c00145{left:296.616600px;}
.x1d_c00145{left:299.613600px;}
.x1e_c00145{left:309.347100px;}
.x36_c00145{left:385.473600px;}
.x6f_c00145{left:395.222100px;}
.x71_c00145{left:416.984100px;}
.x78_c00145{left:419.216250px;}
.x70_c00145{left:436.842600px;}
.x59_c00145{left:439.143750px;}
.x77_c00145{left:447.768750px;}
.x5a_c00145{left:467.642250px;}
.x29_c00145{left:472.896600px;}
.x2b_c00145{left:497.277600px;}
.x2a_c00145{left:520.524600px;}
.x20_c00145{left:556.142100px;}
.x12_c00145{left:581.651250px;}
.x5b_c00145{left:587.643750px;}
.x7f_c00145{left:595.146600px;}
.x64_c00145{left:598.145250px;}
.x11_c00145{left:629.643750px;}
.x21_c00145{left:633.389100px;}
.x37_c00145{left:641.258100px;}
.x23_c00145{left:642.381750px;}
.x63_c00145{left:650.268750px;}
.x39_c00145{left:663.399600px;}
.x2f_c00145{left:667.140750px;}
.x22_c00145{left:668.261250px;}
.x4f_c00145{left:682.566750px;}
.x44_c00145{left:690.423750px;}
.x45_c00145{left:705.813750px;}
.x72_c00145{left:707.679600px;}
.x2c_c00145{left:712.938750px;}
.x73_c00145{left:748.935600px;}
.x4e_c00145{left:751.173750px;}
.x6_c00145{left:754.542600px;}
.x3e_c00145{left:756.440250px;}
.x5c_c00145{left:772.188750px;}
.x7_c00145{left:796.199250px;}
.x1b_c00145{left:805.949250px;}
.x56_c00145{left:840.063750px;}
.x24_c00145{left:889.563750px;}
.x55_c00145{left:894.063750px;}
.xb_c00145{left:895.565250px;}
.xa_c00145{left:917.313750px;}
.x6a_c00145{left:977.712600px;}
.x82_c00145{left:1057.968600px;}
.x80_c00145{left:1065.810600px;}
.x79_c00145{left:1098.089250px;}
.x30_c00145{left:1197.138750px;}
.x1c_c00145{left:1198.269600px;}
.x13_c00145{left:1202.016750px;}
.x15_c00145{left:1227.153750px;}
.x5d_c00145{left:1235.400750px;}
.x19_c00145{left:1241.006100px;}
.x66_c00145{left:1254.512100px;}
.x14_c00145{left:1260.525750px;}
.x65_c00145{left:1272.521100px;}
.x25_c00145{left:1290.878250px;}
.x67_c00145{left:1348.256100px;}
.x31_c00145{left:1398.167250px;}
.x32_c00145{left:1428.906750px;}
.x74_c00145{left:1435.680600px;}
.x40_c00145{left:1445.420250px;}
.x3a_c00145{left:1450.658100px;}
.x3f_c00145{left:1470.921750px;}
.x41_c00145{left:1480.668750px;}
.x51_c00145{left:1520.795250px;}
.x68_c00145{left:1527.168750px;}
.x50_c00145{left:1533.174750px;}
.x46_c00145{left:1548.920250px;}
.x81_c00145{left:1551.149100px;}
.x48_c00145{left:1562.420250px;}
.x16_c00145{left:1565.045250px;}
.x47_c00145{left:1585.667250px;}
.x17_c00145{left:1610.417400px;}
.x7c_c00145{left:1703.082900px;}
.x42_c00145{left:1709.088750px;}
.x7a_c00145{left:1715.444250px;}
.x7b_c00145{left:1719.953250px;}
.x1_c00145{left:1736.838750px;}
.xe_c00145{left:1772.093250px;}
.x38_c00145{left:1773.590250px;}
.x8_c00145{left:1790.096250px;}
.xd_c00145{left:1791.965250px;}
.xc_c00145{left:1796.447250px;}
.x9_c00145{left:1808.469750px;}
.x69_c00145{left:1824.951750px;}
.x49_c00145{left:1830.219750px;}
.x4b_c00145{left:1831.704750px;}
.x4a_c00145{left:1853.088750px;}
.x52_c00145{left:1859.448750px;}
.x4c_c00145{left:1864.347750px;}
.x5f_c00145{left:1900.359750px;}
.x5e_c00145{left:1902.236250px;}
.x60_c00145{left:1917.234750px;}
.xf_c00145{left:1950.993600px;}
.x57_c00145{left:1956.251250px;}
.x6b_c00145{left:1959.999600px;}
.x43_c00145{left:1961.120250px;}
.x4d_c00145{left:1980.993600px;}
.x3b_c00145{left:2052.609600px;}
.x26_c00145{left:2064.617250px;}
.x61_c00145{left:2088.243600px;}
.x7d_c00145{left:2112.993600px;}
.x53_c00145{left:2142.651750px;}
.x27_c00145{left:2144.901750px;}
.x75_c00145{left:2154.299100px;}
.x76_c00145{left:2171.930100px;}
.x54_c00145{left:2195.909250px;}
.x10_c00145{left:2199.272100px;}
.x62_c00145{left:2209.041600px;}
.x7e_c00145{left:2228.904600px;}
@media print{
.va_c00145{vertical-align:-13.333333pt;}
.v0_c00145{vertical-align:0.000000pt;}
.v9_c00145{vertical-align:13.333333pt;}
.v1_c00145{vertical-align:18.789867pt;}
.v7_c00145{vertical-align:22.720000pt;}
.v8_c00145{vertical-align:25.354667pt;}
.v2_c00145{vertical-align:26.688000pt;}
.v3_c00145{vertical-align:28.026667pt;}
.v5_c00145{vertical-align:47.978667pt;}
.v6_c00145{vertical-align:53.349333pt;}
.v4_c00145{vertical-align:54.693333pt;}
.ls6b_c00145{letter-spacing:-1.066667pt;}
.ls61_c00145{letter-spacing:-0.504000pt;}
.ls3f_c00145{letter-spacing:-0.470400pt;}
.ls4c_c00145{letter-spacing:-0.469333pt;}
.ls54_c00145{letter-spacing:-0.460800pt;}
.ls39_c00145{letter-spacing:-0.458667pt;}
.ls55_c00145{letter-spacing:-0.448000pt;}
.ls3b_c00145{letter-spacing:-0.439467pt;}
.ls42_c00145{letter-spacing:-0.432000pt;}
.ls51_c00145{letter-spacing:-0.427200pt;}
.ls40_c00145{letter-spacing:-0.426667pt;}
.ls53_c00145{letter-spacing:-0.422400pt;}
.ls62_c00145{letter-spacing:-0.417600pt;}
.ls4f_c00145{letter-spacing:-0.408000pt;}
.ls5a_c00145{letter-spacing:-0.398400pt;}
.ls52_c00145{letter-spacing:-0.384000pt;}
.ls5f_c00145{letter-spacing:-0.374400pt;}
.ls44_c00145{letter-spacing:-0.364800pt;}
.ls69_c00145{letter-spacing:-0.350400pt;}
.ls4b_c00145{letter-spacing:-0.340800pt;}
.ls68_c00145{letter-spacing:-0.321600pt;}
.ls63_c00145{letter-spacing:-0.288000pt;}
.ls56_c00145{letter-spacing:-0.278400pt;}
.ls6a_c00145{letter-spacing:-0.260000pt;}
.ls60_c00145{letter-spacing:-0.216000pt;}
.ls3d_c00145{letter-spacing:-0.192000pt;}
.ls4a_c00145{letter-spacing:-0.091200pt;}
.ls45_c00145{letter-spacing:-0.062400pt;}
.ls4e_c00145{letter-spacing:-0.043200pt;}
.ls57_c00145{letter-spacing:-0.038400pt;}
.ls3c_c00145{letter-spacing:-0.033600pt;}
.ls50_c00145{letter-spacing:-0.028800pt;}
.ls49_c00145{letter-spacing:-0.024000pt;}
.ls5d_c00145{letter-spacing:-0.019200pt;}
.ls3e_c00145{letter-spacing:-0.014400pt;}
.ls5e_c00145{letter-spacing:-0.009600pt;}
.ls3a_c00145{letter-spacing:0.000000pt;}
.ls5c_c00145{letter-spacing:0.008533pt;}
.ls47_c00145{letter-spacing:0.009600pt;}
.ls11_c00145{letter-spacing:0.012800pt;}
.ls2e_c00145{letter-spacing:0.014400pt;}
.ls23_c00145{letter-spacing:0.019200pt;}
.ls8_c00145{letter-spacing:0.024000pt;}
.ls31_c00145{letter-spacing:0.028800pt;}
.ls18_c00145{letter-spacing:0.033600pt;}
.lsa_c00145{letter-spacing:0.038400pt;}
.lsb_c00145{letter-spacing:0.043200pt;}
.ls6_c00145{letter-spacing:0.048000pt;}
.ls9_c00145{letter-spacing:0.052800pt;}
.lsd_c00145{letter-spacing:0.057600pt;}
.ls1b_c00145{letter-spacing:0.062400pt;}
.lsf_c00145{letter-spacing:0.067200pt;}
.ls5_c00145{letter-spacing:0.072000pt;}
.ls25_c00145{letter-spacing:0.076800pt;}
.ls1a_c00145{letter-spacing:0.086400pt;}
.ls7_c00145{letter-spacing:0.091200pt;}
.ls64_c00145{letter-spacing:0.096000pt;}
.ls5b_c00145{letter-spacing:0.100800pt;}
.ls2b_c00145{letter-spacing:0.105600pt;}
.ls27_c00145{letter-spacing:0.110400pt;}
.ls32_c00145{letter-spacing:0.115200pt;}
.ls24_c00145{letter-spacing:0.120000pt;}
.ls33_c00145{letter-spacing:0.124800pt;}
.ls16_c00145{letter-spacing:0.129600pt;}
.ls14_c00145{letter-spacing:0.134400pt;}
.ls37_c00145{letter-spacing:0.139200pt;}
.ls21_c00145{letter-spacing:0.148800pt;}
.ls3_c00145{letter-spacing:0.153600pt;}
.ls2_c00145{letter-spacing:0.158400pt;}
.ls65_c00145{letter-spacing:0.201600pt;}
.ls1_c00145{letter-spacing:0.277333pt;}
.ls38_c00145{letter-spacing:0.293333pt;}
.ls66_c00145{letter-spacing:0.320000pt;}
.ls59_c00145{letter-spacing:0.384000pt;}
.ls4_c00145{letter-spacing:0.409600pt;}
.ls4d_c00145{letter-spacing:0.426667pt;}
.ls46_c00145{letter-spacing:0.451200pt;}
.ls48_c00145{letter-spacing:0.460800pt;}
.ls10_c00145{letter-spacing:0.469333pt;}
.ls43_c00145{letter-spacing:0.624000pt;}
.ls58_c00145{letter-spacing:0.638400pt;}
.ls67_c00145{letter-spacing:0.907200pt;}
.ls41_c00145{letter-spacing:1.488000pt;}
.ls29_c00145{letter-spacing:64.032000pt;}
.lsc_c00145{letter-spacing:210.672000pt;}
.ls13_c00145{letter-spacing:230.832000pt;}
.ls2d_c00145{letter-spacing:233.424000pt;}
.ls36_c00145{letter-spacing:361.440000pt;}
.ls20_c00145{letter-spacing:384.000000pt;}
.ls28_c00145{letter-spacing:390.672000pt;}
.ls2a_c00145{letter-spacing:506.640000pt;}
.ls12_c00145{letter-spacing:546.816000pt;}
.lse_c00145{letter-spacing:562.656000pt;}
.ls26_c00145{letter-spacing:669.456000pt;}
.ls1f_c00145{letter-spacing:794.784000pt;}
.ls35_c00145{letter-spacing:822.768000pt;}
.ls1c_c00145{letter-spacing:905.472000pt;}
.ls22_c00145{letter-spacing:1074.768000pt;}
.ls1e_c00145{letter-spacing:1144.176000pt;}
.ls2f_c00145{letter-spacing:1158.816000pt;}
.ls34_c00145{letter-spacing:1325.616000pt;}
.ls15_c00145{letter-spacing:1364.160000pt;}
.ls17_c00145{letter-spacing:1578.912000pt;}
.ls2c_c00145{letter-spacing:1589.616000pt;}
.ls1d_c00145{letter-spacing:2056.272000pt;}
.ls30_c00145{letter-spacing:2343.072000pt;}
.ls19_c00145{letter-spacing:2609.712000pt;}
.ls0_c00145{letter-spacing:3794.027200pt;}
.ws9_c00145{word-spacing:-12.153600pt;}
.ws7_c00145{word-spacing:-12.052800pt;}
.ws8_c00145{word-spacing:-12.048000pt;}
.ws6_c00145{word-spacing:-12.043200pt;}
.ws2_c00145{word-spacing:-12.009600pt;}
.ws1_c00145{word-spacing:-12.000000pt;}
.ws3_c00145{word-spacing:-11.985600pt;}
.ws0_c00145{word-spacing:-11.808000pt;}
.ws4_c00145{word-spacing:-10.666667pt;}
.ws5_c00145{word-spacing:-10.197333pt;}
.wsa_c00145{word-spacing:-8.666667pt;}
.ws38_c00145{word-spacing:-0.638400pt;}
.ws1e_c00145{word-spacing:-0.624000pt;}
.ws21_c00145{word-spacing:-0.451200pt;}
.ws10_c00145{word-spacing:-0.294400pt;}
.ws3b_c00145{word-spacing:-0.148800pt;}
.ws4d_c00145{word-spacing:-0.144000pt;}
.ws51_c00145{word-spacing:-0.139200pt;}
.ws26_c00145{word-spacing:-0.134400pt;}
.ws29_c00145{word-spacing:-0.129600pt;}
.ws4e_c00145{word-spacing:-0.124800pt;}
.ws40_c00145{word-spacing:-0.120000pt;}
.ws33_c00145{word-spacing:-0.115200pt;}
.ws19_c00145{word-spacing:-0.110400pt;}
.ws47_c00145{word-spacing:-0.105600pt;}
.ws3a_c00145{word-spacing:-0.100800pt;}
.ws4c_c00145{word-spacing:-0.096000pt;}
.ws15_c00145{word-spacing:-0.091200pt;}
.ws2c_c00145{word-spacing:-0.086400pt;}
.ws41_c00145{word-spacing:-0.076800pt;}
.ws11_c00145{word-spacing:-0.072000pt;}
.ws23_c00145{word-spacing:-0.067200pt;}
.ws34_c00145{word-spacing:-0.062400pt;}
.ws1d_c00145{word-spacing:-0.057600pt;}
.ws18_c00145{word-spacing:-0.052800pt;}
.ws13_c00145{word-spacing:-0.048000pt;}
.ws1b_c00145{word-spacing:-0.043200pt;}
.ws1a_c00145{word-spacing:-0.038400pt;}
.ws2b_c00145{word-spacing:-0.033600pt;}
.ws2e_c00145{word-spacing:-0.028800pt;}
.ws16_c00145{word-spacing:-0.024000pt;}
.ws3f_c00145{word-spacing:-0.019200pt;}
.ws4b_c00145{word-spacing:-0.014400pt;}
.ws22_c00145{word-spacing:-0.009600pt;}
.wsc_c00145{word-spacing:0.000000pt;}
.ws42_c00145{word-spacing:0.009600pt;}
.ws14_c00145{word-spacing:0.014400pt;}
.ws3e_c00145{word-spacing:0.019200pt;}
.ws24_c00145{word-spacing:0.024000pt;}
.ws2d_c00145{word-spacing:0.028800pt;}
.ws12_c00145{word-spacing:0.033600pt;}
.ws37_c00145{word-spacing:0.038400pt;}
.ws28_c00145{word-spacing:0.043200pt;}
.ws36_c00145{word-spacing:0.059733pt;}
.ws20_c00145{word-spacing:0.062400pt;}
.ws25_c00145{word-spacing:0.091200pt;}
.ws35_c00145{word-spacing:0.192000pt;}
.ws45_c00145{word-spacing:0.216000pt;}
.ws32_c00145{word-spacing:0.278400pt;}
.ws4a_c00145{word-spacing:0.288000pt;}
.ws50_c00145{word-spacing:0.321600pt;}
.ws27_c00145{word-spacing:0.340800pt;}
.ws52_c00145{word-spacing:0.350400pt;}
.ws1f_c00145{word-spacing:0.364800pt;}
.ws44_c00145{word-spacing:0.374400pt;}
.ws4f_c00145{word-spacing:0.384000pt;}
.ws39_c00145{word-spacing:0.398400pt;}
.ws2a_c00145{word-spacing:0.408000pt;}
.ws49_c00145{word-spacing:0.417600pt;}
.ws30_c00145{word-spacing:0.422400pt;}
.ws2f_c00145{word-spacing:0.427200pt;}
.ws1c_c00145{word-spacing:0.432000pt;}
.wsb_c00145{word-spacing:0.458667pt;}
.ws3d_c00145{word-spacing:0.460800pt;}
.ws17_c00145{word-spacing:0.470400pt;}
.ws46_c00145{word-spacing:0.504000pt;}
.ws31_c00145{word-spacing:0.576000pt;}
.ws54_c00145{word-spacing:0.925600pt;}
.ws53_c00145{word-spacing:0.928000pt;}
.ws55_c00145{word-spacing:1.152000pt;}
.ws3c_c00145{word-spacing:128.006400pt;}
.wsd_c00145{word-spacing:133.190400pt;}
.ws43_c00145{word-spacing:153.288000pt;}
.wse_c00145{word-spacing:161.174400pt;}
.wsf_c00145{word-spacing:166.617600pt;}
.ws48_c00145{word-spacing:171.955200pt;}
._19_c00145{margin-left:-37.488000pt;}
._12_c00145{margin-left:-27.888000pt;}
._5_c00145{margin-left:-25.344000pt;}
._11_c00145{margin-left:-21.312000pt;}
._18_c00145{margin-left:-18.720000pt;}
._16_c00145{margin-left:-17.246400pt;}
._8_c00145{margin-left:-5.328000pt;}
._a_c00145{margin-left:-3.856000pt;}
._2_c00145{margin-left:-1.322667pt;}
._0_c00145{width:1.120000pt;}
._1_c00145{width:2.026667pt;}
._39_c00145{width:3.024000pt;}
._6_c00145{width:3.936000pt;}
._e_c00145{width:6.672000pt;}
._b_c00145{width:10.656000pt;}
._15_c00145{width:13.344000pt;}
._7_c00145{width:26.810667pt;}
._9_c00145{width:28.352000pt;}
._14_c00145{width:30.672000pt;}
._c_c00145{width:50.640000pt;}
._f_c00145{width:54.720000pt;}
._d_c00145{width:90.672000pt;}
._13_c00145{width:101.328000pt;}
._4_c00145{width:123.984000pt;}
._3_c00145{width:148.128000pt;}
._17_c00145{width:190.531200pt;}
._25_c00145{width:192.970667pt;}
._10_c00145{width:207.955200pt;}
._35_c00145{width:213.181867pt;}
._26_c00145{width:215.847467pt;}
._22_c00145{width:220.970667pt;}
._21_c00145{width:237.349867pt;}
._2a_c00145{width:274.214933pt;}
._2e_c00145{width:361.606400pt;}
._34_c00145{width:382.075733pt;}
._1f_c00145{width:388.522667pt;}
._20_c00145{width:433.095467pt;}
._1e_c00145{width:488.512000pt;}
._29_c00145{width:516.948800pt;}
._36_c00145{width:523.344533pt;}
._1b_c00145{width:549.013333pt;}
._1a_c00145{width:565.276800pt;}
._37_c00145{width:639.789867pt;}
._38_c00145{width:797.373333pt;}
._2c_c00145{width:815.514133pt;}
._30_c00145{width:831.541867pt;}
._24_c00145{width:936.238400pt;}
._28_c00145{width:969.554667pt;}
._33_c00145{width:1035.963733pt;}
._2b_c00145{width:1159.296000pt;}
._27_c00145{width:1189.411200pt;}
._32_c00145{width:1437.355733pt;}
._23_c00145{width:1538.388267pt;}
._31_c00145{width:1727.744533pt;}
._2d_c00145{width:1917.076267pt;}
._2f_c00145{width:2266.852267pt;}
._1d_c00145{width:3395.873067pt;}
._1c_c00145{width:3475.084800pt;}
.fs4_c00145{font-size:34.666667pt;}
.fs2_c00145{font-size:42.666667pt;}
.fs3_c00145{font-size:48.000000pt;}
.fs0_c00145{font-size:53.333333pt;}
.fs1_c00145{font-size:64.000000pt;}
.y0_c00145{bottom:0.000000pt;}
.y3_c00145{bottom:51.669200pt;}
.y9f_c00145{bottom:74.700000pt;}
.y9e_c00145{bottom:88.366667pt;}
.y9d_c00145{bottom:134.373333pt;}
.y9c_c00145{bottom:149.042667pt;}
.y9b_c00145{bottom:162.362667pt;}
.y9a_c00145{bottom:182.066667pt;}
.y99_c00145{bottom:195.734667pt;}
.y98_c00145{bottom:209.066667pt;}
.y97_c00145{bottom:222.734667pt;}
.y96_c00145{bottom:236.066667pt;}
.y95_c00145{bottom:250.400000pt;}
.y92_c00145{bottom:257.061333pt;}
.y91_c00145{bottom:257.065333pt;}
.y8f_c00145{bottom:258.066667pt;}
.y94_c00145{bottom:263.733333pt;}
.y8e_c00145{bottom:270.066667pt;}
.y90_c00145{bottom:270.733333pt;}
.y93_c00145{bottom:277.401333pt;}
.y89_c00145{bottom:291.440000pt;}
.y8c_c00145{bottom:298.434667pt;}
.y8b_c00145{bottom:298.436000pt;}
.y86_c00145{bottom:299.440000pt;}
.y88_c00145{bottom:305.108000pt;}
.y85_c00145{bottom:311.440000pt;}
.y8d_c00145{bottom:311.778667pt;}
.y8a_c00145{bottom:311.780000pt;}
.y87_c00145{bottom:318.440000pt;}
.y83_c00145{bottom:332.768000pt;}
.y82_c00145{bottom:333.760000pt;}
.y81_c00145{bottom:345.760000pt;}
.y84_c00145{bottom:346.088000pt;}
.y7f_c00145{bottom:360.441333pt;}
.y80_c00145{bottom:367.101333pt;}
.y7c_c00145{bottom:367.105333pt;}
.y7a_c00145{bottom:368.106667pt;}
.y7e_c00145{bottom:373.773333pt;}
.y79_c00145{bottom:380.106667pt;}
.y7b_c00145{bottom:380.773333pt;}
.y7d_c00145{bottom:387.441333pt;}
.y77_c00145{bottom:401.465333pt;}
.y74_c00145{bottom:401.466667pt;}
.y78_c00145{bottom:408.473333pt;}
.y71_c00145{bottom:409.466667pt;}
.y75_c00145{bottom:415.133333pt;}
.y73_c00145{bottom:415.134667pt;}
.y70_c00145{bottom:421.466667pt;}
.y76_c00145{bottom:428.465333pt;}
.y72_c00145{bottom:428.466667pt;}
.y6f_c00145{bottom:442.794667pt;}
.y6e_c00145{bottom:442.801333pt;}
.y6c_c00145{bottom:443.800000pt;}
.y6b_c00145{bottom:455.800000pt;}
.y6d_c00145{bottom:456.133333pt;}
.y68_c00145{bottom:470.468000pt;}
.y69_c00145{bottom:470.473333pt;}
.y66_c00145{bottom:471.466667pt;}
.y65_c00145{bottom:483.466667pt;}
.y67_c00145{bottom:483.800000pt;}
.y6a_c00145{bottom:483.805333pt;}
.y64_c00145{bottom:498.142667pt;}
.y60_c00145{bottom:504.838667pt;}
.y5d_c00145{bottom:511.505333pt;}
.y63_c00145{bottom:511.510667pt;}
.y5b_c00145{bottom:512.506667pt;}
.y5f_c00145{bottom:518.506667pt;}
.y5a_c00145{bottom:524.506667pt;}
.y5c_c00145{bottom:525.173333pt;}
.y62_c00145{bottom:525.178667pt;}
.y5e_c00145{bottom:531.838667pt;}
.y61_c00145{bottom:538.510667pt;}
.y53_c00145{bottom:552.173333pt;}
.y59_c00145{bottom:556.505333pt;}
.y55_c00145{bottom:563.172000pt;}
.y56_c00145{bottom:563.177333pt;}
.y52_c00145{bottom:564.173333pt;}
.y58_c00145{bottom:570.173333pt;}
.y51_c00145{bottom:576.173333pt;}
.y54_c00145{bottom:576.840000pt;}
.y57_c00145{bottom:583.505333pt;}
.y50_c00145{bottom:588.173333pt;}
.y4e_c00145{bottom:600.845333pt;}
.y4f_c00145{bottom:605.844000pt;}
.y4d_c00145{bottom:612.845333pt;}
.y4c_c00145{bottom:624.866667pt;}
.y49_c00145{bottom:638.200000pt;}
.y46_c00145{bottom:639.866667pt;}
.y4b_c00145{bottom:644.861333pt;}
.y48_c00145{bottom:651.532000pt;}
.y4a_c00145{bottom:651.533333pt;}
.y45_c00145{bottom:651.866667pt;}
.y44_c00145{bottom:663.866667pt;}
.y47_c00145{bottom:665.200000pt;}
.y3e_c00145{bottom:679.200000pt;}
.y40_c00145{bottom:686.196000pt;}
.y42_c00145{bottom:686.200000pt;}
.y3b_c00145{bottom:687.200000pt;}
.y3d_c00145{bottom:692.868000pt;}
.y3a_c00145{bottom:699.200000pt;}
.y3f_c00145{bottom:699.528000pt;}
.y43_c00145{bottom:699.532000pt;}
.y41_c00145{bottom:699.533333pt;}
.y3c_c00145{bottom:706.200000pt;}
.y38_c00145{bottom:720.542667pt;}
.y35_c00145{bottom:727.202667pt;}
.y39_c00145{bottom:733.893333pt;}
.y37_c00145{bottom:733.898667pt;}
.y34_c00145{bottom:734.240000pt;}
.y36_c00145{bottom:747.566667pt;}
.y31_c00145{bottom:761.558667pt;}
.y2e_c00145{bottom:761.560000pt;}
.y32_c00145{bottom:768.566667pt;}
.y2b_c00145{bottom:769.560000pt;}
.y2f_c00145{bottom:775.226667pt;}
.y2d_c00145{bottom:775.228000pt;}
.y2a_c00145{bottom:781.560000pt;}
.y33_c00145{bottom:781.898667pt;}
.y30_c00145{bottom:788.558667pt;}
.y2c_c00145{bottom:788.560000pt;}
.y28_c00145{bottom:809.225333pt;}
.y29_c00145{bottom:809.230667pt;}
.y27_c00145{bottom:816.226667pt;}
.y24_c00145{bottom:843.224000pt;}
.y26_c00145{bottom:854.273333pt;}
.y23_c00145{bottom:855.266667pt;}
.y25_c00145{bottom:860.933333pt;}
.y22_c00145{bottom:867.266667pt;}
.y21_c00145{bottom:879.266667pt;}
.y1f_c00145{bottom:892.260000pt;}
.y1a_c00145{bottom:893.933333pt;}
.y20_c00145{bottom:898.926667pt;}
.y1c_c00145{bottom:898.932000pt;}
.y1e_c00145{bottom:905.928000pt;}
.y19_c00145{bottom:905.933333pt;}
.y1b_c00145{bottom:912.600000pt;}
.y18_c00145{bottom:917.933333pt;}
.y1d_c00145{bottom:919.260000pt;}
.y15_c00145{bottom:933.608000pt;}
.y10_c00145{bottom:935.271867pt;}
.y12_c00145{bottom:940.268000pt;}
.y17_c00145{bottom:940.273333pt;}
.y16_c00145{bottom:946.933333pt;}
.y14_c00145{bottom:946.940000pt;}
.yf_c00145{bottom:947.271867pt;}
.y11_c00145{bottom:953.600000pt;}
.ye_c00145{bottom:959.293200pt;}
.y13_c00145{bottom:960.632000pt;}
.yb_c00145{bottom:974.626667pt;}
.y8_c00145{bottom:976.293200pt;}
.yd_c00145{bottom:981.286667pt;}
.y7_c00145{bottom:988.293200pt;}
.ya_c00145{bottom:988.294667pt;}
.yc_c00145{bottom:994.954667pt;}
.y6_c00145{bottom:1000.293200pt;}
.y9_c00145{bottom:1001.626667pt;}
.y5_c00145{bottom:1015.956000pt;}
.y4_c00145{bottom:1029.960000pt;}
.y2_c00145{bottom:1044.293200pt;}
.y1_c00145{bottom:1064.626667pt;}
.h12_c00145{height:28.437500pt;}
.h4_c00145{height:33.408000pt;}
.h8_c00145{height:33.456000pt;}
.h5_c00145{height:35.840000pt;}
.h1_c00145{height:37.120000pt;}
.h1c_c00145{height:37.461333pt;}
.h1d_c00145{height:38.400000pt;}
.h6_c00145{height:40.320000pt;}
.h2_c00145{height:43.264000pt;}
.h3_c00145{height:49.509867pt;}
.h16_c00145{height:60.048000pt;}
.h17_c00145{height:60.080000pt;}
.ha_c00145{height:60.096000pt;}
.h11_c00145{height:61.392000pt;}
.h13_c00145{height:61.413333pt;}
.h19_c00145{height:62.474667pt;}
.hb_c00145{height:66.986667pt;}
.h7_c00145{height:67.008000pt;}
.he_c00145{height:68.304000pt;}
.h9_c00145{height:68.346667pt;}
.h18_c00145{height:89.632000pt;}
.h15_c00145{height:93.621333pt;}
.h14_c00145{height:93.669333pt;}
.h1a_c00145{height:93.690667pt;}
.h1b_c00145{height:94.976000pt;}
.hd_c00145{height:94.992000pt;}
.hc_c00145{height:95.013333pt;}
.h10_c00145{height:95.088000pt;}
.hf_c00145{height:115.082667pt;}
.h0_c00145{height:1122.666667pt;}
.w0_c00145{width:2268.000000pt;}
.x0_c00145{left:0.000000pt;}
.x3_c00145{left:119.279200pt;}
.x2_c00145{left:172.283200pt;}
.x6d_c00145{left:194.312533pt;}
.x34_c00145{left:195.654000pt;}
.x33_c00145{left:199.650000pt;}
.x28_c00145{left:200.656533pt;}
.x6c_c00145{left:202.316533pt;}
.x2e_c00145{left:208.642000pt;}
.x2d_c00145{left:209.650000pt;}
.x35_c00145{left:216.318000pt;}
.x1a_c00145{left:220.644533pt;}
.x18_c00145{left:222.976533pt;}
.x3d_c00145{left:223.981867pt;}
.x3c_c00145{left:229.309867pt;}
.x6e_c00145{left:234.308533pt;}
.x4_c00145{left:236.976533pt;}
.x5_c00145{left:239.304533pt;}
.x58_c00145{left:247.311200pt;}
.x1f_c00145{left:263.659200pt;}
.x1d_c00145{left:266.323200pt;}
.x1e_c00145{left:274.975200pt;}
.x36_c00145{left:342.643200pt;}
.x6f_c00145{left:351.308533pt;}
.x71_c00145{left:370.652533pt;}
.x78_c00145{left:372.636667pt;}
.x70_c00145{left:388.304533pt;}
.x59_c00145{left:390.350000pt;}
.x77_c00145{left:398.016667pt;}
.x5a_c00145{left:415.682000pt;}
.x29_c00145{left:420.352533pt;}
.x2b_c00145{left:442.024533pt;}
.x2a_c00145{left:462.688533pt;}
.x20_c00145{left:494.348533pt;}
.x12_c00145{left:517.023333pt;}
.x5b_c00145{left:522.350000pt;}
.x7f_c00145{left:529.019200pt;}
.x64_c00145{left:531.684667pt;}
.x11_c00145{left:559.683333pt;}
.x21_c00145{left:563.012533pt;}
.x37_c00145{left:570.007200pt;}
.x23_c00145{left:571.006000pt;}
.x63_c00145{left:578.016667pt;}
.x39_c00145{left:589.688533pt;}
.x2f_c00145{left:593.014000pt;}
.x22_c00145{left:594.010000pt;}
.x4f_c00145{left:606.726000pt;}
.x44_c00145{left:613.710000pt;}
.x45_c00145{left:627.390000pt;}
.x72_c00145{left:629.048533pt;}
.x2c_c00145{left:633.723333pt;}
.x73_c00145{left:665.720533pt;}
.x4e_c00145{left:667.710000pt;}
.x6_c00145{left:670.704533pt;}
.x3e_c00145{left:672.391333pt;}
.x5c_c00145{left:686.390000pt;}
.x7_c00145{left:707.732667pt;}
.x1b_c00145{left:716.399333pt;}
.x56_c00145{left:746.723333pt;}
.x24_c00145{left:790.723333pt;}
.x55_c00145{left:794.723333pt;}
.xb_c00145{left:796.058000pt;}
.xa_c00145{left:815.390000pt;}
.x6a_c00145{left:869.077867pt;}
.x82_c00145{left:940.416533pt;}
.x80_c00145{left:947.387200pt;}
.x79_c00145{left:976.079333pt;}
.x30_c00145{left:1064.123333pt;}
.x1c_c00145{left:1065.128533pt;}
.x13_c00145{left:1068.459333pt;}
.x15_c00145{left:1090.803333pt;}
.x5d_c00145{left:1098.134000pt;}
.x19_c00145{left:1103.116533pt;}
.x66_c00145{left:1115.121867pt;}
.x14_c00145{left:1120.467333pt;}
.x65_c00145{left:1131.129867pt;}
.x25_c00145{left:1147.447333pt;}
.x67_c00145{left:1198.449867pt;}
.x31_c00145{left:1242.815333pt;}
.x32_c00145{left:1270.139333pt;}
.x74_c00145{left:1276.160533pt;}
.x40_c00145{left:1284.818000pt;}
.x3a_c00145{left:1289.473867pt;}
.x3f_c00145{left:1307.486000pt;}
.x41_c00145{left:1316.150000pt;}
.x51_c00145{left:1351.818000pt;}
.x68_c00145{left:1357.483333pt;}
.x50_c00145{left:1362.822000pt;}
.x46_c00145{left:1376.818000pt;}
.x81_c00145{left:1378.799200pt;}
.x48_c00145{left:1388.818000pt;}
.x16_c00145{left:1391.151333pt;}
.x47_c00145{left:1409.482000pt;}
.x17_c00145{left:1431.482133pt;}
.x7c_c00145{left:1513.851467pt;}
.x42_c00145{left:1519.190000pt;}
.x7a_c00145{left:1524.839333pt;}
.x7b_c00145{left:1528.847333pt;}
.x1_c00145{left:1543.856667pt;}
.xe_c00145{left:1575.194000pt;}
.x38_c00145{left:1576.524667pt;}
.x8_c00145{left:1591.196667pt;}
.xd_c00145{left:1592.858000pt;}
.xc_c00145{left:1596.842000pt;}
.x9_c00145{left:1607.528667pt;}
.x69_c00145{left:1622.179333pt;}
.x49_c00145{left:1626.862000pt;}
.x4b_c00145{left:1628.182000pt;}
.x4a_c00145{left:1647.190000pt;}
.x52_c00145{left:1652.843333pt;}
.x4c_c00145{left:1657.198000pt;}
.x5f_c00145{left:1689.208667pt;}
.x5e_c00145{left:1690.876667pt;}
.x60_c00145{left:1704.208667pt;}
.xf_c00145{left:1734.216533pt;}
.x57_c00145{left:1738.890000pt;}
.x6b_c00145{left:1742.221867pt;}
.x43_c00145{left:1743.218000pt;}
.x4d_c00145{left:1760.883200pt;}
.x3b_c00145{left:1824.541867pt;}
.x26_c00145{left:1835.215333pt;}
.x61_c00145{left:1856.216533pt;}
.x7d_c00145{left:1878.216533pt;}
.x53_c00145{left:1904.579333pt;}
.x27_c00145{left:1906.579333pt;}
.x75_c00145{left:1914.932533pt;}
.x76_c00145{left:1930.604533pt;}
.x54_c00145{left:1951.919333pt;}
.x10_c00145{left:1954.908533pt;}
.x62_c00145{left:1963.592533pt;}
.x7e_c00145{left:1981.248533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_859300c011e99521974ddd02.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00146;src:url('chunks/assets/font_f54c9e9a201decd3681cce82.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:0.676000;font-style:normal;font-weight:normal;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_860078c5e1790abfd16d8b14.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.090000;font-style:normal;font-weight:normal;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_0cca72844a803ff0550fc032.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:0.919000;font-style: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);}
.v3_c00146{vertical-align:-1.500000px;}
.v0_c00146{vertical-align:0.000000px;}
.v9_c00146{vertical-align:3.000000px;}
.va_c00146{vertical-align:4.500000px;}
.vc_c00146{vertical-align:15.000000px;}
.v7_c00146{vertical-align:25.500000px;}
.v1_c00146{vertical-align:28.500000px;}
.v6_c00146{vertical-align:30.000000px;}
.v4_c00146{vertical-align:31.500000px;}
.v5_c00146{vertical-align:34.500000px;}
.vb_c00146{vertical-align:42.000000px;}
.v2_c00146{vertical-align:59.994000px;}
.v8_c00146{vertical-align:61.560000px;}
.ls6d_c00146{letter-spacing:-1.200000px;}
.ls55_c00146{letter-spacing:-0.707400px;}
.ls5f_c00146{letter-spacing:-0.651000px;}
.ls67_c00146{letter-spacing:-0.604800px;}
.ls6a_c00146{letter-spacing:-0.600000px;}
.ls4a_c00146{letter-spacing:-0.594000px;}
.ls4d_c00146{letter-spacing:-0.567000px;}
.ls59_c00146{letter-spacing:-0.556200px;}
.ls41_c00146{letter-spacing:-0.529200px;}
.ls64_c00146{letter-spacing:-0.513600px;}
.ls4f_c00146{letter-spacing:-0.513000px;}
.ls3f_c00146{letter-spacing:-0.502200px;}
.ls45_c00146{letter-spacing:-0.486000px;}
.ls43_c00146{letter-spacing:-0.480600px;}
.ls5b_c00146{letter-spacing:-0.469800px;}
.ls3d_c00146{letter-spacing:-0.450000px;}
.ls48_c00146{letter-spacing:-0.437400px;}
.ls57_c00146{letter-spacing:-0.432000px;}
.ls66_c00146{letter-spacing:-0.378000px;}
.ls53_c00146{letter-spacing:-0.324000px;}
.ls58_c00146{letter-spacing:-0.313200px;}
.ls68_c00146{letter-spacing:-0.292500px;}
.ls61_c00146{letter-spacing:-0.256200px;}
.ls46_c00146{letter-spacing:-0.243000px;}
.ls5d_c00146{letter-spacing:-0.184800px;}
.ls6c_c00146{letter-spacing:-0.180000px;}
.ls5e_c00146{letter-spacing:-0.163800px;}
.ls62_c00146{letter-spacing:-0.138600px;}
.ls51_c00146{letter-spacing:-0.113400px;}
.ls56_c00146{letter-spacing:-0.086400px;}
.ls4b_c00146{letter-spacing:-0.070200px;}
.ls60_c00146{letter-spacing:-0.058800px;}
.ls44_c00146{letter-spacing:-0.016200px;}
.ls52_c00146{letter-spacing:-0.005400px;}
.ls65_c00146{letter-spacing:-0.004800px;}
.ls3e_c00146{letter-spacing:0.000000px;}
.ls69_c00146{letter-spacing:0.006000px;}
.ls2d_c00146{letter-spacing:0.010800px;}
.ls7_c00146{letter-spacing:0.021600px;}
.ls1a_c00146{letter-spacing:0.027000px;}
.ls30_c00146{letter-spacing:0.037800px;}
.lsc_c00146{letter-spacing:0.043200px;}
.ls3b_c00146{letter-spacing:0.048000px;}
.ls25_c00146{letter-spacing:0.048600px;}
.ls20_c00146{letter-spacing:0.054000px;}
.ls5_c00146{letter-spacing:0.059400px;}
.ls2e_c00146{letter-spacing:0.064800px;}
.ls1d_c00146{letter-spacing:0.070200px;}
.ls8_c00146{letter-spacing:0.075600px;}
.ls10_c00146{letter-spacing:0.086400px;}
.ls27_c00146{letter-spacing:0.091800px;}
.ls40_c00146{letter-spacing:0.097200px;}
.ls2_c00146{letter-spacing:0.102600px;}
.ls6_c00146{letter-spacing:0.108000px;}
.ls42_c00146{letter-spacing:0.113400px;}
.lsf_c00146{letter-spacing:0.118800px;}
.ls1e_c00146{letter-spacing:0.124200px;}
.ls19_c00146{letter-spacing:0.129600px;}
.ls14_c00146{letter-spacing:0.135000px;}
.ls16_c00146{letter-spacing:0.140400px;}
.ls4_c00146{letter-spacing:0.156600px;}
.ls1_c00146{letter-spacing:0.162000px;}
.ls3_c00146{letter-spacing:0.172800px;}
.lsb_c00146{letter-spacing:0.189000px;}
.ls54_c00146{letter-spacing:0.205200px;}
.ls5a_c00146{letter-spacing:0.216000px;}
.ls3c_c00146{letter-spacing:0.234000px;}
.ls6b_c00146{letter-spacing:0.240000px;}
.ls3a_c00146{letter-spacing:0.258000px;}
.ls39_c00146{letter-spacing:0.264000px;}
.ls21_c00146{letter-spacing:0.270000px;}
.ls0_c00146{letter-spacing:0.360000px;}
.ls63_c00146{letter-spacing:0.436800px;}
.ls5c_c00146{letter-spacing:0.441000px;}
.ls38_c00146{letter-spacing:0.462000px;}
.ls4c_c00146{letter-spacing:0.540000px;}
.ls50_c00146{letter-spacing:0.648000px;}
.ls28_c00146{letter-spacing:0.702000px;}
.ls49_c00146{letter-spacing:0.705600px;}
.ls4e_c00146{letter-spacing:0.734400px;}
.ls47_c00146{letter-spacing:1.674000px;}
.ls24_c00146{letter-spacing:115.560600px;}
.ls31_c00146{letter-spacing:121.500000px;}
.ls34_c00146{letter-spacing:240.000000px;}
.ls29_c00146{letter-spacing:267.000000px;}
.ls18_c00146{letter-spacing:375.120000px;}
.ls1b_c00146{letter-spacing:444.000000px;}
.ls36_c00146{letter-spacing:574.619400px;}
.ls37_c00146{letter-spacing:597.060600px;}
.ls2f_c00146{letter-spacing:601.680000px;}
.lsa_c00146{letter-spacing:726.180600px;}
.ls15_c00146{letter-spacing:754.469400px;}
.ls35_c00146{letter-spacing:808.680600px;}
.ls32_c00146{letter-spacing:859.619400px;}
.lse_c00146{letter-spacing:883.619400px;}
.ls33_c00146{letter-spacing:936.119400px;}
.lsd_c00146{letter-spacing:951.180600px;}
.ls1f_c00146{letter-spacing:975.180600px;}
.ls17_c00146{letter-spacing:999.180000px;}
.ls2b_c00146{letter-spacing:1038.180600px;}
.ls2a_c00146{letter-spacing:1179.180600px;}
.ls26_c00146{letter-spacing:1267.799400px;}
.ls9_c00146{letter-spacing:1410.119400px;}
.ls13_c00146{letter-spacing:1459.680000px;}
.ls2c_c00146{letter-spacing:1488.239400px;}
.ls1c_c00146{letter-spacing:1801.800000px;}
.ls12_c00146{letter-spacing:1977.420000px;}
.ls23_c00146{letter-spacing:2256.420000px;}
.ls22_c00146{letter-spacing:2290.860600px;}
.ls11_c00146{letter-spacing:2392.800600px;}
.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;}
}
.ws3_c00146{word-spacing:-14.040000px;}
.ws0_c00146{word-spacing:-13.672800px;}
.ws1_c00146{word-spacing:-13.608000px;}
.ws4_c00146{word-spacing:-13.500000px;}
.ws2_c00146{word-spacing:-13.483800px;}
.ws5_c00146{word-spacing:-12.970800px;}
.ws6_c00146{word-spacing:-9.750000px;}
.ws2b_c00146{word-spacing:-0.648000px;}
.ws3e_c00146{word-spacing:-0.462000px;}
.ws3d_c00146{word-spacing:-0.441000px;}
.ws45_c00146{word-spacing:-0.436800px;}
.ws27_c00146{word-spacing:-0.270000px;}
.ws4a_c00146{word-spacing:-0.258000px;}
.ws4c_c00146{word-spacing:-0.240000px;}
.ws4e_c00146{word-spacing:-0.234000px;}
.ws3b_c00146{word-spacing:-0.216000px;}
.ws31_c00146{word-spacing:-0.205200px;}
.ws15_c00146{word-spacing:-0.189000px;}
.wsc_c00146{word-spacing:-0.162000px;}
.wsf_c00146{word-spacing:-0.156600px;}
.ws1e_c00146{word-spacing:-0.140400px;}
.ws1d_c00146{word-spacing:-0.135000px;}
.ws20_c00146{word-spacing:-0.129600px;}
.ws25_c00146{word-spacing:-0.124200px;}
.ws17_c00146{word-spacing:-0.118800px;}
.ws37_c00146{word-spacing:-0.108000px;}
.wsd_c00146{word-spacing:-0.102600px;}
.ws12_c00146{word-spacing:-0.097200px;}
.ws2c_c00146{word-spacing:-0.091800px;}
.ws18_c00146{word-spacing:-0.086400px;}
.ws14_c00146{word-spacing:-0.075600px;}
.ws23_c00146{word-spacing:-0.070200px;}
.ws1a_c00146{word-spacing:-0.064800px;}
.ws10_c00146{word-spacing:-0.059400px;}
.ws26_c00146{word-spacing:-0.054000px;}
.ws2a_c00146{word-spacing:-0.048600px;}
.ws4d_c00146{word-spacing:-0.048000px;}
.ws16_c00146{word-spacing:-0.043200px;}
.ws33_c00146{word-spacing:-0.037800px;}
.ws1f_c00146{word-spacing:-0.032400px;}
.ws21_c00146{word-spacing:-0.027000px;}
.ws11_c00146{word-spacing:-0.021600px;}
.ws2f_c00146{word-spacing:-0.010800px;}
.ws4b_c00146{word-spacing:-0.006000px;}
.ws47_c00146{word-spacing:-0.004800px;}
.ws8_c00146{word-spacing:0.000000px;}
.ws2e_c00146{word-spacing:0.005400px;}
.ws42_c00146{word-spacing:0.063000px;}
.ws35_c00146{word-spacing:0.086400px;}
.ws2d_c00146{word-spacing:0.113400px;}
.ws44_c00146{word-spacing:0.138600px;}
.ws40_c00146{word-spacing:0.163800px;}
.ws50_c00146{word-spacing:0.180000px;}
.ws3f_c00146{word-spacing:0.189000px;}
.ws1b_c00146{word-spacing:0.243000px;}
.ws43_c00146{word-spacing:0.260400px;}
.ws39_c00146{word-spacing:0.313200px;}
.ws30_c00146{word-spacing:0.324000px;}
.ws48_c00146{word-spacing:0.378000px;}
.ws36_c00146{word-spacing:0.432000px;}
.ws22_c00146{word-spacing:0.437400px;}
.ws7_c00146{word-spacing:0.450000px;}
.ws3c_c00146{word-spacing:0.469800px;}
.ws38_c00146{word-spacing:0.480600px;}
.ws19_c00146{word-spacing:0.486000px;}
.ws1c_c00146{word-spacing:0.491400px;}
.ws34_c00146{word-spacing:0.502200px;}
.ws29_c00146{word-spacing:0.513000px;}
.ws46_c00146{word-spacing:0.513600px;}
.wse_c00146{word-spacing:0.518400px;}
.ws13_c00146{word-spacing:0.529200px;}
.ws3a_c00146{word-spacing:0.556200px;}
.ws28_c00146{word-spacing:0.567000px;}
.ws24_c00146{word-spacing:0.594000px;}
.ws49_c00146{word-spacing:0.604800px;}
.ws4f_c00146{word-spacing:0.606000px;}
.ws41_c00146{word-spacing:0.651000px;}
.ws51_c00146{word-spacing:1.296000px;}
.ws32_c00146{word-spacing:2.208600px;}
.ws9_c00146{word-spacing:100.140000px;}
.wsb_c00146{word-spacing:100.230000px;}
.wsa_c00146{word-spacing:101.640000px;}
._b_c00146{margin-left:-2.682000px;}
._2_c00146{margin-left:-1.500000px;}
._0_c00146{width:1.800000px;}
._c_c00146{width:3.152400px;}
._8_c00146{width:4.620000px;}
._7_c00146{width:7.380000px;}
._4_c00146{width:8.700000px;}
._6_c00146{width:10.320000px;}
._5_c00146{width:12.660000px;}
._3_c00146{width:35.940000px;}
._d_c00146{width:259.242600px;}
._9_c00146{width:527.290800px;}
._a_c00146{width:855.679200px;}
._1_c00146{width:4254.768000px;}
.fc1_c00146{color:rgb(255,255,255);}
.fc0_c00146{color:rgb(0,0,0);}
.fs4_c00146{font-size:36.000000px;}
.fs7_c00146{font-size:39.000000px;}
.fs5_c00146{font-size:42.000000px;}
.fs6_c00146{font-size:48.000000px;}
.fs3_c00146{font-size:54.000000px;}
.fs0_c00146{font-size:60.000000px;}
.fs1_c00146{font-size:72.000000px;}
.fs2_c00146{font-size:84.000000px;}
.y0_c00146{bottom:0.000000px;}
.y44_c00146{bottom:3.000000px;}
.y24_c00146{bottom:3.750000px;}
.y19_c00146{bottom:3.751500px;}
.y7_c00146{bottom:4.125000px;}
.y43_c00146{bottom:14.623500px;}
.y22_c00146{bottom:18.735000px;}
.y18_c00146{bottom:18.750000px;}
.y42_c00146{bottom:26.625000px;}
.y13_c00146{bottom:26.654850px;}
.y2_c00146{bottom:58.125000px;}
.y51_c00146{bottom:84.037500px;}
.y50_c00146{bottom:99.408000px;}
.y4f_c00146{bottom:438.870000px;}
.y4e_c00146{bottom:458.400000px;}
.y4d_c00146{bottom:475.275000px;}
.y4c_c00146{bottom:492.150000px;}
.y4b_c00146{bottom:509.025000px;}
.y4a_c00146{bottom:526.650000px;}
.y49_c00146{bottom:546.150000px;}
.y48_c00146{bottom:563.775000px;}
.y47_c00146{bottom:590.820000px;}
.y41_c00146{bottom:610.695000px;}
.y40_c00146{bottom:613.695000px;}
.y3d_c00146{bottom:617.071500px;}
.y46_c00146{bottom:618.195000px;}
.y3f_c00146{bottom:625.318500px;}
.y45_c00146{bottom:631.695000px;}
.y3c_c00146{bottom:632.070000px;}
.y3e_c00146{bottom:637.320000px;}
.y3b_c00146{bottom:650.448000px;}
.y3a_c00146{bottom:665.824500px;}
.y36_c00146{bottom:680.823000px;}
.y33_c00146{bottom:688.699500px;}
.y37_c00146{bottom:695.850000px;}
.y35_c00146{bottom:696.226500px;}
.y32_c00146{bottom:703.725000px;}
.y34_c00146{bottom:711.225000px;}
.y39_c00146{bottom:726.601500px;}
.y38_c00146{bottom:741.600000px;}
.y31_c00146{bottom:757.726500px;}
.y30_c00146{bottom:764.100000px;}
.y2f_c00146{bottom:788.850000px;}
.y2c_c00146{bottom:796.348500px;}
.y2e_c00146{bottom:803.848500px;}
.y2b_c00146{bottom:811.725000px;}
.y2d_c00146{bottom:819.225000px;}
.y29_c00146{bottom:835.005000px;}
.y28_c00146{bottom:850.395000px;}
.y2a_c00146{bottom:857.880000px;}
.y27_c00146{bottom:865.380000px;}
.y26_c00146{bottom:880.756500px;}
.y25_c00146{bottom:895.755000px;}
.y23_c00146{bottom:908.130000px;}
.y21_c00146{bottom:908.145000px;}
.y1f_c00146{bottom:911.881500px;}
.y1e_c00146{bottom:918.255000px;}
.y20_c00146{bottom:926.880000px;}
.y1d_c00146{bottom:943.011000px;}
.y1c_c00146{bottom:950.175000px;}
.y1b_c00146{bottom:974.176500px;}
.y1a_c00146{bottom:989.175000px;}
.y17_c00146{bottom:1001.550000px;}
.y16_c00146{bottom:1012.800000px;}
.y15_c00146{bottom:1036.426500px;}
.y14_c00146{bottom:1051.425000px;}
.y12_c00146{bottom:1063.800000px;}
.yb_c00146{bottom:1067.554350px;}
.yf_c00146{bottom:1075.053000px;}
.y11_c00146{bottom:1082.578500px;}
.ya_c00146{bottom:1082.579850px;}
.yc_c00146{bottom:1090.080000px;}
.ye_c00146{bottom:1090.456500px;}
.y10_c00146{bottom:1097.955000px;}
.y9_c00146{bottom:1097.956350px;}
.yd_c00146{bottom:1105.455000px;}
.y8_c00146{bottom:1112.954850px;}
.y6_c00146{bottom:1125.330000px;}
.y5_c00146{bottom:1129.455000px;}
.y4_c00146{bottom:1148.580000px;}
.y3_c00146{bottom:1171.461000px;}
.y1_c00146{bottom:1197.705000px;}
.h5_c00146{height:16.875000px;}
.h1c_c00146{height:29.232000px;}
.he_c00146{height:30.375000px;}
.h20_c00146{height:33.408000px;}
.h1b_c00146{height:35.280000px;}
.h1e_c00146{height:35.625000px;}
.h7_c00146{height:37.584000px;}
.h1f_c00146{height:40.320000px;}
.h11_c00146{height:41.736000px;}
.h1a_c00146{height:41.742000px;}
.h8_c00146{height:41.742600px;}
.h9_c00146{height:41.748000px;}
.hd_c00146{height:41.754000px;}
.h1_c00146{height:41.760000px;}
.ha_c00146{height:41.765400px;}
.h17_c00146{height:41.766000px;}
.h21_c00146{height:42.144000px;}
.h23_c00146{height:43.200000px;}
.h6_c00146{height:45.360000px;}
.h2_c00146{height:48.672000px;}
.h3_c00146{height:50.112000px;}
.h22_c00146{height:50.400000px;}
.hb_c00146{height:60.787500px;}
.h13_c00146{height:70.254000px;}
.h18_c00146{height:70.362000px;}
.h4_c00146{height:70.560000px;}
.h16_c00146{height:71.766000px;}
.hf_c00146{height:76.860000px;}
.h14_c00146{height:76.920000px;}
.h12_c00146{height:79.860000px;}
.h1d_c00146{height:83.760000px;}
.hc_c00146{height:105.354000px;}
.h19_c00146{height:105.462000px;}
.h10_c00146{height:105.516000px;}
.h15_c00146{height:106.920000px;}
.h0_c00146{height:1263.000000px;}
.w2_c00146{width:56.625000px;}
.w1_c00146{width:57.412500px;}
.w3_c00146{width:61.162500px;}
.w7_c00146{width:162.780000px;}
.w6_c00146{width:363.045000px;}
.w4_c00146{width:524.700000px;}
.w5_c00146{width:655.200000px;}
.w0_c00146{width:2551.500000px;}
.x0_c00146{left:0.000000px;}
.x4_c00146{left:7.875750px;}
.x55_c00146{left:10.871100px;}
.x54_c00146{left:12.750600px;}
.x56_c00146{left:55.874100px;}
.x2a_c00146{left:57.750600px;}
.x2b_c00146{left:86.625750px;}
.x17_c00146{left:143.655600px;}
.x1_c00146{left:193.818600px;}
.x2c_c00146{left:201.405600px;}
.x2_c00146{left:212.606100px;}
.x30_c00146{left:215.219250px;}
.xb_c00146{left:216.356100px;}
.x2d_c00146{left:219.030600px;}
.x2e_c00146{left:224.223750px;}
.x31_c00146{left:226.464750px;}
.x25_c00146{left:229.481100px;}
.x2f_c00146{left:230.973750px;}
.xc_c00146{left:239.603100px;}
.x5b_c00146{left:247.098600px;}
.xd_c00146{left:256.478100px;}
.x1e_c00146{left:287.655600px;}
.x32_c00146{left:320.223600px;}
.xe_c00146{left:346.863600px;}
.x3e_c00146{left:349.097100px;}
.x4c_c00146{left:351.353100px;}
.x3d_c00146{left:379.863600px;}
.x4b_c00146{left:386.223600px;}
.x26_c00146{left:387.720600px;}
.x11_c00146{left:409.100100px;}
.xf_c00146{left:430.848600px;}
.x10_c00146{left:439.515600px;}
.x22_c00146{left:467.270100px;}
.x36_c00146{left:510.761250px;}
.x35_c00146{left:526.893750px;}
.x19_c00146{left:552.017250px;}
.x18_c00146{left:574.143750px;}
.x20_c00146{left:693.419250px;}
.x12_c00146{left:751.563750px;}
.x1f_c00146{left:754.938750px;}
.x13_c00146{left:768.438750px;}
.x40_c00146{left:773.306250px;}
.x3f_c00146{left:779.313750px;}
.x1c_c00146{left:797.688750px;}
.x41_c00146{left:823.931250px;}
.x4d_c00146{left:870.438750px;}
.x33_c00146{left:899.321250px;}
.x27_c00146{left:910.563750px;}
.x4e_c00146{left:923.723250px;}
.x28_c00146{left:933.095250px;}
.x42_c00146{left:971.343600px;}
.x23_c00146{left:972.471750px;}
.x44_c00146{left:1020.843600px;}
.x45_c00146{left:1023.840600px;}
.x39_c00146{left:1033.596600px;}
.x43_c00146{left:1037.718600px;}
.x46_c00146{left:1039.217100px;}
.x37_c00146{left:1056.843600px;}
.x5a_c00146{left:1072.593600px;}
.x38_c00146{left:1091.349600px;}
.x47_c00146{left:1126.593600px;}
.x48_c00146{left:1129.604100px;}
.x59_c00146{left:1152.843600px;}
.x14_c00146{left:1311.138750px;}
.x1a_c00146{left:1358.021250px;}
.x3_c00146{left:1360.638000px;}
.x15_c00146{left:1373.387250px;}
.x29_c00146{left:1404.918000px;}
.x5_c00146{left:1418.793000px;}
.x6_c00146{left:1483.668750px;}
.x4f_c00146{left:1528.293600px;}
.x49_c00146{left:1575.906600px;}
.x7_c00146{left:1590.543000px;}
.x1d_c00146{left:1638.213000px;}
.x8_c00146{left:1660.338750px;}
.x3a_c00146{left:1690.713750px;}
.x3b_c00146{left:1743.593250px;}
.x24_c00146{left:1745.820750px;}
.x16_c00146{left:1768.713000px;}
.x3c_c00146{left:1776.201600px;}
.x21_c00146{left:1811.082750px;}
.x51_c00146{left:1826.453100px;}
.x50_c00146{left:1829.823600px;}
.x52_c00146{left:1874.847600px;}
.x34_c00146{left:1968.243600px;}
.x1b_c00146{left:1979.495100px;}
.x53_c00146{left:1989.993000px;}
.x9_c00146{left:1998.243000px;}
.xa_c00146{left:2063.493600px;}
.x4a_c00146{left:2121.291600px;}
.x57_c00146{left:2161.398600px;}
.x58_c00146{left:2187.282600px;}
@media print{
.v3_c00146{vertical-align:-1.333333pt;}
.v0_c00146{vertical-align:0.000000pt;}
.v9_c00146{vertical-align:2.666667pt;}
.va_c00146{vertical-align:4.000000pt;}
.vc_c00146{vertical-align:13.333333pt;}
.v7_c00146{vertical-align:22.666667pt;}
.v1_c00146{vertical-align:25.333333pt;}
.v6_c00146{vertical-align:26.666667pt;}
.v4_c00146{vertical-align:28.000000pt;}
.v5_c00146{vertical-align:30.666667pt;}
.vb_c00146{vertical-align:37.333333pt;}
.v2_c00146{vertical-align:53.328000pt;}
.v8_c00146{vertical-align:54.720000pt;}
.ls6d_c00146{letter-spacing:-1.066667pt;}
.ls55_c00146{letter-spacing:-0.628800pt;}
.ls5f_c00146{letter-spacing:-0.578667pt;}
.ls67_c00146{letter-spacing:-0.537600pt;}
.ls6a_c00146{letter-spacing:-0.533333pt;}
.ls4a_c00146{letter-spacing:-0.528000pt;}
.ls4d_c00146{letter-spacing:-0.504000pt;}
.ls59_c00146{letter-spacing:-0.494400pt;}
.ls41_c00146{letter-spacing:-0.470400pt;}
.ls64_c00146{letter-spacing:-0.456533pt;}
.ls4f_c00146{letter-spacing:-0.456000pt;}
.ls3f_c00146{letter-spacing:-0.446400pt;}
.ls45_c00146{letter-spacing:-0.432000pt;}
.ls43_c00146{letter-spacing:-0.427200pt;}
.ls5b_c00146{letter-spacing:-0.417600pt;}
.ls3d_c00146{letter-spacing:-0.400000pt;}
.ls48_c00146{letter-spacing:-0.388800pt;}
.ls57_c00146{letter-spacing:-0.384000pt;}
.ls66_c00146{letter-spacing:-0.336000pt;}
.ls53_c00146{letter-spacing:-0.288000pt;}
.ls58_c00146{letter-spacing:-0.278400pt;}
.ls68_c00146{letter-spacing:-0.260000pt;}
.ls61_c00146{letter-spacing:-0.227733pt;}
.ls46_c00146{letter-spacing:-0.216000pt;}
.ls5d_c00146{letter-spacing:-0.164267pt;}
.ls6c_c00146{letter-spacing:-0.160000pt;}
.ls5e_c00146{letter-spacing:-0.145600pt;}
.ls62_c00146{letter-spacing:-0.123200pt;}
.ls51_c00146{letter-spacing:-0.100800pt;}
.ls56_c00146{letter-spacing:-0.076800pt;}
.ls4b_c00146{letter-spacing:-0.062400pt;}
.ls60_c00146{letter-spacing:-0.052267pt;}
.ls44_c00146{letter-spacing:-0.014400pt;}
.ls52_c00146{letter-spacing:-0.004800pt;}
.ls65_c00146{letter-spacing:-0.004267pt;}
.ls3e_c00146{letter-spacing:0.000000pt;}
.ls69_c00146{letter-spacing:0.005333pt;}
.ls2d_c00146{letter-spacing:0.009600pt;}
.ls7_c00146{letter-spacing:0.019200pt;}
.ls1a_c00146{letter-spacing:0.024000pt;}
.ls30_c00146{letter-spacing:0.033600pt;}
.lsc_c00146{letter-spacing:0.038400pt;}
.ls3b_c00146{letter-spacing:0.042667pt;}
.ls25_c00146{letter-spacing:0.043200pt;}
.ls20_c00146{letter-spacing:0.048000pt;}
.ls5_c00146{letter-spacing:0.052800pt;}
.ls2e_c00146{letter-spacing:0.057600pt;}
.ls1d_c00146{letter-spacing:0.062400pt;}
.ls8_c00146{letter-spacing:0.067200pt;}
.ls10_c00146{letter-spacing:0.076800pt;}
.ls27_c00146{letter-spacing:0.081600pt;}
.ls40_c00146{letter-spacing:0.086400pt;}
.ls2_c00146{letter-spacing:0.091200pt;}
.ls6_c00146{letter-spacing:0.096000pt;}
.ls42_c00146{letter-spacing:0.100800pt;}
.lsf_c00146{letter-spacing:0.105600pt;}
.ls1e_c00146{letter-spacing:0.110400pt;}
.ls19_c00146{letter-spacing:0.115200pt;}
.ls14_c00146{letter-spacing:0.120000pt;}
.ls16_c00146{letter-spacing:0.124800pt;}
.ls4_c00146{letter-spacing:0.139200pt;}
.ls1_c00146{letter-spacing:0.144000pt;}
.ls3_c00146{letter-spacing:0.153600pt;}
.lsb_c00146{letter-spacing:0.168000pt;}
.ls54_c00146{letter-spacing:0.182400pt;}
.ls5a_c00146{letter-spacing:0.192000pt;}
.ls3c_c00146{letter-spacing:0.208000pt;}
.ls6b_c00146{letter-spacing:0.213333pt;}
.ls3a_c00146{letter-spacing:0.229333pt;}
.ls39_c00146{letter-spacing:0.234667pt;}
.ls21_c00146{letter-spacing:0.240000pt;}
.ls0_c00146{letter-spacing:0.320000pt;}
.ls63_c00146{letter-spacing:0.388267pt;}
.ls5c_c00146{letter-spacing:0.392000pt;}
.ls38_c00146{letter-spacing:0.410667pt;}
.ls4c_c00146{letter-spacing:0.480000pt;}
.ls50_c00146{letter-spacing:0.576000pt;}
.ls28_c00146{letter-spacing:0.624000pt;}
.ls49_c00146{letter-spacing:0.627200pt;}
.ls4e_c00146{letter-spacing:0.652800pt;}
.ls47_c00146{letter-spacing:1.488000pt;}
.ls24_c00146{letter-spacing:102.720533pt;}
.ls31_c00146{letter-spacing:108.000000pt;}
.ls34_c00146{letter-spacing:213.333333pt;}
.ls29_c00146{letter-spacing:237.333333pt;}
.ls18_c00146{letter-spacing:333.440000pt;}
.ls1b_c00146{letter-spacing:394.666667pt;}
.ls36_c00146{letter-spacing:510.772800pt;}
.ls37_c00146{letter-spacing:530.720533pt;}
.ls2f_c00146{letter-spacing:534.826667pt;}
.lsa_c00146{letter-spacing:645.493867pt;}
.ls15_c00146{letter-spacing:670.639467pt;}
.ls35_c00146{letter-spacing:718.827200pt;}
.ls32_c00146{letter-spacing:764.106133pt;}
.lse_c00146{letter-spacing:785.439467pt;}
.ls33_c00146{letter-spacing:832.106133pt;}
.lsd_c00146{letter-spacing:845.493867pt;}
.ls1f_c00146{letter-spacing:866.827200pt;}
.ls17_c00146{letter-spacing:888.160000pt;}
.ls2b_c00146{letter-spacing:922.827200pt;}
.ls2a_c00146{letter-spacing:1048.160533pt;}
.ls26_c00146{letter-spacing:1126.932800pt;}
.ls9_c00146{letter-spacing:1253.439467pt;}
.ls13_c00146{letter-spacing:1297.493333pt;}
.ls2c_c00146{letter-spacing:1322.879467pt;}
.ls1c_c00146{letter-spacing:1601.600000pt;}
.ls12_c00146{letter-spacing:1757.706667pt;}
.ls23_c00146{letter-spacing:2005.706667pt;}
.ls22_c00146{letter-spacing:2036.320533pt;}
.ls11_c00146{letter-spacing:2126.933867pt;}
.ws3_c00146{word-spacing:-12.480000pt;}
.ws0_c00146{word-spacing:-12.153600pt;}
.ws1_c00146{word-spacing:-12.096000pt;}
.ws4_c00146{word-spacing:-12.000000pt;}
.ws2_c00146{word-spacing:-11.985600pt;}
.ws5_c00146{word-spacing:-11.529600pt;}
.ws6_c00146{word-spacing:-8.666667pt;}
.ws2b_c00146{word-spacing:-0.576000pt;}
.ws3e_c00146{word-spacing:-0.410667pt;}
.ws3d_c00146{word-spacing:-0.392000pt;}
.ws45_c00146{word-spacing:-0.388267pt;}
.ws27_c00146{word-spacing:-0.240000pt;}
.ws4a_c00146{word-spacing:-0.229333pt;}
.ws4c_c00146{word-spacing:-0.213333pt;}
.ws4e_c00146{word-spacing:-0.208000pt;}
.ws3b_c00146{word-spacing:-0.192000pt;}
.ws31_c00146{word-spacing:-0.182400pt;}
.ws15_c00146{word-spacing:-0.168000pt;}
.wsc_c00146{word-spacing:-0.144000pt;}
.wsf_c00146{word-spacing:-0.139200pt;}
.ws1e_c00146{word-spacing:-0.124800pt;}
.ws1d_c00146{word-spacing:-0.120000pt;}
.ws20_c00146{word-spacing:-0.115200pt;}
.ws25_c00146{word-spacing:-0.110400pt;}
.ws17_c00146{word-spacing:-0.105600pt;}
.ws37_c00146{word-spacing:-0.096000pt;}
.wsd_c00146{word-spacing:-0.091200pt;}
.ws12_c00146{word-spacing:-0.086400pt;}
.ws2c_c00146{word-spacing:-0.081600pt;}
.ws18_c00146{word-spacing:-0.076800pt;}
.ws14_c00146{word-spacing:-0.067200pt;}
.ws23_c00146{word-spacing:-0.062400pt;}
.ws1a_c00146{word-spacing:-0.057600pt;}
.ws10_c00146{word-spacing:-0.052800pt;}
.ws26_c00146{word-spacing:-0.048000pt;}
.ws2a_c00146{word-spacing:-0.043200pt;}
.ws4d_c00146{word-spacing:-0.042667pt;}
.ws16_c00146{word-spacing:-0.038400pt;}
.ws33_c00146{word-spacing:-0.033600pt;}
.ws1f_c00146{word-spacing:-0.028800pt;}
.ws21_c00146{word-spacing:-0.024000pt;}
.ws11_c00146{word-spacing:-0.019200pt;}
.ws2f_c00146{word-spacing:-0.009600pt;}
.ws4b_c00146{word-spacing:-0.005333pt;}
.ws47_c00146{word-spacing:-0.004267pt;}
.ws8_c00146{word-spacing:0.000000pt;}
.ws2e_c00146{word-spacing:0.004800pt;}
.ws42_c00146{word-spacing:0.056000pt;}
.ws35_c00146{word-spacing:0.076800pt;}
.ws2d_c00146{word-spacing:0.100800pt;}
.ws44_c00146{word-spacing:0.123200pt;}
.ws40_c00146{word-spacing:0.145600pt;}
.ws50_c00146{word-spacing:0.160000pt;}
.ws3f_c00146{word-spacing:0.168000pt;}
.ws1b_c00146{word-spacing:0.216000pt;}
.ws43_c00146{word-spacing:0.231467pt;}
.ws39_c00146{word-spacing:0.278400pt;}
.ws30_c00146{word-spacing:0.288000pt;}
.ws48_c00146{word-spacing:0.336000pt;}
.ws36_c00146{word-spacing:0.384000pt;}
.ws22_c00146{word-spacing:0.388800pt;}
.ws7_c00146{word-spacing:0.400000pt;}
.ws3c_c00146{word-spacing:0.417600pt;}
.ws38_c00146{word-spacing:0.427200pt;}
.ws19_c00146{word-spacing:0.432000pt;}
.ws1c_c00146{word-spacing:0.436800pt;}
.ws34_c00146{word-spacing:0.446400pt;}
.ws29_c00146{word-spacing:0.456000pt;}
.ws46_c00146{word-spacing:0.456533pt;}
.wse_c00146{word-spacing:0.460800pt;}
.ws13_c00146{word-spacing:0.470400pt;}
.ws3a_c00146{word-spacing:0.494400pt;}
.ws28_c00146{word-spacing:0.504000pt;}
.ws24_c00146{word-spacing:0.528000pt;}
.ws49_c00146{word-spacing:0.537600pt;}
.ws4f_c00146{word-spacing:0.538667pt;}
.ws41_c00146{word-spacing:0.578667pt;}
.ws51_c00146{word-spacing:1.152000pt;}
.ws32_c00146{word-spacing:1.963200pt;}
.ws9_c00146{word-spacing:89.013333pt;}
.wsb_c00146{word-spacing:89.093333pt;}
.wsa_c00146{word-spacing:90.346667pt;}
._b_c00146{margin-left:-2.384000pt;}
._2_c00146{margin-left:-1.333333pt;}
._0_c00146{width:1.600000pt;}
._c_c00146{width:2.802133pt;}
._8_c00146{width:4.106667pt;}
._7_c00146{width:6.560000pt;}
._4_c00146{width:7.733333pt;}
._6_c00146{width:9.173333pt;}
._5_c00146{width:11.253333pt;}
._3_c00146{width:31.946667pt;}
._d_c00146{width:230.437867pt;}
._9_c00146{width:468.702933pt;}
._a_c00146{width:760.603733pt;}
._1_c00146{width:3782.016000pt;}
.fs4_c00146{font-size:32.000000pt;}
.fs7_c00146{font-size:34.666667pt;}
.fs5_c00146{font-size:37.333333pt;}
.fs6_c00146{font-size:42.666667pt;}
.fs3_c00146{font-size:48.000000pt;}
.fs0_c00146{font-size:53.333333pt;}
.fs1_c00146{font-size:64.000000pt;}
.fs2_c00146{font-size:74.666667pt;}
.y0_c00146{bottom:0.000000pt;}
.y44_c00146{bottom:2.666667pt;}
.y24_c00146{bottom:3.333333pt;}
.y19_c00146{bottom:3.334667pt;}
.y7_c00146{bottom:3.666667pt;}
.y43_c00146{bottom:12.998667pt;}
.y22_c00146{bottom:16.653333pt;}
.y18_c00146{bottom:16.666667pt;}
.y42_c00146{bottom:23.666667pt;}
.y13_c00146{bottom:23.693200pt;}
.y2_c00146{bottom:51.666667pt;}
.y51_c00146{bottom:74.700000pt;}
.y50_c00146{bottom:88.362667pt;}
.y4f_c00146{bottom:390.106667pt;}
.y4e_c00146{bottom:407.466667pt;}
.y4d_c00146{bottom:422.466667pt;}
.y4c_c00146{bottom:437.466667pt;}
.y4b_c00146{bottom:452.466667pt;}
.y4a_c00146{bottom:468.133333pt;}
.y49_c00146{bottom:485.466667pt;}
.y48_c00146{bottom:501.133333pt;}
.y47_c00146{bottom:525.173333pt;}
.y41_c00146{bottom:542.840000pt;}
.y40_c00146{bottom:545.506667pt;}
.y3d_c00146{bottom:548.508000pt;}
.y46_c00146{bottom:549.506667pt;}
.y3f_c00146{bottom:555.838667pt;}
.y45_c00146{bottom:561.506667pt;}
.y3c_c00146{bottom:561.840000pt;}
.y3e_c00146{bottom:566.506667pt;}
.y3b_c00146{bottom:578.176000pt;}
.y3a_c00146{bottom:591.844000pt;}
.y36_c00146{bottom:605.176000pt;}
.y33_c00146{bottom:612.177333pt;}
.y37_c00146{bottom:618.533333pt;}
.y35_c00146{bottom:618.868000pt;}
.y32_c00146{bottom:625.533333pt;}
.y34_c00146{bottom:632.200000pt;}
.y39_c00146{bottom:645.868000pt;}
.y38_c00146{bottom:659.200000pt;}
.y31_c00146{bottom:673.534667pt;}
.y30_c00146{bottom:679.200000pt;}
.y2f_c00146{bottom:701.200000pt;}
.y2c_c00146{bottom:707.865333pt;}
.y2e_c00146{bottom:714.532000pt;}
.y2b_c00146{bottom:721.533333pt;}
.y2d_c00146{bottom:728.200000pt;}
.y29_c00146{bottom:742.226667pt;}
.y28_c00146{bottom:755.906667pt;}
.y2a_c00146{bottom:762.560000pt;}
.y27_c00146{bottom:769.226667pt;}
.y26_c00146{bottom:782.894667pt;}
.y25_c00146{bottom:796.226667pt;}
.y23_c00146{bottom:807.226667pt;}
.y21_c00146{bottom:807.240000pt;}
.y1f_c00146{bottom:810.561333pt;}
.y1e_c00146{bottom:816.226667pt;}
.y20_c00146{bottom:823.893333pt;}
.y1d_c00146{bottom:838.232000pt;}
.y1c_c00146{bottom:844.600000pt;}
.y1b_c00146{bottom:865.934667pt;}
.y1a_c00146{bottom:879.266667pt;}
.y17_c00146{bottom:890.266667pt;}
.y16_c00146{bottom:900.266667pt;}
.y15_c00146{bottom:921.268000pt;}
.y14_c00146{bottom:934.600000pt;}
.y12_c00146{bottom:945.600000pt;}
.yb_c00146{bottom:948.937200pt;}
.yf_c00146{bottom:955.602667pt;}
.y11_c00146{bottom:962.292000pt;}
.ya_c00146{bottom:962.293200pt;}
.yc_c00146{bottom:968.960000pt;}
.ye_c00146{bottom:969.294667pt;}
.y10_c00146{bottom:975.960000pt;}
.y9_c00146{bottom:975.961200pt;}
.yd_c00146{bottom:982.626667pt;}
.y8_c00146{bottom:989.293200pt;}
.y6_c00146{bottom:1000.293333pt;}
.y5_c00146{bottom:1003.960000pt;}
.y4_c00146{bottom:1020.960000pt;}
.y3_c00146{bottom:1041.298667pt;}
.y1_c00146{bottom:1064.626667pt;}
.h5_c00146{height:15.000000pt;}
.h1c_c00146{height:25.984000pt;}
.he_c00146{height:27.000000pt;}
.h20_c00146{height:29.696000pt;}
.h1b_c00146{height:31.360000pt;}
.h1e_c00146{height:31.666667pt;}
.h7_c00146{height:33.408000pt;}
.h1f_c00146{height:35.840000pt;}
.h11_c00146{height:37.098667pt;}
.h1a_c00146{height:37.104000pt;}
.h8_c00146{height:37.104533pt;}
.h9_c00146{height:37.109333pt;}
.hd_c00146{height:37.114667pt;}
.h1_c00146{height:37.120000pt;}
.ha_c00146{height:37.124800pt;}
.h17_c00146{height:37.125333pt;}
.h21_c00146{height:37.461333pt;}
.h23_c00146{height:38.400000pt;}
.h6_c00146{height:40.320000pt;}
.h2_c00146{height:43.264000pt;}
.h3_c00146{height:44.544000pt;}
.h22_c00146{height:44.800000pt;}
.hb_c00146{height:54.033333pt;}
.h13_c00146{height:62.448000pt;}
.h18_c00146{height:62.544000pt;}
.h4_c00146{height:62.720000pt;}
.h16_c00146{height:63.792000pt;}
.hf_c00146{height:68.320000pt;}
.h14_c00146{height:68.373333pt;}
.h12_c00146{height:70.986667pt;}
.h1d_c00146{height:74.453333pt;}
.hc_c00146{height:93.648000pt;}
.h19_c00146{height:93.744000pt;}
.h10_c00146{height:93.792000pt;}
.h15_c00146{height:95.040000pt;}
.h0_c00146{height:1122.666667pt;}
.w2_c00146{width:50.333333pt;}
.w1_c00146{width:51.033333pt;}
.w3_c00146{width:54.366667pt;}
.w7_c00146{width:144.693333pt;}
.w6_c00146{width:322.706667pt;}
.w4_c00146{width:466.400000pt;}
.w5_c00146{width:582.400000pt;}
.w0_c00146{width:2268.000000pt;}
.x0_c00146{left:0.000000pt;}
.x4_c00146{left:7.000667pt;}
.x55_c00146{left:9.663200pt;}
.x54_c00146{left:11.333867pt;}
.x56_c00146{left:49.665867pt;}
.x2a_c00146{left:51.333867pt;}
.x2b_c00146{left:77.000667pt;}
.x17_c00146{left:127.693867pt;}
.x1_c00146{left:172.283200pt;}
.x2c_c00146{left:179.027200pt;}
.x2_c00146{left:188.983200pt;}
.x30_c00146{left:191.306000pt;}
.xb_c00146{left:192.316533pt;}
.x2d_c00146{left:194.693867pt;}
.x2e_c00146{left:199.310000pt;}
.x31_c00146{left:201.302000pt;}
.x25_c00146{left:203.983200pt;}
.x2f_c00146{left:205.310000pt;}
.xc_c00146{left:212.980533pt;}
.x5b_c00146{left:219.643200pt;}
.xd_c00146{left:227.980533pt;}
.x1e_c00146{left:255.693867pt;}
.x32_c00146{left:284.643200pt;}
.xe_c00146{left:308.323200pt;}
.x3e_c00146{left:310.308533pt;}
.x4c_c00146{left:312.313867pt;}
.x3d_c00146{left:337.656533pt;}
.x4b_c00146{left:343.309867pt;}
.x26_c00146{left:344.640533pt;}
.x11_c00146{left:363.644533pt;}
.xf_c00146{left:382.976533pt;}
.x10_c00146{left:390.680533pt;}
.x22_c00146{left:415.351200pt;}
.x36_c00146{left:454.010000pt;}
.x35_c00146{left:468.350000pt;}
.x19_c00146{left:490.682000pt;}
.x18_c00146{left:510.350000pt;}
.x20_c00146{left:616.372667pt;}
.x12_c00146{left:668.056667pt;}
.x1f_c00146{left:671.056667pt;}
.x13_c00146{left:683.056667pt;}
.x40_c00146{left:687.383333pt;}
.x3f_c00146{left:692.723333pt;}
.x1c_c00146{left:709.056667pt;}
.x41_c00146{left:732.383333pt;}
.x4d_c00146{left:773.723333pt;}
.x33_c00146{left:799.396667pt;}
.x27_c00146{left:809.390000pt;}
.x4e_c00146{left:821.087333pt;}
.x28_c00146{left:829.418000pt;}
.x42_c00146{left:863.416533pt;}
.x23_c00146{left:864.419333pt;}
.x44_c00146{left:907.416533pt;}
.x45_c00146{left:910.080533pt;}
.x39_c00146{left:918.752533pt;}
.x43_c00146{left:922.416533pt;}
.x46_c00146{left:923.748533pt;}
.x37_c00146{left:939.416533pt;}
.x5a_c00146{left:953.416533pt;}
.x38_c00146{left:970.088533pt;}
.x47_c00146{left:1001.416533pt;}
.x48_c00146{left:1004.092533pt;}
.x59_c00146{left:1024.749867pt;}
.x14_c00146{left:1165.456667pt;}
.x1a_c00146{left:1207.130000pt;}
.x3_c00146{left:1209.456000pt;}
.x15_c00146{left:1220.788667pt;}
.x29_c00146{left:1248.816000pt;}
.x5_c00146{left:1261.149333pt;}
.x6_c00146{left:1318.816667pt;}
.x4f_c00146{left:1358.483200pt;}
.x49_c00146{left:1400.805867pt;}
.x7_c00146{left:1413.816000pt;}
.x1d_c00146{left:1456.189333pt;}
.x8_c00146{left:1475.856667pt;}
.x3a_c00146{left:1502.856667pt;}
.x3b_c00146{left:1549.860667pt;}
.x24_c00146{left:1551.840667pt;}
.x16_c00146{left:1572.189333pt;}
.x3c_c00146{left:1578.845867pt;}
.x21_c00146{left:1609.851333pt;}
.x51_c00146{left:1623.513867pt;}
.x50_c00146{left:1626.509867pt;}
.x52_c00146{left:1666.531200pt;}
.x34_c00146{left:1749.549867pt;}
.x1b_c00146{left:1759.551200pt;}
.x53_c00146{left:1768.882667pt;}
.x9_c00146{left:1776.216000pt;}
.xa_c00146{left:1834.216533pt;}
.x4a_c00146{left:1885.592533pt;}
.x57_c00146{left:1921.243200pt;}
.x58_c00146{left:1944.251200pt;}
}





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

.ir_c00147:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00147;src:url('chunks/assets/font_859300c011e99521974ddd02.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00147;src:url('chunks/assets/font_f54c9e9a201decd3681cce82.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00147;src:url('chunks/assets/font_0cca72844a803ff0550fc032.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00147;src:url('chunks/assets/font_860078c5e1790abfd16d8b14.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:1.090000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v6_c00147{vertical-align:-1.560000px;}
.v0_c00147{vertical-align:0.000000px;}
.v5_c00147{vertical-align:1.500000px;}
.vc_c00147{vertical-align:15.000000px;}
.v1_c00147{vertical-align:21.138600px;}
.v4_c00147{vertical-align:28.500000px;}
.v3_c00147{vertical-align:30.000000px;}
.v2_c00147{vertical-align:31.620000px;}
.v7_c00147{vertical-align:33.000000px;}
.va_c00147{vertical-align:59.994000px;}
.vb_c00147{vertical-align:61.668000px;}
.v8_c00147{vertical-align:64.518000px;}
.v9_c00147{vertical-align:66.000000px;}
.ls7c_c00147{letter-spacing:-1.200000px;}
.ls5d_c00147{letter-spacing:-0.702000px;}
.ls54_c00147{letter-spacing:-0.672000px;}
.ls76_c00147{letter-spacing:-0.637200px;}
.ls6c_c00147{letter-spacing:-0.610200px;}
.ls55_c00147{letter-spacing:-0.604800px;}
.ls71_c00147{letter-spacing:-0.594000px;}
.ls75_c00147{letter-spacing:-0.550800px;}
.ls63_c00147{letter-spacing:-0.540000px;}
.ls51_c00147{letter-spacing:-0.516000px;}
.ls5e_c00147{letter-spacing:-0.513600px;}
.ls5a_c00147{letter-spacing:-0.502200px;}
.ls65_c00147{letter-spacing:-0.496800px;}
.ls64_c00147{letter-spacing:-0.491400px;}
.ls67_c00147{letter-spacing:-0.489600px;}
.ls74_c00147{letter-spacing:-0.486000px;}
.ls6d_c00147{letter-spacing:-0.480600px;}
.ls73_c00147{letter-spacing:-0.469800px;}
.ls6e_c00147{letter-spacing:-0.437400px;}
.ls68_c00147{letter-spacing:-0.394200px;}
.ls6f_c00147{letter-spacing:-0.378000px;}
.ls79_c00147{letter-spacing:-0.372000px;}
.ls56_c00147{letter-spacing:-0.315000px;}
.ls6a_c00147{letter-spacing:-0.313200px;}
.ls78_c00147{letter-spacing:-0.292500px;}
.ls69_c00147{letter-spacing:-0.183600px;}
.ls58_c00147{letter-spacing:-0.176400px;}
.ls59_c00147{letter-spacing:-0.138600px;}
.ls61_c00147{letter-spacing:-0.135000px;}
.ls57_c00147{letter-spacing:-0.117600px;}
.ls6b_c00147{letter-spacing:-0.097200px;}
.ls53_c00147{letter-spacing:-0.086400px;}
.ls5b_c00147{letter-spacing:-0.054000px;}
.ls62_c00147{letter-spacing:-0.048600px;}
.ls66_c00147{letter-spacing:-0.014400px;}
.ls5f_c00147{letter-spacing:-0.009600px;}
.ls72_c00147{letter-spacing:-0.005400px;}
.ls52_c00147{letter-spacing:0.000000px;}
.ls38_c00147{letter-spacing:0.010800px;}
.ls10_c00147{letter-spacing:0.016200px;}
.ls60_c00147{letter-spacing:0.021600px;}
.ls7b_c00147{letter-spacing:0.024000px;}
.lsc_c00147{letter-spacing:0.027000px;}
.ls4c_c00147{letter-spacing:0.030000px;}
.ls6_c00147{letter-spacing:0.032400px;}
.lsa_c00147{letter-spacing:0.037800px;}
.ls12_c00147{letter-spacing:0.043200px;}
.ls3_c00147{letter-spacing:0.048600px;}
.ls11_c00147{letter-spacing:0.054000px;}
.lsf_c00147{letter-spacing:0.059400px;}
.ls4_c00147{letter-spacing:0.064800px;}
.ls1c_c00147{letter-spacing:0.070200px;}
.lsd_c00147{letter-spacing:0.075600px;}
.ls1e_c00147{letter-spacing:0.081000px;}
.ls23_c00147{letter-spacing:0.086400px;}
.ls7a_c00147{letter-spacing:0.090000px;}
.ls33_c00147{letter-spacing:0.097200px;}
.ls21_c00147{letter-spacing:0.102600px;}
.ls9_c00147{letter-spacing:0.108000px;}
.ls43_c00147{letter-spacing:0.113400px;}
.ls49_c00147{letter-spacing:0.114000px;}
.ls2f_c00147{letter-spacing:0.124200px;}
.ls29_c00147{letter-spacing:0.129600px;}
.ls16_c00147{letter-spacing:0.151200px;}
.ls46_c00147{letter-spacing:0.167400px;}
.lsb_c00147{letter-spacing:0.172800px;}
.ls2a_c00147{letter-spacing:0.174600px;}
.ls26_c00147{letter-spacing:0.189000px;}
.ls4a_c00147{letter-spacing:0.216000px;}
.ls48_c00147{letter-spacing:0.228000px;}
.ls4e_c00147{letter-spacing:0.234000px;}
.ls2b_c00147{letter-spacing:0.240000px;}
.ls77_c00147{letter-spacing:0.246000px;}
.ls4d_c00147{letter-spacing:0.252000px;}
.ls50_c00147{letter-spacing:0.264000px;}
.ls4f_c00147{letter-spacing:0.276000px;}
.ls4b_c00147{letter-spacing:0.282000px;}
.ls1_c00147{letter-spacing:0.312000px;}
.ls47_c00147{letter-spacing:0.342000px;}
.ls2_c00147{letter-spacing:0.360000px;}
.ls1a_c00147{letter-spacing:0.450000px;}
.ls8_c00147{letter-spacing:1.488000px;}
.ls17_c00147{letter-spacing:125.999400px;}
.ls1b_c00147{letter-spacing:150.120600px;}
.ls42_c00147{letter-spacing:177.000000px;}
.ls31_c00147{letter-spacing:217.560000px;}
.ls1f_c00147{letter-spacing:297.000000px;}
.ls5c_c00147{letter-spacing:307.500000px;}
.ls24_c00147{letter-spacing:369.120000px;}
.ls25_c00147{letter-spacing:373.500000px;}
.ls40_c00147{letter-spacing:393.180600px;}
.ls36_c00147{letter-spacing:469.620000px;}
.ls32_c00147{letter-spacing:501.180600px;}
.ls14_c00147{letter-spacing:532.499400px;}
.ls37_c00147{letter-spacing:541.440000px;}
.ls3c_c00147{letter-spacing:568.500600px;}
.ls45_c00147{letter-spacing:601.620000px;}
.ls30_c00147{letter-spacing:712.620000px;}
.ls20_c00147{letter-spacing:771.180000px;}
.ls41_c00147{letter-spacing:846.120000px;}
.ls70_c00147{letter-spacing:928.620000px;}
.ls5_c00147{letter-spacing:976.620600px;}
.ls22_c00147{letter-spacing:976.680000px;}
.ls3a_c00147{letter-spacing:991.620000px;}
.ls3b_c00147{letter-spacing:1009.680000px;}
.ls39_c00147{letter-spacing:1027.680600px;}
.ls3e_c00147{letter-spacing:1053.180600px;}
.ls19_c00147{letter-spacing:1074.180000px;}
.ls7_c00147{letter-spacing:1078.800000px;}
.ls13_c00147{letter-spacing:1111.799400px;}
.ls2c_c00147{letter-spacing:1131.299400px;}
.ls2e_c00147{letter-spacing:1135.619400px;}
.ls18_c00147{letter-spacing:1153.680600px;}
.ls44_c00147{letter-spacing:1216.680000px;}
.ls34_c00147{letter-spacing:1384.799400px;}
.ls3f_c00147{letter-spacing:1420.619400px;}
.ls35_c00147{letter-spacing:1435.679400px;}
.ls3d_c00147{letter-spacing:1480.799400px;}
.ls2d_c00147{letter-spacing:1503.180600px;}
.ls28_c00147{letter-spacing:1543.799400px;}
.lse_c00147{letter-spacing:1671.299400px;}
.ls27_c00147{letter-spacing:1714.799400px;}
.ls15_c00147{letter-spacing:2266.980600px;}
.ls1d_c00147{letter-spacing:2523.419400px;}
.ls0_c00147{letter-spacing:4268.280600px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00147{word-spacing:-15.000000px;}
.ws2_c00147{word-spacing:-13.672800px;}
.ws1_c00147{word-spacing:-13.651200px;}
.ws3_c00147{word-spacing:-13.554000px;}
.ws6_c00147{word-spacing:-13.014000px;}
.ws0_c00147{word-spacing:-12.997800px;}
.ws4_c00147{word-spacing:-12.000000px;}
.ws7_c00147{word-spacing:-9.750000px;}
.ws4b_c00147{word-spacing:-1.782000px;}
.ws45_c00147{word-spacing:-0.456300px;}
.ws47_c00147{word-spacing:-0.342000px;}
.ws4e_c00147{word-spacing:-0.300000px;}
.ws52_c00147{word-spacing:-0.276000px;}
.ws53_c00147{word-spacing:-0.258000px;}
.ws34_c00147{word-spacing:-0.240000px;}
.ws51_c00147{word-spacing:-0.234000px;}
.ws48_c00147{word-spacing:-0.228000px;}
.ws4c_c00147{word-spacing:-0.222000px;}
.ws4a_c00147{word-spacing:-0.216000px;}
.ws2f_c00147{word-spacing:-0.189000px;}
.ws42_c00147{word-spacing:-0.172800px;}
.ws44_c00147{word-spacing:-0.167400px;}
.ws1f_c00147{word-spacing:-0.151200px;}
.ws33_c00147{word-spacing:-0.129600px;}
.ws36_c00147{word-spacing:-0.124200px;}
.ws49_c00147{word-spacing:-0.114000px;}
.ws41_c00147{word-spacing:-0.113400px;}
.ws18_c00147{word-spacing:-0.108000px;}
.ws2c_c00147{word-spacing:-0.102600px;}
.ws10_c00147{word-spacing:-0.097200px;}
.ws4d_c00147{word-spacing:-0.090000px;}
.ws2d_c00147{word-spacing:-0.086400px;}
.ws2b_c00147{word-spacing:-0.081000px;}
.ws1b_c00147{word-spacing:-0.075600px;}
.ws28_c00147{word-spacing:-0.070200px;}
.wsf_c00147{word-spacing:-0.064800px;}
.ws11_c00147{word-spacing:-0.059400px;}
.ws21_c00147{word-spacing:-0.054000px;}
.wsd_c00147{word-spacing:-0.048600px;}
.ws1e_c00147{word-spacing:-0.043200px;}
.ws19_c00147{word-spacing:-0.037800px;}
.ws12_c00147{word-spacing:-0.032400px;}
.ws4f_c00147{word-spacing:-0.030000px;}
.ws1a_c00147{word-spacing:-0.027000px;}
.ws29_c00147{word-spacing:-0.021600px;}
.ws1d_c00147{word-spacing:-0.016200px;}
.ws3c_c00147{word-spacing:-0.010800px;}
.ws9_c00147{word-spacing:0.000000px;}
.ws3f_c00147{word-spacing:0.005400px;}
.ws50_c00147{word-spacing:0.006000px;}
.ws22_c00147{word-spacing:0.009600px;}
.ws30_c00147{word-spacing:0.014400px;}
.ws23_c00147{word-spacing:0.048600px;}
.ws1c_c00147{word-spacing:0.054000px;}
.wse_c00147{word-spacing:0.086400px;}
.ws38_c00147{word-spacing:0.097200px;}
.ws15_c00147{word-spacing:0.117600px;}
.ws26_c00147{word-spacing:0.135000px;}
.ws17_c00147{word-spacing:0.138600px;}
.ws16_c00147{word-spacing:0.176400px;}
.ws35_c00147{word-spacing:0.183600px;}
.ws37_c00147{word-spacing:0.313200px;}
.ws46_c00147{word-spacing:0.372000px;}
.ws3d_c00147{word-spacing:0.378000px;}
.ws32_c00147{word-spacing:0.394200px;}
.ws3b_c00147{word-spacing:0.437400px;}
.ws40_c00147{word-spacing:0.469800px;}
.ws3a_c00147{word-spacing:0.480600px;}
.ws31_c00147{word-spacing:0.489600px;}
.ws2a_c00147{word-spacing:0.491400px;}
.ws2e_c00147{word-spacing:0.496800px;}
.ws24_c00147{word-spacing:0.502200px;}
.ws8_c00147{word-spacing:0.516000px;}
.ws27_c00147{word-spacing:0.540000px;}
.ws43_c00147{word-spacing:0.550800px;}
.ws3e_c00147{word-spacing:0.594000px;}
.ws14_c00147{word-spacing:0.604800px;}
.ws39_c00147{word-spacing:0.610200px;}
.ws13_c00147{word-spacing:0.672000px;}
.ws20_c00147{word-spacing:0.702000px;}
.ws54_c00147{word-spacing:1.296000px;}
.wsa_c00147{word-spacing:97.140000px;}
.wsc_c00147{word-spacing:98.658000px;}
.wsb_c00147{word-spacing:104.640000px;}
.ws25_c00147{word-spacing:128.490000px;}
._18_c00147{margin-left:-927.720000px;}
._12_c00147{margin-left:-306.204000px;}
._c_c00147{margin-left:-7.512000px;}
._10_c00147{margin-left:-5.868000px;}
._15_c00147{margin-left:-2.492400px;}
._2_c00147{margin-left:-1.488000px;}
._0_c00147{width:1.260000px;}
._1_c00147{width:2.280000px;}
._6_c00147{width:3.324000px;}
._9_c00147{width:4.488000px;}
._5_c00147{width:6.084000px;}
._3_c00147{width:7.548000px;}
._7_c00147{width:9.276000px;}
._e_c00147{width:10.716000px;}
._8_c00147{width:12.108000px;}
._f_c00147{width:15.828000px;}
._4_c00147{width:17.928000px;}
._11_c00147{width:33.300000px;}
._17_c00147{width:38.640000px;}
._14_c00147{width:43.050600px;}
._a_c00147{width:58.488000px;}
._b_c00147{width:79.608000px;}
._d_c00147{width:103.608000px;}
._13_c00147{width:1136.353200px;}
._16_c00147{width:1220.820600px;}
.fc1_c00147{color:rgb(255,255,255);}
.fc0_c00147{color:rgb(0,0,0);}
.fs6_c00147{font-size:39.000000px;}
.fs4_c00147{font-size:42.000000px;}
.fs2_c00147{font-size:48.000000px;}
.fs3_c00147{font-size:54.000000px;}
.fs0_c00147{font-size:60.000000px;}
.fs5_c00147{font-size:66.000000px;}
.fs1_c00147{font-size:72.000000px;}
.fs7_c00147{font-size:78.000000px;}
.y0_c00147{bottom:0.000000px;}
.y5e_c00147{bottom:3.379500px;}
.y8_c00147{bottom:4.125000px;}
.y47_c00147{bottom:8.626500px;}
.y55_c00147{bottom:10.873500px;}
.y6a_c00147{bottom:17.251500px;}
.y2f_c00147{bottom:18.750000px;}
.y5d_c00147{bottom:18.756000px;}
.y46_c00147{bottom:23.625000px;}
.y54_c00147{bottom:26.250000px;}
.y39_c00147{bottom:26.295000px;}
.y69_c00147{bottom:32.250000px;}
.y2e_c00147{bottom:33.748500px;}
.y5c_c00147{bottom:33.795000px;}
.y2d_c00147{bottom:49.125000px;}
.y3_c00147{bottom:58.127850px;}
.y79_c00147{bottom:84.037500px;}
.y78_c00147{bottom:99.412500px;}
.y77_c00147{bottom:260.325000px;}
.y76_c00147{bottom:280.950000px;}
.y75_c00147{bottom:297.825000px;}
.y74_c00147{bottom:314.730000px;}
.y73_c00147{bottom:331.605000px;}
.y72_c00147{bottom:348.480000px;}
.y71_c00147{bottom:365.355000px;}
.y70_c00147{bottom:382.230000px;}
.y6f_c00147{bottom:399.105000px;}
.y6e_c00147{bottom:415.995000px;}
.y6d_c00147{bottom:433.620000px;}
.y6c_c00147{bottom:453.150000px;}
.y6b_c00147{bottom:470.025000px;}
.y68_c00147{bottom:483.525000px;}
.y64_c00147{bottom:492.900000px;}
.y67_c00147{bottom:500.400000px;}
.y61_c00147{bottom:500.776500px;}
.y65_c00147{bottom:507.900000px;}
.y63_c00147{bottom:508.276500px;}
.y60_c00147{bottom:515.775000px;}
.y66_c00147{bottom:516.525000px;}
.y62_c00147{bottom:523.275000px;}
.y5b_c00147{bottom:542.025000px;}
.y5a_c00147{bottom:552.903000px;}
.y59_c00147{bottom:560.400000px;}
.y5f_c00147{bottom:568.320000px;}
.y58_c00147{bottom:591.940500px;}
.y57_c00147{bottom:592.696500px;}
.y56_c00147{bottom:599.820000px;}
.y53_c00147{bottom:621.195000px;}
.y52_c00147{bottom:624.570000px;}
.y4f_c00147{bottom:632.068500px;}
.y4e_c00147{bottom:639.570000px;}
.y51_c00147{bottom:639.946500px;}
.y50_c00147{bottom:654.945000px;}
.y4c_c00147{bottom:671.073000px;}
.y49_c00147{bottom:678.571500px;}
.y4d_c00147{bottom:685.695000px;}
.y4b_c00147{bottom:686.071500px;}
.y48_c00147{bottom:693.570000px;}
.y4a_c00147{bottom:701.475000px;}
.y45_c00147{bottom:713.850000px;}
.y44_c00147{bottom:718.725000px;}
.y42_c00147{bottom:721.345500px;}
.y43_c00147{bottom:722.476500px;}
.y41_c00147{bottom:737.100000px;}
.y3f_c00147{bottom:758.100000px;}
.y3b_c00147{bottom:770.476500px;}
.y3e_c00147{bottom:771.600000px;}
.y40_c00147{bottom:777.600000px;}
.y3d_c00147{bottom:785.100000px;}
.y3a_c00147{bottom:785.475000px;}
.y3c_c00147{bottom:798.600000px;}
.y38_c00147{bottom:809.850000px;}
.y36_c00147{bottom:813.226500px;}
.y35_c00147{bottom:828.630000px;}
.y32_c00147{bottom:828.633000px;}
.y37_c00147{bottom:835.755000px;}
.y31_c00147{bottom:836.145000px;}
.y34_c00147{bottom:843.642000px;}
.y33_c00147{bottom:859.005000px;}
.y2c_c00147{bottom:871.380000px;}
.y2b_c00147{bottom:874.755000px;}
.y2a_c00147{bottom:890.131500px;}
.y26_c00147{bottom:897.631500px;}
.y30_c00147{bottom:904.755000px;}
.y29_c00147{bottom:905.130000px;}
.y25_c00147{bottom:912.630000px;}
.y28_c00147{bottom:920.506500px;}
.y27_c00147{bottom:935.505000px;}
.y23_c00147{bottom:951.676500px;}
.y1f_c00147{bottom:954.300000px;}
.y1b_c00147{bottom:966.673500px;}
.y22_c00147{bottom:966.675000px;}
.y1e_c00147{bottom:967.800000px;}
.y24_c00147{bottom:974.175000px;}
.y1d_c00147{bottom:981.300000px;}
.y1a_c00147{bottom:982.050000px;}
.y21_c00147{bottom:982.051500px;}
.y1c_c00147{bottom:994.800000px;}
.y20_c00147{bottom:997.050000px;}
.y19_c00147{bottom:1013.176500px;}
.y18_c00147{bottom:1028.175000px;}
.y17_c00147{bottom:1044.302850px;}
.y12_c00147{bottom:1051.047000px;}
.y16_c00147{bottom:1059.301350px;}
.yb_c00147{bottom:1059.303000px;}
.y11_c00147{bottom:1064.550000px;}
.yd_c00147{bottom:1066.801500px;}
.yc_c00147{bottom:1074.300000px;}
.y15_c00147{bottom:1074.677850px;}
.ya_c00147{bottom:1074.679500px;}
.y10_c00147{bottom:1076.173500px;}
.yf_c00147{bottom:1088.206500px;}
.y14_c00147{bottom:1089.703350px;}
.y9_c00147{bottom:1089.705000px;}
.ye_c00147{bottom:1099.830000px;}
.y13_c00147{bottom:1105.079850px;}
.y7_c00147{bottom:1117.455000px;}
.y6_c00147{bottom:1121.580000px;}
.y5_c00147{bottom:1139.954850px;}
.y4_c00147{bottom:1158.705000px;}
.y2_c00147{bottom:1174.829850px;}
.y1_c00147{bottom:1197.705000px;}
.h6_c00147{height:16.875000px;}
.hc_c00147{height:29.232000px;}
.h13_c00147{height:33.408000px;}
.hb_c00147{height:35.280000px;}
.h4_c00147{height:37.584000px;}
.h12_c00147{height:40.320000px;}
.hd_c00147{height:40.332000px;}
.h1e_c00147{height:40.500000px;}
.h26_c00147{height:41.742000px;}
.h8_c00147{height:41.748000px;}
.he_c00147{height:41.748600px;}
.hf_c00147{height:41.754000px;}
.h1_c00147{height:41.760000px;}
.h20_c00147{height:41.766000px;}
.h22_c00147{height:41.778000px;}
.h29_c00147{height:42.144000px;}
.h2b_c00147{height:43.200000px;}
.h7_c00147{height:45.360000px;}
.h1f_c00147{height:45.375000px;}
.h25_c00147{height:45.412500px;}
.h17_c00147{height:46.860000px;}
.h2_c00147{height:48.672000px;}
.h5_c00147{height:50.112000px;}
.h28_c00147{height:50.400000px;}
.h3_c00147{height:55.698600px;}
.h27_c00147{height:57.750000px;}
.h1b_c00147{height:60.787500px;}
.h2a_c00147{height:65.520000px;}
.h19_c00147{height:70.248000px;}
.h15_c00147{height:70.254000px;}
.ha_c00147{height:71.754000px;}
.h11_c00147{height:71.766000px;}
.h18_c00147{height:75.360000px;}
.h16_c00147{height:75.750000px;}
.h14_c00147{height:76.860000px;}
.h1a_c00147{height:76.920000px;}
.h9_c00147{height:76.980000px;}
.h23_c00147{height:77.040000px;}
.h10_c00147{height:105.354000px;}
.h24_c00147{height:107.028000px;}
.h1c_c00147{height:109.878000px;}
.h21_c00147{height:110.394000px;}
.h1d_c00147{height:116.106000px;}
.h0_c00147{height:1263.000000px;}
.w1_c00147{width:55.875000px;}
.w6_c00147{width:155.625000px;}
.w2_c00147{width:205.530000px;}
.w4_c00147{width:397.575000px;}
.w5_c00147{width:496.575000px;}
.w3_c00147{width:527.730000px;}
.w7_c00147{width:598.605000px;}
.w0_c00147{width:2551.500000px;}
.x0_c00147{left:0.000000px;}
.x5_c00147{left:7.875600px;}
.x29_c00147{left:13.500750px;}
.x57_c00147{left:30.000600px;}
.x58_c00147{left:50.615100px;}
.x41_c00147{left:61.500600px;}
.x2a_c00147{left:88.547250px;}
.x42_c00147{left:158.660100px;}
.x34_c00147{left:172.155600px;}
.x50_c00147{left:177.750600px;}
.x2_c00147{left:193.818600px;}
.x51_c00147{left:204.750600px;}
.x64_c00147{left:217.155600px;}
.x65_c00147{left:257.655600px;}
.x3_c00147{left:260.973600px;}
.x8_c00147{left:262.850100px;}
.x7_c00147{left:267.723600px;}
.x53_c00147{left:268.848600px;}
.x24_c00147{left:279.729600px;}
.x2c_c00147{left:321.348600px;}
.x15_c00147{left:377.598600px;}
.x9_c00147{left:379.113600px;}
.x44_c00147{left:386.231100px;}
.x5c_c00147{left:417.348600px;}
.x18_c00147{left:423.348600px;}
.x43_c00147{left:430.848600px;}
.x3d_c00147{left:434.973600px;}
.x25_c00147{left:467.268750px;}
.x3e_c00147{left:470.640750px;}
.x35_c00147{left:471.768750px;}
.x5d_c00147{left:477.396600px;}
.x27_c00147{left:480.390750px;}
.x26_c00147{left:485.642250px;}
.x16_c00147{left:497.262600px;}
.x19_c00147{left:509.262600px;}
.x54_c00147{left:579.020250px;}
.x36_c00147{left:597.008250px;}
.x28_c00147{left:600.768000px;}
.x4a_c00147{left:604.521750px;}
.xa_c00147{left:633.390750px;}
.x2d_c00147{left:840.431250px;}
.x2b_c00147{left:863.313750px;}
.x45_c00147{left:926.333250px;}
.x5e_c00147{left:1010.343750px;}
.x5f_c00147{left:1014.096750px;}
.x60_c00147{left:1034.724750px;}
.x1b_c00147{left:1072.968600px;}
.x1c_c00147{left:1075.212600px;}
.x1a_c00147{left:1080.468600px;}
.x1d_c00147{left:1110.468600px;}
.x4c_c00147{left:1125.102600px;}
.x4b_c00147{left:1134.093600px;}
.x4d_c00147{left:1179.143100px;}
.xb_c00147{left:1197.138750px;}
.x20_c00147{left:1198.634250px;}
.xc_c00147{left:1200.141750px;}
.x1f_c00147{left:1201.631250px;}
.xd_c00147{left:1204.646250px;}
.x1e_c00147{left:1214.388750px;}
.x55_c00147{left:1223.013750px;}
.x21_c00147{left:1240.254750px;}
.x2f_c00147{left:1251.135750px;}
.x2e_c00147{left:1265.013750px;}
.xe_c00147{left:1274.388750px;}
.x30_c00147{left:1286.006250px;}
.x10_c00147{left:1295.010750px;}
.x3f_c00147{left:1296.884250px;}
.xf_c00147{left:1312.263750px;}
.x12_c00147{left:1323.509250px;}
.x11_c00147{left:1328.382750px;}
.x37_c00147{left:1332.888750px;}
.x39_c00147{left:1335.144750px;}
.x38_c00147{left:1337.016750px;}
.x3a_c00147{left:1339.272750px;}
.x46_c00147{left:1351.638750px;}
.x61_c00147{left:1358.013750px;}
.x31_c00147{left:1389.888750px;}
.x22_c00147{left:1404.918750px;}
.x47_c00147{left:1414.656750px;}
.x56_c00147{left:1449.543000px;}
.x4e_c00147{left:1457.042250px;}
.x13_c00147{left:1458.543750px;}
.x32_c00147{left:1487.795250px;}
.x3b_c00147{left:1546.668750px;}
.x48_c00147{left:1578.168750px;}
.x62_c00147{left:1714.338750px;}
.x23_c00147{left:1720.706250px;}
.x1_c00147{left:1736.838750px;}
.x17_c00147{left:1765.689750px;}
.x63_c00147{left:1776.588000px;}
.x59_c00147{left:1781.838750px;}
.x5a_c00147{left:1800.968250px;}
.x33_c00147{left:1847.463000px;}
.x4f_c00147{left:1878.618000px;}
.x14_c00147{left:1905.998100px;}
.x3c_c00147{left:1953.999600px;}
.x40_c00147{left:1957.743600px;}
.x49_c00147{left:1959.249600px;}
.x4_c00147{left:1976.868000px;}
.x52_c00147{left:2028.612600px;}
.x6_c00147{left:2041.368600px;}
.x5b_c00147{left:2230.781100px;}
@media print{
.v6_c00147{vertical-align:-1.386667pt;}
.v0_c00147{vertical-align:0.000000pt;}
.v5_c00147{vertical-align:1.333333pt;}
.vc_c00147{vertical-align:13.333333pt;}
.v1_c00147{vertical-align:18.789867pt;}
.v4_c00147{vertical-align:25.333333pt;}
.v3_c00147{vertical-align:26.666667pt;}
.v2_c00147{vertical-align:28.106667pt;}
.v7_c00147{vertical-align:29.333333pt;}
.va_c00147{vertical-align:53.328000pt;}
.vb_c00147{vertical-align:54.816000pt;}
.v8_c00147{vertical-align:57.349333pt;}
.v9_c00147{vertical-align:58.666667pt;}
.ls7c_c00147{letter-spacing:-1.066667pt;}
.ls5d_c00147{letter-spacing:-0.624000pt;}
.ls54_c00147{letter-spacing:-0.597333pt;}
.ls76_c00147{letter-spacing:-0.566400pt;}
.ls6c_c00147{letter-spacing:-0.542400pt;}
.ls55_c00147{letter-spacing:-0.537600pt;}
.ls71_c00147{letter-spacing:-0.528000pt;}
.ls75_c00147{letter-spacing:-0.489600pt;}
.ls63_c00147{letter-spacing:-0.480000pt;}
.ls51_c00147{letter-spacing:-0.458667pt;}
.ls5e_c00147{letter-spacing:-0.456533pt;}
.ls5a_c00147{letter-spacing:-0.446400pt;}
.ls65_c00147{letter-spacing:-0.441600pt;}
.ls64_c00147{letter-spacing:-0.436800pt;}
.ls67_c00147{letter-spacing:-0.435200pt;}
.ls74_c00147{letter-spacing:-0.432000pt;}
.ls6d_c00147{letter-spacing:-0.427200pt;}
.ls73_c00147{letter-spacing:-0.417600pt;}
.ls6e_c00147{letter-spacing:-0.388800pt;}
.ls68_c00147{letter-spacing:-0.350400pt;}
.ls6f_c00147{letter-spacing:-0.336000pt;}
.ls79_c00147{letter-spacing:-0.330667pt;}
.ls56_c00147{letter-spacing:-0.280000pt;}
.ls6a_c00147{letter-spacing:-0.278400pt;}
.ls78_c00147{letter-spacing:-0.260000pt;}
.ls69_c00147{letter-spacing:-0.163200pt;}
.ls58_c00147{letter-spacing:-0.156800pt;}
.ls59_c00147{letter-spacing:-0.123200pt;}
.ls61_c00147{letter-spacing:-0.120000pt;}
.ls57_c00147{letter-spacing:-0.104533pt;}
.ls6b_c00147{letter-spacing:-0.086400pt;}
.ls53_c00147{letter-spacing:-0.076800pt;}
.ls5b_c00147{letter-spacing:-0.048000pt;}
.ls62_c00147{letter-spacing:-0.043200pt;}
.ls66_c00147{letter-spacing:-0.012800pt;}
.ls5f_c00147{letter-spacing:-0.008533pt;}
.ls72_c00147{letter-spacing:-0.004800pt;}
.ls52_c00147{letter-spacing:0.000000pt;}
.ls38_c00147{letter-spacing:0.009600pt;}
.ls10_c00147{letter-spacing:0.014400pt;}
.ls60_c00147{letter-spacing:0.019200pt;}
.ls7b_c00147{letter-spacing:0.021333pt;}
.lsc_c00147{letter-spacing:0.024000pt;}
.ls4c_c00147{letter-spacing:0.026667pt;}
.ls6_c00147{letter-spacing:0.028800pt;}
.lsa_c00147{letter-spacing:0.033600pt;}
.ls12_c00147{letter-spacing:0.038400pt;}
.ls3_c00147{letter-spacing:0.043200pt;}
.ls11_c00147{letter-spacing:0.048000pt;}
.lsf_c00147{letter-spacing:0.052800pt;}
.ls4_c00147{letter-spacing:0.057600pt;}
.ls1c_c00147{letter-spacing:0.062400pt;}
.lsd_c00147{letter-spacing:0.067200pt;}
.ls1e_c00147{letter-spacing:0.072000pt;}
.ls23_c00147{letter-spacing:0.076800pt;}
.ls7a_c00147{letter-spacing:0.080000pt;}
.ls33_c00147{letter-spacing:0.086400pt;}
.ls21_c00147{letter-spacing:0.091200pt;}
.ls9_c00147{letter-spacing:0.096000pt;}
.ls43_c00147{letter-spacing:0.100800pt;}
.ls49_c00147{letter-spacing:0.101333pt;}
.ls2f_c00147{letter-spacing:0.110400pt;}
.ls29_c00147{letter-spacing:0.115200pt;}
.ls16_c00147{letter-spacing:0.134400pt;}
.ls46_c00147{letter-spacing:0.148800pt;}
.lsb_c00147{letter-spacing:0.153600pt;}
.ls2a_c00147{letter-spacing:0.155200pt;}
.ls26_c00147{letter-spacing:0.168000pt;}
.ls4a_c00147{letter-spacing:0.192000pt;}
.ls48_c00147{letter-spacing:0.202667pt;}
.ls4e_c00147{letter-spacing:0.208000pt;}
.ls2b_c00147{letter-spacing:0.213333pt;}
.ls77_c00147{letter-spacing:0.218667pt;}
.ls4d_c00147{letter-spacing:0.224000pt;}
.ls50_c00147{letter-spacing:0.234667pt;}
.ls4f_c00147{letter-spacing:0.245333pt;}
.ls4b_c00147{letter-spacing:0.250667pt;}
.ls1_c00147{letter-spacing:0.277333pt;}
.ls47_c00147{letter-spacing:0.304000pt;}
.ls2_c00147{letter-spacing:0.320000pt;}
.ls1a_c00147{letter-spacing:0.400000pt;}
.ls8_c00147{letter-spacing:1.322667pt;}
.ls17_c00147{letter-spacing:111.999467pt;}
.ls1b_c00147{letter-spacing:133.440533pt;}
.ls42_c00147{letter-spacing:157.333333pt;}
.ls31_c00147{letter-spacing:193.386667pt;}
.ls1f_c00147{letter-spacing:264.000000pt;}
.ls5c_c00147{letter-spacing:273.333333pt;}
.ls24_c00147{letter-spacing:328.106667pt;}
.ls25_c00147{letter-spacing:332.000000pt;}
.ls40_c00147{letter-spacing:349.493867pt;}
.ls36_c00147{letter-spacing:417.440000pt;}
.ls32_c00147{letter-spacing:445.493867pt;}
.ls14_c00147{letter-spacing:473.332800pt;}
.ls37_c00147{letter-spacing:481.280000pt;}
.ls3c_c00147{letter-spacing:505.333867pt;}
.ls45_c00147{letter-spacing:534.773333pt;}
.ls30_c00147{letter-spacing:633.440000pt;}
.ls20_c00147{letter-spacing:685.493333pt;}
.ls41_c00147{letter-spacing:752.106667pt;}
.ls70_c00147{letter-spacing:825.440000pt;}
.ls5_c00147{letter-spacing:868.107200pt;}
.ls22_c00147{letter-spacing:868.160000pt;}
.ls3a_c00147{letter-spacing:881.440000pt;}
.ls3b_c00147{letter-spacing:897.493333pt;}
.ls39_c00147{letter-spacing:913.493867pt;}
.ls3e_c00147{letter-spacing:936.160533pt;}
.ls19_c00147{letter-spacing:954.826667pt;}
.ls7_c00147{letter-spacing:958.933333pt;}
.ls13_c00147{letter-spacing:988.266133pt;}
.ls2c_c00147{letter-spacing:1005.599467pt;}
.ls2e_c00147{letter-spacing:1009.439467pt;}
.ls18_c00147{letter-spacing:1025.493867pt;}
.ls44_c00147{letter-spacing:1081.493333pt;}
.ls34_c00147{letter-spacing:1230.932800pt;}
.ls3f_c00147{letter-spacing:1262.772800pt;}
.ls35_c00147{letter-spacing:1276.159467pt;}
.ls3d_c00147{letter-spacing:1316.266133pt;}
.ls2d_c00147{letter-spacing:1336.160533pt;}
.ls28_c00147{letter-spacing:1372.266133pt;}
.lse_c00147{letter-spacing:1485.599467pt;}
.ls27_c00147{letter-spacing:1524.266133pt;}
.ls15_c00147{letter-spacing:2015.093867pt;}
.ls1d_c00147{letter-spacing:2243.039467pt;}
.ls0_c00147{letter-spacing:3794.027200pt;}
.ws5_c00147{word-spacing:-13.333333pt;}
.ws2_c00147{word-spacing:-12.153600pt;}
.ws1_c00147{word-spacing:-12.134400pt;}
.ws3_c00147{word-spacing:-12.048000pt;}
.ws6_c00147{word-spacing:-11.568000pt;}
.ws0_c00147{word-spacing:-11.553600pt;}
.ws4_c00147{word-spacing:-10.666667pt;}
.ws7_c00147{word-spacing:-8.666667pt;}
.ws4b_c00147{word-spacing:-1.584000pt;}
.ws45_c00147{word-spacing:-0.405600pt;}
.ws47_c00147{word-spacing:-0.304000pt;}
.ws4e_c00147{word-spacing:-0.266667pt;}
.ws52_c00147{word-spacing:-0.245333pt;}
.ws53_c00147{word-spacing:-0.229333pt;}
.ws34_c00147{word-spacing:-0.213333pt;}
.ws51_c00147{word-spacing:-0.208000pt;}
.ws48_c00147{word-spacing:-0.202667pt;}
.ws4c_c00147{word-spacing:-0.197333pt;}
.ws4a_c00147{word-spacing:-0.192000pt;}
.ws2f_c00147{word-spacing:-0.168000pt;}
.ws42_c00147{word-spacing:-0.153600pt;}
.ws44_c00147{word-spacing:-0.148800pt;}
.ws1f_c00147{word-spacing:-0.134400pt;}
.ws33_c00147{word-spacing:-0.115200pt;}
.ws36_c00147{word-spacing:-0.110400pt;}
.ws49_c00147{word-spacing:-0.101333pt;}
.ws41_c00147{word-spacing:-0.100800pt;}
.ws18_c00147{word-spacing:-0.096000pt;}
.ws2c_c00147{word-spacing:-0.091200pt;}
.ws10_c00147{word-spacing:-0.086400pt;}
.ws4d_c00147{word-spacing:-0.080000pt;}
.ws2d_c00147{word-spacing:-0.076800pt;}
.ws2b_c00147{word-spacing:-0.072000pt;}
.ws1b_c00147{word-spacing:-0.067200pt;}
.ws28_c00147{word-spacing:-0.062400pt;}
.wsf_c00147{word-spacing:-0.057600pt;}
.ws11_c00147{word-spacing:-0.052800pt;}
.ws21_c00147{word-spacing:-0.048000pt;}
.wsd_c00147{word-spacing:-0.043200pt;}
.ws1e_c00147{word-spacing:-0.038400pt;}
.ws19_c00147{word-spacing:-0.033600pt;}
.ws12_c00147{word-spacing:-0.028800pt;}
.ws4f_c00147{word-spacing:-0.026667pt;}
.ws1a_c00147{word-spacing:-0.024000pt;}
.ws29_c00147{word-spacing:-0.019200pt;}
.ws1d_c00147{word-spacing:-0.014400pt;}
.ws3c_c00147{word-spacing:-0.009600pt;}
.ws9_c00147{word-spacing:0.000000pt;}
.ws3f_c00147{word-spacing:0.004800pt;}
.ws50_c00147{word-spacing:0.005333pt;}
.ws22_c00147{word-spacing:0.008533pt;}
.ws30_c00147{word-spacing:0.012800pt;}
.ws23_c00147{word-spacing:0.043200pt;}
.ws1c_c00147{word-spacing:0.048000pt;}
.wse_c00147{word-spacing:0.076800pt;}
.ws38_c00147{word-spacing:0.086400pt;}
.ws15_c00147{word-spacing:0.104533pt;}
.ws26_c00147{word-spacing:0.120000pt;}
.ws17_c00147{word-spacing:0.123200pt;}
.ws16_c00147{word-spacing:0.156800pt;}
.ws35_c00147{word-spacing:0.163200pt;}
.ws37_c00147{word-spacing:0.278400pt;}
.ws46_c00147{word-spacing:0.330667pt;}
.ws3d_c00147{word-spacing:0.336000pt;}
.ws32_c00147{word-spacing:0.350400pt;}
.ws3b_c00147{word-spacing:0.388800pt;}
.ws40_c00147{word-spacing:0.417600pt;}
.ws3a_c00147{word-spacing:0.427200pt;}
.ws31_c00147{word-spacing:0.435200pt;}
.ws2a_c00147{word-spacing:0.436800pt;}
.ws2e_c00147{word-spacing:0.441600pt;}
.ws24_c00147{word-spacing:0.446400pt;}
.ws8_c00147{word-spacing:0.458667pt;}
.ws27_c00147{word-spacing:0.480000pt;}
.ws43_c00147{word-spacing:0.489600pt;}
.ws3e_c00147{word-spacing:0.528000pt;}
.ws14_c00147{word-spacing:0.537600pt;}
.ws39_c00147{word-spacing:0.542400pt;}
.ws13_c00147{word-spacing:0.597333pt;}
.ws20_c00147{word-spacing:0.624000pt;}
.ws54_c00147{word-spacing:1.152000pt;}
.wsa_c00147{word-spacing:86.346667pt;}
.wsc_c00147{word-spacing:87.696000pt;}
.wsb_c00147{word-spacing:93.013333pt;}
.ws25_c00147{word-spacing:114.213333pt;}
._18_c00147{margin-left:-824.640000pt;}
._12_c00147{margin-left:-272.181333pt;}
._c_c00147{margin-left:-6.677333pt;}
._10_c00147{margin-left:-5.216000pt;}
._15_c00147{margin-left:-2.215467pt;}
._2_c00147{margin-left:-1.322667pt;}
._0_c00147{width:1.120000pt;}
._1_c00147{width:2.026667pt;}
._6_c00147{width:2.954667pt;}
._9_c00147{width:3.989333pt;}
._5_c00147{width:5.408000pt;}
._3_c00147{width:6.709333pt;}
._7_c00147{width:8.245333pt;}
._e_c00147{width:9.525333pt;}
._8_c00147{width:10.762667pt;}
._f_c00147{width:14.069333pt;}
._4_c00147{width:15.936000pt;}
._11_c00147{width:29.600000pt;}
._17_c00147{width:34.346667pt;}
._14_c00147{width:38.267200pt;}
._a_c00147{width:51.989333pt;}
._b_c00147{width:70.762667pt;}
._d_c00147{width:92.096000pt;}
._13_c00147{width:1010.091733pt;}
._16_c00147{width:1085.173867pt;}
.fs6_c00147{font-size:34.666667pt;}
.fs4_c00147{font-size:37.333333pt;}
.fs2_c00147{font-size:42.666667pt;}
.fs3_c00147{font-size:48.000000pt;}
.fs0_c00147{font-size:53.333333pt;}
.fs5_c00147{font-size:58.666667pt;}
.fs1_c00147{font-size:64.000000pt;}
.fs7_c00147{font-size:69.333333pt;}
.y0_c00147{bottom:0.000000pt;}
.y5e_c00147{bottom:3.004000pt;}
.y8_c00147{bottom:3.666667pt;}
.y47_c00147{bottom:7.668000pt;}
.y55_c00147{bottom:9.665333pt;}
.y6a_c00147{bottom:15.334667pt;}
.y2f_c00147{bottom:16.666667pt;}
.y5d_c00147{bottom:16.672000pt;}
.y46_c00147{bottom:21.000000pt;}
.y54_c00147{bottom:23.333333pt;}
.y39_c00147{bottom:23.373333pt;}
.y69_c00147{bottom:28.666667pt;}
.y2e_c00147{bottom:29.998667pt;}
.y5c_c00147{bottom:30.040000pt;}
.y2d_c00147{bottom:43.666667pt;}
.y3_c00147{bottom:51.669200pt;}
.y79_c00147{bottom:74.700000pt;}
.y78_c00147{bottom:88.366667pt;}
.y77_c00147{bottom:231.400000pt;}
.y76_c00147{bottom:249.733333pt;}
.y75_c00147{bottom:264.733333pt;}
.y74_c00147{bottom:279.760000pt;}
.y73_c00147{bottom:294.760000pt;}
.y72_c00147{bottom:309.760000pt;}
.y71_c00147{bottom:324.760000pt;}
.y70_c00147{bottom:339.760000pt;}
.y6f_c00147{bottom:354.760000pt;}
.y6e_c00147{bottom:369.773333pt;}
.y6d_c00147{bottom:385.440000pt;}
.y6c_c00147{bottom:402.800000pt;}
.y6b_c00147{bottom:417.800000pt;}
.y68_c00147{bottom:429.800000pt;}
.y64_c00147{bottom:438.133333pt;}
.y67_c00147{bottom:444.800000pt;}
.y61_c00147{bottom:445.134667pt;}
.y65_c00147{bottom:451.466667pt;}
.y63_c00147{bottom:451.801333pt;}
.y60_c00147{bottom:458.466667pt;}
.y66_c00147{bottom:459.133333pt;}
.y62_c00147{bottom:465.133333pt;}
.y5b_c00147{bottom:481.800000pt;}
.y5a_c00147{bottom:491.469333pt;}
.y59_c00147{bottom:498.133333pt;}
.y5f_c00147{bottom:505.173333pt;}
.y58_c00147{bottom:526.169333pt;}
.y57_c00147{bottom:526.841333pt;}
.y56_c00147{bottom:533.173333pt;}
.y53_c00147{bottom:552.173333pt;}
.y52_c00147{bottom:555.173333pt;}
.y4f_c00147{bottom:561.838667pt;}
.y4e_c00147{bottom:568.506667pt;}
.y51_c00147{bottom:568.841333pt;}
.y50_c00147{bottom:582.173333pt;}
.y4c_c00147{bottom:596.509333pt;}
.y49_c00147{bottom:603.174667pt;}
.y4d_c00147{bottom:609.506667pt;}
.y4b_c00147{bottom:609.841333pt;}
.y48_c00147{bottom:616.506667pt;}
.y4a_c00147{bottom:623.533333pt;}
.y45_c00147{bottom:634.533333pt;}
.y44_c00147{bottom:638.866667pt;}
.y42_c00147{bottom:641.196000pt;}
.y43_c00147{bottom:642.201333pt;}
.y41_c00147{bottom:655.200000pt;}
.y3f_c00147{bottom:673.866667pt;}
.y3b_c00147{bottom:684.868000pt;}
.y3e_c00147{bottom:685.866667pt;}
.y40_c00147{bottom:691.200000pt;}
.y3d_c00147{bottom:697.866667pt;}
.y3a_c00147{bottom:698.200000pt;}
.y3c_c00147{bottom:709.866667pt;}
.y38_c00147{bottom:719.866667pt;}
.y36_c00147{bottom:722.868000pt;}
.y35_c00147{bottom:736.560000pt;}
.y32_c00147{bottom:736.562667pt;}
.y37_c00147{bottom:742.893333pt;}
.y31_c00147{bottom:743.240000pt;}
.y34_c00147{bottom:749.904000pt;}
.y33_c00147{bottom:763.560000pt;}
.y2c_c00147{bottom:774.560000pt;}
.y2b_c00147{bottom:777.560000pt;}
.y2a_c00147{bottom:791.228000pt;}
.y26_c00147{bottom:797.894667pt;}
.y30_c00147{bottom:804.226667pt;}
.y29_c00147{bottom:804.560000pt;}
.y25_c00147{bottom:811.226667pt;}
.y28_c00147{bottom:818.228000pt;}
.y27_c00147{bottom:831.560000pt;}
.y23_c00147{bottom:845.934667pt;}
.y1f_c00147{bottom:848.266667pt;}
.y1b_c00147{bottom:859.265333pt;}
.y22_c00147{bottom:859.266667pt;}
.y1e_c00147{bottom:860.266667pt;}
.y24_c00147{bottom:865.933333pt;}
.y1d_c00147{bottom:872.266667pt;}
.y1a_c00147{bottom:872.933333pt;}
.y21_c00147{bottom:872.934667pt;}
.y1c_c00147{bottom:884.266667pt;}
.y20_c00147{bottom:886.266667pt;}
.y19_c00147{bottom:900.601333pt;}
.y18_c00147{bottom:913.933333pt;}
.y17_c00147{bottom:928.269200pt;}
.y12_c00147{bottom:934.264000pt;}
.y16_c00147{bottom:941.601200pt;}
.yb_c00147{bottom:941.602667pt;}
.y11_c00147{bottom:946.266667pt;}
.yd_c00147{bottom:948.268000pt;}
.yc_c00147{bottom:954.933333pt;}
.y15_c00147{bottom:955.269200pt;}
.ya_c00147{bottom:955.270667pt;}
.y10_c00147{bottom:956.598667pt;}
.yf_c00147{bottom:967.294667pt;}
.y14_c00147{bottom:968.625200pt;}
.y9_c00147{bottom:968.626667pt;}
.ye_c00147{bottom:977.626667pt;}
.y13_c00147{bottom:982.293200pt;}
.y7_c00147{bottom:993.293333pt;}
.y6_c00147{bottom:996.960000pt;}
.y5_c00147{bottom:1013.293200pt;}
.y4_c00147{bottom:1029.960000pt;}
.y2_c00147{bottom:1044.293200pt;}
.y1_c00147{bottom:1064.626667pt;}
.h6_c00147{height:15.000000pt;}
.hc_c00147{height:25.984000pt;}
.h13_c00147{height:29.696000pt;}
.hb_c00147{height:31.360000pt;}
.h4_c00147{height:33.408000pt;}
.h12_c00147{height:35.840000pt;}
.hd_c00147{height:35.850667pt;}
.h1e_c00147{height:36.000000pt;}
.h26_c00147{height:37.104000pt;}
.h8_c00147{height:37.109333pt;}
.he_c00147{height:37.109867pt;}
.hf_c00147{height:37.114667pt;}
.h1_c00147{height:37.120000pt;}
.h20_c00147{height:37.125333pt;}
.h22_c00147{height:37.136000pt;}
.h29_c00147{height:37.461333pt;}
.h2b_c00147{height:38.400000pt;}
.h7_c00147{height:40.320000pt;}
.h1f_c00147{height:40.333333pt;}
.h25_c00147{height:40.366667pt;}
.h17_c00147{height:41.653333pt;}
.h2_c00147{height:43.264000pt;}
.h5_c00147{height:44.544000pt;}
.h28_c00147{height:44.800000pt;}
.h3_c00147{height:49.509867pt;}
.h27_c00147{height:51.333333pt;}
.h1b_c00147{height:54.033333pt;}
.h2a_c00147{height:58.240000pt;}
.h19_c00147{height:62.442667pt;}
.h15_c00147{height:62.448000pt;}
.ha_c00147{height:63.781333pt;}
.h11_c00147{height:63.792000pt;}
.h18_c00147{height:66.986667pt;}
.h16_c00147{height:67.333333pt;}
.h14_c00147{height:68.320000pt;}
.h1a_c00147{height:68.373333pt;}
.h9_c00147{height:68.426667pt;}
.h23_c00147{height:68.480000pt;}
.h10_c00147{height:93.648000pt;}
.h24_c00147{height:95.136000pt;}
.h1c_c00147{height:97.669333pt;}
.h21_c00147{height:98.128000pt;}
.h1d_c00147{height:103.205333pt;}
.h0_c00147{height:1122.666667pt;}
.w1_c00147{width:49.666667pt;}
.w6_c00147{width:138.333333pt;}
.w2_c00147{width:182.693333pt;}
.w4_c00147{width:353.400000pt;}
.w5_c00147{width:441.400000pt;}
.w3_c00147{width:469.093333pt;}
.w7_c00147{width:532.093333pt;}
.w0_c00147{width:2268.000000pt;}
.x0_c00147{left:0.000000pt;}
.x5_c00147{left:7.000533pt;}
.x29_c00147{left:12.000667pt;}
.x57_c00147{left:26.667200pt;}
.x58_c00147{left:44.991200pt;}
.x41_c00147{left:54.667200pt;}
.x2a_c00147{left:78.708667pt;}
.x42_c00147{left:141.031200pt;}
.x34_c00147{left:153.027200pt;}
.x50_c00147{left:158.000533pt;}
.x2_c00147{left:172.283200pt;}
.x51_c00147{left:182.000533pt;}
.x64_c00147{left:193.027200pt;}
.x65_c00147{left:229.027200pt;}
.x3_c00147{left:231.976533pt;}
.x8_c00147{left:233.644533pt;}
.x7_c00147{left:237.976533pt;}
.x53_c00147{left:238.976533pt;}
.x24_c00147{left:248.648533pt;}
.x2c_c00147{left:285.643200pt;}
.x15_c00147{left:335.643200pt;}
.x9_c00147{left:336.989867pt;}
.x44_c00147{left:343.316533pt;}
.x5c_c00147{left:370.976533pt;}
.x18_c00147{left:376.309867pt;}
.x43_c00147{left:382.976533pt;}
.x3d_c00147{left:386.643200pt;}
.x25_c00147{left:415.350000pt;}
.x3e_c00147{left:418.347333pt;}
.x35_c00147{left:419.350000pt;}
.x5d_c00147{left:424.352533pt;}
.x27_c00147{left:427.014000pt;}
.x26_c00147{left:431.682000pt;}
.x16_c00147{left:442.011200pt;}
.x19_c00147{left:452.677867pt;}
.x54_c00147{left:514.684667pt;}
.x36_c00147{left:530.674000pt;}
.x28_c00147{left:534.016000pt;}
.x4a_c00147{left:537.352667pt;}
.xa_c00147{left:563.014000pt;}
.x2d_c00147{left:747.050000pt;}
.x2b_c00147{left:767.390000pt;}
.x45_c00147{left:823.407333pt;}
.x5e_c00147{left:898.083333pt;}
.x5f_c00147{left:901.419333pt;}
.x60_c00147{left:919.755333pt;}
.x1b_c00147{left:953.749867pt;}
.x1c_c00147{left:955.744533pt;}
.x1a_c00147{left:960.416533pt;}
.x1d_c00147{left:987.083200pt;}
.x4c_c00147{left:1000.091200pt;}
.x4b_c00147{left:1008.083200pt;}
.x4d_c00147{left:1048.127200pt;}
.xb_c00147{left:1064.123333pt;}
.x20_c00147{left:1065.452667pt;}
.xc_c00147{left:1066.792667pt;}
.x1f_c00147{left:1068.116667pt;}
.xd_c00147{left:1070.796667pt;}
.x1e_c00147{left:1079.456667pt;}
.x55_c00147{left:1087.123333pt;}
.x21_c00147{left:1102.448667pt;}
.x2f_c00147{left:1112.120667pt;}
.x2e_c00147{left:1124.456667pt;}
.xe_c00147{left:1132.790000pt;}
.x30_c00147{left:1143.116667pt;}
.x10_c00147{left:1151.120667pt;}
.x3f_c00147{left:1152.786000pt;}
.xf_c00147{left:1166.456667pt;}
.x12_c00147{left:1176.452667pt;}
.x11_c00147{left:1180.784667pt;}
.x37_c00147{left:1184.790000pt;}
.x39_c00147{left:1186.795333pt;}
.x38_c00147{left:1188.459333pt;}
.x3a_c00147{left:1190.464667pt;}
.x46_c00147{left:1201.456667pt;}
.x61_c00147{left:1207.123333pt;}
.x31_c00147{left:1235.456667pt;}
.x22_c00147{left:1248.816667pt;}
.x47_c00147{left:1257.472667pt;}
.x56_c00147{left:1288.482667pt;}
.x4e_c00147{left:1295.148667pt;}
.x13_c00147{left:1296.483333pt;}
.x32_c00147{left:1322.484667pt;}
.x3b_c00147{left:1374.816667pt;}
.x48_c00147{left:1402.816667pt;}
.x62_c00147{left:1523.856667pt;}
.x23_c00147{left:1529.516667pt;}
.x1_c00147{left:1543.856667pt;}
.x17_c00147{left:1569.502000pt;}
.x63_c00147{left:1579.189333pt;}
.x59_c00147{left:1583.856667pt;}
.x5a_c00147{left:1600.860667pt;}
.x33_c00147{left:1642.189333pt;}
.x4f_c00147{left:1669.882667pt;}
.x14_c00147{left:1694.220533pt;}
.x3c_c00147{left:1736.888533pt;}
.x40_c00147{left:1740.216533pt;}
.x49_c00147{left:1741.555200pt;}
.x4_c00147{left:1757.216000pt;}
.x52_c00147{left:1803.211200pt;}
.x6_c00147{left:1814.549867pt;}
.x5b_c00147{left:1982.916533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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:1263.000000px;}
.w0_c00148{width:2551.500000px;}
.x0_c00148{left:0.000000px;}
@media print{
.y0_c00148{bottom:0.000000pt;}
.h0_c00148{height:1122.666667pt;}
.w0_c00148{width:2268.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;}
@font-face{font-family:ff1_c00149;src:url('chunks/assets/font_325992becc89d59ff1497172.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00149;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00149;src:url('chunks/assets/font_5f918d7e478d18d2c8c9b06b.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00149;src:url('chunks/assets/font_f7dffa37e5fa0198f640b256.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00149;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;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_c00149;src:url('chunks/assets/font_b31ddcb512d6dc1829e20fa0.woff2')format("woff");}.ff6_c00149{font-family:ff6_c00149;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_c00149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.v1_c00149{vertical-align:29.880000px;}
.ls18_c00149{letter-spacing:-0.151200px;}
.ls1d_c00149{letter-spacing:-0.093744px;}
.ls1c_c00149{letter-spacing:-0.054684px;}
.ls16_c00149{letter-spacing:-0.048096px;}
.ls20_c00149{letter-spacing:-0.028800px;}
.ls22_c00149{letter-spacing:-0.021600px;}
.ls15_c00149{letter-spacing:-0.018036px;}
.ls28_c00149{letter-spacing:-0.015552px;}
.ls1a_c00149{letter-spacing:-0.014400px;}
.ls1b_c00149{letter-spacing:-0.007812px;}
.ls1f_c00149{letter-spacing:-0.007200px;}
.ls25_c00149{letter-spacing:-0.003888px;}
.ls17_c00149{letter-spacing:0.000000px;}
.ls14_c00149{letter-spacing:0.004788px;}
.ls23_c00149{letter-spacing:0.007200px;}
.lsa_c00149{letter-spacing:0.014364px;}
.ls4_c00149{letter-spacing:0.014400px;}
.ls27_c00149{letter-spacing:0.019152px;}
.ls9_c00149{letter-spacing:0.021600px;}
.ls3_c00149{letter-spacing:0.025164px;}
.ls13_c00149{letter-spacing:0.028728px;}
.ls5_c00149{letter-spacing:0.028800px;}
.ls7_c00149{letter-spacing:0.031248px;}
.ls11_c00149{letter-spacing:0.033516px;}
.ls0_c00149{letter-spacing:0.036072px;}
.lse_c00149{letter-spacing:0.038304px;}
.ls1e_c00149{letter-spacing:0.043200px;}
.lsf_c00149{letter-spacing:0.047880px;}
.ls2_c00149{letter-spacing:0.050328px;}
.ls8_c00149{letter-spacing:0.054756px;}
.lsd_c00149{letter-spacing:0.057456px;}
.ls10_c00149{letter-spacing:0.071820px;}
.lsb_c00149{letter-spacing:0.075960px;}
.ls21_c00149{letter-spacing:0.093600px;}
.ls19_c00149{letter-spacing:0.101556px;}
.lsc_c00149{letter-spacing:0.114912px;}
.ls26_c00149{letter-spacing:0.346032px;}
.ls12_c00149{letter-spacing:0.435960px;}
.ls24_c00149{letter-spacing:13.339368px;}
.ls1_c00149{letter-spacing:23.291280px;}
.ls6_c00149{letter-spacing:83.041560px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00149{word-spacing:-19.631556px;}
.ws2_c00149{word-spacing:-19.561248px;}
.ws1_c00149{word-spacing:-19.522188px;}
.ws4_c00149{word-spacing:-18.000000px;}
.ws6_c00149{word-spacing:-13.358520px;}
.ws8_c00149{word-spacing:-13.310640px;}
.ws7_c00149{word-spacing:-11.154672px;}
.ws5_c00149{word-spacing:-10.804752px;}
.ws3_c00149{word-spacing:-10.584756px;}
.wse_c00149{word-spacing:-0.117432px;}
.ws22_c00149{word-spacing:-0.093600px;}
.ws31_c00149{word-spacing:-0.052668px;}
.ws17_c00149{word-spacing:-0.039060px;}
.ws35_c00149{word-spacing:-0.028728px;}
.ws21_c00149{word-spacing:-0.014400px;}
.ws32_c00149{word-spacing:-0.014364px;}
.ws34_c00149{word-spacing:-0.009576px;}
.ws2c_c00149{word-spacing:-0.007200px;}
.wsc_c00149{word-spacing:0.000000px;}
.ws33_c00149{word-spacing:0.004788px;}
.ws37_c00149{word-spacing:0.014364px;}
.ws2d_c00149{word-spacing:0.014400px;}
.ws36_c00149{word-spacing:0.019152px;}
.ws29_c00149{word-spacing:0.021600px;}
.wsd_c00149{word-spacing:0.033552px;}
.ws9_c00149{word-spacing:0.054108px;}
.ws20_c00149{word-spacing:0.072000px;}
.ws16_c00149{word-spacing:0.086400px;}
.wsa_c00149{word-spacing:0.108216px;}
.wsb_c00149{word-spacing:0.138276px;}
.ws12_c00149{word-spacing:2.534400px;}
.ws24_c00149{word-spacing:2.836800px;}
.ws23_c00149{word-spacing:2.858400px;}
.ws1f_c00149{word-spacing:5.119200px;}
.ws1e_c00149{word-spacing:5.126400px;}
.wsf_c00149{word-spacing:6.494400px;}
.ws26_c00149{word-spacing:8.928000px;}
.ws25_c00149{word-spacing:9.007200px;}
.ws2a_c00149{word-spacing:11.606400px;}
.ws15_c00149{word-spacing:11.894400px;}
.ws2e_c00149{word-spacing:13.224456px;}
.ws2f_c00149{word-spacing:13.281912px;}
.ws30_c00149{word-spacing:13.301064px;}
.ws1d_c00149{word-spacing:16.531200px;}
.ws1c_c00149{word-spacing:16.567200px;}
.ws27_c00149{word-spacing:18.007200px;}
.ws28_c00149{word-spacing:18.050400px;}
.ws19_c00149{word-spacing:20.836800px;}
.ws18_c00149{word-spacing:20.937600px;}
.ws10_c00149{word-spacing:23.745600px;}
.ws11_c00149{word-spacing:23.918400px;}
.ws2b_c00149{word-spacing:26.647200px;}
.ws1b_c00149{word-spacing:29.865600px;}
.ws1a_c00149{word-spacing:29.880000px;}
.ws13_c00149{word-spacing:36.691200px;}
.ws14_c00149{word-spacing:36.705600px;}
._2_c00149{margin-left:-13.345200px;}
._0_c00149{margin-left:-1.142280px;}
._1_c00149{width:1.080000px;}
._3_c00149{width:13.662720px;}
.fc0_c00149{color:rgb(0,0,0);}
.fs7_c00149{font-size:38.880000px;}
.fs5_c00149{font-size:42.120000px;}
.fs6_c00149{font-size:47.880000px;}
.fs2_c00149{font-size:54.000000px;}
.fs0_c00149{font-size:60.120000px;}
.fs1_c00149{font-size:72.000000px;}
.fs3_c00149{font-size:78.120000px;}
.fs4_c00149{font-size:83.880000px;}
.y0_c00149{bottom:0.000000px;}
.y3_c00149{bottom:57.450450px;}
.y4_c00149{bottom:61.410450px;}
.y23_c00149{bottom:113.698470px;}
.y22_c00149{bottom:132.066180px;}
.y21_c00149{bottom:150.332400px;}
.y20_c00149{bottom:168.598620px;}
.y1f_c00149{bottom:186.968730px;}
.y1e_c00149{bottom:205.234950px;}
.y1d_c00149{bottom:219.000450px;}
.y1c_c00149{bottom:234.210450px;}
.y1b_c00149{bottom:254.910450px;}
.y1a_c00149{bottom:275.610450px;}
.y19_c00149{bottom:372.090450px;}
.y18_c00149{bottom:406.470450px;}
.y17_c00149{bottom:440.940450px;}
.y16_c00149{bottom:484.320600px;}
.y15_c00149{bottom:518.790450px;}
.y14_c00149{bottom:553.170450px;}
.y13_c00149{bottom:587.640450px;}
.y12_c00149{bottom:631.020450px;}
.y11_c00149{bottom:665.490450px;}
.y10_c00149{bottom:699.870450px;}
.yf_c00149{bottom:734.340450px;}
.ye_c00149{bottom:768.720450px;}
.yd_c00149{bottom:813.810450px;}
.yc_c00149{bottom:876.450450px;}
.yb_c00149{bottom:910.920450px;}
.ya_c00149{bottom:945.300450px;}
.y9_c00149{bottom:988.770450px;}
.y8_c00149{bottom:1023.150450px;}
.y7_c00149{bottom:1057.620450px;}
.y6_c00149{bottom:1092.000450px;}
.y5_c00149{bottom:1138.530450px;}
.y2_c00149{bottom:1173.810450px;}
.y1_c00149{bottom:1196.850450px;}
.h2_c00149{height:47.988281px;}
.h7_c00149{height:49.937344px;}
.h8_c00149{height:49.945264px;}
.h1_c00149{height:50.315273px;}
.h3_c00149{height:56.320312px;}
.h5_c00149{height:60.257812px;}
.h6_c00149{height:65.130820px;}
.h4_c00149{height:81.476719px;}
.h0_c00149{height:1263.000000px;}
.w1_c00149{width:892.500000px;}
.w0_c00149{width:892.830000px;}
.x0_c00149{left:0.000000px;}
.x2_c00149{left:127.620000px;}
.x1_c00149{left:145.440000px;}
.x6_c00149{left:154.620810px;}
.x5_c00149{left:180.810000px;}
.x4_c00149{left:435.240000px;}
.x3_c00149{left:446.490000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.v1_c00149{vertical-align:26.560000pt;}
.ls18_c00149{letter-spacing:-0.134400pt;}
.ls1d_c00149{letter-spacing:-0.083328pt;}
.ls1c_c00149{letter-spacing:-0.048608pt;}
.ls16_c00149{letter-spacing:-0.042752pt;}
.ls20_c00149{letter-spacing:-0.025600pt;}
.ls22_c00149{letter-spacing:-0.019200pt;}
.ls15_c00149{letter-spacing:-0.016032pt;}
.ls28_c00149{letter-spacing:-0.013824pt;}
.ls1a_c00149{letter-spacing:-0.012800pt;}
.ls1b_c00149{letter-spacing:-0.006944pt;}
.ls1f_c00149{letter-spacing:-0.006400pt;}
.ls25_c00149{letter-spacing:-0.003456pt;}
.ls17_c00149{letter-spacing:0.000000pt;}
.ls14_c00149{letter-spacing:0.004256pt;}
.ls23_c00149{letter-spacing:0.006400pt;}
.lsa_c00149{letter-spacing:0.012768pt;}
.ls4_c00149{letter-spacing:0.012800pt;}
.ls27_c00149{letter-spacing:0.017024pt;}
.ls9_c00149{letter-spacing:0.019200pt;}
.ls3_c00149{letter-spacing:0.022368pt;}
.ls13_c00149{letter-spacing:0.025536pt;}
.ls5_c00149{letter-spacing:0.025600pt;}
.ls7_c00149{letter-spacing:0.027776pt;}
.ls11_c00149{letter-spacing:0.029792pt;}
.ls0_c00149{letter-spacing:0.032064pt;}
.lse_c00149{letter-spacing:0.034048pt;}
.ls1e_c00149{letter-spacing:0.038400pt;}
.lsf_c00149{letter-spacing:0.042560pt;}
.ls2_c00149{letter-spacing:0.044736pt;}
.ls8_c00149{letter-spacing:0.048672pt;}
.lsd_c00149{letter-spacing:0.051072pt;}
.ls10_c00149{letter-spacing:0.063840pt;}
.lsb_c00149{letter-spacing:0.067520pt;}
.ls21_c00149{letter-spacing:0.083200pt;}
.ls19_c00149{letter-spacing:0.090272pt;}
.lsc_c00149{letter-spacing:0.102144pt;}
.ls26_c00149{letter-spacing:0.307584pt;}
.ls12_c00149{letter-spacing:0.387520pt;}
.ls24_c00149{letter-spacing:11.857216pt;}
.ls1_c00149{letter-spacing:20.703360pt;}
.ls6_c00149{letter-spacing:73.814720pt;}
.ws0_c00149{word-spacing:-17.450272pt;}
.ws2_c00149{word-spacing:-17.387776pt;}
.ws1_c00149{word-spacing:-17.353056pt;}
.ws4_c00149{word-spacing:-16.000000pt;}
.ws6_c00149{word-spacing:-11.874240pt;}
.ws8_c00149{word-spacing:-11.831680pt;}
.ws7_c00149{word-spacing:-9.915264pt;}
.ws5_c00149{word-spacing:-9.604224pt;}
.ws3_c00149{word-spacing:-9.408672pt;}
.wse_c00149{word-spacing:-0.104384pt;}
.ws22_c00149{word-spacing:-0.083200pt;}
.ws31_c00149{word-spacing:-0.046816pt;}
.ws17_c00149{word-spacing:-0.034720pt;}
.ws35_c00149{word-spacing:-0.025536pt;}
.ws21_c00149{word-spacing:-0.012800pt;}
.ws32_c00149{word-spacing:-0.012768pt;}
.ws34_c00149{word-spacing:-0.008512pt;}
.ws2c_c00149{word-spacing:-0.006400pt;}
.wsc_c00149{word-spacing:0.000000pt;}
.ws33_c00149{word-spacing:0.004256pt;}
.ws37_c00149{word-spacing:0.012768pt;}
.ws2d_c00149{word-spacing:0.012800pt;}
.ws36_c00149{word-spacing:0.017024pt;}
.ws29_c00149{word-spacing:0.019200pt;}
.wsd_c00149{word-spacing:0.029824pt;}
.ws9_c00149{word-spacing:0.048096pt;}
.ws20_c00149{word-spacing:0.064000pt;}
.ws16_c00149{word-spacing:0.076800pt;}
.wsa_c00149{word-spacing:0.096192pt;}
.wsb_c00149{word-spacing:0.122912pt;}
.ws12_c00149{word-spacing:2.252800pt;}
.ws24_c00149{word-spacing:2.521600pt;}
.ws23_c00149{word-spacing:2.540800pt;}
.ws1f_c00149{word-spacing:4.550400pt;}
.ws1e_c00149{word-spacing:4.556800pt;}
.wsf_c00149{word-spacing:5.772800pt;}
.ws26_c00149{word-spacing:7.936000pt;}
.ws25_c00149{word-spacing:8.006400pt;}
.ws2a_c00149{word-spacing:10.316800pt;}
.ws15_c00149{word-spacing:10.572800pt;}
.ws2e_c00149{word-spacing:11.755072pt;}
.ws2f_c00149{word-spacing:11.806144pt;}
.ws30_c00149{word-spacing:11.823168pt;}
.ws1d_c00149{word-spacing:14.694400pt;}
.ws1c_c00149{word-spacing:14.726400pt;}
.ws27_c00149{word-spacing:16.006400pt;}
.ws28_c00149{word-spacing:16.044800pt;}
.ws19_c00149{word-spacing:18.521600pt;}
.ws18_c00149{word-spacing:18.611200pt;}
.ws10_c00149{word-spacing:21.107200pt;}
.ws11_c00149{word-spacing:21.260800pt;}
.ws2b_c00149{word-spacing:23.686400pt;}
.ws1b_c00149{word-spacing:26.547200pt;}
.ws1a_c00149{word-spacing:26.560000pt;}
.ws13_c00149{word-spacing:32.614400pt;}
.ws14_c00149{word-spacing:32.627200pt;}
._2_c00149{margin-left:-11.862400pt;}
._0_c00149{margin-left:-1.015360pt;}
._1_c00149{width:0.960000pt;}
._3_c00149{width:12.144640pt;}
.fs7_c00149{font-size:34.560000pt;}
.fs5_c00149{font-size:37.440000pt;}
.fs6_c00149{font-size:42.560000pt;}
.fs2_c00149{font-size:48.000000pt;}
.fs0_c00149{font-size:53.440000pt;}
.fs1_c00149{font-size:64.000000pt;}
.fs3_c00149{font-size:69.440000pt;}
.fs4_c00149{font-size:74.560000pt;}
.y0_c00149{bottom:0.000000pt;}
.y3_c00149{bottom:51.067067pt;}
.y4_c00149{bottom:54.587067pt;}
.y23_c00149{bottom:101.065307pt;}
.y22_c00149{bottom:117.392160pt;}
.y21_c00149{bottom:133.628800pt;}
.y20_c00149{bottom:149.865440pt;}
.y1f_c00149{bottom:166.194427pt;}
.y1e_c00149{bottom:182.431067pt;}
.y1d_c00149{bottom:194.667067pt;}
.y1c_c00149{bottom:208.187067pt;}
.y1b_c00149{bottom:226.587067pt;}
.y1a_c00149{bottom:244.987067pt;}
.y19_c00149{bottom:330.747067pt;}
.y18_c00149{bottom:361.307067pt;}
.y17_c00149{bottom:391.947067pt;}
.y16_c00149{bottom:430.507200pt;}
.y15_c00149{bottom:461.147067pt;}
.y14_c00149{bottom:491.707067pt;}
.y13_c00149{bottom:522.347067pt;}
.y12_c00149{bottom:560.907067pt;}
.y11_c00149{bottom:591.547067pt;}
.y10_c00149{bottom:622.107067pt;}
.yf_c00149{bottom:652.747067pt;}
.ye_c00149{bottom:683.307067pt;}
.yd_c00149{bottom:723.387067pt;}
.yc_c00149{bottom:779.067067pt;}
.yb_c00149{bottom:809.707067pt;}
.ya_c00149{bottom:840.267067pt;}
.y9_c00149{bottom:878.907067pt;}
.y8_c00149{bottom:909.467067pt;}
.y7_c00149{bottom:940.107067pt;}
.y6_c00149{bottom:970.667067pt;}
.y5_c00149{bottom:1012.027067pt;}
.y2_c00149{bottom:1043.387067pt;}
.y1_c00149{bottom:1063.867067pt;}
.h2_c00149{height:42.656250pt;}
.h7_c00149{height:44.388750pt;}
.h8_c00149{height:44.395790pt;}
.h1_c00149{height:44.724687pt;}
.h3_c00149{height:50.062500pt;}
.h5_c00149{height:53.562500pt;}
.h6_c00149{height:57.894062pt;}
.h4_c00149{height:72.423750pt;}
.h0_c00149{height:1122.666667pt;}
.w1_c00149{width:793.333333pt;}
.w0_c00149{width:793.626667pt;}
.x0_c00149{left:0.000000pt;}
.x2_c00149{left:113.440000pt;}
.x1_c00149{left:129.280000pt;}
.x6_c00149{left:137.440720pt;}
.x5_c00149{left:160.720000pt;}
.x4_c00149{left:386.880000pt;}
.x3_c00149{left:396.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_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_30e11da0a410d31824688c15.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00150;src:url('chunks/assets/font_7c74b8e780158b26e0a1f61a.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;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_c00150;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00150;src:url('chunks/assets/font_33aec57732bac056f4cea114.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00150;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00150{font-family:ff5_c00150;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_c00150;src:url('chunks/assets/font_1d6418fbc83441e39ca8ee6e.woff2')format("woff");}.ff6_c00150{font-family:ff6_c00150;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_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.v1_c00150{vertical-align:15.840000px;}
.v2_c00150{vertical-align:29.880000px;}
.ls13_c00150{letter-spacing:-0.151200px;}
.ls19_c00150{letter-spacing:-0.031248px;}
.ls14_c00150{letter-spacing:-0.028800px;}
.ls17_c00150{letter-spacing:-0.021600px;}
.ls16_c00150{letter-spacing:-0.014400px;}
.ls1a_c00150{letter-spacing:-0.011664px;}
.ls1b_c00150{letter-spacing:-0.007776px;}
.ls15_c00150{letter-spacing:-0.007200px;}
.ls1c_c00150{letter-spacing:-0.003888px;}
.ls12_c00150{letter-spacing:0.000000px;}
.ls3_c00150{letter-spacing:0.007200px;}
.lsa_c00150{letter-spacing:0.014364px;}
.ls4_c00150{letter-spacing:0.014400px;}
.ls1f_c00150{letter-spacing:0.019152px;}
.ls8_c00150{letter-spacing:0.021600px;}
.ls10_c00150{letter-spacing:0.028728px;}
.lse_c00150{letter-spacing:0.038304px;}
.ls11_c00150{letter-spacing:0.043092px;}
.ls9_c00150{letter-spacing:0.047880px;}
.ls0_c00150{letter-spacing:0.048096px;}
.ls2_c00150{letter-spacing:0.054756px;}
.lsb_c00150{letter-spacing:0.071820px;}
.ls18_c00150{letter-spacing:0.093600px;}
.lsd_c00150{letter-spacing:0.104040px;}
.ls6_c00150{letter-spacing:0.144000px;}
.ls1e_c00150{letter-spacing:0.346032px;}
.ls1d_c00150{letter-spacing:0.378252px;}
.lsf_c00150{letter-spacing:0.435960px;}
.lsc_c00150{letter-spacing:10.071360px;}
.ls5_c00150{letter-spacing:35.154000px;}
.ls7_c00150{letter-spacing:65.304000px;}
.ls1_c00150{letter-spacing:1212.120000px;}
.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:-19.498752px;}
.ws2_c00150{word-spacing:-13.382460px;}
.ws3_c00150{word-spacing:-13.310640px;}
.ws5_c00150{word-spacing:-11.154672px;}
.ws4_c00150{word-spacing:-10.804752px;}
.ws0_c00150{word-spacing:-10.584756px;}
.ws14_c00150{word-spacing:-0.273420px;}
.ws1b_c00150{word-spacing:-0.086400px;}
.ws28_c00150{word-spacing:-0.028728px;}
.ws2e_c00150{word-spacing:-0.019152px;}
.ws25_c00150{word-spacing:-0.014400px;}
.ws2b_c00150{word-spacing:-0.009576px;}
.ws7_c00150{word-spacing:0.000000px;}
.ws2a_c00150{word-spacing:0.004788px;}
.ws10_c00150{word-spacing:0.007200px;}
.ws6_c00150{word-spacing:0.042084px;}
.ws24_c00150{word-spacing:0.064800px;}
.ws1a_c00150{word-spacing:0.086400px;}
.ws12_c00150{word-spacing:0.295200px;}
.ws13_c00150{word-spacing:0.352800px;}
.ws8_c00150{word-spacing:0.388800px;}
.ws1e_c00150{word-spacing:2.901600px;}
.ws15_c00150{word-spacing:4.312800px;}
.ws16_c00150{word-spacing:4.442400px;}
.wsc_c00150{word-spacing:5.335200px;}
.ws1c_c00150{word-spacing:5.342400px;}
.ws2d_c00150{word-spacing:5.367348px;}
.ws2c_c00150{word-spacing:5.372136px;}
.wsb_c00150{word-spacing:5.414400px;}
.ws1d_c00150{word-spacing:5.421600px;}
.ws27_c00150{word-spacing:7.603200px;}
.ws26_c00150{word-spacing:7.610400px;}
.wsf_c00150{word-spacing:7.941600px;}
.ws1f_c00150{word-spacing:9.403200px;}
.ws29_c00150{word-spacing:10.059588px;}
.ws19_c00150{word-spacing:10.828800px;}
.wse_c00150{word-spacing:11.584800px;}
.wsd_c00150{word-spacing:11.592000px;}
.ws17_c00150{word-spacing:12.614400px;}
.ws18_c00150{word-spacing:12.650400px;}
.ws23_c00150{word-spacing:16.538400px;}
.ws22_c00150{word-spacing:16.581600px;}
.wsa_c00150{word-spacing:19.432800px;}
.ws9_c00150{word-spacing:19.555200px;}
.ws21_c00150{word-spacing:24.703200px;}
.ws20_c00150{word-spacing:24.804000px;}
.ws11_c00150{word-spacing:25.927200px;}
._0_c00150{margin-left:-1.322640px;}
._1_c00150{width:1.368000px;}
._2_c00150{width:10.078740px;}
.fc0_c00150{color:rgb(0,0,0);}
.fs6_c00150{font-size:38.880000px;}
.fs3_c00150{font-size:42.120000px;}
.fs5_c00150{font-size:47.880000px;}
.fs1_c00150{font-size:54.000000px;}
.fs0_c00150{font-size:60.120000px;}
.fs2_c00150{font-size:72.000000px;}
.fs4_c00150{font-size:78.120000px;}
.y0_c00150{bottom:0.000000px;}
.y3_c00150{bottom:57.450450px;}
.y24_c00150{bottom:113.706750px;}
.y23_c00150{bottom:132.068730px;}
.y22_c00150{bottom:145.834230px;}
.y21_c00150{bottom:164.102970px;}
.y20_c00150{bottom:182.464950px;}
.y1f_c00150{bottom:196.234230px;}
.y1e_c00150{bottom:214.500450px;}
.y1d_c00150{bottom:229.710450px;}
.y1c_c00150{bottom:250.410450px;}
.y1b_c00150{bottom:271.110450px;}
.y1a_c00150{bottom:308.910450px;}
.y19_c00150{bottom:343.380450px;}
.y18_c00150{bottom:386.760450px;}
.y17_c00150{bottom:421.230450px;}
.y16_c00150{bottom:455.610450px;}
.y15_c00150{bottom:499.080450px;}
.y14_c00150{bottom:533.460450px;}
.y13_c00150{bottom:567.930450px;}
.y12_c00150{bottom:602.310450px;}
.y11_c00150{bottom:645.780450px;}
.y10_c00150{bottom:680.160450px;}
.yf_c00150{bottom:714.630450px;}
.ye_c00150{bottom:749.010450px;}
.yd_c00150{bottom:794.100450px;}
.yc_c00150{bottom:856.740450px;}
.yb_c00150{bottom:891.210450px;}
.ya_c00150{bottom:925.590450px;}
.y9_c00150{bottom:969.060450px;}
.y8_c00150{bottom:1003.440450px;}
.y7_c00150{bottom:1037.910450px;}
.y6_c00150{bottom:1072.290450px;}
.y5_c00150{bottom:1106.760450px;}
.y4_c00150{bottom:1141.140450px;}
.y2_c00150{bottom:1177.860450px;}
.y1_c00150{bottom:1196.850450px;}
.h9_c00150{height:47.988281px;}
.ha_c00150{height:49.937344px;}
.h1_c00150{height:50.315273px;}
.h2_c00150{height:56.320312px;}
.h4_c00150{height:60.257812px;}
.h5_c00150{height:65.130820px;}
.h8_c00150{height:65.131420px;}
.h3_c00150{height:72.160312px;}
.h7_c00150{height:75.093750px;}
.h6_c00150{height:81.476719px;}
.h0_c00150{height:1263.000000px;}
.w1_c00150{width:892.500000px;}
.w0_c00150{width:892.830000px;}
.x0_c00150{left:0.000000px;}
.x1_c00150{left:127.620000px;}
.x3_c00150{left:154.620000px;}
.x2_c00150{left:180.810000px;}
.x4_c00150{left:208.620000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.v1_c00150{vertical-align:14.080000pt;}
.v2_c00150{vertical-align:26.560000pt;}
.ls13_c00150{letter-spacing:-0.134400pt;}
.ls19_c00150{letter-spacing:-0.027776pt;}
.ls14_c00150{letter-spacing:-0.025600pt;}
.ls17_c00150{letter-spacing:-0.019200pt;}
.ls16_c00150{letter-spacing:-0.012800pt;}
.ls1a_c00150{letter-spacing:-0.010368pt;}
.ls1b_c00150{letter-spacing:-0.006912pt;}
.ls15_c00150{letter-spacing:-0.006400pt;}
.ls1c_c00150{letter-spacing:-0.003456pt;}
.ls12_c00150{letter-spacing:0.000000pt;}
.ls3_c00150{letter-spacing:0.006400pt;}
.lsa_c00150{letter-spacing:0.012768pt;}
.ls4_c00150{letter-spacing:0.012800pt;}
.ls1f_c00150{letter-spacing:0.017024pt;}
.ls8_c00150{letter-spacing:0.019200pt;}
.ls10_c00150{letter-spacing:0.025536pt;}
.lse_c00150{letter-spacing:0.034048pt;}
.ls11_c00150{letter-spacing:0.038304pt;}
.ls9_c00150{letter-spacing:0.042560pt;}
.ls0_c00150{letter-spacing:0.042752pt;}
.ls2_c00150{letter-spacing:0.048672pt;}
.lsb_c00150{letter-spacing:0.063840pt;}
.ls18_c00150{letter-spacing:0.083200pt;}
.lsd_c00150{letter-spacing:0.092480pt;}
.ls6_c00150{letter-spacing:0.128000pt;}
.ls1e_c00150{letter-spacing:0.307584pt;}
.ls1d_c00150{letter-spacing:0.336224pt;}
.lsf_c00150{letter-spacing:0.387520pt;}
.lsc_c00150{letter-spacing:8.952320pt;}
.ls5_c00150{letter-spacing:31.248000pt;}
.ls7_c00150{letter-spacing:58.048000pt;}
.ls1_c00150{letter-spacing:1077.440000pt;}
.ws1_c00150{word-spacing:-17.332224pt;}
.ws2_c00150{word-spacing:-11.895520pt;}
.ws3_c00150{word-spacing:-11.831680pt;}
.ws5_c00150{word-spacing:-9.915264pt;}
.ws4_c00150{word-spacing:-9.604224pt;}
.ws0_c00150{word-spacing:-9.408672pt;}
.ws14_c00150{word-spacing:-0.243040pt;}
.ws1b_c00150{word-spacing:-0.076800pt;}
.ws28_c00150{word-spacing:-0.025536pt;}
.ws2e_c00150{word-spacing:-0.017024pt;}
.ws25_c00150{word-spacing:-0.012800pt;}
.ws2b_c00150{word-spacing:-0.008512pt;}
.ws7_c00150{word-spacing:0.000000pt;}
.ws2a_c00150{word-spacing:0.004256pt;}
.ws10_c00150{word-spacing:0.006400pt;}
.ws6_c00150{word-spacing:0.037408pt;}
.ws24_c00150{word-spacing:0.057600pt;}
.ws1a_c00150{word-spacing:0.076800pt;}
.ws12_c00150{word-spacing:0.262400pt;}
.ws13_c00150{word-spacing:0.313600pt;}
.ws8_c00150{word-spacing:0.345600pt;}
.ws1e_c00150{word-spacing:2.579200pt;}
.ws15_c00150{word-spacing:3.833600pt;}
.ws16_c00150{word-spacing:3.948800pt;}
.wsc_c00150{word-spacing:4.742400pt;}
.ws1c_c00150{word-spacing:4.748800pt;}
.ws2d_c00150{word-spacing:4.770976pt;}
.ws2c_c00150{word-spacing:4.775232pt;}
.wsb_c00150{word-spacing:4.812800pt;}
.ws1d_c00150{word-spacing:4.819200pt;}
.ws27_c00150{word-spacing:6.758400pt;}
.ws26_c00150{word-spacing:6.764800pt;}
.wsf_c00150{word-spacing:7.059200pt;}
.ws1f_c00150{word-spacing:8.358400pt;}
.ws29_c00150{word-spacing:8.941856pt;}
.ws19_c00150{word-spacing:9.625600pt;}
.wse_c00150{word-spacing:10.297600pt;}
.wsd_c00150{word-spacing:10.304000pt;}
.ws17_c00150{word-spacing:11.212800pt;}
.ws18_c00150{word-spacing:11.244800pt;}
.ws23_c00150{word-spacing:14.700800pt;}
.ws22_c00150{word-spacing:14.739200pt;}
.wsa_c00150{word-spacing:17.273600pt;}
.ws9_c00150{word-spacing:17.382400pt;}
.ws21_c00150{word-spacing:21.958400pt;}
.ws20_c00150{word-spacing:22.048000pt;}
.ws11_c00150{word-spacing:23.046400pt;}
._0_c00150{margin-left:-1.175680pt;}
._1_c00150{width:1.216000pt;}
._2_c00150{width:8.958880pt;}
.fs6_c00150{font-size:34.560000pt;}
.fs3_c00150{font-size:37.440000pt;}
.fs5_c00150{font-size:42.560000pt;}
.fs1_c00150{font-size:48.000000pt;}
.fs0_c00150{font-size:53.440000pt;}
.fs2_c00150{font-size:64.000000pt;}
.fs4_c00150{font-size:69.440000pt;}
.y0_c00150{bottom:0.000000pt;}
.y3_c00150{bottom:51.067067pt;}
.y24_c00150{bottom:101.072667pt;}
.y23_c00150{bottom:117.394427pt;}
.y22_c00150{bottom:129.630427pt;}
.y21_c00150{bottom:145.869307pt;}
.y20_c00150{bottom:162.191067pt;}
.y1f_c00150{bottom:174.430427pt;}
.y1e_c00150{bottom:190.667067pt;}
.y1d_c00150{bottom:204.187067pt;}
.y1c_c00150{bottom:222.587067pt;}
.y1b_c00150{bottom:240.987067pt;}
.y1a_c00150{bottom:274.587067pt;}
.y19_c00150{bottom:305.227067pt;}
.y18_c00150{bottom:343.787067pt;}
.y17_c00150{bottom:374.427067pt;}
.y16_c00150{bottom:404.987067pt;}
.y15_c00150{bottom:443.627067pt;}
.y14_c00150{bottom:474.187067pt;}
.y13_c00150{bottom:504.827067pt;}
.y12_c00150{bottom:535.387067pt;}
.y11_c00150{bottom:574.027067pt;}
.y10_c00150{bottom:604.587067pt;}
.yf_c00150{bottom:635.227067pt;}
.ye_c00150{bottom:665.787067pt;}
.yd_c00150{bottom:705.867067pt;}
.yc_c00150{bottom:761.547067pt;}
.yb_c00150{bottom:792.187067pt;}
.ya_c00150{bottom:822.747067pt;}
.y9_c00150{bottom:861.387067pt;}
.y8_c00150{bottom:891.947067pt;}
.y7_c00150{bottom:922.587067pt;}
.y6_c00150{bottom:953.147067pt;}
.y5_c00150{bottom:983.787067pt;}
.y4_c00150{bottom:1014.347067pt;}
.y2_c00150{bottom:1046.987067pt;}
.y1_c00150{bottom:1063.867067pt;}
.h9_c00150{height:42.656250pt;}
.ha_c00150{height:44.388750pt;}
.h1_c00150{height:44.724687pt;}
.h2_c00150{height:50.062500pt;}
.h4_c00150{height:53.562500pt;}
.h5_c00150{height:57.894063pt;}
.h8_c00150{height:57.894596pt;}
.h3_c00150{height:64.142500pt;}
.h7_c00150{height:66.750000pt;}
.h6_c00150{height:72.423750pt;}
.h0_c00150{height:1122.666667pt;}
.w1_c00150{width:793.333333pt;}
.w0_c00150{width:793.626667pt;}
.x0_c00150{left:0.000000pt;}
.x1_c00150{left:113.440000pt;}
.x3_c00150{left:137.440000pt;}
.x2_c00150{left:160.720000pt;}
.x4_c00150{left:185.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_c00151 {
    display:none;
  }
  .loading-indicator_c00151.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00151 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00151 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00151" -> "#page-container .classname_c00151")
 */
.pf_c00151 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00151 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00151 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00151 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00151 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00151 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00151 {overflow:visible;}
  }
}
.c_c00151 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00151 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00151:after { /* webkit #35443 */
  content: '';
}
.t_c00151:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00151 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00151 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00151 { /* info for Javascript */
  display:none;
}
.l_c00151 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00151 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00151 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00151:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00151;src:url('chunks/assets/font_6af5b6d92217069c9b949b14.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00151;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00151;src:url('chunks/assets/font_7b862b12dd50b9055ea66fa3.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00151;src:url('chunks/assets/font_58cddb4d53eeff64a1e3eaf6.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;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_c00151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.v1_c00151{vertical-align:29.880000px;}
.ls12_c00151{letter-spacing:-0.151200px;}
.ls10_c00151{letter-spacing:-0.048096px;}
.ls19_c00151{letter-spacing:-0.043200px;}
.ls18_c00151{letter-spacing:-0.036000px;}
.ls13_c00151{letter-spacing:-0.028800px;}
.ls15_c00151{letter-spacing:-0.021600px;}
.lsf_c00151{letter-spacing:-0.018036px;}
.ls17_c00151{letter-spacing:-0.014400px;}
.ls14_c00151{letter-spacing:-0.007200px;}
.ls1c_c00151{letter-spacing:-0.003888px;}
.ls11_c00151{letter-spacing:0.000000px;}
.ls3_c00151{letter-spacing:0.007200px;}
.ls9_c00151{letter-spacing:0.014364px;}
.ls7_c00151{letter-spacing:0.014400px;}
.ls1b_c00151{letter-spacing:0.019152px;}
.ls4_c00151{letter-spacing:0.021600px;}
.lsb_c00151{letter-spacing:0.028728px;}
.ls8_c00151{letter-spacing:0.033516px;}
.ls2_c00151{letter-spacing:0.036000px;}
.ls0_c00151{letter-spacing:0.036072px;}
.lse_c00151{letter-spacing:0.043092px;}
.lsc_c00151{letter-spacing:0.047880px;}
.ls1_c00151{letter-spacing:0.054756px;}
.ls16_c00151{letter-spacing:0.093600px;}
.lsd_c00151{letter-spacing:0.104040px;}
.ls5_c00151{letter-spacing:0.144000px;}
.ls1a_c00151{letter-spacing:0.346032px;}
.ls1d_c00151{letter-spacing:0.357696px;}
.lsa_c00151{letter-spacing:0.435960px;}
.ls6_c00151{letter-spacing:65.304000px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00151{word-spacing:-11.166336px;}
.ws1_c00151{word-spacing:-11.154672px;}
.ws0_c00151{word-spacing:-10.584756px;}
.ws32_c00151{word-spacing:-0.028728px;}
.ws2f_c00151{word-spacing:-0.014364px;}
.ws31_c00151{word-spacing:-0.009576px;}
.ws6_c00151{word-spacing:0.000000px;}
.ws30_c00151{word-spacing:0.004788px;}
.wsf_c00151{word-spacing:0.007200px;}
.ws1c_c00151{word-spacing:0.014400px;}
.wsd_c00151{word-spacing:0.021600px;}
.ws25_c00151{word-spacing:0.050400px;}
.ws3_c00151{word-spacing:0.054108px;}
.wse_c00151{word-spacing:0.079200px;}
.ws4_c00151{word-spacing:0.108216px;}
.ws5_c00151{word-spacing:0.138276px;}
.ws10_c00151{word-spacing:0.223200px;}
.ws27_c00151{word-spacing:0.388800px;}
.ws26_c00151{word-spacing:0.439200px;}
.ws35_c00151{word-spacing:1.053360px;}
.ws18_c00151{word-spacing:1.058400px;}
.ws34_c00151{word-spacing:1.067724px;}
.ws17_c00151{word-spacing:1.072800px;}
.ws33_c00151{word-spacing:1.082088px;}
.ws19_c00151{word-spacing:1.324800px;}
.ws24_c00151{word-spacing:2.476800px;}
.ws2e_c00151{word-spacing:2.520000px;}
.ws2d_c00151{word-spacing:2.534400px;}
.ws23_c00151{word-spacing:2.541600px;}
.ws7_c00151{word-spacing:2.880000px;}
.ws9_c00151{word-spacing:2.887200px;}
.ws8_c00151{word-spacing:2.966400px;}
.ws15_c00151{word-spacing:3.672000px;}
.ws16_c00151{word-spacing:3.700800px;}
.ws2c_c00151{word-spacing:3.960000px;}
.wsc_c00151{word-spacing:4.017600px;}
.wsb_c00151{word-spacing:4.024800px;}
.ws29_c00151{word-spacing:4.356000px;}
.ws28_c00151{word-spacing:4.442400px;}
.ws1d_c00151{word-spacing:4.658400px;}
.ws1e_c00151{word-spacing:4.737600px;}
.ws21_c00151{word-spacing:5.709600px;}
.ws22_c00151{word-spacing:5.767200px;}
.ws2b_c00151{word-spacing:6.134400px;}
.ws2a_c00151{word-spacing:6.206400px;}
.ws14_c00151{word-spacing:6.444000px;}
.ws1f_c00151{word-spacing:6.523200px;}
.ws20_c00151{word-spacing:6.530400px;}
.ws13_c00151{word-spacing:6.544800px;}
.ws1b_c00151{word-spacing:6.912000px;}
.ws1a_c00151{word-spacing:6.976800px;}
.ws11_c00151{word-spacing:19.454400px;}
.wsa_c00151{word-spacing:25.221600px;}
.ws12_c00151{word-spacing:28.836000px;}
._0_c00151{margin-left:-1.142280px;}
._1_c00151{width:1.346400px;}
.fc0_c00151{color:rgb(0,0,0);}
.fs5_c00151{font-size:38.880000px;}
.fs3_c00151{font-size:42.120000px;}
.fs4_c00151{font-size:47.880000px;}
.fs2_c00151{font-size:54.000000px;}
.fs0_c00151{font-size:60.120000px;}
.fs1_c00151{font-size:72.000000px;}
.y0_c00151{bottom:0.000000px;}
.y3_c00151{bottom:57.450450px;}
.y4_c00151{bottom:61.410450px;}
.y25_c00151{bottom:113.698470px;}
.y24_c00151{bottom:132.068730px;}
.y23_c00151{bottom:150.334950px;}
.y22_c00151{bottom:164.098620px;}
.y21_c00151{bottom:182.464230px;}
.y20_c00151{bottom:200.730450px;}
.y1f_c00151{bottom:215.940450px;}
.y1e_c00151{bottom:236.640450px;}
.y1d_c00151{bottom:257.340450px;}
.y1c_c00151{bottom:304.410450px;}
.y1b_c00151{bottom:338.790450px;}
.y1a_c00151{bottom:382.260450px;}
.y19_c00151{bottom:416.640450px;}
.y18_c00151{bottom:451.110450px;}
.y17_c00151{bottom:485.490450px;}
.y16_c00151{bottom:528.960450px;}
.y15_c00151{bottom:563.340450px;}
.y14_c00151{bottom:606.810450px;}
.y13_c00151{bottom:641.190450px;}
.y12_c00151{bottom:675.660450px;}
.y11_c00151{bottom:710.040450px;}
.y10_c00151{bottom:753.510450px;}
.yf_c00151{bottom:787.890450px;}
.ye_c00151{bottom:822.360450px;}
.yd_c00151{bottom:856.740450px;}
.yc_c00151{bottom:891.210450px;}
.yb_c00151{bottom:925.590450px;}
.ya_c00151{bottom:960.060450px;}
.y9_c00151{bottom:994.440450px;}
.y8_c00151{bottom:1037.910450px;}
.y7_c00151{bottom:1072.290450px;}
.y6_c00151{bottom:1106.760450px;}
.y5_c00151{bottom:1141.140450px;}
.y2_c00151{bottom:1173.810450px;}
.y1_c00151{bottom:1196.850450px;}
.h2_c00151{height:47.988281px;}
.h7_c00151{height:49.937344px;}
.h8_c00151{height:49.944664px;}
.h9_c00151{height:49.945264px;}
.h1_c00151{height:50.315273px;}
.h3_c00151{height:56.320312px;}
.h5_c00151{height:60.257812px;}
.h4_c00151{height:65.130820px;}
.h6_c00151{height:75.093750px;}
.h0_c00151{height:1263.000000px;}
.w1_c00151{width:892.500000px;}
.w0_c00151{width:892.830000px;}
.x0_c00151{left:0.000000px;}
.x2_c00151{left:127.620000px;}
.x1_c00151{left:145.440000px;}
.x7_c00151{left:154.620000px;}
.x5_c00151{left:180.810000px;}
.x8_c00151{left:207.000000px;}
.x6_c00151{left:208.620000px;}
.x4_c00151{left:435.240000px;}
.x3_c00151{left:446.490000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.v1_c00151{vertical-align:26.560000pt;}
.ls12_c00151{letter-spacing:-0.134400pt;}
.ls10_c00151{letter-spacing:-0.042752pt;}
.ls19_c00151{letter-spacing:-0.038400pt;}
.ls18_c00151{letter-spacing:-0.032000pt;}
.ls13_c00151{letter-spacing:-0.025600pt;}
.ls15_c00151{letter-spacing:-0.019200pt;}
.lsf_c00151{letter-spacing:-0.016032pt;}
.ls17_c00151{letter-spacing:-0.012800pt;}
.ls14_c00151{letter-spacing:-0.006400pt;}
.ls1c_c00151{letter-spacing:-0.003456pt;}
.ls11_c00151{letter-spacing:0.000000pt;}
.ls3_c00151{letter-spacing:0.006400pt;}
.ls9_c00151{letter-spacing:0.012768pt;}
.ls7_c00151{letter-spacing:0.012800pt;}
.ls1b_c00151{letter-spacing:0.017024pt;}
.ls4_c00151{letter-spacing:0.019200pt;}
.lsb_c00151{letter-spacing:0.025536pt;}
.ls8_c00151{letter-spacing:0.029792pt;}
.ls2_c00151{letter-spacing:0.032000pt;}
.ls0_c00151{letter-spacing:0.032064pt;}
.lse_c00151{letter-spacing:0.038304pt;}
.lsc_c00151{letter-spacing:0.042560pt;}
.ls1_c00151{letter-spacing:0.048672pt;}
.ls16_c00151{letter-spacing:0.083200pt;}
.lsd_c00151{letter-spacing:0.092480pt;}
.ls5_c00151{letter-spacing:0.128000pt;}
.ls1a_c00151{letter-spacing:0.307584pt;}
.ls1d_c00151{letter-spacing:0.317952pt;}
.lsa_c00151{letter-spacing:0.387520pt;}
.ls6_c00151{letter-spacing:58.048000pt;}
.ws2_c00151{word-spacing:-9.925632pt;}
.ws1_c00151{word-spacing:-9.915264pt;}
.ws0_c00151{word-spacing:-9.408672pt;}
.ws32_c00151{word-spacing:-0.025536pt;}
.ws2f_c00151{word-spacing:-0.012768pt;}
.ws31_c00151{word-spacing:-0.008512pt;}
.ws6_c00151{word-spacing:0.000000pt;}
.ws30_c00151{word-spacing:0.004256pt;}
.wsf_c00151{word-spacing:0.006400pt;}
.ws1c_c00151{word-spacing:0.012800pt;}
.wsd_c00151{word-spacing:0.019200pt;}
.ws25_c00151{word-spacing:0.044800pt;}
.ws3_c00151{word-spacing:0.048096pt;}
.wse_c00151{word-spacing:0.070400pt;}
.ws4_c00151{word-spacing:0.096192pt;}
.ws5_c00151{word-spacing:0.122912pt;}
.ws10_c00151{word-spacing:0.198400pt;}
.ws27_c00151{word-spacing:0.345600pt;}
.ws26_c00151{word-spacing:0.390400pt;}
.ws35_c00151{word-spacing:0.936320pt;}
.ws18_c00151{word-spacing:0.940800pt;}
.ws34_c00151{word-spacing:0.949088pt;}
.ws17_c00151{word-spacing:0.953600pt;}
.ws33_c00151{word-spacing:0.961856pt;}
.ws19_c00151{word-spacing:1.177600pt;}
.ws24_c00151{word-spacing:2.201600pt;}
.ws2e_c00151{word-spacing:2.240000pt;}
.ws2d_c00151{word-spacing:2.252800pt;}
.ws23_c00151{word-spacing:2.259200pt;}
.ws7_c00151{word-spacing:2.560000pt;}
.ws9_c00151{word-spacing:2.566400pt;}
.ws8_c00151{word-spacing:2.636800pt;}
.ws15_c00151{word-spacing:3.264000pt;}
.ws16_c00151{word-spacing:3.289600pt;}
.ws2c_c00151{word-spacing:3.520000pt;}
.wsc_c00151{word-spacing:3.571200pt;}
.wsb_c00151{word-spacing:3.577600pt;}
.ws29_c00151{word-spacing:3.872000pt;}
.ws28_c00151{word-spacing:3.948800pt;}
.ws1d_c00151{word-spacing:4.140800pt;}
.ws1e_c00151{word-spacing:4.211200pt;}
.ws21_c00151{word-spacing:5.075200pt;}
.ws22_c00151{word-spacing:5.126400pt;}
.ws2b_c00151{word-spacing:5.452800pt;}
.ws2a_c00151{word-spacing:5.516800pt;}
.ws14_c00151{word-spacing:5.728000pt;}
.ws1f_c00151{word-spacing:5.798400pt;}
.ws20_c00151{word-spacing:5.804800pt;}
.ws13_c00151{word-spacing:5.817600pt;}
.ws1b_c00151{word-spacing:6.144000pt;}
.ws1a_c00151{word-spacing:6.201600pt;}
.ws11_c00151{word-spacing:17.292800pt;}
.wsa_c00151{word-spacing:22.419200pt;}
.ws12_c00151{word-spacing:25.632000pt;}
._0_c00151{margin-left:-1.015360pt;}
._1_c00151{width:1.196800pt;}
.fs5_c00151{font-size:34.560000pt;}
.fs3_c00151{font-size:37.440000pt;}
.fs4_c00151{font-size:42.560000pt;}
.fs2_c00151{font-size:48.000000pt;}
.fs0_c00151{font-size:53.440000pt;}
.fs1_c00151{font-size:64.000000pt;}
.y0_c00151{bottom:0.000000pt;}
.y3_c00151{bottom:51.067067pt;}
.y4_c00151{bottom:54.587067pt;}
.y25_c00151{bottom:101.065307pt;}
.y24_c00151{bottom:117.394427pt;}
.y23_c00151{bottom:133.631067pt;}
.y22_c00151{bottom:145.865440pt;}
.y21_c00151{bottom:162.190427pt;}
.y20_c00151{bottom:178.427067pt;}
.y1f_c00151{bottom:191.947067pt;}
.y1e_c00151{bottom:210.347067pt;}
.y1d_c00151{bottom:228.747067pt;}
.y1c_c00151{bottom:270.587067pt;}
.y1b_c00151{bottom:301.147067pt;}
.y1a_c00151{bottom:339.787067pt;}
.y19_c00151{bottom:370.347067pt;}
.y18_c00151{bottom:400.987067pt;}
.y17_c00151{bottom:431.547067pt;}
.y16_c00151{bottom:470.187067pt;}
.y15_c00151{bottom:500.747067pt;}
.y14_c00151{bottom:539.387067pt;}
.y13_c00151{bottom:569.947067pt;}
.y12_c00151{bottom:600.587067pt;}
.y11_c00151{bottom:631.147067pt;}
.y10_c00151{bottom:669.787067pt;}
.yf_c00151{bottom:700.347067pt;}
.ye_c00151{bottom:730.987067pt;}
.yd_c00151{bottom:761.547067pt;}
.yc_c00151{bottom:792.187067pt;}
.yb_c00151{bottom:822.747067pt;}
.ya_c00151{bottom:853.387067pt;}
.y9_c00151{bottom:883.947067pt;}
.y8_c00151{bottom:922.587067pt;}
.y7_c00151{bottom:953.147067pt;}
.y6_c00151{bottom:983.787067pt;}
.y5_c00151{bottom:1014.347067pt;}
.y2_c00151{bottom:1043.387067pt;}
.y1_c00151{bottom:1063.867067pt;}
.h2_c00151{height:42.656250pt;}
.h7_c00151{height:44.388750pt;}
.h8_c00151{height:44.395257pt;}
.h9_c00151{height:44.395790pt;}
.h1_c00151{height:44.724687pt;}
.h3_c00151{height:50.062500pt;}
.h5_c00151{height:53.562500pt;}
.h4_c00151{height:57.894063pt;}
.h6_c00151{height:66.750000pt;}
.h0_c00151{height:1122.666667pt;}
.w1_c00151{width:793.333333pt;}
.w0_c00151{width:793.626667pt;}
.x0_c00151{left:0.000000pt;}
.x2_c00151{left:113.440000pt;}
.x1_c00151{left:129.280000pt;}
.x7_c00151{left:137.440000pt;}
.x5_c00151{left:160.720000pt;}
.x8_c00151{left:184.000000pt;}
.x6_c00151{left:185.440000pt;}
.x4_c00151{left:386.880000pt;}
.x3_c00151{left:396.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_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_e7b068153424c1b956ed6ab1.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.100098;font-style:normal;font-weight:normal;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_b74a630dab622483c6b35b6e.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;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_c00152;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00152;src:url('chunks/assets/font_f217105a519d65f024b183a8.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00152;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;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_c00152;src:url('chunks/assets/font_bbd0d89dc5b96245df75eab3.woff2')format("woff");}.ff6_c00152{font-family:ff6_c00152;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_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;}
.v1_c00152{vertical-align:15.840000px;}
.v2_c00152{vertical-align:29.880000px;}
.ls19_c00152{letter-spacing:-0.266400px;}
.ls12_c00152{letter-spacing:-0.151200px;}
.ls1c_c00152{letter-spacing:-0.079200px;}
.ls18_c00152{letter-spacing:-0.043200px;}
.ls16_c00152{letter-spacing:-0.036000px;}
.ls13_c00152{letter-spacing:-0.028800px;}
.ls17_c00152{letter-spacing:-0.021600px;}
.ls1b_c00152{letter-spacing:-0.015624px;}
.ls15_c00152{letter-spacing:-0.014400px;}
.ls14_c00152{letter-spacing:-0.007200px;}
.ls1e_c00152{letter-spacing:-0.004788px;}
.ls11_c00152{letter-spacing:0.000000px;}
.ls5_c00152{letter-spacing:0.007200px;}
.lsf_c00152{letter-spacing:0.014364px;}
.ls6_c00152{letter-spacing:0.014400px;}
.ls8_c00152{letter-spacing:0.015624px;}
.lsb_c00152{letter-spacing:0.021600px;}
.lse_c00152{letter-spacing:0.028728px;}
.ls9_c00152{letter-spacing:0.028800px;}
.lsc_c00152{letter-spacing:0.033516px;}
.lsd_c00152{letter-spacing:0.047880px;}
.ls0_c00152{letter-spacing:0.048096px;}
.ls2_c00152{letter-spacing:0.054756px;}
.ls1a_c00152{letter-spacing:0.093600px;}
.ls3_c00152{letter-spacing:0.144000px;}
.ls1d_c00152{letter-spacing:0.346032px;}
.ls10_c00152{letter-spacing:0.435960px;}
.ls7_c00152{letter-spacing:29.373120px;}
.lsa_c00152{letter-spacing:65.304000px;}
.ls4_c00152{letter-spacing:66.024000px;}
.ls1_c00152{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00152{word-spacing:-19.545624px;}
.ws1_c00152{word-spacing:-19.530000px;}
.ws3_c00152{word-spacing:-11.154672px;}
.ws0_c00152{word-spacing:-10.584756px;}
.ws1a_c00152{word-spacing:-0.093600px;}
.ws1b_c00152{word-spacing:-0.078120px;}
.ws29_c00152{word-spacing:-0.028728px;}
.ws19_c00152{word-spacing:-0.014400px;}
.ws28_c00152{word-spacing:-0.014364px;}
.ws2a_c00152{word-spacing:-0.009576px;}
.ws5_c00152{word-spacing:0.000000px;}
.ws2b_c00152{word-spacing:0.004788px;}
.ws13_c00152{word-spacing:0.007200px;}
.ws20_c00152{word-spacing:0.021600px;}
.ws2c_c00152{word-spacing:0.023940px;}
.ws8_c00152{word-spacing:0.028800px;}
.ws4_c00152{word-spacing:0.042084px;}
.ws1d_c00152{word-spacing:2.491200px;}
.ws1c_c00152{word-spacing:2.592000px;}
.wsd_c00152{word-spacing:2.959200px;}
.wsc_c00152{word-spacing:2.973600px;}
.ws12_c00152{word-spacing:3.117600px;}
.ws14_c00152{word-spacing:3.247200px;}
.ws11_c00152{word-spacing:3.261600px;}
.ws10_c00152{word-spacing:4.190400px;}
.wsf_c00152{word-spacing:4.356000px;}
.ws26_c00152{word-spacing:4.672800px;}
.ws27_c00152{word-spacing:4.759200px;}
.ws21_c00152{word-spacing:5.032800px;}
.ws22_c00152{word-spacing:5.083200px;}
.ws1e_c00152{word-spacing:5.752800px;}
.ws1f_c00152{word-spacing:5.781600px;}
.wse_c00152{word-spacing:5.824800px;}
.wsa_c00152{word-spacing:6.480000px;}
.ws9_c00152{word-spacing:6.631200px;}
.ws7_c00152{word-spacing:8.668800px;}
.ws18_c00152{word-spacing:9.007200px;}
.ws17_c00152{word-spacing:9.014400px;}
.ws24_c00152{word-spacing:11.498400px;}
.ws23_c00152{word-spacing:11.512800px;}
.ws16_c00152{word-spacing:12.232800px;}
.ws15_c00152{word-spacing:12.340800px;}
.ws6_c00152{word-spacing:12.628800px;}
.wsb_c00152{word-spacing:19.072800px;}
.ws25_c00152{word-spacing:24.840000px;}
._0_c00152{margin-left:-1.322640px;}
._1_c00152{width:1.224000px;}
.fc0_c00152{color:rgb(0,0,0);}
.fs6_c00152{font-size:38.880000px;}
.fs3_c00152{font-size:42.120000px;}
.fs5_c00152{font-size:47.880000px;}
.fs1_c00152{font-size:54.000000px;}
.fs0_c00152{font-size:60.120000px;}
.fs2_c00152{font-size:72.000000px;}
.fs4_c00152{font-size:78.120000px;}
.y0_c00152{bottom:0.000000px;}
.y3_c00152{bottom:57.450450px;}
.y22_c00152{bottom:113.702250px;}
.y21_c00152{bottom:132.064230px;}
.y20_c00152{bottom:150.332400px;}
.y1f_c00152{bottom:168.598620px;}
.y1e_c00152{bottom:186.960600px;}
.y1d_c00152{bottom:202.170450px;}
.y1c_c00152{bottom:222.870450px;}
.y1b_c00152{bottom:243.570450px;}
.y1a_c00152{bottom:308.910600px;}
.y19_c00152{bottom:343.380600px;}
.y18_c00152{bottom:377.760600px;}
.y17_c00152{bottom:412.230600px;}
.y16_c00152{bottom:455.610600px;}
.y15_c00152{bottom:490.080600px;}
.y14_c00152{bottom:524.460600px;}
.y13_c00152{bottom:569.550450px;}
.y12_c00152{bottom:632.190450px;}
.y11_c00152{bottom:666.660450px;}
.y10_c00152{bottom:701.040450px;}
.yf_c00152{bottom:735.510450px;}
.ye_c00152{bottom:778.890450px;}
.yd_c00152{bottom:813.360450px;}
.yc_c00152{bottom:847.740450px;}
.yb_c00152{bottom:882.210450px;}
.ya_c00152{bottom:916.590450px;}
.y9_c00152{bottom:951.060450px;}
.y8_c00152{bottom:985.440450px;}
.y7_c00152{bottom:1028.910450px;}
.y6_c00152{bottom:1063.290450px;}
.y5_c00152{bottom:1106.760450px;}
.y4_c00152{bottom:1141.140450px;}
.y2_c00152{bottom:1177.860450px;}
.y1_c00152{bottom:1196.850450px;}
.h9_c00152{height:47.988281px;}
.ha_c00152{height:49.937344px;}
.h1_c00152{height:50.315273px;}
.h2_c00152{height:56.320312px;}
.h4_c00152{height:60.257812px;}
.h8_c00152{height:65.130220px;}
.h5_c00152{height:65.130820px;}
.h3_c00152{height:72.160312px;}
.h6_c00152{height:75.093750px;}
.h7_c00152{height:81.476719px;}
.h0_c00152{height:1263.000000px;}
.w1_c00152{width:892.500000px;}
.w0_c00152{width:892.830000px;}
.x0_c00152{left:0.000000px;}
.x1_c00152{left:127.620000px;}
.x4_c00152{left:154.440000px;}
.x2_c00152{left:180.810000px;}
.x5_c00152{left:207.180000px;}
.x3_c00152{left:208.620000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.v1_c00152{vertical-align:14.080000pt;}
.v2_c00152{vertical-align:26.560000pt;}
.ls19_c00152{letter-spacing:-0.236800pt;}
.ls12_c00152{letter-spacing:-0.134400pt;}
.ls1c_c00152{letter-spacing:-0.070400pt;}
.ls18_c00152{letter-spacing:-0.038400pt;}
.ls16_c00152{letter-spacing:-0.032000pt;}
.ls13_c00152{letter-spacing:-0.025600pt;}
.ls17_c00152{letter-spacing:-0.019200pt;}
.ls1b_c00152{letter-spacing:-0.013888pt;}
.ls15_c00152{letter-spacing:-0.012800pt;}
.ls14_c00152{letter-spacing:-0.006400pt;}
.ls1e_c00152{letter-spacing:-0.004256pt;}
.ls11_c00152{letter-spacing:0.000000pt;}
.ls5_c00152{letter-spacing:0.006400pt;}
.lsf_c00152{letter-spacing:0.012768pt;}
.ls6_c00152{letter-spacing:0.012800pt;}
.ls8_c00152{letter-spacing:0.013888pt;}
.lsb_c00152{letter-spacing:0.019200pt;}
.lse_c00152{letter-spacing:0.025536pt;}
.ls9_c00152{letter-spacing:0.025600pt;}
.lsc_c00152{letter-spacing:0.029792pt;}
.lsd_c00152{letter-spacing:0.042560pt;}
.ls0_c00152{letter-spacing:0.042752pt;}
.ls2_c00152{letter-spacing:0.048672pt;}
.ls1a_c00152{letter-spacing:0.083200pt;}
.ls3_c00152{letter-spacing:0.128000pt;}
.ls1d_c00152{letter-spacing:0.307584pt;}
.ls10_c00152{letter-spacing:0.387520pt;}
.ls7_c00152{letter-spacing:26.109440pt;}
.lsa_c00152{letter-spacing:58.048000pt;}
.ls4_c00152{letter-spacing:58.688000pt;}
.ls1_c00152{letter-spacing:1077.440000pt;}
.ws2_c00152{word-spacing:-17.373888pt;}
.ws1_c00152{word-spacing:-17.360000pt;}
.ws3_c00152{word-spacing:-9.915264pt;}
.ws0_c00152{word-spacing:-9.408672pt;}
.ws1a_c00152{word-spacing:-0.083200pt;}
.ws1b_c00152{word-spacing:-0.069440pt;}
.ws29_c00152{word-spacing:-0.025536pt;}
.ws19_c00152{word-spacing:-0.012800pt;}
.ws28_c00152{word-spacing:-0.012768pt;}
.ws2a_c00152{word-spacing:-0.008512pt;}
.ws5_c00152{word-spacing:0.000000pt;}
.ws2b_c00152{word-spacing:0.004256pt;}
.ws13_c00152{word-spacing:0.006400pt;}
.ws20_c00152{word-spacing:0.019200pt;}
.ws2c_c00152{word-spacing:0.021280pt;}
.ws8_c00152{word-spacing:0.025600pt;}
.ws4_c00152{word-spacing:0.037408pt;}
.ws1d_c00152{word-spacing:2.214400pt;}
.ws1c_c00152{word-spacing:2.304000pt;}
.wsd_c00152{word-spacing:2.630400pt;}
.wsc_c00152{word-spacing:2.643200pt;}
.ws12_c00152{word-spacing:2.771200pt;}
.ws14_c00152{word-spacing:2.886400pt;}
.ws11_c00152{word-spacing:2.899200pt;}
.ws10_c00152{word-spacing:3.724800pt;}
.wsf_c00152{word-spacing:3.872000pt;}
.ws26_c00152{word-spacing:4.153600pt;}
.ws27_c00152{word-spacing:4.230400pt;}
.ws21_c00152{word-spacing:4.473600pt;}
.ws22_c00152{word-spacing:4.518400pt;}
.ws1e_c00152{word-spacing:5.113600pt;}
.ws1f_c00152{word-spacing:5.139200pt;}
.wse_c00152{word-spacing:5.177600pt;}
.wsa_c00152{word-spacing:5.760000pt;}
.ws9_c00152{word-spacing:5.894400pt;}
.ws7_c00152{word-spacing:7.705600pt;}
.ws18_c00152{word-spacing:8.006400pt;}
.ws17_c00152{word-spacing:8.012800pt;}
.ws24_c00152{word-spacing:10.220800pt;}
.ws23_c00152{word-spacing:10.233600pt;}
.ws16_c00152{word-spacing:10.873600pt;}
.ws15_c00152{word-spacing:10.969600pt;}
.ws6_c00152{word-spacing:11.225600pt;}
.wsb_c00152{word-spacing:16.953600pt;}
.ws25_c00152{word-spacing:22.080000pt;}
._0_c00152{margin-left:-1.175680pt;}
._1_c00152{width:1.088000pt;}
.fs6_c00152{font-size:34.560000pt;}
.fs3_c00152{font-size:37.440000pt;}
.fs5_c00152{font-size:42.560000pt;}
.fs1_c00152{font-size:48.000000pt;}
.fs0_c00152{font-size:53.440000pt;}
.fs2_c00152{font-size:64.000000pt;}
.fs4_c00152{font-size:69.440000pt;}
.y0_c00152{bottom:0.000000pt;}
.y3_c00152{bottom:51.067067pt;}
.y22_c00152{bottom:101.068667pt;}
.y21_c00152{bottom:117.390427pt;}
.y20_c00152{bottom:133.628800pt;}
.y1f_c00152{bottom:149.865440pt;}
.y1e_c00152{bottom:166.187200pt;}
.y1d_c00152{bottom:179.707067pt;}
.y1c_c00152{bottom:198.107067pt;}
.y1b_c00152{bottom:216.507067pt;}
.y1a_c00152{bottom:274.587200pt;}
.y19_c00152{bottom:305.227200pt;}
.y18_c00152{bottom:335.787200pt;}
.y17_c00152{bottom:366.427200pt;}
.y16_c00152{bottom:404.987200pt;}
.y15_c00152{bottom:435.627200pt;}
.y14_c00152{bottom:466.187200pt;}
.y13_c00152{bottom:506.267067pt;}
.y12_c00152{bottom:561.947067pt;}
.y11_c00152{bottom:592.587067pt;}
.y10_c00152{bottom:623.147067pt;}
.yf_c00152{bottom:653.787067pt;}
.ye_c00152{bottom:692.347067pt;}
.yd_c00152{bottom:722.987067pt;}
.yc_c00152{bottom:753.547067pt;}
.yb_c00152{bottom:784.187067pt;}
.ya_c00152{bottom:814.747067pt;}
.y9_c00152{bottom:845.387067pt;}
.y8_c00152{bottom:875.947067pt;}
.y7_c00152{bottom:914.587067pt;}
.y6_c00152{bottom:945.147067pt;}
.y5_c00152{bottom:983.787067pt;}
.y4_c00152{bottom:1014.347067pt;}
.y2_c00152{bottom:1046.987067pt;}
.y1_c00152{bottom:1063.867067pt;}
.h9_c00152{height:42.656250pt;}
.ha_c00152{height:44.388750pt;}
.h1_c00152{height:44.724687pt;}
.h2_c00152{height:50.062500pt;}
.h4_c00152{height:53.562500pt;}
.h8_c00152{height:57.893529pt;}
.h5_c00152{height:57.894063pt;}
.h3_c00152{height:64.142500pt;}
.h6_c00152{height:66.750000pt;}
.h7_c00152{height:72.423750pt;}
.h0_c00152{height:1122.666667pt;}
.w1_c00152{width:793.333333pt;}
.w0_c00152{width:793.626667pt;}
.x0_c00152{left:0.000000pt;}
.x1_c00152{left:113.440000pt;}
.x4_c00152{left:137.280000pt;}
.x2_c00152{left:160.720000pt;}
.x5_c00152{left:184.160000pt;}
.x3_c00152{left:185.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_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_d8f9ac1438aad8e8b457c99a.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_e8ed94fb96749a567c38a607.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_6a942d975b1370dc815ad41f.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00153;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00153{font-family:ff5_c00153;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_c00153;src:url('chunks/assets/font_1820759ca958e07d435b4473.woff2')format("woff");}.ff6_c00153{font-family:ff6_c00153;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_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;}
.v1_c00153{vertical-align:29.880000px;}
.ls19_c00153{letter-spacing:-0.151200px;}
.ls17_c00153{letter-spacing:-0.048096px;}
.ls1c_c00153{letter-spacing:-0.043200px;}
.ls1f_c00153{letter-spacing:-0.031248px;}
.ls1a_c00153{letter-spacing:-0.021600px;}
.ls16_c00153{letter-spacing:-0.018036px;}
.ls1b_c00153{letter-spacing:-0.014400px;}
.ls23_c00153{letter-spacing:-0.009576px;}
.ls22_c00153{letter-spacing:-0.007776px;}
.ls1e_c00153{letter-spacing:-0.007200px;}
.ls21_c00153{letter-spacing:-0.004788px;}
.ls20_c00153{letter-spacing:-0.003888px;}
.ls18_c00153{letter-spacing:0.000000px;}
.ls3_c00153{letter-spacing:0.007200px;}
.ls25_c00153{letter-spacing:0.009576px;}
.ls9_c00153{letter-spacing:0.014364px;}
.ls7_c00153{letter-spacing:0.014400px;}
.ls12_c00153{letter-spacing:0.019152px;}
.ls4_c00153{letter-spacing:0.021600px;}
.lsc_c00153{letter-spacing:0.028728px;}
.ls13_c00153{letter-spacing:0.033516px;}
.ls0_c00153{letter-spacing:0.036072px;}
.ls10_c00153{letter-spacing:0.038304px;}
.ls1_c00153{letter-spacing:0.043200px;}
.lse_c00153{letter-spacing:0.047880px;}
.ls2_c00153{letter-spacing:0.054756px;}
.ls15_c00153{letter-spacing:0.057456px;}
.lsb_c00153{letter-spacing:0.062244px;}
.lsa_c00153{letter-spacing:0.075960px;}
.ls1d_c00153{letter-spacing:0.093600px;}
.ls5_c00153{letter-spacing:0.144000px;}
.lsd_c00153{letter-spacing:0.287280px;}
.ls24_c00153{letter-spacing:0.346032px;}
.lsf_c00153{letter-spacing:0.350640px;}
.ls14_c00153{letter-spacing:0.378720px;}
.ls11_c00153{letter-spacing:0.435960px;}
.ls8_c00153{letter-spacing:29.373120px;}
.ls6_c00153{letter-spacing:65.304000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00153{word-spacing:-19.530000px;}
.ws4_c00153{word-spacing:-11.154672px;}
.ws2_c00153{word-spacing:-10.804752px;}
.ws3_c00153{word-spacing:-10.800864px;}
.ws0_c00153{word-spacing:-10.584756px;}
.ws20_c00153{word-spacing:-0.062496px;}
.ws35_c00153{word-spacing:-0.038304px;}
.ws2d_c00153{word-spacing:-0.028728px;}
.ws10_c00153{word-spacing:-0.021600px;}
.ws31_c00153{word-spacing:-0.019152px;}
.ws32_c00153{word-spacing:-0.014364px;}
.ws36_c00153{word-spacing:-0.009576px;}
.ws8_c00153{word-spacing:0.000000px;}
.ws33_c00153{word-spacing:0.003888px;}
.ws2f_c00153{word-spacing:0.004788px;}
.ws12_c00153{word-spacing:0.007200px;}
.ws34_c00153{word-spacing:0.009576px;}
.ws28_c00153{word-spacing:0.014400px;}
.ws1f_c00153{word-spacing:0.021600px;}
.ws2e_c00153{word-spacing:0.023940px;}
.ws30_c00153{word-spacing:0.028728px;}
.ws5_c00153{word-spacing:0.054108px;}
.wsc_c00153{word-spacing:0.072000px;}
.ws6_c00153{word-spacing:0.108216px;}
.ws7_c00153{word-spacing:0.138276px;}
.ws15_c00153{word-spacing:0.741600px;}
.ws16_c00153{word-spacing:0.756000px;}
.wsf_c00153{word-spacing:1.389600px;}
.wse_c00153{word-spacing:1.454400px;}
.ws27_c00153{word-spacing:1.468800px;}
.ws11_c00153{word-spacing:1.807200px;}
.wsd_c00153{word-spacing:2.872800px;}
.ws2a_c00153{word-spacing:3.557484px;}
.ws2b_c00153{word-spacing:3.591000px;}
.ws29_c00153{word-spacing:3.605364px;}
.ws2c_c00153{word-spacing:3.691548px;}
.ws26_c00153{word-spacing:4.334400px;}
.ws25_c00153{word-spacing:4.341600px;}
.ws24_c00153{word-spacing:5.752800px;}
.ws23_c00153{word-spacing:5.760000px;}
.ws21_c00153{word-spacing:7.567200px;}
.ws22_c00153{word-spacing:7.632000px;}
.ws17_c00153{word-spacing:7.639200px;}
.ws18_c00153{word-spacing:7.646400px;}
.ws19_c00153{word-spacing:7.768800px;}
.ws14_c00153{word-spacing:7.927200px;}
.ws13_c00153{word-spacing:7.970400px;}
.wsa_c00153{word-spacing:9.676800px;}
.ws9_c00153{word-spacing:9.820800px;}
.wsb_c00153{word-spacing:9.835200px;}
.ws1e_c00153{word-spacing:10.116000px;}
.ws1d_c00153{word-spacing:10.159200px;}
.ws1b_c00153{word-spacing:24.127200px;}
.ws1a_c00153{word-spacing:24.199200px;}
.ws1c_c00153{word-spacing:30.960000px;}
._0_c00153{margin-left:-1.142280px;}
._2_c00153{width:1.016712px;}
._1_c00153{width:4.636692px;}
.fc0_c00153{color:rgb(0,0,0);}
.fs6_c00153{font-size:38.880000px;}
.fs3_c00153{font-size:42.120000px;}
.fs5_c00153{font-size:47.880000px;}
.fs2_c00153{font-size:54.000000px;}
.fs0_c00153{font-size:60.120000px;}
.fs1_c00153{font-size:72.000000px;}
.fs4_c00153{font-size:78.120000px;}
.y0_c00153{bottom:0.000000px;}
.y3_c00153{bottom:57.450450px;}
.y4_c00153{bottom:61.410450px;}
.y22_c00153{bottom:113.698470px;}
.y21_c00153{bottom:132.068010px;}
.y20_c00153{bottom:150.334230px;}
.y1f_c00153{bottom:168.598620px;}
.y1e_c00153{bottom:186.968730px;}
.y1d_c00153{bottom:205.234950px;}
.y1c_c00153{bottom:219.000450px;}
.y1b_c00153{bottom:234.210450px;}
.y1a_c00153{bottom:254.910450px;}
.y19_c00153{bottom:275.610450px;}
.y18_c00153{bottom:421.230450px;}
.y17_c00153{bottom:455.610450px;}
.y16_c00153{bottom:490.080450px;}
.y15_c00153{bottom:524.460450px;}
.y14_c00153{bottom:558.930450px;}
.y13_c00153{bottom:603.930450px;}
.y12_c00153{bottom:666.660450px;}
.y11_c00153{bottom:701.040450px;}
.y10_c00153{bottom:735.510450px;}
.yf_c00153{bottom:769.890450px;}
.ye_c00153{bottom:804.360450px;}
.yd_c00153{bottom:838.740450px;}
.yc_c00153{bottom:873.210450px;}
.yb_c00153{bottom:916.590450px;}
.ya_c00153{bottom:951.060450px;}
.y9_c00153{bottom:994.440450px;}
.y8_c00153{bottom:1028.910450px;}
.y7_c00153{bottom:1063.290450px;}
.y6_c00153{bottom:1106.760450px;}
.y5_c00153{bottom:1141.140450px;}
.y2_c00153{bottom:1173.810450px;}
.y1_c00153{bottom:1196.850450px;}
.h2_c00153{height:47.988281px;}
.h9_c00153{height:49.937344px;}
.ha_c00153{height:49.944664px;}
.hb_c00153{height:49.945264px;}
.h1_c00153{height:50.315273px;}
.h3_c00153{height:56.320312px;}
.h4_c00153{height:60.257812px;}
.h5_c00153{height:65.130820px;}
.h8_c00153{height:65.131420px;}
.h6_c00153{height:75.093750px;}
.h7_c00153{height:81.476719px;}
.h0_c00153{height:1263.000000px;}
.w1_c00153{width:892.500000px;}
.w0_c00153{width:892.830000px;}
.x0_c00153{left:0.000000px;}
.x2_c00153{left:127.620000px;}
.x1_c00153{left:145.440000px;}
.x7_c00153{left:154.620000px;}
.x5_c00153{left:181.620000px;}
.x6_c00153{left:208.620000px;}
.x4_c00153{left:435.240000px;}
.x3_c00153{left:446.490000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.v1_c00153{vertical-align:26.560000pt;}
.ls19_c00153{letter-spacing:-0.134400pt;}
.ls17_c00153{letter-spacing:-0.042752pt;}
.ls1c_c00153{letter-spacing:-0.038400pt;}
.ls1f_c00153{letter-spacing:-0.027776pt;}
.ls1a_c00153{letter-spacing:-0.019200pt;}
.ls16_c00153{letter-spacing:-0.016032pt;}
.ls1b_c00153{letter-spacing:-0.012800pt;}
.ls23_c00153{letter-spacing:-0.008512pt;}
.ls22_c00153{letter-spacing:-0.006912pt;}
.ls1e_c00153{letter-spacing:-0.006400pt;}
.ls21_c00153{letter-spacing:-0.004256pt;}
.ls20_c00153{letter-spacing:-0.003456pt;}
.ls18_c00153{letter-spacing:0.000000pt;}
.ls3_c00153{letter-spacing:0.006400pt;}
.ls25_c00153{letter-spacing:0.008512pt;}
.ls9_c00153{letter-spacing:0.012768pt;}
.ls7_c00153{letter-spacing:0.012800pt;}
.ls12_c00153{letter-spacing:0.017024pt;}
.ls4_c00153{letter-spacing:0.019200pt;}
.lsc_c00153{letter-spacing:0.025536pt;}
.ls13_c00153{letter-spacing:0.029792pt;}
.ls0_c00153{letter-spacing:0.032064pt;}
.ls10_c00153{letter-spacing:0.034048pt;}
.ls1_c00153{letter-spacing:0.038400pt;}
.lse_c00153{letter-spacing:0.042560pt;}
.ls2_c00153{letter-spacing:0.048672pt;}
.ls15_c00153{letter-spacing:0.051072pt;}
.lsb_c00153{letter-spacing:0.055328pt;}
.lsa_c00153{letter-spacing:0.067520pt;}
.ls1d_c00153{letter-spacing:0.083200pt;}
.ls5_c00153{letter-spacing:0.128000pt;}
.lsd_c00153{letter-spacing:0.255360pt;}
.ls24_c00153{letter-spacing:0.307584pt;}
.lsf_c00153{letter-spacing:0.311680pt;}
.ls14_c00153{letter-spacing:0.336640pt;}
.ls11_c00153{letter-spacing:0.387520pt;}
.ls8_c00153{letter-spacing:26.109440pt;}
.ls6_c00153{letter-spacing:58.048000pt;}
.ws1_c00153{word-spacing:-17.360000pt;}
.ws4_c00153{word-spacing:-9.915264pt;}
.ws2_c00153{word-spacing:-9.604224pt;}
.ws3_c00153{word-spacing:-9.600768pt;}
.ws0_c00153{word-spacing:-9.408672pt;}
.ws20_c00153{word-spacing:-0.055552pt;}
.ws35_c00153{word-spacing:-0.034048pt;}
.ws2d_c00153{word-spacing:-0.025536pt;}
.ws10_c00153{word-spacing:-0.019200pt;}
.ws31_c00153{word-spacing:-0.017024pt;}
.ws32_c00153{word-spacing:-0.012768pt;}
.ws36_c00153{word-spacing:-0.008512pt;}
.ws8_c00153{word-spacing:0.000000pt;}
.ws33_c00153{word-spacing:0.003456pt;}
.ws2f_c00153{word-spacing:0.004256pt;}
.ws12_c00153{word-spacing:0.006400pt;}
.ws34_c00153{word-spacing:0.008512pt;}
.ws28_c00153{word-spacing:0.012800pt;}
.ws1f_c00153{word-spacing:0.019200pt;}
.ws2e_c00153{word-spacing:0.021280pt;}
.ws30_c00153{word-spacing:0.025536pt;}
.ws5_c00153{word-spacing:0.048096pt;}
.wsc_c00153{word-spacing:0.064000pt;}
.ws6_c00153{word-spacing:0.096192pt;}
.ws7_c00153{word-spacing:0.122912pt;}
.ws15_c00153{word-spacing:0.659200pt;}
.ws16_c00153{word-spacing:0.672000pt;}
.wsf_c00153{word-spacing:1.235200pt;}
.wse_c00153{word-spacing:1.292800pt;}
.ws27_c00153{word-spacing:1.305600pt;}
.ws11_c00153{word-spacing:1.606400pt;}
.wsd_c00153{word-spacing:2.553600pt;}
.ws2a_c00153{word-spacing:3.162208pt;}
.ws2b_c00153{word-spacing:3.192000pt;}
.ws29_c00153{word-spacing:3.204768pt;}
.ws2c_c00153{word-spacing:3.281376pt;}
.ws26_c00153{word-spacing:3.852800pt;}
.ws25_c00153{word-spacing:3.859200pt;}
.ws24_c00153{word-spacing:5.113600pt;}
.ws23_c00153{word-spacing:5.120000pt;}
.ws21_c00153{word-spacing:6.726400pt;}
.ws22_c00153{word-spacing:6.784000pt;}
.ws17_c00153{word-spacing:6.790400pt;}
.ws18_c00153{word-spacing:6.796800pt;}
.ws19_c00153{word-spacing:6.905600pt;}
.ws14_c00153{word-spacing:7.046400pt;}
.ws13_c00153{word-spacing:7.084800pt;}
.wsa_c00153{word-spacing:8.601600pt;}
.ws9_c00153{word-spacing:8.729600pt;}
.wsb_c00153{word-spacing:8.742400pt;}
.ws1e_c00153{word-spacing:8.992000pt;}
.ws1d_c00153{word-spacing:9.030400pt;}
.ws1b_c00153{word-spacing:21.446400pt;}
.ws1a_c00153{word-spacing:21.510400pt;}
.ws1c_c00153{word-spacing:27.520000pt;}
._0_c00153{margin-left:-1.015360pt;}
._2_c00153{width:0.903744pt;}
._1_c00153{width:4.121504pt;}
.fs6_c00153{font-size:34.560000pt;}
.fs3_c00153{font-size:37.440000pt;}
.fs5_c00153{font-size:42.560000pt;}
.fs2_c00153{font-size:48.000000pt;}
.fs0_c00153{font-size:53.440000pt;}
.fs1_c00153{font-size:64.000000pt;}
.fs4_c00153{font-size:69.440000pt;}
.y0_c00153{bottom:0.000000pt;}
.y3_c00153{bottom:51.067067pt;}
.y4_c00153{bottom:54.587067pt;}
.y22_c00153{bottom:101.065307pt;}
.y21_c00153{bottom:117.393787pt;}
.y20_c00153{bottom:133.630427pt;}
.y1f_c00153{bottom:149.865440pt;}
.y1e_c00153{bottom:166.194427pt;}
.y1d_c00153{bottom:182.431067pt;}
.y1c_c00153{bottom:194.667067pt;}
.y1b_c00153{bottom:208.187067pt;}
.y1a_c00153{bottom:226.587067pt;}
.y19_c00153{bottom:244.987067pt;}
.y18_c00153{bottom:374.427067pt;}
.y17_c00153{bottom:404.987067pt;}
.y16_c00153{bottom:435.627067pt;}
.y15_c00153{bottom:466.187067pt;}
.y14_c00153{bottom:496.827067pt;}
.y13_c00153{bottom:536.827067pt;}
.y12_c00153{bottom:592.587067pt;}
.y11_c00153{bottom:623.147067pt;}
.y10_c00153{bottom:653.787067pt;}
.yf_c00153{bottom:684.347067pt;}
.ye_c00153{bottom:714.987067pt;}
.yd_c00153{bottom:745.547067pt;}
.yc_c00153{bottom:776.187067pt;}
.yb_c00153{bottom:814.747067pt;}
.ya_c00153{bottom:845.387067pt;}
.y9_c00153{bottom:883.947067pt;}
.y8_c00153{bottom:914.587067pt;}
.y7_c00153{bottom:945.147067pt;}
.y6_c00153{bottom:983.787067pt;}
.y5_c00153{bottom:1014.347067pt;}
.y2_c00153{bottom:1043.387067pt;}
.y1_c00153{bottom:1063.867067pt;}
.h2_c00153{height:42.656250pt;}
.h9_c00153{height:44.388750pt;}
.ha_c00153{height:44.395257pt;}
.hb_c00153{height:44.395790pt;}
.h1_c00153{height:44.724687pt;}
.h3_c00153{height:50.062500pt;}
.h4_c00153{height:53.562500pt;}
.h5_c00153{height:57.894063pt;}
.h8_c00153{height:57.894596pt;}
.h6_c00153{height:66.750000pt;}
.h7_c00153{height:72.423750pt;}
.h0_c00153{height:1122.666667pt;}
.w1_c00153{width:793.333333pt;}
.w0_c00153{width:793.626667pt;}
.x0_c00153{left:0.000000pt;}
.x2_c00153{left:113.440000pt;}
.x1_c00153{left:129.280000pt;}
.x7_c00153{left:137.440000pt;}
.x5_c00153{left:161.440000pt;}
.x6_c00153{left:185.440000pt;}
.x4_c00153{left:386.880000pt;}
.x3_c00153{left:396.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_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_c122cd21cc953da4a5fb37df.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.100098;font-style:normal;font-weight:normal;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_fa28adbafee8e84248306cd3.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;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_c00154;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00154;src:url('chunks/assets/font_8885f6f5113f2d8f2aec3d10.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00154;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00154{font-family:ff5_c00154;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_c00154;src:url('chunks/assets/font_0c338015e93f8c8ecc8e5a31.woff2')format("woff");}.ff6_c00154{font-family:ff6_c00154;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_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.v1_c00154{vertical-align:15.840000px;}
.v2_c00154{vertical-align:29.880000px;}
.ls18_c00154{letter-spacing:-0.151200px;}
.ls1f_c00154{letter-spacing:-0.054684px;}
.ls29_c00154{letter-spacing:-0.033516px;}
.ls1b_c00154{letter-spacing:-0.028800px;}
.ls27_c00154{letter-spacing:-0.023940px;}
.ls1e_c00154{letter-spacing:-0.023436px;}
.ls20_c00154{letter-spacing:-0.021600px;}
.ls25_c00154{letter-spacing:-0.019152px;}
.ls19_c00154{letter-spacing:-0.014400px;}
.ls28_c00154{letter-spacing:-0.009576px;}
.ls1c_c00154{letter-spacing:-0.007200px;}
.ls24_c00154{letter-spacing:-0.003888px;}
.ls17_c00154{letter-spacing:0.000000px;}
.ls4_c00154{letter-spacing:0.007200px;}
.ls9_c00154{letter-spacing:0.014364px;}
.ls6_c00154{letter-spacing:0.014400px;}
.ls15_c00154{letter-spacing:0.019152px;}
.lsb_c00154{letter-spacing:0.028728px;}
.lsd_c00154{letter-spacing:0.033516px;}
.ls10_c00154{letter-spacing:0.038304px;}
.ls13_c00154{letter-spacing:0.043092px;}
.ls8_c00154{letter-spacing:0.043200px;}
.lsc_c00154{letter-spacing:0.047880px;}
.ls0_c00154{letter-spacing:0.048096px;}
.ls1d_c00154{letter-spacing:0.050400px;}
.ls11_c00154{letter-spacing:0.052668px;}
.ls5_c00154{letter-spacing:0.054756px;}
.ls16_c00154{letter-spacing:0.057456px;}
.lse_c00154{letter-spacing:0.071820px;}
.ls14_c00154{letter-spacing:0.076608px;}
.ls1a_c00154{letter-spacing:0.093600px;}
.ls12_c00154{letter-spacing:0.104040px;}
.ls2_c00154{letter-spacing:0.144000px;}
.ls22_c00154{letter-spacing:0.346032px;}
.lsf_c00154{letter-spacing:0.351360px;}
.ls26_c00154{letter-spacing:0.357696px;}
.ls23_c00154{letter-spacing:0.378252px;}
.lsa_c00154{letter-spacing:0.435960px;}
.ls21_c00154{letter-spacing:3.240000px;}
.ls7_c00154{letter-spacing:29.373120px;}
.ls3_c00154{letter-spacing:62.784000px;}
.ls1_c00154{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00154{word-spacing:-19.530000px;}
.ws2_c00154{word-spacing:-19.475316px;}
.ws4_c00154{word-spacing:-17.992800px;}
.ws3_c00154{word-spacing:-17.978400px;}
.ws6_c00154{word-spacing:-13.382460px;}
.ws7_c00154{word-spacing:-13.310640px;}
.wsb_c00154{word-spacing:-13.286700px;}
.wsa_c00154{word-spacing:-11.166336px;}
.ws5_c00154{word-spacing:-11.154672px;}
.ws8_c00154{word-spacing:-10.808640px;}
.ws9_c00154{word-spacing:-10.804752px;}
.ws0_c00154{word-spacing:-10.584756px;}
.ws1e_c00154{word-spacing:-0.070308px;}
.ws11_c00154{word-spacing:-0.050400px;}
.ws2f_c00154{word-spacing:-0.028728px;}
.ws39_c00154{word-spacing:-0.023940px;}
.ws31_c00154{word-spacing:-0.014364px;}
.ws2e_c00154{word-spacing:-0.009576px;}
.ws1d_c00154{word-spacing:-0.007200px;}
.wsd_c00154{word-spacing:0.000000px;}
.ws2d_c00154{word-spacing:0.004788px;}
.ws14_c00154{word-spacing:0.007200px;}
.ws1a_c00154{word-spacing:0.014400px;}
.ws30_c00154{word-spacing:0.019152px;}
.ws38_c00154{word-spacing:0.028728px;}
.ws2c_c00154{word-spacing:0.036000px;}
.wsc_c00154{word-spacing:0.042084px;}
.ws12_c00154{word-spacing:0.064800px;}
.ws15_c00154{word-spacing:0.079200px;}
.ws32_c00154{word-spacing:0.339948px;}
.ws26_c00154{word-spacing:1.144800px;}
.ws3d_c00154{word-spacing:1.436400px;}
.ws3b_c00154{word-spacing:1.776348px;}
.ws3a_c00154{word-spacing:1.785924px;}
.ws33_c00154{word-spacing:2.125872px;}
.ws34_c00154{word-spacing:2.140236px;}
.ws35_c00154{word-spacing:2.164176px;}
.ws1f_c00154{word-spacing:2.520000px;}
.ws20_c00154{word-spacing:2.584800px;}
.ws23_c00154{word-spacing:2.887200px;}
.ws24_c00154{word-spacing:2.966400px;}
.ws25_c00154{word-spacing:3.304800px;}
.wsf_c00154{word-spacing:4.312800px;}
.ws10_c00154{word-spacing:4.435200px;}
.ws16_c00154{word-spacing:5.032800px;}
.wse_c00154{word-spacing:5.061600px;}
.ws37_c00154{word-spacing:5.386500px;}
.ws36_c00154{word-spacing:5.434380px;}
.ws19_c00154{word-spacing:7.207200px;}
.ws3f_c00154{word-spacing:7.521948px;}
.ws40_c00154{word-spacing:7.541100px;}
.ws3e_c00154{word-spacing:7.612920px;}
.ws3c_c00154{word-spacing:7.909776px;}
.ws27_c00154{word-spacing:9.345600px;}
.ws28_c00154{word-spacing:9.381600px;}
.ws13_c00154{word-spacing:9.748800px;}
.ws18_c00154{word-spacing:14.054400px;}
.ws17_c00154{word-spacing:14.068800px;}
.ws1b_c00154{word-spacing:14.385600px;}
.ws1c_c00154{word-spacing:14.392800px;}
.ws21_c00154{word-spacing:17.992800px;}
.ws22_c00154{word-spacing:18.007200px;}
.ws29_c00154{word-spacing:29.872800px;}
.ws2b_c00154{word-spacing:29.894400px;}
.ws2a_c00154{word-spacing:29.952000px;}
._3_c00154{margin-left:-4.104000px;}
._2_c00154{margin-left:-2.736000px;}
._0_c00154{margin-left:-1.322640px;}
._1_c00154{width:1.173600px;}
._5_c00154{width:2.345580px;}
._4_c00154{width:5.873796px;}
.fc0_c00154{color:rgb(0,0,0);}
.fs6_c00154{font-size:38.880000px;}
.fs3_c00154{font-size:42.120000px;}
.fs5_c00154{font-size:47.880000px;}
.fs1_c00154{font-size:54.000000px;}
.fs0_c00154{font-size:60.120000px;}
.fs2_c00154{font-size:72.000000px;}
.fs4_c00154{font-size:78.120000px;}
.y0_c00154{bottom:0.000000px;}
.y3_c00154{bottom:57.450450px;}
.y27_c00154{bottom:109.206360px;}
.y26_c00154{bottom:123.067620px;}
.y25_c00154{bottom:136.833120px;}
.y24_c00154{bottom:150.598620px;}
.y23_c00154{bottom:168.964230px;}
.y22_c00154{bottom:187.232970px;}
.y21_c00154{bottom:205.499190px;}
.y20_c00154{bottom:219.369450px;}
.y1f_c00154{bottom:233.134950px;}
.y1e_c00154{bottom:246.902250px;}
.y1d_c00154{bottom:265.264230px;}
.y1c_c00154{bottom:283.534230px;}
.y1b_c00154{bottom:301.800450px;}
.y1a_c00154{bottom:317.010450px;}
.y19_c00154{bottom:337.710450px;}
.y18_c00154{bottom:358.410450px;}
.y17_c00154{bottom:412.230600px;}
.y16_c00154{bottom:446.610450px;}
.y15_c00154{bottom:481.080450px;}
.y14_c00154{bottom:515.460450px;}
.y13_c00154{bottom:549.930450px;}
.y12_c00154{bottom:584.310450px;}
.y11_c00154{bottom:618.780450px;}
.y10_c00154{bottom:653.160450px;}
.yf_c00154{bottom:698.250450px;}
.ye_c00154{bottom:760.890450px;}
.yd_c00154{bottom:795.360450px;}
.yc_c00154{bottom:847.740450px;}
.yb_c00154{bottom:882.210450px;}
.ya_c00154{bottom:916.590450px;}
.y9_c00154{bottom:951.060450px;}
.y8_c00154{bottom:994.440450px;}
.y7_c00154{bottom:1028.910450px;}
.y6_c00154{bottom:1072.290450px;}
.y5_c00154{bottom:1106.760450px;}
.y4_c00154{bottom:1141.140450px;}
.y2_c00154{bottom:1177.860450px;}
.y1_c00154{bottom:1196.850450px;}
.h9_c00154{height:47.988281px;}
.ha_c00154{height:49.937344px;}
.h1_c00154{height:50.315273px;}
.h2_c00154{height:56.320312px;}
.h5_c00154{height:60.257812px;}
.h6_c00154{height:65.130820px;}
.h7_c00154{height:65.131420px;}
.h3_c00154{height:72.160312px;}
.h4_c00154{height:75.093750px;}
.h8_c00154{height:81.476719px;}
.h0_c00154{height:1263.000000px;}
.w1_c00154{width:892.500000px;}
.w0_c00154{width:892.830000px;}
.x0_c00154{left:0.000000px;}
.x1_c00154{left:127.620000px;}
.x2_c00154{left:154.440000px;}
.x3_c00154{left:181.170000px;}
.x4_c00154{left:207.000000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.v1_c00154{vertical-align:14.080000pt;}
.v2_c00154{vertical-align:26.560000pt;}
.ls18_c00154{letter-spacing:-0.134400pt;}
.ls1f_c00154{letter-spacing:-0.048608pt;}
.ls29_c00154{letter-spacing:-0.029792pt;}
.ls1b_c00154{letter-spacing:-0.025600pt;}
.ls27_c00154{letter-spacing:-0.021280pt;}
.ls1e_c00154{letter-spacing:-0.020832pt;}
.ls20_c00154{letter-spacing:-0.019200pt;}
.ls25_c00154{letter-spacing:-0.017024pt;}
.ls19_c00154{letter-spacing:-0.012800pt;}
.ls28_c00154{letter-spacing:-0.008512pt;}
.ls1c_c00154{letter-spacing:-0.006400pt;}
.ls24_c00154{letter-spacing:-0.003456pt;}
.ls17_c00154{letter-spacing:0.000000pt;}
.ls4_c00154{letter-spacing:0.006400pt;}
.ls9_c00154{letter-spacing:0.012768pt;}
.ls6_c00154{letter-spacing:0.012800pt;}
.ls15_c00154{letter-spacing:0.017024pt;}
.lsb_c00154{letter-spacing:0.025536pt;}
.lsd_c00154{letter-spacing:0.029792pt;}
.ls10_c00154{letter-spacing:0.034048pt;}
.ls13_c00154{letter-spacing:0.038304pt;}
.ls8_c00154{letter-spacing:0.038400pt;}
.lsc_c00154{letter-spacing:0.042560pt;}
.ls0_c00154{letter-spacing:0.042752pt;}
.ls1d_c00154{letter-spacing:0.044800pt;}
.ls11_c00154{letter-spacing:0.046816pt;}
.ls5_c00154{letter-spacing:0.048672pt;}
.ls16_c00154{letter-spacing:0.051072pt;}
.lse_c00154{letter-spacing:0.063840pt;}
.ls14_c00154{letter-spacing:0.068096pt;}
.ls1a_c00154{letter-spacing:0.083200pt;}
.ls12_c00154{letter-spacing:0.092480pt;}
.ls2_c00154{letter-spacing:0.128000pt;}
.ls22_c00154{letter-spacing:0.307584pt;}
.lsf_c00154{letter-spacing:0.312320pt;}
.ls26_c00154{letter-spacing:0.317952pt;}
.ls23_c00154{letter-spacing:0.336224pt;}
.lsa_c00154{letter-spacing:0.387520pt;}
.ls21_c00154{letter-spacing:2.880000pt;}
.ls7_c00154{letter-spacing:26.109440pt;}
.ls3_c00154{letter-spacing:55.808000pt;}
.ls1_c00154{letter-spacing:1077.440000pt;}
.ws1_c00154{word-spacing:-17.360000pt;}
.ws2_c00154{word-spacing:-17.311392pt;}
.ws4_c00154{word-spacing:-15.993600pt;}
.ws3_c00154{word-spacing:-15.980800pt;}
.ws6_c00154{word-spacing:-11.895520pt;}
.ws7_c00154{word-spacing:-11.831680pt;}
.wsb_c00154{word-spacing:-11.810400pt;}
.wsa_c00154{word-spacing:-9.925632pt;}
.ws5_c00154{word-spacing:-9.915264pt;}
.ws8_c00154{word-spacing:-9.607680pt;}
.ws9_c00154{word-spacing:-9.604224pt;}
.ws0_c00154{word-spacing:-9.408672pt;}
.ws1e_c00154{word-spacing:-0.062496pt;}
.ws11_c00154{word-spacing:-0.044800pt;}
.ws2f_c00154{word-spacing:-0.025536pt;}
.ws39_c00154{word-spacing:-0.021280pt;}
.ws31_c00154{word-spacing:-0.012768pt;}
.ws2e_c00154{word-spacing:-0.008512pt;}
.ws1d_c00154{word-spacing:-0.006400pt;}
.wsd_c00154{word-spacing:0.000000pt;}
.ws2d_c00154{word-spacing:0.004256pt;}
.ws14_c00154{word-spacing:0.006400pt;}
.ws1a_c00154{word-spacing:0.012800pt;}
.ws30_c00154{word-spacing:0.017024pt;}
.ws38_c00154{word-spacing:0.025536pt;}
.ws2c_c00154{word-spacing:0.032000pt;}
.wsc_c00154{word-spacing:0.037408pt;}
.ws12_c00154{word-spacing:0.057600pt;}
.ws15_c00154{word-spacing:0.070400pt;}
.ws32_c00154{word-spacing:0.302176pt;}
.ws26_c00154{word-spacing:1.017600pt;}
.ws3d_c00154{word-spacing:1.276800pt;}
.ws3b_c00154{word-spacing:1.578976pt;}
.ws3a_c00154{word-spacing:1.587488pt;}
.ws33_c00154{word-spacing:1.889664pt;}
.ws34_c00154{word-spacing:1.902432pt;}
.ws35_c00154{word-spacing:1.923712pt;}
.ws1f_c00154{word-spacing:2.240000pt;}
.ws20_c00154{word-spacing:2.297600pt;}
.ws23_c00154{word-spacing:2.566400pt;}
.ws24_c00154{word-spacing:2.636800pt;}
.ws25_c00154{word-spacing:2.937600pt;}
.wsf_c00154{word-spacing:3.833600pt;}
.ws10_c00154{word-spacing:3.942400pt;}
.ws16_c00154{word-spacing:4.473600pt;}
.wse_c00154{word-spacing:4.499200pt;}
.ws37_c00154{word-spacing:4.788000pt;}
.ws36_c00154{word-spacing:4.830560pt;}
.ws19_c00154{word-spacing:6.406400pt;}
.ws3f_c00154{word-spacing:6.686176pt;}
.ws40_c00154{word-spacing:6.703200pt;}
.ws3e_c00154{word-spacing:6.767040pt;}
.ws3c_c00154{word-spacing:7.030912pt;}
.ws27_c00154{word-spacing:8.307200pt;}
.ws28_c00154{word-spacing:8.339200pt;}
.ws13_c00154{word-spacing:8.665600pt;}
.ws18_c00154{word-spacing:12.492800pt;}
.ws17_c00154{word-spacing:12.505600pt;}
.ws1b_c00154{word-spacing:12.787200pt;}
.ws1c_c00154{word-spacing:12.793600pt;}
.ws21_c00154{word-spacing:15.993600pt;}
.ws22_c00154{word-spacing:16.006400pt;}
.ws29_c00154{word-spacing:26.553600pt;}
.ws2b_c00154{word-spacing:26.572800pt;}
.ws2a_c00154{word-spacing:26.624000pt;}
._3_c00154{margin-left:-3.648000pt;}
._2_c00154{margin-left:-2.432000pt;}
._0_c00154{margin-left:-1.175680pt;}
._1_c00154{width:1.043200pt;}
._5_c00154{width:2.084960pt;}
._4_c00154{width:5.221152pt;}
.fs6_c00154{font-size:34.560000pt;}
.fs3_c00154{font-size:37.440000pt;}
.fs5_c00154{font-size:42.560000pt;}
.fs1_c00154{font-size:48.000000pt;}
.fs0_c00154{font-size:53.440000pt;}
.fs2_c00154{font-size:64.000000pt;}
.fs4_c00154{font-size:69.440000pt;}
.y0_c00154{bottom:0.000000pt;}
.y3_c00154{bottom:51.067067pt;}
.y27_c00154{bottom:97.072320pt;}
.y26_c00154{bottom:109.393440pt;}
.y25_c00154{bottom:121.629440pt;}
.y24_c00154{bottom:133.865440pt;}
.y23_c00154{bottom:150.190427pt;}
.y22_c00154{bottom:166.429307pt;}
.y21_c00154{bottom:182.665947pt;}
.y20_c00154{bottom:194.995067pt;}
.y1f_c00154{bottom:207.231067pt;}
.y1e_c00154{bottom:219.468667pt;}
.y1d_c00154{bottom:235.790427pt;}
.y1c_c00154{bottom:252.030427pt;}
.y1b_c00154{bottom:268.267067pt;}
.y1a_c00154{bottom:281.787067pt;}
.y19_c00154{bottom:300.187067pt;}
.y18_c00154{bottom:318.587067pt;}
.y17_c00154{bottom:366.427200pt;}
.y16_c00154{bottom:396.987067pt;}
.y15_c00154{bottom:427.627067pt;}
.y14_c00154{bottom:458.187067pt;}
.y13_c00154{bottom:488.827067pt;}
.y12_c00154{bottom:519.387067pt;}
.y11_c00154{bottom:550.027067pt;}
.y10_c00154{bottom:580.587067pt;}
.yf_c00154{bottom:620.667067pt;}
.ye_c00154{bottom:676.347067pt;}
.yd_c00154{bottom:706.987067pt;}
.yc_c00154{bottom:753.547067pt;}
.yb_c00154{bottom:784.187067pt;}
.ya_c00154{bottom:814.747067pt;}
.y9_c00154{bottom:845.387067pt;}
.y8_c00154{bottom:883.947067pt;}
.y7_c00154{bottom:914.587067pt;}
.y6_c00154{bottom:953.147067pt;}
.y5_c00154{bottom:983.787067pt;}
.y4_c00154{bottom:1014.347067pt;}
.y2_c00154{bottom:1046.987067pt;}
.y1_c00154{bottom:1063.867067pt;}
.h9_c00154{height:42.656250pt;}
.ha_c00154{height:44.388750pt;}
.h1_c00154{height:44.724687pt;}
.h2_c00154{height:50.062500pt;}
.h5_c00154{height:53.562500pt;}
.h6_c00154{height:57.894062pt;}
.h7_c00154{height:57.894596pt;}
.h3_c00154{height:64.142500pt;}
.h4_c00154{height:66.750000pt;}
.h8_c00154{height:72.423750pt;}
.h0_c00154{height:1122.666667pt;}
.w1_c00154{width:793.333333pt;}
.w0_c00154{width:793.626667pt;}
.x0_c00154{left:0.000000pt;}
.x1_c00154{left:113.440000pt;}
.x2_c00154{left:137.280000pt;}
.x3_c00154{left:161.040000pt;}
.x4_c00154{left:184.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_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_c780ab6c4baa0f159512f465.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00155;src:url('chunks/assets/font_0c430f2bc40c0cb0baed5398.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00155;src:url('chunks/assets/font_20224e87431ab0bd4840d970.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00155;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00155{font-family:ff5_c00155;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_c00155;src:url('chunks/assets/font_0ece90b2bd03f7cb21423567.woff2')format("woff");}.ff6_c00155{font-family:ff6_c00155;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_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);}
.v2_c00155{vertical-align:-60.840000px;}
.v0_c00155{vertical-align:0.000000px;}
.v1_c00155{vertical-align:29.880000px;}
.ls16_c00155{letter-spacing:-0.151200px;}
.ls1f_c00155{letter-spacing:-0.085932px;}
.ls14_c00155{letter-spacing:-0.048096px;}
.ls1b_c00155{letter-spacing:-0.043200px;}
.ls19_c00155{letter-spacing:-0.036000px;}
.ls18_c00155{letter-spacing:-0.028800px;}
.ls1c_c00155{letter-spacing:-0.021600px;}
.ls13_c00155{letter-spacing:-0.018036px;}
.ls17_c00155{letter-spacing:-0.014400px;}
.ls1a_c00155{letter-spacing:-0.007200px;}
.ls21_c00155{letter-spacing:-0.003888px;}
.ls15_c00155{letter-spacing:0.000000px;}
.ls5_c00155{letter-spacing:0.007200px;}
.lsc_c00155{letter-spacing:0.014364px;}
.ls3_c00155{letter-spacing:0.014400px;}
.lse_c00155{letter-spacing:0.028728px;}
.ls10_c00155{letter-spacing:0.033516px;}
.ls0_c00155{letter-spacing:0.036072px;}
.ls7_c00155{letter-spacing:0.038304px;}
.ls11_c00155{letter-spacing:0.043092px;}
.ls2_c00155{letter-spacing:0.043200px;}
.lsf_c00155{letter-spacing:0.047880px;}
.lsb_c00155{letter-spacing:0.052668px;}
.ls1e_c00155{letter-spacing:0.054684px;}
.ls1_c00155{letter-spacing:0.054756px;}
.ls9_c00155{letter-spacing:0.057456px;}
.lsa_c00155{letter-spacing:0.067032px;}
.ls8_c00155{letter-spacing:0.075960px;}
.ls1d_c00155{letter-spacing:0.093600px;}
.ls12_c00155{letter-spacing:0.104040px;}
.ls20_c00155{letter-spacing:0.346032px;}
.ls22_c00155{letter-spacing:0.357696px;}
.lsd_c00155{letter-spacing:0.435960px;}
.ls4_c00155{letter-spacing:29.373120px;}
.ls6_c00155{letter-spacing:90.000000px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00155{word-spacing:-19.530000px;}
.ws3_c00155{word-spacing:-19.444068px;}
.ws1_c00155{word-spacing:-17.992800px;}
.ws5_c00155{word-spacing:-11.166336px;}
.ws4_c00155{word-spacing:-11.154672px;}
.ws0_c00155{word-spacing:-10.584756px;}
.ws24_c00155{word-spacing:-0.093744px;}
.ws1b_c00155{word-spacing:-0.093600px;}
.ws2e_c00155{word-spacing:-0.033516px;}
.ws32_c00155{word-spacing:-0.028728px;}
.ws34_c00155{word-spacing:-0.023940px;}
.ws33_c00155{word-spacing:-0.014364px;}
.ws31_c00155{word-spacing:-0.009576px;}
.ws29_c00155{word-spacing:-0.007200px;}
.ws9_c00155{word-spacing:0.000000px;}
.ws30_c00155{word-spacing:0.004788px;}
.ws23_c00155{word-spacing:0.007200px;}
.ws1c_c00155{word-spacing:0.014400px;}
.ws2f_c00155{word-spacing:0.019152px;}
.ws1a_c00155{word-spacing:0.028800px;}
.ws6_c00155{word-spacing:0.054108px;}
.ws12_c00155{word-spacing:0.086400px;}
.ws2a_c00155{word-spacing:0.093600px;}
.ws7_c00155{word-spacing:0.108216px;}
.ws8_c00155{word-spacing:0.138276px;}
.ws28_c00155{word-spacing:1.368000px;}
.ws1e_c00155{word-spacing:1.432800px;}
.ws14_c00155{word-spacing:1.447200px;}
.ws1d_c00155{word-spacing:1.454400px;}
.ws13_c00155{word-spacing:1.526400px;}
.ws22_c00155{word-spacing:1.670400px;}
.ws21_c00155{word-spacing:1.771200px;}
.ws19_c00155{word-spacing:2.181600px;}
.wsd_c00155{word-spacing:2.476800px;}
.wse_c00155{word-spacing:2.570400px;}
.wsf_c00155{word-spacing:2.584800px;}
.ws15_c00155{word-spacing:2.865600px;}
.wsa_c00155{word-spacing:3.160800px;}
.wsb_c00155{word-spacing:3.268800px;}
.wsc_c00155{word-spacing:3.276000px;}
.ws10_c00155{word-spacing:7.437600px;}
.ws17_c00155{word-spacing:7.516800px;}
.ws16_c00155{word-spacing:7.560000px;}
.ws11_c00155{word-spacing:7.567200px;}
.ws2d_c00155{word-spacing:11.831148px;}
.ws2c_c00155{word-spacing:11.840724px;}
.ws2b_c00155{word-spacing:11.859876px;}
.ws26_c00155{word-spacing:15.199200px;}
.ws25_c00155{word-spacing:15.256800px;}
.ws27_c00155{word-spacing:16.934400px;}
.ws18_c00155{word-spacing:20.908800px;}
.ws1f_c00155{word-spacing:24.062400px;}
.ws20_c00155{word-spacing:24.120000px;}
._2_c00155{margin-left:-4.680000px;}
._0_c00155{margin-left:-1.142280px;}
._1_c00155{width:1.008000px;}
._3_c00155{width:12.623040px;}
.fc0_c00155{color:rgb(0,0,0);}
.fs6_c00155{font-size:38.880000px;}
.fs3_c00155{font-size:42.120000px;}
.fs5_c00155{font-size:47.880000px;}
.fs2_c00155{font-size:54.000000px;}
.fs0_c00155{font-size:60.120000px;}
.fs1_c00155{font-size:72.000000px;}
.fs4_c00155{font-size:78.120000px;}
.y0_c00155{bottom:0.000000px;}
.y3_c00155{bottom:57.450450px;}
.y4_c00155{bottom:61.410450px;}
.y25_c00155{bottom:113.698470px;}
.y24_c00155{bottom:132.064230px;}
.y23_c00155{bottom:150.339810px;}
.y22_c00155{bottom:168.606030px;}
.y21_c00155{bottom:186.968010px;}
.y20_c00155{bottom:205.234230px;}
.y1f_c00155{bottom:223.502250px;}
.y1e_c00155{bottom:241.864230px;}
.y1d_c00155{bottom:260.132970px;}
.y1c_c00155{bottom:278.399190px;}
.y1b_c00155{bottom:307.470450px;}
.y1a_c00155{bottom:328.080450px;}
.y19_c00155{bottom:348.780450px;}
.y18_c00155{bottom:430.230600px;}
.y17_c00155{bottom:464.610450px;}
.y16_c00155{bottom:499.080450px;}
.y15_c00155{bottom:533.460450px;}
.y14_c00155{bottom:578.550450px;}
.y13_c00155{bottom:641.190600px;}
.y12_c00155{bottom:675.660600px;}
.y11_c00155{bottom:710.040600px;}
.y10_c00155{bottom:744.510600px;}
.yf_c00155{bottom:778.890600px;}
.ye_c00155{bottom:822.360450px;}
.yd_c00155{bottom:856.740450px;}
.yc_c00155{bottom:891.210450px;}
.yb_c00155{bottom:925.590450px;}
.ya_c00155{bottom:960.060450px;}
.y9_c00155{bottom:994.440450px;}
.y8_c00155{bottom:1037.910450px;}
.y7_c00155{bottom:1072.290450px;}
.y6_c00155{bottom:1106.760450px;}
.y5_c00155{bottom:1141.140450px;}
.y2_c00155{bottom:1173.810450px;}
.y1_c00155{bottom:1196.850450px;}
.h2_c00155{height:47.988281px;}
.h8_c00155{height:49.937344px;}
.h9_c00155{height:49.945264px;}
.h1_c00155{height:50.315273px;}
.h3_c00155{height:56.320312px;}
.h5_c00155{height:60.257812px;}
.h6_c00155{height:65.130220px;}
.h4_c00155{height:65.130820px;}
.h7_c00155{height:81.476719px;}
.h0_c00155{height:1263.000000px;}
.w1_c00155{width:892.500000px;}
.w0_c00155{width:892.830000px;}
.x0_c00155{left:0.000000px;}
.x2_c00155{left:127.620000px;}
.x1_c00155{left:145.440000px;}
.x6_c00155{left:154.610820px;}
.x5_c00155{left:180.810000px;}
.x4_c00155{left:435.240000px;}
.x3_c00155{left:446.490000px;}
@media print{
.v2_c00155{vertical-align:-54.080000pt;}
.v0_c00155{vertical-align:0.000000pt;}
.v1_c00155{vertical-align:26.560000pt;}
.ls16_c00155{letter-spacing:-0.134400pt;}
.ls1f_c00155{letter-spacing:-0.076384pt;}
.ls14_c00155{letter-spacing:-0.042752pt;}
.ls1b_c00155{letter-spacing:-0.038400pt;}
.ls19_c00155{letter-spacing:-0.032000pt;}
.ls18_c00155{letter-spacing:-0.025600pt;}
.ls1c_c00155{letter-spacing:-0.019200pt;}
.ls13_c00155{letter-spacing:-0.016032pt;}
.ls17_c00155{letter-spacing:-0.012800pt;}
.ls1a_c00155{letter-spacing:-0.006400pt;}
.ls21_c00155{letter-spacing:-0.003456pt;}
.ls15_c00155{letter-spacing:0.000000pt;}
.ls5_c00155{letter-spacing:0.006400pt;}
.lsc_c00155{letter-spacing:0.012768pt;}
.ls3_c00155{letter-spacing:0.012800pt;}
.lse_c00155{letter-spacing:0.025536pt;}
.ls10_c00155{letter-spacing:0.029792pt;}
.ls0_c00155{letter-spacing:0.032064pt;}
.ls7_c00155{letter-spacing:0.034048pt;}
.ls11_c00155{letter-spacing:0.038304pt;}
.ls2_c00155{letter-spacing:0.038400pt;}
.lsf_c00155{letter-spacing:0.042560pt;}
.lsb_c00155{letter-spacing:0.046816pt;}
.ls1e_c00155{letter-spacing:0.048608pt;}
.ls1_c00155{letter-spacing:0.048672pt;}
.ls9_c00155{letter-spacing:0.051072pt;}
.lsa_c00155{letter-spacing:0.059584pt;}
.ls8_c00155{letter-spacing:0.067520pt;}
.ls1d_c00155{letter-spacing:0.083200pt;}
.ls12_c00155{letter-spacing:0.092480pt;}
.ls20_c00155{letter-spacing:0.307584pt;}
.ls22_c00155{letter-spacing:0.317952pt;}
.lsd_c00155{letter-spacing:0.387520pt;}
.ls4_c00155{letter-spacing:26.109440pt;}
.ls6_c00155{letter-spacing:80.000000pt;}
.ws2_c00155{word-spacing:-17.360000pt;}
.ws3_c00155{word-spacing:-17.283616pt;}
.ws1_c00155{word-spacing:-15.993600pt;}
.ws5_c00155{word-spacing:-9.925632pt;}
.ws4_c00155{word-spacing:-9.915264pt;}
.ws0_c00155{word-spacing:-9.408672pt;}
.ws24_c00155{word-spacing:-0.083328pt;}
.ws1b_c00155{word-spacing:-0.083200pt;}
.ws2e_c00155{word-spacing:-0.029792pt;}
.ws32_c00155{word-spacing:-0.025536pt;}
.ws34_c00155{word-spacing:-0.021280pt;}
.ws33_c00155{word-spacing:-0.012768pt;}
.ws31_c00155{word-spacing:-0.008512pt;}
.ws29_c00155{word-spacing:-0.006400pt;}
.ws9_c00155{word-spacing:0.000000pt;}
.ws30_c00155{word-spacing:0.004256pt;}
.ws23_c00155{word-spacing:0.006400pt;}
.ws1c_c00155{word-spacing:0.012800pt;}
.ws2f_c00155{word-spacing:0.017024pt;}
.ws1a_c00155{word-spacing:0.025600pt;}
.ws6_c00155{word-spacing:0.048096pt;}
.ws12_c00155{word-spacing:0.076800pt;}
.ws2a_c00155{word-spacing:0.083200pt;}
.ws7_c00155{word-spacing:0.096192pt;}
.ws8_c00155{word-spacing:0.122912pt;}
.ws28_c00155{word-spacing:1.216000pt;}
.ws1e_c00155{word-spacing:1.273600pt;}
.ws14_c00155{word-spacing:1.286400pt;}
.ws1d_c00155{word-spacing:1.292800pt;}
.ws13_c00155{word-spacing:1.356800pt;}
.ws22_c00155{word-spacing:1.484800pt;}
.ws21_c00155{word-spacing:1.574400pt;}
.ws19_c00155{word-spacing:1.939200pt;}
.wsd_c00155{word-spacing:2.201600pt;}
.wse_c00155{word-spacing:2.284800pt;}
.wsf_c00155{word-spacing:2.297600pt;}
.ws15_c00155{word-spacing:2.547200pt;}
.wsa_c00155{word-spacing:2.809600pt;}
.wsb_c00155{word-spacing:2.905600pt;}
.wsc_c00155{word-spacing:2.912000pt;}
.ws10_c00155{word-spacing:6.611200pt;}
.ws17_c00155{word-spacing:6.681600pt;}
.ws16_c00155{word-spacing:6.720000pt;}
.ws11_c00155{word-spacing:6.726400pt;}
.ws2d_c00155{word-spacing:10.516576pt;}
.ws2c_c00155{word-spacing:10.525088pt;}
.ws2b_c00155{word-spacing:10.542112pt;}
.ws26_c00155{word-spacing:13.510400pt;}
.ws25_c00155{word-spacing:13.561600pt;}
.ws27_c00155{word-spacing:15.052800pt;}
.ws18_c00155{word-spacing:18.585600pt;}
.ws1f_c00155{word-spacing:21.388800pt;}
.ws20_c00155{word-spacing:21.440000pt;}
._2_c00155{margin-left:-4.160000pt;}
._0_c00155{margin-left:-1.015360pt;}
._1_c00155{width:0.896000pt;}
._3_c00155{width:11.220480pt;}
.fs6_c00155{font-size:34.560000pt;}
.fs3_c00155{font-size:37.440000pt;}
.fs5_c00155{font-size:42.560000pt;}
.fs2_c00155{font-size:48.000000pt;}
.fs0_c00155{font-size:53.440000pt;}
.fs1_c00155{font-size:64.000000pt;}
.fs4_c00155{font-size:69.440000pt;}
.y0_c00155{bottom:0.000000pt;}
.y3_c00155{bottom:51.067067pt;}
.y4_c00155{bottom:54.587067pt;}
.y25_c00155{bottom:101.065307pt;}
.y24_c00155{bottom:117.390427pt;}
.y23_c00155{bottom:133.635387pt;}
.y22_c00155{bottom:149.872027pt;}
.y21_c00155{bottom:166.193787pt;}
.y20_c00155{bottom:182.430427pt;}
.y1f_c00155{bottom:198.668667pt;}
.y1e_c00155{bottom:214.990427pt;}
.y1d_c00155{bottom:231.229307pt;}
.y1c_c00155{bottom:247.465947pt;}
.y1b_c00155{bottom:273.307067pt;}
.y1a_c00155{bottom:291.627067pt;}
.y19_c00155{bottom:310.027067pt;}
.y18_c00155{bottom:382.427200pt;}
.y17_c00155{bottom:412.987067pt;}
.y16_c00155{bottom:443.627067pt;}
.y15_c00155{bottom:474.187067pt;}
.y14_c00155{bottom:514.267067pt;}
.y13_c00155{bottom:569.947200pt;}
.y12_c00155{bottom:600.587200pt;}
.y11_c00155{bottom:631.147200pt;}
.y10_c00155{bottom:661.787200pt;}
.yf_c00155{bottom:692.347200pt;}
.ye_c00155{bottom:730.987067pt;}
.yd_c00155{bottom:761.547067pt;}
.yc_c00155{bottom:792.187067pt;}
.yb_c00155{bottom:822.747067pt;}
.ya_c00155{bottom:853.387067pt;}
.y9_c00155{bottom:883.947067pt;}
.y8_c00155{bottom:922.587067pt;}
.y7_c00155{bottom:953.147067pt;}
.y6_c00155{bottom:983.787067pt;}
.y5_c00155{bottom:1014.347067pt;}
.y2_c00155{bottom:1043.387067pt;}
.y1_c00155{bottom:1063.867067pt;}
.h2_c00155{height:42.656250pt;}
.h8_c00155{height:44.388750pt;}
.h9_c00155{height:44.395790pt;}
.h1_c00155{height:44.724687pt;}
.h3_c00155{height:50.062500pt;}
.h5_c00155{height:53.562500pt;}
.h6_c00155{height:57.893529pt;}
.h4_c00155{height:57.894063pt;}
.h7_c00155{height:72.423750pt;}
.h0_c00155{height:1122.666667pt;}
.w1_c00155{width:793.333333pt;}
.w0_c00155{width:793.626667pt;}
.x0_c00155{left:0.000000pt;}
.x2_c00155{left:113.440000pt;}
.x1_c00155{left:129.280000pt;}
.x6_c00155{left:137.431840pt;}
.x5_c00155{left:160.720000pt;}
.x4_c00155{left:386.880000pt;}
.x3_c00155{left:396.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_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_b01e85fafe29ede742de1e37.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.100098;font-style:normal;font-weight:normal;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_1384a3e91d622bbcd7c44563.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;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_c00156;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00156;src:url('chunks/assets/font_9f13310b73adb54ae796c665.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;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_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;}
.v1_c00156{vertical-align:15.840000px;}
.v2_c00156{vertical-align:29.880000px;}
.ls14_c00156{letter-spacing:-0.151200px;}
.ls18_c00156{letter-spacing:-0.043200px;}
.ls1b_c00156{letter-spacing:-0.036000px;}
.ls19_c00156{letter-spacing:-0.028800px;}
.ls17_c00156{letter-spacing:-0.021600px;}
.ls15_c00156{letter-spacing:-0.014400px;}
.ls1f_c00156{letter-spacing:-0.011664px;}
.ls20_c00156{letter-spacing:-0.009576px;}
.ls1e_c00156{letter-spacing:-0.007776px;}
.ls16_c00156{letter-spacing:-0.007200px;}
.ls21_c00156{letter-spacing:-0.003888px;}
.ls13_c00156{letter-spacing:0.000000px;}
.lsc_c00156{letter-spacing:0.004788px;}
.ls8_c00156{letter-spacing:0.007200px;}
.ls9_c00156{letter-spacing:0.014364px;}
.ls4_c00156{letter-spacing:0.014400px;}
.lsa_c00156{letter-spacing:0.028728px;}
.ls10_c00156{letter-spacing:0.033516px;}
.lsd_c00156{letter-spacing:0.038304px;}
.ls12_c00156{letter-spacing:0.043092px;}
.ls7_c00156{letter-spacing:0.043200px;}
.lsb_c00156{letter-spacing:0.047880px;}
.ls0_c00156{letter-spacing:0.048096px;}
.ls5_c00156{letter-spacing:0.054756px;}
.ls1c_c00156{letter-spacing:0.071820px;}
.ls1a_c00156{letter-spacing:0.093600px;}
.ls11_c00156{letter-spacing:0.104040px;}
.ls6_c00156{letter-spacing:0.115200px;}
.ls2_c00156{letter-spacing:0.144000px;}
.ls22_c00156{letter-spacing:0.346032px;}
.lse_c00156{letter-spacing:0.350640px;}
.ls23_c00156{letter-spacing:0.357696px;}
.lsf_c00156{letter-spacing:0.435960px;}
.ls1d_c00156{letter-spacing:6.856416px;}
.ls3_c00156{letter-spacing:66.024000px;}
.ls1_c00156{letter-spacing:1212.120000px;}
.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;}
}
.ws3_c00156{word-spacing:-13.348944px;}
.ws1_c00156{word-spacing:-13.310640px;}
.ws6_c00156{word-spacing:-11.166336px;}
.ws5_c00156{word-spacing:-11.154672px;}
.ws4_c00156{word-spacing:-10.800864px;}
.ws2_c00156{word-spacing:-10.796976px;}
.ws0_c00156{word-spacing:-10.584756px;}
.ws37_c00156{word-spacing:-0.028728px;}
.ws3a_c00156{word-spacing:-0.023940px;}
.ws35_c00156{word-spacing:-0.019152px;}
.ws39_c00156{word-spacing:-0.014364px;}
.ws36_c00156{word-spacing:-0.009576px;}
.ws19_c00156{word-spacing:-0.007200px;}
.ws8_c00156{word-spacing:0.000000px;}
.ws34_c00156{word-spacing:0.004788px;}
.ws22_c00156{word-spacing:0.007200px;}
.ws32_c00156{word-spacing:0.014364px;}
.ws16_c00156{word-spacing:0.014400px;}
.ws38_c00156{word-spacing:0.019152px;}
.ws33_c00156{word-spacing:0.028728px;}
.ws7_c00156{word-spacing:0.042084px;}
.wsd_c00156{word-spacing:0.050400px;}
.ws1a_c00156{word-spacing:0.093600px;}
.wsb_c00156{word-spacing:0.309600px;}
.wsc_c00156{word-spacing:0.367200px;}
.ws17_c00156{word-spacing:0.381600px;}
.ws18_c00156{word-spacing:0.403200px;}
.ws21_c00156{word-spacing:1.094400px;}
.ws26_c00156{word-spacing:1.548000px;}
.ws25_c00156{word-spacing:1.562400px;}
.ws10_c00156{word-spacing:1.684800px;}
.wsf_c00156{word-spacing:1.872000px;}
.wse_c00156{word-spacing:1.886400px;}
.ws24_c00156{word-spacing:2.210400px;}
.ws23_c00156{word-spacing:2.239200px;}
.ws28_c00156{word-spacing:2.484000px;}
.ws29_c00156{word-spacing:2.541600px;}
.ws27_c00156{word-spacing:2.563200px;}
.ws2d_c00156{word-spacing:2.872800px;}
.ws12_c00156{word-spacing:5.680800px;}
.ws13_c00156{word-spacing:5.781600px;}
.ws1b_c00156{word-spacing:6.472800px;}
.ws1c_c00156{word-spacing:6.516000px;}
.ws31_c00156{word-spacing:6.808536px;}
.ws30_c00156{word-spacing:6.827688px;}
.ws2a_c00156{word-spacing:7.149600px;}
.ws2b_c00156{word-spacing:7.171200px;}
.wsa_c00156{word-spacing:7.257600px;}
.ws9_c00156{word-spacing:7.272000px;}
.ws11_c00156{word-spacing:9.014400px;}
.ws2c_c00156{word-spacing:9.043200px;}
.ws1f_c00156{word-spacing:9.295200px;}
.ws20_c00156{word-spacing:9.302400px;}
.ws15_c00156{word-spacing:10.036800px;}
.ws14_c00156{word-spacing:10.087200px;}
.ws1d_c00156{word-spacing:17.668800px;}
.ws1e_c00156{word-spacing:17.769600px;}
.ws2f_c00156{word-spacing:20.152800px;}
.ws2e_c00156{word-spacing:20.217600px;}
._3_c00156{margin-left:-6.723792px;}
._0_c00156{margin-left:-1.322640px;}
._1_c00156{width:1.152000px;}
._2_c00156{width:6.822900px;}
.fc0_c00156{color:rgb(0,0,0);}
.fs5_c00156{font-size:38.880000px;}
.fs3_c00156{font-size:42.120000px;}
.fs4_c00156{font-size:47.880000px;}
.fs1_c00156{font-size:54.000000px;}
.fs0_c00156{font-size:60.120000px;}
.fs2_c00156{font-size:72.000000px;}
.y0_c00156{bottom:0.000000px;}
.y3_c00156{bottom:57.450450px;}
.y23_c00156{bottom:113.702250px;}
.y22_c00156{bottom:132.064230px;}
.y21_c00156{bottom:150.334230px;}
.y20_c00156{bottom:168.602970px;}
.y1f_c00156{bottom:186.964950px;}
.y1e_c00156{bottom:200.730450px;}
.y1d_c00156{bottom:215.940450px;}
.y1c_c00156{bottom:236.640450px;}
.y1b_c00156{bottom:257.340600px;}
.y1a_c00156{bottom:356.790450px;}
.y19_c00156{bottom:391.260450px;}
.y18_c00156{bottom:425.640450px;}
.y17_c00156{bottom:460.110450px;}
.y16_c00156{bottom:494.490450px;}
.y15_c00156{bottom:528.960450px;}
.y14_c00156{bottom:563.340450px;}
.y13_c00156{bottom:597.810450px;}
.y12_c00156{bottom:641.190450px;}
.y11_c00156{bottom:675.660450px;}
.y10_c00156{bottom:710.040450px;}
.yf_c00156{bottom:744.510450px;}
.ye_c00156{bottom:778.890450px;}
.yd_c00156{bottom:822.360450px;}
.yc_c00156{bottom:856.740450px;}
.yb_c00156{bottom:891.210450px;}
.ya_c00156{bottom:925.590450px;}
.y9_c00156{bottom:960.060450px;}
.y8_c00156{bottom:994.440450px;}
.y7_c00156{bottom:1028.910450px;}
.y6_c00156{bottom:1072.290450px;}
.y5_c00156{bottom:1106.760450px;}
.y4_c00156{bottom:1141.140450px;}
.y2_c00156{bottom:1177.860450px;}
.y1_c00156{bottom:1196.850450px;}
.h7_c00156{height:47.988281px;}
.h8_c00156{height:49.937344px;}
.h1_c00156{height:50.315273px;}
.h2_c00156{height:56.320312px;}
.h4_c00156{height:60.257812px;}
.h6_c00156{height:65.130820px;}
.h3_c00156{height:72.160312px;}
.h5_c00156{height:75.093750px;}
.h0_c00156{height:1263.000000px;}
.w1_c00156{width:892.500000px;}
.w0_c00156{width:892.830000px;}
.x0_c00156{left:0.000000px;}
.x1_c00156{left:127.620000px;}
.x3_c00156{left:154.440000px;}
.x2_c00156{left:180.810000px;}
.x4_c00156{left:208.620000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.v1_c00156{vertical-align:14.080000pt;}
.v2_c00156{vertical-align:26.560000pt;}
.ls14_c00156{letter-spacing:-0.134400pt;}
.ls18_c00156{letter-spacing:-0.038400pt;}
.ls1b_c00156{letter-spacing:-0.032000pt;}
.ls19_c00156{letter-spacing:-0.025600pt;}
.ls17_c00156{letter-spacing:-0.019200pt;}
.ls15_c00156{letter-spacing:-0.012800pt;}
.ls1f_c00156{letter-spacing:-0.010368pt;}
.ls20_c00156{letter-spacing:-0.008512pt;}
.ls1e_c00156{letter-spacing:-0.006912pt;}
.ls16_c00156{letter-spacing:-0.006400pt;}
.ls21_c00156{letter-spacing:-0.003456pt;}
.ls13_c00156{letter-spacing:0.000000pt;}
.lsc_c00156{letter-spacing:0.004256pt;}
.ls8_c00156{letter-spacing:0.006400pt;}
.ls9_c00156{letter-spacing:0.012768pt;}
.ls4_c00156{letter-spacing:0.012800pt;}
.lsa_c00156{letter-spacing:0.025536pt;}
.ls10_c00156{letter-spacing:0.029792pt;}
.lsd_c00156{letter-spacing:0.034048pt;}
.ls12_c00156{letter-spacing:0.038304pt;}
.ls7_c00156{letter-spacing:0.038400pt;}
.lsb_c00156{letter-spacing:0.042560pt;}
.ls0_c00156{letter-spacing:0.042752pt;}
.ls5_c00156{letter-spacing:0.048672pt;}
.ls1c_c00156{letter-spacing:0.063840pt;}
.ls1a_c00156{letter-spacing:0.083200pt;}
.ls11_c00156{letter-spacing:0.092480pt;}
.ls6_c00156{letter-spacing:0.102400pt;}
.ls2_c00156{letter-spacing:0.128000pt;}
.ls22_c00156{letter-spacing:0.307584pt;}
.lse_c00156{letter-spacing:0.311680pt;}
.ls23_c00156{letter-spacing:0.317952pt;}
.lsf_c00156{letter-spacing:0.387520pt;}
.ls1d_c00156{letter-spacing:6.094592pt;}
.ls3_c00156{letter-spacing:58.688000pt;}
.ls1_c00156{letter-spacing:1077.440000pt;}
.ws3_c00156{word-spacing:-11.865728pt;}
.ws1_c00156{word-spacing:-11.831680pt;}
.ws6_c00156{word-spacing:-9.925632pt;}
.ws5_c00156{word-spacing:-9.915264pt;}
.ws4_c00156{word-spacing:-9.600768pt;}
.ws2_c00156{word-spacing:-9.597312pt;}
.ws0_c00156{word-spacing:-9.408672pt;}
.ws37_c00156{word-spacing:-0.025536pt;}
.ws3a_c00156{word-spacing:-0.021280pt;}
.ws35_c00156{word-spacing:-0.017024pt;}
.ws39_c00156{word-spacing:-0.012768pt;}
.ws36_c00156{word-spacing:-0.008512pt;}
.ws19_c00156{word-spacing:-0.006400pt;}
.ws8_c00156{word-spacing:0.000000pt;}
.ws34_c00156{word-spacing:0.004256pt;}
.ws22_c00156{word-spacing:0.006400pt;}
.ws32_c00156{word-spacing:0.012768pt;}
.ws16_c00156{word-spacing:0.012800pt;}
.ws38_c00156{word-spacing:0.017024pt;}
.ws33_c00156{word-spacing:0.025536pt;}
.ws7_c00156{word-spacing:0.037408pt;}
.wsd_c00156{word-spacing:0.044800pt;}
.ws1a_c00156{word-spacing:0.083200pt;}
.wsb_c00156{word-spacing:0.275200pt;}
.wsc_c00156{word-spacing:0.326400pt;}
.ws17_c00156{word-spacing:0.339200pt;}
.ws18_c00156{word-spacing:0.358400pt;}
.ws21_c00156{word-spacing:0.972800pt;}
.ws26_c00156{word-spacing:1.376000pt;}
.ws25_c00156{word-spacing:1.388800pt;}
.ws10_c00156{word-spacing:1.497600pt;}
.wsf_c00156{word-spacing:1.664000pt;}
.wse_c00156{word-spacing:1.676800pt;}
.ws24_c00156{word-spacing:1.964800pt;}
.ws23_c00156{word-spacing:1.990400pt;}
.ws28_c00156{word-spacing:2.208000pt;}
.ws29_c00156{word-spacing:2.259200pt;}
.ws27_c00156{word-spacing:2.278400pt;}
.ws2d_c00156{word-spacing:2.553600pt;}
.ws12_c00156{word-spacing:5.049600pt;}
.ws13_c00156{word-spacing:5.139200pt;}
.ws1b_c00156{word-spacing:5.753600pt;}
.ws1c_c00156{word-spacing:5.792000pt;}
.ws31_c00156{word-spacing:6.052032pt;}
.ws30_c00156{word-spacing:6.069056pt;}
.ws2a_c00156{word-spacing:6.355200pt;}
.ws2b_c00156{word-spacing:6.374400pt;}
.wsa_c00156{word-spacing:6.451200pt;}
.ws9_c00156{word-spacing:6.464000pt;}
.ws11_c00156{word-spacing:8.012800pt;}
.ws2c_c00156{word-spacing:8.038400pt;}
.ws1f_c00156{word-spacing:8.262400pt;}
.ws20_c00156{word-spacing:8.268800pt;}
.ws15_c00156{word-spacing:8.921600pt;}
.ws14_c00156{word-spacing:8.966400pt;}
.ws1d_c00156{word-spacing:15.705600pt;}
.ws1e_c00156{word-spacing:15.795200pt;}
.ws2f_c00156{word-spacing:17.913600pt;}
.ws2e_c00156{word-spacing:17.971200pt;}
._3_c00156{margin-left:-5.976704pt;}
._0_c00156{margin-left:-1.175680pt;}
._1_c00156{width:1.024000pt;}
._2_c00156{width:6.064800pt;}
.fs5_c00156{font-size:34.560000pt;}
.fs3_c00156{font-size:37.440000pt;}
.fs4_c00156{font-size:42.560000pt;}
.fs1_c00156{font-size:48.000000pt;}
.fs0_c00156{font-size:53.440000pt;}
.fs2_c00156{font-size:64.000000pt;}
.y0_c00156{bottom:0.000000pt;}
.y3_c00156{bottom:51.067067pt;}
.y23_c00156{bottom:101.068667pt;}
.y22_c00156{bottom:117.390427pt;}
.y21_c00156{bottom:133.630427pt;}
.y20_c00156{bottom:149.869307pt;}
.y1f_c00156{bottom:166.191067pt;}
.y1e_c00156{bottom:178.427067pt;}
.y1d_c00156{bottom:191.947067pt;}
.y1c_c00156{bottom:210.347067pt;}
.y1b_c00156{bottom:228.747200pt;}
.y1a_c00156{bottom:317.147067pt;}
.y19_c00156{bottom:347.787067pt;}
.y18_c00156{bottom:378.347067pt;}
.y17_c00156{bottom:408.987067pt;}
.y16_c00156{bottom:439.547067pt;}
.y15_c00156{bottom:470.187067pt;}
.y14_c00156{bottom:500.747067pt;}
.y13_c00156{bottom:531.387067pt;}
.y12_c00156{bottom:569.947067pt;}
.y11_c00156{bottom:600.587067pt;}
.y10_c00156{bottom:631.147067pt;}
.yf_c00156{bottom:661.787067pt;}
.ye_c00156{bottom:692.347067pt;}
.yd_c00156{bottom:730.987067pt;}
.yc_c00156{bottom:761.547067pt;}
.yb_c00156{bottom:792.187067pt;}
.ya_c00156{bottom:822.747067pt;}
.y9_c00156{bottom:853.387067pt;}
.y8_c00156{bottom:883.947067pt;}
.y7_c00156{bottom:914.587067pt;}
.y6_c00156{bottom:953.147067pt;}
.y5_c00156{bottom:983.787067pt;}
.y4_c00156{bottom:1014.347067pt;}
.y2_c00156{bottom:1046.987067pt;}
.y1_c00156{bottom:1063.867067pt;}
.h7_c00156{height:42.656250pt;}
.h8_c00156{height:44.388750pt;}
.h1_c00156{height:44.724687pt;}
.h2_c00156{height:50.062500pt;}
.h4_c00156{height:53.562500pt;}
.h6_c00156{height:57.894063pt;}
.h3_c00156{height:64.142500pt;}
.h5_c00156{height:66.750000pt;}
.h0_c00156{height:1122.666667pt;}
.w1_c00156{width:793.333333pt;}
.w0_c00156{width:793.626667pt;}
.x0_c00156{left:0.000000pt;}
.x1_c00156{left:113.440000pt;}
.x3_c00156{left:137.280000pt;}
.x2_c00156{left:160.720000pt;}
.x4_c00156{left:185.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_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_cda8e0ddb04966591c0d8ce6.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00157;src:url('chunks/assets/font_0dd5ae65d4887e4df1c47501.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00157;src:url('chunks/assets/font_daa25e2373e8faa28cd8a94b.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00157;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00157{font-family:ff5_c00157;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_c00157;src:url('chunks/assets/font_89077a5c36d68348784515a2.woff2')format("woff");}.ff6_c00157{font-family:ff6_c00157;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_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;}
.v1_c00157{vertical-align:29.880000px;}
.ls14_c00157{letter-spacing:-0.151200px;}
.ls12_c00157{letter-spacing:-0.048096px;}
.ls1a_c00157{letter-spacing:-0.043200px;}
.ls19_c00157{letter-spacing:-0.036000px;}
.ls1d_c00157{letter-spacing:-0.028800px;}
.ls1b_c00157{letter-spacing:-0.023436px;}
.ls16_c00157{letter-spacing:-0.021600px;}
.ls11_c00157{letter-spacing:-0.018036px;}
.ls18_c00157{letter-spacing:-0.014400px;}
.ls17_c00157{letter-spacing:-0.007200px;}
.ls21_c00157{letter-spacing:-0.004788px;}
.ls20_c00157{letter-spacing:-0.003888px;}
.ls13_c00157{letter-spacing:0.000000px;}
.ls1_c00157{letter-spacing:0.007200px;}
.ls9_c00157{letter-spacing:0.014364px;}
.ls7_c00157{letter-spacing:0.014400px;}
.ls5_c00157{letter-spacing:0.021600px;}
.lsf_c00157{letter-spacing:0.028728px;}
.ls1c_c00157{letter-spacing:0.028800px;}
.ls8_c00157{letter-spacing:0.033516px;}
.ls0_c00157{letter-spacing:0.036072px;}
.lsc_c00157{letter-spacing:0.038304px;}
.ls10_c00157{letter-spacing:0.047880px;}
.ls2_c00157{letter-spacing:0.054756px;}
.lsd_c00157{letter-spacing:0.062244px;}
.ls1e_c00157{letter-spacing:0.071820px;}
.lsb_c00157{letter-spacing:0.075960px;}
.ls15_c00157{letter-spacing:0.093600px;}
.ls3_c00157{letter-spacing:0.144000px;}
.ls22_c00157{letter-spacing:0.346032px;}
.lse_c00157{letter-spacing:0.435960px;}
.lsa_c00157{letter-spacing:0.711360px;}
.ls1f_c00157{letter-spacing:0.737352px;}
.ls6_c00157{letter-spacing:29.373120px;}
.ls4_c00157{letter-spacing:66.024000px;}
.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;}
}
.ws2_c00157{word-spacing:-19.530000px;}
.ws1_c00157{word-spacing:-17.985600px;}
.ws3_c00157{word-spacing:-13.310640px;}
.ws5_c00157{word-spacing:-11.154672px;}
.ws4_c00157{word-spacing:-10.804752px;}
.ws0_c00157{word-spacing:-10.584756px;}
.wsc_c00157{word-spacing:-0.093600px;}
.ws2c_c00157{word-spacing:-0.086400px;}
.ws1c_c00157{word-spacing:-0.070308px;}
.ws30_c00157{word-spacing:-0.043092px;}
.ws33_c00157{word-spacing:-0.028728px;}
.ws2d_c00157{word-spacing:-0.014364px;}
.ws32_c00157{word-spacing:-0.009576px;}
.wsb_c00157{word-spacing:-0.007200px;}
.ws9_c00157{word-spacing:0.000000px;}
.ws2f_c00157{word-spacing:0.004788px;}
.ws1b_c00157{word-spacing:0.007200px;}
.ws31_c00157{word-spacing:0.023940px;}
.ws6_c00157{word-spacing:0.054108px;}
.ws24_c00157{word-spacing:0.072000px;}
.ws7_c00157{word-spacing:0.108216px;}
.ws8_c00157{word-spacing:0.138276px;}
.ws2e_c00157{word-spacing:0.699048px;}
.ws1f_c00157{word-spacing:0.720000px;}
.wsa_c00157{word-spacing:1.080000px;}
.ws2b_c00157{word-spacing:1.749600px;}
.ws2a_c00157{word-spacing:1.821600px;}
.wsf_c00157{word-spacing:2.887200px;}
.ws10_c00157{word-spacing:2.908800px;}
.ws26_c00157{word-spacing:3.225600px;}
.ws27_c00157{word-spacing:3.240000px;}
.ws23_c00157{word-spacing:3.571200px;}
.ws22_c00157{word-spacing:3.592800px;}
.ws11_c00157{word-spacing:4.694400px;}
.wsd_c00157{word-spacing:5.781600px;}
.wse_c00157{word-spacing:5.810400px;}
.ws1a_c00157{word-spacing:6.825600px;}
.ws19_c00157{word-spacing:6.861600px;}
.ws12_c00157{word-spacing:9.734400px;}
.ws1d_c00157{word-spacing:10.483200px;}
.ws1e_c00157{word-spacing:11.520000px;}
.ws21_c00157{word-spacing:14.788800px;}
.ws25_c00157{word-spacing:14.803200px;}
.ws20_c00157{word-spacing:14.839200px;}
.ws29_c00157{word-spacing:17.287200px;}
.ws28_c00157{word-spacing:17.344800px;}
.ws18_c00157{word-spacing:19.123200px;}
.ws17_c00157{word-spacing:19.159200px;}
.ws13_c00157{word-spacing:20.116800px;}
.ws14_c00157{word-spacing:20.196000px;}
.ws15_c00157{word-spacing:25.898400px;}
.ws16_c00157{word-spacing:25.956000px;}
._0_c00157{margin-left:-1.142280px;}
._1_c00157{width:1.080000px;}
.fc0_c00157{color:rgb(0,0,0);}
.fs6_c00157{font-size:38.880000px;}
.fs3_c00157{font-size:42.120000px;}
.fs5_c00157{font-size:47.880000px;}
.fs2_c00157{font-size:54.000000px;}
.fs0_c00157{font-size:60.120000px;}
.fs1_c00157{font-size:72.000000px;}
.fs4_c00157{font-size:78.120000px;}
.y0_c00157{bottom:0.000000px;}
.y3_c00157{bottom:57.450450px;}
.y4_c00157{bottom:61.410450px;}
.y24_c00157{bottom:113.698470px;}
.y23_c00157{bottom:132.064230px;}
.y22_c00157{bottom:150.333120px;}
.y21_c00157{bottom:168.599340px;}
.y20_c00157{bottom:182.464230px;}
.y1f_c00157{bottom:200.730450px;}
.y1e_c00157{bottom:215.940450px;}
.y1d_c00157{bottom:236.640450px;}
.y1c_c00157{bottom:257.340450px;}
.y1b_c00157{bottom:326.910450px;}
.y1a_c00157{bottom:361.380450px;}
.y19_c00157{bottom:395.760450px;}
.y18_c00157{bottom:430.230450px;}
.y17_c00157{bottom:464.610450px;}
.y16_c00157{bottom:508.080450px;}
.y15_c00157{bottom:542.460450px;}
.y14_c00157{bottom:576.930450px;}
.y13_c00157{bottom:611.310450px;}
.y12_c00157{bottom:645.780450px;}
.y11_c00157{bottom:680.160450px;}
.y10_c00157{bottom:725.250450px;}
.yf_c00157{bottom:787.890450px;}
.ye_c00157{bottom:822.360450px;}
.yd_c00157{bottom:856.740450px;}
.yc_c00157{bottom:891.210450px;}
.yb_c00157{bottom:925.590450px;}
.ya_c00157{bottom:960.060450px;}
.y9_c00157{bottom:994.440450px;}
.y8_c00157{bottom:1028.910450px;}
.y7_c00157{bottom:1063.290450px;}
.y6_c00157{bottom:1106.760450px;}
.y5_c00157{bottom:1141.140450px;}
.y2_c00157{bottom:1173.810450px;}
.y1_c00157{bottom:1196.850450px;}
.h2_c00157{height:47.988281px;}
.h8_c00157{height:49.937344px;}
.h9_c00157{height:49.945264px;}
.h1_c00157{height:50.315273px;}
.h3_c00157{height:56.320312px;}
.h4_c00157{height:60.257812px;}
.h5_c00157{height:65.130820px;}
.h6_c00157{height:75.093750px;}
.h7_c00157{height:81.476719px;}
.h0_c00157{height:1263.000000px;}
.w1_c00157{width:892.500000px;}
.w0_c00157{width:892.830000px;}
.x0_c00157{left:0.000000px;}
.x2_c00157{left:127.620000px;}
.x1_c00157{left:145.440000px;}
.x7_c00157{left:154.440000px;}
.x6_c00157{left:180.810000px;}
.x5_c00157{left:208.620000px;}
.x4_c00157{left:435.240000px;}
.x3_c00157{left:446.490000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.v1_c00157{vertical-align:26.560000pt;}
.ls14_c00157{letter-spacing:-0.134400pt;}
.ls12_c00157{letter-spacing:-0.042752pt;}
.ls1a_c00157{letter-spacing:-0.038400pt;}
.ls19_c00157{letter-spacing:-0.032000pt;}
.ls1d_c00157{letter-spacing:-0.025600pt;}
.ls1b_c00157{letter-spacing:-0.020832pt;}
.ls16_c00157{letter-spacing:-0.019200pt;}
.ls11_c00157{letter-spacing:-0.016032pt;}
.ls18_c00157{letter-spacing:-0.012800pt;}
.ls17_c00157{letter-spacing:-0.006400pt;}
.ls21_c00157{letter-spacing:-0.004256pt;}
.ls20_c00157{letter-spacing:-0.003456pt;}
.ls13_c00157{letter-spacing:0.000000pt;}
.ls1_c00157{letter-spacing:0.006400pt;}
.ls9_c00157{letter-spacing:0.012768pt;}
.ls7_c00157{letter-spacing:0.012800pt;}
.ls5_c00157{letter-spacing:0.019200pt;}
.lsf_c00157{letter-spacing:0.025536pt;}
.ls1c_c00157{letter-spacing:0.025600pt;}
.ls8_c00157{letter-spacing:0.029792pt;}
.ls0_c00157{letter-spacing:0.032064pt;}
.lsc_c00157{letter-spacing:0.034048pt;}
.ls10_c00157{letter-spacing:0.042560pt;}
.ls2_c00157{letter-spacing:0.048672pt;}
.lsd_c00157{letter-spacing:0.055328pt;}
.ls1e_c00157{letter-spacing:0.063840pt;}
.lsb_c00157{letter-spacing:0.067520pt;}
.ls15_c00157{letter-spacing:0.083200pt;}
.ls3_c00157{letter-spacing:0.128000pt;}
.ls22_c00157{letter-spacing:0.307584pt;}
.lse_c00157{letter-spacing:0.387520pt;}
.lsa_c00157{letter-spacing:0.632320pt;}
.ls1f_c00157{letter-spacing:0.655424pt;}
.ls6_c00157{letter-spacing:26.109440pt;}
.ls4_c00157{letter-spacing:58.688000pt;}
.ws2_c00157{word-spacing:-17.360000pt;}
.ws1_c00157{word-spacing:-15.987200pt;}
.ws3_c00157{word-spacing:-11.831680pt;}
.ws5_c00157{word-spacing:-9.915264pt;}
.ws4_c00157{word-spacing:-9.604224pt;}
.ws0_c00157{word-spacing:-9.408672pt;}
.wsc_c00157{word-spacing:-0.083200pt;}
.ws2c_c00157{word-spacing:-0.076800pt;}
.ws1c_c00157{word-spacing:-0.062496pt;}
.ws30_c00157{word-spacing:-0.038304pt;}
.ws33_c00157{word-spacing:-0.025536pt;}
.ws2d_c00157{word-spacing:-0.012768pt;}
.ws32_c00157{word-spacing:-0.008512pt;}
.wsb_c00157{word-spacing:-0.006400pt;}
.ws9_c00157{word-spacing:0.000000pt;}
.ws2f_c00157{word-spacing:0.004256pt;}
.ws1b_c00157{word-spacing:0.006400pt;}
.ws31_c00157{word-spacing:0.021280pt;}
.ws6_c00157{word-spacing:0.048096pt;}
.ws24_c00157{word-spacing:0.064000pt;}
.ws7_c00157{word-spacing:0.096192pt;}
.ws8_c00157{word-spacing:0.122912pt;}
.ws2e_c00157{word-spacing:0.621376pt;}
.ws1f_c00157{word-spacing:0.640000pt;}
.wsa_c00157{word-spacing:0.960000pt;}
.ws2b_c00157{word-spacing:1.555200pt;}
.ws2a_c00157{word-spacing:1.619200pt;}
.wsf_c00157{word-spacing:2.566400pt;}
.ws10_c00157{word-spacing:2.585600pt;}
.ws26_c00157{word-spacing:2.867200pt;}
.ws27_c00157{word-spacing:2.880000pt;}
.ws23_c00157{word-spacing:3.174400pt;}
.ws22_c00157{word-spacing:3.193600pt;}
.ws11_c00157{word-spacing:4.172800pt;}
.wsd_c00157{word-spacing:5.139200pt;}
.wse_c00157{word-spacing:5.164800pt;}
.ws1a_c00157{word-spacing:6.067200pt;}
.ws19_c00157{word-spacing:6.099200pt;}
.ws12_c00157{word-spacing:8.652800pt;}
.ws1d_c00157{word-spacing:9.318400pt;}
.ws1e_c00157{word-spacing:10.240000pt;}
.ws21_c00157{word-spacing:13.145600pt;}
.ws25_c00157{word-spacing:13.158400pt;}
.ws20_c00157{word-spacing:13.190400pt;}
.ws29_c00157{word-spacing:15.366400pt;}
.ws28_c00157{word-spacing:15.417600pt;}
.ws18_c00157{word-spacing:16.998400pt;}
.ws17_c00157{word-spacing:17.030400pt;}
.ws13_c00157{word-spacing:17.881600pt;}
.ws14_c00157{word-spacing:17.952000pt;}
.ws15_c00157{word-spacing:23.020800pt;}
.ws16_c00157{word-spacing:23.072000pt;}
._0_c00157{margin-left:-1.015360pt;}
._1_c00157{width:0.960000pt;}
.fs6_c00157{font-size:34.560000pt;}
.fs3_c00157{font-size:37.440000pt;}
.fs5_c00157{font-size:42.560000pt;}
.fs2_c00157{font-size:48.000000pt;}
.fs0_c00157{font-size:53.440000pt;}
.fs1_c00157{font-size:64.000000pt;}
.fs4_c00157{font-size:69.440000pt;}
.y0_c00157{bottom:0.000000pt;}
.y3_c00157{bottom:51.067067pt;}
.y4_c00157{bottom:54.587067pt;}
.y24_c00157{bottom:101.065307pt;}
.y23_c00157{bottom:117.390427pt;}
.y22_c00157{bottom:133.629440pt;}
.y21_c00157{bottom:149.866080pt;}
.y20_c00157{bottom:162.190427pt;}
.y1f_c00157{bottom:178.427067pt;}
.y1e_c00157{bottom:191.947067pt;}
.y1d_c00157{bottom:210.347067pt;}
.y1c_c00157{bottom:228.747067pt;}
.y1b_c00157{bottom:290.587067pt;}
.y1a_c00157{bottom:321.227067pt;}
.y19_c00157{bottom:351.787067pt;}
.y18_c00157{bottom:382.427067pt;}
.y17_c00157{bottom:412.987067pt;}
.y16_c00157{bottom:451.627067pt;}
.y15_c00157{bottom:482.187067pt;}
.y14_c00157{bottom:512.827067pt;}
.y13_c00157{bottom:543.387067pt;}
.y12_c00157{bottom:574.027067pt;}
.y11_c00157{bottom:604.587067pt;}
.y10_c00157{bottom:644.667067pt;}
.yf_c00157{bottom:700.347067pt;}
.ye_c00157{bottom:730.987067pt;}
.yd_c00157{bottom:761.547067pt;}
.yc_c00157{bottom:792.187067pt;}
.yb_c00157{bottom:822.747067pt;}
.ya_c00157{bottom:853.387067pt;}
.y9_c00157{bottom:883.947067pt;}
.y8_c00157{bottom:914.587067pt;}
.y7_c00157{bottom:945.147067pt;}
.y6_c00157{bottom:983.787067pt;}
.y5_c00157{bottom:1014.347067pt;}
.y2_c00157{bottom:1043.387067pt;}
.y1_c00157{bottom:1063.867067pt;}
.h2_c00157{height:42.656250pt;}
.h8_c00157{height:44.388750pt;}
.h9_c00157{height:44.395790pt;}
.h1_c00157{height:44.724687pt;}
.h3_c00157{height:50.062500pt;}
.h4_c00157{height:53.562500pt;}
.h5_c00157{height:57.894063pt;}
.h6_c00157{height:66.750000pt;}
.h7_c00157{height:72.423750pt;}
.h0_c00157{height:1122.666667pt;}
.w1_c00157{width:793.333333pt;}
.w0_c00157{width:793.626667pt;}
.x0_c00157{left:0.000000pt;}
.x2_c00157{left:113.440000pt;}
.x1_c00157{left:129.280000pt;}
.x7_c00157{left:137.280000pt;}
.x6_c00157{left:160.720000pt;}
.x5_c00157{left:185.440000pt;}
.x4_c00157{left:386.880000pt;}
.x3_c00157{left:396.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_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_0f03cdf9d75341d630e7670a.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.100098;font-style:normal;font-weight:normal;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_202e673c4cfd4dca83a532f1.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;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_c00158;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00158;src:url('chunks/assets/font_8f43487b75b3d23ef5631668.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00158;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;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_c00158;src:url('chunks/assets/font_3f10be069572630bbbffbb27.woff2')format("woff");}.ff6_c00158{font-family:ff6_c00158;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_c00158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.v1_c00158{vertical-align:15.840000px;}
.v2_c00158{vertical-align:29.880000px;}
.ls10_c00158{letter-spacing:-0.151200px;}
.ls17_c00158{letter-spacing:-0.085932px;}
.ls19_c00158{letter-spacing:-0.043200px;}
.ls11_c00158{letter-spacing:-0.036000px;}
.ls12_c00158{letter-spacing:-0.021600px;}
.ls15_c00158{letter-spacing:-0.014400px;}
.ls18_c00158{letter-spacing:-0.007812px;}
.ls13_c00158{letter-spacing:-0.007200px;}
.ls1a_c00158{letter-spacing:-0.003888px;}
.lsf_c00158{letter-spacing:0.000000px;}
.ls5_c00158{letter-spacing:0.007200px;}
.ls9_c00158{letter-spacing:0.014364px;}
.ls2_c00158{letter-spacing:0.014400px;}
.lsc_c00158{letter-spacing:0.028728px;}
.ls8_c00158{letter-spacing:0.028800px;}
.lsb_c00158{letter-spacing:0.043092px;}
.ls0_c00158{letter-spacing:0.048096px;}
.lse_c00158{letter-spacing:0.052668px;}
.ls16_c00158{letter-spacing:0.054684px;}
.ls3_c00158{letter-spacing:0.054756px;}
.ls14_c00158{letter-spacing:0.093600px;}
.lsa_c00158{letter-spacing:0.104040px;}
.ls6_c00158{letter-spacing:0.144000px;}
.ls1c_c00158{letter-spacing:0.346032px;}
.ls1b_c00158{letter-spacing:0.357696px;}
.lsd_c00158{letter-spacing:0.435960px;}
.ls4_c00158{letter-spacing:29.373120px;}
.ls7_c00158{letter-spacing:65.304000px;}
.ls1_c00158{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00158{word-spacing:-19.530000px;}
.ws2_c00158{word-spacing:-19.444068px;}
.ws3_c00158{word-spacing:-11.166336px;}
.ws4_c00158{word-spacing:-11.154672px;}
.ws0_c00158{word-spacing:-10.584756px;}
.ws11_c00158{word-spacing:-0.265608px;}
.wse_c00158{word-spacing:-0.093600px;}
.ws21_c00158{word-spacing:-0.086400px;}
.ws2c_c00158{word-spacing:-0.033516px;}
.ws29_c00158{word-spacing:-0.023940px;}
.ws2b_c00158{word-spacing:-0.014364px;}
.ws2a_c00158{word-spacing:-0.009576px;}
.ws6_c00158{word-spacing:0.000000px;}
.ws28_c00158{word-spacing:0.004788px;}
.ws10_c00158{word-spacing:0.007200px;}
.ws2d_c00158{word-spacing:0.019152px;}
.ws5_c00158{word-spacing:0.042084px;}
.ws17_c00158{word-spacing:2.174400px;}
.ws19_c00158{word-spacing:5.385600px;}
.ws14_c00158{word-spacing:5.392800px;}
.ws18_c00158{word-spacing:5.400000px;}
.wsd_c00158{word-spacing:5.767200px;}
.wsc_c00158{word-spacing:5.832000px;}
.ws16_c00158{word-spacing:6.069600px;}
.ws15_c00158{word-spacing:6.141600px;}
.wsf_c00158{word-spacing:6.494400px;}
.ws27_c00158{word-spacing:7.113600px;}
.ws26_c00158{word-spacing:7.149600px;}
.ws1e_c00158{word-spacing:7.732800px;}
.ws1f_c00158{word-spacing:7.905600px;}
.ws13_c00158{word-spacing:8.236800px;}
.ws1d_c00158{word-spacing:8.280000px;}
.ws12_c00158{word-spacing:8.323200px;}
.ws9_c00158{word-spacing:8.863200px;}
.ws8_c00158{word-spacing:8.964000px;}
.ws1a_c00158{word-spacing:10.411200px;}
.wsa_c00158{word-spacing:10.447200px;}
.wsb_c00158{word-spacing:10.476000px;}
.ws1b_c00158{word-spacing:10.533600px;}
.ws24_c00158{word-spacing:12.549600px;}
.ws25_c00158{word-spacing:12.636000px;}
.ws20_c00158{word-spacing:14.774400px;}
.ws1c_c00158{word-spacing:21.974400px;}
.ws22_c00158{word-spacing:27.741600px;}
.ws23_c00158{word-spacing:27.820800px;}
.ws7_c00158{word-spacing:33.516000px;}
._0_c00158{margin-left:-1.322640px;}
._1_c00158{width:1.080000px;}
.fc0_c00158{color:rgb(0,0,0);}
.fs6_c00158{font-size:38.880000px;}
.fs3_c00158{font-size:42.120000px;}
.fs5_c00158{font-size:47.880000px;}
.fs1_c00158{font-size:54.000000px;}
.fs0_c00158{font-size:60.120000px;}
.fs2_c00158{font-size:72.000000px;}
.fs4_c00158{font-size:78.120000px;}
.y0_c00158{bottom:0.000000px;}
.y3_c00158{bottom:57.450450px;}
.y23_c00158{bottom:113.698470px;}
.y22_c00158{bottom:132.064230px;}
.y21_c00158{bottom:150.332400px;}
.y20_c00158{bottom:168.598620px;}
.y1f_c00158{bottom:186.960600px;}
.y1e_c00158{bottom:202.170450px;}
.y1d_c00158{bottom:222.870450px;}
.y1c_c00158{bottom:243.570450px;}
.y1b_c00158{bottom:274.530450px;}
.y1a_c00158{bottom:308.910450px;}
.y19_c00158{bottom:343.380450px;}
.y18_c00158{bottom:386.760450px;}
.y17_c00158{bottom:421.230450px;}
.y16_c00158{bottom:455.610450px;}
.y15_c00158{bottom:490.080450px;}
.y14_c00158{bottom:533.460450px;}
.y13_c00158{bottom:567.930450px;}
.y12_c00158{bottom:602.310450px;}
.y11_c00158{bottom:636.780450px;}
.y10_c00158{bottom:680.160450px;}
.yf_c00158{bottom:714.630450px;}
.ye_c00158{bottom:749.010600px;}
.yd_c00158{bottom:783.480600px;}
.yc_c00158{bottom:817.860600px;}
.yb_c00158{bottom:862.950450px;}
.ya_c00158{bottom:925.590450px;}
.y9_c00158{bottom:960.060450px;}
.y8_c00158{bottom:1003.440450px;}
.y7_c00158{bottom:1037.910450px;}
.y6_c00158{bottom:1072.290450px;}
.y5_c00158{bottom:1106.760450px;}
.y4_c00158{bottom:1141.140450px;}
.y2_c00158{bottom:1177.860450px;}
.y1_c00158{bottom:1196.850450px;}
.h9_c00158{height:47.988281px;}
.ha_c00158{height:49.937344px;}
.hb_c00158{height:49.945264px;}
.h1_c00158{height:50.315273px;}
.h2_c00158{height:56.320312px;}
.h4_c00158{height:60.257812px;}
.h7_c00158{height:65.130220px;}
.h5_c00158{height:65.130820px;}
.h3_c00158{height:72.160312px;}
.h8_c00158{height:75.093750px;}
.h6_c00158{height:81.476719px;}
.h0_c00158{height:1263.000000px;}
.w1_c00158{width:892.500000px;}
.w0_c00158{width:892.830000px;}
.x0_c00158{left:0.000000px;}
.x1_c00158{left:127.620000px;}
.x3_c00158{left:154.620000px;}
.x2_c00158{left:180.810000px;}
.x4_c00158{left:208.620000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.v1_c00158{vertical-align:14.080000pt;}
.v2_c00158{vertical-align:26.560000pt;}
.ls10_c00158{letter-spacing:-0.134400pt;}
.ls17_c00158{letter-spacing:-0.076384pt;}
.ls19_c00158{letter-spacing:-0.038400pt;}
.ls11_c00158{letter-spacing:-0.032000pt;}
.ls12_c00158{letter-spacing:-0.019200pt;}
.ls15_c00158{letter-spacing:-0.012800pt;}
.ls18_c00158{letter-spacing:-0.006944pt;}
.ls13_c00158{letter-spacing:-0.006400pt;}
.ls1a_c00158{letter-spacing:-0.003456pt;}
.lsf_c00158{letter-spacing:0.000000pt;}
.ls5_c00158{letter-spacing:0.006400pt;}
.ls9_c00158{letter-spacing:0.012768pt;}
.ls2_c00158{letter-spacing:0.012800pt;}
.lsc_c00158{letter-spacing:0.025536pt;}
.ls8_c00158{letter-spacing:0.025600pt;}
.lsb_c00158{letter-spacing:0.038304pt;}
.ls0_c00158{letter-spacing:0.042752pt;}
.lse_c00158{letter-spacing:0.046816pt;}
.ls16_c00158{letter-spacing:0.048608pt;}
.ls3_c00158{letter-spacing:0.048672pt;}
.ls14_c00158{letter-spacing:0.083200pt;}
.lsa_c00158{letter-spacing:0.092480pt;}
.ls6_c00158{letter-spacing:0.128000pt;}
.ls1c_c00158{letter-spacing:0.307584pt;}
.ls1b_c00158{letter-spacing:0.317952pt;}
.lsd_c00158{letter-spacing:0.387520pt;}
.ls4_c00158{letter-spacing:26.109440pt;}
.ls7_c00158{letter-spacing:58.048000pt;}
.ls1_c00158{letter-spacing:1077.440000pt;}
.ws1_c00158{word-spacing:-17.360000pt;}
.ws2_c00158{word-spacing:-17.283616pt;}
.ws3_c00158{word-spacing:-9.925632pt;}
.ws4_c00158{word-spacing:-9.915264pt;}
.ws0_c00158{word-spacing:-9.408672pt;}
.ws11_c00158{word-spacing:-0.236096pt;}
.wse_c00158{word-spacing:-0.083200pt;}
.ws21_c00158{word-spacing:-0.076800pt;}
.ws2c_c00158{word-spacing:-0.029792pt;}
.ws29_c00158{word-spacing:-0.021280pt;}
.ws2b_c00158{word-spacing:-0.012768pt;}
.ws2a_c00158{word-spacing:-0.008512pt;}
.ws6_c00158{word-spacing:0.000000pt;}
.ws28_c00158{word-spacing:0.004256pt;}
.ws10_c00158{word-spacing:0.006400pt;}
.ws2d_c00158{word-spacing:0.017024pt;}
.ws5_c00158{word-spacing:0.037408pt;}
.ws17_c00158{word-spacing:1.932800pt;}
.ws19_c00158{word-spacing:4.787200pt;}
.ws14_c00158{word-spacing:4.793600pt;}
.ws18_c00158{word-spacing:4.800000pt;}
.wsd_c00158{word-spacing:5.126400pt;}
.wsc_c00158{word-spacing:5.184000pt;}
.ws16_c00158{word-spacing:5.395200pt;}
.ws15_c00158{word-spacing:5.459200pt;}
.wsf_c00158{word-spacing:5.772800pt;}
.ws27_c00158{word-spacing:6.323200pt;}
.ws26_c00158{word-spacing:6.355200pt;}
.ws1e_c00158{word-spacing:6.873600pt;}
.ws1f_c00158{word-spacing:7.027200pt;}
.ws13_c00158{word-spacing:7.321600pt;}
.ws1d_c00158{word-spacing:7.360000pt;}
.ws12_c00158{word-spacing:7.398400pt;}
.ws9_c00158{word-spacing:7.878400pt;}
.ws8_c00158{word-spacing:7.968000pt;}
.ws1a_c00158{word-spacing:9.254400pt;}
.wsa_c00158{word-spacing:9.286400pt;}
.wsb_c00158{word-spacing:9.312000pt;}
.ws1b_c00158{word-spacing:9.363200pt;}
.ws24_c00158{word-spacing:11.155200pt;}
.ws25_c00158{word-spacing:11.232000pt;}
.ws20_c00158{word-spacing:13.132800pt;}
.ws1c_c00158{word-spacing:19.532800pt;}
.ws22_c00158{word-spacing:24.659200pt;}
.ws23_c00158{word-spacing:24.729600pt;}
.ws7_c00158{word-spacing:29.792000pt;}
._0_c00158{margin-left:-1.175680pt;}
._1_c00158{width:0.960000pt;}
.fs6_c00158{font-size:34.560000pt;}
.fs3_c00158{font-size:37.440000pt;}
.fs5_c00158{font-size:42.560000pt;}
.fs1_c00158{font-size:48.000000pt;}
.fs0_c00158{font-size:53.440000pt;}
.fs2_c00158{font-size:64.000000pt;}
.fs4_c00158{font-size:69.440000pt;}
.y0_c00158{bottom:0.000000pt;}
.y3_c00158{bottom:51.067067pt;}
.y23_c00158{bottom:101.065307pt;}
.y22_c00158{bottom:117.390427pt;}
.y21_c00158{bottom:133.628800pt;}
.y20_c00158{bottom:149.865440pt;}
.y1f_c00158{bottom:166.187200pt;}
.y1e_c00158{bottom:179.707067pt;}
.y1d_c00158{bottom:198.107067pt;}
.y1c_c00158{bottom:216.507067pt;}
.y1b_c00158{bottom:244.027067pt;}
.y1a_c00158{bottom:274.587067pt;}
.y19_c00158{bottom:305.227067pt;}
.y18_c00158{bottom:343.787067pt;}
.y17_c00158{bottom:374.427067pt;}
.y16_c00158{bottom:404.987067pt;}
.y15_c00158{bottom:435.627067pt;}
.y14_c00158{bottom:474.187067pt;}
.y13_c00158{bottom:504.827067pt;}
.y12_c00158{bottom:535.387067pt;}
.y11_c00158{bottom:566.027067pt;}
.y10_c00158{bottom:604.587067pt;}
.yf_c00158{bottom:635.227067pt;}
.ye_c00158{bottom:665.787200pt;}
.yd_c00158{bottom:696.427200pt;}
.yc_c00158{bottom:726.987200pt;}
.yb_c00158{bottom:767.067067pt;}
.ya_c00158{bottom:822.747067pt;}
.y9_c00158{bottom:853.387067pt;}
.y8_c00158{bottom:891.947067pt;}
.y7_c00158{bottom:922.587067pt;}
.y6_c00158{bottom:953.147067pt;}
.y5_c00158{bottom:983.787067pt;}
.y4_c00158{bottom:1014.347067pt;}
.y2_c00158{bottom:1046.987067pt;}
.y1_c00158{bottom:1063.867067pt;}
.h9_c00158{height:42.656250pt;}
.ha_c00158{height:44.388750pt;}
.hb_c00158{height:44.395790pt;}
.h1_c00158{height:44.724687pt;}
.h2_c00158{height:50.062500pt;}
.h4_c00158{height:53.562500pt;}
.h7_c00158{height:57.893529pt;}
.h5_c00158{height:57.894062pt;}
.h3_c00158{height:64.142500pt;}
.h8_c00158{height:66.750000pt;}
.h6_c00158{height:72.423750pt;}
.h0_c00158{height:1122.666667pt;}
.w1_c00158{width:793.333333pt;}
.w0_c00158{width:793.626667pt;}
.x0_c00158{left:0.000000pt;}
.x1_c00158{left:113.440000pt;}
.x3_c00158{left:137.440000pt;}
.x2_c00158{left:160.720000pt;}
.x4_c00158{left:185.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_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_ee445707128ca61b06a8437d.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00159;src:url('chunks/assets/font_ec0cf8253a550f4f50b7bda9.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_d236edae211a94ac001625e9.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00159;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00159{font-family:ff5_c00159;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_c00159;src:url('chunks/assets/font_7d427f7115838b804e464fdc.woff2')format("woff");}.ff6_c00159{font-family:ff6_c00159;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_c00159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.v1_c00159{vertical-align:29.880000px;}
.ls12_c00159{letter-spacing:-0.151200px;}
.ls17_c00159{letter-spacing:-0.050400px;}
.ls10_c00159{letter-spacing:-0.048096px;}
.ls13_c00159{letter-spacing:-0.043200px;}
.ls1b_c00159{letter-spacing:-0.036000px;}
.ls1a_c00159{letter-spacing:-0.031248px;}
.ls18_c00159{letter-spacing:-0.028800px;}
.ls14_c00159{letter-spacing:-0.021600px;}
.lsf_c00159{letter-spacing:-0.018036px;}
.ls19_c00159{letter-spacing:-0.014400px;}
.ls15_c00159{letter-spacing:-0.007200px;}
.ls11_c00159{letter-spacing:0.000000px;}
.ls4_c00159{letter-spacing:0.007200px;}
.lsb_c00159{letter-spacing:0.014364px;}
.ls2_c00159{letter-spacing:0.014400px;}
.ls1_c00159{letter-spacing:0.021600px;}
.lsd_c00159{letter-spacing:0.028728px;}
.lsa_c00159{letter-spacing:0.033516px;}
.ls9_c00159{letter-spacing:0.036000px;}
.ls0_c00159{letter-spacing:0.036072px;}
.lse_c00159{letter-spacing:0.043092px;}
.ls3_c00159{letter-spacing:0.050400px;}
.ls5_c00159{letter-spacing:0.054756px;}
.ls1c_c00159{letter-spacing:0.057600px;}
.ls16_c00159{letter-spacing:0.093600px;}
.ls6_c00159{letter-spacing:0.144000px;}
.ls1d_c00159{letter-spacing:0.346032px;}
.lsc_c00159{letter-spacing:0.435960px;}
.ls8_c00159{letter-spacing:29.373120px;}
.ls7_c00159{letter-spacing:65.304000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00159{word-spacing:-19.530000px;}
.ws3_c00159{word-spacing:-18.036000px;}
.ws0_c00159{word-spacing:-17.992800px;}
.ws4_c00159{word-spacing:-11.154672px;}
.ws1_c00159{word-spacing:-10.584756px;}
.wsf_c00159{word-spacing:-0.093600px;}
.ws19_c00159{word-spacing:-0.086400px;}
.ws1d_c00159{word-spacing:-0.062496px;}
.ws2c_c00159{word-spacing:-0.023940px;}
.ws29_c00159{word-spacing:-0.014364px;}
.ws2b_c00159{word-spacing:-0.009576px;}
.ws8_c00159{word-spacing:0.000000px;}
.ws2a_c00159{word-spacing:0.004788px;}
.ws1c_c00159{word-spacing:0.007200px;}
.ws2d_c00159{word-spacing:0.019152px;}
.ws18_c00159{word-spacing:0.021600px;}
.ws5_c00159{word-spacing:0.054108px;}
.ws25_c00159{word-spacing:0.086400px;}
.ws6_c00159{word-spacing:0.108216px;}
.ws7_c00159{word-spacing:0.138276px;}
.ws28_c00159{word-spacing:0.302400px;}
.ws27_c00159{word-spacing:0.432000px;}
.ws1e_c00159{word-spacing:0.705600px;}
.ws1f_c00159{word-spacing:0.792000px;}
.wsb_c00159{word-spacing:1.821600px;}
.ws24_c00159{word-spacing:2.563200px;}
.ws11_c00159{word-spacing:2.872800px;}
.ws12_c00159{word-spacing:3.895200px;}
.ws10_c00159{word-spacing:3.981600px;}
.ws13_c00159{word-spacing:4.010400px;}
.ws20_c00159{word-spacing:4.348800px;}
.wsa_c00159{word-spacing:7.538400px;}
.ws9_c00159{word-spacing:7.689600px;}
.ws23_c00159{word-spacing:8.308800px;}
.ws26_c00159{word-spacing:9.000000px;}
.wse_c00159{word-spacing:9.050400px;}
.ws22_c00159{word-spacing:12.974400px;}
.ws17_c00159{word-spacing:13.665600px;}
.ws16_c00159{word-spacing:13.773600px;}
.ws15_c00159{word-spacing:15.760800px;}
.ws14_c00159{word-spacing:15.868800px;}
.ws1b_c00159{word-spacing:18.547200px;}
.ws1a_c00159{word-spacing:18.734400px;}
.ws21_c00159{word-spacing:19.101600px;}
.wsc_c00159{word-spacing:27.345600px;}
.wsd_c00159{word-spacing:27.367200px;}
._0_c00159{margin-left:-1.142280px;}
._1_c00159{width:1.080000px;}
.fc0_c00159{color:rgb(0,0,0);}
.fs6_c00159{font-size:38.880000px;}
.fs3_c00159{font-size:42.120000px;}
.fs5_c00159{font-size:47.880000px;}
.fs2_c00159{font-size:54.000000px;}
.fs0_c00159{font-size:60.120000px;}
.fs1_c00159{font-size:72.000000px;}
.fs4_c00159{font-size:78.120000px;}
.y0_c00159{bottom:0.000000px;}
.y3_c00159{bottom:57.450450px;}
.y4_c00159{bottom:61.410450px;}
.y24_c00159{bottom:113.698470px;}
.y23_c00159{bottom:132.068010px;}
.y22_c00159{bottom:150.334230px;}
.y21_c00159{bottom:168.598620px;}
.y20_c00159{bottom:186.960600px;}
.y1f_c00159{bottom:202.170450px;}
.y1e_c00159{bottom:222.870450px;}
.y1d_c00159{bottom:243.570450px;}
.y1c_c00159{bottom:274.530450px;}
.y1b_c00159{bottom:308.910450px;}
.y1a_c00159{bottom:352.380600px;}
.y19_c00159{bottom:386.760600px;}
.y18_c00159{bottom:421.230600px;}
.y17_c00159{bottom:464.610450px;}
.y16_c00159{bottom:499.080450px;}
.y15_c00159{bottom:533.460450px;}
.y14_c00159{bottom:567.930450px;}
.y13_c00159{bottom:602.310450px;}
.y12_c00159{bottom:647.400450px;}
.y11_c00159{bottom:710.040450px;}
.y10_c00159{bottom:744.510450px;}
.yf_c00159{bottom:787.890450px;}
.ye_c00159{bottom:822.360450px;}
.yd_c00159{bottom:856.740450px;}
.yc_c00159{bottom:891.210450px;}
.yb_c00159{bottom:925.590450px;}
.ya_c00159{bottom:960.060450px;}
.y9_c00159{bottom:1003.440450px;}
.y8_c00159{bottom:1037.910450px;}
.y7_c00159{bottom:1072.290450px;}
.y6_c00159{bottom:1106.760450px;}
.y5_c00159{bottom:1141.140450px;}
.y2_c00159{bottom:1173.810450px;}
.y1_c00159{bottom:1196.850450px;}
.h2_c00159{height:47.988281px;}
.h9_c00159{height:49.937344px;}
.ha_c00159{height:49.944664px;}
.hb_c00159{height:49.945264px;}
.h1_c00159{height:50.315273px;}
.h3_c00159{height:56.320312px;}
.h4_c00159{height:60.257812px;}
.h5_c00159{height:65.130820px;}
.h7_c00159{height:65.131420px;}
.h6_c00159{height:75.093750px;}
.h8_c00159{height:81.476719px;}
.h0_c00159{height:1263.000000px;}
.w1_c00159{width:892.500000px;}
.w0_c00159{width:892.830000px;}
.x0_c00159{left:0.000000px;}
.x2_c00159{left:127.620000px;}
.x1_c00159{left:145.440000px;}
.x6_c00159{left:154.620000px;}
.x5_c00159{left:180.810000px;}
.x7_c00159{left:208.620000px;}
.x4_c00159{left:435.240000px;}
.x3_c00159{left:446.490000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.v1_c00159{vertical-align:26.560000pt;}
.ls12_c00159{letter-spacing:-0.134400pt;}
.ls17_c00159{letter-spacing:-0.044800pt;}
.ls10_c00159{letter-spacing:-0.042752pt;}
.ls13_c00159{letter-spacing:-0.038400pt;}
.ls1b_c00159{letter-spacing:-0.032000pt;}
.ls1a_c00159{letter-spacing:-0.027776pt;}
.ls18_c00159{letter-spacing:-0.025600pt;}
.ls14_c00159{letter-spacing:-0.019200pt;}
.lsf_c00159{letter-spacing:-0.016032pt;}
.ls19_c00159{letter-spacing:-0.012800pt;}
.ls15_c00159{letter-spacing:-0.006400pt;}
.ls11_c00159{letter-spacing:0.000000pt;}
.ls4_c00159{letter-spacing:0.006400pt;}
.lsb_c00159{letter-spacing:0.012768pt;}
.ls2_c00159{letter-spacing:0.012800pt;}
.ls1_c00159{letter-spacing:0.019200pt;}
.lsd_c00159{letter-spacing:0.025536pt;}
.lsa_c00159{letter-spacing:0.029792pt;}
.ls9_c00159{letter-spacing:0.032000pt;}
.ls0_c00159{letter-spacing:0.032064pt;}
.lse_c00159{letter-spacing:0.038304pt;}
.ls3_c00159{letter-spacing:0.044800pt;}
.ls5_c00159{letter-spacing:0.048672pt;}
.ls1c_c00159{letter-spacing:0.051200pt;}
.ls16_c00159{letter-spacing:0.083200pt;}
.ls6_c00159{letter-spacing:0.128000pt;}
.ls1d_c00159{letter-spacing:0.307584pt;}
.lsc_c00159{letter-spacing:0.387520pt;}
.ls8_c00159{letter-spacing:26.109440pt;}
.ls7_c00159{letter-spacing:58.048000pt;}
.ws2_c00159{word-spacing:-17.360000pt;}
.ws3_c00159{word-spacing:-16.032000pt;}
.ws0_c00159{word-spacing:-15.993600pt;}
.ws4_c00159{word-spacing:-9.915264pt;}
.ws1_c00159{word-spacing:-9.408672pt;}
.wsf_c00159{word-spacing:-0.083200pt;}
.ws19_c00159{word-spacing:-0.076800pt;}
.ws1d_c00159{word-spacing:-0.055552pt;}
.ws2c_c00159{word-spacing:-0.021280pt;}
.ws29_c00159{word-spacing:-0.012768pt;}
.ws2b_c00159{word-spacing:-0.008512pt;}
.ws8_c00159{word-spacing:0.000000pt;}
.ws2a_c00159{word-spacing:0.004256pt;}
.ws1c_c00159{word-spacing:0.006400pt;}
.ws2d_c00159{word-spacing:0.017024pt;}
.ws18_c00159{word-spacing:0.019200pt;}
.ws5_c00159{word-spacing:0.048096pt;}
.ws25_c00159{word-spacing:0.076800pt;}
.ws6_c00159{word-spacing:0.096192pt;}
.ws7_c00159{word-spacing:0.122912pt;}
.ws28_c00159{word-spacing:0.268800pt;}
.ws27_c00159{word-spacing:0.384000pt;}
.ws1e_c00159{word-spacing:0.627200pt;}
.ws1f_c00159{word-spacing:0.704000pt;}
.wsb_c00159{word-spacing:1.619200pt;}
.ws24_c00159{word-spacing:2.278400pt;}
.ws11_c00159{word-spacing:2.553600pt;}
.ws12_c00159{word-spacing:3.462400pt;}
.ws10_c00159{word-spacing:3.539200pt;}
.ws13_c00159{word-spacing:3.564800pt;}
.ws20_c00159{word-spacing:3.865600pt;}
.wsa_c00159{word-spacing:6.700800pt;}
.ws9_c00159{word-spacing:6.835200pt;}
.ws23_c00159{word-spacing:7.385600pt;}
.ws26_c00159{word-spacing:8.000000pt;}
.wse_c00159{word-spacing:8.044800pt;}
.ws22_c00159{word-spacing:11.532800pt;}
.ws17_c00159{word-spacing:12.147200pt;}
.ws16_c00159{word-spacing:12.243200pt;}
.ws15_c00159{word-spacing:14.009600pt;}
.ws14_c00159{word-spacing:14.105600pt;}
.ws1b_c00159{word-spacing:16.486400pt;}
.ws1a_c00159{word-spacing:16.652800pt;}
.ws21_c00159{word-spacing:16.979200pt;}
.wsc_c00159{word-spacing:24.307200pt;}
.wsd_c00159{word-spacing:24.326400pt;}
._0_c00159{margin-left:-1.015360pt;}
._1_c00159{width:0.960000pt;}
.fs6_c00159{font-size:34.560000pt;}
.fs3_c00159{font-size:37.440000pt;}
.fs5_c00159{font-size:42.560000pt;}
.fs2_c00159{font-size:48.000000pt;}
.fs0_c00159{font-size:53.440000pt;}
.fs1_c00159{font-size:64.000000pt;}
.fs4_c00159{font-size:69.440000pt;}
.y0_c00159{bottom:0.000000pt;}
.y3_c00159{bottom:51.067067pt;}
.y4_c00159{bottom:54.587067pt;}
.y24_c00159{bottom:101.065307pt;}
.y23_c00159{bottom:117.393787pt;}
.y22_c00159{bottom:133.630427pt;}
.y21_c00159{bottom:149.865440pt;}
.y20_c00159{bottom:166.187200pt;}
.y1f_c00159{bottom:179.707067pt;}
.y1e_c00159{bottom:198.107067pt;}
.y1d_c00159{bottom:216.507067pt;}
.y1c_c00159{bottom:244.027067pt;}
.y1b_c00159{bottom:274.587067pt;}
.y1a_c00159{bottom:313.227200pt;}
.y19_c00159{bottom:343.787200pt;}
.y18_c00159{bottom:374.427200pt;}
.y17_c00159{bottom:412.987067pt;}
.y16_c00159{bottom:443.627067pt;}
.y15_c00159{bottom:474.187067pt;}
.y14_c00159{bottom:504.827067pt;}
.y13_c00159{bottom:535.387067pt;}
.y12_c00159{bottom:575.467067pt;}
.y11_c00159{bottom:631.147067pt;}
.y10_c00159{bottom:661.787067pt;}
.yf_c00159{bottom:700.347067pt;}
.ye_c00159{bottom:730.987067pt;}
.yd_c00159{bottom:761.547067pt;}
.yc_c00159{bottom:792.187067pt;}
.yb_c00159{bottom:822.747067pt;}
.ya_c00159{bottom:853.387067pt;}
.y9_c00159{bottom:891.947067pt;}
.y8_c00159{bottom:922.587067pt;}
.y7_c00159{bottom:953.147067pt;}
.y6_c00159{bottom:983.787067pt;}
.y5_c00159{bottom:1014.347067pt;}
.y2_c00159{bottom:1043.387067pt;}
.y1_c00159{bottom:1063.867067pt;}
.h2_c00159{height:42.656250pt;}
.h9_c00159{height:44.388750pt;}
.ha_c00159{height:44.395257pt;}
.hb_c00159{height:44.395790pt;}
.h1_c00159{height:44.724687pt;}
.h3_c00159{height:50.062500pt;}
.h4_c00159{height:53.562500pt;}
.h5_c00159{height:57.894062pt;}
.h7_c00159{height:57.894596pt;}
.h6_c00159{height:66.750000pt;}
.h8_c00159{height:72.423750pt;}
.h0_c00159{height:1122.666667pt;}
.w1_c00159{width:793.333333pt;}
.w0_c00159{width:793.626667pt;}
.x0_c00159{left:0.000000pt;}
.x2_c00159{left:113.440000pt;}
.x1_c00159{left:129.280000pt;}
.x6_c00159{left:137.440000pt;}
.x5_c00159{left:160.720000pt;}
.x7_c00159{left:185.440000pt;}
.x4_c00159{left:386.880000pt;}
.x3_c00159{left:396.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_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_842c62a8990594f76b52ad8c.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.100098;font-style:normal;font-weight:normal;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_5adee9e6e478f0abdf245dd5.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;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_c00160;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00160;src:url('chunks/assets/font_1c1f38ff9d6300832dc95f57.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00160;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00160{font-family:ff5_c00160;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_c00160;src:url('chunks/assets/font_b88752a400740b93df170c0e.woff2')format("woff");}.ff6_c00160{font-family:ff6_c00160;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_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;}
.v1_c00160{vertical-align:15.840000px;}
.v2_c00160{vertical-align:29.880000px;}
.ls13_c00160{letter-spacing:-0.151200px;}
.ls1c_c00160{letter-spacing:-0.050400px;}
.ls1e_c00160{letter-spacing:-0.043200px;}
.ls16_c00160{letter-spacing:-0.036000px;}
.ls1b_c00160{letter-spacing:-0.031248px;}
.ls19_c00160{letter-spacing:-0.028800px;}
.ls1d_c00160{letter-spacing:-0.021600px;}
.ls14_c00160{letter-spacing:-0.014400px;}
.ls18_c00160{letter-spacing:-0.007200px;}
.ls20_c00160{letter-spacing:-0.003888px;}
.ls12_c00160{letter-spacing:0.000000px;}
.ls11_c00160{letter-spacing:0.004788px;}
.ls3_c00160{letter-spacing:0.007200px;}
.lsa_c00160{letter-spacing:0.014364px;}
.ls1f_c00160{letter-spacing:0.014400px;}
.ls1a_c00160{letter-spacing:0.015624px;}
.ls2_c00160{letter-spacing:0.021600px;}
.ls10_c00160{letter-spacing:0.028728px;}
.lse_c00160{letter-spacing:0.033516px;}
.lsd_c00160{letter-spacing:0.038304px;}
.lsc_c00160{letter-spacing:0.043092px;}
.ls7_c00160{letter-spacing:0.043200px;}
.ls0_c00160{letter-spacing:0.048096px;}
.ls15_c00160{letter-spacing:0.050400px;}
.ls4_c00160{letter-spacing:0.054756px;}
.ls17_c00160{letter-spacing:0.093600px;}
.lsb_c00160{letter-spacing:0.104040px;}
.ls5_c00160{letter-spacing:0.144000px;}
.ls22_c00160{letter-spacing:0.346032px;}
.ls21_c00160{letter-spacing:0.357696px;}
.lsf_c00160{letter-spacing:0.435960px;}
.ls9_c00160{letter-spacing:6.811200px;}
.ls8_c00160{letter-spacing:29.373120px;}
.ls6_c00160{letter-spacing:65.304000px;}
.ls1_c00160{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00160{word-spacing:-19.530000px;}
.ws1_c00160{word-spacing:-17.985600px;}
.ws3_c00160{word-spacing:-17.956800px;}
.ws4_c00160{word-spacing:-11.166336px;}
.ws5_c00160{word-spacing:-11.154672px;}
.ws0_c00160{word-spacing:-10.584756px;}
.ws1c_c00160{word-spacing:-0.226548px;}
.ws1b_c00160{word-spacing:-0.093600px;}
.wsb_c00160{word-spacing:-0.050400px;}
.ws2d_c00160{word-spacing:-0.023940px;}
.ws2e_c00160{word-spacing:-0.019152px;}
.ws2f_c00160{word-spacing:-0.009576px;}
.ws7_c00160{word-spacing:0.000000px;}
.ws2c_c00160{word-spacing:0.004788px;}
.ws30_c00160{word-spacing:0.014364px;}
.ws23_c00160{word-spacing:0.014400px;}
.ws6_c00160{word-spacing:0.042084px;}
.ws14_c00160{word-spacing:0.072000px;}
.ws13_c00160{word-spacing:0.093600px;}
.ws27_c00160{word-spacing:0.108000px;}
.ws26_c00160{word-spacing:0.374400px;}
.ws16_c00160{word-spacing:4.680000px;}
.ws15_c00160{word-spacing:4.687200px;}
.ws21_c00160{word-spacing:5.724000px;}
.ws22_c00160{word-spacing:5.803200px;}
.ws29_c00160{word-spacing:6.782400px;}
.ws2a_c00160{word-spacing:6.883200px;}
.wsa_c00160{word-spacing:7.898400px;}
.ws9_c00160{word-spacing:7.920000px;}
.ws1f_c00160{word-spacing:8.229600px;}
.ws20_c00160{word-spacing:8.251200px;}
.ws17_c00160{word-spacing:10.447200px;}
.ws8_c00160{word-spacing:11.534400px;}
.ws19_c00160{word-spacing:12.916800px;}
.ws1d_c00160{word-spacing:12.988800px;}
.ws18_c00160{word-spacing:13.003200px;}
.ws1e_c00160{word-spacing:13.010400px;}
.ws28_c00160{word-spacing:14.428800px;}
.ws10_c00160{word-spacing:14.738400px;}
.wsf_c00160{word-spacing:14.846400px;}
.wsd_c00160{word-spacing:15.840000px;}
.wsc_c00160{word-spacing:15.912000px;}
.ws1a_c00160{word-spacing:18.388800px;}
.ws24_c00160{word-spacing:19.512000px;}
.ws25_c00160{word-spacing:19.519200px;}
.ws2b_c00160{word-spacing:20.160000px;}
.ws12_c00160{word-spacing:24.472800px;}
.ws11_c00160{word-spacing:24.552000px;}
.wse_c00160{word-spacing:26.654400px;}
._0_c00160{margin-left:-1.322640px;}
._1_c00160{width:1.152000px;}
.fc0_c00160{color:rgb(0,0,0);}
.fs6_c00160{font-size:38.880000px;}
.fs3_c00160{font-size:42.120000px;}
.fs5_c00160{font-size:47.880000px;}
.fs1_c00160{font-size:54.000000px;}
.fs0_c00160{font-size:60.120000px;}
.fs2_c00160{font-size:72.000000px;}
.fs4_c00160{font-size:78.120000px;}
.y0_c00160{bottom:0.000000px;}
.y3_c00160{bottom:57.450450px;}
.y23_c00160{bottom:113.698470px;}
.y22_c00160{bottom:132.064230px;}
.y21_c00160{bottom:150.332400px;}
.y20_c00160{bottom:168.598620px;}
.y1f_c00160{bottom:186.960600px;}
.y1e_c00160{bottom:202.170450px;}
.y1d_c00160{bottom:222.870450px;}
.y1c_c00160{bottom:243.570450px;}
.y1b_c00160{bottom:274.530450px;}
.y1a_c00160{bottom:308.910450px;}
.y19_c00160{bottom:343.380450px;}
.y18_c00160{bottom:386.760450px;}
.y17_c00160{bottom:421.230450px;}
.y16_c00160{bottom:455.610450px;}
.y15_c00160{bottom:499.080450px;}
.y14_c00160{bottom:533.460450px;}
.y13_c00160{bottom:567.930450px;}
.y12_c00160{bottom:602.310450px;}
.y11_c00160{bottom:647.400450px;}
.y10_c00160{bottom:710.040450px;}
.yf_c00160{bottom:744.510450px;}
.ye_c00160{bottom:778.890450px;}
.yd_c00160{bottom:813.360450px;}
.yc_c00160{bottom:847.740450px;}
.yb_c00160{bottom:891.210450px;}
.ya_c00160{bottom:925.590450px;}
.y9_c00160{bottom:960.060450px;}
.y8_c00160{bottom:994.440450px;}
.y7_c00160{bottom:1028.910450px;}
.y6_c00160{bottom:1072.290450px;}
.y5_c00160{bottom:1106.760450px;}
.y4_c00160{bottom:1141.140450px;}
.y2_c00160{bottom:1177.860450px;}
.y1_c00160{bottom:1196.850450px;}
.ha_c00160{height:47.988281px;}
.hb_c00160{height:49.937344px;}
.hc_c00160{height:49.945264px;}
.h1_c00160{height:50.315273px;}
.h2_c00160{height:56.320312px;}
.h4_c00160{height:60.257812px;}
.h9_c00160{height:60.328125px;}
.h5_c00160{height:65.130820px;}
.h7_c00160{height:65.131420px;}
.h3_c00160{height:72.160312px;}
.h6_c00160{height:75.093750px;}
.h8_c00160{height:81.476719px;}
.h0_c00160{height:1263.000000px;}
.w1_c00160{width:892.500000px;}
.w0_c00160{width:892.830000px;}
.x0_c00160{left:0.000000px;}
.x1_c00160{left:127.620000px;}
.x4_c00160{left:154.620000px;}
.x2_c00160{left:181.620000px;}
.x3_c00160{left:208.620000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.v1_c00160{vertical-align:14.080000pt;}
.v2_c00160{vertical-align:26.560000pt;}
.ls13_c00160{letter-spacing:-0.134400pt;}
.ls1c_c00160{letter-spacing:-0.044800pt;}
.ls1e_c00160{letter-spacing:-0.038400pt;}
.ls16_c00160{letter-spacing:-0.032000pt;}
.ls1b_c00160{letter-spacing:-0.027776pt;}
.ls19_c00160{letter-spacing:-0.025600pt;}
.ls1d_c00160{letter-spacing:-0.019200pt;}
.ls14_c00160{letter-spacing:-0.012800pt;}
.ls18_c00160{letter-spacing:-0.006400pt;}
.ls20_c00160{letter-spacing:-0.003456pt;}
.ls12_c00160{letter-spacing:0.000000pt;}
.ls11_c00160{letter-spacing:0.004256pt;}
.ls3_c00160{letter-spacing:0.006400pt;}
.lsa_c00160{letter-spacing:0.012768pt;}
.ls1f_c00160{letter-spacing:0.012800pt;}
.ls1a_c00160{letter-spacing:0.013888pt;}
.ls2_c00160{letter-spacing:0.019200pt;}
.ls10_c00160{letter-spacing:0.025536pt;}
.lse_c00160{letter-spacing:0.029792pt;}
.lsd_c00160{letter-spacing:0.034048pt;}
.lsc_c00160{letter-spacing:0.038304pt;}
.ls7_c00160{letter-spacing:0.038400pt;}
.ls0_c00160{letter-spacing:0.042752pt;}
.ls15_c00160{letter-spacing:0.044800pt;}
.ls4_c00160{letter-spacing:0.048672pt;}
.ls17_c00160{letter-spacing:0.083200pt;}
.lsb_c00160{letter-spacing:0.092480pt;}
.ls5_c00160{letter-spacing:0.128000pt;}
.ls22_c00160{letter-spacing:0.307584pt;}
.ls21_c00160{letter-spacing:0.317952pt;}
.lsf_c00160{letter-spacing:0.387520pt;}
.ls9_c00160{letter-spacing:6.054400pt;}
.ls8_c00160{letter-spacing:26.109440pt;}
.ls6_c00160{letter-spacing:58.048000pt;}
.ls1_c00160{letter-spacing:1077.440000pt;}
.ws2_c00160{word-spacing:-17.360000pt;}
.ws1_c00160{word-spacing:-15.987200pt;}
.ws3_c00160{word-spacing:-15.961600pt;}
.ws4_c00160{word-spacing:-9.925632pt;}
.ws5_c00160{word-spacing:-9.915264pt;}
.ws0_c00160{word-spacing:-9.408672pt;}
.ws1c_c00160{word-spacing:-0.201376pt;}
.ws1b_c00160{word-spacing:-0.083200pt;}
.wsb_c00160{word-spacing:-0.044800pt;}
.ws2d_c00160{word-spacing:-0.021280pt;}
.ws2e_c00160{word-spacing:-0.017024pt;}
.ws2f_c00160{word-spacing:-0.008512pt;}
.ws7_c00160{word-spacing:0.000000pt;}
.ws2c_c00160{word-spacing:0.004256pt;}
.ws30_c00160{word-spacing:0.012768pt;}
.ws23_c00160{word-spacing:0.012800pt;}
.ws6_c00160{word-spacing:0.037408pt;}
.ws14_c00160{word-spacing:0.064000pt;}
.ws13_c00160{word-spacing:0.083200pt;}
.ws27_c00160{word-spacing:0.096000pt;}
.ws26_c00160{word-spacing:0.332800pt;}
.ws16_c00160{word-spacing:4.160000pt;}
.ws15_c00160{word-spacing:4.166400pt;}
.ws21_c00160{word-spacing:5.088000pt;}
.ws22_c00160{word-spacing:5.158400pt;}
.ws29_c00160{word-spacing:6.028800pt;}
.ws2a_c00160{word-spacing:6.118400pt;}
.wsa_c00160{word-spacing:7.020800pt;}
.ws9_c00160{word-spacing:7.040000pt;}
.ws1f_c00160{word-spacing:7.315200pt;}
.ws20_c00160{word-spacing:7.334400pt;}
.ws17_c00160{word-spacing:9.286400pt;}
.ws8_c00160{word-spacing:10.252800pt;}
.ws19_c00160{word-spacing:11.481600pt;}
.ws1d_c00160{word-spacing:11.545600pt;}
.ws18_c00160{word-spacing:11.558400pt;}
.ws1e_c00160{word-spacing:11.564800pt;}
.ws28_c00160{word-spacing:12.825600pt;}
.ws10_c00160{word-spacing:13.100800pt;}
.wsf_c00160{word-spacing:13.196800pt;}
.wsd_c00160{word-spacing:14.080000pt;}
.wsc_c00160{word-spacing:14.144000pt;}
.ws1a_c00160{word-spacing:16.345600pt;}
.ws24_c00160{word-spacing:17.344000pt;}
.ws25_c00160{word-spacing:17.350400pt;}
.ws2b_c00160{word-spacing:17.920000pt;}
.ws12_c00160{word-spacing:21.753600pt;}
.ws11_c00160{word-spacing:21.824000pt;}
.wse_c00160{word-spacing:23.692800pt;}
._0_c00160{margin-left:-1.175680pt;}
._1_c00160{width:1.024000pt;}
.fs6_c00160{font-size:34.560000pt;}
.fs3_c00160{font-size:37.440000pt;}
.fs5_c00160{font-size:42.560000pt;}
.fs1_c00160{font-size:48.000000pt;}
.fs0_c00160{font-size:53.440000pt;}
.fs2_c00160{font-size:64.000000pt;}
.fs4_c00160{font-size:69.440000pt;}
.y0_c00160{bottom:0.000000pt;}
.y3_c00160{bottom:51.067067pt;}
.y23_c00160{bottom:101.065307pt;}
.y22_c00160{bottom:117.390427pt;}
.y21_c00160{bottom:133.628800pt;}
.y20_c00160{bottom:149.865440pt;}
.y1f_c00160{bottom:166.187200pt;}
.y1e_c00160{bottom:179.707067pt;}
.y1d_c00160{bottom:198.107067pt;}
.y1c_c00160{bottom:216.507067pt;}
.y1b_c00160{bottom:244.027067pt;}
.y1a_c00160{bottom:274.587067pt;}
.y19_c00160{bottom:305.227067pt;}
.y18_c00160{bottom:343.787067pt;}
.y17_c00160{bottom:374.427067pt;}
.y16_c00160{bottom:404.987067pt;}
.y15_c00160{bottom:443.627067pt;}
.y14_c00160{bottom:474.187067pt;}
.y13_c00160{bottom:504.827067pt;}
.y12_c00160{bottom:535.387067pt;}
.y11_c00160{bottom:575.467067pt;}
.y10_c00160{bottom:631.147067pt;}
.yf_c00160{bottom:661.787067pt;}
.ye_c00160{bottom:692.347067pt;}
.yd_c00160{bottom:722.987067pt;}
.yc_c00160{bottom:753.547067pt;}
.yb_c00160{bottom:792.187067pt;}
.ya_c00160{bottom:822.747067pt;}
.y9_c00160{bottom:853.387067pt;}
.y8_c00160{bottom:883.947067pt;}
.y7_c00160{bottom:914.587067pt;}
.y6_c00160{bottom:953.147067pt;}
.y5_c00160{bottom:983.787067pt;}
.y4_c00160{bottom:1014.347067pt;}
.y2_c00160{bottom:1046.987067pt;}
.y1_c00160{bottom:1063.867067pt;}
.ha_c00160{height:42.656250pt;}
.hb_c00160{height:44.388750pt;}
.hc_c00160{height:44.395790pt;}
.h1_c00160{height:44.724687pt;}
.h2_c00160{height:50.062500pt;}
.h4_c00160{height:53.562500pt;}
.h9_c00160{height:53.625000pt;}
.h5_c00160{height:57.894063pt;}
.h7_c00160{height:57.894596pt;}
.h3_c00160{height:64.142500pt;}
.h6_c00160{height:66.750000pt;}
.h8_c00160{height:72.423750pt;}
.h0_c00160{height:1122.666667pt;}
.w1_c00160{width:793.333333pt;}
.w0_c00160{width:793.626667pt;}
.x0_c00160{left:0.000000pt;}
.x1_c00160{left:113.440000pt;}
.x4_c00160{left:137.440000pt;}
.x2_c00160{left:161.440000pt;}
.x3_c00160{left:185.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_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_8e3d05566c5c8c0789980798.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00161;src:url('chunks/assets/font_647190a8e16f73644a1e20fe.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00161;src:url('chunks/assets/font_4dbfd54067398aa34c69e800.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00161;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00161{font-family:ff5_c00161;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_c00161;src:url('chunks/assets/font_bcb626b31791f731ced6ed26.woff2')format("woff");}.ff6_c00161{font-family:ff6_c00161;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_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;}
.v1_c00161{vertical-align:29.880000px;}
.ls1a_c00161{letter-spacing:-0.266400px;}
.ls10_c00161{letter-spacing:-0.151200px;}
.lse_c00161{letter-spacing:-0.048096px;}
.ls18_c00161{letter-spacing:-0.043200px;}
.ls17_c00161{letter-spacing:-0.039060px;}
.ls19_c00161{letter-spacing:-0.028800px;}
.ls14_c00161{letter-spacing:-0.021600px;}
.lsd_c00161{letter-spacing:-0.018036px;}
.ls16_c00161{letter-spacing:-0.015624px;}
.ls12_c00161{letter-spacing:-0.014400px;}
.ls1f_c00161{letter-spacing:-0.009576px;}
.ls1c_c00161{letter-spacing:-0.007776px;}
.ls11_c00161{letter-spacing:-0.007200px;}
.ls1d_c00161{letter-spacing:-0.003888px;}
.lsf_c00161{letter-spacing:0.000000px;}
.ls1_c00161{letter-spacing:0.007200px;}
.ls1e_c00161{letter-spacing:0.009576px;}
.ls7_c00161{letter-spacing:0.014364px;}
.ls5_c00161{letter-spacing:0.021600px;}
.ls9_c00161{letter-spacing:0.028728px;}
.ls6_c00161{letter-spacing:0.033516px;}
.ls0_c00161{letter-spacing:0.036072px;}
.lsa_c00161{letter-spacing:0.043092px;}
.ls15_c00161{letter-spacing:0.050400px;}
.ls2_c00161{letter-spacing:0.054756px;}
.lsc_c00161{letter-spacing:0.057456px;}
.ls13_c00161{letter-spacing:0.093600px;}
.ls3_c00161{letter-spacing:0.144000px;}
.ls1b_c00161{letter-spacing:0.346032px;}
.lsb_c00161{letter-spacing:0.378720px;}
.ls8_c00161{letter-spacing:0.435960px;}
.ls4_c00161{letter-spacing:65.304000px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00161{word-spacing:-19.514376px;}
.ws2_c00161{word-spacing:-11.154672px;}
.ws3_c00161{word-spacing:-10.804752px;}
.ws0_c00161{word-spacing:-10.584756px;}
.ws1a_c00161{word-spacing:-0.093600px;}
.ws1b_c00161{word-spacing:-0.054684px;}
.ws2b_c00161{word-spacing:-0.038304px;}
.ws27_c00161{word-spacing:-0.023940px;}
.ws24_c00161{word-spacing:-0.014364px;}
.ws26_c00161{word-spacing:-0.009576px;}
.ws19_c00161{word-spacing:-0.007200px;}
.ws7_c00161{word-spacing:0.000000px;}
.ws29_c00161{word-spacing:0.003888px;}
.ws25_c00161{word-spacing:0.004788px;}
.ws9_c00161{word-spacing:0.007200px;}
.ws2a_c00161{word-spacing:0.009576px;}
.wsc_c00161{word-spacing:0.014400px;}
.ws28_c00161{word-spacing:0.019152px;}
.ws1f_c00161{word-spacing:0.021600px;}
.ws2d_c00161{word-spacing:0.028728px;}
.ws4_c00161{word-spacing:0.054108px;}
.ws16_c00161{word-spacing:0.072000px;}
.ws5_c00161{word-spacing:0.108216px;}
.ws6_c00161{word-spacing:0.138276px;}
.ws2c_c00161{word-spacing:0.363888px;}
.ws18_c00161{word-spacing:0.734400px;}
.ws21_c00161{word-spacing:2.894400px;}
.ws22_c00161{word-spacing:2.908800px;}
.ws17_c00161{word-spacing:3.261600px;}
.wsb_c00161{word-spacing:3.592800px;}
.wsa_c00161{word-spacing:3.686400px;}
.wse_c00161{word-spacing:5.018400px;}
.ws20_c00161{word-spacing:5.047200px;}
.wsf_c00161{word-spacing:5.184000px;}
.ws13_c00161{word-spacing:5.328000px;}
.ws12_c00161{word-spacing:5.421600px;}
.ws23_c00161{word-spacing:6.501600px;}
.ws1e_c00161{word-spacing:6.868800px;}
.wsd_c00161{word-spacing:7.221600px;}
.ws11_c00161{word-spacing:11.858400px;}
.ws10_c00161{word-spacing:13.312800px;}
.ws15_c00161{word-spacing:15.069600px;}
.ws14_c00161{word-spacing:15.120000px;}
.ws8_c00161{word-spacing:18.712800px;}
.ws1d_c00161{word-spacing:23.356800px;}
.ws1c_c00161{word-spacing:23.443200px;}
._0_c00161{margin-left:-1.142280px;}
._1_c00161{width:1.080000px;}
.fc0_c00161{color:rgb(0,0,0);}
.fs6_c00161{font-size:38.880000px;}
.fs3_c00161{font-size:42.120000px;}
.fs5_c00161{font-size:47.880000px;}
.fs2_c00161{font-size:54.000000px;}
.fs0_c00161{font-size:60.120000px;}
.fs1_c00161{font-size:72.000000px;}
.fs4_c00161{font-size:78.120000px;}
.y0_c00161{bottom:0.000000px;}
.y3_c00161{bottom:57.450450px;}
.y4_c00161{bottom:61.410450px;}
.y23_c00161{bottom:113.698470px;}
.y22_c00161{bottom:132.064230px;}
.y21_c00161{bottom:150.334230px;}
.y20_c00161{bottom:168.598620px;}
.y1f_c00161{bottom:186.964230px;}
.y1e_c00161{bottom:205.234230px;}
.y1d_c00161{bottom:223.500450px;}
.y1c_c00161{bottom:238.710450px;}
.y1b_c00161{bottom:259.410450px;}
.y1a_c00161{bottom:280.110450px;}
.y19_c00161{bottom:377.760450px;}
.y18_c00161{bottom:412.230450px;}
.y17_c00161{bottom:446.610450px;}
.y16_c00161{bottom:490.080450px;}
.y15_c00161{bottom:524.460450px;}
.y14_c00161{bottom:558.930450px;}
.y13_c00161{bottom:603.930450px;}
.y12_c00161{bottom:666.660450px;}
.y11_c00161{bottom:701.040450px;}
.y10_c00161{bottom:735.510450px;}
.yf_c00161{bottom:778.890600px;}
.ye_c00161{bottom:813.360450px;}
.yd_c00161{bottom:847.740450px;}
.yc_c00161{bottom:882.210450px;}
.yb_c00161{bottom:916.590450px;}
.ya_c00161{bottom:951.060450px;}
.y9_c00161{bottom:985.440450px;}
.y8_c00161{bottom:1028.910450px;}
.y7_c00161{bottom:1063.290450px;}
.y6_c00161{bottom:1106.760450px;}
.y5_c00161{bottom:1141.140450px;}
.y2_c00161{bottom:1173.810450px;}
.y1_c00161{bottom:1196.850450px;}
.h2_c00161{height:47.988281px;}
.h9_c00161{height:49.937344px;}
.ha_c00161{height:49.944664px;}
.hb_c00161{height:49.945264px;}
.h1_c00161{height:50.315273px;}
.h3_c00161{height:56.320312px;}
.h4_c00161{height:60.257812px;}
.h5_c00161{height:65.130820px;}
.h7_c00161{height:65.131420px;}
.h6_c00161{height:75.093750px;}
.h8_c00161{height:81.476719px;}
.h0_c00161{height:1263.000000px;}
.w1_c00161{width:892.500000px;}
.w0_c00161{width:892.830000px;}
.x0_c00161{left:0.000000px;}
.x2_c00161{left:127.620000px;}
.x1_c00161{left:145.440000px;}
.x7_c00161{left:154.620000px;}
.x5_c00161{left:181.620000px;}
.x6_c00161{left:208.620000px;}
.x4_c00161{left:435.240000px;}
.x3_c00161{left:446.490000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.v1_c00161{vertical-align:26.560000pt;}
.ls1a_c00161{letter-spacing:-0.236800pt;}
.ls10_c00161{letter-spacing:-0.134400pt;}
.lse_c00161{letter-spacing:-0.042752pt;}
.ls18_c00161{letter-spacing:-0.038400pt;}
.ls17_c00161{letter-spacing:-0.034720pt;}
.ls19_c00161{letter-spacing:-0.025600pt;}
.ls14_c00161{letter-spacing:-0.019200pt;}
.lsd_c00161{letter-spacing:-0.016032pt;}
.ls16_c00161{letter-spacing:-0.013888pt;}
.ls12_c00161{letter-spacing:-0.012800pt;}
.ls1f_c00161{letter-spacing:-0.008512pt;}
.ls1c_c00161{letter-spacing:-0.006912pt;}
.ls11_c00161{letter-spacing:-0.006400pt;}
.ls1d_c00161{letter-spacing:-0.003456pt;}
.lsf_c00161{letter-spacing:0.000000pt;}
.ls1_c00161{letter-spacing:0.006400pt;}
.ls1e_c00161{letter-spacing:0.008512pt;}
.ls7_c00161{letter-spacing:0.012768pt;}
.ls5_c00161{letter-spacing:0.019200pt;}
.ls9_c00161{letter-spacing:0.025536pt;}
.ls6_c00161{letter-spacing:0.029792pt;}
.ls0_c00161{letter-spacing:0.032064pt;}
.lsa_c00161{letter-spacing:0.038304pt;}
.ls15_c00161{letter-spacing:0.044800pt;}
.ls2_c00161{letter-spacing:0.048672pt;}
.lsc_c00161{letter-spacing:0.051072pt;}
.ls13_c00161{letter-spacing:0.083200pt;}
.ls3_c00161{letter-spacing:0.128000pt;}
.ls1b_c00161{letter-spacing:0.307584pt;}
.lsb_c00161{letter-spacing:0.336640pt;}
.ls8_c00161{letter-spacing:0.387520pt;}
.ls4_c00161{letter-spacing:58.048000pt;}
.ws1_c00161{word-spacing:-17.346112pt;}
.ws2_c00161{word-spacing:-9.915264pt;}
.ws3_c00161{word-spacing:-9.604224pt;}
.ws0_c00161{word-spacing:-9.408672pt;}
.ws1a_c00161{word-spacing:-0.083200pt;}
.ws1b_c00161{word-spacing:-0.048608pt;}
.ws2b_c00161{word-spacing:-0.034048pt;}
.ws27_c00161{word-spacing:-0.021280pt;}
.ws24_c00161{word-spacing:-0.012768pt;}
.ws26_c00161{word-spacing:-0.008512pt;}
.ws19_c00161{word-spacing:-0.006400pt;}
.ws7_c00161{word-spacing:0.000000pt;}
.ws29_c00161{word-spacing:0.003456pt;}
.ws25_c00161{word-spacing:0.004256pt;}
.ws9_c00161{word-spacing:0.006400pt;}
.ws2a_c00161{word-spacing:0.008512pt;}
.wsc_c00161{word-spacing:0.012800pt;}
.ws28_c00161{word-spacing:0.017024pt;}
.ws1f_c00161{word-spacing:0.019200pt;}
.ws2d_c00161{word-spacing:0.025536pt;}
.ws4_c00161{word-spacing:0.048096pt;}
.ws16_c00161{word-spacing:0.064000pt;}
.ws5_c00161{word-spacing:0.096192pt;}
.ws6_c00161{word-spacing:0.122912pt;}
.ws2c_c00161{word-spacing:0.323456pt;}
.ws18_c00161{word-spacing:0.652800pt;}
.ws21_c00161{word-spacing:2.572800pt;}
.ws22_c00161{word-spacing:2.585600pt;}
.ws17_c00161{word-spacing:2.899200pt;}
.wsb_c00161{word-spacing:3.193600pt;}
.wsa_c00161{word-spacing:3.276800pt;}
.wse_c00161{word-spacing:4.460800pt;}
.ws20_c00161{word-spacing:4.486400pt;}
.wsf_c00161{word-spacing:4.608000pt;}
.ws13_c00161{word-spacing:4.736000pt;}
.ws12_c00161{word-spacing:4.819200pt;}
.ws23_c00161{word-spacing:5.779200pt;}
.ws1e_c00161{word-spacing:6.105600pt;}
.wsd_c00161{word-spacing:6.419200pt;}
.ws11_c00161{word-spacing:10.540800pt;}
.ws10_c00161{word-spacing:11.833600pt;}
.ws15_c00161{word-spacing:13.395200pt;}
.ws14_c00161{word-spacing:13.440000pt;}
.ws8_c00161{word-spacing:16.633600pt;}
.ws1d_c00161{word-spacing:20.761600pt;}
.ws1c_c00161{word-spacing:20.838400pt;}
._0_c00161{margin-left:-1.015360pt;}
._1_c00161{width:0.960000pt;}
.fs6_c00161{font-size:34.560000pt;}
.fs3_c00161{font-size:37.440000pt;}
.fs5_c00161{font-size:42.560000pt;}
.fs2_c00161{font-size:48.000000pt;}
.fs0_c00161{font-size:53.440000pt;}
.fs1_c00161{font-size:64.000000pt;}
.fs4_c00161{font-size:69.440000pt;}
.y0_c00161{bottom:0.000000pt;}
.y3_c00161{bottom:51.067067pt;}
.y4_c00161{bottom:54.587067pt;}
.y23_c00161{bottom:101.065307pt;}
.y22_c00161{bottom:117.390427pt;}
.y21_c00161{bottom:133.630427pt;}
.y20_c00161{bottom:149.865440pt;}
.y1f_c00161{bottom:166.190427pt;}
.y1e_c00161{bottom:182.430427pt;}
.y1d_c00161{bottom:198.667067pt;}
.y1c_c00161{bottom:212.187067pt;}
.y1b_c00161{bottom:230.587067pt;}
.y1a_c00161{bottom:248.987067pt;}
.y19_c00161{bottom:335.787067pt;}
.y18_c00161{bottom:366.427067pt;}
.y17_c00161{bottom:396.987067pt;}
.y16_c00161{bottom:435.627067pt;}
.y15_c00161{bottom:466.187067pt;}
.y14_c00161{bottom:496.827067pt;}
.y13_c00161{bottom:536.827067pt;}
.y12_c00161{bottom:592.587067pt;}
.y11_c00161{bottom:623.147067pt;}
.y10_c00161{bottom:653.787067pt;}
.yf_c00161{bottom:692.347200pt;}
.ye_c00161{bottom:722.987067pt;}
.yd_c00161{bottom:753.547067pt;}
.yc_c00161{bottom:784.187067pt;}
.yb_c00161{bottom:814.747067pt;}
.ya_c00161{bottom:845.387067pt;}
.y9_c00161{bottom:875.947067pt;}
.y8_c00161{bottom:914.587067pt;}
.y7_c00161{bottom:945.147067pt;}
.y6_c00161{bottom:983.787067pt;}
.y5_c00161{bottom:1014.347067pt;}
.y2_c00161{bottom:1043.387067pt;}
.y1_c00161{bottom:1063.867067pt;}
.h2_c00161{height:42.656250pt;}
.h9_c00161{height:44.388750pt;}
.ha_c00161{height:44.395257pt;}
.hb_c00161{height:44.395790pt;}
.h1_c00161{height:44.724687pt;}
.h3_c00161{height:50.062500pt;}
.h4_c00161{height:53.562500pt;}
.h5_c00161{height:57.894063pt;}
.h7_c00161{height:57.894596pt;}
.h6_c00161{height:66.750000pt;}
.h8_c00161{height:72.423750pt;}
.h0_c00161{height:1122.666667pt;}
.w1_c00161{width:793.333333pt;}
.w0_c00161{width:793.626667pt;}
.x0_c00161{left:0.000000pt;}
.x2_c00161{left:113.440000pt;}
.x1_c00161{left:129.280000pt;}
.x7_c00161{left:137.440000pt;}
.x5_c00161{left:161.440000pt;}
.x6_c00161{left:185.440000pt;}
.x4_c00161{left:386.880000pt;}
.x3_c00161{left:396.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_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_efd617d8a5d81bd61ddd250d.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.100098;font-style:normal;font-weight:normal;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_ccea000b2240ceeaeeec365a.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;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_c00162;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00162;src:url('chunks/assets/font_13d96c29f60e706d97a4d4cb.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00162;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00162{font-family:ff5_c00162;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_c00162;src:url('chunks/assets/font_7d427f7115838b804e464fdc.woff2')format("woff");}.ff6_c00162{font-family:ff6_c00162;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_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;}
.v1_c00162{vertical-align:15.840000px;}
.v2_c00162{vertical-align:29.880000px;}
.ls10_c00162{letter-spacing:-0.151200px;}
.ls13_c00162{letter-spacing:-0.050400px;}
.ls19_c00162{letter-spacing:-0.036000px;}
.ls16_c00162{letter-spacing:-0.031248px;}
.ls11_c00162{letter-spacing:-0.028800px;}
.ls15_c00162{letter-spacing:-0.023436px;}
.ls18_c00162{letter-spacing:-0.021600px;}
.ls14_c00162{letter-spacing:-0.014400px;}
.ls12_c00162{letter-spacing:-0.007200px;}
.lsf_c00162{letter-spacing:0.000000px;}
.ls8_c00162{letter-spacing:0.007200px;}
.lsa_c00162{letter-spacing:0.014364px;}
.ls9_c00162{letter-spacing:0.014400px;}
.ls17_c00162{letter-spacing:0.015624px;}
.lsc_c00162{letter-spacing:0.028728px;}
.ls1a_c00162{letter-spacing:0.028800px;}
.lse_c00162{letter-spacing:0.033516px;}
.lsd_c00162{letter-spacing:0.043092px;}
.ls0_c00162{letter-spacing:0.048096px;}
.ls7_c00162{letter-spacing:0.054684px;}
.ls2_c00162{letter-spacing:0.054756px;}
.ls5_c00162{letter-spacing:0.072000px;}
.ls4_c00162{letter-spacing:0.093600px;}
.ls1b_c00162{letter-spacing:0.346032px;}
.lsb_c00162{letter-spacing:0.435960px;}
.ls6_c00162{letter-spacing:4.218480px;}
.ls3_c00162{letter-spacing:72.589320px;}
.ls1_c00162{letter-spacing:1212.120000px;}
.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;}
}
.ws4_c00162{word-spacing:-19.506564px;}
.ws3_c00162{word-spacing:-18.093600px;}
.ws0_c00162{word-spacing:-17.949600px;}
.ws2_c00162{word-spacing:-15.030000px;}
.ws5_c00162{word-spacing:-11.154672px;}
.ws1_c00162{word-spacing:-10.584756px;}
.ws12_c00162{word-spacing:-0.507780px;}
.wsa_c00162{word-spacing:-0.093600px;}
.ws11_c00162{word-spacing:-0.062496px;}
.ws29_c00162{word-spacing:-0.023940px;}
.ws2a_c00162{word-spacing:-0.014364px;}
.ws28_c00162{word-spacing:-0.009576px;}
.ws1d_c00162{word-spacing:-0.007200px;}
.ws7_c00162{word-spacing:0.000000px;}
.ws27_c00162{word-spacing:0.004788px;}
.ws1f_c00162{word-spacing:0.007200px;}
.ws1b_c00162{word-spacing:0.014400px;}
.ws6_c00162{word-spacing:0.042084px;}
.ws1c_c00162{word-spacing:0.050400px;}
.ws10_c00162{word-spacing:0.158400px;}
.ws24_c00162{word-spacing:2.901600px;}
.wsb_c00162{word-spacing:3.960000px;}
.wsc_c00162{word-spacing:4.046400px;}
.wse_c00162{word-spacing:4.708800px;}
.wsd_c00162{word-spacing:4.759200px;}
.ws1a_c00162{word-spacing:5.025600px;}
.ws19_c00162{word-spacing:5.097600px;}
.ws9_c00162{word-spacing:6.062400px;}
.ws8_c00162{word-spacing:6.091200px;}
.ws26_c00162{word-spacing:6.451200px;}
.ws25_c00162{word-spacing:6.472800px;}
.ws13_c00162{word-spacing:7.876800px;}
.ws23_c00162{word-spacing:10.072800px;}
.ws22_c00162{word-spacing:10.144800px;}
.ws21_c00162{word-spacing:11.088000px;}
.ws20_c00162{word-spacing:11.196000px;}
.ws17_c00162{word-spacing:11.419200px;}
.ws18_c00162{word-spacing:11.556000px;}
.wsf_c00162{word-spacing:15.840000px;}
.ws14_c00162{word-spacing:16.552800px;}
.ws15_c00162{word-spacing:16.574400px;}
.ws16_c00162{word-spacing:16.581600px;}
.ws1e_c00162{word-spacing:24.112800px;}
._0_c00162{margin-left:-1.322640px;}
._1_c00162{width:1.296000px;}
.fc0_c00162{color:rgb(0,0,0);}
.fs6_c00162{font-size:38.880000px;}
.fs3_c00162{font-size:42.120000px;}
.fs5_c00162{font-size:47.880000px;}
.fs1_c00162{font-size:54.000000px;}
.fs0_c00162{font-size:60.120000px;}
.fs2_c00162{font-size:72.000000px;}
.fs4_c00162{font-size:78.120000px;}
.y0_c00162{bottom:0.000000px;}
.y3_c00162{bottom:57.450450px;}
.y21_c00162{bottom:113.698470px;}
.y20_c00162{bottom:132.064230px;}
.y1f_c00162{bottom:150.334230px;}
.y1e_c00162{bottom:168.602250px;}
.y1d_c00162{bottom:186.964230px;}
.y1c_c00162{bottom:205.230450px;}
.y1b_c00162{bottom:220.440450px;}
.y1a_c00162{bottom:241.140450px;}
.y19_c00162{bottom:261.840450px;}
.y18_c00162{bottom:386.760450px;}
.y17_c00162{bottom:421.230450px;}
.y16_c00162{bottom:455.610450px;}
.y15_c00162{bottom:490.080450px;}
.y14_c00162{bottom:524.460450px;}
.y13_c00162{bottom:567.930450px;}
.y12_c00162{bottom:602.310450px;}
.y11_c00162{bottom:645.780450px;}
.y10_c00162{bottom:680.160450px;}
.yf_c00162{bottom:714.630450px;}
.ye_c00162{bottom:749.010450px;}
.yd_c00162{bottom:783.480450px;}
.yc_c00162{bottom:817.860450px;}
.yb_c00162{bottom:852.330450px;}
.ya_c00162{bottom:897.330450px;}
.y9_c00162{bottom:960.060450px;}
.y8_c00162{bottom:994.440450px;}
.y7_c00162{bottom:1028.910450px;}
.y6_c00162{bottom:1063.290450px;}
.y5_c00162{bottom:1106.760450px;}
.y4_c00162{bottom:1141.140450px;}
.y2_c00162{bottom:1177.860450px;}
.y1_c00162{bottom:1196.850450px;}
.h8_c00162{height:47.988281px;}
.h9_c00162{height:49.937344px;}
.h1_c00162{height:50.315273px;}
.h2_c00162{height:56.320312px;}
.h4_c00162{height:60.257812px;}
.h6_c00162{height:62.703281px;}
.h5_c00162{height:65.130820px;}
.h3_c00162{height:72.160312px;}
.h7_c00162{height:81.476719px;}
.h0_c00162{height:1263.000000px;}
.w1_c00162{width:892.500000px;}
.w0_c00162{width:892.830000px;}
.x0_c00162{left:0.000000px;}
.x1_c00162{left:127.620000px;}
.x3_c00162{left:154.620000px;}
.x2_c00162{left:181.620000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.v1_c00162{vertical-align:14.080000pt;}
.v2_c00162{vertical-align:26.560000pt;}
.ls10_c00162{letter-spacing:-0.134400pt;}
.ls13_c00162{letter-spacing:-0.044800pt;}
.ls19_c00162{letter-spacing:-0.032000pt;}
.ls16_c00162{letter-spacing:-0.027776pt;}
.ls11_c00162{letter-spacing:-0.025600pt;}
.ls15_c00162{letter-spacing:-0.020832pt;}
.ls18_c00162{letter-spacing:-0.019200pt;}
.ls14_c00162{letter-spacing:-0.012800pt;}
.ls12_c00162{letter-spacing:-0.006400pt;}
.lsf_c00162{letter-spacing:0.000000pt;}
.ls8_c00162{letter-spacing:0.006400pt;}
.lsa_c00162{letter-spacing:0.012768pt;}
.ls9_c00162{letter-spacing:0.012800pt;}
.ls17_c00162{letter-spacing:0.013888pt;}
.lsc_c00162{letter-spacing:0.025536pt;}
.ls1a_c00162{letter-spacing:0.025600pt;}
.lse_c00162{letter-spacing:0.029792pt;}
.lsd_c00162{letter-spacing:0.038304pt;}
.ls0_c00162{letter-spacing:0.042752pt;}
.ls7_c00162{letter-spacing:0.048608pt;}
.ls2_c00162{letter-spacing:0.048672pt;}
.ls5_c00162{letter-spacing:0.064000pt;}
.ls4_c00162{letter-spacing:0.083200pt;}
.ls1b_c00162{letter-spacing:0.307584pt;}
.lsb_c00162{letter-spacing:0.387520pt;}
.ls6_c00162{letter-spacing:3.749760pt;}
.ls3_c00162{letter-spacing:64.523840pt;}
.ls1_c00162{letter-spacing:1077.440000pt;}
.ws4_c00162{word-spacing:-17.339168pt;}
.ws3_c00162{word-spacing:-16.083200pt;}
.ws0_c00162{word-spacing:-15.955200pt;}
.ws2_c00162{word-spacing:-13.360000pt;}
.ws5_c00162{word-spacing:-9.915264pt;}
.ws1_c00162{word-spacing:-9.408672pt;}
.ws12_c00162{word-spacing:-0.451360pt;}
.wsa_c00162{word-spacing:-0.083200pt;}
.ws11_c00162{word-spacing:-0.055552pt;}
.ws29_c00162{word-spacing:-0.021280pt;}
.ws2a_c00162{word-spacing:-0.012768pt;}
.ws28_c00162{word-spacing:-0.008512pt;}
.ws1d_c00162{word-spacing:-0.006400pt;}
.ws7_c00162{word-spacing:0.000000pt;}
.ws27_c00162{word-spacing:0.004256pt;}
.ws1f_c00162{word-spacing:0.006400pt;}
.ws1b_c00162{word-spacing:0.012800pt;}
.ws6_c00162{word-spacing:0.037408pt;}
.ws1c_c00162{word-spacing:0.044800pt;}
.ws10_c00162{word-spacing:0.140800pt;}
.ws24_c00162{word-spacing:2.579200pt;}
.wsb_c00162{word-spacing:3.520000pt;}
.wsc_c00162{word-spacing:3.596800pt;}
.wse_c00162{word-spacing:4.185600pt;}
.wsd_c00162{word-spacing:4.230400pt;}
.ws1a_c00162{word-spacing:4.467200pt;}
.ws19_c00162{word-spacing:4.531200pt;}
.ws9_c00162{word-spacing:5.388800pt;}
.ws8_c00162{word-spacing:5.414400pt;}
.ws26_c00162{word-spacing:5.734400pt;}
.ws25_c00162{word-spacing:5.753600pt;}
.ws13_c00162{word-spacing:7.001600pt;}
.ws23_c00162{word-spacing:8.953600pt;}
.ws22_c00162{word-spacing:9.017600pt;}
.ws21_c00162{word-spacing:9.856000pt;}
.ws20_c00162{word-spacing:9.952000pt;}
.ws17_c00162{word-spacing:10.150400pt;}
.ws18_c00162{word-spacing:10.272000pt;}
.wsf_c00162{word-spacing:14.080000pt;}
.ws14_c00162{word-spacing:14.713600pt;}
.ws15_c00162{word-spacing:14.732800pt;}
.ws16_c00162{word-spacing:14.739200pt;}
.ws1e_c00162{word-spacing:21.433600pt;}
._0_c00162{margin-left:-1.175680pt;}
._1_c00162{width:1.152000pt;}
.fs6_c00162{font-size:34.560000pt;}
.fs3_c00162{font-size:37.440000pt;}
.fs5_c00162{font-size:42.560000pt;}
.fs1_c00162{font-size:48.000000pt;}
.fs0_c00162{font-size:53.440000pt;}
.fs2_c00162{font-size:64.000000pt;}
.fs4_c00162{font-size:69.440000pt;}
.y0_c00162{bottom:0.000000pt;}
.y3_c00162{bottom:51.067067pt;}
.y21_c00162{bottom:101.065307pt;}
.y20_c00162{bottom:117.390427pt;}
.y1f_c00162{bottom:133.630427pt;}
.y1e_c00162{bottom:149.868667pt;}
.y1d_c00162{bottom:166.190427pt;}
.y1c_c00162{bottom:182.427067pt;}
.y1b_c00162{bottom:195.947067pt;}
.y1a_c00162{bottom:214.347067pt;}
.y19_c00162{bottom:232.747067pt;}
.y18_c00162{bottom:343.787067pt;}
.y17_c00162{bottom:374.427067pt;}
.y16_c00162{bottom:404.987067pt;}
.y15_c00162{bottom:435.627067pt;}
.y14_c00162{bottom:466.187067pt;}
.y13_c00162{bottom:504.827067pt;}
.y12_c00162{bottom:535.387067pt;}
.y11_c00162{bottom:574.027067pt;}
.y10_c00162{bottom:604.587067pt;}
.yf_c00162{bottom:635.227067pt;}
.ye_c00162{bottom:665.787067pt;}
.yd_c00162{bottom:696.427067pt;}
.yc_c00162{bottom:726.987067pt;}
.yb_c00162{bottom:757.627067pt;}
.ya_c00162{bottom:797.627067pt;}
.y9_c00162{bottom:853.387067pt;}
.y8_c00162{bottom:883.947067pt;}
.y7_c00162{bottom:914.587067pt;}
.y6_c00162{bottom:945.147067pt;}
.y5_c00162{bottom:983.787067pt;}
.y4_c00162{bottom:1014.347067pt;}
.y2_c00162{bottom:1046.987067pt;}
.y1_c00162{bottom:1063.867067pt;}
.h8_c00162{height:42.656250pt;}
.h9_c00162{height:44.388750pt;}
.h1_c00162{height:44.724687pt;}
.h2_c00162{height:50.062500pt;}
.h4_c00162{height:53.562500pt;}
.h6_c00162{height:55.736250pt;}
.h5_c00162{height:57.894063pt;}
.h3_c00162{height:64.142500pt;}
.h7_c00162{height:72.423750pt;}
.h0_c00162{height:1122.666667pt;}
.w1_c00162{width:793.333333pt;}
.w0_c00162{width:793.626667pt;}
.x0_c00162{left:0.000000pt;}
.x1_c00162{left:113.440000pt;}
.x3_c00162{left:137.440000pt;}
.x2_c00162{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_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_c0a69a538cd218544070dc71.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00163;src:url('chunks/assets/font_3c681c71af1250cb32692bbc.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00163;src:url('chunks/assets/font_33c7fdcfe2f38b0f366992b5.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00163;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;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_c00163;src:url('chunks/assets/font_9d504f0805193d03f9a23932.woff2')format("woff");}.ff6_c00163{font-family:ff6_c00163;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_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;}
.v1_c00163{vertical-align:29.880000px;}
.ls12_c00163{letter-spacing:-0.151200px;}
.ls15_c00163{letter-spacing:-0.085932px;}
.ls1c_c00163{letter-spacing:-0.062496px;}
.ls10_c00163{letter-spacing:-0.048096px;}
.ls18_c00163{letter-spacing:-0.036000px;}
.ls17_c00163{letter-spacing:-0.028800px;}
.ls1d_c00163{letter-spacing:-0.021600px;}
.lsf_c00163{letter-spacing:-0.018036px;}
.ls13_c00163{letter-spacing:-0.015624px;}
.ls19_c00163{letter-spacing:-0.014400px;}
.ls1f_c00163{letter-spacing:-0.007776px;}
.ls16_c00163{letter-spacing:-0.007200px;}
.ls20_c00163{letter-spacing:-0.003888px;}
.ls11_c00163{letter-spacing:0.000000px;}
.ls7_c00163{letter-spacing:0.014364px;}
.ls4_c00163{letter-spacing:0.014400px;}
.ls1_c00163{letter-spacing:0.021600px;}
.ls9_c00163{letter-spacing:0.028728px;}
.ls5_c00163{letter-spacing:0.031248px;}
.ls1b_c00163{letter-spacing:0.036000px;}
.ls0_c00163{letter-spacing:0.036072px;}
.lsa_c00163{letter-spacing:0.043092px;}
.lsc_c00163{letter-spacing:0.052668px;}
.ls14_c00163{letter-spacing:0.054684px;}
.ls2_c00163{letter-spacing:0.054756px;}
.lsd_c00163{letter-spacing:0.071820px;}
.ls3_c00163{letter-spacing:0.079200px;}
.ls1a_c00163{letter-spacing:0.093600px;}
.lse_c00163{letter-spacing:0.104040px;}
.ls1e_c00163{letter-spacing:0.346032px;}
.ls21_c00163{letter-spacing:0.357696px;}
.ls8_c00163{letter-spacing:0.435960px;}
.lsb_c00163{letter-spacing:0.464040px;}
.ls6_c00163{letter-spacing:77.260680px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00163{word-spacing:-19.561248px;}
.ws0_c00163{word-spacing:-19.514376px;}
.ws1_c00163{word-spacing:-19.444068px;}
.ws6_c00163{word-spacing:-11.166336px;}
.ws4_c00163{word-spacing:-11.154672px;}
.ws5_c00163{word-spacing:-10.800864px;}
.ws2_c00163{word-spacing:-10.584756px;}
.wsb_c00163{word-spacing:-0.109368px;}
.ws1c_c00163{word-spacing:-0.086400px;}
.ws25_c00163{word-spacing:-0.031248px;}
.ws2c_c00163{word-spacing:-0.023940px;}
.ws2b_c00163{word-spacing:-0.009576px;}
.wsa_c00163{word-spacing:0.000000px;}
.ws2a_c00163{word-spacing:0.004788px;}
.ws1b_c00163{word-spacing:0.007200px;}
.ws2d_c00163{word-spacing:0.019152px;}
.ws7_c00163{word-spacing:0.054108px;}
.ws12_c00163{word-spacing:0.086400px;}
.ws8_c00163{word-spacing:0.108216px;}
.ws9_c00163{word-spacing:0.138276px;}
.ws19_c00163{word-spacing:0.273600px;}
.ws1a_c00163{word-spacing:0.554400px;}
.ws14_c00163{word-spacing:0.648000px;}
.ws13_c00163{word-spacing:0.727200px;}
.ws29_c00163{word-spacing:1.785600px;}
.wsc_c00163{word-spacing:1.800000px;}
.ws28_c00163{word-spacing:1.828800px;}
.wsd_c00163{word-spacing:1.857600px;}
.ws20_c00163{word-spacing:2.174400px;}
.ws10_c00163{word-spacing:2.908800px;}
.ws11_c00163{word-spacing:2.952000px;}
.ws27_c00163{word-spacing:4.593600px;}
.ws26_c00163{word-spacing:4.687200px;}
.ws21_c00163{word-spacing:5.767200px;}
.ws22_c00163{word-spacing:5.796000px;}
.ws32_c00163{word-spacing:6.784596px;}
.ws31_c00163{word-spacing:6.803748px;}
.ws30_c00163{word-spacing:6.813324px;}
.ws2e_c00163{word-spacing:6.842052px;}
.ws2f_c00163{word-spacing:7.196688px;}
.ws18_c00163{word-spacing:9.374400px;}
.ws17_c00163{word-spacing:9.417600px;}
.wse_c00163{word-spacing:9.748800px;}
.wsf_c00163{word-spacing:9.777600px;}
.ws16_c00163{word-spacing:12.225600px;}
.ws15_c00163{word-spacing:12.240000px;}
.ws24_c00163{word-spacing:13.320000px;}
.ws23_c00163{word-spacing:13.348800px;}
.ws1d_c00163{word-spacing:14.400000px;}
.ws1e_c00163{word-spacing:23.738400px;}
.ws1f_c00163{word-spacing:23.824800px;}
._0_c00163{margin-left:-1.142280px;}
._1_c00163{width:1.038492px;}
.fc0_c00163{color:rgb(0,0,0);}
.fs6_c00163{font-size:38.880000px;}
.fs4_c00163{font-size:42.120000px;}
.fs5_c00163{font-size:47.880000px;}
.fs2_c00163{font-size:54.000000px;}
.fs0_c00163{font-size:60.120000px;}
.fs1_c00163{font-size:72.000000px;}
.fs3_c00163{font-size:78.120000px;}
.y0_c00163{bottom:0.000000px;}
.y3_c00163{bottom:57.450450px;}
.y4_c00163{bottom:61.410450px;}
.y24_c00163{bottom:113.698470px;}
.y23_c00163{bottom:132.064230px;}
.y22_c00163{bottom:150.336750px;}
.y21_c00163{bottom:168.602970px;}
.y20_c00163{bottom:186.964950px;}
.y1f_c00163{bottom:200.734230px;}
.y1e_c00163{bottom:219.000450px;}
.y1d_c00163{bottom:234.210450px;}
.y1c_c00163{bottom:254.910450px;}
.y1b_c00163{bottom:275.610450px;}
.y1a_c00163{bottom:340.500450px;}
.y19_c00163{bottom:374.970450px;}
.y18_c00163{bottom:409.350450px;}
.y17_c00163{bottom:454.350450px;}
.y16_c00163{bottom:517.080450px;}
.y15_c00163{bottom:551.460450px;}
.y14_c00163{bottom:585.930450px;}
.y13_c00163{bottom:620.310450px;}
.y12_c00163{bottom:663.780450px;}
.y11_c00163{bottom:698.160450px;}
.y10_c00163{bottom:732.630450px;}
.yf_c00163{bottom:767.010450px;}
.ye_c00163{bottom:810.480450px;}
.yd_c00163{bottom:844.860450px;}
.yc_c00163{bottom:879.330450px;}
.yb_c00163{bottom:913.710450px;}
.ya_c00163{bottom:948.180450px;}
.y9_c00163{bottom:991.560450px;}
.y8_c00163{bottom:1026.030450px;}
.y7_c00163{bottom:1060.410450px;}
.y6_c00163{bottom:1094.880450px;}
.y5_c00163{bottom:1139.880450px;}
.y2_c00163{bottom:1173.810450px;}
.y1_c00163{bottom:1196.850450px;}
.h2_c00163{height:47.988281px;}
.h7_c00163{height:49.937344px;}
.h8_c00163{height:49.945264px;}
.h1_c00163{height:50.315273px;}
.h3_c00163{height:56.320312px;}
.h5_c00163{height:60.257812px;}
.h6_c00163{height:65.130820px;}
.h4_c00163{height:81.476719px;}
.h0_c00163{height:1263.000000px;}
.w1_c00163{width:892.500000px;}
.w0_c00163{width:892.830000px;}
.x0_c00163{left:0.000000px;}
.x2_c00163{left:127.620000px;}
.x1_c00163{left:145.440000px;}
.x6_c00163{left:154.616490px;}
.x5_c00163{left:180.810000px;}
.x4_c00163{left:435.240000px;}
.x3_c00163{left:446.490000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.v1_c00163{vertical-align:26.560000pt;}
.ls12_c00163{letter-spacing:-0.134400pt;}
.ls15_c00163{letter-spacing:-0.076384pt;}
.ls1c_c00163{letter-spacing:-0.055552pt;}
.ls10_c00163{letter-spacing:-0.042752pt;}
.ls18_c00163{letter-spacing:-0.032000pt;}
.ls17_c00163{letter-spacing:-0.025600pt;}
.ls1d_c00163{letter-spacing:-0.019200pt;}
.lsf_c00163{letter-spacing:-0.016032pt;}
.ls13_c00163{letter-spacing:-0.013888pt;}
.ls19_c00163{letter-spacing:-0.012800pt;}
.ls1f_c00163{letter-spacing:-0.006912pt;}
.ls16_c00163{letter-spacing:-0.006400pt;}
.ls20_c00163{letter-spacing:-0.003456pt;}
.ls11_c00163{letter-spacing:0.000000pt;}
.ls7_c00163{letter-spacing:0.012768pt;}
.ls4_c00163{letter-spacing:0.012800pt;}
.ls1_c00163{letter-spacing:0.019200pt;}
.ls9_c00163{letter-spacing:0.025536pt;}
.ls5_c00163{letter-spacing:0.027776pt;}
.ls1b_c00163{letter-spacing:0.032000pt;}
.ls0_c00163{letter-spacing:0.032064pt;}
.lsa_c00163{letter-spacing:0.038304pt;}
.lsc_c00163{letter-spacing:0.046816pt;}
.ls14_c00163{letter-spacing:0.048608pt;}
.ls2_c00163{letter-spacing:0.048672pt;}
.lsd_c00163{letter-spacing:0.063840pt;}
.ls3_c00163{letter-spacing:0.070400pt;}
.ls1a_c00163{letter-spacing:0.083200pt;}
.lse_c00163{letter-spacing:0.092480pt;}
.ls1e_c00163{letter-spacing:0.307584pt;}
.ls21_c00163{letter-spacing:0.317952pt;}
.ls8_c00163{letter-spacing:0.387520pt;}
.lsb_c00163{letter-spacing:0.412480pt;}
.ls6_c00163{letter-spacing:68.676160pt;}
.ws3_c00163{word-spacing:-17.387776pt;}
.ws0_c00163{word-spacing:-17.346112pt;}
.ws1_c00163{word-spacing:-17.283616pt;}
.ws6_c00163{word-spacing:-9.925632pt;}
.ws4_c00163{word-spacing:-9.915264pt;}
.ws5_c00163{word-spacing:-9.600768pt;}
.ws2_c00163{word-spacing:-9.408672pt;}
.wsb_c00163{word-spacing:-0.097216pt;}
.ws1c_c00163{word-spacing:-0.076800pt;}
.ws25_c00163{word-spacing:-0.027776pt;}
.ws2c_c00163{word-spacing:-0.021280pt;}
.ws2b_c00163{word-spacing:-0.008512pt;}
.wsa_c00163{word-spacing:0.000000pt;}
.ws2a_c00163{word-spacing:0.004256pt;}
.ws1b_c00163{word-spacing:0.006400pt;}
.ws2d_c00163{word-spacing:0.017024pt;}
.ws7_c00163{word-spacing:0.048096pt;}
.ws12_c00163{word-spacing:0.076800pt;}
.ws8_c00163{word-spacing:0.096192pt;}
.ws9_c00163{word-spacing:0.122912pt;}
.ws19_c00163{word-spacing:0.243200pt;}
.ws1a_c00163{word-spacing:0.492800pt;}
.ws14_c00163{word-spacing:0.576000pt;}
.ws13_c00163{word-spacing:0.646400pt;}
.ws29_c00163{word-spacing:1.587200pt;}
.wsc_c00163{word-spacing:1.600000pt;}
.ws28_c00163{word-spacing:1.625600pt;}
.wsd_c00163{word-spacing:1.651200pt;}
.ws20_c00163{word-spacing:1.932800pt;}
.ws10_c00163{word-spacing:2.585600pt;}
.ws11_c00163{word-spacing:2.624000pt;}
.ws27_c00163{word-spacing:4.083200pt;}
.ws26_c00163{word-spacing:4.166400pt;}
.ws21_c00163{word-spacing:5.126400pt;}
.ws22_c00163{word-spacing:5.152000pt;}
.ws32_c00163{word-spacing:6.030752pt;}
.ws31_c00163{word-spacing:6.047776pt;}
.ws30_c00163{word-spacing:6.056288pt;}
.ws2e_c00163{word-spacing:6.081824pt;}
.ws2f_c00163{word-spacing:6.397056pt;}
.ws18_c00163{word-spacing:8.332800pt;}
.ws17_c00163{word-spacing:8.371200pt;}
.wse_c00163{word-spacing:8.665600pt;}
.wsf_c00163{word-spacing:8.691200pt;}
.ws16_c00163{word-spacing:10.867200pt;}
.ws15_c00163{word-spacing:10.880000pt;}
.ws24_c00163{word-spacing:11.840000pt;}
.ws23_c00163{word-spacing:11.865600pt;}
.ws1d_c00163{word-spacing:12.800000pt;}
.ws1e_c00163{word-spacing:21.100800pt;}
.ws1f_c00163{word-spacing:21.177600pt;}
._0_c00163{margin-left:-1.015360pt;}
._1_c00163{width:0.923104pt;}
.fs6_c00163{font-size:34.560000pt;}
.fs4_c00163{font-size:37.440000pt;}
.fs5_c00163{font-size:42.560000pt;}
.fs2_c00163{font-size:48.000000pt;}
.fs0_c00163{font-size:53.440000pt;}
.fs1_c00163{font-size:64.000000pt;}
.fs3_c00163{font-size:69.440000pt;}
.y0_c00163{bottom:0.000000pt;}
.y3_c00163{bottom:51.067067pt;}
.y4_c00163{bottom:54.587067pt;}
.y24_c00163{bottom:101.065307pt;}
.y23_c00163{bottom:117.390427pt;}
.y22_c00163{bottom:133.632667pt;}
.y21_c00163{bottom:149.869307pt;}
.y20_c00163{bottom:166.191067pt;}
.y1f_c00163{bottom:178.430427pt;}
.y1e_c00163{bottom:194.667067pt;}
.y1d_c00163{bottom:208.187067pt;}
.y1c_c00163{bottom:226.587067pt;}
.y1b_c00163{bottom:244.987067pt;}
.y1a_c00163{bottom:302.667067pt;}
.y19_c00163{bottom:333.307067pt;}
.y18_c00163{bottom:363.867067pt;}
.y17_c00163{bottom:403.867067pt;}
.y16_c00163{bottom:459.627067pt;}
.y15_c00163{bottom:490.187067pt;}
.y14_c00163{bottom:520.827067pt;}
.y13_c00163{bottom:551.387067pt;}
.y12_c00163{bottom:590.027067pt;}
.y11_c00163{bottom:620.587067pt;}
.y10_c00163{bottom:651.227067pt;}
.yf_c00163{bottom:681.787067pt;}
.ye_c00163{bottom:720.427067pt;}
.yd_c00163{bottom:750.987067pt;}
.yc_c00163{bottom:781.627067pt;}
.yb_c00163{bottom:812.187067pt;}
.ya_c00163{bottom:842.827067pt;}
.y9_c00163{bottom:881.387067pt;}
.y8_c00163{bottom:912.027067pt;}
.y7_c00163{bottom:942.587067pt;}
.y6_c00163{bottom:973.227067pt;}
.y5_c00163{bottom:1013.227067pt;}
.y2_c00163{bottom:1043.387067pt;}
.y1_c00163{bottom:1063.867067pt;}
.h2_c00163{height:42.656250pt;}
.h7_c00163{height:44.388750pt;}
.h8_c00163{height:44.395790pt;}
.h1_c00163{height:44.724687pt;}
.h3_c00163{height:50.062500pt;}
.h5_c00163{height:53.562500pt;}
.h6_c00163{height:57.894062pt;}
.h4_c00163{height:72.423750pt;}
.h0_c00163{height:1122.666667pt;}
.w1_c00163{width:793.333333pt;}
.w0_c00163{width:793.626667pt;}
.x0_c00163{left:0.000000pt;}
.x2_c00163{left:113.440000pt;}
.x1_c00163{left:129.280000pt;}
.x6_c00163{left:137.436880pt;}
.x5_c00163{left:160.720000pt;}
.x4_c00163{left:386.880000pt;}
.x3_c00163{left:396.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_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_d3a5e0f64d657f67bf31ac89.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.100098;font-style:normal;font-weight:normal;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_ff18a96dcac75613c82ccf29.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;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_c00164;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00164;src:url('chunks/assets/font_73dfd8d455dd331b8d7de5a6.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;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_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;}
.v1_c00164{vertical-align:15.840000px;}
.v2_c00164{vertical-align:29.880000px;}
.ls10_c00164{letter-spacing:-0.151200px;}
.ls18_c00164{letter-spacing:-0.050400px;}
.ls19_c00164{letter-spacing:-0.043200px;}
.ls1a_c00164{letter-spacing:-0.036000px;}
.ls16_c00164{letter-spacing:-0.028800px;}
.ls12_c00164{letter-spacing:-0.021600px;}
.ls17_c00164{letter-spacing:-0.014400px;}
.ls11_c00164{letter-spacing:-0.007200px;}
.ls1b_c00164{letter-spacing:-0.003888px;}
.lsf_c00164{letter-spacing:0.000000px;}
.ls4_c00164{letter-spacing:0.007200px;}
.ls5_c00164{letter-spacing:0.014364px;}
.ls2_c00164{letter-spacing:0.014400px;}
.ls9_c00164{letter-spacing:0.019152px;}
.ls15_c00164{letter-spacing:0.021600px;}
.lsd_c00164{letter-spacing:0.028728px;}
.ls14_c00164{letter-spacing:0.028800px;}
.lsa_c00164{letter-spacing:0.033516px;}
.lsb_c00164{letter-spacing:0.038304px;}
.ls7_c00164{letter-spacing:0.043092px;}
.lsc_c00164{letter-spacing:0.047880px;}
.ls0_c00164{letter-spacing:0.048096px;}
.ls3_c00164{letter-spacing:0.054756px;}
.ls13_c00164{letter-spacing:0.093600px;}
.ls6_c00164{letter-spacing:0.104040px;}
.ls8_c00164{letter-spacing:0.342144px;}
.ls1c_c00164{letter-spacing:0.357696px;}
.lse_c00164{letter-spacing:0.378252px;}
.ls1_c00164{letter-spacing:1212.120000px;}
.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:-17.985600px;}
.ws4_c00164{word-spacing:-13.329792px;}
.ws2_c00164{word-spacing:-11.166336px;}
.ws3_c00164{word-spacing:-11.150784px;}
.ws0_c00164{word-spacing:-10.584756px;}
.ws38_c00164{word-spacing:-0.359100px;}
.ws2c_c00164{word-spacing:-0.023940px;}
.ws17_c00164{word-spacing:-0.014400px;}
.ws2e_c00164{word-spacing:-0.014364px;}
.ws6_c00164{word-spacing:0.000000px;}
.ws2b_c00164{word-spacing:0.004788px;}
.ws2d_c00164{word-spacing:0.019152px;}
.ws22_c00164{word-spacing:0.028800px;}
.ws5_c00164{word-spacing:0.042084px;}
.wsb_c00164{word-spacing:0.057600px;}
.ws35_c00164{word-spacing:0.694260px;}
.ws34_c00164{word-spacing:0.699048px;}
.ws28_c00164{word-spacing:1.850400px;}
.ws29_c00164{word-spacing:1.886400px;}
.ws2f_c00164{word-spacing:2.499336px;}
.ws36_c00164{word-spacing:2.853648px;}
.ws37_c00164{word-spacing:2.868012px;}
.wsa_c00164{word-spacing:2.908800px;}
.ws31_c00164{word-spacing:3.945312px;}
.ws30_c00164{word-spacing:3.950100px;}
.ws16_c00164{word-spacing:5.400000px;}
.ws7_c00164{word-spacing:5.745600px;}
.wsc_c00164{word-spacing:6.832800px;}
.wsd_c00164{word-spacing:6.868800px;}
.ws20_c00164{word-spacing:7.992000px;}
.ws21_c00164{word-spacing:8.035200px;}
.ws12_c00164{word-spacing:8.668800px;}
.ws13_c00164{word-spacing:8.690400px;}
.ws32_c00164{word-spacing:8.967924px;}
.ws33_c00164{word-spacing:8.977500px;}
.ws1c_c00164{word-spacing:8.992800px;}
.ws1d_c00164{word-spacing:9.064800px;}
.ws10_c00164{word-spacing:10.828800px;}
.ws11_c00164{word-spacing:10.864800px;}
.ws2a_c00164{word-spacing:11.181600px;}
.ws25_c00164{word-spacing:12.117600px;}
.ws26_c00164{word-spacing:12.254400px;}
.ws15_c00164{word-spacing:14.637600px;}
.ws27_c00164{word-spacing:14.767200px;}
.ws14_c00164{word-spacing:14.788800px;}
.ws1b_c00164{word-spacing:16.596000px;}
.ws1a_c00164{word-spacing:16.603200px;}
.wsf_c00164{word-spacing:19.828800px;}
.wse_c00164{word-spacing:19.864800px;}
.ws8_c00164{word-spacing:20.102400px;}
.ws9_c00164{word-spacing:20.167200px;}
.ws18_c00164{word-spacing:20.239200px;}
.ws19_c00164{word-spacing:23.032800px;}
.ws23_c00164{word-spacing:23.788800px;}
.ws24_c00164{word-spacing:23.961600px;}
.ws1e_c00164{word-spacing:30.168000px;}
.ws1f_c00164{word-spacing:30.254400px;}
._0_c00164{margin-left:-1.322640px;}
._1_c00164{width:1.008000px;}
.fc0_c00164{color:rgb(0,0,0);}
.fs5_c00164{font-size:38.880000px;}
.fs3_c00164{font-size:42.120000px;}
.fs4_c00164{font-size:47.880000px;}
.fs1_c00164{font-size:54.000000px;}
.fs0_c00164{font-size:60.120000px;}
.fs2_c00164{font-size:72.000000px;}
.y0_c00164{bottom:0.000000px;}
.y3_c00164{bottom:57.450450px;}
.y27_c00164{bottom:113.715210px;}
.y26_c00164{bottom:127.576470px;}
.y25_c00164{bottom:141.341970px;}
.y24_c00164{bottom:155.107470px;}
.y23_c00164{bottom:168.968730px;}
.y22_c00164{bottom:182.734230px;}
.y21_c00164{bottom:201.002250px;}
.y20_c00164{bottom:219.364230px;}
.y1f_c00164{bottom:237.634230px;}
.y1e_c00164{bottom:255.900450px;}
.y1d_c00164{bottom:271.110450px;}
.y1c_c00164{bottom:291.810450px;}
.y1b_c00164{bottom:312.510450px;}
.y1a_c00164{bottom:356.790450px;}
.y19_c00164{bottom:391.260450px;}
.y18_c00164{bottom:425.640450px;}
.y17_c00164{bottom:460.110450px;}
.y16_c00164{bottom:494.490450px;}
.y15_c00164{bottom:537.960450px;}
.y14_c00164{bottom:572.340450px;}
.y13_c00164{bottom:606.810450px;}
.y12_c00164{bottom:641.190450px;}
.y11_c00164{bottom:675.660450px;}
.y10_c00164{bottom:710.040450px;}
.yf_c00164{bottom:744.510450px;}
.ye_c00164{bottom:787.890450px;}
.yd_c00164{bottom:822.360450px;}
.yc_c00164{bottom:856.740450px;}
.yb_c00164{bottom:891.210450px;}
.ya_c00164{bottom:925.590450px;}
.y9_c00164{bottom:960.060450px;}
.y8_c00164{bottom:994.440450px;}
.y7_c00164{bottom:1037.910450px;}
.y6_c00164{bottom:1072.290450px;}
.y5_c00164{bottom:1106.760450px;}
.y4_c00164{bottom:1141.140450px;}
.y2_c00164{bottom:1177.860450px;}
.y1_c00164{bottom:1196.850450px;}
.h6_c00164{height:47.988281px;}
.h7_c00164{height:49.937344px;}
.h1_c00164{height:50.315273px;}
.h2_c00164{height:56.320312px;}
.h4_c00164{height:60.257812px;}
.h5_c00164{height:65.130820px;}
.h3_c00164{height:72.160312px;}
.h0_c00164{height:1263.000000px;}
.w1_c00164{width:892.500000px;}
.w0_c00164{width:892.830000px;}
.x0_c00164{left:0.000000px;}
.x1_c00164{left:127.620000px;}
.x3_c00164{left:154.636380px;}
.x2_c00164{left:180.810000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.v1_c00164{vertical-align:14.080000pt;}
.v2_c00164{vertical-align:26.560000pt;}
.ls10_c00164{letter-spacing:-0.134400pt;}
.ls18_c00164{letter-spacing:-0.044800pt;}
.ls19_c00164{letter-spacing:-0.038400pt;}
.ls1a_c00164{letter-spacing:-0.032000pt;}
.ls16_c00164{letter-spacing:-0.025600pt;}
.ls12_c00164{letter-spacing:-0.019200pt;}
.ls17_c00164{letter-spacing:-0.012800pt;}
.ls11_c00164{letter-spacing:-0.006400pt;}
.ls1b_c00164{letter-spacing:-0.003456pt;}
.lsf_c00164{letter-spacing:0.000000pt;}
.ls4_c00164{letter-spacing:0.006400pt;}
.ls5_c00164{letter-spacing:0.012768pt;}
.ls2_c00164{letter-spacing:0.012800pt;}
.ls9_c00164{letter-spacing:0.017024pt;}
.ls15_c00164{letter-spacing:0.019200pt;}
.lsd_c00164{letter-spacing:0.025536pt;}
.ls14_c00164{letter-spacing:0.025600pt;}
.lsa_c00164{letter-spacing:0.029792pt;}
.lsb_c00164{letter-spacing:0.034048pt;}
.ls7_c00164{letter-spacing:0.038304pt;}
.lsc_c00164{letter-spacing:0.042560pt;}
.ls0_c00164{letter-spacing:0.042752pt;}
.ls3_c00164{letter-spacing:0.048672pt;}
.ls13_c00164{letter-spacing:0.083200pt;}
.ls6_c00164{letter-spacing:0.092480pt;}
.ls8_c00164{letter-spacing:0.304128pt;}
.ls1c_c00164{letter-spacing:0.317952pt;}
.lse_c00164{letter-spacing:0.336224pt;}
.ls1_c00164{letter-spacing:1077.440000pt;}
.ws1_c00164{word-spacing:-15.987200pt;}
.ws4_c00164{word-spacing:-11.848704pt;}
.ws2_c00164{word-spacing:-9.925632pt;}
.ws3_c00164{word-spacing:-9.911808pt;}
.ws0_c00164{word-spacing:-9.408672pt;}
.ws38_c00164{word-spacing:-0.319200pt;}
.ws2c_c00164{word-spacing:-0.021280pt;}
.ws17_c00164{word-spacing:-0.012800pt;}
.ws2e_c00164{word-spacing:-0.012768pt;}
.ws6_c00164{word-spacing:0.000000pt;}
.ws2b_c00164{word-spacing:0.004256pt;}
.ws2d_c00164{word-spacing:0.017024pt;}
.ws22_c00164{word-spacing:0.025600pt;}
.ws5_c00164{word-spacing:0.037408pt;}
.wsb_c00164{word-spacing:0.051200pt;}
.ws35_c00164{word-spacing:0.617120pt;}
.ws34_c00164{word-spacing:0.621376pt;}
.ws28_c00164{word-spacing:1.644800pt;}
.ws29_c00164{word-spacing:1.676800pt;}
.ws2f_c00164{word-spacing:2.221632pt;}
.ws36_c00164{word-spacing:2.536576pt;}
.ws37_c00164{word-spacing:2.549344pt;}
.wsa_c00164{word-spacing:2.585600pt;}
.ws31_c00164{word-spacing:3.506944pt;}
.ws30_c00164{word-spacing:3.511200pt;}
.ws16_c00164{word-spacing:4.800000pt;}
.ws7_c00164{word-spacing:5.107200pt;}
.wsc_c00164{word-spacing:6.073600pt;}
.wsd_c00164{word-spacing:6.105600pt;}
.ws20_c00164{word-spacing:7.104000pt;}
.ws21_c00164{word-spacing:7.142400pt;}
.ws12_c00164{word-spacing:7.705600pt;}
.ws13_c00164{word-spacing:7.724800pt;}
.ws32_c00164{word-spacing:7.971488pt;}
.ws33_c00164{word-spacing:7.980000pt;}
.ws1c_c00164{word-spacing:7.993600pt;}
.ws1d_c00164{word-spacing:8.057600pt;}
.ws10_c00164{word-spacing:9.625600pt;}
.ws11_c00164{word-spacing:9.657600pt;}
.ws2a_c00164{word-spacing:9.939200pt;}
.ws25_c00164{word-spacing:10.771200pt;}
.ws26_c00164{word-spacing:10.892800pt;}
.ws15_c00164{word-spacing:13.011200pt;}
.ws27_c00164{word-spacing:13.126400pt;}
.ws14_c00164{word-spacing:13.145600pt;}
.ws1b_c00164{word-spacing:14.752000pt;}
.ws1a_c00164{word-spacing:14.758400pt;}
.wsf_c00164{word-spacing:17.625600pt;}
.wse_c00164{word-spacing:17.657600pt;}
.ws8_c00164{word-spacing:17.868800pt;}
.ws9_c00164{word-spacing:17.926400pt;}
.ws18_c00164{word-spacing:17.990400pt;}
.ws19_c00164{word-spacing:20.473600pt;}
.ws23_c00164{word-spacing:21.145600pt;}
.ws24_c00164{word-spacing:21.299200pt;}
.ws1e_c00164{word-spacing:26.816000pt;}
.ws1f_c00164{word-spacing:26.892800pt;}
._0_c00164{margin-left:-1.175680pt;}
._1_c00164{width:0.896000pt;}
.fs5_c00164{font-size:34.560000pt;}
.fs3_c00164{font-size:37.440000pt;}
.fs4_c00164{font-size:42.560000pt;}
.fs1_c00164{font-size:48.000000pt;}
.fs0_c00164{font-size:53.440000pt;}
.fs2_c00164{font-size:64.000000pt;}
.y0_c00164{bottom:0.000000pt;}
.y3_c00164{bottom:51.067067pt;}
.y27_c00164{bottom:101.080187pt;}
.y26_c00164{bottom:113.401307pt;}
.y25_c00164{bottom:125.637307pt;}
.y24_c00164{bottom:137.873307pt;}
.y23_c00164{bottom:150.194427pt;}
.y22_c00164{bottom:162.430427pt;}
.y21_c00164{bottom:178.668667pt;}
.y20_c00164{bottom:194.990427pt;}
.y1f_c00164{bottom:211.230427pt;}
.y1e_c00164{bottom:227.467067pt;}
.y1d_c00164{bottom:240.987067pt;}
.y1c_c00164{bottom:259.387067pt;}
.y1b_c00164{bottom:277.787067pt;}
.y1a_c00164{bottom:317.147067pt;}
.y19_c00164{bottom:347.787067pt;}
.y18_c00164{bottom:378.347067pt;}
.y17_c00164{bottom:408.987067pt;}
.y16_c00164{bottom:439.547067pt;}
.y15_c00164{bottom:478.187067pt;}
.y14_c00164{bottom:508.747067pt;}
.y13_c00164{bottom:539.387067pt;}
.y12_c00164{bottom:569.947067pt;}
.y11_c00164{bottom:600.587067pt;}
.y10_c00164{bottom:631.147067pt;}
.yf_c00164{bottom:661.787067pt;}
.ye_c00164{bottom:700.347067pt;}
.yd_c00164{bottom:730.987067pt;}
.yc_c00164{bottom:761.547067pt;}
.yb_c00164{bottom:792.187067pt;}
.ya_c00164{bottom:822.747067pt;}
.y9_c00164{bottom:853.387067pt;}
.y8_c00164{bottom:883.947067pt;}
.y7_c00164{bottom:922.587067pt;}
.y6_c00164{bottom:953.147067pt;}
.y5_c00164{bottom:983.787067pt;}
.y4_c00164{bottom:1014.347067pt;}
.y2_c00164{bottom:1046.987067pt;}
.y1_c00164{bottom:1063.867067pt;}
.h6_c00164{height:42.656250pt;}
.h7_c00164{height:44.388750pt;}
.h1_c00164{height:44.724687pt;}
.h2_c00164{height:50.062500pt;}
.h4_c00164{height:53.562500pt;}
.h5_c00164{height:57.894063pt;}
.h3_c00164{height:64.142500pt;}
.h0_c00164{height:1122.666667pt;}
.w1_c00164{width:793.333333pt;}
.w0_c00164{width:793.626667pt;}
.x0_c00164{left:0.000000pt;}
.x1_c00164{left:113.440000pt;}
.x3_c00164{left:137.454560pt;}
.x2_c00164{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_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_1ed3a8ac30104ccf120628d7.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00165;src:url('chunks/assets/font_2c99b378b6eaa6d7aa0cb969.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00165;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;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_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.v1_c00165{vertical-align:29.880000px;}
.ls17_c00165{letter-spacing:-0.151200px;}
.ls18_c00165{letter-spacing:-0.050400px;}
.ls15_c00165{letter-spacing:-0.048096px;}
.ls1d_c00165{letter-spacing:-0.028800px;}
.ls1b_c00165{letter-spacing:-0.021600px;}
.ls14_c00165{letter-spacing:-0.018036px;}
.ls1a_c00165{letter-spacing:-0.014400px;}
.ls1f_c00165{letter-spacing:-0.007776px;}
.ls19_c00165{letter-spacing:-0.007200px;}
.ls21_c00165{letter-spacing:-0.003888px;}
.ls16_c00165{letter-spacing:0.000000px;}
.ls3_c00165{letter-spacing:0.007200px;}
.ls11_c00165{letter-spacing:0.014364px;}
.ls4_c00165{letter-spacing:0.014400px;}
.ls13_c00165{letter-spacing:0.019152px;}
.ls2_c00165{letter-spacing:0.021600px;}
.ls10_c00165{letter-spacing:0.023940px;}
.lsc_c00165{letter-spacing:0.028728px;}
.ls5_c00165{letter-spacing:0.033516px;}
.ls0_c00165{letter-spacing:0.036072px;}
.lsb_c00165{letter-spacing:0.038304px;}
.ls9_c00165{letter-spacing:0.043092px;}
.lsf_c00165{letter-spacing:0.047880px;}
.ls6_c00165{letter-spacing:0.052668px;}
.ls1_c00165{letter-spacing:0.054756px;}
.lsa_c00165{letter-spacing:0.057456px;}
.lsd_c00165{letter-spacing:0.062244px;}
.ls7_c00165{letter-spacing:0.067032px;}
.lse_c00165{letter-spacing:0.071820px;}
.ls1c_c00165{letter-spacing:0.093600px;}
.ls8_c00165{letter-spacing:0.104040px;}
.ls20_c00165{letter-spacing:0.338256px;}
.ls1e_c00165{letter-spacing:0.357696px;}
.ls12_c00165{letter-spacing:0.378252px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00165{word-spacing:-17.949600px;}
.ws2_c00165{word-spacing:-11.166336px;}
.ws3_c00165{word-spacing:-10.808640px;}
.ws1_c00165{word-spacing:-10.584756px;}
.ws43_c00165{word-spacing:-0.043092px;}
.ws42_c00165{word-spacing:-0.038304px;}
.ws2c_c00165{word-spacing:-0.028728px;}
.ws4d_c00165{word-spacing:-0.023940px;}
.wse_c00165{word-spacing:-0.021600px;}
.ws50_c00165{word-spacing:-0.019152px;}
.ws49_c00165{word-spacing:-0.014364px;}
.ws7_c00165{word-spacing:0.000000px;}
.ws35_c00165{word-spacing:0.004788px;}
.ws2d_c00165{word-spacing:0.019152px;}
.ws1f_c00165{word-spacing:0.021600px;}
.ws4_c00165{word-spacing:0.054108px;}
.wsf_c00165{word-spacing:0.064800px;}
.ws17_c00165{word-spacing:0.093600px;}
.ws5_c00165{word-spacing:0.108216px;}
.ws6_c00165{word-spacing:0.138276px;}
.ws39_c00165{word-spacing:0.339948px;}
.ws9_c00165{word-spacing:0.345600px;}
.ws3a_c00165{word-spacing:0.349524px;}
.ws41_c00165{word-spacing:0.363888px;}
.ws25_c00165{word-spacing:0.378252px;}
.ws8_c00165{word-spacing:0.410400px;}
.ws31_c00165{word-spacing:0.679896px;}
.ws21_c00165{word-spacing:0.684684px;}
.ws30_c00165{word-spacing:0.689472px;}
.ws4c_c00165{word-spacing:0.699048px;}
.ws20_c00165{word-spacing:0.703836px;}
.ws2e_c00165{word-spacing:1.053360px;}
.ws2f_c00165{word-spacing:1.072512px;}
.ws26_c00165{word-spacing:1.412460px;}
.ws10_c00165{word-spacing:1.814400px;}
.ws11_c00165{word-spacing:2.008800px;}
.ws52_c00165{word-spacing:2.858436px;}
.ws51_c00165{word-spacing:2.868012px;}
.ws32_c00165{word-spacing:3.217536px;}
.ws3c_c00165{word-spacing:3.562272px;}
.ws3b_c00165{word-spacing:3.571848px;}
.ws18_c00165{word-spacing:3.600000px;}
.ws19_c00165{word-spacing:3.650400px;}
.ws47_c00165{word-spacing:3.921372px;}
.ws48_c00165{word-spacing:3.935736px;}
.ws46_c00165{word-spacing:3.954888px;}
.ws54_c00165{word-spacing:4.634784px;}
.ws53_c00165{word-spacing:4.663512px;}
.ws55_c00165{word-spacing:4.673088px;}
.ws45_c00165{word-spacing:5.003460px;}
.ws44_c00165{word-spacing:5.013036px;}
.ws4e_c00165{word-spacing:5.348196px;}
.ws4f_c00165{word-spacing:5.372136px;}
.wsd_c00165{word-spacing:5.407200px;}
.wsc_c00165{word-spacing:5.414400px;}
.ws1b_c00165{word-spacing:5.817600px;}
.ws1a_c00165{word-spacing:5.824800px;}
.ws29_c00165{word-spacing:6.075972px;}
.ws27_c00165{word-spacing:6.080760px;}
.ws28_c00165{word-spacing:6.109488px;}
.ws3f_c00165{word-spacing:6.119064px;}
.ws3e_c00165{word-spacing:6.435072px;}
.ws3d_c00165{word-spacing:6.439860px;}
.ws40_c00165{word-spacing:6.463800px;}
.ws12_c00165{word-spacing:6.559200px;}
.ws13_c00165{word-spacing:6.588000px;}
.ws37_c00165{word-spacing:7.512372px;}
.ws36_c00165{word-spacing:7.531524px;}
.ws38_c00165{word-spacing:7.536312px;}
.ws56_c00165{word-spacing:7.541100px;}
.ws1e_c00165{word-spacing:8.265600px;}
.ws1c_c00165{word-spacing:8.272800px;}
.wsa_c00165{word-spacing:8.280000px;}
.ws15_c00165{word-spacing:8.294400px;}
.ws1d_c00165{word-spacing:8.308800px;}
.ws16_c00165{word-spacing:8.316000px;}
.wsb_c00165{word-spacing:8.344800px;}
.ws4b_c00165{word-spacing:9.327024px;}
.ws4a_c00165{word-spacing:9.331812px;}
.ws33_c00165{word-spacing:12.195036px;}
.ws2a_c00165{word-spacing:12.204612px;}
.ws2b_c00165{word-spacing:12.214188px;}
.ws34_c00165{word-spacing:12.238128px;}
.ws22_c00165{word-spacing:12.908448px;}
.ws24_c00165{word-spacing:12.918024px;}
.ws23_c00165{word-spacing:13.296276px;}
.ws14_c00165{word-spacing:30.614400px;}
._0_c00165{margin-left:-1.142280px;}
._1_c00165{width:1.139292px;}
._4_c00165{width:4.598136px;}
._3_c00165{width:7.125156px;}
._2_c00165{width:13.339836px;}
.fc0_c00165{color:rgb(0,0,0);}
.fs5_c00165{font-size:38.880000px;}
.fs3_c00165{font-size:42.120000px;}
.fs4_c00165{font-size:47.880000px;}
.fs2_c00165{font-size:54.000000px;}
.fs0_c00165{font-size:60.120000px;}
.fs1_c00165{font-size:72.000000px;}
.y0_c00165{bottom:0.000000px;}
.y3_c00165{bottom:57.450450px;}
.y4_c00165{bottom:61.410450px;}
.y34_c00165{bottom:113.712510px;}
.y33_c00165{bottom:132.074490px;}
.y32_c00165{bottom:145.839990px;}
.y31_c00165{bottom:159.605490px;}
.y30_c00165{bottom:173.466750px;}
.y2f_c00165{bottom:191.732970px;}
.y2e_c00165{bottom:205.498470px;}
.y2d_c00165{bottom:223.864230px;}
.y2c_c00165{bottom:242.141970px;}
.y2b_c00165{bottom:255.907470px;}
.y2a_c00165{bottom:269.768730px;}
.y29_c00165{bottom:288.034950px;}
.y28_c00165{bottom:301.811970px;}
.y27_c00165{bottom:315.577470px;}
.y26_c00165{bottom:329.438730px;}
.y25_c00165{bottom:347.704950px;}
.y24_c00165{bottom:361.480860px;}
.y23_c00165{bottom:375.342120px;}
.y22_c00165{bottom:389.107620px;}
.y21_c00165{bottom:402.873120px;}
.y20_c00165{bottom:421.235100px;}
.y1f_c00165{bottom:435.010860px;}
.y1e_c00165{bottom:448.776360px;}
.y1d_c00165{bottom:462.637620px;}
.y1c_c00165{bottom:476.403120px;}
.y1b_c00165{bottom:494.669340px;}
.y1a_c00165{bottom:508.541970px;}
.y19_c00165{bottom:522.307470px;}
.y18_c00165{bottom:536.072970px;}
.y17_c00165{bottom:554.434950px;}
.y16_c00165{bottom:568.204950px;}
.y15_c00165{bottom:581.970450px;}
.y14_c00165{bottom:597.180450px;}
.y13_c00165{bottom:617.880450px;}
.y12_c00165{bottom:638.580450px;}
.y11_c00165{bottom:710.040450px;}
.y10_c00165{bottom:744.510450px;}
.yf_c00165{bottom:778.890450px;}
.ye_c00165{bottom:813.360450px;}
.yd_c00165{bottom:856.740450px;}
.yc_c00165{bottom:891.210450px;}
.yb_c00165{bottom:925.590450px;}
.ya_c00165{bottom:960.060450px;}
.y9_c00165{bottom:994.440450px;}
.y8_c00165{bottom:1037.910450px;}
.y7_c00165{bottom:1072.290450px;}
.y6_c00165{bottom:1106.760450px;}
.y5_c00165{bottom:1141.140450px;}
.y2_c00165{bottom:1173.810450px;}
.y1_c00165{bottom:1196.850450px;}
.h2_c00165{height:47.988281px;}
.h6_c00165{height:49.937344px;}
.h1_c00165{height:50.315273px;}
.h3_c00165{height:56.320312px;}
.h5_c00165{height:60.257812px;}
.h4_c00165{height:65.130820px;}
.h0_c00165{height:1263.000000px;}
.w1_c00165{width:892.500000px;}
.w0_c00165{width:892.830000px;}
.x0_c00165{left:0.000000px;}
.x2_c00165{left:127.620000px;}
.x1_c00165{left:145.440000px;}
.x6_c00165{left:154.624320px;}
.x5_c00165{left:180.810000px;}
.x4_c00165{left:435.240000px;}
.x3_c00165{left:446.490000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.v1_c00165{vertical-align:26.560000pt;}
.ls17_c00165{letter-spacing:-0.134400pt;}
.ls18_c00165{letter-spacing:-0.044800pt;}
.ls15_c00165{letter-spacing:-0.042752pt;}
.ls1d_c00165{letter-spacing:-0.025600pt;}
.ls1b_c00165{letter-spacing:-0.019200pt;}
.ls14_c00165{letter-spacing:-0.016032pt;}
.ls1a_c00165{letter-spacing:-0.012800pt;}
.ls1f_c00165{letter-spacing:-0.006912pt;}
.ls19_c00165{letter-spacing:-0.006400pt;}
.ls21_c00165{letter-spacing:-0.003456pt;}
.ls16_c00165{letter-spacing:0.000000pt;}
.ls3_c00165{letter-spacing:0.006400pt;}
.ls11_c00165{letter-spacing:0.012768pt;}
.ls4_c00165{letter-spacing:0.012800pt;}
.ls13_c00165{letter-spacing:0.017024pt;}
.ls2_c00165{letter-spacing:0.019200pt;}
.ls10_c00165{letter-spacing:0.021280pt;}
.lsc_c00165{letter-spacing:0.025536pt;}
.ls5_c00165{letter-spacing:0.029792pt;}
.ls0_c00165{letter-spacing:0.032064pt;}
.lsb_c00165{letter-spacing:0.034048pt;}
.ls9_c00165{letter-spacing:0.038304pt;}
.lsf_c00165{letter-spacing:0.042560pt;}
.ls6_c00165{letter-spacing:0.046816pt;}
.ls1_c00165{letter-spacing:0.048672pt;}
.lsa_c00165{letter-spacing:0.051072pt;}
.lsd_c00165{letter-spacing:0.055328pt;}
.ls7_c00165{letter-spacing:0.059584pt;}
.lse_c00165{letter-spacing:0.063840pt;}
.ls1c_c00165{letter-spacing:0.083200pt;}
.ls8_c00165{letter-spacing:0.092480pt;}
.ls20_c00165{letter-spacing:0.300672pt;}
.ls1e_c00165{letter-spacing:0.317952pt;}
.ls12_c00165{letter-spacing:0.336224pt;}
.ws0_c00165{word-spacing:-15.955200pt;}
.ws2_c00165{word-spacing:-9.925632pt;}
.ws3_c00165{word-spacing:-9.607680pt;}
.ws1_c00165{word-spacing:-9.408672pt;}
.ws43_c00165{word-spacing:-0.038304pt;}
.ws42_c00165{word-spacing:-0.034048pt;}
.ws2c_c00165{word-spacing:-0.025536pt;}
.ws4d_c00165{word-spacing:-0.021280pt;}
.wse_c00165{word-spacing:-0.019200pt;}
.ws50_c00165{word-spacing:-0.017024pt;}
.ws49_c00165{word-spacing:-0.012768pt;}
.ws7_c00165{word-spacing:0.000000pt;}
.ws35_c00165{word-spacing:0.004256pt;}
.ws2d_c00165{word-spacing:0.017024pt;}
.ws1f_c00165{word-spacing:0.019200pt;}
.ws4_c00165{word-spacing:0.048096pt;}
.wsf_c00165{word-spacing:0.057600pt;}
.ws17_c00165{word-spacing:0.083200pt;}
.ws5_c00165{word-spacing:0.096192pt;}
.ws6_c00165{word-spacing:0.122912pt;}
.ws39_c00165{word-spacing:0.302176pt;}
.ws9_c00165{word-spacing:0.307200pt;}
.ws3a_c00165{word-spacing:0.310688pt;}
.ws41_c00165{word-spacing:0.323456pt;}
.ws25_c00165{word-spacing:0.336224pt;}
.ws8_c00165{word-spacing:0.364800pt;}
.ws31_c00165{word-spacing:0.604352pt;}
.ws21_c00165{word-spacing:0.608608pt;}
.ws30_c00165{word-spacing:0.612864pt;}
.ws4c_c00165{word-spacing:0.621376pt;}
.ws20_c00165{word-spacing:0.625632pt;}
.ws2e_c00165{word-spacing:0.936320pt;}
.ws2f_c00165{word-spacing:0.953344pt;}
.ws26_c00165{word-spacing:1.255520pt;}
.ws10_c00165{word-spacing:1.612800pt;}
.ws11_c00165{word-spacing:1.785600pt;}
.ws52_c00165{word-spacing:2.540832pt;}
.ws51_c00165{word-spacing:2.549344pt;}
.ws32_c00165{word-spacing:2.860032pt;}
.ws3c_c00165{word-spacing:3.166464pt;}
.ws3b_c00165{word-spacing:3.174976pt;}
.ws18_c00165{word-spacing:3.200000pt;}
.ws19_c00165{word-spacing:3.244800pt;}
.ws47_c00165{word-spacing:3.485664pt;}
.ws48_c00165{word-spacing:3.498432pt;}
.ws46_c00165{word-spacing:3.515456pt;}
.ws54_c00165{word-spacing:4.119808pt;}
.ws53_c00165{word-spacing:4.145344pt;}
.ws55_c00165{word-spacing:4.153856pt;}
.ws45_c00165{word-spacing:4.447520pt;}
.ws44_c00165{word-spacing:4.456032pt;}
.ws4e_c00165{word-spacing:4.753952pt;}
.ws4f_c00165{word-spacing:4.775232pt;}
.wsd_c00165{word-spacing:4.806400pt;}
.wsc_c00165{word-spacing:4.812800pt;}
.ws1b_c00165{word-spacing:5.171200pt;}
.ws1a_c00165{word-spacing:5.177600pt;}
.ws29_c00165{word-spacing:5.400864pt;}
.ws27_c00165{word-spacing:5.405120pt;}
.ws28_c00165{word-spacing:5.430656pt;}
.ws3f_c00165{word-spacing:5.439168pt;}
.ws3e_c00165{word-spacing:5.720064pt;}
.ws3d_c00165{word-spacing:5.724320pt;}
.ws40_c00165{word-spacing:5.745600pt;}
.ws12_c00165{word-spacing:5.830400pt;}
.ws13_c00165{word-spacing:5.856000pt;}
.ws37_c00165{word-spacing:6.677664pt;}
.ws36_c00165{word-spacing:6.694688pt;}
.ws38_c00165{word-spacing:6.698944pt;}
.ws56_c00165{word-spacing:6.703200pt;}
.ws1e_c00165{word-spacing:7.347200pt;}
.ws1c_c00165{word-spacing:7.353600pt;}
.wsa_c00165{word-spacing:7.360000pt;}
.ws15_c00165{word-spacing:7.372800pt;}
.ws1d_c00165{word-spacing:7.385600pt;}
.ws16_c00165{word-spacing:7.392000pt;}
.wsb_c00165{word-spacing:7.417600pt;}
.ws4b_c00165{word-spacing:8.290688pt;}
.ws4a_c00165{word-spacing:8.294944pt;}
.ws33_c00165{word-spacing:10.840032pt;}
.ws2a_c00165{word-spacing:10.848544pt;}
.ws2b_c00165{word-spacing:10.857056pt;}
.ws34_c00165{word-spacing:10.878336pt;}
.ws22_c00165{word-spacing:11.474176pt;}
.ws24_c00165{word-spacing:11.482688pt;}
.ws23_c00165{word-spacing:11.818912pt;}
.ws14_c00165{word-spacing:27.212800pt;}
._0_c00165{margin-left:-1.015360pt;}
._1_c00165{width:1.012704pt;}
._4_c00165{width:4.087232pt;}
._3_c00165{width:6.333472pt;}
._2_c00165{width:11.857632pt;}
.fs5_c00165{font-size:34.560000pt;}
.fs3_c00165{font-size:37.440000pt;}
.fs4_c00165{font-size:42.560000pt;}
.fs2_c00165{font-size:48.000000pt;}
.fs0_c00165{font-size:53.440000pt;}
.fs1_c00165{font-size:64.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y3_c00165{bottom:51.067067pt;}
.y4_c00165{bottom:54.587067pt;}
.y34_c00165{bottom:101.077787pt;}
.y33_c00165{bottom:117.399547pt;}
.y32_c00165{bottom:129.635547pt;}
.y31_c00165{bottom:141.871547pt;}
.y30_c00165{bottom:154.192667pt;}
.y2f_c00165{bottom:170.429307pt;}
.y2e_c00165{bottom:182.665307pt;}
.y2d_c00165{bottom:198.990427pt;}
.y2c_c00165{bottom:215.237307pt;}
.y2b_c00165{bottom:227.473307pt;}
.y2a_c00165{bottom:239.794427pt;}
.y29_c00165{bottom:256.031067pt;}
.y28_c00165{bottom:268.277307pt;}
.y27_c00165{bottom:280.513307pt;}
.y26_c00165{bottom:292.834427pt;}
.y25_c00165{bottom:309.071067pt;}
.y24_c00165{bottom:321.316320pt;}
.y23_c00165{bottom:333.637440pt;}
.y22_c00165{bottom:345.873440pt;}
.y21_c00165{bottom:358.109440pt;}
.y20_c00165{bottom:374.431200pt;}
.y1f_c00165{bottom:386.676320pt;}
.y1e_c00165{bottom:398.912320pt;}
.y1d_c00165{bottom:411.233440pt;}
.y1c_c00165{bottom:423.469440pt;}
.y1b_c00165{bottom:439.706080pt;}
.y1a_c00165{bottom:452.037307pt;}
.y19_c00165{bottom:464.273307pt;}
.y18_c00165{bottom:476.509307pt;}
.y17_c00165{bottom:492.831067pt;}
.y16_c00165{bottom:505.071067pt;}
.y15_c00165{bottom:517.307067pt;}
.y14_c00165{bottom:530.827067pt;}
.y13_c00165{bottom:549.227067pt;}
.y12_c00165{bottom:567.627067pt;}
.y11_c00165{bottom:631.147067pt;}
.y10_c00165{bottom:661.787067pt;}
.yf_c00165{bottom:692.347067pt;}
.ye_c00165{bottom:722.987067pt;}
.yd_c00165{bottom:761.547067pt;}
.yc_c00165{bottom:792.187067pt;}
.yb_c00165{bottom:822.747067pt;}
.ya_c00165{bottom:853.387067pt;}
.y9_c00165{bottom:883.947067pt;}
.y8_c00165{bottom:922.587067pt;}
.y7_c00165{bottom:953.147067pt;}
.y6_c00165{bottom:983.787067pt;}
.y5_c00165{bottom:1014.347067pt;}
.y2_c00165{bottom:1043.387067pt;}
.y1_c00165{bottom:1063.867067pt;}
.h2_c00165{height:42.656250pt;}
.h6_c00165{height:44.388750pt;}
.h1_c00165{height:44.724687pt;}
.h3_c00165{height:50.062500pt;}
.h5_c00165{height:53.562500pt;}
.h4_c00165{height:57.894063pt;}
.h0_c00165{height:1122.666667pt;}
.w1_c00165{width:793.333333pt;}
.w0_c00165{width:793.626667pt;}
.x0_c00165{left:0.000000pt;}
.x2_c00165{left:113.440000pt;}
.x1_c00165{left:129.280000pt;}
.x6_c00165{left:137.443840pt;}
.x5_c00165{left:160.720000pt;}
.x4_c00165{left:386.880000pt;}
.x3_c00165{left:396.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_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_60eed6fc5995123e742ec6ed.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.100098;font-style:normal;font-weight:normal;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_f8837a1d7a02ce6054305a4a.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;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_c00166;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00166;src:url('chunks/assets/font_16afb4145f0aeda542d646a6.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00166;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00166{font-family:ff5_c00166;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_c00166;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff6_c00166{font-family:ff6_c00166;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_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;}
.v1_c00166{vertical-align:15.840000px;}
.v2_c00166{vertical-align:29.880000px;}
.lsf_c00166{letter-spacing:-0.151200px;}
.ls12_c00166{letter-spacing:-0.031248px;}
.ls14_c00166{letter-spacing:-0.028800px;}
.ls13_c00166{letter-spacing:-0.021600px;}
.ls11_c00166{letter-spacing:-0.015624px;}
.ls10_c00166{letter-spacing:-0.014400px;}
.ls16_c00166{letter-spacing:-0.007200px;}
.ls18_c00166{letter-spacing:-0.003888px;}
.lse_c00166{letter-spacing:0.000000px;}
.ls7_c00166{letter-spacing:0.007200px;}
.lsb_c00166{letter-spacing:0.014364px;}
.ls2_c00166{letter-spacing:0.014400px;}
.ls8_c00166{letter-spacing:0.021600px;}
.ls9_c00166{letter-spacing:0.028800px;}
.lsa_c00166{letter-spacing:0.033516px;}
.ls17_c00166{letter-spacing:0.036000px;}
.lsd_c00166{letter-spacing:0.043092px;}
.ls0_c00166{letter-spacing:0.048096px;}
.ls4_c00166{letter-spacing:0.054756px;}
.ls15_c00166{letter-spacing:0.093600px;}
.lsc_c00166{letter-spacing:0.104040px;}
.ls5_c00166{letter-spacing:0.144000px;}
.ls19_c00166{letter-spacing:0.357696px;}
.ls3_c00166{letter-spacing:29.373120px;}
.ls6_c00166{letter-spacing:65.304000px;}
.ls1_c00166{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00166{word-spacing:-19.514376px;}
.ws2_c00166{word-spacing:-11.166336px;}
.ws1_c00166{word-spacing:-10.584756px;}
.ws23_c00166{word-spacing:-0.093600px;}
.wsd_c00166{word-spacing:-0.086400px;}
.ws8_c00166{word-spacing:-0.062496px;}
.ws2a_c00166{word-spacing:-0.023940px;}
.ws28_c00166{word-spacing:-0.014364px;}
.ws4_c00166{word-spacing:0.000000px;}
.ws29_c00166{word-spacing:0.004788px;}
.ws18_c00166{word-spacing:0.007200px;}
.ws22_c00166{word-spacing:0.014400px;}
.ws2b_c00166{word-spacing:0.019152px;}
.wsc_c00166{word-spacing:0.028800px;}
.ws3_c00166{word-spacing:0.042084px;}
.wsf_c00166{word-spacing:0.108000px;}
.ws24_c00166{word-spacing:0.741600px;}
.ws16_c00166{word-spacing:1.065600px;}
.ws17_c00166{word-spacing:1.116000px;}
.ws5_c00166{word-spacing:2.433600px;}
.ws6_c00166{word-spacing:2.534400px;}
.ws25_c00166{word-spacing:3.945600px;}
.ws26_c00166{word-spacing:3.974400px;}
.ws13_c00166{word-spacing:5.400000px;}
.ws14_c00166{word-spacing:5.450400px;}
.ws21_c00166{word-spacing:7.257600px;}
.ws20_c00166{word-spacing:7.272000px;}
.ws15_c00166{word-spacing:7.948800px;}
.ws9_c00166{word-spacing:9.014400px;}
.wsb_c00166{word-spacing:10.144800px;}
.wsa_c00166{word-spacing:10.159200px;}
.ws1e_c00166{word-spacing:11.858400px;}
.ws1f_c00166{word-spacing:11.923200px;}
.ws1a_c00166{word-spacing:12.916800px;}
.ws1b_c00166{word-spacing:13.068000px;}
.ws19_c00166{word-spacing:14.054400px;}
.ws7_c00166{word-spacing:16.560000px;}
.ws10_c00166{word-spacing:18.770400px;}
.ws11_c00166{word-spacing:18.784800px;}
.wse_c00166{word-spacing:19.123200px;}
.ws12_c00166{word-spacing:19.778400px;}
.ws1c_c00166{word-spacing:20.858400px;}
.ws1d_c00166{word-spacing:20.887200px;}
.ws27_c00166{word-spacing:22.687200px;}
._0_c00166{margin-left:-1.322640px;}
._1_c00166{width:1.008000px;}
.fc0_c00166{color:rgb(0,0,0);}
.fs6_c00166{font-size:38.880000px;}
.fs4_c00166{font-size:42.120000px;}
.fs5_c00166{font-size:47.880000px;}
.fs1_c00166{font-size:54.000000px;}
.fs0_c00166{font-size:60.120000px;}
.fs2_c00166{font-size:72.000000px;}
.fs3_c00166{font-size:78.120000px;}
.y0_c00166{bottom:0.000000px;}
.y3_c00166{bottom:57.450450px;}
.y22_c00166{bottom:113.698470px;}
.y21_c00166{bottom:132.064230px;}
.y20_c00166{bottom:150.330450px;}
.y1f_c00166{bottom:165.540450px;}
.y1e_c00166{bottom:186.240450px;}
.y1d_c00166{bottom:206.940450px;}
.y1c_c00166{bottom:240.060450px;}
.y1b_c00166{bottom:274.530450px;}
.y1a_c00166{bottom:308.910450px;}
.y19_c00166{bottom:352.380450px;}
.y18_c00166{bottom:386.760450px;}
.y17_c00166{bottom:421.230450px;}
.y16_c00166{bottom:455.610450px;}
.y15_c00166{bottom:490.080450px;}
.y14_c00166{bottom:524.460450px;}
.y13_c00166{bottom:558.930450px;}
.y12_c00166{bottom:602.310450px;}
.y11_c00166{bottom:636.780450px;}
.y10_c00166{bottom:671.160450px;}
.yf_c00166{bottom:705.630450px;}
.ye_c00166{bottom:740.010450px;}
.yd_c00166{bottom:774.480450px;}
.yc_c00166{bottom:817.860450px;}
.yb_c00166{bottom:852.330450px;}
.ya_c00166{bottom:895.710450px;}
.y9_c00166{bottom:930.180450px;}
.y8_c00166{bottom:964.560450px;}
.y7_c00166{bottom:1009.650450px;}
.y6_c00166{bottom:1072.290450px;}
.y5_c00166{bottom:1106.760450px;}
.y4_c00166{bottom:1141.140450px;}
.y2_c00166{bottom:1177.860450px;}
.y1_c00166{bottom:1196.850450px;}
.h8_c00166{height:47.988281px;}
.h9_c00166{height:49.937344px;}
.ha_c00166{height:49.945264px;}
.h1_c00166{height:50.315273px;}
.h2_c00166{height:56.320312px;}
.h4_c00166{height:60.257812px;}
.h6_c00166{height:65.130820px;}
.h3_c00166{height:72.160312px;}
.h7_c00166{height:75.093750px;}
.h5_c00166{height:81.476719px;}
.h0_c00166{height:1263.000000px;}
.w1_c00166{width:892.500000px;}
.w0_c00166{width:892.830000px;}
.x0_c00166{left:0.000000px;}
.x1_c00166{left:127.620000px;}
.x3_c00166{left:154.620000px;}
.x2_c00166{left:180.810000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.v1_c00166{vertical-align:14.080000pt;}
.v2_c00166{vertical-align:26.560000pt;}
.lsf_c00166{letter-spacing:-0.134400pt;}
.ls12_c00166{letter-spacing:-0.027776pt;}
.ls14_c00166{letter-spacing:-0.025600pt;}
.ls13_c00166{letter-spacing:-0.019200pt;}
.ls11_c00166{letter-spacing:-0.013888pt;}
.ls10_c00166{letter-spacing:-0.012800pt;}
.ls16_c00166{letter-spacing:-0.006400pt;}
.ls18_c00166{letter-spacing:-0.003456pt;}
.lse_c00166{letter-spacing:0.000000pt;}
.ls7_c00166{letter-spacing:0.006400pt;}
.lsb_c00166{letter-spacing:0.012768pt;}
.ls2_c00166{letter-spacing:0.012800pt;}
.ls8_c00166{letter-spacing:0.019200pt;}
.ls9_c00166{letter-spacing:0.025600pt;}
.lsa_c00166{letter-spacing:0.029792pt;}
.ls17_c00166{letter-spacing:0.032000pt;}
.lsd_c00166{letter-spacing:0.038304pt;}
.ls0_c00166{letter-spacing:0.042752pt;}
.ls4_c00166{letter-spacing:0.048672pt;}
.ls15_c00166{letter-spacing:0.083200pt;}
.lsc_c00166{letter-spacing:0.092480pt;}
.ls5_c00166{letter-spacing:0.128000pt;}
.ls19_c00166{letter-spacing:0.317952pt;}
.ls3_c00166{letter-spacing:26.109440pt;}
.ls6_c00166{letter-spacing:58.048000pt;}
.ls1_c00166{letter-spacing:1077.440000pt;}
.ws0_c00166{word-spacing:-17.346112pt;}
.ws2_c00166{word-spacing:-9.925632pt;}
.ws1_c00166{word-spacing:-9.408672pt;}
.ws23_c00166{word-spacing:-0.083200pt;}
.wsd_c00166{word-spacing:-0.076800pt;}
.ws8_c00166{word-spacing:-0.055552pt;}
.ws2a_c00166{word-spacing:-0.021280pt;}
.ws28_c00166{word-spacing:-0.012768pt;}
.ws4_c00166{word-spacing:0.000000pt;}
.ws29_c00166{word-spacing:0.004256pt;}
.ws18_c00166{word-spacing:0.006400pt;}
.ws22_c00166{word-spacing:0.012800pt;}
.ws2b_c00166{word-spacing:0.017024pt;}
.wsc_c00166{word-spacing:0.025600pt;}
.ws3_c00166{word-spacing:0.037408pt;}
.wsf_c00166{word-spacing:0.096000pt;}
.ws24_c00166{word-spacing:0.659200pt;}
.ws16_c00166{word-spacing:0.947200pt;}
.ws17_c00166{word-spacing:0.992000pt;}
.ws5_c00166{word-spacing:2.163200pt;}
.ws6_c00166{word-spacing:2.252800pt;}
.ws25_c00166{word-spacing:3.507200pt;}
.ws26_c00166{word-spacing:3.532800pt;}
.ws13_c00166{word-spacing:4.800000pt;}
.ws14_c00166{word-spacing:4.844800pt;}
.ws21_c00166{word-spacing:6.451200pt;}
.ws20_c00166{word-spacing:6.464000pt;}
.ws15_c00166{word-spacing:7.065600pt;}
.ws9_c00166{word-spacing:8.012800pt;}
.wsb_c00166{word-spacing:9.017600pt;}
.wsa_c00166{word-spacing:9.030400pt;}
.ws1e_c00166{word-spacing:10.540800pt;}
.ws1f_c00166{word-spacing:10.598400pt;}
.ws1a_c00166{word-spacing:11.481600pt;}
.ws1b_c00166{word-spacing:11.616000pt;}
.ws19_c00166{word-spacing:12.492800pt;}
.ws7_c00166{word-spacing:14.720000pt;}
.ws10_c00166{word-spacing:16.684800pt;}
.ws11_c00166{word-spacing:16.697600pt;}
.wse_c00166{word-spacing:16.998400pt;}
.ws12_c00166{word-spacing:17.580800pt;}
.ws1c_c00166{word-spacing:18.540800pt;}
.ws1d_c00166{word-spacing:18.566400pt;}
.ws27_c00166{word-spacing:20.166400pt;}
._0_c00166{margin-left:-1.175680pt;}
._1_c00166{width:0.896000pt;}
.fs6_c00166{font-size:34.560000pt;}
.fs4_c00166{font-size:37.440000pt;}
.fs5_c00166{font-size:42.560000pt;}
.fs1_c00166{font-size:48.000000pt;}
.fs0_c00166{font-size:53.440000pt;}
.fs2_c00166{font-size:64.000000pt;}
.fs3_c00166{font-size:69.440000pt;}
.y0_c00166{bottom:0.000000pt;}
.y3_c00166{bottom:51.067067pt;}
.y22_c00166{bottom:101.065307pt;}
.y21_c00166{bottom:117.390427pt;}
.y20_c00166{bottom:133.627067pt;}
.y1f_c00166{bottom:147.147067pt;}
.y1e_c00166{bottom:165.547067pt;}
.y1d_c00166{bottom:183.947067pt;}
.y1c_c00166{bottom:213.387067pt;}
.y1b_c00166{bottom:244.027067pt;}
.y1a_c00166{bottom:274.587067pt;}
.y19_c00166{bottom:313.227067pt;}
.y18_c00166{bottom:343.787067pt;}
.y17_c00166{bottom:374.427067pt;}
.y16_c00166{bottom:404.987067pt;}
.y15_c00166{bottom:435.627067pt;}
.y14_c00166{bottom:466.187067pt;}
.y13_c00166{bottom:496.827067pt;}
.y12_c00166{bottom:535.387067pt;}
.y11_c00166{bottom:566.027067pt;}
.y10_c00166{bottom:596.587067pt;}
.yf_c00166{bottom:627.227067pt;}
.ye_c00166{bottom:657.787067pt;}
.yd_c00166{bottom:688.427067pt;}
.yc_c00166{bottom:726.987067pt;}
.yb_c00166{bottom:757.627067pt;}
.ya_c00166{bottom:796.187067pt;}
.y9_c00166{bottom:826.827067pt;}
.y8_c00166{bottom:857.387067pt;}
.y7_c00166{bottom:897.467067pt;}
.y6_c00166{bottom:953.147067pt;}
.y5_c00166{bottom:983.787067pt;}
.y4_c00166{bottom:1014.347067pt;}
.y2_c00166{bottom:1046.987067pt;}
.y1_c00166{bottom:1063.867067pt;}
.h8_c00166{height:42.656250pt;}
.h9_c00166{height:44.388750pt;}
.ha_c00166{height:44.395790pt;}
.h1_c00166{height:44.724687pt;}
.h2_c00166{height:50.062500pt;}
.h4_c00166{height:53.562500pt;}
.h6_c00166{height:57.894063pt;}
.h3_c00166{height:64.142500pt;}
.h7_c00166{height:66.750000pt;}
.h5_c00166{height:72.423750pt;}
.h0_c00166{height:1122.666667pt;}
.w1_c00166{width:793.333333pt;}
.w0_c00166{width:793.626667pt;}
.x0_c00166{left:0.000000pt;}
.x1_c00166{left:113.440000pt;}
.x3_c00166{left:137.440000pt;}
.x2_c00166{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_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_57d18bed4d33a16e2f6fc291.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00167;src:url('chunks/assets/font_7dde3b5c89c37b0f4b871e6b.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00167;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;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_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;}
.v1_c00167{vertical-align:29.880000px;}
.lse_c00167{letter-spacing:-0.151200px;}
.lsc_c00167{letter-spacing:-0.048096px;}
.ls14_c00167{letter-spacing:-0.036000px;}
.ls16_c00167{letter-spacing:-0.028800px;}
.lsf_c00167{letter-spacing:-0.021600px;}
.lsb_c00167{letter-spacing:-0.018036px;}
.ls10_c00167{letter-spacing:-0.014400px;}
.ls13_c00167{letter-spacing:-0.007200px;}
.ls17_c00167{letter-spacing:-0.003888px;}
.lsd_c00167{letter-spacing:0.000000px;}
.ls6_c00167{letter-spacing:0.007200px;}
.ls8_c00167{letter-spacing:0.014364px;}
.ls1_c00167{letter-spacing:0.014400px;}
.ls12_c00167{letter-spacing:0.021600px;}
.ls11_c00167{letter-spacing:0.028800px;}
.ls7_c00167{letter-spacing:0.036000px;}
.ls0_c00167{letter-spacing:0.036072px;}
.lsa_c00167{letter-spacing:0.043092px;}
.ls2_c00167{letter-spacing:0.054756px;}
.ls3_c00167{letter-spacing:0.072000px;}
.ls15_c00167{letter-spacing:0.093600px;}
.ls9_c00167{letter-spacing:0.104040px;}
.ls4_c00167{letter-spacing:0.144000px;}
.ls18_c00167{letter-spacing:0.357696px;}
.ls5_c00167{letter-spacing:65.304000px;}
.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;}
}
.ws2_c00167{word-spacing:-18.036000px;}
.ws1_c00167{word-spacing:-17.985600px;}
.ws3_c00167{word-spacing:-11.166336px;}
.ws0_c00167{word-spacing:-10.584756px;}
.ws15_c00167{word-spacing:-0.086400px;}
.ws27_c00167{word-spacing:-0.023940px;}
.ws14_c00167{word-spacing:-0.007200px;}
.ws7_c00167{word-spacing:0.000000px;}
.ws26_c00167{word-spacing:0.004788px;}
.ws18_c00167{word-spacing:0.007200px;}
.ws28_c00167{word-spacing:0.019152px;}
.ws4_c00167{word-spacing:0.054108px;}
.ws17_c00167{word-spacing:0.079200px;}
.ws5_c00167{word-spacing:0.108216px;}
.ws6_c00167{word-spacing:0.138276px;}
.wsd_c00167{word-spacing:0.324000px;}
.wsc_c00167{word-spacing:0.360000px;}
.ws1e_c00167{word-spacing:1.735200px;}
.ws1f_c00167{word-spacing:1.785600px;}
.ws12_c00167{word-spacing:1.807200px;}
.ws1c_c00167{word-spacing:4.284000px;}
.ws1d_c00167{word-spacing:4.456800px;}
.ws25_c00167{word-spacing:5.760000px;}
.ws24_c00167{word-spacing:5.774400px;}
.ws11_c00167{word-spacing:6.156000px;}
.ws19_c00167{word-spacing:6.818400px;}
.ws13_c00167{word-spacing:7.221600px;}
.ws20_c00167{word-spacing:9.669600px;}
.ws21_c00167{word-spacing:9.734400px;}
.wsf_c00167{word-spacing:10.058400px;}
.wse_c00167{word-spacing:10.123200px;}
.ws16_c00167{word-spacing:10.425600px;}
.wsb_c00167{word-spacing:10.771200px;}
.wsa_c00167{word-spacing:10.785600px;}
.ws8_c00167{word-spacing:10.821600px;}
.ws9_c00167{word-spacing:11.944800px;}
.ws1b_c00167{word-spacing:16.221600px;}
.ws1a_c00167{word-spacing:16.250400px;}
.ws23_c00167{word-spacing:16.920000px;}
.ws22_c00167{word-spacing:16.977600px;}
.ws10_c00167{word-spacing:18.756000px;}
._0_c00167{margin-left:-1.142280px;}
._1_c00167{width:1.080000px;}
.fc0_c00167{color:rgb(0,0,0);}
.fs5_c00167{font-size:38.880000px;}
.fs3_c00167{font-size:42.120000px;}
.fs4_c00167{font-size:47.880000px;}
.fs2_c00167{font-size:54.000000px;}
.fs0_c00167{font-size:60.120000px;}
.fs1_c00167{font-size:72.000000px;}
.y0_c00167{bottom:0.000000px;}
.y3_c00167{bottom:57.450450px;}
.y4_c00167{bottom:61.410450px;}
.y23_c00167{bottom:113.698470px;}
.y22_c00167{bottom:132.064230px;}
.y21_c00167{bottom:150.334230px;}
.y20_c00167{bottom:168.598620px;}
.y1f_c00167{bottom:186.964230px;}
.y1e_c00167{bottom:205.230450px;}
.y1d_c00167{bottom:220.440450px;}
.y1c_c00167{bottom:241.140450px;}
.y1b_c00167{bottom:261.840600px;}
.y1a_c00167{bottom:373.260600px;}
.y19_c00167{bottom:407.640600px;}
.y18_c00167{bottom:451.110450px;}
.y17_c00167{bottom:485.490450px;}
.y16_c00167{bottom:519.960450px;}
.y15_c00167{bottom:563.340450px;}
.y14_c00167{bottom:597.810450px;}
.y13_c00167{bottom:632.190450px;}
.y12_c00167{bottom:666.660450px;}
.y11_c00167{bottom:710.040450px;}
.y10_c00167{bottom:744.510450px;}
.yf_c00167{bottom:787.890450px;}
.ye_c00167{bottom:822.360450px;}
.yd_c00167{bottom:856.740450px;}
.yc_c00167{bottom:891.210450px;}
.yb_c00167{bottom:925.590450px;}
.ya_c00167{bottom:960.060450px;}
.y9_c00167{bottom:994.440450px;}
.y8_c00167{bottom:1037.910450px;}
.y7_c00167{bottom:1072.290450px;}
.y6_c00167{bottom:1106.760450px;}
.y5_c00167{bottom:1141.140450px;}
.y2_c00167{bottom:1173.810450px;}
.y1_c00167{bottom:1196.850450px;}
.h2_c00167{height:47.988281px;}
.h8_c00167{height:49.937344px;}
.h9_c00167{height:49.944664px;}
.ha_c00167{height:49.945264px;}
.h1_c00167{height:50.315273px;}
.h3_c00167{height:56.320312px;}
.h4_c00167{height:60.257812px;}
.h5_c00167{height:65.130820px;}
.h7_c00167{height:65.131420px;}
.h6_c00167{height:75.093750px;}
.h0_c00167{height:1263.000000px;}
.w1_c00167{width:892.500000px;}
.w0_c00167{width:892.830000px;}
.x0_c00167{left:0.000000px;}
.x2_c00167{left:127.620000px;}
.x1_c00167{left:145.440000px;}
.x6_c00167{left:154.620000px;}
.x5_c00167{left:181.620000px;}
.x8_c00167{left:208.620000px;}
.x7_c00167{left:222.120000px;}
.x4_c00167{left:435.240000px;}
.x3_c00167{left:446.490000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.v1_c00167{vertical-align:26.560000pt;}
.lse_c00167{letter-spacing:-0.134400pt;}
.lsc_c00167{letter-spacing:-0.042752pt;}
.ls14_c00167{letter-spacing:-0.032000pt;}
.ls16_c00167{letter-spacing:-0.025600pt;}
.lsf_c00167{letter-spacing:-0.019200pt;}
.lsb_c00167{letter-spacing:-0.016032pt;}
.ls10_c00167{letter-spacing:-0.012800pt;}
.ls13_c00167{letter-spacing:-0.006400pt;}
.ls17_c00167{letter-spacing:-0.003456pt;}
.lsd_c00167{letter-spacing:0.000000pt;}
.ls6_c00167{letter-spacing:0.006400pt;}
.ls8_c00167{letter-spacing:0.012768pt;}
.ls1_c00167{letter-spacing:0.012800pt;}
.ls12_c00167{letter-spacing:0.019200pt;}
.ls11_c00167{letter-spacing:0.025600pt;}
.ls7_c00167{letter-spacing:0.032000pt;}
.ls0_c00167{letter-spacing:0.032064pt;}
.lsa_c00167{letter-spacing:0.038304pt;}
.ls2_c00167{letter-spacing:0.048672pt;}
.ls3_c00167{letter-spacing:0.064000pt;}
.ls15_c00167{letter-spacing:0.083200pt;}
.ls9_c00167{letter-spacing:0.092480pt;}
.ls4_c00167{letter-spacing:0.128000pt;}
.ls18_c00167{letter-spacing:0.317952pt;}
.ls5_c00167{letter-spacing:58.048000pt;}
.ws2_c00167{word-spacing:-16.032000pt;}
.ws1_c00167{word-spacing:-15.987200pt;}
.ws3_c00167{word-spacing:-9.925632pt;}
.ws0_c00167{word-spacing:-9.408672pt;}
.ws15_c00167{word-spacing:-0.076800pt;}
.ws27_c00167{word-spacing:-0.021280pt;}
.ws14_c00167{word-spacing:-0.006400pt;}
.ws7_c00167{word-spacing:0.000000pt;}
.ws26_c00167{word-spacing:0.004256pt;}
.ws18_c00167{word-spacing:0.006400pt;}
.ws28_c00167{word-spacing:0.017024pt;}
.ws4_c00167{word-spacing:0.048096pt;}
.ws17_c00167{word-spacing:0.070400pt;}
.ws5_c00167{word-spacing:0.096192pt;}
.ws6_c00167{word-spacing:0.122912pt;}
.wsd_c00167{word-spacing:0.288000pt;}
.wsc_c00167{word-spacing:0.320000pt;}
.ws1e_c00167{word-spacing:1.542400pt;}
.ws1f_c00167{word-spacing:1.587200pt;}
.ws12_c00167{word-spacing:1.606400pt;}
.ws1c_c00167{word-spacing:3.808000pt;}
.ws1d_c00167{word-spacing:3.961600pt;}
.ws25_c00167{word-spacing:5.120000pt;}
.ws24_c00167{word-spacing:5.132800pt;}
.ws11_c00167{word-spacing:5.472000pt;}
.ws19_c00167{word-spacing:6.060800pt;}
.ws13_c00167{word-spacing:6.419200pt;}
.ws20_c00167{word-spacing:8.595200pt;}
.ws21_c00167{word-spacing:8.652800pt;}
.wsf_c00167{word-spacing:8.940800pt;}
.wse_c00167{word-spacing:8.998400pt;}
.ws16_c00167{word-spacing:9.267200pt;}
.wsb_c00167{word-spacing:9.574400pt;}
.wsa_c00167{word-spacing:9.587200pt;}
.ws8_c00167{word-spacing:9.619200pt;}
.ws9_c00167{word-spacing:10.617600pt;}
.ws1b_c00167{word-spacing:14.419200pt;}
.ws1a_c00167{word-spacing:14.444800pt;}
.ws23_c00167{word-spacing:15.040000pt;}
.ws22_c00167{word-spacing:15.091200pt;}
.ws10_c00167{word-spacing:16.672000pt;}
._0_c00167{margin-left:-1.015360pt;}
._1_c00167{width:0.960000pt;}
.fs5_c00167{font-size:34.560000pt;}
.fs3_c00167{font-size:37.440000pt;}
.fs4_c00167{font-size:42.560000pt;}
.fs2_c00167{font-size:48.000000pt;}
.fs0_c00167{font-size:53.440000pt;}
.fs1_c00167{font-size:64.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y3_c00167{bottom:51.067067pt;}
.y4_c00167{bottom:54.587067pt;}
.y23_c00167{bottom:101.065307pt;}
.y22_c00167{bottom:117.390427pt;}
.y21_c00167{bottom:133.630427pt;}
.y20_c00167{bottom:149.865440pt;}
.y1f_c00167{bottom:166.190427pt;}
.y1e_c00167{bottom:182.427067pt;}
.y1d_c00167{bottom:195.947067pt;}
.y1c_c00167{bottom:214.347067pt;}
.y1b_c00167{bottom:232.747200pt;}
.y1a_c00167{bottom:331.787200pt;}
.y19_c00167{bottom:362.347200pt;}
.y18_c00167{bottom:400.987067pt;}
.y17_c00167{bottom:431.547067pt;}
.y16_c00167{bottom:462.187067pt;}
.y15_c00167{bottom:500.747067pt;}
.y14_c00167{bottom:531.387067pt;}
.y13_c00167{bottom:561.947067pt;}
.y12_c00167{bottom:592.587067pt;}
.y11_c00167{bottom:631.147067pt;}
.y10_c00167{bottom:661.787067pt;}
.yf_c00167{bottom:700.347067pt;}
.ye_c00167{bottom:730.987067pt;}
.yd_c00167{bottom:761.547067pt;}
.yc_c00167{bottom:792.187067pt;}
.yb_c00167{bottom:822.747067pt;}
.ya_c00167{bottom:853.387067pt;}
.y9_c00167{bottom:883.947067pt;}
.y8_c00167{bottom:922.587067pt;}
.y7_c00167{bottom:953.147067pt;}
.y6_c00167{bottom:983.787067pt;}
.y5_c00167{bottom:1014.347067pt;}
.y2_c00167{bottom:1043.387067pt;}
.y1_c00167{bottom:1063.867067pt;}
.h2_c00167{height:42.656250pt;}
.h8_c00167{height:44.388750pt;}
.h9_c00167{height:44.395257pt;}
.ha_c00167{height:44.395790pt;}
.h1_c00167{height:44.724687pt;}
.h3_c00167{height:50.062500pt;}
.h4_c00167{height:53.562500pt;}
.h5_c00167{height:57.894063pt;}
.h7_c00167{height:57.894596pt;}
.h6_c00167{height:66.750000pt;}
.h0_c00167{height:1122.666667pt;}
.w1_c00167{width:793.333333pt;}
.w0_c00167{width:793.626667pt;}
.x0_c00167{left:0.000000pt;}
.x2_c00167{left:113.440000pt;}
.x1_c00167{left:129.280000pt;}
.x6_c00167{left:137.440000pt;}
.x5_c00167{left:161.440000pt;}
.x8_c00167{left:185.440000pt;}
.x7_c00167{left:197.440000pt;}
.x4_c00167{left:386.880000pt;}
.x3_c00167{left:396.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_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_c636a2d8fdeb8e22611b7f56.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.100098;font-style:normal;font-weight:normal;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_1f1f5a0d0d0f685a2d09f689.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;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_c00168;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00168;src:url('chunks/assets/font_71a56050b80149d05a80258c.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00168;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00168{font-family:ff5_c00168;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_c00168;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff6_c00168{font-family:ff6_c00168;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_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;}
.v1_c00168{vertical-align:15.840000px;}
.v2_c00168{vertical-align:29.880000px;}
.ls10_c00168{letter-spacing:-0.151200px;}
.ls17_c00168{letter-spacing:-0.036000px;}
.ls13_c00168{letter-spacing:-0.028800px;}
.ls16_c00168{letter-spacing:-0.023436px;}
.ls15_c00168{letter-spacing:-0.021600px;}
.ls14_c00168{letter-spacing:-0.014400px;}
.ls11_c00168{letter-spacing:-0.007200px;}
.ls1a_c00168{letter-spacing:-0.004788px;}
.ls18_c00168{letter-spacing:-0.003888px;}
.lsf_c00168{letter-spacing:0.000000px;}
.ls8_c00168{letter-spacing:0.007200px;}
.ls9_c00168{letter-spacing:0.007812px;}
.lsb_c00168{letter-spacing:0.014364px;}
.ls7_c00168{letter-spacing:0.014400px;}
.ls2_c00168{letter-spacing:0.021600px;}
.lse_c00168{letter-spacing:0.033516px;}
.lsd_c00168{letter-spacing:0.043092px;}
.ls0_c00168{letter-spacing:0.048096px;}
.ls3_c00168{letter-spacing:0.050400px;}
.ls4_c00168{letter-spacing:0.054756px;}
.ls12_c00168{letter-spacing:0.093600px;}
.lsc_c00168{letter-spacing:0.104040px;}
.ls5_c00168{letter-spacing:0.144000px;}
.ls19_c00168{letter-spacing:0.357696px;}
.lsa_c00168{letter-spacing:23.670360px;}
.ls6_c00168{letter-spacing:65.304000px;}
.ls1_c00168{letter-spacing:1212.120000px;}
.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:-19.537812px;}
.ws1_c00168{word-spacing:-18.007200px;}
.ws3_c00168{word-spacing:-11.166336px;}
.ws0_c00168{word-spacing:-10.584756px;}
.ws19_c00168{word-spacing:-0.070308px;}
.ws27_c00168{word-spacing:-0.023940px;}
.wsb_c00168{word-spacing:-0.021600px;}
.ws2a_c00168{word-spacing:-0.014364px;}
.ws5_c00168{word-spacing:0.000000px;}
.ws26_c00168{word-spacing:0.004788px;}
.ws8_c00168{word-spacing:0.007200px;}
.wse_c00168{word-spacing:0.014400px;}
.ws29_c00168{word-spacing:0.019152px;}
.ws1c_c00168{word-spacing:0.021600px;}
.ws28_c00168{word-spacing:0.023940px;}
.ws4_c00168{word-spacing:0.042084px;}
.wsc_c00168{word-spacing:0.086400px;}
.ws1d_c00168{word-spacing:0.352800px;}
.ws1e_c00168{word-spacing:0.381600px;}
.ws1a_c00168{word-spacing:1.886400px;}
.ws1b_c00168{word-spacing:1.929600px;}
.ws11_c00168{word-spacing:2.116800px;}
.ws12_c00168{word-spacing:2.174400px;}
.ws10_c00168{word-spacing:2.865600px;}
.wsf_c00168{word-spacing:2.887200px;}
.ws21_c00168{word-spacing:2.894400px;}
.ws20_c00168{word-spacing:4.701600px;}
.ws17_c00168{word-spacing:4.708800px;}
.ws1f_c00168{word-spacing:4.788000px;}
.wsd_c00168{word-spacing:5.472000px;}
.ws15_c00168{word-spacing:6.537600px;}
.ws16_c00168{word-spacing:6.580800px;}
.wsa_c00168{word-spacing:7.920000px;}
.ws9_c00168{word-spacing:7.948800px;}
.ws25_c00168{word-spacing:8.676000px;}
.ws24_c00168{word-spacing:12.981600px;}
.ws22_c00168{word-spacing:14.068800px;}
.ws14_c00168{word-spacing:16.912800px;}
.ws13_c00168{word-spacing:17.056800px;}
.ws18_c00168{word-spacing:19.101600px;}
.ws7_c00168{word-spacing:21.240000px;}
.ws6_c00168{word-spacing:21.276000px;}
.ws23_c00168{word-spacing:25.941600px;}
._0_c00168{margin-left:-1.322640px;}
._1_c00168{width:1.051200px;}
.fc0_c00168{color:rgb(0,0,0);}
.fs6_c00168{font-size:38.880000px;}
.fs3_c00168{font-size:42.120000px;}
.fs5_c00168{font-size:47.880000px;}
.fs1_c00168{font-size:54.000000px;}
.fs0_c00168{font-size:60.120000px;}
.fs2_c00168{font-size:72.000000px;}
.fs4_c00168{font-size:78.120000px;}
.y0_c00168{bottom:0.000000px;}
.y3_c00168{bottom:57.450450px;}
.y22_c00168{bottom:113.698470px;}
.y21_c00168{bottom:132.064230px;}
.y20_c00168{bottom:150.334230px;}
.y1f_c00168{bottom:168.598620px;}
.y1e_c00168{bottom:186.960600px;}
.y1d_c00168{bottom:202.170450px;}
.y1c_c00168{bottom:222.870450px;}
.y1b_c00168{bottom:243.570450px;}
.y1a_c00168{bottom:317.910450px;}
.y19_c00168{bottom:352.380450px;}
.y18_c00168{bottom:386.760450px;}
.y17_c00168{bottom:421.230450px;}
.y16_c00168{bottom:455.610450px;}
.y15_c00168{bottom:490.080450px;}
.y14_c00168{bottom:524.460450px;}
.y13_c00168{bottom:567.930450px;}
.y12_c00168{bottom:602.310450px;}
.y11_c00168{bottom:647.400450px;}
.y10_c00168{bottom:710.040450px;}
.yf_c00168{bottom:744.510450px;}
.ye_c00168{bottom:778.890450px;}
.yd_c00168{bottom:813.360450px;}
.yc_c00168{bottom:847.740450px;}
.yb_c00168{bottom:882.210450px;}
.ya_c00168{bottom:916.590450px;}
.y9_c00168{bottom:960.060450px;}
.y8_c00168{bottom:994.440450px;}
.y7_c00168{bottom:1028.910450px;}
.y6_c00168{bottom:1063.290450px;}
.y5_c00168{bottom:1106.760450px;}
.y4_c00168{bottom:1141.140450px;}
.y2_c00168{bottom:1177.860450px;}
.y1_c00168{bottom:1196.850450px;}
.h8_c00168{height:47.988281px;}
.h9_c00168{height:49.937344px;}
.ha_c00168{height:49.944664px;}
.h1_c00168{height:50.315273px;}
.h2_c00168{height:56.320312px;}
.h4_c00168{height:60.257812px;}
.h5_c00168{height:65.130820px;}
.h3_c00168{height:72.160312px;}
.h6_c00168{height:75.093750px;}
.h7_c00168{height:81.476719px;}
.h0_c00168{height:1263.000000px;}
.w1_c00168{width:892.500000px;}
.w0_c00168{width:892.830000px;}
.x0_c00168{left:0.000000px;}
.x1_c00168{left:127.620000px;}
.x4_c00168{left:154.620000px;}
.x2_c00168{left:180.810000px;}
.x3_c00168{left:208.620000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.v1_c00168{vertical-align:14.080000pt;}
.v2_c00168{vertical-align:26.560000pt;}
.ls10_c00168{letter-spacing:-0.134400pt;}
.ls17_c00168{letter-spacing:-0.032000pt;}
.ls13_c00168{letter-spacing:-0.025600pt;}
.ls16_c00168{letter-spacing:-0.020832pt;}
.ls15_c00168{letter-spacing:-0.019200pt;}
.ls14_c00168{letter-spacing:-0.012800pt;}
.ls11_c00168{letter-spacing:-0.006400pt;}
.ls1a_c00168{letter-spacing:-0.004256pt;}
.ls18_c00168{letter-spacing:-0.003456pt;}
.lsf_c00168{letter-spacing:0.000000pt;}
.ls8_c00168{letter-spacing:0.006400pt;}
.ls9_c00168{letter-spacing:0.006944pt;}
.lsb_c00168{letter-spacing:0.012768pt;}
.ls7_c00168{letter-spacing:0.012800pt;}
.ls2_c00168{letter-spacing:0.019200pt;}
.lse_c00168{letter-spacing:0.029792pt;}
.lsd_c00168{letter-spacing:0.038304pt;}
.ls0_c00168{letter-spacing:0.042752pt;}
.ls3_c00168{letter-spacing:0.044800pt;}
.ls4_c00168{letter-spacing:0.048672pt;}
.ls12_c00168{letter-spacing:0.083200pt;}
.lsc_c00168{letter-spacing:0.092480pt;}
.ls5_c00168{letter-spacing:0.128000pt;}
.ls19_c00168{letter-spacing:0.317952pt;}
.lsa_c00168{letter-spacing:21.040320pt;}
.ls6_c00168{letter-spacing:58.048000pt;}
.ls1_c00168{letter-spacing:1077.440000pt;}
.ws2_c00168{word-spacing:-17.366944pt;}
.ws1_c00168{word-spacing:-16.006400pt;}
.ws3_c00168{word-spacing:-9.925632pt;}
.ws0_c00168{word-spacing:-9.408672pt;}
.ws19_c00168{word-spacing:-0.062496pt;}
.ws27_c00168{word-spacing:-0.021280pt;}
.wsb_c00168{word-spacing:-0.019200pt;}
.ws2a_c00168{word-spacing:-0.012768pt;}
.ws5_c00168{word-spacing:0.000000pt;}
.ws26_c00168{word-spacing:0.004256pt;}
.ws8_c00168{word-spacing:0.006400pt;}
.wse_c00168{word-spacing:0.012800pt;}
.ws29_c00168{word-spacing:0.017024pt;}
.ws1c_c00168{word-spacing:0.019200pt;}
.ws28_c00168{word-spacing:0.021280pt;}
.ws4_c00168{word-spacing:0.037408pt;}
.wsc_c00168{word-spacing:0.076800pt;}
.ws1d_c00168{word-spacing:0.313600pt;}
.ws1e_c00168{word-spacing:0.339200pt;}
.ws1a_c00168{word-spacing:1.676800pt;}
.ws1b_c00168{word-spacing:1.715200pt;}
.ws11_c00168{word-spacing:1.881600pt;}
.ws12_c00168{word-spacing:1.932800pt;}
.ws10_c00168{word-spacing:2.547200pt;}
.wsf_c00168{word-spacing:2.566400pt;}
.ws21_c00168{word-spacing:2.572800pt;}
.ws20_c00168{word-spacing:4.179200pt;}
.ws17_c00168{word-spacing:4.185600pt;}
.ws1f_c00168{word-spacing:4.256000pt;}
.wsd_c00168{word-spacing:4.864000pt;}
.ws15_c00168{word-spacing:5.811200pt;}
.ws16_c00168{word-spacing:5.849600pt;}
.wsa_c00168{word-spacing:7.040000pt;}
.ws9_c00168{word-spacing:7.065600pt;}
.ws25_c00168{word-spacing:7.712000pt;}
.ws24_c00168{word-spacing:11.539200pt;}
.ws22_c00168{word-spacing:12.505600pt;}
.ws14_c00168{word-spacing:15.033600pt;}
.ws13_c00168{word-spacing:15.161600pt;}
.ws18_c00168{word-spacing:16.979200pt;}
.ws7_c00168{word-spacing:18.880000pt;}
.ws6_c00168{word-spacing:18.912000pt;}
.ws23_c00168{word-spacing:23.059200pt;}
._0_c00168{margin-left:-1.175680pt;}
._1_c00168{width:0.934400pt;}
.fs6_c00168{font-size:34.560000pt;}
.fs3_c00168{font-size:37.440000pt;}
.fs5_c00168{font-size:42.560000pt;}
.fs1_c00168{font-size:48.000000pt;}
.fs0_c00168{font-size:53.440000pt;}
.fs2_c00168{font-size:64.000000pt;}
.fs4_c00168{font-size:69.440000pt;}
.y0_c00168{bottom:0.000000pt;}
.y3_c00168{bottom:51.067067pt;}
.y22_c00168{bottom:101.065307pt;}
.y21_c00168{bottom:117.390427pt;}
.y20_c00168{bottom:133.630427pt;}
.y1f_c00168{bottom:149.865440pt;}
.y1e_c00168{bottom:166.187200pt;}
.y1d_c00168{bottom:179.707067pt;}
.y1c_c00168{bottom:198.107067pt;}
.y1b_c00168{bottom:216.507067pt;}
.y1a_c00168{bottom:282.587067pt;}
.y19_c00168{bottom:313.227067pt;}
.y18_c00168{bottom:343.787067pt;}
.y17_c00168{bottom:374.427067pt;}
.y16_c00168{bottom:404.987067pt;}
.y15_c00168{bottom:435.627067pt;}
.y14_c00168{bottom:466.187067pt;}
.y13_c00168{bottom:504.827067pt;}
.y12_c00168{bottom:535.387067pt;}
.y11_c00168{bottom:575.467067pt;}
.y10_c00168{bottom:631.147067pt;}
.yf_c00168{bottom:661.787067pt;}
.ye_c00168{bottom:692.347067pt;}
.yd_c00168{bottom:722.987067pt;}
.yc_c00168{bottom:753.547067pt;}
.yb_c00168{bottom:784.187067pt;}
.ya_c00168{bottom:814.747067pt;}
.y9_c00168{bottom:853.387067pt;}
.y8_c00168{bottom:883.947067pt;}
.y7_c00168{bottom:914.587067pt;}
.y6_c00168{bottom:945.147067pt;}
.y5_c00168{bottom:983.787067pt;}
.y4_c00168{bottom:1014.347067pt;}
.y2_c00168{bottom:1046.987067pt;}
.y1_c00168{bottom:1063.867067pt;}
.h8_c00168{height:42.656250pt;}
.h9_c00168{height:44.388750pt;}
.ha_c00168{height:44.395257pt;}
.h1_c00168{height:44.724687pt;}
.h2_c00168{height:50.062500pt;}
.h4_c00168{height:53.562500pt;}
.h5_c00168{height:57.894063pt;}
.h3_c00168{height:64.142500pt;}
.h6_c00168{height:66.750000pt;}
.h7_c00168{height:72.423750pt;}
.h0_c00168{height:1122.666667pt;}
.w1_c00168{width:793.333333pt;}
.w0_c00168{width:793.626667pt;}
.x0_c00168{left:0.000000pt;}
.x1_c00168{left:113.440000pt;}
.x4_c00168{left:137.440000pt;}
.x2_c00168{left:160.720000pt;}
.x3_c00168{left:185.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_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_bb938e26218732b0cc8fda73.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00169;src:url('chunks/assets/font_cceeb671eb3a79dd1bf1bdaa.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00169;src:url('chunks/assets/font_0705f2cd7a4dbf59ae98a72d.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;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_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.v1_c00169{vertical-align:29.880000px;}
.ls1d_c00169{letter-spacing:-0.266400px;}
.ls15_c00169{letter-spacing:-0.151200px;}
.ls13_c00169{letter-spacing:-0.048096px;}
.ls1a_c00169{letter-spacing:-0.036000px;}
.ls16_c00169{letter-spacing:-0.028800px;}
.ls19_c00169{letter-spacing:-0.021600px;}
.ls12_c00169{letter-spacing:-0.018036px;}
.ls17_c00169{letter-spacing:-0.014400px;}
.ls22_c00169{letter-spacing:-0.014364px;}
.ls21_c00169{letter-spacing:-0.009576px;}
.ls1c_c00169{letter-spacing:-0.007200px;}
.ls24_c00169{letter-spacing:-0.004788px;}
.ls1e_c00169{letter-spacing:-0.003888px;}
.ls14_c00169{letter-spacing:0.000000px;}
.ls6_c00169{letter-spacing:0.007200px;}
.lsa_c00169{letter-spacing:0.014364px;}
.ls4_c00169{letter-spacing:0.014400px;}
.lsd_c00169{letter-spacing:0.019152px;}
.ls8_c00169{letter-spacing:0.021600px;}
.ls9_c00169{letter-spacing:0.028800px;}
.ls0_c00169{letter-spacing:0.036072px;}
.lsf_c00169{letter-spacing:0.038304px;}
.lsc_c00169{letter-spacing:0.043092px;}
.ls1_c00169{letter-spacing:0.054756px;}
.ls7_c00169{letter-spacing:0.064800px;}
.ls20_c00169{letter-spacing:0.071820px;}
.ls5_c00169{letter-spacing:0.072000px;}
.lse_c00169{letter-spacing:0.076608px;}
.ls18_c00169{letter-spacing:0.093600px;}
.ls11_c00169{letter-spacing:0.100548px;}
.lsb_c00169{letter-spacing:0.104040px;}
.ls1b_c00169{letter-spacing:0.108000px;}
.ls2_c00169{letter-spacing:0.144000px;}
.ls10_c00169{letter-spacing:0.158004px;}
.ls1f_c00169{letter-spacing:0.357696px;}
.ls23_c00169{letter-spacing:4.337928px;}
.ls3_c00169{letter-spacing:65.304000px;}
.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:-17.964000px;}
.ws4_c00169{word-spacing:-13.325004px;}
.ws2_c00169{word-spacing:-11.166336px;}
.ws3_c00169{word-spacing:-10.808640px;}
.ws5_c00169{word-spacing:-10.804752px;}
.ws0_c00169{word-spacing:-10.584756px;}
.ws33_c00169{word-spacing:-0.081396px;}
.ws2b_c00169{word-spacing:-0.023940px;}
.ws22_c00169{word-spacing:-0.021600px;}
.ws1d_c00169{word-spacing:-0.007200px;}
.ws9_c00169{word-spacing:0.000000px;}
.ws2a_c00169{word-spacing:0.004788px;}
.ws1e_c00169{word-spacing:0.007200px;}
.ws2c_c00169{word-spacing:0.019152px;}
.ws34_c00169{word-spacing:0.023940px;}
.ws21_c00169{word-spacing:0.050400px;}
.ws6_c00169{word-spacing:0.054108px;}
.wsc_c00169{word-spacing:0.057600px;}
.ws11_c00169{word-spacing:0.100800px;}
.ws7_c00169{word-spacing:0.108216px;}
.ws8_c00169{word-spacing:0.138276px;}
.ws10_c00169{word-spacing:1.454400px;}
.wsf_c00169{word-spacing:1.519200px;}
.ws29_c00169{word-spacing:1.807200px;}
.ws15_c00169{word-spacing:2.181600px;}
.wsa_c00169{word-spacing:2.476800px;}
.wsb_c00169{word-spacing:2.534400px;}
.ws1f_c00169{word-spacing:2.865600px;}
.wsd_c00169{word-spacing:3.276000px;}
.wse_c00169{word-spacing:3.290400px;}
.ws16_c00169{word-spacing:4.291200px;}
.ws32_c00169{word-spacing:4.299624px;}
.ws31_c00169{word-spacing:4.352292px;}
.ws1b_c00169{word-spacing:7.221600px;}
.ws1c_c00169{word-spacing:7.236000px;}
.ws30_c00169{word-spacing:8.139600px;}
.ws2e_c00169{word-spacing:8.220996px;}
.ws2f_c00169{word-spacing:8.259300px;}
.ws2d_c00169{word-spacing:8.637552px;}
.ws28_c00169{word-spacing:9.331200px;}
.ws27_c00169{word-spacing:9.424800px;}
.ws20_c00169{word-spacing:10.094400px;}
.ws12_c00169{word-spacing:11.167200px;}
.ws26_c00169{word-spacing:11.469600px;}
.ws25_c00169{word-spacing:11.548800px;}
.ws18_c00169{word-spacing:12.132000px;}
.ws17_c00169{word-spacing:12.261600px;}
.ws13_c00169{word-spacing:12.535200px;}
.ws14_c00169{word-spacing:12.614400px;}
.ws23_c00169{word-spacing:12.945600px;}
.ws24_c00169{word-spacing:13.024800px;}
.ws1a_c00169{word-spacing:23.695200px;}
.ws19_c00169{word-spacing:23.752800px;}
._4_c00169{margin-left:-3.571452px;}
._0_c00169{margin-left:-1.142280px;}
._1_c00169{width:1.080000px;}
._3_c00169{width:4.673088px;}
._2_c00169{width:8.642340px;}
.fc0_c00169{color:rgb(0,0,0);}
.fs5_c00169{font-size:38.880000px;}
.fs3_c00169{font-size:42.120000px;}
.fs4_c00169{font-size:47.880000px;}
.fs2_c00169{font-size:54.000000px;}
.fs0_c00169{font-size:60.120000px;}
.fs1_c00169{font-size:72.000000px;}
.y0_c00169{bottom:0.000000px;}
.y3_c00169{bottom:57.450450px;}
.y4_c00169{bottom:61.410450px;}
.y27_c00169{bottom:113.698470px;}
.y26_c00169{bottom:132.064230px;}
.y25_c00169{bottom:150.334230px;}
.y24_c00169{bottom:168.598620px;}
.y23_c00169{bottom:186.968730px;}
.y22_c00169{bottom:205.234950px;}
.y21_c00169{bottom:218.999190px;}
.y20_c00169{bottom:232.864230px;}
.y1f_c00169{bottom:251.134230px;}
.y1e_c00169{bottom:269.400450px;}
.y1d_c00169{bottom:284.610450px;}
.y1c_c00169{bottom:305.310450px;}
.y1b_c00169{bottom:326.010450px;}
.y1a_c00169{bottom:373.260450px;}
.y19_c00169{bottom:407.640450px;}
.y18_c00169{bottom:442.110450px;}
.y17_c00169{bottom:485.490450px;}
.y16_c00169{bottom:519.960450px;}
.y15_c00169{bottom:554.340450px;}
.y14_c00169{bottom:597.810450px;}
.y13_c00169{bottom:632.190450px;}
.y12_c00169{bottom:666.660450px;}
.y11_c00169{bottom:710.040450px;}
.y10_c00169{bottom:744.510450px;}
.yf_c00169{bottom:778.890600px;}
.ye_c00169{bottom:813.360450px;}
.yd_c00169{bottom:847.740450px;}
.yc_c00169{bottom:882.210450px;}
.yb_c00169{bottom:916.590450px;}
.ya_c00169{bottom:951.060450px;}
.y9_c00169{bottom:994.440450px;}
.y8_c00169{bottom:1028.910450px;}
.y7_c00169{bottom:1063.290450px;}
.y6_c00169{bottom:1106.760450px;}
.y5_c00169{bottom:1141.140450px;}
.y2_c00169{bottom:1173.810450px;}
.y1_c00169{bottom:1196.850450px;}
.h2_c00169{height:47.988281px;}
.h8_c00169{height:49.937344px;}
.h9_c00169{height:49.942384px;}
.ha_c00169{height:49.944664px;}
.hb_c00169{height:49.945264px;}
.h1_c00169{height:50.315273px;}
.h3_c00169{height:56.320312px;}
.h4_c00169{height:60.257812px;}
.h5_c00169{height:65.130820px;}
.h7_c00169{height:65.131420px;}
.h6_c00169{height:75.093750px;}
.h0_c00169{height:1263.000000px;}
.w1_c00169{width:892.500000px;}
.w0_c00169{width:892.830000px;}
.x0_c00169{left:0.000000px;}
.x2_c00169{left:127.620000px;}
.x1_c00169{left:145.440000px;}
.x6_c00169{left:154.620000px;}
.x5_c00169{left:181.620000px;}
.x4_c00169{left:435.240000px;}
.x3_c00169{left:446.490000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.v1_c00169{vertical-align:26.560000pt;}
.ls1d_c00169{letter-spacing:-0.236800pt;}
.ls15_c00169{letter-spacing:-0.134400pt;}
.ls13_c00169{letter-spacing:-0.042752pt;}
.ls1a_c00169{letter-spacing:-0.032000pt;}
.ls16_c00169{letter-spacing:-0.025600pt;}
.ls19_c00169{letter-spacing:-0.019200pt;}
.ls12_c00169{letter-spacing:-0.016032pt;}
.ls17_c00169{letter-spacing:-0.012800pt;}
.ls22_c00169{letter-spacing:-0.012768pt;}
.ls21_c00169{letter-spacing:-0.008512pt;}
.ls1c_c00169{letter-spacing:-0.006400pt;}
.ls24_c00169{letter-spacing:-0.004256pt;}
.ls1e_c00169{letter-spacing:-0.003456pt;}
.ls14_c00169{letter-spacing:0.000000pt;}
.ls6_c00169{letter-spacing:0.006400pt;}
.lsa_c00169{letter-spacing:0.012768pt;}
.ls4_c00169{letter-spacing:0.012800pt;}
.lsd_c00169{letter-spacing:0.017024pt;}
.ls8_c00169{letter-spacing:0.019200pt;}
.ls9_c00169{letter-spacing:0.025600pt;}
.ls0_c00169{letter-spacing:0.032064pt;}
.lsf_c00169{letter-spacing:0.034048pt;}
.lsc_c00169{letter-spacing:0.038304pt;}
.ls1_c00169{letter-spacing:0.048672pt;}
.ls7_c00169{letter-spacing:0.057600pt;}
.ls20_c00169{letter-spacing:0.063840pt;}
.ls5_c00169{letter-spacing:0.064000pt;}
.lse_c00169{letter-spacing:0.068096pt;}
.ls18_c00169{letter-spacing:0.083200pt;}
.ls11_c00169{letter-spacing:0.089376pt;}
.lsb_c00169{letter-spacing:0.092480pt;}
.ls1b_c00169{letter-spacing:0.096000pt;}
.ls2_c00169{letter-spacing:0.128000pt;}
.ls10_c00169{letter-spacing:0.140448pt;}
.ls1f_c00169{letter-spacing:0.317952pt;}
.ls23_c00169{letter-spacing:3.855936pt;}
.ls3_c00169{letter-spacing:58.048000pt;}
.ws1_c00169{word-spacing:-15.968000pt;}
.ws4_c00169{word-spacing:-11.844448pt;}
.ws2_c00169{word-spacing:-9.925632pt;}
.ws3_c00169{word-spacing:-9.607680pt;}
.ws5_c00169{word-spacing:-9.604224pt;}
.ws0_c00169{word-spacing:-9.408672pt;}
.ws33_c00169{word-spacing:-0.072352pt;}
.ws2b_c00169{word-spacing:-0.021280pt;}
.ws22_c00169{word-spacing:-0.019200pt;}
.ws1d_c00169{word-spacing:-0.006400pt;}
.ws9_c00169{word-spacing:0.000000pt;}
.ws2a_c00169{word-spacing:0.004256pt;}
.ws1e_c00169{word-spacing:0.006400pt;}
.ws2c_c00169{word-spacing:0.017024pt;}
.ws34_c00169{word-spacing:0.021280pt;}
.ws21_c00169{word-spacing:0.044800pt;}
.ws6_c00169{word-spacing:0.048096pt;}
.wsc_c00169{word-spacing:0.051200pt;}
.ws11_c00169{word-spacing:0.089600pt;}
.ws7_c00169{word-spacing:0.096192pt;}
.ws8_c00169{word-spacing:0.122912pt;}
.ws10_c00169{word-spacing:1.292800pt;}
.wsf_c00169{word-spacing:1.350400pt;}
.ws29_c00169{word-spacing:1.606400pt;}
.ws15_c00169{word-spacing:1.939200pt;}
.wsa_c00169{word-spacing:2.201600pt;}
.wsb_c00169{word-spacing:2.252800pt;}
.ws1f_c00169{word-spacing:2.547200pt;}
.wsd_c00169{word-spacing:2.912000pt;}
.wse_c00169{word-spacing:2.924800pt;}
.ws16_c00169{word-spacing:3.814400pt;}
.ws32_c00169{word-spacing:3.821888pt;}
.ws31_c00169{word-spacing:3.868704pt;}
.ws1b_c00169{word-spacing:6.419200pt;}
.ws1c_c00169{word-spacing:6.432000pt;}
.ws30_c00169{word-spacing:7.235200pt;}
.ws2e_c00169{word-spacing:7.307552pt;}
.ws2f_c00169{word-spacing:7.341600pt;}
.ws2d_c00169{word-spacing:7.677824pt;}
.ws28_c00169{word-spacing:8.294400pt;}
.ws27_c00169{word-spacing:8.377600pt;}
.ws20_c00169{word-spacing:8.972800pt;}
.ws12_c00169{word-spacing:9.926400pt;}
.ws26_c00169{word-spacing:10.195200pt;}
.ws25_c00169{word-spacing:10.265600pt;}
.ws18_c00169{word-spacing:10.784000pt;}
.ws17_c00169{word-spacing:10.899200pt;}
.ws13_c00169{word-spacing:11.142400pt;}
.ws14_c00169{word-spacing:11.212800pt;}
.ws23_c00169{word-spacing:11.507200pt;}
.ws24_c00169{word-spacing:11.577600pt;}
.ws1a_c00169{word-spacing:21.062400pt;}
.ws19_c00169{word-spacing:21.113600pt;}
._4_c00169{margin-left:-3.174624pt;}
._0_c00169{margin-left:-1.015360pt;}
._1_c00169{width:0.960000pt;}
._3_c00169{width:4.153856pt;}
._2_c00169{width:7.682080pt;}
.fs5_c00169{font-size:34.560000pt;}
.fs3_c00169{font-size:37.440000pt;}
.fs4_c00169{font-size:42.560000pt;}
.fs2_c00169{font-size:48.000000pt;}
.fs0_c00169{font-size:53.440000pt;}
.fs1_c00169{font-size:64.000000pt;}
.y0_c00169{bottom:0.000000pt;}
.y3_c00169{bottom:51.067067pt;}
.y4_c00169{bottom:54.587067pt;}
.y27_c00169{bottom:101.065307pt;}
.y26_c00169{bottom:117.390427pt;}
.y25_c00169{bottom:133.630427pt;}
.y24_c00169{bottom:149.865440pt;}
.y23_c00169{bottom:166.194427pt;}
.y22_c00169{bottom:182.431067pt;}
.y21_c00169{bottom:194.665947pt;}
.y20_c00169{bottom:206.990427pt;}
.y1f_c00169{bottom:223.230427pt;}
.y1e_c00169{bottom:239.467067pt;}
.y1d_c00169{bottom:252.987067pt;}
.y1c_c00169{bottom:271.387067pt;}
.y1b_c00169{bottom:289.787067pt;}
.y1a_c00169{bottom:331.787067pt;}
.y19_c00169{bottom:362.347067pt;}
.y18_c00169{bottom:392.987067pt;}
.y17_c00169{bottom:431.547067pt;}
.y16_c00169{bottom:462.187067pt;}
.y15_c00169{bottom:492.747067pt;}
.y14_c00169{bottom:531.387067pt;}
.y13_c00169{bottom:561.947067pt;}
.y12_c00169{bottom:592.587067pt;}
.y11_c00169{bottom:631.147067pt;}
.y10_c00169{bottom:661.787067pt;}
.yf_c00169{bottom:692.347200pt;}
.ye_c00169{bottom:722.987067pt;}
.yd_c00169{bottom:753.547067pt;}
.yc_c00169{bottom:784.187067pt;}
.yb_c00169{bottom:814.747067pt;}
.ya_c00169{bottom:845.387067pt;}
.y9_c00169{bottom:883.947067pt;}
.y8_c00169{bottom:914.587067pt;}
.y7_c00169{bottom:945.147067pt;}
.y6_c00169{bottom:983.787067pt;}
.y5_c00169{bottom:1014.347067pt;}
.y2_c00169{bottom:1043.387067pt;}
.y1_c00169{bottom:1063.867067pt;}
.h2_c00169{height:42.656250pt;}
.h8_c00169{height:44.388750pt;}
.h9_c00169{height:44.393230pt;}
.ha_c00169{height:44.395257pt;}
.hb_c00169{height:44.395790pt;}
.h1_c00169{height:44.724687pt;}
.h3_c00169{height:50.062500pt;}
.h4_c00169{height:53.562500pt;}
.h5_c00169{height:57.894063pt;}
.h7_c00169{height:57.894596pt;}
.h6_c00169{height:66.750000pt;}
.h0_c00169{height:1122.666667pt;}
.w1_c00169{width:793.333333pt;}
.w0_c00169{width:793.626667pt;}
.x0_c00169{left:0.000000pt;}
.x2_c00169{left:113.440000pt;}
.x1_c00169{left:129.280000pt;}
.x6_c00169{left:137.440000pt;}
.x5_c00169{left:161.440000pt;}
.x4_c00169{left:386.880000pt;}
.x3_c00169{left:396.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_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_9d6241afb835671e6da4e765.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.100098;font-style:normal;font-weight:normal;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_8cf8ad14819468cbac514b4b.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;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_c00170;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00170;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;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_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);}
.v3_c00170{vertical-align:-29.879400px;}
.v0_c00170{vertical-align:0.000000px;}
.v1_c00170{vertical-align:15.840000px;}
.v2_c00170{vertical-align:29.880000px;}
.lsb_c00170{letter-spacing:-0.151200px;}
.ls13_c00170{letter-spacing:-0.050400px;}
.ls15_c00170{letter-spacing:-0.043200px;}
.ls14_c00170{letter-spacing:-0.036000px;}
.ls12_c00170{letter-spacing:-0.028800px;}
.lsd_c00170{letter-spacing:-0.021600px;}
.lse_c00170{letter-spacing:-0.014400px;}
.lsc_c00170{letter-spacing:-0.007200px;}
.ls16_c00170{letter-spacing:-0.003888px;}
.lsa_c00170{letter-spacing:0.000000px;}
.ls6_c00170{letter-spacing:0.007200px;}
.ls7_c00170{letter-spacing:0.014364px;}
.ls2_c00170{letter-spacing:0.014400px;}
.ls10_c00170{letter-spacing:0.028800px;}
.ls11_c00170{letter-spacing:0.036000px;}
.ls9_c00170{letter-spacing:0.043092px;}
.ls0_c00170{letter-spacing:0.048096px;}
.ls3_c00170{letter-spacing:0.054756px;}
.lsf_c00170{letter-spacing:0.093600px;}
.ls8_c00170{letter-spacing:0.104040px;}
.ls4_c00170{letter-spacing:0.144000px;}
.ls17_c00170{letter-spacing:0.357696px;}
.ls5_c00170{letter-spacing:65.304000px;}
.ls1_c00170{letter-spacing:1212.120000px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00170{word-spacing:-11.166336px;}
.ws0_c00170{word-spacing:-10.584756px;}
.ws19_c00170{word-spacing:-0.086400px;}
.ws2a_c00170{word-spacing:-0.023940px;}
.ws3_c00170{word-spacing:0.000000px;}
.ws29_c00170{word-spacing:0.004788px;}
.ws9_c00170{word-spacing:0.007200px;}
.ws2b_c00170{word-spacing:0.019152px;}
.ws13_c00170{word-spacing:0.028800px;}
.ws2_c00170{word-spacing:0.042084px;}
.ws1c_c00170{word-spacing:0.057600px;}
.wsc_c00170{word-spacing:0.676800px;}
.wsd_c00170{word-spacing:0.777600px;}
.wse_c00170{word-spacing:2.109600px;}
.wsf_c00170{word-spacing:2.167200px;}
.ws14_c00170{word-spacing:2.520000px;}
.ws15_c00170{word-spacing:2.620800px;}
.ws28_c00170{word-spacing:2.836800px;}
.ws27_c00170{word-spacing:2.901600px;}
.ws17_c00170{word-spacing:3.261600px;}
.ws16_c00170{word-spacing:3.276000px;}
.wsa_c00170{word-spacing:5.025600px;}
.ws22_c00170{word-spacing:5.076000px;}
.wsb_c00170{word-spacing:5.176800px;}
.ws1e_c00170{word-spacing:5.407200px;}
.ws1d_c00170{word-spacing:5.508000px;}
.ws11_c00170{word-spacing:6.451200px;}
.ws10_c00170{word-spacing:6.516000px;}
.ws25_c00170{word-spacing:7.495200px;}
.ws26_c00170{word-spacing:7.603200px;}
.ws12_c00170{word-spacing:8.301600px;}
.ws4_c00170{word-spacing:8.676000px;}
.ws8_c00170{word-spacing:10.454400px;}
.ws7_c00170{word-spacing:10.476000px;}
.ws24_c00170{word-spacing:11.512800px;}
.ws23_c00170{word-spacing:11.534400px;}
.ws1f_c00170{word-spacing:11.851200px;}
.ws20_c00170{word-spacing:11.908800px;}
.ws18_c00170{word-spacing:16.250400px;}
.ws21_c00170{word-spacing:17.683200px;}
.ws5_c00170{word-spacing:24.444000px;}
.ws6_c00170{word-spacing:24.494400px;}
.ws1a_c00170{word-spacing:25.610400px;}
.ws1b_c00170{word-spacing:27.360000px;}
._0_c00170{margin-left:-1.322640px;}
._1_c00170{width:1.080000px;}
.fc0_c00170{color:rgb(0,0,0);}
.fs5_c00170{font-size:38.880000px;}
.fs3_c00170{font-size:42.120000px;}
.fs4_c00170{font-size:47.880000px;}
.fs1_c00170{font-size:54.000000px;}
.fs0_c00170{font-size:60.120000px;}
.fs2_c00170{font-size:72.000000px;}
.y0_c00170{bottom:0.000000px;}
.y3_c00170{bottom:57.450450px;}
.y23_c00170{bottom:113.698470px;}
.y22_c00170{bottom:132.064230px;}
.y21_c00170{bottom:150.334230px;}
.y20_c00170{bottom:168.600450px;}
.y1f_c00170{bottom:183.810600px;}
.y1e_c00170{bottom:204.510600px;}
.y1d_c00170{bottom:225.210450px;}
.y1c_c00170{bottom:278.940450px;}
.y1b_c00170{bottom:313.410450px;}
.y1a_c00170{bottom:347.790450px;}
.y19_c00170{bottom:382.260450px;}
.y18_c00170{bottom:416.640450px;}
.y17_c00170{bottom:451.110450px;}
.y16_c00170{bottom:485.490450px;}
.y15_c00170{bottom:519.960450px;}
.y14_c00170{bottom:563.340450px;}
.y13_c00170{bottom:597.810450px;}
.y12_c00170{bottom:632.190450px;}
.y11_c00170{bottom:675.660600px;}
.y10_c00170{bottom:710.040600px;}
.yf_c00170{bottom:744.510600px;}
.ye_c00170{bottom:778.890600px;}
.yd_c00170{bottom:822.360450px;}
.yc_c00170{bottom:856.740450px;}
.yb_c00170{bottom:891.210450px;}
.ya_c00170{bottom:925.590450px;}
.y9_c00170{bottom:960.060450px;}
.y8_c00170{bottom:994.440450px;}
.y7_c00170{bottom:1037.910450px;}
.y6_c00170{bottom:1072.290450px;}
.y5_c00170{bottom:1106.760450px;}
.y4_c00170{bottom:1141.140450px;}
.y2_c00170{bottom:1177.860450px;}
.y1_c00170{bottom:1196.850450px;}
.h9_c00170{height:47.988281px;}
.h8_c00170{height:47.988881px;}
.ha_c00170{height:49.937344px;}
.hb_c00170{height:49.945264px;}
.h1_c00170{height:50.315273px;}
.h2_c00170{height:56.320312px;}
.h4_c00170{height:60.257812px;}
.h7_c00170{height:65.130220px;}
.h5_c00170{height:65.130820px;}
.h3_c00170{height:72.160312px;}
.h6_c00170{height:75.093750px;}
.h0_c00170{height:1263.000000px;}
.w1_c00170{width:892.500000px;}
.w0_c00170{width:892.830000px;}
.x0_c00170{left:0.000000px;}
.x1_c00170{left:127.620000px;}
.x3_c00170{left:154.620000px;}
.x2_c00170{left:181.620000px;}
.x4_c00170{left:207.000000px;}
@media print{
.v3_c00170{vertical-align:-26.559467pt;}
.v0_c00170{vertical-align:0.000000pt;}
.v1_c00170{vertical-align:14.080000pt;}
.v2_c00170{vertical-align:26.560000pt;}
.lsb_c00170{letter-spacing:-0.134400pt;}
.ls13_c00170{letter-spacing:-0.044800pt;}
.ls15_c00170{letter-spacing:-0.038400pt;}
.ls14_c00170{letter-spacing:-0.032000pt;}
.ls12_c00170{letter-spacing:-0.025600pt;}
.lsd_c00170{letter-spacing:-0.019200pt;}
.lse_c00170{letter-spacing:-0.012800pt;}
.lsc_c00170{letter-spacing:-0.006400pt;}
.ls16_c00170{letter-spacing:-0.003456pt;}
.lsa_c00170{letter-spacing:0.000000pt;}
.ls6_c00170{letter-spacing:0.006400pt;}
.ls7_c00170{letter-spacing:0.012768pt;}
.ls2_c00170{letter-spacing:0.012800pt;}
.ls10_c00170{letter-spacing:0.025600pt;}
.ls11_c00170{letter-spacing:0.032000pt;}
.ls9_c00170{letter-spacing:0.038304pt;}
.ls0_c00170{letter-spacing:0.042752pt;}
.ls3_c00170{letter-spacing:0.048672pt;}
.lsf_c00170{letter-spacing:0.083200pt;}
.ls8_c00170{letter-spacing:0.092480pt;}
.ls4_c00170{letter-spacing:0.128000pt;}
.ls17_c00170{letter-spacing:0.317952pt;}
.ls5_c00170{letter-spacing:58.048000pt;}
.ls1_c00170{letter-spacing:1077.440000pt;}
.ws1_c00170{word-spacing:-9.925632pt;}
.ws0_c00170{word-spacing:-9.408672pt;}
.ws19_c00170{word-spacing:-0.076800pt;}
.ws2a_c00170{word-spacing:-0.021280pt;}
.ws3_c00170{word-spacing:0.000000pt;}
.ws29_c00170{word-spacing:0.004256pt;}
.ws9_c00170{word-spacing:0.006400pt;}
.ws2b_c00170{word-spacing:0.017024pt;}
.ws13_c00170{word-spacing:0.025600pt;}
.ws2_c00170{word-spacing:0.037408pt;}
.ws1c_c00170{word-spacing:0.051200pt;}
.wsc_c00170{word-spacing:0.601600pt;}
.wsd_c00170{word-spacing:0.691200pt;}
.wse_c00170{word-spacing:1.875200pt;}
.wsf_c00170{word-spacing:1.926400pt;}
.ws14_c00170{word-spacing:2.240000pt;}
.ws15_c00170{word-spacing:2.329600pt;}
.ws28_c00170{word-spacing:2.521600pt;}
.ws27_c00170{word-spacing:2.579200pt;}
.ws17_c00170{word-spacing:2.899200pt;}
.ws16_c00170{word-spacing:2.912000pt;}
.wsa_c00170{word-spacing:4.467200pt;}
.ws22_c00170{word-spacing:4.512000pt;}
.wsb_c00170{word-spacing:4.601600pt;}
.ws1e_c00170{word-spacing:4.806400pt;}
.ws1d_c00170{word-spacing:4.896000pt;}
.ws11_c00170{word-spacing:5.734400pt;}
.ws10_c00170{word-spacing:5.792000pt;}
.ws25_c00170{word-spacing:6.662400pt;}
.ws26_c00170{word-spacing:6.758400pt;}
.ws12_c00170{word-spacing:7.379200pt;}
.ws4_c00170{word-spacing:7.712000pt;}
.ws8_c00170{word-spacing:9.292800pt;}
.ws7_c00170{word-spacing:9.312000pt;}
.ws24_c00170{word-spacing:10.233600pt;}
.ws23_c00170{word-spacing:10.252800pt;}
.ws1f_c00170{word-spacing:10.534400pt;}
.ws20_c00170{word-spacing:10.585600pt;}
.ws18_c00170{word-spacing:14.444800pt;}
.ws21_c00170{word-spacing:15.718400pt;}
.ws5_c00170{word-spacing:21.728000pt;}
.ws6_c00170{word-spacing:21.772800pt;}
.ws1a_c00170{word-spacing:22.764800pt;}
.ws1b_c00170{word-spacing:24.320000pt;}
._0_c00170{margin-left:-1.175680pt;}
._1_c00170{width:0.960000pt;}
.fs5_c00170{font-size:34.560000pt;}
.fs3_c00170{font-size:37.440000pt;}
.fs4_c00170{font-size:42.560000pt;}
.fs1_c00170{font-size:48.000000pt;}
.fs0_c00170{font-size:53.440000pt;}
.fs2_c00170{font-size:64.000000pt;}
.y0_c00170{bottom:0.000000pt;}
.y3_c00170{bottom:51.067067pt;}
.y23_c00170{bottom:101.065307pt;}
.y22_c00170{bottom:117.390427pt;}
.y21_c00170{bottom:133.630427pt;}
.y20_c00170{bottom:149.867067pt;}
.y1f_c00170{bottom:163.387200pt;}
.y1e_c00170{bottom:181.787200pt;}
.y1d_c00170{bottom:200.187067pt;}
.y1c_c00170{bottom:247.947067pt;}
.y1b_c00170{bottom:278.587067pt;}
.y1a_c00170{bottom:309.147067pt;}
.y19_c00170{bottom:339.787067pt;}
.y18_c00170{bottom:370.347067pt;}
.y17_c00170{bottom:400.987067pt;}
.y16_c00170{bottom:431.547067pt;}
.y15_c00170{bottom:462.187067pt;}
.y14_c00170{bottom:500.747067pt;}
.y13_c00170{bottom:531.387067pt;}
.y12_c00170{bottom:561.947067pt;}
.y11_c00170{bottom:600.587200pt;}
.y10_c00170{bottom:631.147200pt;}
.yf_c00170{bottom:661.787200pt;}
.ye_c00170{bottom:692.347200pt;}
.yd_c00170{bottom:730.987067pt;}
.yc_c00170{bottom:761.547067pt;}
.yb_c00170{bottom:792.187067pt;}
.ya_c00170{bottom:822.747067pt;}
.y9_c00170{bottom:853.387067pt;}
.y8_c00170{bottom:883.947067pt;}
.y7_c00170{bottom:922.587067pt;}
.y6_c00170{bottom:953.147067pt;}
.y5_c00170{bottom:983.787067pt;}
.y4_c00170{bottom:1014.347067pt;}
.y2_c00170{bottom:1046.987067pt;}
.y1_c00170{bottom:1063.867067pt;}
.h9_c00170{height:42.656250pt;}
.h8_c00170{height:42.656783pt;}
.ha_c00170{height:44.388750pt;}
.hb_c00170{height:44.395790pt;}
.h1_c00170{height:44.724687pt;}
.h2_c00170{height:50.062500pt;}
.h4_c00170{height:53.562500pt;}
.h7_c00170{height:57.893529pt;}
.h5_c00170{height:57.894063pt;}
.h3_c00170{height:64.142500pt;}
.h6_c00170{height:66.750000pt;}
.h0_c00170{height:1122.666667pt;}
.w1_c00170{width:793.333333pt;}
.w0_c00170{width:793.626667pt;}
.x0_c00170{left:0.000000pt;}
.x1_c00170{left:113.440000pt;}
.x3_c00170{left:137.440000pt;}
.x2_c00170{left:161.440000pt;}
.x4_c00170{left:184.000000pt;}
}





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

.ir_c00171:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00171;src:url('chunks/assets/font_f91eed3277469e915c5f5046.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_8cf8ad14819468cbac514b4b.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00171;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff4_c00171{font-family:ff4_c00171;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_c00171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.v1_c00171{vertical-align:29.880000px;}
.lse_c00171{letter-spacing:-0.151200px;}
.lsc_c00171{letter-spacing:-0.048096px;}
.ls12_c00171{letter-spacing:-0.043200px;}
.ls11_c00171{letter-spacing:-0.036000px;}
.ls16_c00171{letter-spacing:-0.028800px;}
.lsf_c00171{letter-spacing:-0.021600px;}
.lsb_c00171{letter-spacing:-0.018036px;}
.ls10_c00171{letter-spacing:-0.014400px;}
.ls13_c00171{letter-spacing:-0.007200px;}
.ls18_c00171{letter-spacing:-0.003888px;}
.lsd_c00171{letter-spacing:0.000000px;}
.ls5_c00171{letter-spacing:0.007200px;}
.ls8_c00171{letter-spacing:0.014364px;}
.ls1_c00171{letter-spacing:0.014400px;}
.ls2_c00171{letter-spacing:0.028800px;}
.ls4_c00171{letter-spacing:0.036000px;}
.ls0_c00171{letter-spacing:0.036072px;}
.lsa_c00171{letter-spacing:0.043092px;}
.ls15_c00171{letter-spacing:0.050400px;}
.ls3_c00171{letter-spacing:0.054756px;}
.ls17_c00171{letter-spacing:0.057600px;}
.ls14_c00171{letter-spacing:0.093600px;}
.ls9_c00171{letter-spacing:0.104040px;}
.ls6_c00171{letter-spacing:0.144000px;}
.ls19_c00171{letter-spacing:0.357696px;}
.ls7_c00171{letter-spacing:65.304000px;}
.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:-17.964000px;}
.ws2_c00171{word-spacing:-11.166336px;}
.ws0_c00171{word-spacing:-10.584756px;}
.ws21_c00171{word-spacing:-0.093600px;}
.ws2b_c00171{word-spacing:-0.023940px;}
.ws6_c00171{word-spacing:0.000000px;}
.ws2a_c00171{word-spacing:0.004788px;}
.ws11_c00171{word-spacing:0.007200px;}
.ws17_c00171{word-spacing:0.014400px;}
.ws2c_c00171{word-spacing:0.019152px;}
.ws20_c00171{word-spacing:0.021600px;}
.ws10_c00171{word-spacing:0.050400px;}
.ws3_c00171{word-spacing:0.054108px;}
.ws4_c00171{word-spacing:0.108216px;}
.ws5_c00171{word-spacing:0.138276px;}
.ws12_c00171{word-spacing:0.388800px;}
.ws13_c00171{word-spacing:1.044000px;}
.wsc_c00171{word-spacing:1.116000px;}
.ws14_c00171{word-spacing:1.152000px;}
.wsb_c00171{word-spacing:1.166400px;}
.ws25_c00171{word-spacing:1.836000px;}
.ws24_c00171{word-spacing:1.872000px;}
.ws8_c00171{word-spacing:2.491200px;}
.ws23_c00171{word-spacing:2.520000px;}
.ws7_c00171{word-spacing:2.541600px;}
.ws22_c00171{word-spacing:2.548800px;}
.ws18_c00171{word-spacing:5.032800px;}
.ws19_c00171{word-spacing:5.097600px;}
.ws1e_c00171{word-spacing:5.104800px;}
.ws1d_c00171{word-spacing:5.140800px;}
.ws9_c00171{word-spacing:5.385600px;}
.ws16_c00171{word-spacing:5.709600px;}
.ws15_c00171{word-spacing:5.803200px;}
.ws1f_c00171{word-spacing:6.501600px;}
.ws26_c00171{word-spacing:6.537600px;}
.ws27_c00171{word-spacing:6.559200px;}
.ws1a_c00171{word-spacing:8.258400px;}
.ws1b_c00171{word-spacing:8.308800px;}
.wsa_c00171{word-spacing:8.661600px;}
.wsf_c00171{word-spacing:9.381600px;}
.ws1c_c00171{word-spacing:20.880000px;}
.wse_c00171{word-spacing:22.003200px;}
.wsd_c00171{word-spacing:22.118400px;}
.ws29_c00171{word-spacing:29.145600px;}
.ws28_c00171{word-spacing:29.152800px;}
._0_c00171{margin-left:-1.142280px;}
._1_c00171{width:1.296000px;}
.fc0_c00171{color:rgb(0,0,0);}
.fs5_c00171{font-size:38.880000px;}
.fs3_c00171{font-size:42.120000px;}
.fs4_c00171{font-size:47.880000px;}
.fs2_c00171{font-size:54.000000px;}
.fs0_c00171{font-size:60.120000px;}
.fs1_c00171{font-size:72.000000px;}
.y0_c00171{bottom:0.000000px;}
.y3_c00171{bottom:57.450450px;}
.y4_c00171{bottom:61.410450px;}
.y21_c00171{bottom:113.698470px;}
.y20_c00171{bottom:132.064230px;}
.y1f_c00171{bottom:150.334230px;}
.y1e_c00171{bottom:168.600450px;}
.y1d_c00171{bottom:183.810600px;}
.y1c_c00171{bottom:204.510600px;}
.y1b_c00171{bottom:225.210450px;}
.y1a_c00171{bottom:391.260450px;}
.y19_c00171{bottom:425.640450px;}
.y18_c00171{bottom:460.110450px;}
.y17_c00171{bottom:494.490450px;}
.y16_c00171{bottom:528.960450px;}
.y15_c00171{bottom:572.340450px;}
.y14_c00171{bottom:606.810450px;}
.y13_c00171{bottom:641.190450px;}
.y12_c00171{bottom:675.660450px;}
.y11_c00171{bottom:710.040450px;}
.y10_c00171{bottom:744.510450px;}
.yf_c00171{bottom:787.890450px;}
.ye_c00171{bottom:822.360450px;}
.yd_c00171{bottom:856.740450px;}
.yc_c00171{bottom:891.210450px;}
.yb_c00171{bottom:934.590450px;}
.ya_c00171{bottom:969.060450px;}
.y9_c00171{bottom:1003.440450px;}
.y8_c00171{bottom:1037.910450px;}
.y7_c00171{bottom:1072.290450px;}
.y6_c00171{bottom:1106.760450px;}
.y5_c00171{bottom:1141.140450px;}
.y2_c00171{bottom:1173.810450px;}
.y1_c00171{bottom:1196.850450px;}
.h2_c00171{height:47.988281px;}
.h8_c00171{height:47.988881px;}
.h9_c00171{height:49.937344px;}
.ha_c00171{height:49.945264px;}
.h1_c00171{height:50.315273px;}
.h3_c00171{height:56.320312px;}
.h4_c00171{height:60.257812px;}
.h5_c00171{height:65.130820px;}
.h6_c00171{height:65.131420px;}
.h7_c00171{height:75.093750px;}
.h0_c00171{height:1263.000000px;}
.w1_c00171{width:892.500000px;}
.w0_c00171{width:892.830000px;}
.x0_c00171{left:0.000000px;}
.x2_c00171{left:127.620000px;}
.x1_c00171{left:145.440000px;}
.x7_c00171{left:154.620000px;}
.x5_c00171{left:180.810000px;}
.x6_c00171{left:207.000000px;}
.x4_c00171{left:435.240000px;}
.x3_c00171{left:446.490000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.v1_c00171{vertical-align:26.560000pt;}
.lse_c00171{letter-spacing:-0.134400pt;}
.lsc_c00171{letter-spacing:-0.042752pt;}
.ls12_c00171{letter-spacing:-0.038400pt;}
.ls11_c00171{letter-spacing:-0.032000pt;}
.ls16_c00171{letter-spacing:-0.025600pt;}
.lsf_c00171{letter-spacing:-0.019200pt;}
.lsb_c00171{letter-spacing:-0.016032pt;}
.ls10_c00171{letter-spacing:-0.012800pt;}
.ls13_c00171{letter-spacing:-0.006400pt;}
.ls18_c00171{letter-spacing:-0.003456pt;}
.lsd_c00171{letter-spacing:0.000000pt;}
.ls5_c00171{letter-spacing:0.006400pt;}
.ls8_c00171{letter-spacing:0.012768pt;}
.ls1_c00171{letter-spacing:0.012800pt;}
.ls2_c00171{letter-spacing:0.025600pt;}
.ls4_c00171{letter-spacing:0.032000pt;}
.ls0_c00171{letter-spacing:0.032064pt;}
.lsa_c00171{letter-spacing:0.038304pt;}
.ls15_c00171{letter-spacing:0.044800pt;}
.ls3_c00171{letter-spacing:0.048672pt;}
.ls17_c00171{letter-spacing:0.051200pt;}
.ls14_c00171{letter-spacing:0.083200pt;}
.ls9_c00171{letter-spacing:0.092480pt;}
.ls6_c00171{letter-spacing:0.128000pt;}
.ls19_c00171{letter-spacing:0.317952pt;}
.ls7_c00171{letter-spacing:58.048000pt;}
.ws1_c00171{word-spacing:-15.968000pt;}
.ws2_c00171{word-spacing:-9.925632pt;}
.ws0_c00171{word-spacing:-9.408672pt;}
.ws21_c00171{word-spacing:-0.083200pt;}
.ws2b_c00171{word-spacing:-0.021280pt;}
.ws6_c00171{word-spacing:0.000000pt;}
.ws2a_c00171{word-spacing:0.004256pt;}
.ws11_c00171{word-spacing:0.006400pt;}
.ws17_c00171{word-spacing:0.012800pt;}
.ws2c_c00171{word-spacing:0.017024pt;}
.ws20_c00171{word-spacing:0.019200pt;}
.ws10_c00171{word-spacing:0.044800pt;}
.ws3_c00171{word-spacing:0.048096pt;}
.ws4_c00171{word-spacing:0.096192pt;}
.ws5_c00171{word-spacing:0.122912pt;}
.ws12_c00171{word-spacing:0.345600pt;}
.ws13_c00171{word-spacing:0.928000pt;}
.wsc_c00171{word-spacing:0.992000pt;}
.ws14_c00171{word-spacing:1.024000pt;}
.wsb_c00171{word-spacing:1.036800pt;}
.ws25_c00171{word-spacing:1.632000pt;}
.ws24_c00171{word-spacing:1.664000pt;}
.ws8_c00171{word-spacing:2.214400pt;}
.ws23_c00171{word-spacing:2.240000pt;}
.ws7_c00171{word-spacing:2.259200pt;}
.ws22_c00171{word-spacing:2.265600pt;}
.ws18_c00171{word-spacing:4.473600pt;}
.ws19_c00171{word-spacing:4.531200pt;}
.ws1e_c00171{word-spacing:4.537600pt;}
.ws1d_c00171{word-spacing:4.569600pt;}
.ws9_c00171{word-spacing:4.787200pt;}
.ws16_c00171{word-spacing:5.075200pt;}
.ws15_c00171{word-spacing:5.158400pt;}
.ws1f_c00171{word-spacing:5.779200pt;}
.ws26_c00171{word-spacing:5.811200pt;}
.ws27_c00171{word-spacing:5.830400pt;}
.ws1a_c00171{word-spacing:7.340800pt;}
.ws1b_c00171{word-spacing:7.385600pt;}
.wsa_c00171{word-spacing:7.699200pt;}
.wsf_c00171{word-spacing:8.339200pt;}
.ws1c_c00171{word-spacing:18.560000pt;}
.wse_c00171{word-spacing:19.558400pt;}
.wsd_c00171{word-spacing:19.660800pt;}
.ws29_c00171{word-spacing:25.907200pt;}
.ws28_c00171{word-spacing:25.913600pt;}
._0_c00171{margin-left:-1.015360pt;}
._1_c00171{width:1.152000pt;}
.fs5_c00171{font-size:34.560000pt;}
.fs3_c00171{font-size:37.440000pt;}
.fs4_c00171{font-size:42.560000pt;}
.fs2_c00171{font-size:48.000000pt;}
.fs0_c00171{font-size:53.440000pt;}
.fs1_c00171{font-size:64.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y3_c00171{bottom:51.067067pt;}
.y4_c00171{bottom:54.587067pt;}
.y21_c00171{bottom:101.065307pt;}
.y20_c00171{bottom:117.390427pt;}
.y1f_c00171{bottom:133.630427pt;}
.y1e_c00171{bottom:149.867067pt;}
.y1d_c00171{bottom:163.387200pt;}
.y1c_c00171{bottom:181.787200pt;}
.y1b_c00171{bottom:200.187067pt;}
.y1a_c00171{bottom:347.787067pt;}
.y19_c00171{bottom:378.347067pt;}
.y18_c00171{bottom:408.987067pt;}
.y17_c00171{bottom:439.547067pt;}
.y16_c00171{bottom:470.187067pt;}
.y15_c00171{bottom:508.747067pt;}
.y14_c00171{bottom:539.387067pt;}
.y13_c00171{bottom:569.947067pt;}
.y12_c00171{bottom:600.587067pt;}
.y11_c00171{bottom:631.147067pt;}
.y10_c00171{bottom:661.787067pt;}
.yf_c00171{bottom:700.347067pt;}
.ye_c00171{bottom:730.987067pt;}
.yd_c00171{bottom:761.547067pt;}
.yc_c00171{bottom:792.187067pt;}
.yb_c00171{bottom:830.747067pt;}
.ya_c00171{bottom:861.387067pt;}
.y9_c00171{bottom:891.947067pt;}
.y8_c00171{bottom:922.587067pt;}
.y7_c00171{bottom:953.147067pt;}
.y6_c00171{bottom:983.787067pt;}
.y5_c00171{bottom:1014.347067pt;}
.y2_c00171{bottom:1043.387067pt;}
.y1_c00171{bottom:1063.867067pt;}
.h2_c00171{height:42.656250pt;}
.h8_c00171{height:42.656783pt;}
.h9_c00171{height:44.388750pt;}
.ha_c00171{height:44.395790pt;}
.h1_c00171{height:44.724687pt;}
.h3_c00171{height:50.062500pt;}
.h4_c00171{height:53.562500pt;}
.h5_c00171{height:57.894062pt;}
.h6_c00171{height:57.894596pt;}
.h7_c00171{height:66.750000pt;}
.h0_c00171{height:1122.666667pt;}
.w1_c00171{width:793.333333pt;}
.w0_c00171{width:793.626667pt;}
.x0_c00171{left:0.000000pt;}
.x2_c00171{left:113.440000pt;}
.x1_c00171{left:129.280000pt;}
.x7_c00171{left:137.440000pt;}
.x5_c00171{left:160.720000pt;}
.x6_c00171{left:184.000000pt;}
.x4_c00171{left:386.880000pt;}
.x3_c00171{left:396.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_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_c9244c243d5d491319a75dcd.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.100098;font-style:normal;font-weight:normal;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_2ec8b0f479ed1a320d4c5638.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00172;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00172;src:url('chunks/assets/font_03d16954fd5d0dc0ed3e4e14.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00172;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00172;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff6_c00172{font-family:ff6_c00172;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.v1_c00172{vertical-align:15.840000px;}
.v2_c00172{vertical-align:29.880000px;}
.ls18_c00172{letter-spacing:-0.266400px;}
.ls10_c00172{letter-spacing:-0.151200px;}
.ls16_c00172{letter-spacing:-0.050400px;}
.ls19_c00172{letter-spacing:-0.043200px;}
.ls11_c00172{letter-spacing:-0.036000px;}
.ls13_c00172{letter-spacing:-0.023436px;}
.ls17_c00172{letter-spacing:-0.021600px;}
.ls14_c00172{letter-spacing:-0.014400px;}
.ls15_c00172{letter-spacing:-0.007200px;}
.ls1a_c00172{letter-spacing:-0.003888px;}
.lsf_c00172{letter-spacing:0.000000px;}
.ls9_c00172{letter-spacing:0.007200px;}
.ls6_c00172{letter-spacing:0.007812px;}
.lsb_c00172{letter-spacing:0.014364px;}
.lsa_c00172{letter-spacing:0.014400px;}
.ls4_c00172{letter-spacing:0.021600px;}
.lse_c00172{letter-spacing:0.033516px;}
.lsd_c00172{letter-spacing:0.043092px;}
.ls0_c00172{letter-spacing:0.048096px;}
.ls5_c00172{letter-spacing:0.054756px;}
.ls12_c00172{letter-spacing:0.093600px;}
.lsc_c00172{letter-spacing:0.104040px;}
.ls2_c00172{letter-spacing:0.144000px;}
.ls1b_c00172{letter-spacing:0.357696px;}
.ls7_c00172{letter-spacing:23.670360px;}
.ls3_c00172{letter-spacing:65.304000px;}
.ls8_c00172{letter-spacing:66.024000px;}
.ls1_c00172{letter-spacing:1212.120000px;}
.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:-19.537812px;}
.ws2_c00172{word-spacing:-11.166336px;}
.ws0_c00172{word-spacing:-10.584756px;}
.ws9_c00172{word-spacing:-0.124992px;}
.ws15_c00172{word-spacing:-0.117180px;}
.wsd_c00172{word-spacing:-0.093600px;}
.ws27_c00172{word-spacing:-0.023940px;}
.ws29_c00172{word-spacing:-0.014364px;}
.ws1b_c00172{word-spacing:-0.007200px;}
.ws4_c00172{word-spacing:0.000000px;}
.ws26_c00172{word-spacing:0.004788px;}
.ws14_c00172{word-spacing:0.007200px;}
.ws28_c00172{word-spacing:0.019152px;}
.ws1a_c00172{word-spacing:0.021600px;}
.ws3_c00172{word-spacing:0.042084px;}
.wsc_c00172{word-spacing:0.043200px;}
.ws8_c00172{word-spacing:0.079200px;}
.ws5_c00172{word-spacing:0.720000px;}
.ws6_c00172{word-spacing:1.461600px;}
.ws7_c00172{word-spacing:1.533600px;}
.ws16_c00172{word-spacing:1.800000px;}
.ws19_c00172{word-spacing:2.390400px;}
.ws18_c00172{word-spacing:2.498400px;}
.ws1f_c00172{word-spacing:2.534400px;}
.ws17_c00172{word-spacing:2.563200px;}
.ws1e_c00172{word-spacing:2.570400px;}
.ws11_c00172{word-spacing:4.701600px;}
.ws13_c00172{word-spacing:5.083200px;}
.ws12_c00172{word-spacing:5.112000px;}
.wsa_c00172{word-spacing:5.378400px;}
.wsb_c00172{word-spacing:5.529600px;}
.ws24_c00172{word-spacing:6.112800px;}
.ws25_c00172{word-spacing:6.228000px;}
.ws1c_c00172{word-spacing:8.683200px;}
.ws1d_c00172{word-spacing:8.740800px;}
.ws10_c00172{word-spacing:10.483200px;}
.ws23_c00172{word-spacing:13.341600px;}
.ws22_c00172{word-spacing:15.127200px;}
.ws21_c00172{word-spacing:18.309600px;}
.wse_c00172{word-spacing:18.360000px;}
.ws20_c00172{word-spacing:18.396000px;}
.wsf_c00172{word-spacing:18.410400px;}
._0_c00172{margin-left:-1.322640px;}
._1_c00172{width:1.144800px;}
.fc0_c00172{color:rgb(0,0,0);}
.fs6_c00172{font-size:38.880000px;}
.fs3_c00172{font-size:42.120000px;}
.fs5_c00172{font-size:47.880000px;}
.fs1_c00172{font-size:54.000000px;}
.fs0_c00172{font-size:60.120000px;}
.fs2_c00172{font-size:72.000000px;}
.fs4_c00172{font-size:78.120000px;}
.y0_c00172{bottom:0.000000px;}
.y3_c00172{bottom:57.450450px;}
.y21_c00172{bottom:113.698470px;}
.y20_c00172{bottom:132.068010px;}
.y1f_c00172{bottom:150.334230px;}
.y1e_c00172{bottom:168.600450px;}
.y1d_c00172{bottom:183.810600px;}
.y1c_c00172{bottom:204.510600px;}
.y1b_c00172{bottom:225.210450px;}
.y1a_c00172{bottom:279.120450px;}
.y19_c00172{bottom:313.500450px;}
.y18_c00172{bottom:347.970450px;}
.y17_c00172{bottom:391.350450px;}
.y16_c00172{bottom:425.820450px;}
.y15_c00172{bottom:460.200450px;}
.y14_c00172{bottom:494.670450px;}
.y13_c00172{bottom:529.050450px;}
.y12_c00172{bottom:572.520450px;}
.y11_c00172{bottom:606.900450px;}
.y10_c00172{bottom:641.370450px;}
.yf_c00172{bottom:686.370450px;}
.ye_c00172{bottom:749.010450px;}
.yd_c00172{bottom:783.480450px;}
.yc_c00172{bottom:817.860450px;}
.yb_c00172{bottom:852.330450px;}
.ya_c00172{bottom:886.710450px;}
.y9_c00172{bottom:930.180450px;}
.y8_c00172{bottom:964.560450px;}
.y7_c00172{bottom:1009.650450px;}
.y6_c00172{bottom:1072.290450px;}
.y5_c00172{bottom:1106.760450px;}
.y4_c00172{bottom:1141.140450px;}
.y2_c00172{bottom:1177.860450px;}
.y1_c00172{bottom:1196.850450px;}
.h9_c00172{height:47.988281px;}
.h8_c00172{height:47.988881px;}
.ha_c00172{height:49.937344px;}
.hb_c00172{height:49.945264px;}
.h1_c00172{height:50.315273px;}
.h2_c00172{height:56.320312px;}
.h5_c00172{height:60.257812px;}
.h6_c00172{height:65.130820px;}
.h3_c00172{height:72.160312px;}
.h4_c00172{height:75.093750px;}
.h7_c00172{height:81.476719px;}
.h0_c00172{height:1263.000000px;}
.w1_c00172{width:892.500000px;}
.w0_c00172{width:892.830000px;}
.x0_c00172{left:0.000000px;}
.x1_c00172{left:127.620000px;}
.x2_c00172{left:154.620000px;}
.x3_c00172{left:181.620000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.v1_c00172{vertical-align:14.080000pt;}
.v2_c00172{vertical-align:26.560000pt;}
.ls18_c00172{letter-spacing:-0.236800pt;}
.ls10_c00172{letter-spacing:-0.134400pt;}
.ls16_c00172{letter-spacing:-0.044800pt;}
.ls19_c00172{letter-spacing:-0.038400pt;}
.ls11_c00172{letter-spacing:-0.032000pt;}
.ls13_c00172{letter-spacing:-0.020832pt;}
.ls17_c00172{letter-spacing:-0.019200pt;}
.ls14_c00172{letter-spacing:-0.012800pt;}
.ls15_c00172{letter-spacing:-0.006400pt;}
.ls1a_c00172{letter-spacing:-0.003456pt;}
.lsf_c00172{letter-spacing:0.000000pt;}
.ls9_c00172{letter-spacing:0.006400pt;}
.ls6_c00172{letter-spacing:0.006944pt;}
.lsb_c00172{letter-spacing:0.012768pt;}
.lsa_c00172{letter-spacing:0.012800pt;}
.ls4_c00172{letter-spacing:0.019200pt;}
.lse_c00172{letter-spacing:0.029792pt;}
.lsd_c00172{letter-spacing:0.038304pt;}
.ls0_c00172{letter-spacing:0.042752pt;}
.ls5_c00172{letter-spacing:0.048672pt;}
.ls12_c00172{letter-spacing:0.083200pt;}
.lsc_c00172{letter-spacing:0.092480pt;}
.ls2_c00172{letter-spacing:0.128000pt;}
.ls1b_c00172{letter-spacing:0.317952pt;}
.ls7_c00172{letter-spacing:21.040320pt;}
.ls3_c00172{letter-spacing:58.048000pt;}
.ls8_c00172{letter-spacing:58.688000pt;}
.ls1_c00172{letter-spacing:1077.440000pt;}
.ws1_c00172{word-spacing:-17.366944pt;}
.ws2_c00172{word-spacing:-9.925632pt;}
.ws0_c00172{word-spacing:-9.408672pt;}
.ws9_c00172{word-spacing:-0.111104pt;}
.ws15_c00172{word-spacing:-0.104160pt;}
.wsd_c00172{word-spacing:-0.083200pt;}
.ws27_c00172{word-spacing:-0.021280pt;}
.ws29_c00172{word-spacing:-0.012768pt;}
.ws1b_c00172{word-spacing:-0.006400pt;}
.ws4_c00172{word-spacing:0.000000pt;}
.ws26_c00172{word-spacing:0.004256pt;}
.ws14_c00172{word-spacing:0.006400pt;}
.ws28_c00172{word-spacing:0.017024pt;}
.ws1a_c00172{word-spacing:0.019200pt;}
.ws3_c00172{word-spacing:0.037408pt;}
.wsc_c00172{word-spacing:0.038400pt;}
.ws8_c00172{word-spacing:0.070400pt;}
.ws5_c00172{word-spacing:0.640000pt;}
.ws6_c00172{word-spacing:1.299200pt;}
.ws7_c00172{word-spacing:1.363200pt;}
.ws16_c00172{word-spacing:1.600000pt;}
.ws19_c00172{word-spacing:2.124800pt;}
.ws18_c00172{word-spacing:2.220800pt;}
.ws1f_c00172{word-spacing:2.252800pt;}
.ws17_c00172{word-spacing:2.278400pt;}
.ws1e_c00172{word-spacing:2.284800pt;}
.ws11_c00172{word-spacing:4.179200pt;}
.ws13_c00172{word-spacing:4.518400pt;}
.ws12_c00172{word-spacing:4.544000pt;}
.wsa_c00172{word-spacing:4.780800pt;}
.wsb_c00172{word-spacing:4.915200pt;}
.ws24_c00172{word-spacing:5.433600pt;}
.ws25_c00172{word-spacing:5.536000pt;}
.ws1c_c00172{word-spacing:7.718400pt;}
.ws1d_c00172{word-spacing:7.769600pt;}
.ws10_c00172{word-spacing:9.318400pt;}
.ws23_c00172{word-spacing:11.859200pt;}
.ws22_c00172{word-spacing:13.446400pt;}
.ws21_c00172{word-spacing:16.275200pt;}
.wse_c00172{word-spacing:16.320000pt;}
.ws20_c00172{word-spacing:16.352000pt;}
.wsf_c00172{word-spacing:16.364800pt;}
._0_c00172{margin-left:-1.175680pt;}
._1_c00172{width:1.017600pt;}
.fs6_c00172{font-size:34.560000pt;}
.fs3_c00172{font-size:37.440000pt;}
.fs5_c00172{font-size:42.560000pt;}
.fs1_c00172{font-size:48.000000pt;}
.fs0_c00172{font-size:53.440000pt;}
.fs2_c00172{font-size:64.000000pt;}
.fs4_c00172{font-size:69.440000pt;}
.y0_c00172{bottom:0.000000pt;}
.y3_c00172{bottom:51.067067pt;}
.y21_c00172{bottom:101.065307pt;}
.y20_c00172{bottom:117.393787pt;}
.y1f_c00172{bottom:133.630427pt;}
.y1e_c00172{bottom:149.867067pt;}
.y1d_c00172{bottom:163.387200pt;}
.y1c_c00172{bottom:181.787200pt;}
.y1b_c00172{bottom:200.187067pt;}
.y1a_c00172{bottom:248.107067pt;}
.y19_c00172{bottom:278.667067pt;}
.y18_c00172{bottom:309.307067pt;}
.y17_c00172{bottom:347.867067pt;}
.y16_c00172{bottom:378.507067pt;}
.y15_c00172{bottom:409.067067pt;}
.y14_c00172{bottom:439.707067pt;}
.y13_c00172{bottom:470.267067pt;}
.y12_c00172{bottom:508.907067pt;}
.y11_c00172{bottom:539.467067pt;}
.y10_c00172{bottom:570.107067pt;}
.yf_c00172{bottom:610.107067pt;}
.ye_c00172{bottom:665.787067pt;}
.yd_c00172{bottom:696.427067pt;}
.yc_c00172{bottom:726.987067pt;}
.yb_c00172{bottom:757.627067pt;}
.ya_c00172{bottom:788.187067pt;}
.y9_c00172{bottom:826.827067pt;}
.y8_c00172{bottom:857.387067pt;}
.y7_c00172{bottom:897.467067pt;}
.y6_c00172{bottom:953.147067pt;}
.y5_c00172{bottom:983.787067pt;}
.y4_c00172{bottom:1014.347067pt;}
.y2_c00172{bottom:1046.987067pt;}
.y1_c00172{bottom:1063.867067pt;}
.h9_c00172{height:42.656250pt;}
.h8_c00172{height:42.656783pt;}
.ha_c00172{height:44.388750pt;}
.hb_c00172{height:44.395790pt;}
.h1_c00172{height:44.724687pt;}
.h2_c00172{height:50.062500pt;}
.h5_c00172{height:53.562500pt;}
.h6_c00172{height:57.894062pt;}
.h3_c00172{height:64.142500pt;}
.h4_c00172{height:66.750000pt;}
.h7_c00172{height:72.423750pt;}
.h0_c00172{height:1122.666667pt;}
.w1_c00172{width:793.333333pt;}
.w0_c00172{width:793.626667pt;}
.x0_c00172{left:0.000000pt;}
.x1_c00172{left:113.440000pt;}
.x2_c00172{left:137.440000pt;}
.x3_c00172{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_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_5845b25b0b4dd96fbf9b16b8.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00173;src:url('chunks/assets/font_2ec8b0f479ed1a320d4c5638.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00173;src:url('chunks/assets/font_8ce0b142b9a94d0e589984a8.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00173;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00173{font-family:ff5_c00173;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_c00173;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff6_c00173{font-family:ff6_c00173;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_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;}
.v1_c00173{vertical-align:29.880000px;}
.ls15_c00173{letter-spacing:-0.273600px;}
.ls10_c00173{letter-spacing:-0.151200px;}
.lse_c00173{letter-spacing:-0.048096px;}
.ls17_c00173{letter-spacing:-0.028800px;}
.ls14_c00173{letter-spacing:-0.021600px;}
.lsd_c00173{letter-spacing:-0.018036px;}
.ls16_c00173{letter-spacing:-0.015624px;}
.ls12_c00173{letter-spacing:-0.014400px;}
.ls11_c00173{letter-spacing:-0.007200px;}
.ls18_c00173{letter-spacing:-0.003888px;}
.lsf_c00173{letter-spacing:0.000000px;}
.ls5_c00173{letter-spacing:0.007200px;}
.ls6_c00173{letter-spacing:0.007812px;}
.ls8_c00173{letter-spacing:0.014364px;}
.ls1_c00173{letter-spacing:0.014400px;}
.lsb_c00173{letter-spacing:0.023940px;}
.lsc_c00173{letter-spacing:0.033516px;}
.ls0_c00173{letter-spacing:0.036072px;}
.lsa_c00173{letter-spacing:0.043092px;}
.ls2_c00173{letter-spacing:0.054756px;}
.ls13_c00173{letter-spacing:0.093600px;}
.ls9_c00173{letter-spacing:0.104040px;}
.ls3_c00173{letter-spacing:0.144000px;}
.ls19_c00173{letter-spacing:0.357696px;}
.ls7_c00173{letter-spacing:23.670360px;}
.ls4_c00173{letter-spacing:66.024000px;}
.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;}
}
.ws2_c00173{word-spacing:-19.537812px;}
.ws1_c00173{word-spacing:-17.985600px;}
.ws3_c00173{word-spacing:-11.166336px;}
.ws0_c00173{word-spacing:-10.584756px;}
.ws23_c00173{word-spacing:-0.124992px;}
.ws14_c00173{word-spacing:-0.028800px;}
.ws2a_c00173{word-spacing:-0.023940px;}
.ws2d_c00173{word-spacing:-0.014364px;}
.ws2b_c00173{word-spacing:-0.004788px;}
.ws7_c00173{word-spacing:0.000000px;}
.ws29_c00173{word-spacing:0.004788px;}
.ws22_c00173{word-spacing:0.007200px;}
.ws17_c00173{word-spacing:0.014400px;}
.ws2c_c00173{word-spacing:0.019152px;}
.wse_c00173{word-spacing:0.050400px;}
.ws4_c00173{word-spacing:0.054108px;}
.ws5_c00173{word-spacing:0.108216px;}
.ws6_c00173{word-spacing:0.138276px;}
.ws8_c00173{word-spacing:0.619200px;}
.ws9_c00173{word-spacing:0.705600px;}
.ws10_c00173{word-spacing:1.821600px;}
.wsf_c00173{word-spacing:1.864800px;}
.ws1a_c00173{word-spacing:3.189600px;}
.ws20_c00173{word-spacing:3.232800px;}
.ws21_c00173{word-spacing:3.240000px;}
.ws1b_c00173{word-spacing:3.254400px;}
.ws13_c00173{word-spacing:4.680000px;}
.ws12_c00173{word-spacing:4.737600px;}
.ws26_c00173{word-spacing:5.032800px;}
.ws28_c00173{word-spacing:5.068800px;}
.ws27_c00173{word-spacing:5.112000px;}
.ws11_c00173{word-spacing:5.781600px;}
.wsd_c00173{word-spacing:8.985600px;}
.wsa_c00173{word-spacing:9.000000px;}
.wsb_c00173{word-spacing:9.007200px;}
.wsc_c00173{word-spacing:9.115200px;}
.ws1e_c00173{word-spacing:11.872800px;}
.ws15_c00173{word-spacing:13.334400px;}
.ws18_c00173{word-spacing:21.592800px;}
.ws19_c00173{word-spacing:21.700800px;}
.ws1f_c00173{word-spacing:21.981600px;}
.ws1c_c00173{word-spacing:24.465600px;}
.ws1d_c00173{word-spacing:24.595200px;}
.ws16_c00173{word-spacing:25.552800px;}
.ws24_c00173{word-spacing:26.596800px;}
.ws25_c00173{word-spacing:26.668800px;}
._0_c00173{margin-left:-1.142280px;}
._1_c00173{width:1.238400px;}
.fc0_c00173{color:rgb(0,0,0);}
.fs6_c00173{font-size:38.880000px;}
.fs3_c00173{font-size:42.120000px;}
.fs5_c00173{font-size:47.880000px;}
.fs2_c00173{font-size:54.000000px;}
.fs0_c00173{font-size:60.120000px;}
.fs1_c00173{font-size:72.000000px;}
.fs4_c00173{font-size:78.120000px;}
.y0_c00173{bottom:0.000000px;}
.y3_c00173{bottom:57.450450px;}
.y4_c00173{bottom:61.410450px;}
.y24_c00173{bottom:113.698470px;}
.y23_c00173{bottom:132.064230px;}
.y22_c00173{bottom:150.334230px;}
.y21_c00173{bottom:168.598620px;}
.y20_c00173{bottom:186.964230px;}
.y1f_c00173{bottom:205.230450px;}
.y1e_c00173{bottom:220.440450px;}
.y1d_c00173{bottom:241.140450px;}
.y1c_c00173{bottom:261.840450px;}
.y1b_c00173{bottom:308.910450px;}
.y1a_c00173{bottom:343.380450px;}
.y19_c00173{bottom:377.760450px;}
.y18_c00173{bottom:422.850450px;}
.y17_c00173{bottom:485.490450px;}
.y16_c00173{bottom:519.960450px;}
.y15_c00173{bottom:563.340450px;}
.y14_c00173{bottom:597.810450px;}
.y13_c00173{bottom:632.190450px;}
.y12_c00173{bottom:666.660450px;}
.y11_c00173{bottom:701.040450px;}
.y10_c00173{bottom:735.510450px;}
.yf_c00173{bottom:778.890450px;}
.ye_c00173{bottom:813.360450px;}
.yd_c00173{bottom:847.740450px;}
.yc_c00173{bottom:891.210450px;}
.yb_c00173{bottom:925.590450px;}
.ya_c00173{bottom:960.060450px;}
.y9_c00173{bottom:994.440450px;}
.y8_c00173{bottom:1037.910450px;}
.y7_c00173{bottom:1072.290450px;}
.y6_c00173{bottom:1106.760450px;}
.y5_c00173{bottom:1141.140450px;}
.y2_c00173{bottom:1173.810450px;}
.y1_c00173{bottom:1196.850450px;}
.h2_c00173{height:47.988281px;}
.h9_c00173{height:49.937344px;}
.ha_c00173{height:49.944664px;}
.h1_c00173{height:50.315273px;}
.h3_c00173{height:56.320312px;}
.h4_c00173{height:60.257812px;}
.h5_c00173{height:65.130820px;}
.h7_c00173{height:65.131420px;}
.h6_c00173{height:75.093750px;}
.h8_c00173{height:81.476719px;}
.h0_c00173{height:1263.000000px;}
.w1_c00173{width:892.500000px;}
.w0_c00173{width:892.830000px;}
.x0_c00173{left:0.000000px;}
.x2_c00173{left:127.620000px;}
.x1_c00173{left:145.440000px;}
.x6_c00173{left:154.440000px;}
.x5_c00173{left:181.170000px;}
.x4_c00173{left:435.240000px;}
.x3_c00173{left:446.490000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.v1_c00173{vertical-align:26.560000pt;}
.ls15_c00173{letter-spacing:-0.243200pt;}
.ls10_c00173{letter-spacing:-0.134400pt;}
.lse_c00173{letter-spacing:-0.042752pt;}
.ls17_c00173{letter-spacing:-0.025600pt;}
.ls14_c00173{letter-spacing:-0.019200pt;}
.lsd_c00173{letter-spacing:-0.016032pt;}
.ls16_c00173{letter-spacing:-0.013888pt;}
.ls12_c00173{letter-spacing:-0.012800pt;}
.ls11_c00173{letter-spacing:-0.006400pt;}
.ls18_c00173{letter-spacing:-0.003456pt;}
.lsf_c00173{letter-spacing:0.000000pt;}
.ls5_c00173{letter-spacing:0.006400pt;}
.ls6_c00173{letter-spacing:0.006944pt;}
.ls8_c00173{letter-spacing:0.012768pt;}
.ls1_c00173{letter-spacing:0.012800pt;}
.lsb_c00173{letter-spacing:0.021280pt;}
.lsc_c00173{letter-spacing:0.029792pt;}
.ls0_c00173{letter-spacing:0.032064pt;}
.lsa_c00173{letter-spacing:0.038304pt;}
.ls2_c00173{letter-spacing:0.048672pt;}
.ls13_c00173{letter-spacing:0.083200pt;}
.ls9_c00173{letter-spacing:0.092480pt;}
.ls3_c00173{letter-spacing:0.128000pt;}
.ls19_c00173{letter-spacing:0.317952pt;}
.ls7_c00173{letter-spacing:21.040320pt;}
.ls4_c00173{letter-spacing:58.688000pt;}
.ws2_c00173{word-spacing:-17.366944pt;}
.ws1_c00173{word-spacing:-15.987200pt;}
.ws3_c00173{word-spacing:-9.925632pt;}
.ws0_c00173{word-spacing:-9.408672pt;}
.ws23_c00173{word-spacing:-0.111104pt;}
.ws14_c00173{word-spacing:-0.025600pt;}
.ws2a_c00173{word-spacing:-0.021280pt;}
.ws2d_c00173{word-spacing:-0.012768pt;}
.ws2b_c00173{word-spacing:-0.004256pt;}
.ws7_c00173{word-spacing:0.000000pt;}
.ws29_c00173{word-spacing:0.004256pt;}
.ws22_c00173{word-spacing:0.006400pt;}
.ws17_c00173{word-spacing:0.012800pt;}
.ws2c_c00173{word-spacing:0.017024pt;}
.wse_c00173{word-spacing:0.044800pt;}
.ws4_c00173{word-spacing:0.048096pt;}
.ws5_c00173{word-spacing:0.096192pt;}
.ws6_c00173{word-spacing:0.122912pt;}
.ws8_c00173{word-spacing:0.550400pt;}
.ws9_c00173{word-spacing:0.627200pt;}
.ws10_c00173{word-spacing:1.619200pt;}
.wsf_c00173{word-spacing:1.657600pt;}
.ws1a_c00173{word-spacing:2.835200pt;}
.ws20_c00173{word-spacing:2.873600pt;}
.ws21_c00173{word-spacing:2.880000pt;}
.ws1b_c00173{word-spacing:2.892800pt;}
.ws13_c00173{word-spacing:4.160000pt;}
.ws12_c00173{word-spacing:4.211200pt;}
.ws26_c00173{word-spacing:4.473600pt;}
.ws28_c00173{word-spacing:4.505600pt;}
.ws27_c00173{word-spacing:4.544000pt;}
.ws11_c00173{word-spacing:5.139200pt;}
.wsd_c00173{word-spacing:7.987200pt;}
.wsa_c00173{word-spacing:8.000000pt;}
.wsb_c00173{word-spacing:8.006400pt;}
.wsc_c00173{word-spacing:8.102400pt;}
.ws1e_c00173{word-spacing:10.553600pt;}
.ws15_c00173{word-spacing:11.852800pt;}
.ws18_c00173{word-spacing:19.193600pt;}
.ws19_c00173{word-spacing:19.289600pt;}
.ws1f_c00173{word-spacing:19.539200pt;}
.ws1c_c00173{word-spacing:21.747200pt;}
.ws1d_c00173{word-spacing:21.862400pt;}
.ws16_c00173{word-spacing:22.713600pt;}
.ws24_c00173{word-spacing:23.641600pt;}
.ws25_c00173{word-spacing:23.705600pt;}
._0_c00173{margin-left:-1.015360pt;}
._1_c00173{width:1.100800pt;}
.fs6_c00173{font-size:34.560000pt;}
.fs3_c00173{font-size:37.440000pt;}
.fs5_c00173{font-size:42.560000pt;}
.fs2_c00173{font-size:48.000000pt;}
.fs0_c00173{font-size:53.440000pt;}
.fs1_c00173{font-size:64.000000pt;}
.fs4_c00173{font-size:69.440000pt;}
.y0_c00173{bottom:0.000000pt;}
.y3_c00173{bottom:51.067067pt;}
.y4_c00173{bottom:54.587067pt;}
.y24_c00173{bottom:101.065307pt;}
.y23_c00173{bottom:117.390427pt;}
.y22_c00173{bottom:133.630427pt;}
.y21_c00173{bottom:149.865440pt;}
.y20_c00173{bottom:166.190427pt;}
.y1f_c00173{bottom:182.427067pt;}
.y1e_c00173{bottom:195.947067pt;}
.y1d_c00173{bottom:214.347067pt;}
.y1c_c00173{bottom:232.747067pt;}
.y1b_c00173{bottom:274.587067pt;}
.y1a_c00173{bottom:305.227067pt;}
.y19_c00173{bottom:335.787067pt;}
.y18_c00173{bottom:375.867067pt;}
.y17_c00173{bottom:431.547067pt;}
.y16_c00173{bottom:462.187067pt;}
.y15_c00173{bottom:500.747067pt;}
.y14_c00173{bottom:531.387067pt;}
.y13_c00173{bottom:561.947067pt;}
.y12_c00173{bottom:592.587067pt;}
.y11_c00173{bottom:623.147067pt;}
.y10_c00173{bottom:653.787067pt;}
.yf_c00173{bottom:692.347067pt;}
.ye_c00173{bottom:722.987067pt;}
.yd_c00173{bottom:753.547067pt;}
.yc_c00173{bottom:792.187067pt;}
.yb_c00173{bottom:822.747067pt;}
.ya_c00173{bottom:853.387067pt;}
.y9_c00173{bottom:883.947067pt;}
.y8_c00173{bottom:922.587067pt;}
.y7_c00173{bottom:953.147067pt;}
.y6_c00173{bottom:983.787067pt;}
.y5_c00173{bottom:1014.347067pt;}
.y2_c00173{bottom:1043.387067pt;}
.y1_c00173{bottom:1063.867067pt;}
.h2_c00173{height:42.656250pt;}
.h9_c00173{height:44.388750pt;}
.ha_c00173{height:44.395257pt;}
.h1_c00173{height:44.724687pt;}
.h3_c00173{height:50.062500pt;}
.h4_c00173{height:53.562500pt;}
.h5_c00173{height:57.894063pt;}
.h7_c00173{height:57.894596pt;}
.h6_c00173{height:66.750000pt;}
.h8_c00173{height:72.423750pt;}
.h0_c00173{height:1122.666667pt;}
.w1_c00173{width:793.333333pt;}
.w0_c00173{width:793.626667pt;}
.x0_c00173{left:0.000000pt;}
.x2_c00173{left:113.440000pt;}
.x1_c00173{left:129.280000pt;}
.x6_c00173{left:137.280000pt;}
.x5_c00173{left:161.040000pt;}
.x4_c00173{left:386.880000pt;}
.x3_c00173{left:396.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_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_8a029e26bdc7e504722613b8.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.100098;font-style:normal;font-weight:normal;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_2ec8b0f479ed1a320d4c5638.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;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_c00174;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00174;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;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_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);}
.v3_c00174{vertical-align:-29.880000px;}
.v0_c00174{vertical-align:0.000000px;}
.v1_c00174{vertical-align:15.840000px;}
.v2_c00174{vertical-align:29.880000px;}
.lse_c00174{letter-spacing:-0.151200px;}
.ls10_c00174{letter-spacing:-0.043200px;}
.ls16_c00174{letter-spacing:-0.036000px;}
.ls15_c00174{letter-spacing:-0.028800px;}
.lsf_c00174{letter-spacing:-0.021600px;}
.ls14_c00174{letter-spacing:-0.014400px;}
.ls11_c00174{letter-spacing:-0.007200px;}
.ls1b_c00174{letter-spacing:-0.004788px;}
.ls19_c00174{letter-spacing:-0.003888px;}
.lsd_c00174{letter-spacing:0.000000px;}
.ls7_c00174{letter-spacing:0.007200px;}
.ls9_c00174{letter-spacing:0.014364px;}
.ls6_c00174{letter-spacing:0.014400px;}
.ls4_c00174{letter-spacing:0.021600px;}
.ls18_c00174{letter-spacing:0.028800px;}
.lsc_c00174{letter-spacing:0.033516px;}
.ls13_c00174{letter-spacing:0.036000px;}
.lsb_c00174{letter-spacing:0.043092px;}
.ls8_c00174{letter-spacing:0.043200px;}
.ls0_c00174{letter-spacing:0.048096px;}
.ls5_c00174{letter-spacing:0.054756px;}
.ls12_c00174{letter-spacing:0.093600px;}
.lsa_c00174{letter-spacing:0.104040px;}
.ls2_c00174{letter-spacing:0.144000px;}
.ls1a_c00174{letter-spacing:0.357696px;}
.ls17_c00174{letter-spacing:20.160000px;}
.ls3_c00174{letter-spacing:65.304000px;}
.ls1_c00174{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00174{word-spacing:-17.985600px;}
.ws2_c00174{word-spacing:-11.166336px;}
.ws0_c00174{word-spacing:-10.584756px;}
.ws23_c00174{word-spacing:-0.093600px;}
.ws10_c00174{word-spacing:-0.086400px;}
.ws2d_c00174{word-spacing:-0.023940px;}
.wsa_c00174{word-spacing:-0.021600px;}
.ws2f_c00174{word-spacing:-0.014364px;}
.ws4_c00174{word-spacing:0.000000px;}
.ws2c_c00174{word-spacing:0.004788px;}
.ws2e_c00174{word-spacing:0.019152px;}
.ws22_c00174{word-spacing:0.021600px;}
.ws30_c00174{word-spacing:0.023940px;}
.ws3_c00174{word-spacing:0.042084px;}
.ws28_c00174{word-spacing:0.086400px;}
.ws21_c00174{word-spacing:0.201600px;}
.ws27_c00174{word-spacing:0.280800px;}
.ws26_c00174{word-spacing:0.396000px;}
.ws13_c00174{word-spacing:0.727200px;}
.ws12_c00174{word-spacing:0.741600px;}
.ws1f_c00174{word-spacing:1.058400px;}
.ws20_c00174{word-spacing:1.108800px;}
.ws17_c00174{word-spacing:1.807200px;}
.ws16_c00174{word-spacing:1.850400px;}
.ws1a_c00174{word-spacing:2.836800px;}
.ws19_c00174{word-spacing:2.908800px;}
.wsd_c00174{word-spacing:3.225600px;}
.wse_c00174{word-spacing:3.290400px;}
.wsc_c00174{word-spacing:3.564000px;}
.ws2a_c00174{word-spacing:3.585600px;}
.wsb_c00174{word-spacing:3.607200px;}
.ws29_c00174{word-spacing:3.679200px;}
.ws5_c00174{word-spacing:3.924000px;}
.ws6_c00174{word-spacing:4.003200px;}
.wsf_c00174{word-spacing:4.334400px;}
.ws9_c00174{word-spacing:4.384800px;}
.ws8_c00174{word-spacing:4.428000px;}
.ws14_c00174{word-spacing:5.061600px;}
.ws15_c00174{word-spacing:5.133600px;}
.ws1c_c00174{word-spacing:5.400000px;}
.ws1b_c00174{word-spacing:5.421600px;}
.ws24_c00174{word-spacing:7.156800px;}
.ws25_c00174{word-spacing:7.164000px;}
.ws18_c00174{word-spacing:8.258400px;}
.ws7_c00174{word-spacing:10.116000px;}
.ws1d_c00174{word-spacing:11.865600px;}
.ws1e_c00174{word-spacing:11.887200px;}
.ws2b_c00174{word-spacing:20.131200px;}
.ws11_c00174{word-spacing:21.254400px;}
._2_c00174{margin-left:-21.672000px;}
._3_c00174{margin-left:-20.160000px;}
._0_c00174{margin-left:-1.322640px;}
._1_c00174{width:1.008000px;}
.fc0_c00174{color:rgb(0,0,0);}
.fs5_c00174{font-size:38.880000px;}
.fs3_c00174{font-size:42.120000px;}
.fs4_c00174{font-size:47.880000px;}
.fs1_c00174{font-size:54.000000px;}
.fs0_c00174{font-size:60.120000px;}
.fs2_c00174{font-size:72.000000px;}
.y0_c00174{bottom:0.000000px;}
.y3_c00174{bottom:57.450450px;}
.y24_c00174{bottom:113.702250px;}
.y23_c00174{bottom:132.064230px;}
.y22_c00174{bottom:150.332400px;}
.y21_c00174{bottom:168.598620px;}
.y20_c00174{bottom:186.964230px;}
.y1f_c00174{bottom:205.230450px;}
.y1e_c00174{bottom:220.440450px;}
.y1d_c00174{bottom:241.140450px;}
.y1c_c00174{bottom:261.840450px;}
.y1b_c00174{bottom:304.410450px;}
.y1a_c00174{bottom:338.790450px;}
.y19_c00174{bottom:382.260450px;}
.y18_c00174{bottom:416.640450px;}
.y17_c00174{bottom:451.110450px;}
.y16_c00174{bottom:494.490450px;}
.y15_c00174{bottom:528.960450px;}
.y14_c00174{bottom:563.340450px;}
.y13_c00174{bottom:606.810450px;}
.y12_c00174{bottom:641.190450px;}
.y11_c00174{bottom:675.660450px;}
.y10_c00174{bottom:710.040450px;}
.yf_c00174{bottom:744.510450px;}
.ye_c00174{bottom:778.890450px;}
.yd_c00174{bottom:813.360450px;}
.yc_c00174{bottom:847.740450px;}
.yb_c00174{bottom:891.210450px;}
.ya_c00174{bottom:925.590450px;}
.y9_c00174{bottom:960.060450px;}
.y8_c00174{bottom:994.440450px;}
.y7_c00174{bottom:1037.910450px;}
.y6_c00174{bottom:1072.290450px;}
.y5_c00174{bottom:1106.760450px;}
.y4_c00174{bottom:1141.140450px;}
.y2_c00174{bottom:1177.860450px;}
.y1_c00174{bottom:1196.850450px;}
.h8_c00174{height:47.988281px;}
.h9_c00174{height:49.937344px;}
.h1_c00174{height:50.315273px;}
.h2_c00174{height:56.320312px;}
.h5_c00174{height:60.257812px;}
.h6_c00174{height:65.130820px;}
.h7_c00174{height:65.131420px;}
.h3_c00174{height:72.160312px;}
.h4_c00174{height:75.093750px;}
.h0_c00174{height:1263.000000px;}
.w1_c00174{width:892.500000px;}
.w0_c00174{width:892.830000px;}
.x0_c00174{left:0.000000px;}
.x1_c00174{left:127.620000px;}
.x2_c00174{left:154.620000px;}
.x3_c00174{left:181.620000px;}
.x4_c00174{left:207.000000px;}
@media print{
.v3_c00174{vertical-align:-26.560000pt;}
.v0_c00174{vertical-align:0.000000pt;}
.v1_c00174{vertical-align:14.080000pt;}
.v2_c00174{vertical-align:26.560000pt;}
.lse_c00174{letter-spacing:-0.134400pt;}
.ls10_c00174{letter-spacing:-0.038400pt;}
.ls16_c00174{letter-spacing:-0.032000pt;}
.ls15_c00174{letter-spacing:-0.025600pt;}
.lsf_c00174{letter-spacing:-0.019200pt;}
.ls14_c00174{letter-spacing:-0.012800pt;}
.ls11_c00174{letter-spacing:-0.006400pt;}
.ls1b_c00174{letter-spacing:-0.004256pt;}
.ls19_c00174{letter-spacing:-0.003456pt;}
.lsd_c00174{letter-spacing:0.000000pt;}
.ls7_c00174{letter-spacing:0.006400pt;}
.ls9_c00174{letter-spacing:0.012768pt;}
.ls6_c00174{letter-spacing:0.012800pt;}
.ls4_c00174{letter-spacing:0.019200pt;}
.ls18_c00174{letter-spacing:0.025600pt;}
.lsc_c00174{letter-spacing:0.029792pt;}
.ls13_c00174{letter-spacing:0.032000pt;}
.lsb_c00174{letter-spacing:0.038304pt;}
.ls8_c00174{letter-spacing:0.038400pt;}
.ls0_c00174{letter-spacing:0.042752pt;}
.ls5_c00174{letter-spacing:0.048672pt;}
.ls12_c00174{letter-spacing:0.083200pt;}
.lsa_c00174{letter-spacing:0.092480pt;}
.ls2_c00174{letter-spacing:0.128000pt;}
.ls1a_c00174{letter-spacing:0.317952pt;}
.ls17_c00174{letter-spacing:17.920000pt;}
.ls3_c00174{letter-spacing:58.048000pt;}
.ls1_c00174{letter-spacing:1077.440000pt;}
.ws1_c00174{word-spacing:-15.987200pt;}
.ws2_c00174{word-spacing:-9.925632pt;}
.ws0_c00174{word-spacing:-9.408672pt;}
.ws23_c00174{word-spacing:-0.083200pt;}
.ws10_c00174{word-spacing:-0.076800pt;}
.ws2d_c00174{word-spacing:-0.021280pt;}
.wsa_c00174{word-spacing:-0.019200pt;}
.ws2f_c00174{word-spacing:-0.012768pt;}
.ws4_c00174{word-spacing:0.000000pt;}
.ws2c_c00174{word-spacing:0.004256pt;}
.ws2e_c00174{word-spacing:0.017024pt;}
.ws22_c00174{word-spacing:0.019200pt;}
.ws30_c00174{word-spacing:0.021280pt;}
.ws3_c00174{word-spacing:0.037408pt;}
.ws28_c00174{word-spacing:0.076800pt;}
.ws21_c00174{word-spacing:0.179200pt;}
.ws27_c00174{word-spacing:0.249600pt;}
.ws26_c00174{word-spacing:0.352000pt;}
.ws13_c00174{word-spacing:0.646400pt;}
.ws12_c00174{word-spacing:0.659200pt;}
.ws1f_c00174{word-spacing:0.940800pt;}
.ws20_c00174{word-spacing:0.985600pt;}
.ws17_c00174{word-spacing:1.606400pt;}
.ws16_c00174{word-spacing:1.644800pt;}
.ws1a_c00174{word-spacing:2.521600pt;}
.ws19_c00174{word-spacing:2.585600pt;}
.wsd_c00174{word-spacing:2.867200pt;}
.wse_c00174{word-spacing:2.924800pt;}
.wsc_c00174{word-spacing:3.168000pt;}
.ws2a_c00174{word-spacing:3.187200pt;}
.wsb_c00174{word-spacing:3.206400pt;}
.ws29_c00174{word-spacing:3.270400pt;}
.ws5_c00174{word-spacing:3.488000pt;}
.ws6_c00174{word-spacing:3.558400pt;}
.wsf_c00174{word-spacing:3.852800pt;}
.ws9_c00174{word-spacing:3.897600pt;}
.ws8_c00174{word-spacing:3.936000pt;}
.ws14_c00174{word-spacing:4.499200pt;}
.ws15_c00174{word-spacing:4.563200pt;}
.ws1c_c00174{word-spacing:4.800000pt;}
.ws1b_c00174{word-spacing:4.819200pt;}
.ws24_c00174{word-spacing:6.361600pt;}
.ws25_c00174{word-spacing:6.368000pt;}
.ws18_c00174{word-spacing:7.340800pt;}
.ws7_c00174{word-spacing:8.992000pt;}
.ws1d_c00174{word-spacing:10.547200pt;}
.ws1e_c00174{word-spacing:10.566400pt;}
.ws2b_c00174{word-spacing:17.894400pt;}
.ws11_c00174{word-spacing:18.892800pt;}
._2_c00174{margin-left:-19.264000pt;}
._3_c00174{margin-left:-17.920000pt;}
._0_c00174{margin-left:-1.175680pt;}
._1_c00174{width:0.896000pt;}
.fs5_c00174{font-size:34.560000pt;}
.fs3_c00174{font-size:37.440000pt;}
.fs4_c00174{font-size:42.560000pt;}
.fs1_c00174{font-size:48.000000pt;}
.fs0_c00174{font-size:53.440000pt;}
.fs2_c00174{font-size:64.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y3_c00174{bottom:51.067067pt;}
.y24_c00174{bottom:101.068667pt;}
.y23_c00174{bottom:117.390427pt;}
.y22_c00174{bottom:133.628800pt;}
.y21_c00174{bottom:149.865440pt;}
.y20_c00174{bottom:166.190427pt;}
.y1f_c00174{bottom:182.427067pt;}
.y1e_c00174{bottom:195.947067pt;}
.y1d_c00174{bottom:214.347067pt;}
.y1c_c00174{bottom:232.747067pt;}
.y1b_c00174{bottom:270.587067pt;}
.y1a_c00174{bottom:301.147067pt;}
.y19_c00174{bottom:339.787067pt;}
.y18_c00174{bottom:370.347067pt;}
.y17_c00174{bottom:400.987067pt;}
.y16_c00174{bottom:439.547067pt;}
.y15_c00174{bottom:470.187067pt;}
.y14_c00174{bottom:500.747067pt;}
.y13_c00174{bottom:539.387067pt;}
.y12_c00174{bottom:569.947067pt;}
.y11_c00174{bottom:600.587067pt;}
.y10_c00174{bottom:631.147067pt;}
.yf_c00174{bottom:661.787067pt;}
.ye_c00174{bottom:692.347067pt;}
.yd_c00174{bottom:722.987067pt;}
.yc_c00174{bottom:753.547067pt;}
.yb_c00174{bottom:792.187067pt;}
.ya_c00174{bottom:822.747067pt;}
.y9_c00174{bottom:853.387067pt;}
.y8_c00174{bottom:883.947067pt;}
.y7_c00174{bottom:922.587067pt;}
.y6_c00174{bottom:953.147067pt;}
.y5_c00174{bottom:983.787067pt;}
.y4_c00174{bottom:1014.347067pt;}
.y2_c00174{bottom:1046.987067pt;}
.y1_c00174{bottom:1063.867067pt;}
.h8_c00174{height:42.656250pt;}
.h9_c00174{height:44.388750pt;}
.h1_c00174{height:44.724687pt;}
.h2_c00174{height:50.062500pt;}
.h5_c00174{height:53.562500pt;}
.h6_c00174{height:57.894063pt;}
.h7_c00174{height:57.894596pt;}
.h3_c00174{height:64.142500pt;}
.h4_c00174{height:66.750000pt;}
.h0_c00174{height:1122.666667pt;}
.w1_c00174{width:793.333333pt;}
.w0_c00174{width:793.626667pt;}
.x0_c00174{left:0.000000pt;}
.x1_c00174{left:113.440000pt;}
.x2_c00174{left:137.440000pt;}
.x3_c00174{left:161.440000pt;}
.x4_c00174{left:184.000000pt;}
}





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

.ir_c00175:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00175;src:url('chunks/assets/font_140aa8225ab8961f70a5a8a3.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00175;src:url('chunks/assets/font_2ec8b0f479ed1a320d4c5638.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00175;src:url('chunks/assets/font_b868b8b550eb536373a0cdd6.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00175;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00175{font-family:ff5_c00175;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_c00175;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff6_c00175{font-family:ff6_c00175;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_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;}
.v1_c00175{vertical-align:29.880000px;}
.ls1d_c00175{letter-spacing:-0.273600px;}
.ls15_c00175{letter-spacing:-0.151200px;}
.ls1e_c00175{letter-spacing:-0.064800px;}
.ls19_c00175{letter-spacing:-0.057600px;}
.ls13_c00175{letter-spacing:-0.048096px;}
.ls1f_c00175{letter-spacing:-0.039060px;}
.ls16_c00175{letter-spacing:-0.036000px;}
.ls1c_c00175{letter-spacing:-0.028800px;}
.ls18_c00175{letter-spacing:-0.021600px;}
.ls12_c00175{letter-spacing:-0.018036px;}
.ls1b_c00175{letter-spacing:-0.014400px;}
.ls17_c00175{letter-spacing:-0.007200px;}
.ls22_c00175{letter-spacing:-0.004788px;}
.ls20_c00175{letter-spacing:-0.003888px;}
.ls14_c00175{letter-spacing:0.000000px;}
.ls10_c00175{letter-spacing:0.004788px;}
.ls1_c00175{letter-spacing:0.007200px;}
.ls9_c00175{letter-spacing:0.007812px;}
.lsd_c00175{letter-spacing:0.014364px;}
.ls3_c00175{letter-spacing:0.014400px;}
.ls6_c00175{letter-spacing:0.028800px;}
.ls11_c00175{letter-spacing:0.033516px;}
.ls8_c00175{letter-spacing:0.036000px;}
.ls0_c00175{letter-spacing:0.036072px;}
.lsb_c00175{letter-spacing:0.039060px;}
.lsf_c00175{letter-spacing:0.043092px;}
.ls2_c00175{letter-spacing:0.054756px;}
.ls7_c00175{letter-spacing:0.057600px;}
.ls1a_c00175{letter-spacing:0.093600px;}
.lse_c00175{letter-spacing:0.104040px;}
.ls4_c00175{letter-spacing:0.144000px;}
.ls21_c00175{letter-spacing:0.357696px;}
.lsa_c00175{letter-spacing:23.670360px;}
.ls5_c00175{letter-spacing:65.304000px;}
.lsc_c00175{letter-spacing:66.024000px;}
.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;}
}
.ws2_c00175{word-spacing:-19.569060px;}
.ws1_c00175{word-spacing:-19.537812px;}
.ws3_c00175{word-spacing:-11.166336px;}
.ws0_c00175{word-spacing:-10.584756px;}
.ws25_c00175{word-spacing:-0.109368px;}
.ws1e_c00175{word-spacing:-0.093600px;}
.ws2d_c00175{word-spacing:-0.023940px;}
.ws31_c00175{word-spacing:-0.014364px;}
.ws7_c00175{word-spacing:0.000000px;}
.ws2c_c00175{word-spacing:0.004788px;}
.ws1d_c00175{word-spacing:0.007200px;}
.ws2e_c00175{word-spacing:0.014364px;}
.ws30_c00175{word-spacing:0.019152px;}
.ws27_c00175{word-spacing:0.021600px;}
.ws2f_c00175{word-spacing:0.023940px;}
.ws16_c00175{word-spacing:0.028800px;}
.ws4_c00175{word-spacing:0.054108px;}
.ws24_c00175{word-spacing:0.079200px;}
.ws5_c00175{word-spacing:0.108216px;}
.ws6_c00175{word-spacing:0.138276px;}
.ws11_c00175{word-spacing:0.237600px;}
.ws1f_c00175{word-spacing:0.986400px;}
.ws20_c00175{word-spacing:1.166400px;}
.wse_c00175{word-spacing:1.432800px;}
.wsd_c00175{word-spacing:1.447200px;}
.ws13_c00175{word-spacing:1.785600px;}
.wsc_c00175{word-spacing:1.807200px;}
.ws12_c00175{word-spacing:1.843200px;}
.wsb_c00175{word-spacing:2.131200px;}
.wsa_c00175{word-spacing:2.167200px;}
.ws10_c00175{word-spacing:2.822400px;}
.wsf_c00175{word-spacing:2.937600px;}
.ws26_c00175{word-spacing:4.003200px;}
.ws21_c00175{word-spacing:4.579200px;}
.ws22_c00175{word-spacing:4.744800px;}
.ws2b_c00175{word-spacing:5.061600px;}
.ws2a_c00175{word-spacing:5.076000px;}
.ws18_c00175{word-spacing:5.342400px;}
.ws17_c00175{word-spacing:5.371200px;}
.ws9_c00175{word-spacing:9.007200px;}
.ws8_c00175{word-spacing:9.093600px;}
.ws19_c00175{word-spacing:10.764000px;}
.ws1a_c00175{word-spacing:10.807200px;}
.ws1b_c00175{word-spacing:12.254400px;}
.ws1c_c00175{word-spacing:12.261600px;}
.ws28_c00175{word-spacing:13.212000px;}
.ws23_c00175{word-spacing:13.320000px;}
.ws29_c00175{word-spacing:13.341600px;}
.ws15_c00175{word-spacing:18.064800px;}
.ws14_c00175{word-spacing:18.115200px;}
._0_c00175{margin-left:-1.142280px;}
._1_c00175{width:1.044000px;}
.fc0_c00175{color:rgb(0,0,0);}
.fs6_c00175{font-size:38.880000px;}
.fs3_c00175{font-size:42.120000px;}
.fs5_c00175{font-size:47.880000px;}
.fs2_c00175{font-size:54.000000px;}
.fs0_c00175{font-size:60.120000px;}
.fs1_c00175{font-size:72.000000px;}
.fs4_c00175{font-size:78.120000px;}
.y0_c00175{bottom:0.000000px;}
.y3_c00175{bottom:57.450450px;}
.y4_c00175{bottom:61.410450px;}
.y24_c00175{bottom:113.698470px;}
.y23_c00175{bottom:132.064230px;}
.y22_c00175{bottom:150.334230px;}
.y21_c00175{bottom:168.598620px;}
.y20_c00175{bottom:186.964230px;}
.y1f_c00175{bottom:205.230450px;}
.y1e_c00175{bottom:220.440450px;}
.y1d_c00175{bottom:241.140450px;}
.y1c_c00175{bottom:261.840450px;}
.y1b_c00175{bottom:299.910450px;}
.y1a_c00175{bottom:334.380450px;}
.y19_c00175{bottom:377.760450px;}
.y18_c00175{bottom:412.230450px;}
.y17_c00175{bottom:457.230450px;}
.y16_c00175{bottom:519.960450px;}
.y15_c00175{bottom:554.340450px;}
.y14_c00175{bottom:588.810450px;}
.y13_c00175{bottom:623.190450px;}
.y12_c00175{bottom:666.660450px;}
.y11_c00175{bottom:701.040450px;}
.y10_c00175{bottom:735.510450px;}
.yf_c00175{bottom:778.890450px;}
.ye_c00175{bottom:813.360450px;}
.yd_c00175{bottom:856.740450px;}
.yc_c00175{bottom:891.210450px;}
.yb_c00175{bottom:925.590450px;}
.ya_c00175{bottom:969.060450px;}
.y9_c00175{bottom:1003.440450px;}
.y8_c00175{bottom:1037.910450px;}
.y7_c00175{bottom:1072.290450px;}
.y6_c00175{bottom:1106.760450px;}
.y5_c00175{bottom:1141.140450px;}
.y2_c00175{bottom:1173.810450px;}
.y1_c00175{bottom:1196.850450px;}
.h2_c00175{height:47.988281px;}
.h9_c00175{height:49.937344px;}
.ha_c00175{height:49.944664px;}
.h1_c00175{height:50.315273px;}
.h3_c00175{height:56.320312px;}
.h4_c00175{height:60.257812px;}
.h5_c00175{height:65.130820px;}
.h7_c00175{height:65.131420px;}
.h6_c00175{height:75.093750px;}
.h8_c00175{height:81.476719px;}
.h0_c00175{height:1263.000000px;}
.w1_c00175{width:892.500000px;}
.w0_c00175{width:892.830000px;}
.x0_c00175{left:0.000000px;}
.x2_c00175{left:127.620000px;}
.x1_c00175{left:145.440000px;}
.x7_c00175{left:154.620000px;}
.x5_c00175{left:181.620000px;}
.x6_c00175{left:207.000000px;}
.x4_c00175{left:435.240000px;}
.x3_c00175{left:446.490000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.v1_c00175{vertical-align:26.560000pt;}
.ls1d_c00175{letter-spacing:-0.243200pt;}
.ls15_c00175{letter-spacing:-0.134400pt;}
.ls1e_c00175{letter-spacing:-0.057600pt;}
.ls19_c00175{letter-spacing:-0.051200pt;}
.ls13_c00175{letter-spacing:-0.042752pt;}
.ls1f_c00175{letter-spacing:-0.034720pt;}
.ls16_c00175{letter-spacing:-0.032000pt;}
.ls1c_c00175{letter-spacing:-0.025600pt;}
.ls18_c00175{letter-spacing:-0.019200pt;}
.ls12_c00175{letter-spacing:-0.016032pt;}
.ls1b_c00175{letter-spacing:-0.012800pt;}
.ls17_c00175{letter-spacing:-0.006400pt;}
.ls22_c00175{letter-spacing:-0.004256pt;}
.ls20_c00175{letter-spacing:-0.003456pt;}
.ls14_c00175{letter-spacing:0.000000pt;}
.ls10_c00175{letter-spacing:0.004256pt;}
.ls1_c00175{letter-spacing:0.006400pt;}
.ls9_c00175{letter-spacing:0.006944pt;}
.lsd_c00175{letter-spacing:0.012768pt;}
.ls3_c00175{letter-spacing:0.012800pt;}
.ls6_c00175{letter-spacing:0.025600pt;}
.ls11_c00175{letter-spacing:0.029792pt;}
.ls8_c00175{letter-spacing:0.032000pt;}
.ls0_c00175{letter-spacing:0.032064pt;}
.lsb_c00175{letter-spacing:0.034720pt;}
.lsf_c00175{letter-spacing:0.038304pt;}
.ls2_c00175{letter-spacing:0.048672pt;}
.ls7_c00175{letter-spacing:0.051200pt;}
.ls1a_c00175{letter-spacing:0.083200pt;}
.lse_c00175{letter-spacing:0.092480pt;}
.ls4_c00175{letter-spacing:0.128000pt;}
.ls21_c00175{letter-spacing:0.317952pt;}
.lsa_c00175{letter-spacing:21.040320pt;}
.ls5_c00175{letter-spacing:58.048000pt;}
.lsc_c00175{letter-spacing:58.688000pt;}
.ws2_c00175{word-spacing:-17.394720pt;}
.ws1_c00175{word-spacing:-17.366944pt;}
.ws3_c00175{word-spacing:-9.925632pt;}
.ws0_c00175{word-spacing:-9.408672pt;}
.ws25_c00175{word-spacing:-0.097216pt;}
.ws1e_c00175{word-spacing:-0.083200pt;}
.ws2d_c00175{word-spacing:-0.021280pt;}
.ws31_c00175{word-spacing:-0.012768pt;}
.ws7_c00175{word-spacing:0.000000pt;}
.ws2c_c00175{word-spacing:0.004256pt;}
.ws1d_c00175{word-spacing:0.006400pt;}
.ws2e_c00175{word-spacing:0.012768pt;}
.ws30_c00175{word-spacing:0.017024pt;}
.ws27_c00175{word-spacing:0.019200pt;}
.ws2f_c00175{word-spacing:0.021280pt;}
.ws16_c00175{word-spacing:0.025600pt;}
.ws4_c00175{word-spacing:0.048096pt;}
.ws24_c00175{word-spacing:0.070400pt;}
.ws5_c00175{word-spacing:0.096192pt;}
.ws6_c00175{word-spacing:0.122912pt;}
.ws11_c00175{word-spacing:0.211200pt;}
.ws1f_c00175{word-spacing:0.876800pt;}
.ws20_c00175{word-spacing:1.036800pt;}
.wse_c00175{word-spacing:1.273600pt;}
.wsd_c00175{word-spacing:1.286400pt;}
.ws13_c00175{word-spacing:1.587200pt;}
.wsc_c00175{word-spacing:1.606400pt;}
.ws12_c00175{word-spacing:1.638400pt;}
.wsb_c00175{word-spacing:1.894400pt;}
.wsa_c00175{word-spacing:1.926400pt;}
.ws10_c00175{word-spacing:2.508800pt;}
.wsf_c00175{word-spacing:2.611200pt;}
.ws26_c00175{word-spacing:3.558400pt;}
.ws21_c00175{word-spacing:4.070400pt;}
.ws22_c00175{word-spacing:4.217600pt;}
.ws2b_c00175{word-spacing:4.499200pt;}
.ws2a_c00175{word-spacing:4.512000pt;}
.ws18_c00175{word-spacing:4.748800pt;}
.ws17_c00175{word-spacing:4.774400pt;}
.ws9_c00175{word-spacing:8.006400pt;}
.ws8_c00175{word-spacing:8.083200pt;}
.ws19_c00175{word-spacing:9.568000pt;}
.ws1a_c00175{word-spacing:9.606400pt;}
.ws1b_c00175{word-spacing:10.892800pt;}
.ws1c_c00175{word-spacing:10.899200pt;}
.ws28_c00175{word-spacing:11.744000pt;}
.ws23_c00175{word-spacing:11.840000pt;}
.ws29_c00175{word-spacing:11.859200pt;}
.ws15_c00175{word-spacing:16.057600pt;}
.ws14_c00175{word-spacing:16.102400pt;}
._0_c00175{margin-left:-1.015360pt;}
._1_c00175{width:0.928000pt;}
.fs6_c00175{font-size:34.560000pt;}
.fs3_c00175{font-size:37.440000pt;}
.fs5_c00175{font-size:42.560000pt;}
.fs2_c00175{font-size:48.000000pt;}
.fs0_c00175{font-size:53.440000pt;}
.fs1_c00175{font-size:64.000000pt;}
.fs4_c00175{font-size:69.440000pt;}
.y0_c00175{bottom:0.000000pt;}
.y3_c00175{bottom:51.067067pt;}
.y4_c00175{bottom:54.587067pt;}
.y24_c00175{bottom:101.065307pt;}
.y23_c00175{bottom:117.390427pt;}
.y22_c00175{bottom:133.630427pt;}
.y21_c00175{bottom:149.865440pt;}
.y20_c00175{bottom:166.190427pt;}
.y1f_c00175{bottom:182.427067pt;}
.y1e_c00175{bottom:195.947067pt;}
.y1d_c00175{bottom:214.347067pt;}
.y1c_c00175{bottom:232.747067pt;}
.y1b_c00175{bottom:266.587067pt;}
.y1a_c00175{bottom:297.227067pt;}
.y19_c00175{bottom:335.787067pt;}
.y18_c00175{bottom:366.427067pt;}
.y17_c00175{bottom:406.427067pt;}
.y16_c00175{bottom:462.187067pt;}
.y15_c00175{bottom:492.747067pt;}
.y14_c00175{bottom:523.387067pt;}
.y13_c00175{bottom:553.947067pt;}
.y12_c00175{bottom:592.587067pt;}
.y11_c00175{bottom:623.147067pt;}
.y10_c00175{bottom:653.787067pt;}
.yf_c00175{bottom:692.347067pt;}
.ye_c00175{bottom:722.987067pt;}
.yd_c00175{bottom:761.547067pt;}
.yc_c00175{bottom:792.187067pt;}
.yb_c00175{bottom:822.747067pt;}
.ya_c00175{bottom:861.387067pt;}
.y9_c00175{bottom:891.947067pt;}
.y8_c00175{bottom:922.587067pt;}
.y7_c00175{bottom:953.147067pt;}
.y6_c00175{bottom:983.787067pt;}
.y5_c00175{bottom:1014.347067pt;}
.y2_c00175{bottom:1043.387067pt;}
.y1_c00175{bottom:1063.867067pt;}
.h2_c00175{height:42.656250pt;}
.h9_c00175{height:44.388750pt;}
.ha_c00175{height:44.395257pt;}
.h1_c00175{height:44.724687pt;}
.h3_c00175{height:50.062500pt;}
.h4_c00175{height:53.562500pt;}
.h5_c00175{height:57.894062pt;}
.h7_c00175{height:57.894596pt;}
.h6_c00175{height:66.750000pt;}
.h8_c00175{height:72.423750pt;}
.h0_c00175{height:1122.666667pt;}
.w1_c00175{width:793.333333pt;}
.w0_c00175{width:793.626667pt;}
.x0_c00175{left:0.000000pt;}
.x2_c00175{left:113.440000pt;}
.x1_c00175{left:129.280000pt;}
.x7_c00175{left:137.440000pt;}
.x5_c00175{left:161.440000pt;}
.x6_c00175{left:184.000000pt;}
.x4_c00175{left:386.880000pt;}
.x3_c00175{left:396.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_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_b723d34333adfe8d5f862745.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.100098;font-style:normal;font-weight:normal;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_3f743520ef13baf023f9612e.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;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_c00176;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00176;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;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_c00176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.v1_c00176{vertical-align:15.840000px;}
.v2_c00176{vertical-align:29.880000px;}
.lsd_c00176{letter-spacing:-0.151200px;}
.ls14_c00176{letter-spacing:-0.043200px;}
.ls13_c00176{letter-spacing:-0.036000px;}
.ls12_c00176{letter-spacing:-0.028800px;}
.ls15_c00176{letter-spacing:-0.021600px;}
.lsf_c00176{letter-spacing:-0.014400px;}
.lse_c00176{letter-spacing:-0.007200px;}
.ls16_c00176{letter-spacing:-0.003888px;}
.lsc_c00176{letter-spacing:0.000000px;}
.ls5_c00176{letter-spacing:0.007200px;}
.ls9_c00176{letter-spacing:0.014364px;}
.ls6_c00176{letter-spacing:0.014400px;}
.ls7_c00176{letter-spacing:0.021600px;}
.ls8_c00176{letter-spacing:0.028800px;}
.ls11_c00176{letter-spacing:0.036000px;}
.lsb_c00176{letter-spacing:0.043092px;}
.ls0_c00176{letter-spacing:0.048096px;}
.ls2_c00176{letter-spacing:0.054756px;}
.ls10_c00176{letter-spacing:0.093600px;}
.lsa_c00176{letter-spacing:0.104040px;}
.ls3_c00176{letter-spacing:0.144000px;}
.ls17_c00176{letter-spacing:0.357696px;}
.ls4_c00176{letter-spacing:66.024000px;}
.ls1_c00176{letter-spacing:1212.120000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00176{word-spacing:-17.964000px;}
.ws2_c00176{word-spacing:-11.166336px;}
.ws0_c00176{word-spacing:-10.584756px;}
.ws25_c00176{word-spacing:-0.028800px;}
.ws27_c00176{word-spacing:-0.023940px;}
.ws17_c00176{word-spacing:-0.014400px;}
.ws4_c00176{word-spacing:0.000000px;}
.ws26_c00176{word-spacing:0.004788px;}
.ws13_c00176{word-spacing:0.007200px;}
.ws7_c00176{word-spacing:0.014400px;}
.ws28_c00176{word-spacing:0.019152px;}
.ws3_c00176{word-spacing:0.042084px;}
.ws14_c00176{word-spacing:0.086400px;}
.ws24_c00176{word-spacing:0.381600px;}
.wsa_c00176{word-spacing:1.072800px;}
.wsb_c00176{word-spacing:1.116000px;}
.ws9_c00176{word-spacing:1.814400px;}
.ws8_c00176{word-spacing:1.864800px;}
.wsc_c00176{word-spacing:3.960000px;}
.ws1b_c00176{word-spacing:4.327200px;}
.ws1e_c00176{word-spacing:4.377600px;}
.ws1a_c00176{word-spacing:4.384800px;}
.ws21_c00176{word-spacing:5.385600px;}
.ws20_c00176{word-spacing:5.522400px;}
.ws10_c00176{word-spacing:5.760000px;}
.wsf_c00176{word-spacing:5.774400px;}
.ws11_c00176{word-spacing:6.148800px;}
.ws23_c00176{word-spacing:6.530400px;}
.ws22_c00176{word-spacing:6.595200px;}
.ws15_c00176{word-spacing:7.084800px;}
.ws16_c00176{word-spacing:7.214400px;}
.ws6_c00176{word-spacing:8.625600px;}
.ws5_c00176{word-spacing:8.647200px;}
.wse_c00176{word-spacing:9.734400px;}
.wsd_c00176{word-spacing:9.748800px;}
.ws12_c00176{word-spacing:11.908800px;}
.ws1f_c00176{word-spacing:15.789600px;}
.ws1d_c00176{word-spacing:15.861600px;}
.ws1c_c00176{word-spacing:15.876000px;}
.ws19_c00176{word-spacing:20.095200px;}
.ws18_c00176{word-spacing:20.203200px;}
._0_c00176{margin-left:-1.322640px;}
._1_c00176{width:1.052892px;}
.fc0_c00176{color:rgb(0,0,0);}
.fs5_c00176{font-size:38.880000px;}
.fs3_c00176{font-size:42.120000px;}
.fs4_c00176{font-size:47.880000px;}
.fs1_c00176{font-size:54.000000px;}
.fs0_c00176{font-size:60.120000px;}
.fs2_c00176{font-size:72.000000px;}
.y0_c00176{bottom:0.000000px;}
.y3_c00176{bottom:57.450450px;}
.y22_c00176{bottom:113.698470px;}
.y21_c00176{bottom:132.064230px;}
.y20_c00176{bottom:150.334230px;}
.y1f_c00176{bottom:168.598620px;}
.y1e_c00176{bottom:186.964230px;}
.y1d_c00176{bottom:205.230450px;}
.y1c_c00176{bottom:220.440450px;}
.y1b_c00176{bottom:241.140450px;}
.y1a_c00176{bottom:261.840450px;}
.y19_c00176{bottom:382.260450px;}
.y18_c00176{bottom:416.640450px;}
.y17_c00176{bottom:451.110450px;}
.y16_c00176{bottom:485.490450px;}
.y15_c00176{bottom:519.960450px;}
.y14_c00176{bottom:563.340450px;}
.y13_c00176{bottom:597.810450px;}
.y12_c00176{bottom:632.190450px;}
.y11_c00176{bottom:666.660450px;}
.y10_c00176{bottom:701.040450px;}
.yf_c00176{bottom:744.510600px;}
.ye_c00176{bottom:778.890600px;}
.yd_c00176{bottom:822.360450px;}
.yc_c00176{bottom:856.740450px;}
.yb_c00176{bottom:891.210450px;}
.ya_c00176{bottom:925.590450px;}
.y9_c00176{bottom:960.060450px;}
.y8_c00176{bottom:994.440450px;}
.y7_c00176{bottom:1028.910450px;}
.y6_c00176{bottom:1063.290450px;}
.y5_c00176{bottom:1106.760450px;}
.y4_c00176{bottom:1141.140450px;}
.y2_c00176{bottom:1177.860450px;}
.y1_c00176{bottom:1196.850450px;}
.h8_c00176{height:47.988281px;}
.h9_c00176{height:49.937344px;}
.ha_c00176{height:49.944664px;}
.hb_c00176{height:49.945264px;}
.h1_c00176{height:50.315273px;}
.h2_c00176{height:56.320312px;}
.h4_c00176{height:60.257812px;}
.h7_c00176{height:65.130220px;}
.h5_c00176{height:65.130820px;}
.h3_c00176{height:72.160312px;}
.h6_c00176{height:75.093750px;}
.h0_c00176{height:1263.000000px;}
.w1_c00176{width:892.500000px;}
.w0_c00176{width:892.830000px;}
.x0_c00176{left:0.000000px;}
.x1_c00176{left:127.620000px;}
.x3_c00176{left:154.440000px;}
.x2_c00176{left:181.170000px;}
.x4_c00176{left:207.180000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.v1_c00176{vertical-align:14.080000pt;}
.v2_c00176{vertical-align:26.560000pt;}
.lsd_c00176{letter-spacing:-0.134400pt;}
.ls14_c00176{letter-spacing:-0.038400pt;}
.ls13_c00176{letter-spacing:-0.032000pt;}
.ls12_c00176{letter-spacing:-0.025600pt;}
.ls15_c00176{letter-spacing:-0.019200pt;}
.lsf_c00176{letter-spacing:-0.012800pt;}
.lse_c00176{letter-spacing:-0.006400pt;}
.ls16_c00176{letter-spacing:-0.003456pt;}
.lsc_c00176{letter-spacing:0.000000pt;}
.ls5_c00176{letter-spacing:0.006400pt;}
.ls9_c00176{letter-spacing:0.012768pt;}
.ls6_c00176{letter-spacing:0.012800pt;}
.ls7_c00176{letter-spacing:0.019200pt;}
.ls8_c00176{letter-spacing:0.025600pt;}
.ls11_c00176{letter-spacing:0.032000pt;}
.lsb_c00176{letter-spacing:0.038304pt;}
.ls0_c00176{letter-spacing:0.042752pt;}
.ls2_c00176{letter-spacing:0.048672pt;}
.ls10_c00176{letter-spacing:0.083200pt;}
.lsa_c00176{letter-spacing:0.092480pt;}
.ls3_c00176{letter-spacing:0.128000pt;}
.ls17_c00176{letter-spacing:0.317952pt;}
.ls4_c00176{letter-spacing:58.688000pt;}
.ls1_c00176{letter-spacing:1077.440000pt;}
.ws1_c00176{word-spacing:-15.968000pt;}
.ws2_c00176{word-spacing:-9.925632pt;}
.ws0_c00176{word-spacing:-9.408672pt;}
.ws25_c00176{word-spacing:-0.025600pt;}
.ws27_c00176{word-spacing:-0.021280pt;}
.ws17_c00176{word-spacing:-0.012800pt;}
.ws4_c00176{word-spacing:0.000000pt;}
.ws26_c00176{word-spacing:0.004256pt;}
.ws13_c00176{word-spacing:0.006400pt;}
.ws7_c00176{word-spacing:0.012800pt;}
.ws28_c00176{word-spacing:0.017024pt;}
.ws3_c00176{word-spacing:0.037408pt;}
.ws14_c00176{word-spacing:0.076800pt;}
.ws24_c00176{word-spacing:0.339200pt;}
.wsa_c00176{word-spacing:0.953600pt;}
.wsb_c00176{word-spacing:0.992000pt;}
.ws9_c00176{word-spacing:1.612800pt;}
.ws8_c00176{word-spacing:1.657600pt;}
.wsc_c00176{word-spacing:3.520000pt;}
.ws1b_c00176{word-spacing:3.846400pt;}
.ws1e_c00176{word-spacing:3.891200pt;}
.ws1a_c00176{word-spacing:3.897600pt;}
.ws21_c00176{word-spacing:4.787200pt;}
.ws20_c00176{word-spacing:4.908800pt;}
.ws10_c00176{word-spacing:5.120000pt;}
.wsf_c00176{word-spacing:5.132800pt;}
.ws11_c00176{word-spacing:5.465600pt;}
.ws23_c00176{word-spacing:5.804800pt;}
.ws22_c00176{word-spacing:5.862400pt;}
.ws15_c00176{word-spacing:6.297600pt;}
.ws16_c00176{word-spacing:6.412800pt;}
.ws6_c00176{word-spacing:7.667200pt;}
.ws5_c00176{word-spacing:7.686400pt;}
.wse_c00176{word-spacing:8.652800pt;}
.wsd_c00176{word-spacing:8.665600pt;}
.ws12_c00176{word-spacing:10.585600pt;}
.ws1f_c00176{word-spacing:14.035200pt;}
.ws1d_c00176{word-spacing:14.099200pt;}
.ws1c_c00176{word-spacing:14.112000pt;}
.ws19_c00176{word-spacing:17.862400pt;}
.ws18_c00176{word-spacing:17.958400pt;}
._0_c00176{margin-left:-1.175680pt;}
._1_c00176{width:0.935904pt;}
.fs5_c00176{font-size:34.560000pt;}
.fs3_c00176{font-size:37.440000pt;}
.fs4_c00176{font-size:42.560000pt;}
.fs1_c00176{font-size:48.000000pt;}
.fs0_c00176{font-size:53.440000pt;}
.fs2_c00176{font-size:64.000000pt;}
.y0_c00176{bottom:0.000000pt;}
.y3_c00176{bottom:51.067067pt;}
.y22_c00176{bottom:101.065307pt;}
.y21_c00176{bottom:117.390427pt;}
.y20_c00176{bottom:133.630427pt;}
.y1f_c00176{bottom:149.865440pt;}
.y1e_c00176{bottom:166.190427pt;}
.y1d_c00176{bottom:182.427067pt;}
.y1c_c00176{bottom:195.947067pt;}
.y1b_c00176{bottom:214.347067pt;}
.y1a_c00176{bottom:232.747067pt;}
.y19_c00176{bottom:339.787067pt;}
.y18_c00176{bottom:370.347067pt;}
.y17_c00176{bottom:400.987067pt;}
.y16_c00176{bottom:431.547067pt;}
.y15_c00176{bottom:462.187067pt;}
.y14_c00176{bottom:500.747067pt;}
.y13_c00176{bottom:531.387067pt;}
.y12_c00176{bottom:561.947067pt;}
.y11_c00176{bottom:592.587067pt;}
.y10_c00176{bottom:623.147067pt;}
.yf_c00176{bottom:661.787200pt;}
.ye_c00176{bottom:692.347200pt;}
.yd_c00176{bottom:730.987067pt;}
.yc_c00176{bottom:761.547067pt;}
.yb_c00176{bottom:792.187067pt;}
.ya_c00176{bottom:822.747067pt;}
.y9_c00176{bottom:853.387067pt;}
.y8_c00176{bottom:883.947067pt;}
.y7_c00176{bottom:914.587067pt;}
.y6_c00176{bottom:945.147067pt;}
.y5_c00176{bottom:983.787067pt;}
.y4_c00176{bottom:1014.347067pt;}
.y2_c00176{bottom:1046.987067pt;}
.y1_c00176{bottom:1063.867067pt;}
.h8_c00176{height:42.656250pt;}
.h9_c00176{height:44.388750pt;}
.ha_c00176{height:44.395257pt;}
.hb_c00176{height:44.395790pt;}
.h1_c00176{height:44.724687pt;}
.h2_c00176{height:50.062500pt;}
.h4_c00176{height:53.562500pt;}
.h7_c00176{height:57.893529pt;}
.h5_c00176{height:57.894063pt;}
.h3_c00176{height:64.142500pt;}
.h6_c00176{height:66.750000pt;}
.h0_c00176{height:1122.666667pt;}
.w1_c00176{width:793.333333pt;}
.w0_c00176{width:793.626667pt;}
.x0_c00176{left:0.000000pt;}
.x1_c00176{left:113.440000pt;}
.x3_c00176{left:137.280000pt;}
.x2_c00176{left:161.040000pt;}
.x4_c00176{left:184.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_030d4397dd81bef3c7e69289.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00177;src:url('chunks/assets/font_d17c6156df7469cd1facee40.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00177;src:url('chunks/assets/font_348454e16ec1f944bc4cf721.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00177;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;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_c00177;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff6_c00177{font-family:ff6_c00177;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_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;}
.v1_c00177{vertical-align:29.880000px;}
.ls15_c00177{letter-spacing:-0.151200px;}
.ls13_c00177{letter-spacing:-0.048096px;}
.ls1a_c00177{letter-spacing:-0.036000px;}
.ls16_c00177{letter-spacing:-0.031248px;}
.ls17_c00177{letter-spacing:-0.028800px;}
.ls1b_c00177{letter-spacing:-0.021600px;}
.ls12_c00177{letter-spacing:-0.018036px;}
.ls1c_c00177{letter-spacing:-0.014400px;}
.ls18_c00177{letter-spacing:-0.007200px;}
.ls1e_c00177{letter-spacing:-0.003888px;}
.ls14_c00177{letter-spacing:0.000000px;}
.lse_c00177{letter-spacing:0.004788px;}
.ls7_c00177{letter-spacing:0.007200px;}
.ls1_c00177{letter-spacing:0.007812px;}
.lsb_c00177{letter-spacing:0.014364px;}
.ls8_c00177{letter-spacing:0.014400px;}
.ls10_c00177{letter-spacing:0.019152px;}
.ls4_c00177{letter-spacing:0.021600px;}
.lsf_c00177{letter-spacing:0.028728px;}
.lsa_c00177{letter-spacing:0.033516px;}
.ls1d_c00177{letter-spacing:0.036000px;}
.ls0_c00177{letter-spacing:0.036072px;}
.lsd_c00177{letter-spacing:0.043092px;}
.ls9_c00177{letter-spacing:0.043200px;}
.ls11_c00177{letter-spacing:0.047880px;}
.ls3_c00177{letter-spacing:0.054756px;}
.ls19_c00177{letter-spacing:0.093600px;}
.lsc_c00177{letter-spacing:0.104040px;}
.ls5_c00177{letter-spacing:0.144000px;}
.ls1f_c00177{letter-spacing:0.357696px;}
.ls2_c00177{letter-spacing:23.670360px;}
.ls6_c00177{letter-spacing:66.024000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00177{word-spacing:-19.537812px;}
.ws2_c00177{word-spacing:-11.166336px;}
.ws1_c00177{word-spacing:-10.584756px;}
.ws7_c00177{word-spacing:-0.109368px;}
.ws2e_c00177{word-spacing:-0.028728px;}
.ws29_c00177{word-spacing:-0.023940px;}
.ws27_c00177{word-spacing:-0.014364px;}
.ws6_c00177{word-spacing:0.000000px;}
.ws28_c00177{word-spacing:0.004788px;}
.ws2a_c00177{word-spacing:0.014364px;}
.ws26_c00177{word-spacing:0.014400px;}
.ws2f_c00177{word-spacing:0.019152px;}
.ws3_c00177{word-spacing:0.054108px;}
.ws9_c00177{word-spacing:0.057600px;}
.ws25_c00177{word-spacing:0.079200px;}
.ws4_c00177{word-spacing:0.108216px;}
.ws5_c00177{word-spacing:0.138276px;}
.ws8_c00177{word-spacing:0.151200px;}
.ws1b_c00177{word-spacing:0.208800px;}
.ws1a_c00177{word-spacing:0.324000px;}
.ws2d_c00177{word-spacing:0.344736px;}
.ws19_c00177{word-spacing:0.367200px;}
.ws12_c00177{word-spacing:0.374400px;}
.ws13_c00177{word-spacing:0.432000px;}
.ws24_c00177{word-spacing:1.087200px;}
.ws23_c00177{word-spacing:1.137600px;}
.wsd_c00177{word-spacing:1.461600px;}
.wsc_c00177{word-spacing:1.476000px;}
.ws1c_c00177{word-spacing:3.592800px;}
.ws1d_c00177{word-spacing:3.643200px;}
.ws1e_c00177{word-spacing:3.888000px;}
.ws16_c00177{word-spacing:3.945600px;}
.ws1f_c00177{word-spacing:4.032000px;}
.ws15_c00177{word-spacing:4.053600px;}
.ws2c_c00177{word-spacing:4.668300px;}
.ws2b_c00177{word-spacing:4.682664px;}
.wse_c00177{word-spacing:5.032800px;}
.wsf_c00177{word-spacing:5.112000px;}
.ws22_c00177{word-spacing:6.480000px;}
.ws10_c00177{word-spacing:6.818400px;}
.ws21_c00177{word-spacing:9.727200px;}
.ws20_c00177{word-spacing:9.741600px;}
.ws14_c00177{word-spacing:12.614400px;}
.wsb_c00177{word-spacing:13.658400px;}
.wsa_c00177{word-spacing:13.687200px;}
.ws11_c00177{word-spacing:17.661600px;}
.ws18_c00177{word-spacing:19.749600px;}
.ws17_c00177{word-spacing:19.828800px;}
._0_c00177{margin-left:-1.142280px;}
._1_c00177{width:1.368000px;}
.fc0_c00177{color:rgb(0,0,0);}
.fs6_c00177{font-size:38.880000px;}
.fs4_c00177{font-size:42.120000px;}
.fs5_c00177{font-size:47.880000px;}
.fs2_c00177{font-size:54.000000px;}
.fs0_c00177{font-size:60.120000px;}
.fs1_c00177{font-size:72.000000px;}
.fs3_c00177{font-size:78.120000px;}
.y0_c00177{bottom:0.000000px;}
.y3_c00177{bottom:57.450450px;}
.y4_c00177{bottom:61.410450px;}
.y22_c00177{bottom:113.706750px;}
.y21_c00177{bottom:132.068730px;}
.y20_c00177{bottom:145.834230px;}
.y1f_c00177{bottom:164.098620px;}
.y1e_c00177{bottom:182.460600px;}
.y1d_c00177{bottom:197.670450px;}
.y1c_c00177{bottom:218.370450px;}
.y1b_c00177{bottom:239.070450px;}
.y1a_c00177{bottom:388.380450px;}
.y19_c00177{bottom:422.760450px;}
.y18_c00177{bottom:457.230450px;}
.y17_c00177{bottom:491.610450px;}
.y16_c00177{bottom:526.080450px;}
.y15_c00177{bottom:560.460450px;}
.y14_c00177{bottom:594.930450px;}
.y13_c00177{bottom:638.310450px;}
.y12_c00177{bottom:672.780450px;}
.y11_c00177{bottom:707.160450px;}
.y10_c00177{bottom:741.630450px;}
.yf_c00177{bottom:776.010450px;}
.ye_c00177{bottom:810.480450px;}
.yd_c00177{bottom:844.860450px;}
.yc_c00177{bottom:879.330450px;}
.yb_c00177{bottom:913.710450px;}
.ya_c00177{bottom:948.180450px;}
.y9_c00177{bottom:982.560450px;}
.y8_c00177{bottom:1026.030450px;}
.y7_c00177{bottom:1060.410450px;}
.y6_c00177{bottom:1094.880450px;}
.y5_c00177{bottom:1139.880450px;}
.y2_c00177{bottom:1173.810450px;}
.y1_c00177{bottom:1196.850450px;}
.h2_c00177{height:47.988281px;}
.h8_c00177{height:49.937344px;}
.h9_c00177{height:49.944664px;}
.h1_c00177{height:50.315273px;}
.h3_c00177{height:56.320312px;}
.h6_c00177{height:60.257812px;}
.h5_c00177{height:65.130820px;}
.h7_c00177{height:75.093750px;}
.h4_c00177{height:81.476719px;}
.h0_c00177{height:1263.000000px;}
.w1_c00177{width:892.500000px;}
.w0_c00177{width:892.830000px;}
.x0_c00177{left:0.000000px;}
.x2_c00177{left:127.620000px;}
.x1_c00177{left:145.440000px;}
.x6_c00177{left:154.440000px;}
.x5_c00177{left:180.810000px;}
.x4_c00177{left:435.240000px;}
.x3_c00177{left:446.490000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.v1_c00177{vertical-align:26.560000pt;}
.ls15_c00177{letter-spacing:-0.134400pt;}
.ls13_c00177{letter-spacing:-0.042752pt;}
.ls1a_c00177{letter-spacing:-0.032000pt;}
.ls16_c00177{letter-spacing:-0.027776pt;}
.ls17_c00177{letter-spacing:-0.025600pt;}
.ls1b_c00177{letter-spacing:-0.019200pt;}
.ls12_c00177{letter-spacing:-0.016032pt;}
.ls1c_c00177{letter-spacing:-0.012800pt;}
.ls18_c00177{letter-spacing:-0.006400pt;}
.ls1e_c00177{letter-spacing:-0.003456pt;}
.ls14_c00177{letter-spacing:0.000000pt;}
.lse_c00177{letter-spacing:0.004256pt;}
.ls7_c00177{letter-spacing:0.006400pt;}
.ls1_c00177{letter-spacing:0.006944pt;}
.lsb_c00177{letter-spacing:0.012768pt;}
.ls8_c00177{letter-spacing:0.012800pt;}
.ls10_c00177{letter-spacing:0.017024pt;}
.ls4_c00177{letter-spacing:0.019200pt;}
.lsf_c00177{letter-spacing:0.025536pt;}
.lsa_c00177{letter-spacing:0.029792pt;}
.ls1d_c00177{letter-spacing:0.032000pt;}
.ls0_c00177{letter-spacing:0.032064pt;}
.lsd_c00177{letter-spacing:0.038304pt;}
.ls9_c00177{letter-spacing:0.038400pt;}
.ls11_c00177{letter-spacing:0.042560pt;}
.ls3_c00177{letter-spacing:0.048672pt;}
.ls19_c00177{letter-spacing:0.083200pt;}
.lsc_c00177{letter-spacing:0.092480pt;}
.ls5_c00177{letter-spacing:0.128000pt;}
.ls1f_c00177{letter-spacing:0.317952pt;}
.ls2_c00177{letter-spacing:21.040320pt;}
.ls6_c00177{letter-spacing:58.688000pt;}
.ws0_c00177{word-spacing:-17.366944pt;}
.ws2_c00177{word-spacing:-9.925632pt;}
.ws1_c00177{word-spacing:-9.408672pt;}
.ws7_c00177{word-spacing:-0.097216pt;}
.ws2e_c00177{word-spacing:-0.025536pt;}
.ws29_c00177{word-spacing:-0.021280pt;}
.ws27_c00177{word-spacing:-0.012768pt;}
.ws6_c00177{word-spacing:0.000000pt;}
.ws28_c00177{word-spacing:0.004256pt;}
.ws2a_c00177{word-spacing:0.012768pt;}
.ws26_c00177{word-spacing:0.012800pt;}
.ws2f_c00177{word-spacing:0.017024pt;}
.ws3_c00177{word-spacing:0.048096pt;}
.ws9_c00177{word-spacing:0.051200pt;}
.ws25_c00177{word-spacing:0.070400pt;}
.ws4_c00177{word-spacing:0.096192pt;}
.ws5_c00177{word-spacing:0.122912pt;}
.ws8_c00177{word-spacing:0.134400pt;}
.ws1b_c00177{word-spacing:0.185600pt;}
.ws1a_c00177{word-spacing:0.288000pt;}
.ws2d_c00177{word-spacing:0.306432pt;}
.ws19_c00177{word-spacing:0.326400pt;}
.ws12_c00177{word-spacing:0.332800pt;}
.ws13_c00177{word-spacing:0.384000pt;}
.ws24_c00177{word-spacing:0.966400pt;}
.ws23_c00177{word-spacing:1.011200pt;}
.wsd_c00177{word-spacing:1.299200pt;}
.wsc_c00177{word-spacing:1.312000pt;}
.ws1c_c00177{word-spacing:3.193600pt;}
.ws1d_c00177{word-spacing:3.238400pt;}
.ws1e_c00177{word-spacing:3.456000pt;}
.ws16_c00177{word-spacing:3.507200pt;}
.ws1f_c00177{word-spacing:3.584000pt;}
.ws15_c00177{word-spacing:3.603200pt;}
.ws2c_c00177{word-spacing:4.149600pt;}
.ws2b_c00177{word-spacing:4.162368pt;}
.wse_c00177{word-spacing:4.473600pt;}
.wsf_c00177{word-spacing:4.544000pt;}
.ws22_c00177{word-spacing:5.760000pt;}
.ws10_c00177{word-spacing:6.060800pt;}
.ws21_c00177{word-spacing:8.646400pt;}
.ws20_c00177{word-spacing:8.659200pt;}
.ws14_c00177{word-spacing:11.212800pt;}
.wsb_c00177{word-spacing:12.140800pt;}
.wsa_c00177{word-spacing:12.166400pt;}
.ws11_c00177{word-spacing:15.699200pt;}
.ws18_c00177{word-spacing:17.555200pt;}
.ws17_c00177{word-spacing:17.625600pt;}
._0_c00177{margin-left:-1.015360pt;}
._1_c00177{width:1.216000pt;}
.fs6_c00177{font-size:34.560000pt;}
.fs4_c00177{font-size:37.440000pt;}
.fs5_c00177{font-size:42.560000pt;}
.fs2_c00177{font-size:48.000000pt;}
.fs0_c00177{font-size:53.440000pt;}
.fs1_c00177{font-size:64.000000pt;}
.fs3_c00177{font-size:69.440000pt;}
.y0_c00177{bottom:0.000000pt;}
.y3_c00177{bottom:51.067067pt;}
.y4_c00177{bottom:54.587067pt;}
.y22_c00177{bottom:101.072667pt;}
.y21_c00177{bottom:117.394427pt;}
.y20_c00177{bottom:129.630427pt;}
.y1f_c00177{bottom:145.865440pt;}
.y1e_c00177{bottom:162.187200pt;}
.y1d_c00177{bottom:175.707067pt;}
.y1c_c00177{bottom:194.107067pt;}
.y1b_c00177{bottom:212.507067pt;}
.y1a_c00177{bottom:345.227067pt;}
.y19_c00177{bottom:375.787067pt;}
.y18_c00177{bottom:406.427067pt;}
.y17_c00177{bottom:436.987067pt;}
.y16_c00177{bottom:467.627067pt;}
.y15_c00177{bottom:498.187067pt;}
.y14_c00177{bottom:528.827067pt;}
.y13_c00177{bottom:567.387067pt;}
.y12_c00177{bottom:598.027067pt;}
.y11_c00177{bottom:628.587067pt;}
.y10_c00177{bottom:659.227067pt;}
.yf_c00177{bottom:689.787067pt;}
.ye_c00177{bottom:720.427067pt;}
.yd_c00177{bottom:750.987067pt;}
.yc_c00177{bottom:781.627067pt;}
.yb_c00177{bottom:812.187067pt;}
.ya_c00177{bottom:842.827067pt;}
.y9_c00177{bottom:873.387067pt;}
.y8_c00177{bottom:912.027067pt;}
.y7_c00177{bottom:942.587067pt;}
.y6_c00177{bottom:973.227067pt;}
.y5_c00177{bottom:1013.227067pt;}
.y2_c00177{bottom:1043.387067pt;}
.y1_c00177{bottom:1063.867067pt;}
.h2_c00177{height:42.656250pt;}
.h8_c00177{height:44.388750pt;}
.h9_c00177{height:44.395257pt;}
.h1_c00177{height:44.724687pt;}
.h3_c00177{height:50.062500pt;}
.h6_c00177{height:53.562500pt;}
.h5_c00177{height:57.894062pt;}
.h7_c00177{height:66.750000pt;}
.h4_c00177{height:72.423750pt;}
.h0_c00177{height:1122.666667pt;}
.w1_c00177{width:793.333333pt;}
.w0_c00177{width:793.626667pt;}
.x0_c00177{left:0.000000pt;}
.x2_c00177{left:113.440000pt;}
.x1_c00177{left:129.280000pt;}
.x6_c00177{left:137.280000pt;}
.x5_c00177{left:160.720000pt;}
.x4_c00177{left:386.880000pt;}
.x3_c00177{left:396.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_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_45ff4dd2bc25c13865d80b05.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.100098;font-style:normal;font-weight:normal;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_d89268b713aee06354ddd701.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00178;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00178;src:url('chunks/assets/font_af47c38e4c5c44d104ee525a.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00178;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00178;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff6_c00178{font-family:ff6_c00178;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.v1_c00178{vertical-align:15.840000px;}
.v2_c00178{vertical-align:29.880000px;}
.ls12_c00178{letter-spacing:-0.151200px;}
.ls1a_c00178{letter-spacing:-0.109368px;}
.ls1c_c00178{letter-spacing:-0.054684px;}
.ls20_c00178{letter-spacing:-0.039060px;}
.ls1d_c00178{letter-spacing:-0.036000px;}
.ls1f_c00178{letter-spacing:-0.031248px;}
.ls18_c00178{letter-spacing:-0.028800px;}
.ls16_c00178{letter-spacing:-0.021600px;}
.ls1e_c00178{letter-spacing:-0.015624px;}
.ls14_c00178{letter-spacing:-0.014400px;}
.ls1b_c00178{letter-spacing:-0.007812px;}
.ls13_c00178{letter-spacing:-0.007200px;}
.ls21_c00178{letter-spacing:-0.003888px;}
.ls11_c00178{letter-spacing:0.000000px;}
.ls8_c00178{letter-spacing:0.007200px;}
.ls6_c00178{letter-spacing:0.007812px;}
.lse_c00178{letter-spacing:0.014364px;}
.ls15_c00178{letter-spacing:0.014400px;}
.lsc_c00178{letter-spacing:0.015624px;}
.lsd_c00178{letter-spacing:0.021600px;}
.ls9_c00178{letter-spacing:0.031248px;}
.ls5_c00178{letter-spacing:0.036000px;}
.ls10_c00178{letter-spacing:0.043092px;}
.ls0_c00178{letter-spacing:0.048096px;}
.ls19_c00178{letter-spacing:0.054684px;}
.ls4_c00178{letter-spacing:0.054756px;}
.ls17_c00178{letter-spacing:0.093600px;}
.lsf_c00178{letter-spacing:0.104040px;}
.ls2_c00178{letter-spacing:0.144000px;}
.ls22_c00178{letter-spacing:0.357696px;}
.ls7_c00178{letter-spacing:23.670360px;}
.lsb_c00178{letter-spacing:29.373120px;}
.ls3_c00178{letter-spacing:66.024000px;}
.lsa_c00178{letter-spacing:77.260680px;}
.ls1_c00178{letter-spacing:1212.120000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00178{word-spacing:-19.561248px;}
.ws5_c00178{word-spacing:-19.545624px;}
.ws2_c00178{word-spacing:-19.537812px;}
.ws4_c00178{word-spacing:-19.514376px;}
.ws6_c00178{word-spacing:-19.498752px;}
.ws1_c00178{word-spacing:-18.036000px;}
.ws7_c00178{word-spacing:-11.166336px;}
.ws0_c00178{word-spacing:-10.584756px;}
.ws1b_c00178{word-spacing:-0.085932px;}
.ws25_c00178{word-spacing:-0.054684px;}
.ws2b_c00178{word-spacing:-0.023940px;}
.ws24_c00178{word-spacing:-0.007200px;}
.ws9_c00178{word-spacing:0.000000px;}
.ws2a_c00178{word-spacing:0.004788px;}
.wsf_c00178{word-spacing:0.007200px;}
.ws1a_c00178{word-spacing:0.014400px;}
.ws15_c00178{word-spacing:0.015624px;}
.ws8_c00178{word-spacing:0.042084px;}
.ws21_c00178{word-spacing:0.072000px;}
.ws23_c00178{word-spacing:0.093600px;}
.wsb_c00178{word-spacing:0.734400px;}
.wsa_c00178{word-spacing:0.784800px;}
.wsc_c00178{word-spacing:0.885600px;}
.ws1e_c00178{word-spacing:1.101600px;}
.ws19_c00178{word-spacing:2.541600px;}
.ws20_c00178{word-spacing:2.556000px;}
.ws1f_c00178{word-spacing:3.974400px;}
.ws1c_c00178{word-spacing:4.262400px;}
.ws1d_c00178{word-spacing:4.348800px;}
.ws28_c00178{word-spacing:4.658400px;}
.ws29_c00178{word-spacing:4.773600px;}
.wsd_c00178{word-spacing:5.421600px;}
.wse_c00178{word-spacing:5.450400px;}
.ws18_c00178{word-spacing:5.860800px;}
.ws16_c00178{word-spacing:5.875200px;}
.ws17_c00178{word-spacing:5.932800px;}
.ws10_c00178{word-spacing:8.280000px;}
.ws11_c00178{word-spacing:8.409600px;}
.ws14_c00178{word-spacing:9.626400px;}
.ws13_c00178{word-spacing:9.662400px;}
.ws27_c00178{word-spacing:12.960000px;}
.ws26_c00178{word-spacing:13.024800px;}
.ws12_c00178{word-spacing:22.341600px;}
.ws22_c00178{word-spacing:33.487200px;}
._0_c00178{margin-left:-1.322640px;}
._1_c00178{width:1.044000px;}
.fc0_c00178{color:rgb(0,0,0);}
.fs6_c00178{font-size:38.880000px;}
.fs3_c00178{font-size:42.120000px;}
.fs5_c00178{font-size:47.880000px;}
.fs1_c00178{font-size:54.000000px;}
.fs0_c00178{font-size:60.120000px;}
.fs2_c00178{font-size:72.000000px;}
.fs4_c00178{font-size:78.120000px;}
.y0_c00178{bottom:0.000000px;}
.y3_c00178{bottom:57.450450px;}
.y20_c00178{bottom:113.698470px;}
.y1f_c00178{bottom:132.064230px;}
.y1e_c00178{bottom:150.330450px;}
.y1d_c00178{bottom:165.540450px;}
.y1c_c00178{bottom:186.240450px;}
.y1b_c00178{bottom:206.940450px;}
.y1a_c00178{bottom:240.240450px;}
.y19_c00178{bottom:274.620450px;}
.y18_c00178{bottom:319.710600px;}
.y17_c00178{bottom:382.350450px;}
.y16_c00178{bottom:416.820450px;}
.y15_c00178{bottom:460.200450px;}
.y14_c00178{bottom:494.670450px;}
.y13_c00178{bottom:529.050450px;}
.y12_c00178{bottom:563.520450px;}
.y11_c00178{bottom:597.900450px;}
.y10_c00178{bottom:642.900450px;}
.yf_c00178{bottom:705.630450px;}
.ye_c00178{bottom:740.010450px;}
.yd_c00178{bottom:774.480450px;}
.yc_c00178{bottom:819.480450px;}
.yb_c00178{bottom:882.210450px;}
.ya_c00178{bottom:916.590450px;}
.y9_c00178{bottom:951.060450px;}
.y8_c00178{bottom:994.440450px;}
.y7_c00178{bottom:1028.910450px;}
.y6_c00178{bottom:1072.290450px;}
.y5_c00178{bottom:1106.760450px;}
.y4_c00178{bottom:1141.140450px;}
.y2_c00178{bottom:1177.860450px;}
.y1_c00178{bottom:1196.850450px;}
.h9_c00178{height:47.988281px;}
.ha_c00178{height:49.937344px;}
.hb_c00178{height:49.945264px;}
.h1_c00178{height:50.315273px;}
.h2_c00178{height:56.320312px;}
.h5_c00178{height:60.257812px;}
.h6_c00178{height:65.130820px;}
.h7_c00178{height:65.131420px;}
.h3_c00178{height:72.160312px;}
.h4_c00178{height:75.093750px;}
.h8_c00178{height:81.476719px;}
.h0_c00178{height:1263.000000px;}
.w1_c00178{width:892.500000px;}
.w0_c00178{width:892.830000px;}
.x0_c00178{left:0.000000px;}
.x1_c00178{left:127.620000px;}
.x2_c00178{left:154.440000px;}
.x3_c00178{left:181.170000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.v1_c00178{vertical-align:14.080000pt;}
.v2_c00178{vertical-align:26.560000pt;}
.ls12_c00178{letter-spacing:-0.134400pt;}
.ls1a_c00178{letter-spacing:-0.097216pt;}
.ls1c_c00178{letter-spacing:-0.048608pt;}
.ls20_c00178{letter-spacing:-0.034720pt;}
.ls1d_c00178{letter-spacing:-0.032000pt;}
.ls1f_c00178{letter-spacing:-0.027776pt;}
.ls18_c00178{letter-spacing:-0.025600pt;}
.ls16_c00178{letter-spacing:-0.019200pt;}
.ls1e_c00178{letter-spacing:-0.013888pt;}
.ls14_c00178{letter-spacing:-0.012800pt;}
.ls1b_c00178{letter-spacing:-0.006944pt;}
.ls13_c00178{letter-spacing:-0.006400pt;}
.ls21_c00178{letter-spacing:-0.003456pt;}
.ls11_c00178{letter-spacing:0.000000pt;}
.ls8_c00178{letter-spacing:0.006400pt;}
.ls6_c00178{letter-spacing:0.006944pt;}
.lse_c00178{letter-spacing:0.012768pt;}
.ls15_c00178{letter-spacing:0.012800pt;}
.lsc_c00178{letter-spacing:0.013888pt;}
.lsd_c00178{letter-spacing:0.019200pt;}
.ls9_c00178{letter-spacing:0.027776pt;}
.ls5_c00178{letter-spacing:0.032000pt;}
.ls10_c00178{letter-spacing:0.038304pt;}
.ls0_c00178{letter-spacing:0.042752pt;}
.ls19_c00178{letter-spacing:0.048608pt;}
.ls4_c00178{letter-spacing:0.048672pt;}
.ls17_c00178{letter-spacing:0.083200pt;}
.lsf_c00178{letter-spacing:0.092480pt;}
.ls2_c00178{letter-spacing:0.128000pt;}
.ls22_c00178{letter-spacing:0.317952pt;}
.ls7_c00178{letter-spacing:21.040320pt;}
.lsb_c00178{letter-spacing:26.109440pt;}
.ls3_c00178{letter-spacing:58.688000pt;}
.lsa_c00178{letter-spacing:68.676160pt;}
.ls1_c00178{letter-spacing:1077.440000pt;}
.ws3_c00178{word-spacing:-17.387776pt;}
.ws5_c00178{word-spacing:-17.373888pt;}
.ws2_c00178{word-spacing:-17.366944pt;}
.ws4_c00178{word-spacing:-17.346112pt;}
.ws6_c00178{word-spacing:-17.332224pt;}
.ws1_c00178{word-spacing:-16.032000pt;}
.ws7_c00178{word-spacing:-9.925632pt;}
.ws0_c00178{word-spacing:-9.408672pt;}
.ws1b_c00178{word-spacing:-0.076384pt;}
.ws25_c00178{word-spacing:-0.048608pt;}
.ws2b_c00178{word-spacing:-0.021280pt;}
.ws24_c00178{word-spacing:-0.006400pt;}
.ws9_c00178{word-spacing:0.000000pt;}
.ws2a_c00178{word-spacing:0.004256pt;}
.wsf_c00178{word-spacing:0.006400pt;}
.ws1a_c00178{word-spacing:0.012800pt;}
.ws15_c00178{word-spacing:0.013888pt;}
.ws8_c00178{word-spacing:0.037408pt;}
.ws21_c00178{word-spacing:0.064000pt;}
.ws23_c00178{word-spacing:0.083200pt;}
.wsb_c00178{word-spacing:0.652800pt;}
.wsa_c00178{word-spacing:0.697600pt;}
.wsc_c00178{word-spacing:0.787200pt;}
.ws1e_c00178{word-spacing:0.979200pt;}
.ws19_c00178{word-spacing:2.259200pt;}
.ws20_c00178{word-spacing:2.272000pt;}
.ws1f_c00178{word-spacing:3.532800pt;}
.ws1c_c00178{word-spacing:3.788800pt;}
.ws1d_c00178{word-spacing:3.865600pt;}
.ws28_c00178{word-spacing:4.140800pt;}
.ws29_c00178{word-spacing:4.243200pt;}
.wsd_c00178{word-spacing:4.819200pt;}
.wse_c00178{word-spacing:4.844800pt;}
.ws18_c00178{word-spacing:5.209600pt;}
.ws16_c00178{word-spacing:5.222400pt;}
.ws17_c00178{word-spacing:5.273600pt;}
.ws10_c00178{word-spacing:7.360000pt;}
.ws11_c00178{word-spacing:7.475200pt;}
.ws14_c00178{word-spacing:8.556800pt;}
.ws13_c00178{word-spacing:8.588800pt;}
.ws27_c00178{word-spacing:11.520000pt;}
.ws26_c00178{word-spacing:11.577600pt;}
.ws12_c00178{word-spacing:19.859200pt;}
.ws22_c00178{word-spacing:29.766400pt;}
._0_c00178{margin-left:-1.175680pt;}
._1_c00178{width:0.928000pt;}
.fs6_c00178{font-size:34.560000pt;}
.fs3_c00178{font-size:37.440000pt;}
.fs5_c00178{font-size:42.560000pt;}
.fs1_c00178{font-size:48.000000pt;}
.fs0_c00178{font-size:53.440000pt;}
.fs2_c00178{font-size:64.000000pt;}
.fs4_c00178{font-size:69.440000pt;}
.y0_c00178{bottom:0.000000pt;}
.y3_c00178{bottom:51.067067pt;}
.y20_c00178{bottom:101.065307pt;}
.y1f_c00178{bottom:117.390427pt;}
.y1e_c00178{bottom:133.627067pt;}
.y1d_c00178{bottom:147.147067pt;}
.y1c_c00178{bottom:165.547067pt;}
.y1b_c00178{bottom:183.947067pt;}
.y1a_c00178{bottom:213.547067pt;}
.y19_c00178{bottom:244.107067pt;}
.y18_c00178{bottom:284.187200pt;}
.y17_c00178{bottom:339.867067pt;}
.y16_c00178{bottom:370.507067pt;}
.y15_c00178{bottom:409.067067pt;}
.y14_c00178{bottom:439.707067pt;}
.y13_c00178{bottom:470.267067pt;}
.y12_c00178{bottom:500.907067pt;}
.y11_c00178{bottom:531.467067pt;}
.y10_c00178{bottom:571.467067pt;}
.yf_c00178{bottom:627.227067pt;}
.ye_c00178{bottom:657.787067pt;}
.yd_c00178{bottom:688.427067pt;}
.yc_c00178{bottom:728.427067pt;}
.yb_c00178{bottom:784.187067pt;}
.ya_c00178{bottom:814.747067pt;}
.y9_c00178{bottom:845.387067pt;}
.y8_c00178{bottom:883.947067pt;}
.y7_c00178{bottom:914.587067pt;}
.y6_c00178{bottom:953.147067pt;}
.y5_c00178{bottom:983.787067pt;}
.y4_c00178{bottom:1014.347067pt;}
.y2_c00178{bottom:1046.987067pt;}
.y1_c00178{bottom:1063.867067pt;}
.h9_c00178{height:42.656250pt;}
.ha_c00178{height:44.388750pt;}
.hb_c00178{height:44.395790pt;}
.h1_c00178{height:44.724687pt;}
.h2_c00178{height:50.062500pt;}
.h5_c00178{height:53.562500pt;}
.h6_c00178{height:57.894062pt;}
.h7_c00178{height:57.894596pt;}
.h3_c00178{height:64.142500pt;}
.h4_c00178{height:66.750000pt;}
.h8_c00178{height:72.423750pt;}
.h0_c00178{height:1122.666667pt;}
.w1_c00178{width:793.333333pt;}
.w0_c00178{width:793.626667pt;}
.x0_c00178{left:0.000000pt;}
.x1_c00178{left:113.440000pt;}
.x2_c00178{left:137.280000pt;}
.x3_c00178{left:161.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aa629ac1d3498db8ba3f9263.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00179;src:url('chunks/assets/font_f08838f1fe3cef31e77a3222.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00179;src:url('chunks/assets/font_9d17b2e916d1a64ba8997622.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;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_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;}
.v1_c00179{vertical-align:29.880000px;}
.ls1a_c00179{letter-spacing:-0.151200px;}
.ls18_c00179{letter-spacing:-0.048096px;}
.ls1e_c00179{letter-spacing:-0.028800px;}
.ls25_c00179{letter-spacing:-0.023328px;}
.ls1c_c00179{letter-spacing:-0.021600px;}
.ls17_c00179{letter-spacing:-0.018036px;}
.ls24_c00179{letter-spacing:-0.015552px;}
.ls1b_c00179{letter-spacing:-0.014400px;}
.ls23_c00179{letter-spacing:-0.011664px;}
.ls28_c00179{letter-spacing:-0.009576px;}
.ls26_c00179{letter-spacing:-0.007776px;}
.ls1d_c00179{letter-spacing:-0.007200px;}
.ls2a_c00179{letter-spacing:-0.004788px;}
.ls21_c00179{letter-spacing:-0.003888px;}
.ls19_c00179{letter-spacing:0.000000px;}
.ls13_c00179{letter-spacing:0.003888px;}
.ls7_c00179{letter-spacing:0.005760px;}
.ls27_c00179{letter-spacing:0.009576px;}
.ls5_c00179{letter-spacing:0.014364px;}
.ls11_c00179{letter-spacing:0.018720px;}
.ls12_c00179{letter-spacing:0.019152px;}
.lsd_c00179{letter-spacing:0.023940px;}
.ls8_c00179{letter-spacing:0.033516px;}
.ls4_c00179{letter-spacing:0.036000px;}
.ls0_c00179{letter-spacing:0.036072px;}
.ls14_c00179{letter-spacing:0.038304px;}
.lsc_c00179{letter-spacing:0.047880px;}
.ls20_c00179{letter-spacing:0.050400px;}
.ls10_c00179{letter-spacing:0.052668px;}
.ls1_c00179{letter-spacing:0.054756px;}
.lsb_c00179{letter-spacing:0.062244px;}
.lsf_c00179{letter-spacing:0.071820px;}
.ls15_c00179{letter-spacing:0.081396px;}
.ls1f_c00179{letter-spacing:0.093600px;}
.ls29_c00179{letter-spacing:0.095760px;}
.lse_c00179{letter-spacing:0.104040px;}
.lsa_c00179{letter-spacing:0.124488px;}
.ls2_c00179{letter-spacing:0.144000px;}
.ls16_c00179{letter-spacing:0.189360px;}
.ls22_c00179{letter-spacing:0.346032px;}
.ls6_c00179{letter-spacing:0.383040px;}
.ls9_c00179{letter-spacing:0.464040px;}
.ls3_c00179{letter-spacing:65.304000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00179{word-spacing:-13.310640px;}
.ws2_c00179{word-spacing:-11.154672px;}
.ws6_c00179{word-spacing:-10.808640px;}
.ws5_c00179{word-spacing:-10.804752px;}
.ws3_c00179{word-spacing:-10.793088px;}
.ws4_c00179{word-spacing:-10.785312px;}
.ws0_c00179{word-spacing:-10.584756px;}
.ws15_c00179{word-spacing:-0.086400px;}
.ws3b_c00179{word-spacing:-0.043092px;}
.ws32_c00179{word-spacing:-0.033516px;}
.ws2f_c00179{word-spacing:-0.028728px;}
.ws14_c00179{word-spacing:-0.021600px;}
.ws34_c00179{word-spacing:-0.014364px;}
.wsa_c00179{word-spacing:0.000000px;}
.ws30_c00179{word-spacing:0.003888px;}
.ws33_c00179{word-spacing:0.004788px;}
.ws31_c00179{word-spacing:0.009576px;}
.ws3c_c00179{word-spacing:0.023940px;}
.ws7_c00179{word-spacing:0.054108px;}
.ws23_c00179{word-spacing:0.057600px;}
.ws10_c00179{word-spacing:0.064800px;}
.ws17_c00179{word-spacing:0.072000px;}
.ws8_c00179{word-spacing:0.108216px;}
.ws9_c00179{word-spacing:0.138276px;}
.ws2e_c00179{word-spacing:0.325584px;}
.ws24_c00179{word-spacing:0.344736px;}
.ws27_c00179{word-spacing:0.612864px;}
.ws26_c00179{word-spacing:0.719280px;}
.ws25_c00179{word-spacing:0.730944px;}
.ws18_c00179{word-spacing:0.734400px;}
.ws19_c00179{word-spacing:0.741600px;}
.ws1a_c00179{word-spacing:0.784800px;}
.ws28_c00179{word-spacing:1.034208px;}
.ws29_c00179{word-spacing:1.048572px;}
.ws2a_c00179{word-spacing:1.062936px;}
.wsc_c00179{word-spacing:1.404000px;}
.ws16_c00179{word-spacing:1.468800px;}
.ws20_c00179{word-spacing:1.735200px;}
.ws1c_c00179{word-spacing:1.749600px;}
.ws22_c00179{word-spacing:1.764000px;}
.ws21_c00179{word-spacing:1.800000px;}
.wsb_c00179{word-spacing:1.814400px;}
.ws1b_c00179{word-spacing:2.023200px;}
.ws11_c00179{word-spacing:2.080800px;}
.ws12_c00179{word-spacing:2.131200px;}
.ws38_c00179{word-spacing:2.815344px;}
.ws3a_c00179{word-spacing:2.863224px;}
.ws13_c00179{word-spacing:2.894400px;}
.ws39_c00179{word-spacing:2.906316px;}
.ws36_c00179{word-spacing:4.658724px;}
.ws37_c00179{word-spacing:4.673088px;}
.ws35_c00179{word-spacing:4.677876px;}
.wsd_c00179{word-spacing:4.723200px;}
.wse_c00179{word-spacing:4.752000px;}
.ws1e_c00179{word-spacing:6.494400px;}
.ws1d_c00179{word-spacing:6.566400px;}
.ws1f_c00179{word-spacing:8.640000px;}
.ws2d_c00179{word-spacing:9.666972px;}
.ws2c_c00179{word-spacing:9.690912px;}
.ws2b_c00179{word-spacing:9.714852px;}
.wsf_c00179{word-spacing:22.046400px;}
._0_c00179{margin-left:-1.142280px;}
._1_c00179{width:1.382400px;}
._3_c00179{width:2.927376px;}
._2_c00179{width:4.668300px;}
.fc0_c00179{color:rgb(0,0,0);}
.fs5_c00179{font-size:38.880000px;}
.fs3_c00179{font-size:42.120000px;}
.fs4_c00179{font-size:47.880000px;}
.fs2_c00179{font-size:54.000000px;}
.fs0_c00179{font-size:60.120000px;}
.fs1_c00179{font-size:72.000000px;}
.y0_c00179{bottom:0.000000px;}
.y3_c00179{bottom:57.450450px;}
.y4_c00179{bottom:61.410450px;}
.y24_c00179{bottom:113.702970px;}
.y23_c00179{bottom:132.064950px;}
.y22_c00179{bottom:145.834950px;}
.y21_c00179{bottom:159.602250px;}
.y20_c00179{bottom:177.964230px;}
.y1f_c00179{bottom:196.232970px;}
.y1e_c00179{bottom:214.499190px;}
.y1d_c00179{bottom:228.369450px;}
.y1c_c00179{bottom:242.134950px;}
.y1b_c00179{bottom:255.900450px;}
.y1a_c00179{bottom:271.110450px;}
.y19_c00179{bottom:291.810450px;}
.y18_c00179{bottom:312.510600px;}
.y17_c00179{bottom:476.490600px;}
.y16_c00179{bottom:510.960450px;}
.y15_c00179{bottom:545.340450px;}
.y14_c00179{bottom:579.810450px;}
.y13_c00179{bottom:614.190450px;}
.y12_c00179{bottom:657.660450px;}
.y11_c00179{bottom:692.040450px;}
.y10_c00179{bottom:726.510450px;}
.yf_c00179{bottom:769.890450px;}
.ye_c00179{bottom:804.360450px;}
.yd_c00179{bottom:847.740450px;}
.yc_c00179{bottom:882.210450px;}
.yb_c00179{bottom:925.590450px;}
.ya_c00179{bottom:960.060450px;}
.y9_c00179{bottom:994.440450px;}
.y8_c00179{bottom:1037.910450px;}
.y7_c00179{bottom:1072.290450px;}
.y6_c00179{bottom:1106.760450px;}
.y5_c00179{bottom:1141.140450px;}
.y2_c00179{bottom:1173.810450px;}
.y1_c00179{bottom:1196.850450px;}
.h2_c00179{height:47.988281px;}
.h8_c00179{height:49.937344px;}
.h1_c00179{height:50.315273px;}
.h3_c00179{height:56.320312px;}
.h5_c00179{height:60.257812px;}
.h4_c00179{height:65.130820px;}
.h7_c00179{height:65.131420px;}
.h6_c00179{height:75.093750px;}
.h0_c00179{height:1263.000000px;}
.w1_c00179{width:892.500000px;}
.w0_c00179{width:892.830000px;}
.x0_c00179{left:0.000000px;}
.x2_c00179{left:127.620000px;}
.x1_c00179{left:145.440000px;}
.x5_c00179{left:154.620000px;}
.x6_c00179{left:181.620000px;}
.x7_c00179{left:207.000000px;}
.x4_c00179{left:435.240000px;}
.x3_c00179{left:446.490000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.v1_c00179{vertical-align:26.560000pt;}
.ls1a_c00179{letter-spacing:-0.134400pt;}
.ls18_c00179{letter-spacing:-0.042752pt;}
.ls1e_c00179{letter-spacing:-0.025600pt;}
.ls25_c00179{letter-spacing:-0.020736pt;}
.ls1c_c00179{letter-spacing:-0.019200pt;}
.ls17_c00179{letter-spacing:-0.016032pt;}
.ls24_c00179{letter-spacing:-0.013824pt;}
.ls1b_c00179{letter-spacing:-0.012800pt;}
.ls23_c00179{letter-spacing:-0.010368pt;}
.ls28_c00179{letter-spacing:-0.008512pt;}
.ls26_c00179{letter-spacing:-0.006912pt;}
.ls1d_c00179{letter-spacing:-0.006400pt;}
.ls2a_c00179{letter-spacing:-0.004256pt;}
.ls21_c00179{letter-spacing:-0.003456pt;}
.ls19_c00179{letter-spacing:0.000000pt;}
.ls13_c00179{letter-spacing:0.003456pt;}
.ls7_c00179{letter-spacing:0.005120pt;}
.ls27_c00179{letter-spacing:0.008512pt;}
.ls5_c00179{letter-spacing:0.012768pt;}
.ls11_c00179{letter-spacing:0.016640pt;}
.ls12_c00179{letter-spacing:0.017024pt;}
.lsd_c00179{letter-spacing:0.021280pt;}
.ls8_c00179{letter-spacing:0.029792pt;}
.ls4_c00179{letter-spacing:0.032000pt;}
.ls0_c00179{letter-spacing:0.032064pt;}
.ls14_c00179{letter-spacing:0.034048pt;}
.lsc_c00179{letter-spacing:0.042560pt;}
.ls20_c00179{letter-spacing:0.044800pt;}
.ls10_c00179{letter-spacing:0.046816pt;}
.ls1_c00179{letter-spacing:0.048672pt;}
.lsb_c00179{letter-spacing:0.055328pt;}
.lsf_c00179{letter-spacing:0.063840pt;}
.ls15_c00179{letter-spacing:0.072352pt;}
.ls1f_c00179{letter-spacing:0.083200pt;}
.ls29_c00179{letter-spacing:0.085120pt;}
.lse_c00179{letter-spacing:0.092480pt;}
.lsa_c00179{letter-spacing:0.110656pt;}
.ls2_c00179{letter-spacing:0.128000pt;}
.ls16_c00179{letter-spacing:0.168320pt;}
.ls22_c00179{letter-spacing:0.307584pt;}
.ls6_c00179{letter-spacing:0.340480pt;}
.ls9_c00179{letter-spacing:0.412480pt;}
.ls3_c00179{letter-spacing:58.048000pt;}
.ws1_c00179{word-spacing:-11.831680pt;}
.ws2_c00179{word-spacing:-9.915264pt;}
.ws6_c00179{word-spacing:-9.607680pt;}
.ws5_c00179{word-spacing:-9.604224pt;}
.ws3_c00179{word-spacing:-9.593856pt;}
.ws4_c00179{word-spacing:-9.586944pt;}
.ws0_c00179{word-spacing:-9.408672pt;}
.ws15_c00179{word-spacing:-0.076800pt;}
.ws3b_c00179{word-spacing:-0.038304pt;}
.ws32_c00179{word-spacing:-0.029792pt;}
.ws2f_c00179{word-spacing:-0.025536pt;}
.ws14_c00179{word-spacing:-0.019200pt;}
.ws34_c00179{word-spacing:-0.012768pt;}
.wsa_c00179{word-spacing:0.000000pt;}
.ws30_c00179{word-spacing:0.003456pt;}
.ws33_c00179{word-spacing:0.004256pt;}
.ws31_c00179{word-spacing:0.008512pt;}
.ws3c_c00179{word-spacing:0.021280pt;}
.ws7_c00179{word-spacing:0.048096pt;}
.ws23_c00179{word-spacing:0.051200pt;}
.ws10_c00179{word-spacing:0.057600pt;}
.ws17_c00179{word-spacing:0.064000pt;}
.ws8_c00179{word-spacing:0.096192pt;}
.ws9_c00179{word-spacing:0.122912pt;}
.ws2e_c00179{word-spacing:0.289408pt;}
.ws24_c00179{word-spacing:0.306432pt;}
.ws27_c00179{word-spacing:0.544768pt;}
.ws26_c00179{word-spacing:0.639360pt;}
.ws25_c00179{word-spacing:0.649728pt;}
.ws18_c00179{word-spacing:0.652800pt;}
.ws19_c00179{word-spacing:0.659200pt;}
.ws1a_c00179{word-spacing:0.697600pt;}
.ws28_c00179{word-spacing:0.919296pt;}
.ws29_c00179{word-spacing:0.932064pt;}
.ws2a_c00179{word-spacing:0.944832pt;}
.wsc_c00179{word-spacing:1.248000pt;}
.ws16_c00179{word-spacing:1.305600pt;}
.ws20_c00179{word-spacing:1.542400pt;}
.ws1c_c00179{word-spacing:1.555200pt;}
.ws22_c00179{word-spacing:1.568000pt;}
.ws21_c00179{word-spacing:1.600000pt;}
.wsb_c00179{word-spacing:1.612800pt;}
.ws1b_c00179{word-spacing:1.798400pt;}
.ws11_c00179{word-spacing:1.849600pt;}
.ws12_c00179{word-spacing:1.894400pt;}
.ws38_c00179{word-spacing:2.502528pt;}
.ws3a_c00179{word-spacing:2.545088pt;}
.ws13_c00179{word-spacing:2.572800pt;}
.ws39_c00179{word-spacing:2.583392pt;}
.ws36_c00179{word-spacing:4.141088pt;}
.ws37_c00179{word-spacing:4.153856pt;}
.ws35_c00179{word-spacing:4.158112pt;}
.wsd_c00179{word-spacing:4.198400pt;}
.wse_c00179{word-spacing:4.224000pt;}
.ws1e_c00179{word-spacing:5.772800pt;}
.ws1d_c00179{word-spacing:5.836800pt;}
.ws1f_c00179{word-spacing:7.680000pt;}
.ws2d_c00179{word-spacing:8.592864pt;}
.ws2c_c00179{word-spacing:8.614144pt;}
.ws2b_c00179{word-spacing:8.635424pt;}
.wsf_c00179{word-spacing:19.596800pt;}
._0_c00179{margin-left:-1.015360pt;}
._1_c00179{width:1.228800pt;}
._3_c00179{width:2.602112pt;}
._2_c00179{width:4.149600pt;}
.fs5_c00179{font-size:34.560000pt;}
.fs3_c00179{font-size:37.440000pt;}
.fs4_c00179{font-size:42.560000pt;}
.fs2_c00179{font-size:48.000000pt;}
.fs0_c00179{font-size:53.440000pt;}
.fs1_c00179{font-size:64.000000pt;}
.y0_c00179{bottom:0.000000pt;}
.y3_c00179{bottom:51.067067pt;}
.y4_c00179{bottom:54.587067pt;}
.y24_c00179{bottom:101.069307pt;}
.y23_c00179{bottom:117.391067pt;}
.y22_c00179{bottom:129.631067pt;}
.y21_c00179{bottom:141.868667pt;}
.y20_c00179{bottom:158.190427pt;}
.y1f_c00179{bottom:174.429307pt;}
.y1e_c00179{bottom:190.665947pt;}
.y1d_c00179{bottom:202.995067pt;}
.y1c_c00179{bottom:215.231067pt;}
.y1b_c00179{bottom:227.467067pt;}
.y1a_c00179{bottom:240.987067pt;}
.y19_c00179{bottom:259.387067pt;}
.y18_c00179{bottom:277.787200pt;}
.y17_c00179{bottom:423.547200pt;}
.y16_c00179{bottom:454.187067pt;}
.y15_c00179{bottom:484.747067pt;}
.y14_c00179{bottom:515.387067pt;}
.y13_c00179{bottom:545.947067pt;}
.y12_c00179{bottom:584.587067pt;}
.y11_c00179{bottom:615.147067pt;}
.y10_c00179{bottom:645.787067pt;}
.yf_c00179{bottom:684.347067pt;}
.ye_c00179{bottom:714.987067pt;}
.yd_c00179{bottom:753.547067pt;}
.yc_c00179{bottom:784.187067pt;}
.yb_c00179{bottom:822.747067pt;}
.ya_c00179{bottom:853.387067pt;}
.y9_c00179{bottom:883.947067pt;}
.y8_c00179{bottom:922.587067pt;}
.y7_c00179{bottom:953.147067pt;}
.y6_c00179{bottom:983.787067pt;}
.y5_c00179{bottom:1014.347067pt;}
.y2_c00179{bottom:1043.387067pt;}
.y1_c00179{bottom:1063.867067pt;}
.h2_c00179{height:42.656250pt;}
.h8_c00179{height:44.388750pt;}
.h1_c00179{height:44.724687pt;}
.h3_c00179{height:50.062500pt;}
.h5_c00179{height:53.562500pt;}
.h4_c00179{height:57.894063pt;}
.h7_c00179{height:57.894596pt;}
.h6_c00179{height:66.750000pt;}
.h0_c00179{height:1122.666667pt;}
.w1_c00179{width:793.333333pt;}
.w0_c00179{width:793.626667pt;}
.x0_c00179{left:0.000000pt;}
.x2_c00179{left:113.440000pt;}
.x1_c00179{left:129.280000pt;}
.x5_c00179{left:137.440000pt;}
.x6_c00179{left:161.440000pt;}
.x7_c00179{left:184.000000pt;}
.x4_c00179{left:386.880000pt;}
.x3_c00179{left:396.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_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_85ef45a38c345968b50aaf28.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.100098;font-style:normal;font-weight:normal;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_08dfbdef75c3bcfa9f837cab.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;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_c00180;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00180;src:url('chunks/assets/font_5397af45908c16300d6f1cea.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00180;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00180{font-family:ff5_c00180;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_c00180;src:url('chunks/assets/font_87cbae4f3e99dfd8ab751a69.woff2')format("woff");}.ff6_c00180{font-family:ff6_c00180;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_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;}
.v1_c00180{vertical-align:15.840000px;}
.v2_c00180{vertical-align:29.880000px;}
.ls1c_c00180{letter-spacing:-0.151200px;}
.ls1f_c00180{letter-spacing:-0.039060px;}
.ls23_c00180{letter-spacing:-0.036000px;}
.ls21_c00180{letter-spacing:-0.028800px;}
.ls22_c00180{letter-spacing:-0.021600px;}
.ls1e_c00180{letter-spacing:-0.014400px;}
.ls26_c00180{letter-spacing:-0.011664px;}
.ls28_c00180{letter-spacing:-0.009576px;}
.ls25_c00180{letter-spacing:-0.007776px;}
.ls1d_c00180{letter-spacing:-0.007200px;}
.ls1b_c00180{letter-spacing:0.000000px;}
.lsc_c00180{letter-spacing:0.007200px;}
.ls7_c00180{letter-spacing:0.007812px;}
.ls11_c00180{letter-spacing:0.014364px;}
.lsd_c00180{letter-spacing:0.014400px;}
.ls13_c00180{letter-spacing:0.018720px;}
.lsa_c00180{letter-spacing:0.021600px;}
.ls1a_c00180{letter-spacing:0.023940px;}
.lsf_c00180{letter-spacing:0.028728px;}
.ls6_c00180{letter-spacing:0.028800px;}
.ls15_c00180{letter-spacing:0.033516px;}
.ls20_c00180{letter-spacing:0.036000px;}
.ls17_c00180{letter-spacing:0.038304px;}
.ls9_c00180{letter-spacing:0.039060px;}
.ls18_c00180{letter-spacing:0.043092px;}
.ls0_c00180{letter-spacing:0.048096px;}
.ls19_c00180{letter-spacing:0.052668px;}
.ls4_c00180{letter-spacing:0.054756px;}
.ls10_c00180{letter-spacing:0.057456px;}
.ls14_c00180{letter-spacing:0.062244px;}
.ls24_c00180{letter-spacing:0.071820px;}
.lse_c00180{letter-spacing:0.072000px;}
.ls5_c00180{letter-spacing:0.093600px;}
.ls16_c00180{letter-spacing:0.104040px;}
.ls2_c00180{letter-spacing:0.144000px;}
.ls27_c00180{letter-spacing:0.353808px;}
.ls12_c00180{letter-spacing:14.747040px;}
.ls8_c00180{letter-spacing:23.670360px;}
.ls3_c00180{letter-spacing:65.304000px;}
.lsb_c00180{letter-spacing:66.024000px;}
.ls1_c00180{letter-spacing:1212.120000px;}
.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:-19.569060px;}
.ws1_c00180{word-spacing:-19.537812px;}
.ws6_c00180{word-spacing:-13.348944px;}
.ws3_c00180{word-spacing:-13.310640px;}
.ws5_c00180{word-spacing:-10.808640px;}
.ws4_c00180{word-spacing:-10.796976px;}
.ws0_c00180{word-spacing:-10.584756px;}
.ws1b_c00180{word-spacing:-0.086400px;}
.wse_c00180{word-spacing:-0.054684px;}
.ws29_c00180{word-spacing:-0.038304px;}
.ws31_c00180{word-spacing:-0.033516px;}
.wsd_c00180{word-spacing:-0.028800px;}
.ws21_c00180{word-spacing:-0.014400px;}
.ws33_c00180{word-spacing:-0.014364px;}
.ws28_c00180{word-spacing:-0.009576px;}
.ws27_c00180{word-spacing:-0.007200px;}
.ws34_c00180{word-spacing:-0.004788px;}
.ws8_c00180{word-spacing:0.000000px;}
.ws13_c00180{word-spacing:0.014400px;}
.ws32_c00180{word-spacing:0.028728px;}
.ws7_c00180{word-spacing:0.042084px;}
.ws25_c00180{word-spacing:0.648000px;}
.ws26_c00180{word-spacing:0.712800px;}
.ws1d_c00180{word-spacing:1.411200px;}
.ws1c_c00180{word-spacing:1.425600px;}
.ws22_c00180{word-spacing:3.463200px;}
.ws23_c00180{word-spacing:3.643200px;}
.ws12_c00180{word-spacing:4.284000px;}
.ws11_c00180{word-spacing:4.298400px;}
.wsf_c00180{word-spacing:5.349600px;}
.ws20_c00180{word-spacing:5.400000px;}
.ws1f_c00180{word-spacing:5.407200px;}
.ws10_c00180{word-spacing:5.414400px;}
.wsb_c00180{word-spacing:6.379200px;}
.wsa_c00180{word-spacing:6.544800px;}
.ws9_c00180{word-spacing:6.602400px;}
.ws2e_c00180{word-spacing:7.158060px;}
.ws30_c00180{word-spacing:7.172424px;}
.ws2f_c00180{word-spacing:7.177212px;}
.ws18_c00180{word-spacing:9.352800px;}
.wsc_c00180{word-spacing:9.360000px;}
.ws16_c00180{word-spacing:9.367200px;}
.ws17_c00180{word-spacing:9.388800px;}
.ws1e_c00180{word-spacing:9.734400px;}
.ws1a_c00180{word-spacing:11.836800px;}
.ws19_c00180{word-spacing:11.880000px;}
.ws24_c00180{word-spacing:12.254400px;}
.ws14_c00180{word-spacing:13.608000px;}
.ws15_c00180{word-spacing:13.651200px;}
.ws2c_c00180{word-spacing:14.713524px;}
.ws2d_c00180{word-spacing:14.742252px;}
.ws2b_c00180{word-spacing:14.775768px;}
.ws2a_c00180{word-spacing:15.124320px;}
._0_c00180{margin-left:-1.322640px;}
._2_c00180{width:1.080000px;}
._4_c00180{width:6.658884px;}
._3_c00180{width:14.770980px;}
._1_c00180{width:138.672000px;}
.fc0_c00180{color:rgb(0,0,0);}
.fs6_c00180{font-size:38.880000px;}
.fs3_c00180{font-size:42.120000px;}
.fs5_c00180{font-size:47.880000px;}
.fs1_c00180{font-size:54.000000px;}
.fs0_c00180{font-size:60.120000px;}
.fs2_c00180{font-size:72.000000px;}
.fs4_c00180{font-size:78.120000px;}
.y0_c00180{bottom:0.000000px;}
.y3_c00180{bottom:57.450450px;}
.y24_c00180{bottom:113.714130px;}
.y23_c00180{bottom:132.076110px;}
.y22_c00180{bottom:150.342330px;}
.y21_c00180{bottom:168.608550px;}
.y20_c00180{bottom:186.970530px;}
.y1f_c00180{bottom:205.236750px;}
.y1e_c00180{bottom:223.502970px;}
.y1d_c00180{bottom:241.864950px;}
.y1c_c00180{bottom:255.634950px;}
.y1b_c00180{bottom:269.398470px;}
.y1a_c00180{bottom:287.760450px;}
.y19_c00180{bottom:302.970450px;}
.y18_c00180{bottom:323.580450px;}
.y17_c00180{bottom:344.280450px;}
.y16_c00180{bottom:455.610450px;}
.y15_c00180{bottom:490.080450px;}
.y14_c00180{bottom:524.460450px;}
.y13_c00180{bottom:558.930450px;}
.y12_c00180{bottom:602.310450px;}
.y11_c00180{bottom:636.780450px;}
.y10_c00180{bottom:671.160450px;}
.yf_c00180{bottom:705.630450px;}
.ye_c00180{bottom:749.010450px;}
.yd_c00180{bottom:783.480600px;}
.yc_c00180{bottom:817.860450px;}
.yb_c00180{bottom:852.330450px;}
.ya_c00180{bottom:895.710450px;}
.y9_c00180{bottom:930.180450px;}
.y8_c00180{bottom:964.560450px;}
.y7_c00180{bottom:1009.650450px;}
.y6_c00180{bottom:1072.290450px;}
.y5_c00180{bottom:1106.760450px;}
.y4_c00180{bottom:1141.140450px;}
.y2_c00180{bottom:1177.860450px;}
.y1_c00180{bottom:1196.850450px;}
.h9_c00180{height:47.988281px;}
.ha_c00180{height:49.937344px;}
.hb_c00180{height:49.945264px;}
.h1_c00180{height:50.315273px;}
.h2_c00180{height:56.320312px;}
.h5_c00180{height:60.257812px;}
.h8_c00180{height:65.130220px;}
.h6_c00180{height:65.130820px;}
.h3_c00180{height:72.160312px;}
.h4_c00180{height:75.093750px;}
.h7_c00180{height:81.476719px;}
.h0_c00180{height:1263.000000px;}
.w1_c00180{width:892.500000px;}
.w0_c00180{width:892.830000px;}
.x0_c00180{left:0.000000px;}
.x1_c00180{left:127.620000px;}
.x2_c00180{left:154.620000px;}
.x3_c00180{left:181.620000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.v1_c00180{vertical-align:14.080000pt;}
.v2_c00180{vertical-align:26.560000pt;}
.ls1c_c00180{letter-spacing:-0.134400pt;}
.ls1f_c00180{letter-spacing:-0.034720pt;}
.ls23_c00180{letter-spacing:-0.032000pt;}
.ls21_c00180{letter-spacing:-0.025600pt;}
.ls22_c00180{letter-spacing:-0.019200pt;}
.ls1e_c00180{letter-spacing:-0.012800pt;}
.ls26_c00180{letter-spacing:-0.010368pt;}
.ls28_c00180{letter-spacing:-0.008512pt;}
.ls25_c00180{letter-spacing:-0.006912pt;}
.ls1d_c00180{letter-spacing:-0.006400pt;}
.ls1b_c00180{letter-spacing:0.000000pt;}
.lsc_c00180{letter-spacing:0.006400pt;}
.ls7_c00180{letter-spacing:0.006944pt;}
.ls11_c00180{letter-spacing:0.012768pt;}
.lsd_c00180{letter-spacing:0.012800pt;}
.ls13_c00180{letter-spacing:0.016640pt;}
.lsa_c00180{letter-spacing:0.019200pt;}
.ls1a_c00180{letter-spacing:0.021280pt;}
.lsf_c00180{letter-spacing:0.025536pt;}
.ls6_c00180{letter-spacing:0.025600pt;}
.ls15_c00180{letter-spacing:0.029792pt;}
.ls20_c00180{letter-spacing:0.032000pt;}
.ls17_c00180{letter-spacing:0.034048pt;}
.ls9_c00180{letter-spacing:0.034720pt;}
.ls18_c00180{letter-spacing:0.038304pt;}
.ls0_c00180{letter-spacing:0.042752pt;}
.ls19_c00180{letter-spacing:0.046816pt;}
.ls4_c00180{letter-spacing:0.048672pt;}
.ls10_c00180{letter-spacing:0.051072pt;}
.ls14_c00180{letter-spacing:0.055328pt;}
.ls24_c00180{letter-spacing:0.063840pt;}
.lse_c00180{letter-spacing:0.064000pt;}
.ls5_c00180{letter-spacing:0.083200pt;}
.ls16_c00180{letter-spacing:0.092480pt;}
.ls2_c00180{letter-spacing:0.128000pt;}
.ls27_c00180{letter-spacing:0.314496pt;}
.ls12_c00180{letter-spacing:13.108480pt;}
.ls8_c00180{letter-spacing:21.040320pt;}
.ls3_c00180{letter-spacing:58.048000pt;}
.lsb_c00180{letter-spacing:58.688000pt;}
.ls1_c00180{letter-spacing:1077.440000pt;}
.ws2_c00180{word-spacing:-17.394720pt;}
.ws1_c00180{word-spacing:-17.366944pt;}
.ws6_c00180{word-spacing:-11.865728pt;}
.ws3_c00180{word-spacing:-11.831680pt;}
.ws5_c00180{word-spacing:-9.607680pt;}
.ws4_c00180{word-spacing:-9.597312pt;}
.ws0_c00180{word-spacing:-9.408672pt;}
.ws1b_c00180{word-spacing:-0.076800pt;}
.wse_c00180{word-spacing:-0.048608pt;}
.ws29_c00180{word-spacing:-0.034048pt;}
.ws31_c00180{word-spacing:-0.029792pt;}
.wsd_c00180{word-spacing:-0.025600pt;}
.ws21_c00180{word-spacing:-0.012800pt;}
.ws33_c00180{word-spacing:-0.012768pt;}
.ws28_c00180{word-spacing:-0.008512pt;}
.ws27_c00180{word-spacing:-0.006400pt;}
.ws34_c00180{word-spacing:-0.004256pt;}
.ws8_c00180{word-spacing:0.000000pt;}
.ws13_c00180{word-spacing:0.012800pt;}
.ws32_c00180{word-spacing:0.025536pt;}
.ws7_c00180{word-spacing:0.037408pt;}
.ws25_c00180{word-spacing:0.576000pt;}
.ws26_c00180{word-spacing:0.633600pt;}
.ws1d_c00180{word-spacing:1.254400pt;}
.ws1c_c00180{word-spacing:1.267200pt;}
.ws22_c00180{word-spacing:3.078400pt;}
.ws23_c00180{word-spacing:3.238400pt;}
.ws12_c00180{word-spacing:3.808000pt;}
.ws11_c00180{word-spacing:3.820800pt;}
.wsf_c00180{word-spacing:4.755200pt;}
.ws20_c00180{word-spacing:4.800000pt;}
.ws1f_c00180{word-spacing:4.806400pt;}
.ws10_c00180{word-spacing:4.812800pt;}
.wsb_c00180{word-spacing:5.670400pt;}
.wsa_c00180{word-spacing:5.817600pt;}
.ws9_c00180{word-spacing:5.868800pt;}
.ws2e_c00180{word-spacing:6.362720pt;}
.ws30_c00180{word-spacing:6.375488pt;}
.ws2f_c00180{word-spacing:6.379744pt;}
.ws18_c00180{word-spacing:8.313600pt;}
.wsc_c00180{word-spacing:8.320000pt;}
.ws16_c00180{word-spacing:8.326400pt;}
.ws17_c00180{word-spacing:8.345600pt;}
.ws1e_c00180{word-spacing:8.652800pt;}
.ws1a_c00180{word-spacing:10.521600pt;}
.ws19_c00180{word-spacing:10.560000pt;}
.ws24_c00180{word-spacing:10.892800pt;}
.ws14_c00180{word-spacing:12.096000pt;}
.ws15_c00180{word-spacing:12.134400pt;}
.ws2c_c00180{word-spacing:13.078688pt;}
.ws2d_c00180{word-spacing:13.104224pt;}
.ws2b_c00180{word-spacing:13.134016pt;}
.ws2a_c00180{word-spacing:13.443840pt;}
._0_c00180{margin-left:-1.175680pt;}
._2_c00180{width:0.960000pt;}
._4_c00180{width:5.919008pt;}
._3_c00180{width:13.129760pt;}
._1_c00180{width:123.264000pt;}
.fs6_c00180{font-size:34.560000pt;}
.fs3_c00180{font-size:37.440000pt;}
.fs5_c00180{font-size:42.560000pt;}
.fs1_c00180{font-size:48.000000pt;}
.fs0_c00180{font-size:53.440000pt;}
.fs2_c00180{font-size:64.000000pt;}
.fs4_c00180{font-size:69.440000pt;}
.y0_c00180{bottom:0.000000pt;}
.y3_c00180{bottom:51.067067pt;}
.y24_c00180{bottom:101.079227pt;}
.y23_c00180{bottom:117.400987pt;}
.y22_c00180{bottom:133.637627pt;}
.y21_c00180{bottom:149.874267pt;}
.y20_c00180{bottom:166.196027pt;}
.y1f_c00180{bottom:182.432667pt;}
.y1e_c00180{bottom:198.669307pt;}
.y1d_c00180{bottom:214.991067pt;}
.y1c_c00180{bottom:227.231067pt;}
.y1b_c00180{bottom:239.465307pt;}
.y1a_c00180{bottom:255.787067pt;}
.y19_c00180{bottom:269.307067pt;}
.y18_c00180{bottom:287.627067pt;}
.y17_c00180{bottom:306.027067pt;}
.y16_c00180{bottom:404.987067pt;}
.y15_c00180{bottom:435.627067pt;}
.y14_c00180{bottom:466.187067pt;}
.y13_c00180{bottom:496.827067pt;}
.y12_c00180{bottom:535.387067pt;}
.y11_c00180{bottom:566.027067pt;}
.y10_c00180{bottom:596.587067pt;}
.yf_c00180{bottom:627.227067pt;}
.ye_c00180{bottom:665.787067pt;}
.yd_c00180{bottom:696.427200pt;}
.yc_c00180{bottom:726.987067pt;}
.yb_c00180{bottom:757.627067pt;}
.ya_c00180{bottom:796.187067pt;}
.y9_c00180{bottom:826.827067pt;}
.y8_c00180{bottom:857.387067pt;}
.y7_c00180{bottom:897.467067pt;}
.y6_c00180{bottom:953.147067pt;}
.y5_c00180{bottom:983.787067pt;}
.y4_c00180{bottom:1014.347067pt;}
.y2_c00180{bottom:1046.987067pt;}
.y1_c00180{bottom:1063.867067pt;}
.h9_c00180{height:42.656250pt;}
.ha_c00180{height:44.388750pt;}
.hb_c00180{height:44.395790pt;}
.h1_c00180{height:44.724687pt;}
.h2_c00180{height:50.062500pt;}
.h5_c00180{height:53.562500pt;}
.h8_c00180{height:57.893529pt;}
.h6_c00180{height:57.894062pt;}
.h3_c00180{height:64.142500pt;}
.h4_c00180{height:66.750000pt;}
.h7_c00180{height:72.423750pt;}
.h0_c00180{height:1122.666667pt;}
.w1_c00180{width:793.333333pt;}
.w0_c00180{width:793.626667pt;}
.x0_c00180{left:0.000000pt;}
.x1_c00180{left:113.440000pt;}
.x2_c00180{left:137.440000pt;}
.x3_c00180{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_c00181 {
    display:none;
  }
  .loading-indicator_c00181.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00181 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00181 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00181" -> "#page-container .classname_c00181")
 */
.pf_c00181 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00181 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00181 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00181 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00181 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00181 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00181 {overflow:visible;}
  }
}
.c_c00181 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00181 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00181:after { /* webkit #35443 */
  content: '';
}
.t_c00181:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00181 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00181 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00181 { /* info for Javascript */
  display:none;
}
.l_c00181 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00181 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00181 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00181:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00181;src:url('chunks/assets/font_c23836a7e30fd8a84f7a5fc3.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00181;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00181;src:url('chunks/assets/font_8d52dfacea7a537ddd5f5f72.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00181;src:url('chunks/assets/font_8094257c4a33ea90b66a86f4.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;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_c00181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.v1_c00181{vertical-align:29.880000px;}
.lse_c00181{letter-spacing:-0.151200px;}
.lsc_c00181{letter-spacing:-0.048096px;}
.ls16_c00181{letter-spacing:-0.036000px;}
.ls12_c00181{letter-spacing:-0.028800px;}
.ls15_c00181{letter-spacing:-0.021600px;}
.lsb_c00181{letter-spacing:-0.018036px;}
.lsf_c00181{letter-spacing:-0.014400px;}
.ls14_c00181{letter-spacing:-0.007200px;}
.ls17_c00181{letter-spacing:-0.003888px;}
.lsd_c00181{letter-spacing:0.000000px;}
.ls2_c00181{letter-spacing:0.007200px;}
.ls8_c00181{letter-spacing:0.014364px;}
.ls10_c00181{letter-spacing:0.014400px;}
.ls6_c00181{letter-spacing:0.021600px;}
.ls7_c00181{letter-spacing:0.033516px;}
.ls0_c00181{letter-spacing:0.036072px;}
.lsa_c00181{letter-spacing:0.043092px;}
.ls13_c00181{letter-spacing:0.050400px;}
.ls1_c00181{letter-spacing:0.054756px;}
.ls3_c00181{letter-spacing:0.072000px;}
.ls11_c00181{letter-spacing:0.093600px;}
.ls9_c00181{letter-spacing:0.104040px;}
.ls4_c00181{letter-spacing:0.144000px;}
.ls18_c00181{letter-spacing:0.357696px;}
.ls5_c00181{letter-spacing:66.024000px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00181{word-spacing:-11.166336px;}
.ws0_c00181{word-spacing:-10.584756px;}
.ws21_c00181{word-spacing:-0.093600px;}
.ws16_c00181{word-spacing:-0.086400px;}
.ws2b_c00181{word-spacing:-0.023940px;}
.ws27_c00181{word-spacing:-0.014364px;}
.ws29_c00181{word-spacing:-0.009576px;}
.ws5_c00181{word-spacing:0.000000px;}
.ws2a_c00181{word-spacing:0.004788px;}
.ws9_c00181{word-spacing:0.014400px;}
.ws15_c00181{word-spacing:0.028800px;}
.ws2_c00181{word-spacing:0.054108px;}
.ws12_c00181{word-spacing:0.057600px;}
.wsa_c00181{word-spacing:0.064800px;}
.ws3_c00181{word-spacing:0.108216px;}
.wsb_c00181{word-spacing:0.129600px;}
.ws4_c00181{word-spacing:0.138276px;}
.wsc_c00181{word-spacing:0.172800px;}
.wse_c00181{word-spacing:0.309600px;}
.wsd_c00181{word-spacing:0.388800px;}
.ws18_c00181{word-spacing:3.110400px;}
.ws19_c00181{word-spacing:3.218400px;}
.ws17_c00181{word-spacing:3.268800px;}
.ws10_c00181{word-spacing:3.967200px;}
.wsf_c00181{word-spacing:4.312800px;}
.ws14_c00181{word-spacing:5.018400px;}
.ws13_c00181{word-spacing:5.068800px;}
.ws28_c00181{word-spacing:5.386500px;}
.ws1e_c00181{word-spacing:5.767200px;}
.ws1b_c00181{word-spacing:8.287200px;}
.ws1a_c00181{word-spacing:8.301600px;}
.ws24_c00181{word-spacing:8.582400px;}
.ws25_c00181{word-spacing:8.611200px;}
.ws1f_c00181{word-spacing:9.309600px;}
.ws20_c00181{word-spacing:9.396000px;}
.ws23_c00181{word-spacing:10.065600px;}
.ws22_c00181{word-spacing:10.166400px;}
.ws7_c00181{word-spacing:10.965600px;}
.ws6_c00181{word-spacing:11.174400px;}
.ws1d_c00181{word-spacing:11.815200px;}
.ws1c_c00181{word-spacing:11.952000px;}
.ws26_c00181{word-spacing:14.047200px;}
.ws8_c00181{word-spacing:18.000000px;}
.ws11_c00181{word-spacing:20.167200px;}
._0_c00181{margin-left:-1.142280px;}
._1_c00181{width:1.051200px;}
.fc0_c00181{color:rgb(0,0,0);}
.fs5_c00181{font-size:38.880000px;}
.fs3_c00181{font-size:42.120000px;}
.fs4_c00181{font-size:47.880000px;}
.fs2_c00181{font-size:54.000000px;}
.fs0_c00181{font-size:60.120000px;}
.fs1_c00181{font-size:72.000000px;}
.y0_c00181{bottom:0.000000px;}
.y3_c00181{bottom:57.450450px;}
.y4_c00181{bottom:61.410450px;}
.y24_c00181{bottom:113.710350px;}
.y23_c00181{bottom:132.072330px;}
.y22_c00181{bottom:150.338550px;}
.y21_c00181{bottom:168.604770px;}
.y20_c00181{bottom:182.466030px;}
.y1f_c00181{bottom:200.732250px;}
.y1e_c00181{bottom:218.998470px;}
.y1d_c00181{bottom:237.360450px;}
.y1c_c00181{bottom:252.570450px;}
.y1b_c00181{bottom:273.270450px;}
.y1a_c00181{bottom:293.970600px;}
.y19_c00181{bottom:407.640600px;}
.y18_c00181{bottom:442.110600px;}
.y17_c00181{bottom:476.490600px;}
.y16_c00181{bottom:519.960450px;}
.y15_c00181{bottom:554.340450px;}
.y14_c00181{bottom:588.810450px;}
.y13_c00181{bottom:623.190450px;}
.y12_c00181{bottom:657.660450px;}
.y11_c00181{bottom:692.040450px;}
.y10_c00181{bottom:735.510600px;}
.yf_c00181{bottom:769.890600px;}
.ye_c00181{bottom:813.360450px;}
.yd_c00181{bottom:847.740450px;}
.yc_c00181{bottom:882.210450px;}
.yb_c00181{bottom:916.590450px;}
.ya_c00181{bottom:960.060450px;}
.y9_c00181{bottom:994.440450px;}
.y8_c00181{bottom:1028.910450px;}
.y7_c00181{bottom:1072.290450px;}
.y6_c00181{bottom:1106.760450px;}
.y5_c00181{bottom:1141.140450px;}
.y2_c00181{bottom:1173.810450px;}
.y1_c00181{bottom:1196.850450px;}
.h8_c00181{height:49.937344px;}
.h1_c00181{height:50.315273px;}
.h3_c00181{height:56.320312px;}
.h4_c00181{height:60.257812px;}
.h7_c00181{height:65.130220px;}
.h5_c00181{height:65.130820px;}
.h2_c00181{height:70.664062px;}
.h6_c00181{height:75.093750px;}
.h0_c00181{height:1263.000000px;}
.w1_c00181{width:892.500000px;}
.w0_c00181{width:892.830000px;}
.x0_c00181{left:0.000000px;}
.x2_c00181{left:127.620000px;}
.x1_c00181{left:145.440000px;}
.x7_c00181{left:154.440000px;}
.x6_c00181{left:180.810000px;}
.x5_c00181{left:207.180000px;}
.x4_c00181{left:435.240000px;}
.x3_c00181{left:446.490000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.v1_c00181{vertical-align:26.560000pt;}
.lse_c00181{letter-spacing:-0.134400pt;}
.lsc_c00181{letter-spacing:-0.042752pt;}
.ls16_c00181{letter-spacing:-0.032000pt;}
.ls12_c00181{letter-spacing:-0.025600pt;}
.ls15_c00181{letter-spacing:-0.019200pt;}
.lsb_c00181{letter-spacing:-0.016032pt;}
.lsf_c00181{letter-spacing:-0.012800pt;}
.ls14_c00181{letter-spacing:-0.006400pt;}
.ls17_c00181{letter-spacing:-0.003456pt;}
.lsd_c00181{letter-spacing:0.000000pt;}
.ls2_c00181{letter-spacing:0.006400pt;}
.ls8_c00181{letter-spacing:0.012768pt;}
.ls10_c00181{letter-spacing:0.012800pt;}
.ls6_c00181{letter-spacing:0.019200pt;}
.ls7_c00181{letter-spacing:0.029792pt;}
.ls0_c00181{letter-spacing:0.032064pt;}
.lsa_c00181{letter-spacing:0.038304pt;}
.ls13_c00181{letter-spacing:0.044800pt;}
.ls1_c00181{letter-spacing:0.048672pt;}
.ls3_c00181{letter-spacing:0.064000pt;}
.ls11_c00181{letter-spacing:0.083200pt;}
.ls9_c00181{letter-spacing:0.092480pt;}
.ls4_c00181{letter-spacing:0.128000pt;}
.ls18_c00181{letter-spacing:0.317952pt;}
.ls5_c00181{letter-spacing:58.688000pt;}
.ws1_c00181{word-spacing:-9.925632pt;}
.ws0_c00181{word-spacing:-9.408672pt;}
.ws21_c00181{word-spacing:-0.083200pt;}
.ws16_c00181{word-spacing:-0.076800pt;}
.ws2b_c00181{word-spacing:-0.021280pt;}
.ws27_c00181{word-spacing:-0.012768pt;}
.ws29_c00181{word-spacing:-0.008512pt;}
.ws5_c00181{word-spacing:0.000000pt;}
.ws2a_c00181{word-spacing:0.004256pt;}
.ws9_c00181{word-spacing:0.012800pt;}
.ws15_c00181{word-spacing:0.025600pt;}
.ws2_c00181{word-spacing:0.048096pt;}
.ws12_c00181{word-spacing:0.051200pt;}
.wsa_c00181{word-spacing:0.057600pt;}
.ws3_c00181{word-spacing:0.096192pt;}
.wsb_c00181{word-spacing:0.115200pt;}
.ws4_c00181{word-spacing:0.122912pt;}
.wsc_c00181{word-spacing:0.153600pt;}
.wse_c00181{word-spacing:0.275200pt;}
.wsd_c00181{word-spacing:0.345600pt;}
.ws18_c00181{word-spacing:2.764800pt;}
.ws19_c00181{word-spacing:2.860800pt;}
.ws17_c00181{word-spacing:2.905600pt;}
.ws10_c00181{word-spacing:3.526400pt;}
.wsf_c00181{word-spacing:3.833600pt;}
.ws14_c00181{word-spacing:4.460800pt;}
.ws13_c00181{word-spacing:4.505600pt;}
.ws28_c00181{word-spacing:4.788000pt;}
.ws1e_c00181{word-spacing:5.126400pt;}
.ws1b_c00181{word-spacing:7.366400pt;}
.ws1a_c00181{word-spacing:7.379200pt;}
.ws24_c00181{word-spacing:7.628800pt;}
.ws25_c00181{word-spacing:7.654400pt;}
.ws1f_c00181{word-spacing:8.275200pt;}
.ws20_c00181{word-spacing:8.352000pt;}
.ws23_c00181{word-spacing:8.947200pt;}
.ws22_c00181{word-spacing:9.036800pt;}
.ws7_c00181{word-spacing:9.747200pt;}
.ws6_c00181{word-spacing:9.932800pt;}
.ws1d_c00181{word-spacing:10.502400pt;}
.ws1c_c00181{word-spacing:10.624000pt;}
.ws26_c00181{word-spacing:12.486400pt;}
.ws8_c00181{word-spacing:16.000000pt;}
.ws11_c00181{word-spacing:17.926400pt;}
._0_c00181{margin-left:-1.015360pt;}
._1_c00181{width:0.934400pt;}
.fs5_c00181{font-size:34.560000pt;}
.fs3_c00181{font-size:37.440000pt;}
.fs4_c00181{font-size:42.560000pt;}
.fs2_c00181{font-size:48.000000pt;}
.fs0_c00181{font-size:53.440000pt;}
.fs1_c00181{font-size:64.000000pt;}
.y0_c00181{bottom:0.000000pt;}
.y3_c00181{bottom:51.067067pt;}
.y4_c00181{bottom:54.587067pt;}
.y24_c00181{bottom:101.075867pt;}
.y23_c00181{bottom:117.397627pt;}
.y22_c00181{bottom:133.634267pt;}
.y21_c00181{bottom:149.870907pt;}
.y20_c00181{bottom:162.192027pt;}
.y1f_c00181{bottom:178.428667pt;}
.y1e_c00181{bottom:194.665307pt;}
.y1d_c00181{bottom:210.987067pt;}
.y1c_c00181{bottom:224.507067pt;}
.y1b_c00181{bottom:242.907067pt;}
.y1a_c00181{bottom:261.307200pt;}
.y19_c00181{bottom:362.347200pt;}
.y18_c00181{bottom:392.987200pt;}
.y17_c00181{bottom:423.547200pt;}
.y16_c00181{bottom:462.187067pt;}
.y15_c00181{bottom:492.747067pt;}
.y14_c00181{bottom:523.387067pt;}
.y13_c00181{bottom:553.947067pt;}
.y12_c00181{bottom:584.587067pt;}
.y11_c00181{bottom:615.147067pt;}
.y10_c00181{bottom:653.787200pt;}
.yf_c00181{bottom:684.347200pt;}
.ye_c00181{bottom:722.987067pt;}
.yd_c00181{bottom:753.547067pt;}
.yc_c00181{bottom:784.187067pt;}
.yb_c00181{bottom:814.747067pt;}
.ya_c00181{bottom:853.387067pt;}
.y9_c00181{bottom:883.947067pt;}
.y8_c00181{bottom:914.587067pt;}
.y7_c00181{bottom:953.147067pt;}
.y6_c00181{bottom:983.787067pt;}
.y5_c00181{bottom:1014.347067pt;}
.y2_c00181{bottom:1043.387067pt;}
.y1_c00181{bottom:1063.867067pt;}
.h8_c00181{height:44.388750pt;}
.h1_c00181{height:44.724687pt;}
.h3_c00181{height:50.062500pt;}
.h4_c00181{height:53.562500pt;}
.h7_c00181{height:57.893529pt;}
.h5_c00181{height:57.894062pt;}
.h2_c00181{height:62.812500pt;}
.h6_c00181{height:66.750000pt;}
.h0_c00181{height:1122.666667pt;}
.w1_c00181{width:793.333333pt;}
.w0_c00181{width:793.626667pt;}
.x0_c00181{left:0.000000pt;}
.x2_c00181{left:113.440000pt;}
.x1_c00181{left:129.280000pt;}
.x7_c00181{left:137.280000pt;}
.x6_c00181{left:160.720000pt;}
.x5_c00181{left:184.160000pt;}
.x4_c00181{left:386.880000pt;}
.x3_c00181{left:396.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_c00182 {
    display:none;
  }
  .loading-indicator_c00182.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00182 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00182 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00182" -> "#page-container .classname_c00182")
 */
.pf_c00182 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00182 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00182 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00182 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00182 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00182 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00182 {overflow:visible;}
  }
}
.c_c00182 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00182 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00182:after { /* webkit #35443 */
  content: '';
}
.t_c00182:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00182 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00182 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00182 { /* info for Javascript */
  display:none;
}
.l_c00182 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00182 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00182 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00182:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00182;src:url('chunks/assets/font_93982394a7a8795d4a33b958.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00182;src:url('chunks/assets/font_dd390ae23dd1f74a88235490.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;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_c00182;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.v1_c00182{vertical-align:15.840000px;}
.v2_c00182{vertical-align:29.880000px;}
.ls6_c00182{letter-spacing:-0.151200px;}
.lsa_c00182{letter-spacing:-0.021600px;}
.ls7_c00182{letter-spacing:-0.014400px;}
.ls8_c00182{letter-spacing:-0.007200px;}
.ls5_c00182{letter-spacing:0.000000px;}
.ls3_c00182{letter-spacing:0.007200px;}
.lsb_c00182{letter-spacing:0.014400px;}
.ls4_c00182{letter-spacing:0.033516px;}
.ls0_c00182{letter-spacing:0.048096px;}
.ls2_c00182{letter-spacing:0.054756px;}
.ls9_c00182{letter-spacing:0.093600px;}
.ls1_c00182{letter-spacing:1212.120000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00182{word-spacing:-18.007200px;}
.ws0_c00182{word-spacing:-10.584756px;}
.wsc_c00182{word-spacing:-0.014364px;}
.ws3_c00182{word-spacing:0.000000px;}
.wsb_c00182{word-spacing:0.014400px;}
.ws2_c00182{word-spacing:0.042084px;}
.ws6_c00182{word-spacing:0.043200px;}
.ws4_c00182{word-spacing:0.064800px;}
.ws5_c00182{word-spacing:0.093600px;}
.wsa_c00182{word-spacing:4.334400px;}
.ws7_c00182{word-spacing:7.581600px;}
.ws9_c00182{word-spacing:11.556000px;}
.ws8_c00182{word-spacing:11.577600px;}
._0_c00182{margin-left:-1.322640px;}
._1_c00182{width:1.209600px;}
.fc0_c00182{color:rgb(0,0,0);}
.fs3_c00182{font-size:42.120000px;}
.fs4_c00182{font-size:47.880000px;}
.fs1_c00182{font-size:54.000000px;}
.fs0_c00182{font-size:60.120000px;}
.fs2_c00182{font-size:72.000000px;}
.y0_c00182{bottom:0.000000px;}
.y3_c00182{bottom:57.450450px;}
.y16_c00182{bottom:113.702250px;}
.y15_c00182{bottom:132.064230px;}
.y14_c00182{bottom:150.330450px;}
.y13_c00182{bottom:165.540450px;}
.y12_c00182{bottom:186.240450px;}
.y11_c00182{bottom:206.940450px;}
.y10_c00182{bottom:664.410180px;}
.yf_c00182{bottom:702.120450px;}
.ye_c00182{bottom:742.890450px;}
.yd_c00182{bottom:786.360450px;}
.yc_c00182{bottom:829.740450px;}
.yb_c00182{bottom:873.210450px;}
.ya_c00182{bottom:916.590450px;}
.y9_c00182{bottom:960.060450px;}
.y8_c00182{bottom:994.440450px;}
.y7_c00182{bottom:1028.910450px;}
.y6_c00182{bottom:1063.290450px;}
.y5_c00182{bottom:1106.760450px;}
.y4_c00182{bottom:1141.140450px;}
.y2_c00182{bottom:1177.860450px;}
.y1_c00182{bottom:1196.850450px;}
.h7_c00182{height:49.937344px;}
.h1_c00182{height:50.315273px;}
.h2_c00182{height:56.320312px;}
.h4_c00182{height:60.257812px;}
.h5_c00182{height:65.130820px;}
.h6_c00182{height:70.664062px;}
.h3_c00182{height:72.160312px;}
.h0_c00182{height:1263.000000px;}
.w1_c00182{width:892.500000px;}
.w0_c00182{width:892.830000px;}
.x0_c00182{left:0.000000px;}
.x1_c00182{left:127.620000px;}
.x2_c00182{left:180.810000px;}
.x3_c00182{left:207.180000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.v1_c00182{vertical-align:14.080000pt;}
.v2_c00182{vertical-align:26.560000pt;}
.ls6_c00182{letter-spacing:-0.134400pt;}
.lsa_c00182{letter-spacing:-0.019200pt;}
.ls7_c00182{letter-spacing:-0.012800pt;}
.ls8_c00182{letter-spacing:-0.006400pt;}
.ls5_c00182{letter-spacing:0.000000pt;}
.ls3_c00182{letter-spacing:0.006400pt;}
.lsb_c00182{letter-spacing:0.012800pt;}
.ls4_c00182{letter-spacing:0.029792pt;}
.ls0_c00182{letter-spacing:0.042752pt;}
.ls2_c00182{letter-spacing:0.048672pt;}
.ls9_c00182{letter-spacing:0.083200pt;}
.ls1_c00182{letter-spacing:1077.440000pt;}
.ws1_c00182{word-spacing:-16.006400pt;}
.ws0_c00182{word-spacing:-9.408672pt;}
.wsc_c00182{word-spacing:-0.012768pt;}
.ws3_c00182{word-spacing:0.000000pt;}
.wsb_c00182{word-spacing:0.012800pt;}
.ws2_c00182{word-spacing:0.037408pt;}
.ws6_c00182{word-spacing:0.038400pt;}
.ws4_c00182{word-spacing:0.057600pt;}
.ws5_c00182{word-spacing:0.083200pt;}
.wsa_c00182{word-spacing:3.852800pt;}
.ws7_c00182{word-spacing:6.739200pt;}
.ws9_c00182{word-spacing:10.272000pt;}
.ws8_c00182{word-spacing:10.291200pt;}
._0_c00182{margin-left:-1.175680pt;}
._1_c00182{width:1.075200pt;}
.fs3_c00182{font-size:37.440000pt;}
.fs4_c00182{font-size:42.560000pt;}
.fs1_c00182{font-size:48.000000pt;}
.fs0_c00182{font-size:53.440000pt;}
.fs2_c00182{font-size:64.000000pt;}
.y0_c00182{bottom:0.000000pt;}
.y3_c00182{bottom:51.067067pt;}
.y16_c00182{bottom:101.068667pt;}
.y15_c00182{bottom:117.390427pt;}
.y14_c00182{bottom:133.627067pt;}
.y13_c00182{bottom:147.147067pt;}
.y12_c00182{bottom:165.547067pt;}
.y11_c00182{bottom:183.947067pt;}
.y10_c00182{bottom:590.586827pt;}
.yf_c00182{bottom:624.107067pt;}
.ye_c00182{bottom:660.347067pt;}
.yd_c00182{bottom:698.987067pt;}
.yc_c00182{bottom:737.547067pt;}
.yb_c00182{bottom:776.187067pt;}
.ya_c00182{bottom:814.747067pt;}
.y9_c00182{bottom:853.387067pt;}
.y8_c00182{bottom:883.947067pt;}
.y7_c00182{bottom:914.587067pt;}
.y6_c00182{bottom:945.147067pt;}
.y5_c00182{bottom:983.787067pt;}
.y4_c00182{bottom:1014.347067pt;}
.y2_c00182{bottom:1046.987067pt;}
.y1_c00182{bottom:1063.867067pt;}
.h7_c00182{height:44.388750pt;}
.h1_c00182{height:44.724687pt;}
.h2_c00182{height:50.062500pt;}
.h4_c00182{height:53.562500pt;}
.h5_c00182{height:57.894063pt;}
.h6_c00182{height:62.812500pt;}
.h3_c00182{height:64.142500pt;}
.h0_c00182{height:1122.666667pt;}
.w1_c00182{width:793.333333pt;}
.w0_c00182{width:793.626667pt;}
.x0_c00182{left:0.000000pt;}
.x1_c00182{left:113.440000pt;}
.x2_c00182{left:160.720000pt;}
.x3_c00182{left:184.160000pt;}
}





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

.ir_c00183:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00183;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00183;src:url('chunks/assets/font_3369e045c947fc94ac0ef848.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;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_c00183;src:url('chunks/assets/font_e5c585234010a04ec11c585c.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00183;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00183;src:url('chunks/assets/font_119bcbc2bb3922799c88cb61.woff2')format("woff");}.ff5_c00183{font-family:ff5_c00183;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.v1_c00183{vertical-align:15.840000px;}
.v2_c00183{vertical-align:29.880000px;}
.ls8_c00183{letter-spacing:-0.151200px;}
.lse_c00183{letter-spacing:-0.036000px;}
.lsd_c00183{letter-spacing:-0.028800px;}
.lsa_c00183{letter-spacing:-0.021600px;}
.ls9_c00183{letter-spacing:-0.014400px;}
.lsc_c00183{letter-spacing:-0.007200px;}
.ls7_c00183{letter-spacing:0.000000px;}
.ls2_c00183{letter-spacing:0.007200px;}
.ls4_c00183{letter-spacing:0.014400px;}
.ls6_c00183{letter-spacing:0.038304px;}
.ls3_c00183{letter-spacing:0.045720px;}
.ls5_c00183{letter-spacing:0.046320px;}
.lsf_c00183{letter-spacing:0.050400px;}
.lsb_c00183{letter-spacing:0.093600px;}
.ls0_c00183{letter-spacing:1212.120000px;}
.ls1_c00183{letter-spacing:2021.976000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00183{word-spacing:-0.054000px;}
.ws1e_c00183{word-spacing:-0.019152px;}
.wsd_c00183{word-spacing:-0.007200px;}
.ws0_c00183{word-spacing:0.000000px;}
.ws6_c00183{word-spacing:0.021600px;}
.ws19_c00183{word-spacing:0.050400px;}
.ws10_c00183{word-spacing:0.712800px;}
.ws7_c00183{word-spacing:0.734400px;}
.wsf_c00183{word-spacing:0.943200px;}
.ws1b_c00183{word-spacing:1.792800px;}
.ws1c_c00183{word-spacing:1.821600px;}
.ws1a_c00183{word-spacing:1.987200px;}
.ws14_c00183{word-spacing:2.520000px;}
.ws13_c00183{word-spacing:2.628000px;}
.ws3_c00183{word-spacing:5.752800px;}
.ws2_c00183{word-spacing:5.796000px;}
.ws16_c00183{word-spacing:9.014400px;}
.ws15_c00183{word-spacing:9.072000px;}
.ws18_c00183{word-spacing:10.771200px;}
.ws17_c00183{word-spacing:10.814400px;}
.ws5_c00183{word-spacing:11.469600px;}
.ws4_c00183{word-spacing:11.534400px;}
.wse_c00183{word-spacing:12.225600px;}
.ws8_c00183{word-spacing:13.269600px;}
.ws1d_c00183{word-spacing:13.305600px;}
.ws9_c00183{word-spacing:13.348800px;}
.wsc_c00183{word-spacing:15.148800px;}
.wsb_c00183{word-spacing:17.654400px;}
.wsa_c00183{word-spacing:17.719200px;}
.ws12_c00183{word-spacing:21.960000px;}
.ws11_c00183{word-spacing:25.948800px;}
._1_c00183{margin-left:-1.216800px;}
._0_c00183{width:1.152000px;}
.fc0_c00183{color:rgb(0,0,0);}
.fs3_c00183{font-size:42.120000px;}
.fs4_c00183{font-size:47.880000px;}
.fs1_c00183{font-size:54.000000px;}
.fs0_c00183{font-size:72.000000px;}
.fs2_c00183{font-size:108.000000px;}
.y0_c00183{bottom:0.000000px;}
.y2_c00183{bottom:57.450450px;}
.y1c_c00183{bottom:113.698470px;}
.y1b_c00183{bottom:132.060450px;}
.y1a_c00183{bottom:147.270450px;}
.y19_c00183{bottom:167.970450px;}
.y18_c00183{bottom:188.670450px;}
.y17_c00183{bottom:215.400450px;}
.y16_c00183{bottom:245.730450px;}
.y15_c00183{bottom:285.150450px;}
.y14_c00183{bottom:315.480450px;}
.y13_c00183{bottom:345.900450px;}
.y12_c00183{bottom:376.230450px;}
.y11_c00183{bottom:406.650450px;}
.y10_c00183{bottom:445.980450px;}
.yf_c00183{bottom:476.400450px;}
.ye_c00183{bottom:506.730450px;}
.yd_c00183{bottom:537.150450px;}
.yc_c00183{bottom:576.480450px;}
.yb_c00183{bottom:606.900450px;}
.ya_c00183{bottom:637.230450px;}
.y9_c00183{bottom:667.650450px;}
.y8_c00183{bottom:697.980450px;}
.y7_c00183{bottom:737.400450px;}
.y6_c00183{bottom:767.730450px;}
.y5_c00183{bottom:798.150450px;}
.y4_c00183{bottom:952.851450px;}
.y3_c00183{bottom:998.400450px;}
.y1_c00183{bottom:1193.250450px;}
.h1_c00183{height:47.988281px;}
.h8_c00183{height:49.937344px;}
.h5_c00183{height:60.257812px;}
.h6_c00183{height:65.130820px;}
.h7_c00183{height:65.131420px;}
.h2_c00183{height:72.160313px;}
.h4_c00183{height:90.492188px;}
.h3_c00183{height:112.640625px;}
.h0_c00183{height:1263.000000px;}
.w1_c00183{width:892.500000px;}
.w0_c00183{width:892.830000px;}
.x0_c00183{left:0.000000px;}
.x2_c00183{left:115.830000px;}
.x1_c00183{left:127.620000px;}
.x3_c00183{left:180.810000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.v1_c00183{vertical-align:14.080000pt;}
.v2_c00183{vertical-align:26.560000pt;}
.ls8_c00183{letter-spacing:-0.134400pt;}
.lse_c00183{letter-spacing:-0.032000pt;}
.lsd_c00183{letter-spacing:-0.025600pt;}
.lsa_c00183{letter-spacing:-0.019200pt;}
.ls9_c00183{letter-spacing:-0.012800pt;}
.lsc_c00183{letter-spacing:-0.006400pt;}
.ls7_c00183{letter-spacing:0.000000pt;}
.ls2_c00183{letter-spacing:0.006400pt;}
.ls4_c00183{letter-spacing:0.012800pt;}
.ls6_c00183{letter-spacing:0.034048pt;}
.ls3_c00183{letter-spacing:0.040640pt;}
.ls5_c00183{letter-spacing:0.041173pt;}
.lsf_c00183{letter-spacing:0.044800pt;}
.lsb_c00183{letter-spacing:0.083200pt;}
.ls0_c00183{letter-spacing:1077.440000pt;}
.ls1_c00183{letter-spacing:1797.312000pt;}
.ws1_c00183{word-spacing:-0.048000pt;}
.ws1e_c00183{word-spacing:-0.017024pt;}
.wsd_c00183{word-spacing:-0.006400pt;}
.ws0_c00183{word-spacing:0.000000pt;}
.ws6_c00183{word-spacing:0.019200pt;}
.ws19_c00183{word-spacing:0.044800pt;}
.ws10_c00183{word-spacing:0.633600pt;}
.ws7_c00183{word-spacing:0.652800pt;}
.wsf_c00183{word-spacing:0.838400pt;}
.ws1b_c00183{word-spacing:1.593600pt;}
.ws1c_c00183{word-spacing:1.619200pt;}
.ws1a_c00183{word-spacing:1.766400pt;}
.ws14_c00183{word-spacing:2.240000pt;}
.ws13_c00183{word-spacing:2.336000pt;}
.ws3_c00183{word-spacing:5.113600pt;}
.ws2_c00183{word-spacing:5.152000pt;}
.ws16_c00183{word-spacing:8.012800pt;}
.ws15_c00183{word-spacing:8.064000pt;}
.ws18_c00183{word-spacing:9.574400pt;}
.ws17_c00183{word-spacing:9.612800pt;}
.ws5_c00183{word-spacing:10.195200pt;}
.ws4_c00183{word-spacing:10.252800pt;}
.wse_c00183{word-spacing:10.867200pt;}
.ws8_c00183{word-spacing:11.795200pt;}
.ws1d_c00183{word-spacing:11.827200pt;}
.ws9_c00183{word-spacing:11.865600pt;}
.wsc_c00183{word-spacing:13.465600pt;}
.wsb_c00183{word-spacing:15.692800pt;}
.wsa_c00183{word-spacing:15.750400pt;}
.ws12_c00183{word-spacing:19.520000pt;}
.ws11_c00183{word-spacing:23.065600pt;}
._1_c00183{margin-left:-1.081600pt;}
._0_c00183{width:1.024000pt;}
.fs3_c00183{font-size:37.440000pt;}
.fs4_c00183{font-size:42.560000pt;}
.fs1_c00183{font-size:48.000000pt;}
.fs0_c00183{font-size:64.000000pt;}
.fs2_c00183{font-size:96.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y2_c00183{bottom:51.067067pt;}
.y1c_c00183{bottom:101.065307pt;}
.y1b_c00183{bottom:117.387067pt;}
.y1a_c00183{bottom:130.907067pt;}
.y19_c00183{bottom:149.307067pt;}
.y18_c00183{bottom:167.707067pt;}
.y17_c00183{bottom:191.467067pt;}
.y16_c00183{bottom:218.427067pt;}
.y15_c00183{bottom:253.467067pt;}
.y14_c00183{bottom:280.427067pt;}
.y13_c00183{bottom:307.467067pt;}
.y12_c00183{bottom:334.427067pt;}
.y11_c00183{bottom:361.467067pt;}
.y10_c00183{bottom:396.427067pt;}
.yf_c00183{bottom:423.467067pt;}
.ye_c00183{bottom:450.427067pt;}
.yd_c00183{bottom:477.467067pt;}
.yc_c00183{bottom:512.427067pt;}
.yb_c00183{bottom:539.467067pt;}
.ya_c00183{bottom:566.427067pt;}
.y9_c00183{bottom:593.467067pt;}
.y8_c00183{bottom:620.427067pt;}
.y7_c00183{bottom:655.467067pt;}
.y6_c00183{bottom:682.427067pt;}
.y5_c00183{bottom:709.467067pt;}
.y4_c00183{bottom:846.979067pt;}
.y3_c00183{bottom:887.467067pt;}
.y1_c00183{bottom:1060.667067pt;}
.h1_c00183{height:42.656250pt;}
.h8_c00183{height:44.388750pt;}
.h5_c00183{height:53.562500pt;}
.h6_c00183{height:57.894062pt;}
.h7_c00183{height:57.894596pt;}
.h2_c00183{height:64.142500pt;}
.h4_c00183{height:80.437500pt;}
.h3_c00183{height:100.125000pt;}
.h0_c00183{height:1122.666667pt;}
.w1_c00183{width:793.333333pt;}
.w0_c00183{width:793.626667pt;}
.x0_c00183{left:0.000000pt;}
.x2_c00183{left:102.960000pt;}
.x1_c00183{left:113.440000pt;}
.x3_c00183{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_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_a048b3d1f023aa55cc589efa.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.100098;font-style:normal;font-weight:normal;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_492470a72f3c729f28b20ebe.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;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_c00184;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00184;src:url('chunks/assets/font_5235c42f27902f981c08396a.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00184;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;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_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;}
.v1_c00184{vertical-align:15.840000px;}
.v2_c00184{vertical-align:29.880000px;}
.lsc_c00184{letter-spacing:-0.151200px;}
.ls10_c00184{letter-spacing:-0.092268px;}
.ls15_c00184{letter-spacing:-0.054684px;}
.lsf_c00184{letter-spacing:-0.028800px;}
.ls14_c00184{letter-spacing:-0.023436px;}
.ls12_c00184{letter-spacing:-0.021600px;}
.lsd_c00184{letter-spacing:-0.014400px;}
.lse_c00184{letter-spacing:-0.007200px;}
.lsb_c00184{letter-spacing:0.000000px;}
.ls4_c00184{letter-spacing:0.007200px;}
.ls5_c00184{letter-spacing:0.014400px;}
.ls2_c00184{letter-spacing:0.021600px;}
.ls7_c00184{letter-spacing:0.028800px;}
.lsa_c00184{letter-spacing:0.033516px;}
.ls8_c00184{letter-spacing:0.045720px;}
.ls0_c00184{letter-spacing:0.048096px;}
.ls13_c00184{letter-spacing:0.057600px;}
.ls11_c00184{letter-spacing:0.058716px;}
.ls9_c00184{letter-spacing:0.079200px;}
.ls16_c00184{letter-spacing:0.093600px;}
.ls3_c00184{letter-spacing:23.486400px;}
.ls6_c00184{letter-spacing:88.822440px;}
.ls1_c00184{letter-spacing:1212.120000px;}
.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:-20.877732px;}
.ws0_c00184{word-spacing:-19.530000px;}
.ws2_c00184{word-spacing:-19.506564px;}
.ws13_c00184{word-spacing:-0.100656px;}
.ws23_c00184{word-spacing:-0.039060px;}
.ws9_c00184{word-spacing:-0.021600px;}
.ws2e_c00184{word-spacing:-0.014364px;}
.ws4_c00184{word-spacing:0.000000px;}
.ws7_c00184{word-spacing:0.007200px;}
.ws12_c00184{word-spacing:0.014400px;}
.ws3_c00184{word-spacing:0.042084px;}
.ws1c_c00184{word-spacing:0.136800px;}
.ws22_c00184{word-spacing:0.165600px;}
.ws28_c00184{word-spacing:0.280800px;}
.ws29_c00184{word-spacing:0.288000px;}
.ws8_c00184{word-spacing:0.302400px;}
.ws2a_c00184{word-spacing:0.439200px;}
.ws21_c00184{word-spacing:1.418400px;}
.ws2d_c00184{word-spacing:1.432800px;}
.ws20_c00184{word-spacing:1.440000px;}
.ws2c_c00184{word-spacing:1.497600px;}
.ws17_c00184{word-spacing:2.916000px;}
.ws18_c00184{word-spacing:2.937600px;}
.ws26_c00184{word-spacing:3.571200px;}
.ws15_c00184{word-spacing:3.592800px;}
.ws14_c00184{word-spacing:3.607200px;}
.ws1b_c00184{word-spacing:3.636000px;}
.ws1a_c00184{word-spacing:3.650400px;}
.ws27_c00184{word-spacing:3.686400px;}
.ws11_c00184{word-spacing:4.327200px;}
.ws10_c00184{word-spacing:4.384800px;}
.ws1f_c00184{word-spacing:6.148800px;}
.wsf_c00184{word-spacing:8.604000px;}
.wse_c00184{word-spacing:8.668800px;}
.ws19_c00184{word-spacing:9.698400px;}
.ws5_c00184{word-spacing:9.734400px;}
.ws6_c00184{word-spacing:9.792000px;}
.wsa_c00184{word-spacing:11.520000px;}
.wsb_c00184{word-spacing:11.534400px;}
.ws25_c00184{word-spacing:11.872800px;}
.ws24_c00184{word-spacing:11.894400px;}
.ws1e_c00184{word-spacing:12.542400px;}
.ws1d_c00184{word-spacing:12.657600px;}
.ws16_c00184{word-spacing:15.170400px;}
.wsd_c00184{word-spacing:21.578400px;}
.wsc_c00184{word-spacing:21.657600px;}
.ws2b_c00184{word-spacing:24.847200px;}
._0_c00184{margin-left:-1.322640px;}
._1_c00184{width:1.224000px;}
.fc0_c00184{color:rgb(0,0,0);}
.fs5_c00184{font-size:42.120000px;}
.fs6_c00184{font-size:47.880000px;}
.fs1_c00184{font-size:54.000000px;}
.fs0_c00184{font-size:60.120000px;}
.fs2_c00184{font-size:72.000000px;}
.fs3_c00184{font-size:78.120000px;}
.fs4_c00184{font-size:83.880000px;}
.y0_c00184{bottom:0.000000px;}
.y3_c00184{bottom:57.450450px;}
.y23_c00184{bottom:113.698470px;}
.y22_c00184{bottom:132.060450px;}
.y21_c00184{bottom:147.270450px;}
.y20_c00184{bottom:167.970450px;}
.y1f_c00184{bottom:188.670450px;}
.y1e_c00184{bottom:242.310450px;}
.y1d_c00184{bottom:272.640450px;}
.y1c_c00184{bottom:303.060450px;}
.y1b_c00184{bottom:342.390450px;}
.y1a_c00184{bottom:372.810450px;}
.y19_c00184{bottom:403.140450px;}
.y18_c00184{bottom:448.050450px;}
.y17_c00184{bottom:497.820450px;}
.y16_c00184{bottom:528.150450px;}
.y15_c00184{bottom:558.570450px;}
.y14_c00184{bottom:588.900450px;}
.y13_c00184{bottom:628.320450px;}
.y12_c00184{bottom:658.650450px;}
.y11_c00184{bottom:689.070450px;}
.y10_c00184{bottom:719.400450px;}
.yf_c00184{bottom:758.820450px;}
.ye_c00184{bottom:789.150450px;}
.yd_c00184{bottom:819.570450px;}
.yc_c00184{bottom:866.010450px;}
.yb_c00184{bottom:918.300450px;}
.ya_c00184{bottom:949.980450px;}
.y9_c00184{bottom:980.400450px;}
.y8_c00184{bottom:1010.730450px;}
.y7_c00184{bottom:1041.150450px;}
.y6_c00184{bottom:1071.480450px;}
.y5_c00184{bottom:1110.900450px;}
.y4_c00184{bottom:1141.230450px;}
.y2_c00184{bottom:1177.860450px;}
.y1_c00184{bottom:1196.850450px;}
.h9_c00184{height:47.988281px;}
.ha_c00184{height:49.937344px;}
.h1_c00184{height:50.315273px;}
.h2_c00184{height:56.320312px;}
.h4_c00184{height:60.257812px;}
.h8_c00184{height:65.130820px;}
.h5_c00184{height:65.379727px;}
.h3_c00184{height:72.160312px;}
.h7_c00184{height:81.476719px;}
.h6_c00184{height:87.484219px;}
.h0_c00184{height:1263.000000px;}
.w1_c00184{width:892.500000px;}
.w0_c00184{width:892.830000px;}
.x0_c00184{left:0.000000px;}
.x1_c00184{left:127.620000px;}
.x2_c00184{left:180.810000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.v1_c00184{vertical-align:14.080000pt;}
.v2_c00184{vertical-align:26.560000pt;}
.lsc_c00184{letter-spacing:-0.134400pt;}
.ls10_c00184{letter-spacing:-0.082016pt;}
.ls15_c00184{letter-spacing:-0.048608pt;}
.lsf_c00184{letter-spacing:-0.025600pt;}
.ls14_c00184{letter-spacing:-0.020832pt;}
.ls12_c00184{letter-spacing:-0.019200pt;}
.lsd_c00184{letter-spacing:-0.012800pt;}
.lse_c00184{letter-spacing:-0.006400pt;}
.lsb_c00184{letter-spacing:0.000000pt;}
.ls4_c00184{letter-spacing:0.006400pt;}
.ls5_c00184{letter-spacing:0.012800pt;}
.ls2_c00184{letter-spacing:0.019200pt;}
.ls7_c00184{letter-spacing:0.025600pt;}
.lsa_c00184{letter-spacing:0.029792pt;}
.ls8_c00184{letter-spacing:0.040640pt;}
.ls0_c00184{letter-spacing:0.042752pt;}
.ls13_c00184{letter-spacing:0.051200pt;}
.ls11_c00184{letter-spacing:0.052192pt;}
.ls9_c00184{letter-spacing:0.070400pt;}
.ls16_c00184{letter-spacing:0.083200pt;}
.ls3_c00184{letter-spacing:20.876800pt;}
.ls6_c00184{letter-spacing:78.953280pt;}
.ls1_c00184{letter-spacing:1077.440000pt;}
.ws1_c00184{word-spacing:-18.557984pt;}
.ws0_c00184{word-spacing:-17.360000pt;}
.ws2_c00184{word-spacing:-17.339168pt;}
.ws13_c00184{word-spacing:-0.089472pt;}
.ws23_c00184{word-spacing:-0.034720pt;}
.ws9_c00184{word-spacing:-0.019200pt;}
.ws2e_c00184{word-spacing:-0.012768pt;}
.ws4_c00184{word-spacing:0.000000pt;}
.ws7_c00184{word-spacing:0.006400pt;}
.ws12_c00184{word-spacing:0.012800pt;}
.ws3_c00184{word-spacing:0.037408pt;}
.ws1c_c00184{word-spacing:0.121600pt;}
.ws22_c00184{word-spacing:0.147200pt;}
.ws28_c00184{word-spacing:0.249600pt;}
.ws29_c00184{word-spacing:0.256000pt;}
.ws8_c00184{word-spacing:0.268800pt;}
.ws2a_c00184{word-spacing:0.390400pt;}
.ws21_c00184{word-spacing:1.260800pt;}
.ws2d_c00184{word-spacing:1.273600pt;}
.ws20_c00184{word-spacing:1.280000pt;}
.ws2c_c00184{word-spacing:1.331200pt;}
.ws17_c00184{word-spacing:2.592000pt;}
.ws18_c00184{word-spacing:2.611200pt;}
.ws26_c00184{word-spacing:3.174400pt;}
.ws15_c00184{word-spacing:3.193600pt;}
.ws14_c00184{word-spacing:3.206400pt;}
.ws1b_c00184{word-spacing:3.232000pt;}
.ws1a_c00184{word-spacing:3.244800pt;}
.ws27_c00184{word-spacing:3.276800pt;}
.ws11_c00184{word-spacing:3.846400pt;}
.ws10_c00184{word-spacing:3.897600pt;}
.ws1f_c00184{word-spacing:5.465600pt;}
.wsf_c00184{word-spacing:7.648000pt;}
.wse_c00184{word-spacing:7.705600pt;}
.ws19_c00184{word-spacing:8.620800pt;}
.ws5_c00184{word-spacing:8.652800pt;}
.ws6_c00184{word-spacing:8.704000pt;}
.wsa_c00184{word-spacing:10.240000pt;}
.wsb_c00184{word-spacing:10.252800pt;}
.ws25_c00184{word-spacing:10.553600pt;}
.ws24_c00184{word-spacing:10.572800pt;}
.ws1e_c00184{word-spacing:11.148800pt;}
.ws1d_c00184{word-spacing:11.251200pt;}
.ws16_c00184{word-spacing:13.484800pt;}
.wsd_c00184{word-spacing:19.180800pt;}
.wsc_c00184{word-spacing:19.251200pt;}
.ws2b_c00184{word-spacing:22.086400pt;}
._0_c00184{margin-left:-1.175680pt;}
._1_c00184{width:1.088000pt;}
.fs5_c00184{font-size:37.440000pt;}
.fs6_c00184{font-size:42.560000pt;}
.fs1_c00184{font-size:48.000000pt;}
.fs0_c00184{font-size:53.440000pt;}
.fs2_c00184{font-size:64.000000pt;}
.fs3_c00184{font-size:69.440000pt;}
.fs4_c00184{font-size:74.560000pt;}
.y0_c00184{bottom:0.000000pt;}
.y3_c00184{bottom:51.067067pt;}
.y23_c00184{bottom:101.065307pt;}
.y22_c00184{bottom:117.387067pt;}
.y21_c00184{bottom:130.907067pt;}
.y20_c00184{bottom:149.307067pt;}
.y1f_c00184{bottom:167.707067pt;}
.y1e_c00184{bottom:215.387067pt;}
.y1d_c00184{bottom:242.347067pt;}
.y1c_c00184{bottom:269.387067pt;}
.y1b_c00184{bottom:304.347067pt;}
.y1a_c00184{bottom:331.387067pt;}
.y19_c00184{bottom:358.347067pt;}
.y18_c00184{bottom:398.267067pt;}
.y17_c00184{bottom:442.507067pt;}
.y16_c00184{bottom:469.467067pt;}
.y15_c00184{bottom:496.507067pt;}
.y14_c00184{bottom:523.467067pt;}
.y13_c00184{bottom:558.507067pt;}
.y12_c00184{bottom:585.467067pt;}
.y11_c00184{bottom:612.507067pt;}
.y10_c00184{bottom:639.467067pt;}
.yf_c00184{bottom:674.507067pt;}
.ye_c00184{bottom:701.467067pt;}
.yd_c00184{bottom:728.507067pt;}
.yc_c00184{bottom:769.787067pt;}
.yb_c00184{bottom:816.267067pt;}
.ya_c00184{bottom:844.427067pt;}
.y9_c00184{bottom:871.467067pt;}
.y8_c00184{bottom:898.427067pt;}
.y7_c00184{bottom:925.467067pt;}
.y6_c00184{bottom:952.427067pt;}
.y5_c00184{bottom:987.467067pt;}
.y4_c00184{bottom:1014.427067pt;}
.y2_c00184{bottom:1046.987067pt;}
.y1_c00184{bottom:1063.867067pt;}
.h9_c00184{height:42.656250pt;}
.ha_c00184{height:44.388750pt;}
.h1_c00184{height:44.724687pt;}
.h2_c00184{height:50.062500pt;}
.h4_c00184{height:53.562500pt;}
.h8_c00184{height:57.894063pt;}
.h5_c00184{height:58.115313pt;}
.h3_c00184{height:64.142500pt;}
.h7_c00184{height:72.423750pt;}
.h6_c00184{height:77.763750pt;}
.h0_c00184{height:1122.666667pt;}
.w1_c00184{width:793.333333pt;}
.w0_c00184{width:793.626667pt;}
.x0_c00184{left:0.000000pt;}
.x1_c00184{left:113.440000pt;}
.x2_c00184{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_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_a31b8132bf6c52c4985c3bda.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_0ff94cec8c5bc22b6b2948d0.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00185;src:url('chunks/assets/font_36245386307adca636a1a519.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00185;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00185{font-family:ff5_c00185;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_c00185;src:url('chunks/assets/font_7e9ec79ac689fdcde9af8ec8.woff2')format("woff");}.ff6_c00185{font-family:ff6_c00185;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_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;}
.v1_c00185{vertical-align:29.880000px;}
.ls10_c00185{letter-spacing:-0.151200px;}
.ls1a_c00185{letter-spacing:-0.050400px;}
.ls17_c00185{letter-spacing:-0.036000px;}
.ls1b_c00185{letter-spacing:-0.031248px;}
.ls19_c00185{letter-spacing:-0.028800px;}
.ls14_c00185{letter-spacing:-0.021600px;}
.ls11_c00185{letter-spacing:-0.014400px;}
.ls13_c00185{letter-spacing:-0.007812px;}
.ls1d_c00185{letter-spacing:-0.007776px;}
.ls16_c00185{letter-spacing:-0.007200px;}
.ls1c_c00185{letter-spacing:-0.003888px;}
.lsf_c00185{letter-spacing:0.000000px;}
.ls7_c00185{letter-spacing:0.007200px;}
.ls9_c00185{letter-spacing:0.014364px;}
.ls5_c00185{letter-spacing:0.014400px;}
.ls2_c00185{letter-spacing:0.015624px;}
.ls4_c00185{letter-spacing:0.021600px;}
.lsc_c00185{letter-spacing:0.023940px;}
.lsb_c00185{letter-spacing:0.028728px;}
.ls15_c00185{letter-spacing:0.028800px;}
.lse_c00185{letter-spacing:0.033516px;}
.ls6_c00185{letter-spacing:0.036000px;}
.ls0_c00185{letter-spacing:0.036072px;}
.ls1_c00185{letter-spacing:0.045720px;}
.lsd_c00185{letter-spacing:0.047880px;}
.ls18_c00185{letter-spacing:0.086400px;}
.ls12_c00185{letter-spacing:0.093600px;}
.lsa_c00185{letter-spacing:0.435960px;}
.ls8_c00185{letter-spacing:35.154000px;}
.ls3_c00185{letter-spacing:83.041560px;}
.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;}
}
.ws0_c00185{word-spacing:-19.545624px;}
.ws1_c00185{word-spacing:-19.498752px;}
.ws2_c00185{word-spacing:-10.800864px;}
.ws3_c00185{word-spacing:-0.306612px;}
.ws9_c00185{word-spacing:-0.124992px;}
.ws2b_c00185{word-spacing:-0.117180px;}
.ws8_c00185{word-spacing:-0.093600px;}
.ws16_c00185{word-spacing:-0.086400px;}
.ws35_c00185{word-spacing:-0.014364px;}
.ws2a_c00185{word-spacing:-0.007200px;}
.ws34_c00185{word-spacing:-0.004788px;}
.ws4_c00185{word-spacing:0.000000px;}
.ws15_c00185{word-spacing:0.043200px;}
.ws7_c00185{word-spacing:0.050400px;}
.ws29_c00185{word-spacing:0.057600px;}
.wsf_c00185{word-spacing:0.324000px;}
.ws10_c00185{word-spacing:0.388800px;}
.ws23_c00185{word-spacing:1.800000px;}
.ws33_c00185{word-spacing:2.130660px;}
.ws21_c00185{word-spacing:2.145600px;}
.ws31_c00185{word-spacing:2.149812px;}
.ws32_c00185{word-spacing:2.154600px;}
.ws20_c00185{word-spacing:2.160000px;}
.ws30_c00185{word-spacing:2.164176px;}
.ws1f_c00185{word-spacing:2.239200px;}
.wsc_c00185{word-spacing:2.534400px;}
.wsd_c00185{word-spacing:3.621600px;}
.ws11_c00185{word-spacing:3.866400px;}
.ws12_c00185{word-spacing:3.952800px;}
.ws1a_c00185{word-spacing:4.694400px;}
.ws19_c00185{word-spacing:4.730400px;}
.ws13_c00185{word-spacing:6.069600px;}
.ws26_c00185{word-spacing:6.076800px;}
.ws1e_c00185{word-spacing:6.098400px;}
.ws25_c00185{word-spacing:6.148800px;}
.ws14_c00185{word-spacing:6.156000px;}
.ws1d_c00185{word-spacing:6.206400px;}
.ws6_c00185{word-spacing:6.480000px;}
.ws5_c00185{word-spacing:6.494400px;}
.ws2d_c00185{word-spacing:7.192800px;}
.ws2c_c00185{word-spacing:7.264800px;}
.ws2f_c00185{word-spacing:9.691200px;}
.ws2e_c00185{word-spacing:9.734400px;}
.ws27_c00185{word-spacing:10.728000px;}
.ws28_c00185{word-spacing:10.785600px;}
.ws24_c00185{word-spacing:10.836000px;}
.ws1b_c00185{word-spacing:11.469600px;}
.ws1c_c00185{word-spacing:11.548800px;}
.ws18_c00185{word-spacing:13.233600px;}
.ws17_c00185{word-spacing:13.327200px;}
.ws22_c00185{word-spacing:13.680000px;}
.wse_c00185{word-spacing:18.698400px;}
.wsb_c00185{word-spacing:21.225600px;}
.wsa_c00185{word-spacing:21.240000px;}
._0_c00185{margin-left:-1.022040px;}
._1_c00185{width:1.368000px;}
.fc0_c00185{color:rgb(0,0,0);}
.fs6_c00185{font-size:38.880000px;}
.fs3_c00185{font-size:42.120000px;}
.fs5_c00185{font-size:47.880000px;}
.fs2_c00185{font-size:54.000000px;}
.fs0_c00185{font-size:60.120000px;}
.fs1_c00185{font-size:72.000000px;}
.fs4_c00185{font-size:78.120000px;}
.y0_c00185{bottom:0.000000px;}
.y3_c00185{bottom:57.450450px;}
.y4_c00185{bottom:61.410450px;}
.y26_c00185{bottom:113.706030px;}
.y25_c00185{bottom:132.068010px;}
.y24_c00185{bottom:150.334230px;}
.y23_c00185{bottom:168.600450px;}
.y22_c00185{bottom:182.460600px;}
.y21_c00185{bottom:197.670450px;}
.y20_c00185{bottom:218.370450px;}
.y1f_c00185{bottom:239.070450px;}
.y1e_c00185{bottom:287.040600px;}
.y1d_c00185{bottom:317.460600px;}
.y1c_c00185{bottom:362.370450px;}
.y1b_c00185{bottom:421.050450px;}
.y1a_c00185{bottom:451.470450px;}
.y19_c00185{bottom:481.800450px;}
.y18_c00185{bottom:512.220450px;}
.y17_c00185{bottom:551.550450px;}
.y16_c00185{bottom:581.970450px;}
.y15_c00185{bottom:612.300450px;}
.y14_c00185{bottom:642.720450px;}
.y13_c00185{bottom:673.050450px;}
.y12_c00185{bottom:703.470450px;}
.y11_c00185{bottom:733.800450px;}
.y10_c00185{bottom:764.220450px;}
.yf_c00185{bottom:803.550450px;}
.ye_c00185{bottom:833.970450px;}
.yd_c00185{bottom:864.300450px;}
.yc_c00185{bottom:894.720450px;}
.yb_c00185{bottom:925.050450px;}
.ya_c00185{bottom:955.470450px;}
.y9_c00185{bottom:985.800450px;}
.y8_c00185{bottom:1016.220450px;}
.y7_c00185{bottom:1061.130450px;}
.y6_c00185{bottom:1110.900450px;}
.y5_c00185{bottom:1141.230450px;}
.y2_c00185{bottom:1173.810450px;}
.y1_c00185{bottom:1196.850450px;}
.h2_c00185{height:47.988281px;}
.h8_c00185{height:49.937344px;}
.h1_c00185{height:50.315273px;}
.h3_c00185{height:56.320312px;}
.h4_c00185{height:60.257812px;}
.h7_c00185{height:65.130220px;}
.h5_c00185{height:65.130820px;}
.h6_c00185{height:81.476719px;}
.h0_c00185{height:1263.000000px;}
.w1_c00185{width:892.500000px;}
.w0_c00185{width:892.830000px;}
.x0_c00185{left:0.000000px;}
.x2_c00185{left:127.620000px;}
.x6_c00185{left:141.120000px;}
.x5_c00185{left:180.810000px;}
.x4_c00185{left:435.240000px;}
.x3_c00185{left:446.490000px;}
.x1_c00185{left:490.770000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.v1_c00185{vertical-align:26.560000pt;}
.ls10_c00185{letter-spacing:-0.134400pt;}
.ls1a_c00185{letter-spacing:-0.044800pt;}
.ls17_c00185{letter-spacing:-0.032000pt;}
.ls1b_c00185{letter-spacing:-0.027776pt;}
.ls19_c00185{letter-spacing:-0.025600pt;}
.ls14_c00185{letter-spacing:-0.019200pt;}
.ls11_c00185{letter-spacing:-0.012800pt;}
.ls13_c00185{letter-spacing:-0.006944pt;}
.ls1d_c00185{letter-spacing:-0.006912pt;}
.ls16_c00185{letter-spacing:-0.006400pt;}
.ls1c_c00185{letter-spacing:-0.003456pt;}
.lsf_c00185{letter-spacing:0.000000pt;}
.ls7_c00185{letter-spacing:0.006400pt;}
.ls9_c00185{letter-spacing:0.012768pt;}
.ls5_c00185{letter-spacing:0.012800pt;}
.ls2_c00185{letter-spacing:0.013888pt;}
.ls4_c00185{letter-spacing:0.019200pt;}
.lsc_c00185{letter-spacing:0.021280pt;}
.lsb_c00185{letter-spacing:0.025536pt;}
.ls15_c00185{letter-spacing:0.025600pt;}
.lse_c00185{letter-spacing:0.029792pt;}
.ls6_c00185{letter-spacing:0.032000pt;}
.ls0_c00185{letter-spacing:0.032064pt;}
.ls1_c00185{letter-spacing:0.040640pt;}
.lsd_c00185{letter-spacing:0.042560pt;}
.ls18_c00185{letter-spacing:0.076800pt;}
.ls12_c00185{letter-spacing:0.083200pt;}
.lsa_c00185{letter-spacing:0.387520pt;}
.ls8_c00185{letter-spacing:31.248000pt;}
.ls3_c00185{letter-spacing:73.814720pt;}
.ws0_c00185{word-spacing:-17.373888pt;}
.ws1_c00185{word-spacing:-17.332224pt;}
.ws2_c00185{word-spacing:-9.600768pt;}
.ws3_c00185{word-spacing:-0.272544pt;}
.ws9_c00185{word-spacing:-0.111104pt;}
.ws2b_c00185{word-spacing:-0.104160pt;}
.ws8_c00185{word-spacing:-0.083200pt;}
.ws16_c00185{word-spacing:-0.076800pt;}
.ws35_c00185{word-spacing:-0.012768pt;}
.ws2a_c00185{word-spacing:-0.006400pt;}
.ws34_c00185{word-spacing:-0.004256pt;}
.ws4_c00185{word-spacing:0.000000pt;}
.ws15_c00185{word-spacing:0.038400pt;}
.ws7_c00185{word-spacing:0.044800pt;}
.ws29_c00185{word-spacing:0.051200pt;}
.wsf_c00185{word-spacing:0.288000pt;}
.ws10_c00185{word-spacing:0.345600pt;}
.ws23_c00185{word-spacing:1.600000pt;}
.ws33_c00185{word-spacing:1.893920pt;}
.ws21_c00185{word-spacing:1.907200pt;}
.ws31_c00185{word-spacing:1.910944pt;}
.ws32_c00185{word-spacing:1.915200pt;}
.ws20_c00185{word-spacing:1.920000pt;}
.ws30_c00185{word-spacing:1.923712pt;}
.ws1f_c00185{word-spacing:1.990400pt;}
.wsc_c00185{word-spacing:2.252800pt;}
.wsd_c00185{word-spacing:3.219200pt;}
.ws11_c00185{word-spacing:3.436800pt;}
.ws12_c00185{word-spacing:3.513600pt;}
.ws1a_c00185{word-spacing:4.172800pt;}
.ws19_c00185{word-spacing:4.204800pt;}
.ws13_c00185{word-spacing:5.395200pt;}
.ws26_c00185{word-spacing:5.401600pt;}
.ws1e_c00185{word-spacing:5.420800pt;}
.ws25_c00185{word-spacing:5.465600pt;}
.ws14_c00185{word-spacing:5.472000pt;}
.ws1d_c00185{word-spacing:5.516800pt;}
.ws6_c00185{word-spacing:5.760000pt;}
.ws5_c00185{word-spacing:5.772800pt;}
.ws2d_c00185{word-spacing:6.393600pt;}
.ws2c_c00185{word-spacing:6.457600pt;}
.ws2f_c00185{word-spacing:8.614400pt;}
.ws2e_c00185{word-spacing:8.652800pt;}
.ws27_c00185{word-spacing:9.536000pt;}
.ws28_c00185{word-spacing:9.587200pt;}
.ws24_c00185{word-spacing:9.632000pt;}
.ws1b_c00185{word-spacing:10.195200pt;}
.ws1c_c00185{word-spacing:10.265600pt;}
.ws18_c00185{word-spacing:11.763200pt;}
.ws17_c00185{word-spacing:11.846400pt;}
.ws22_c00185{word-spacing:12.160000pt;}
.wse_c00185{word-spacing:16.620800pt;}
.wsb_c00185{word-spacing:18.867200pt;}
.wsa_c00185{word-spacing:18.880000pt;}
._0_c00185{margin-left:-0.908480pt;}
._1_c00185{width:1.216000pt;}
.fs6_c00185{font-size:34.560000pt;}
.fs3_c00185{font-size:37.440000pt;}
.fs5_c00185{font-size:42.560000pt;}
.fs2_c00185{font-size:48.000000pt;}
.fs0_c00185{font-size:53.440000pt;}
.fs1_c00185{font-size:64.000000pt;}
.fs4_c00185{font-size:69.440000pt;}
.y0_c00185{bottom:0.000000pt;}
.y3_c00185{bottom:51.067067pt;}
.y4_c00185{bottom:54.587067pt;}
.y26_c00185{bottom:101.072027pt;}
.y25_c00185{bottom:117.393787pt;}
.y24_c00185{bottom:133.630427pt;}
.y23_c00185{bottom:149.867067pt;}
.y22_c00185{bottom:162.187200pt;}
.y21_c00185{bottom:175.707067pt;}
.y20_c00185{bottom:194.107067pt;}
.y1f_c00185{bottom:212.507067pt;}
.y1e_c00185{bottom:255.147200pt;}
.y1d_c00185{bottom:282.187200pt;}
.y1c_c00185{bottom:322.107067pt;}
.y1b_c00185{bottom:374.267067pt;}
.y1a_c00185{bottom:401.307067pt;}
.y19_c00185{bottom:428.267067pt;}
.y18_c00185{bottom:455.307067pt;}
.y17_c00185{bottom:490.267067pt;}
.y16_c00185{bottom:517.307067pt;}
.y15_c00185{bottom:544.267067pt;}
.y14_c00185{bottom:571.307067pt;}
.y13_c00185{bottom:598.267067pt;}
.y12_c00185{bottom:625.307067pt;}
.y11_c00185{bottom:652.267067pt;}
.y10_c00185{bottom:679.307067pt;}
.yf_c00185{bottom:714.267067pt;}
.ye_c00185{bottom:741.307067pt;}
.yd_c00185{bottom:768.267067pt;}
.yc_c00185{bottom:795.307067pt;}
.yb_c00185{bottom:822.267067pt;}
.ya_c00185{bottom:849.307067pt;}
.y9_c00185{bottom:876.267067pt;}
.y8_c00185{bottom:903.307067pt;}
.y7_c00185{bottom:943.227067pt;}
.y6_c00185{bottom:987.467067pt;}
.y5_c00185{bottom:1014.427067pt;}
.y2_c00185{bottom:1043.387067pt;}
.y1_c00185{bottom:1063.867067pt;}
.h2_c00185{height:42.656250pt;}
.h8_c00185{height:44.388750pt;}
.h1_c00185{height:44.724687pt;}
.h3_c00185{height:50.062500pt;}
.h4_c00185{height:53.562500pt;}
.h7_c00185{height:57.893529pt;}
.h5_c00185{height:57.894063pt;}
.h6_c00185{height:72.423750pt;}
.h0_c00185{height:1122.666667pt;}
.w1_c00185{width:793.333333pt;}
.w0_c00185{width:793.626667pt;}
.x0_c00185{left:0.000000pt;}
.x2_c00185{left:113.440000pt;}
.x6_c00185{left:125.440000pt;}
.x5_c00185{left:160.720000pt;}
.x4_c00185{left:386.880000pt;}
.x3_c00185{left:396.880000pt;}
.x1_c00185{left:436.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_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_94d7cfec2e2a07fa89f9f8b5.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.100098;font-style:normal;font-weight:normal;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_4e4cbe482812345e8b638d1f.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;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_c00186;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_1962a155feec5c2443bb133b.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00186;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;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_c00186;src:url('chunks/assets/font_13004a5f8b85a4d3116a845b.woff2')format("woff");}.ff6_c00186{font-family:ff6_c00186;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_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;}
.v1_c00186{vertical-align:15.840000px;}
.v2_c00186{vertical-align:29.880000px;}
.ls10_c00186{letter-spacing:-0.151200px;}
.ls16_c00186{letter-spacing:-0.039060px;}
.ls12_c00186{letter-spacing:-0.036000px;}
.ls14_c00186{letter-spacing:-0.021600px;}
.ls1d_c00186{letter-spacing:-0.019440px;}
.ls15_c00186{letter-spacing:-0.014400px;}
.ls1b_c00186{letter-spacing:-0.011664px;}
.ls17_c00186{letter-spacing:-0.007812px;}
.ls11_c00186{letter-spacing:-0.007200px;}
.lsf_c00186{letter-spacing:0.000000px;}
.ls6_c00186{letter-spacing:0.007200px;}
.ls1e_c00186{letter-spacing:0.009576px;}
.lsa_c00186{letter-spacing:0.014364px;}
.ls8_c00186{letter-spacing:0.014400px;}
.lse_c00186{letter-spacing:0.019152px;}
.ls3_c00186{letter-spacing:0.021600px;}
.ls9_c00186{letter-spacing:0.023940px;}
.ls1c_c00186{letter-spacing:0.033516px;}
.ls4_c00186{letter-spacing:0.036000px;}
.lsc_c00186{letter-spacing:0.038304px;}
.ls7_c00186{letter-spacing:0.043200px;}
.ls2_c00186{letter-spacing:0.045720px;}
.ls0_c00186{letter-spacing:0.048096px;}
.ls18_c00186{letter-spacing:0.054756px;}
.ls1a_c00186{letter-spacing:0.057600px;}
.lsd_c00186{letter-spacing:0.062244px;}
.ls13_c00186{letter-spacing:0.086400px;}
.ls19_c00186{letter-spacing:0.093600px;}
.lsb_c00186{letter-spacing:0.104040px;}
.ls5_c00186{letter-spacing:22.889160px;}
.ls1_c00186{letter-spacing:1212.120000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00186{word-spacing:-19.490940px;}
.ws2_c00186{word-spacing:-10.796976px;}
.ws3_c00186{word-spacing:-10.789200px;}
.ws1_c00186{word-spacing:-10.584756px;}
.ws10_c00186{word-spacing:-0.085932px;}
.ws30_c00186{word-spacing:-0.019152px;}
.ws25_c00186{word-spacing:-0.007200px;}
.ws29_c00186{word-spacing:-0.004788px;}
.ws5_c00186{word-spacing:0.000000px;}
.ws2e_c00186{word-spacing:0.004788px;}
.ws17_c00186{word-spacing:0.007200px;}
.ws2f_c00186{word-spacing:0.009576px;}
.ws13_c00186{word-spacing:0.014400px;}
.ws8_c00186{word-spacing:0.036000px;}
.ws4_c00186{word-spacing:0.042084px;}
.ws28_c00186{word-spacing:0.129600px;}
.wsb_c00186{word-spacing:0.698400px;}
.wsa_c00186{word-spacing:0.777600px;}
.wsc_c00186{word-spacing:1.058400px;}
.wsd_c00186{word-spacing:1.144800px;}
.ws21_c00186{word-spacing:1.814400px;}
.ws22_c00186{word-spacing:1.908000px;}
.ws9_c00186{word-spacing:2.181600px;}
.wsf_c00186{word-spacing:2.484000px;}
.wse_c00186{word-spacing:2.570400px;}
.ws15_c00186{word-spacing:3.607200px;}
.ws1d_c00186{word-spacing:3.960000px;}
.ws1c_c00186{word-spacing:4.017600px;}
.ws19_c00186{word-spacing:5.400000px;}
.ws18_c00186{word-spacing:5.457600px;}
.ws16_c00186{word-spacing:5.767200px;}
.ws14_c00186{word-spacing:6.501600px;}
.ws7_c00186{word-spacing:7.920000px;}
.ws6_c00186{word-spacing:7.999200px;}
.ws1a_c00186{word-spacing:8.316000px;}
.ws1b_c00186{word-spacing:8.424000px;}
.ws20_c00186{word-spacing:8.582400px;}
.ws1e_c00186{word-spacing:8.596800px;}
.ws27_c00186{word-spacing:8.676000px;}
.ws26_c00186{word-spacing:8.712000px;}
.ws1f_c00186{word-spacing:8.820000px;}
.ws2d_c00186{word-spacing:8.953560px;}
.ws23_c00186{word-spacing:8.964000px;}
.ws2c_c00186{word-spacing:8.977500px;}
.ws2b_c00186{word-spacing:8.982288px;}
.ws2a_c00186{word-spacing:9.001440px;}
.ws24_c00186{word-spacing:9.014400px;}
.ws12_c00186{word-spacing:9.748800px;}
.ws11_c00186{word-spacing:19.425600px;}
._0_c00186{margin-left:-1.322640px;}
._1_c00186{width:1.152000px;}
._2_c00186{width:9.416700px;}
.fc0_c00186{color:rgb(0,0,0);}
.fs6_c00186{font-size:38.880000px;}
.fs3_c00186{font-size:42.120000px;}
.fs5_c00186{font-size:47.880000px;}
.fs1_c00186{font-size:54.000000px;}
.fs0_c00186{font-size:60.120000px;}
.fs2_c00186{font-size:72.000000px;}
.fs4_c00186{font-size:78.120000px;}
.y0_c00186{bottom:0.000000px;}
.y3_c00186{bottom:57.450450px;}
.y22_c00186{bottom:113.698470px;}
.y21_c00186{bottom:132.064950px;}
.y20_c00186{bottom:145.834230px;}
.y1f_c00186{bottom:164.100450px;}
.y1e_c00186{bottom:179.310600px;}
.y1d_c00186{bottom:200.010600px;}
.y1c_c00186{bottom:220.710600px;}
.y1b_c00186{bottom:291.630600px;}
.y1a_c00186{bottom:326.010600px;}
.y19_c00186{bottom:369.480600px;}
.y18_c00186{bottom:403.860450px;}
.y17_c00186{bottom:438.330450px;}
.y16_c00186{bottom:472.710450px;}
.y15_c00186{bottom:507.180450px;}
.y14_c00186{bottom:541.560450px;}
.y13_c00186{bottom:576.030450px;}
.y12_c00186{bottom:619.410450px;}
.y11_c00186{bottom:653.880450px;}
.y10_c00186{bottom:688.260450px;}
.yf_c00186{bottom:722.730450px;}
.ye_c00186{bottom:766.110450px;}
.yd_c00186{bottom:800.580450px;}
.yc_c00186{bottom:834.960450px;}
.yb_c00186{bottom:880.050450px;}
.ya_c00186{bottom:933.690450px;}
.y9_c00186{bottom:968.160450px;}
.y8_c00186{bottom:1002.540450px;}
.y7_c00186{bottom:1037.010450px;}
.y6_c00186{bottom:1071.390450px;}
.y5_c00186{bottom:1110.900450px;}
.y4_c00186{bottom:1141.230450px;}
.y2_c00186{bottom:1177.860450px;}
.y1_c00186{bottom:1196.850450px;}
.h7_c00186{height:47.988281px;}
.h8_c00186{height:49.937344px;}
.h9_c00186{height:49.945264px;}
.h1_c00186{height:50.315273px;}
.h2_c00186{height:56.320312px;}
.h4_c00186{height:60.257812px;}
.h5_c00186{height:65.130820px;}
.h3_c00186{height:72.160312px;}
.h6_c00186{height:81.476719px;}
.h0_c00186{height:1263.000000px;}
.w1_c00186{width:892.500000px;}
.w0_c00186{width:892.830000px;}
.x0_c00186{left:0.000000px;}
.x1_c00186{left:127.620000px;}
.x3_c00186{left:141.120000px;}
.x2_c00186{left:180.810000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.v1_c00186{vertical-align:14.080000pt;}
.v2_c00186{vertical-align:26.560000pt;}
.ls10_c00186{letter-spacing:-0.134400pt;}
.ls16_c00186{letter-spacing:-0.034720pt;}
.ls12_c00186{letter-spacing:-0.032000pt;}
.ls14_c00186{letter-spacing:-0.019200pt;}
.ls1d_c00186{letter-spacing:-0.017280pt;}
.ls15_c00186{letter-spacing:-0.012800pt;}
.ls1b_c00186{letter-spacing:-0.010368pt;}
.ls17_c00186{letter-spacing:-0.006944pt;}
.ls11_c00186{letter-spacing:-0.006400pt;}
.lsf_c00186{letter-spacing:0.000000pt;}
.ls6_c00186{letter-spacing:0.006400pt;}
.ls1e_c00186{letter-spacing:0.008512pt;}
.lsa_c00186{letter-spacing:0.012768pt;}
.ls8_c00186{letter-spacing:0.012800pt;}
.lse_c00186{letter-spacing:0.017024pt;}
.ls3_c00186{letter-spacing:0.019200pt;}
.ls9_c00186{letter-spacing:0.021280pt;}
.ls1c_c00186{letter-spacing:0.029792pt;}
.ls4_c00186{letter-spacing:0.032000pt;}
.lsc_c00186{letter-spacing:0.034048pt;}
.ls7_c00186{letter-spacing:0.038400pt;}
.ls2_c00186{letter-spacing:0.040640pt;}
.ls0_c00186{letter-spacing:0.042752pt;}
.ls18_c00186{letter-spacing:0.048672pt;}
.ls1a_c00186{letter-spacing:0.051200pt;}
.lsd_c00186{letter-spacing:0.055328pt;}
.ls13_c00186{letter-spacing:0.076800pt;}
.ls19_c00186{letter-spacing:0.083200pt;}
.lsb_c00186{letter-spacing:0.092480pt;}
.ls5_c00186{letter-spacing:20.345920pt;}
.ls1_c00186{letter-spacing:1077.440000pt;}
.ws0_c00186{word-spacing:-17.325280pt;}
.ws2_c00186{word-spacing:-9.597312pt;}
.ws3_c00186{word-spacing:-9.590400pt;}
.ws1_c00186{word-spacing:-9.408672pt;}
.ws10_c00186{word-spacing:-0.076384pt;}
.ws30_c00186{word-spacing:-0.017024pt;}
.ws25_c00186{word-spacing:-0.006400pt;}
.ws29_c00186{word-spacing:-0.004256pt;}
.ws5_c00186{word-spacing:0.000000pt;}
.ws2e_c00186{word-spacing:0.004256pt;}
.ws17_c00186{word-spacing:0.006400pt;}
.ws2f_c00186{word-spacing:0.008512pt;}
.ws13_c00186{word-spacing:0.012800pt;}
.ws8_c00186{word-spacing:0.032000pt;}
.ws4_c00186{word-spacing:0.037408pt;}
.ws28_c00186{word-spacing:0.115200pt;}
.wsb_c00186{word-spacing:0.620800pt;}
.wsa_c00186{word-spacing:0.691200pt;}
.wsc_c00186{word-spacing:0.940800pt;}
.wsd_c00186{word-spacing:1.017600pt;}
.ws21_c00186{word-spacing:1.612800pt;}
.ws22_c00186{word-spacing:1.696000pt;}
.ws9_c00186{word-spacing:1.939200pt;}
.wsf_c00186{word-spacing:2.208000pt;}
.wse_c00186{word-spacing:2.284800pt;}
.ws15_c00186{word-spacing:3.206400pt;}
.ws1d_c00186{word-spacing:3.520000pt;}
.ws1c_c00186{word-spacing:3.571200pt;}
.ws19_c00186{word-spacing:4.800000pt;}
.ws18_c00186{word-spacing:4.851200pt;}
.ws16_c00186{word-spacing:5.126400pt;}
.ws14_c00186{word-spacing:5.779200pt;}
.ws7_c00186{word-spacing:7.040000pt;}
.ws6_c00186{word-spacing:7.110400pt;}
.ws1a_c00186{word-spacing:7.392000pt;}
.ws1b_c00186{word-spacing:7.488000pt;}
.ws20_c00186{word-spacing:7.628800pt;}
.ws1e_c00186{word-spacing:7.641600pt;}
.ws27_c00186{word-spacing:7.712000pt;}
.ws26_c00186{word-spacing:7.744000pt;}
.ws1f_c00186{word-spacing:7.840000pt;}
.ws2d_c00186{word-spacing:7.958720pt;}
.ws23_c00186{word-spacing:7.968000pt;}
.ws2c_c00186{word-spacing:7.980000pt;}
.ws2b_c00186{word-spacing:7.984256pt;}
.ws2a_c00186{word-spacing:8.001280pt;}
.ws24_c00186{word-spacing:8.012800pt;}
.ws12_c00186{word-spacing:8.665600pt;}
.ws11_c00186{word-spacing:17.267200pt;}
._0_c00186{margin-left:-1.175680pt;}
._1_c00186{width:1.024000pt;}
._2_c00186{width:8.370400pt;}
.fs6_c00186{font-size:34.560000pt;}
.fs3_c00186{font-size:37.440000pt;}
.fs5_c00186{font-size:42.560000pt;}
.fs1_c00186{font-size:48.000000pt;}
.fs0_c00186{font-size:53.440000pt;}
.fs2_c00186{font-size:64.000000pt;}
.fs4_c00186{font-size:69.440000pt;}
.y0_c00186{bottom:0.000000pt;}
.y3_c00186{bottom:51.067067pt;}
.y22_c00186{bottom:101.065307pt;}
.y21_c00186{bottom:117.391067pt;}
.y20_c00186{bottom:129.630427pt;}
.y1f_c00186{bottom:145.867067pt;}
.y1e_c00186{bottom:159.387200pt;}
.y1d_c00186{bottom:177.787200pt;}
.y1c_c00186{bottom:196.187200pt;}
.y1b_c00186{bottom:259.227200pt;}
.y1a_c00186{bottom:289.787200pt;}
.y19_c00186{bottom:328.427200pt;}
.y18_c00186{bottom:358.987067pt;}
.y17_c00186{bottom:389.627067pt;}
.y16_c00186{bottom:420.187067pt;}
.y15_c00186{bottom:450.827067pt;}
.y14_c00186{bottom:481.387067pt;}
.y13_c00186{bottom:512.027067pt;}
.y12_c00186{bottom:550.587067pt;}
.y11_c00186{bottom:581.227067pt;}
.y10_c00186{bottom:611.787067pt;}
.yf_c00186{bottom:642.427067pt;}
.ye_c00186{bottom:680.987067pt;}
.yd_c00186{bottom:711.627067pt;}
.yc_c00186{bottom:742.187067pt;}
.yb_c00186{bottom:782.267067pt;}
.ya_c00186{bottom:829.947067pt;}
.y9_c00186{bottom:860.587067pt;}
.y8_c00186{bottom:891.147067pt;}
.y7_c00186{bottom:921.787067pt;}
.y6_c00186{bottom:952.347067pt;}
.y5_c00186{bottom:987.467067pt;}
.y4_c00186{bottom:1014.427067pt;}
.y2_c00186{bottom:1046.987067pt;}
.y1_c00186{bottom:1063.867067pt;}
.h7_c00186{height:42.656250pt;}
.h8_c00186{height:44.388750pt;}
.h9_c00186{height:44.395790pt;}
.h1_c00186{height:44.724687pt;}
.h2_c00186{height:50.062500pt;}
.h4_c00186{height:53.562500pt;}
.h5_c00186{height:57.894063pt;}
.h3_c00186{height:64.142500pt;}
.h6_c00186{height:72.423750pt;}
.h0_c00186{height:1122.666667pt;}
.w1_c00186{width:793.333333pt;}
.w0_c00186{width:793.626667pt;}
.x0_c00186{left:0.000000pt;}
.x1_c00186{left:113.440000pt;}
.x3_c00186{left:125.440000pt;}
.x2_c00186{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_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_2459f9717f8cdcce965a2d29.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00187;src:url('chunks/assets/font_f4107f357cd85b36613a1ee6.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00187;src:url('chunks/assets/font_ad5e67ea258c70ea9322f974.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;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_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;}
.v1_c00187{vertical-align:29.880000px;}
.ls14_c00187{letter-spacing:-0.151200px;}
.ls19_c00187{letter-spacing:-0.043200px;}
.ls1b_c00187{letter-spacing:-0.036000px;}
.ls1c_c00187{letter-spacing:-0.028800px;}
.ls1d_c00187{letter-spacing:-0.021600px;}
.ls1f_c00187{letter-spacing:-0.015552px;}
.ls15_c00187{letter-spacing:-0.014400px;}
.ls16_c00187{letter-spacing:-0.007200px;}
.ls1e_c00187{letter-spacing:-0.003888px;}
.ls13_c00187{letter-spacing:0.000000px;}
.ls4_c00187{letter-spacing:0.007200px;}
.ls12_c00187{letter-spacing:0.009576px;}
.ls7_c00187{letter-spacing:0.014364px;}
.ls5_c00187{letter-spacing:0.014400px;}
.ls8_c00187{letter-spacing:0.018720px;}
.lsa_c00187{letter-spacing:0.019152px;}
.lsb_c00187{letter-spacing:0.023940px;}
.ls11_c00187{letter-spacing:0.028728px;}
.ls6_c00187{letter-spacing:0.028800px;}
.ls9_c00187{letter-spacing:0.033516px;}
.ls1a_c00187{letter-spacing:0.036000px;}
.ls0_c00187{letter-spacing:0.036072px;}
.lsc_c00187{letter-spacing:0.043092px;}
.ls3_c00187{letter-spacing:0.043200px;}
.ls10_c00187{letter-spacing:0.052668px;}
.ls17_c00187{letter-spacing:0.054756px;}
.lse_c00187{letter-spacing:0.057456px;}
.lsf_c00187{letter-spacing:0.075960px;}
.ls18_c00187{letter-spacing:0.093600px;}
.ls1_c00187{letter-spacing:0.144000px;}
.lsd_c00187{letter-spacing:0.378720px;}
.ls2_c00187{letter-spacing:65.304000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00187{word-spacing:-17.978400px;}
.ws1_c00187{word-spacing:-17.956800px;}
.ws3_c00187{word-spacing:-10.804752px;}
.ws4_c00187{word-spacing:-10.793088px;}
.ws0_c00187{word-spacing:-10.584756px;}
.ws5_c00187{word-spacing:-0.306612px;}
.wse_c00187{word-spacing:-0.093600px;}
.ws30_c00187{word-spacing:-0.038304px;}
.ws32_c00187{word-spacing:-0.033516px;}
.ws2d_c00187{word-spacing:-0.014364px;}
.ws2e_c00187{word-spacing:-0.009576px;}
.ws6_c00187{word-spacing:0.000000px;}
.ws2f_c00187{word-spacing:0.004788px;}
.ws33_c00187{word-spacing:0.009576px;}
.ws1a_c00187{word-spacing:0.050400px;}
.ws10_c00187{word-spacing:0.115200px;}
.ws31_c00187{word-spacing:0.325584px;}
.ws2c_c00187{word-spacing:1.053360px;}
.ws2b_c00187{word-spacing:1.072512px;}
.ws2a_c00187{word-spacing:1.077300px;}
.wsb_c00187{word-spacing:2.116800px;}
.wsa_c00187{word-spacing:2.188800px;}
.ws22_c00187{word-spacing:2.505600px;}
.ws21_c00187{word-spacing:2.520000px;}
.ws1d_c00187{word-spacing:2.937600px;}
.ws1c_c00187{word-spacing:3.016800px;}
.ws12_c00187{word-spacing:3.585600px;}
.ws14_c00187{word-spacing:3.614400px;}
.ws13_c00187{word-spacing:3.808800px;}
.ws1e_c00187{word-spacing:4.320000px;}
.ws16_c00187{word-spacing:5.364000px;}
.ws15_c00187{word-spacing:5.400000px;}
.wsf_c00187{word-spacing:5.414400px;}
.ws24_c00187{word-spacing:9.727200px;}
.ws1b_c00187{word-spacing:9.748800px;}
.ws23_c00187{word-spacing:9.799200px;}
.ws20_c00187{word-spacing:10.094400px;}
.ws1f_c00187{word-spacing:10.173600px;}
.ws29_c00187{word-spacing:11.505564px;}
.ws27_c00187{word-spacing:11.520144px;}
.ws26_c00187{word-spacing:11.524716px;}
.ws28_c00187{word-spacing:11.539080px;}
.ws9_c00187{word-spacing:13.298400px;}
.ws17_c00187{word-spacing:15.134400px;}
.ws18_c00187{word-spacing:15.156000px;}
.wsd_c00187{word-spacing:15.775200px;}
.wsc_c00187{word-spacing:15.832800px;}
.ws11_c00187{word-spacing:16.207200px;}
.ws19_c00187{word-spacing:17.992800px;}
.ws7_c00187{word-spacing:31.334400px;}
.ws8_c00187{word-spacing:31.420800px;}
.ws25_c00187{word-spacing:36.720000px;}
._0_c00187{margin-left:-1.022040px;}
._1_c00187{width:1.025928px;}
.fc0_c00187{color:rgb(0,0,0);}
.fs5_c00187{font-size:38.880000px;}
.fs3_c00187{font-size:42.120000px;}
.fs4_c00187{font-size:47.880000px;}
.fs2_c00187{font-size:54.000000px;}
.fs0_c00187{font-size:60.120000px;}
.fs1_c00187{font-size:72.000000px;}
.y0_c00187{bottom:0.000000px;}
.y3_c00187{bottom:57.450450px;}
.y4_c00187{bottom:61.410450px;}
.y27_c00187{bottom:113.698470px;}
.y26_c00187{bottom:132.068010px;}
.y25_c00187{bottom:150.334230px;}
.y24_c00187{bottom:168.598620px;}
.y23_c00187{bottom:186.975030px;}
.y22_c00187{bottom:205.241250px;}
.y21_c00187{bottom:223.507470px;}
.y20_c00187{bottom:241.869450px;}
.y1f_c00187{bottom:255.634950px;}
.y1e_c00187{bottom:269.400450px;}
.y1d_c00187{bottom:284.610450px;}
.y1c_c00187{bottom:305.310450px;}
.y1b_c00187{bottom:326.010450px;}
.y1a_c00187{bottom:382.260450px;}
.y19_c00187{bottom:416.640450px;}
.y18_c00187{bottom:451.110450px;}
.y17_c00187{bottom:485.490450px;}
.y16_c00187{bottom:519.960450px;}
.y15_c00187{bottom:563.340450px;}
.y14_c00187{bottom:597.810450px;}
.y13_c00187{bottom:632.190450px;}
.y12_c00187{bottom:666.660450px;}
.y11_c00187{bottom:710.040450px;}
.y10_c00187{bottom:744.510450px;}
.yf_c00187{bottom:778.890450px;}
.ye_c00187{bottom:813.360450px;}
.yd_c00187{bottom:847.740450px;}
.yc_c00187{bottom:882.210450px;}
.yb_c00187{bottom:925.590450px;}
.ya_c00187{bottom:960.060450px;}
.y9_c00187{bottom:1003.440450px;}
.y8_c00187{bottom:1037.910450px;}
.y7_c00187{bottom:1072.290450px;}
.y6_c00187{bottom:1106.760450px;}
.y5_c00187{bottom:1141.140450px;}
.y2_c00187{bottom:1173.810450px;}
.y1_c00187{bottom:1196.850450px;}
.h2_c00187{height:47.988281px;}
.h8_c00187{height:49.937344px;}
.h9_c00187{height:49.944664px;}
.ha_c00187{height:49.945264px;}
.h1_c00187{height:50.315273px;}
.h3_c00187{height:56.320312px;}
.h5_c00187{height:60.257812px;}
.h6_c00187{height:65.130820px;}
.h7_c00187{height:65.131420px;}
.h4_c00187{height:75.093750px;}
.h0_c00187{height:1263.000000px;}
.w1_c00187{width:892.500000px;}
.w0_c00187{width:892.830000px;}
.x0_c00187{left:0.000000px;}
.x2_c00187{left:127.620000px;}
.x8_c00187{left:141.126480px;}
.x5_c00187{left:154.620000px;}
.x6_c00187{left:181.620000px;}
.x7_c00187{left:206.820000px;}
.x4_c00187{left:435.240000px;}
.x3_c00187{left:446.490000px;}
.x1_c00187{left:490.770000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.v1_c00187{vertical-align:26.560000pt;}
.ls14_c00187{letter-spacing:-0.134400pt;}
.ls19_c00187{letter-spacing:-0.038400pt;}
.ls1b_c00187{letter-spacing:-0.032000pt;}
.ls1c_c00187{letter-spacing:-0.025600pt;}
.ls1d_c00187{letter-spacing:-0.019200pt;}
.ls1f_c00187{letter-spacing:-0.013824pt;}
.ls15_c00187{letter-spacing:-0.012800pt;}
.ls16_c00187{letter-spacing:-0.006400pt;}
.ls1e_c00187{letter-spacing:-0.003456pt;}
.ls13_c00187{letter-spacing:0.000000pt;}
.ls4_c00187{letter-spacing:0.006400pt;}
.ls12_c00187{letter-spacing:0.008512pt;}
.ls7_c00187{letter-spacing:0.012768pt;}
.ls5_c00187{letter-spacing:0.012800pt;}
.ls8_c00187{letter-spacing:0.016640pt;}
.lsa_c00187{letter-spacing:0.017024pt;}
.lsb_c00187{letter-spacing:0.021280pt;}
.ls11_c00187{letter-spacing:0.025536pt;}
.ls6_c00187{letter-spacing:0.025600pt;}
.ls9_c00187{letter-spacing:0.029792pt;}
.ls1a_c00187{letter-spacing:0.032000pt;}
.ls0_c00187{letter-spacing:0.032064pt;}
.lsc_c00187{letter-spacing:0.038304pt;}
.ls3_c00187{letter-spacing:0.038400pt;}
.ls10_c00187{letter-spacing:0.046816pt;}
.ls17_c00187{letter-spacing:0.048672pt;}
.lse_c00187{letter-spacing:0.051072pt;}
.lsf_c00187{letter-spacing:0.067520pt;}
.ls18_c00187{letter-spacing:0.083200pt;}
.ls1_c00187{letter-spacing:0.128000pt;}
.lsd_c00187{letter-spacing:0.336640pt;}
.ls2_c00187{letter-spacing:58.048000pt;}
.ws2_c00187{word-spacing:-15.980800pt;}
.ws1_c00187{word-spacing:-15.961600pt;}
.ws3_c00187{word-spacing:-9.604224pt;}
.ws4_c00187{word-spacing:-9.593856pt;}
.ws0_c00187{word-spacing:-9.408672pt;}
.ws5_c00187{word-spacing:-0.272544pt;}
.wse_c00187{word-spacing:-0.083200pt;}
.ws30_c00187{word-spacing:-0.034048pt;}
.ws32_c00187{word-spacing:-0.029792pt;}
.ws2d_c00187{word-spacing:-0.012768pt;}
.ws2e_c00187{word-spacing:-0.008512pt;}
.ws6_c00187{word-spacing:0.000000pt;}
.ws2f_c00187{word-spacing:0.004256pt;}
.ws33_c00187{word-spacing:0.008512pt;}
.ws1a_c00187{word-spacing:0.044800pt;}
.ws10_c00187{word-spacing:0.102400pt;}
.ws31_c00187{word-spacing:0.289408pt;}
.ws2c_c00187{word-spacing:0.936320pt;}
.ws2b_c00187{word-spacing:0.953344pt;}
.ws2a_c00187{word-spacing:0.957600pt;}
.wsb_c00187{word-spacing:1.881600pt;}
.wsa_c00187{word-spacing:1.945600pt;}
.ws22_c00187{word-spacing:2.227200pt;}
.ws21_c00187{word-spacing:2.240000pt;}
.ws1d_c00187{word-spacing:2.611200pt;}
.ws1c_c00187{word-spacing:2.681600pt;}
.ws12_c00187{word-spacing:3.187200pt;}
.ws14_c00187{word-spacing:3.212800pt;}
.ws13_c00187{word-spacing:3.385600pt;}
.ws1e_c00187{word-spacing:3.840000pt;}
.ws16_c00187{word-spacing:4.768000pt;}
.ws15_c00187{word-spacing:4.800000pt;}
.wsf_c00187{word-spacing:4.812800pt;}
.ws24_c00187{word-spacing:8.646400pt;}
.ws1b_c00187{word-spacing:8.665600pt;}
.ws23_c00187{word-spacing:8.710400pt;}
.ws20_c00187{word-spacing:8.972800pt;}
.ws1f_c00187{word-spacing:9.043200pt;}
.ws29_c00187{word-spacing:10.227168pt;}
.ws27_c00187{word-spacing:10.240128pt;}
.ws26_c00187{word-spacing:10.244192pt;}
.ws28_c00187{word-spacing:10.256960pt;}
.ws9_c00187{word-spacing:11.820800pt;}
.ws17_c00187{word-spacing:13.452800pt;}
.ws18_c00187{word-spacing:13.472000pt;}
.wsd_c00187{word-spacing:14.022400pt;}
.wsc_c00187{word-spacing:14.073600pt;}
.ws11_c00187{word-spacing:14.406400pt;}
.ws19_c00187{word-spacing:15.993600pt;}
.ws7_c00187{word-spacing:27.852800pt;}
.ws8_c00187{word-spacing:27.929600pt;}
.ws25_c00187{word-spacing:32.640000pt;}
._0_c00187{margin-left:-0.908480pt;}
._1_c00187{width:0.911936pt;}
.fs5_c00187{font-size:34.560000pt;}
.fs3_c00187{font-size:37.440000pt;}
.fs4_c00187{font-size:42.560000pt;}
.fs2_c00187{font-size:48.000000pt;}
.fs0_c00187{font-size:53.440000pt;}
.fs1_c00187{font-size:64.000000pt;}
.y0_c00187{bottom:0.000000pt;}
.y3_c00187{bottom:51.067067pt;}
.y4_c00187{bottom:54.587067pt;}
.y27_c00187{bottom:101.065307pt;}
.y26_c00187{bottom:117.393787pt;}
.y25_c00187{bottom:133.630427pt;}
.y24_c00187{bottom:149.865440pt;}
.y23_c00187{bottom:166.200027pt;}
.y22_c00187{bottom:182.436667pt;}
.y21_c00187{bottom:198.673307pt;}
.y20_c00187{bottom:214.995067pt;}
.y1f_c00187{bottom:227.231067pt;}
.y1e_c00187{bottom:239.467067pt;}
.y1d_c00187{bottom:252.987067pt;}
.y1c_c00187{bottom:271.387067pt;}
.y1b_c00187{bottom:289.787067pt;}
.y1a_c00187{bottom:339.787067pt;}
.y19_c00187{bottom:370.347067pt;}
.y18_c00187{bottom:400.987067pt;}
.y17_c00187{bottom:431.547067pt;}
.y16_c00187{bottom:462.187067pt;}
.y15_c00187{bottom:500.747067pt;}
.y14_c00187{bottom:531.387067pt;}
.y13_c00187{bottom:561.947067pt;}
.y12_c00187{bottom:592.587067pt;}
.y11_c00187{bottom:631.147067pt;}
.y10_c00187{bottom:661.787067pt;}
.yf_c00187{bottom:692.347067pt;}
.ye_c00187{bottom:722.987067pt;}
.yd_c00187{bottom:753.547067pt;}
.yc_c00187{bottom:784.187067pt;}
.yb_c00187{bottom:822.747067pt;}
.ya_c00187{bottom:853.387067pt;}
.y9_c00187{bottom:891.947067pt;}
.y8_c00187{bottom:922.587067pt;}
.y7_c00187{bottom:953.147067pt;}
.y6_c00187{bottom:983.787067pt;}
.y5_c00187{bottom:1014.347067pt;}
.y2_c00187{bottom:1043.387067pt;}
.y1_c00187{bottom:1063.867067pt;}
.h2_c00187{height:42.656250pt;}
.h8_c00187{height:44.388750pt;}
.h9_c00187{height:44.395257pt;}
.ha_c00187{height:44.395790pt;}
.h1_c00187{height:44.724687pt;}
.h3_c00187{height:50.062500pt;}
.h5_c00187{height:53.562500pt;}
.h6_c00187{height:57.894062pt;}
.h7_c00187{height:57.894596pt;}
.h4_c00187{height:66.750000pt;}
.h0_c00187{height:1122.666667pt;}
.w1_c00187{width:793.333333pt;}
.w0_c00187{width:793.626667pt;}
.x0_c00187{left:0.000000pt;}
.x2_c00187{left:113.440000pt;}
.x8_c00187{left:125.445760pt;}
.x5_c00187{left:137.440000pt;}
.x6_c00187{left:161.440000pt;}
.x7_c00187{left:183.840000pt;}
.x4_c00187{left:386.880000pt;}
.x3_c00187{left:396.880000pt;}
.x1_c00187{left:436.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_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_0c3158728aa4185213981fe0.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.100098;font-style:normal;font-weight:normal;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_48df5a9492651d02495079fb.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;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_c00188;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00188;src:url('chunks/assets/font_44078bf39e42a25d1fd3a985.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;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_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;}
.v1_c00188{vertical-align:15.840000px;}
.v2_c00188{vertical-align:29.880000px;}
.ls14_c00188{letter-spacing:-0.151200px;}
.ls1a_c00188{letter-spacing:-0.043200px;}
.ls19_c00188{letter-spacing:-0.036000px;}
.ls18_c00188{letter-spacing:-0.021600px;}
.ls1f_c00188{letter-spacing:-0.019440px;}
.ls17_c00188{letter-spacing:-0.014400px;}
.ls1e_c00188{letter-spacing:-0.011664px;}
.ls15_c00188{letter-spacing:-0.007200px;}
.ls20_c00188{letter-spacing:-0.003888px;}
.ls13_c00188{letter-spacing:0.000000px;}
.ls4_c00188{letter-spacing:0.007200px;}
.ls10_c00188{letter-spacing:0.009576px;}
.lsb_c00188{letter-spacing:0.014364px;}
.ls1d_c00188{letter-spacing:0.014400px;}
.ls2_c00188{letter-spacing:0.021600px;}
.ls9_c00188{letter-spacing:0.023940px;}
.lsa_c00188{letter-spacing:0.028728px;}
.ls11_c00188{letter-spacing:0.033516px;}
.ls5_c00188{letter-spacing:0.036000px;}
.lsd_c00188{letter-spacing:0.038304px;}
.ls6_c00188{letter-spacing:0.043200px;}
.ls0_c00188{letter-spacing:0.048096px;}
.ls16_c00188{letter-spacing:0.054756px;}
.lsf_c00188{letter-spacing:0.057456px;}
.ls1c_c00188{letter-spacing:0.064800px;}
.ls12_c00188{letter-spacing:0.086184px;}
.ls1b_c00188{letter-spacing:0.093600px;}
.lsc_c00188{letter-spacing:0.104040px;}
.ls3_c00188{letter-spacing:0.136800px;}
.ls7_c00188{letter-spacing:0.144000px;}
.lse_c00188{letter-spacing:0.378720px;}
.ls8_c00188{letter-spacing:66.024000px;}
.ls1_c00188{letter-spacing:1212.120000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00188{word-spacing:-17.978400px;}
.ws2_c00188{word-spacing:-17.956800px;}
.ws5_c00188{word-spacing:-13.310640px;}
.ws6_c00188{word-spacing:-10.808640px;}
.ws4_c00188{word-spacing:-10.804752px;}
.ws3_c00188{word-spacing:-10.789200px;}
.ws0_c00188{word-spacing:-10.584756px;}
.ws19_c00188{word-spacing:-0.093600px;}
.ws31_c00188{word-spacing:-0.067032px;}
.ws2e_c00188{word-spacing:-0.038304px;}
.ws2d_c00188{word-spacing:-0.019152px;}
.ws2a_c00188{word-spacing:-0.009576px;}
.ws29_c00188{word-spacing:-0.004788px;}
.ws8_c00188{word-spacing:0.000000px;}
.ws2b_c00188{word-spacing:0.004788px;}
.ws28_c00188{word-spacing:0.007200px;}
.ws2c_c00188{word-spacing:0.009576px;}
.wse_c00188{word-spacing:0.014400px;}
.ws7_c00188{word-spacing:0.042084px;}
.ws22_c00188{word-spacing:0.050400px;}
.ws24_c00188{word-spacing:0.720000px;}
.ws2f_c00188{word-spacing:1.062936px;}
.ws30_c00188{word-spacing:1.072512px;}
.ws34_c00188{word-spacing:1.781136px;}
.ws33_c00188{word-spacing:1.795500px;}
.ws32_c00188{word-spacing:1.805076px;}
.ws20_c00188{word-spacing:1.821600px;}
.ws1f_c00188{word-spacing:1.864800px;}
.wsc_c00188{word-spacing:2.023200px;}
.wsd_c00188{word-spacing:2.203200px;}
.ws18_c00188{word-spacing:2.836800px;}
.ws17_c00188{word-spacing:2.844000px;}
.ws16_c00188{word-spacing:3.247200px;}
.ws13_c00188{word-spacing:3.636000px;}
.ws21_c00188{word-spacing:4.248000px;}
.wsb_c00188{word-spacing:4.320000px;}
.wsa_c00188{word-spacing:4.384800px;}
.ws23_c00188{word-spacing:6.501600px;}
.ws26_c00188{word-spacing:7.149600px;}
.ws25_c00188{word-spacing:7.221600px;}
.ws1b_c00188{word-spacing:8.618400px;}
.ws1a_c00188{word-spacing:8.769600px;}
.ws11_c00188{word-spacing:14.040000px;}
.ws12_c00188{word-spacing:14.061600px;}
.ws27_c00188{word-spacing:14.774400px;}
.ws15_c00188{word-spacing:16.920000px;}
.ws14_c00188{word-spacing:16.927200px;}
.ws1e_c00188{word-spacing:21.535200px;}
.ws1c_c00188{word-spacing:21.542400px;}
.ws1d_c00188{word-spacing:21.600000px;}
.ws9_c00188{word-spacing:24.098400px;}
.wsf_c00188{word-spacing:25.192800px;}
.ws10_c00188{word-spacing:25.286400px;}
._0_c00188{margin-left:-1.322640px;}
._1_c00188{width:1.030968px;}
._2_c00188{width:2.202984px;}
.fc0_c00188{color:rgb(0,0,0);}
.fs5_c00188{font-size:38.880000px;}
.fs3_c00188{font-size:42.120000px;}
.fs4_c00188{font-size:47.880000px;}
.fs1_c00188{font-size:54.000000px;}
.fs0_c00188{font-size:60.120000px;}
.fs2_c00188{font-size:72.000000px;}
.y0_c00188{bottom:0.000000px;}
.y3_c00188{bottom:57.450450px;}
.y25_c00188{bottom:113.699190px;}
.y24_c00188{bottom:127.566900px;}
.y23_c00188{bottom:145.833120px;}
.y22_c00188{bottom:159.598620px;}
.y21_c00188{bottom:177.966030px;}
.y20_c00188{bottom:196.232250px;}
.y1f_c00188{bottom:214.498470px;}
.y1e_c00188{bottom:232.868010px;}
.y1d_c00188{bottom:251.134230px;}
.y1c_c00188{bottom:269.400450px;}
.y1b_c00188{bottom:284.610450px;}
.y1a_c00188{bottom:305.310450px;}
.y19_c00188{bottom:326.010450px;}
.y18_c00188{bottom:425.640450px;}
.y17_c00188{bottom:460.110450px;}
.y16_c00188{bottom:494.490450px;}
.y15_c00188{bottom:528.960450px;}
.y14_c00188{bottom:563.340450px;}
.y13_c00188{bottom:606.810450px;}
.y12_c00188{bottom:641.190450px;}
.y11_c00188{bottom:675.660450px;}
.y10_c00188{bottom:710.040450px;}
.yf_c00188{bottom:744.510450px;}
.ye_c00188{bottom:787.890450px;}
.yd_c00188{bottom:822.360450px;}
.yc_c00188{bottom:856.740450px;}
.yb_c00188{bottom:891.210450px;}
.ya_c00188{bottom:925.590450px;}
.y9_c00188{bottom:960.060450px;}
.y8_c00188{bottom:994.440450px;}
.y7_c00188{bottom:1037.910450px;}
.y6_c00188{bottom:1072.290450px;}
.y5_c00188{bottom:1106.760450px;}
.y4_c00188{bottom:1141.140450px;}
.y2_c00188{bottom:1177.860450px;}
.y1_c00188{bottom:1196.850450px;}
.h8_c00188{height:47.988281px;}
.h9_c00188{height:49.937344px;}
.h1_c00188{height:50.315273px;}
.h2_c00188{height:56.320312px;}
.h4_c00188{height:60.257812px;}
.h5_c00188{height:65.130820px;}
.h6_c00188{height:65.131420px;}
.h3_c00188{height:72.160312px;}
.h7_c00188{height:75.093750px;}
.h0_c00188{height:1263.000000px;}
.w1_c00188{width:892.500000px;}
.w0_c00188{width:892.830000px;}
.x0_c00188{left:0.000000px;}
.x1_c00188{left:127.620000px;}
.x5_c00188{left:141.123060px;}
.x4_c00188{left:154.440000px;}
.x3_c00188{left:180.720000px;}
.x2_c00188{left:206.820000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.v1_c00188{vertical-align:14.080000pt;}
.v2_c00188{vertical-align:26.560000pt;}
.ls14_c00188{letter-spacing:-0.134400pt;}
.ls1a_c00188{letter-spacing:-0.038400pt;}
.ls19_c00188{letter-spacing:-0.032000pt;}
.ls18_c00188{letter-spacing:-0.019200pt;}
.ls1f_c00188{letter-spacing:-0.017280pt;}
.ls17_c00188{letter-spacing:-0.012800pt;}
.ls1e_c00188{letter-spacing:-0.010368pt;}
.ls15_c00188{letter-spacing:-0.006400pt;}
.ls20_c00188{letter-spacing:-0.003456pt;}
.ls13_c00188{letter-spacing:0.000000pt;}
.ls4_c00188{letter-spacing:0.006400pt;}
.ls10_c00188{letter-spacing:0.008512pt;}
.lsb_c00188{letter-spacing:0.012768pt;}
.ls1d_c00188{letter-spacing:0.012800pt;}
.ls2_c00188{letter-spacing:0.019200pt;}
.ls9_c00188{letter-spacing:0.021280pt;}
.lsa_c00188{letter-spacing:0.025536pt;}
.ls11_c00188{letter-spacing:0.029792pt;}
.ls5_c00188{letter-spacing:0.032000pt;}
.lsd_c00188{letter-spacing:0.034048pt;}
.ls6_c00188{letter-spacing:0.038400pt;}
.ls0_c00188{letter-spacing:0.042752pt;}
.ls16_c00188{letter-spacing:0.048672pt;}
.lsf_c00188{letter-spacing:0.051072pt;}
.ls1c_c00188{letter-spacing:0.057600pt;}
.ls12_c00188{letter-spacing:0.076608pt;}
.ls1b_c00188{letter-spacing:0.083200pt;}
.lsc_c00188{letter-spacing:0.092480pt;}
.ls3_c00188{letter-spacing:0.121600pt;}
.ls7_c00188{letter-spacing:0.128000pt;}
.lse_c00188{letter-spacing:0.336640pt;}
.ls8_c00188{letter-spacing:58.688000pt;}
.ls1_c00188{letter-spacing:1077.440000pt;}
.ws1_c00188{word-spacing:-15.980800pt;}
.ws2_c00188{word-spacing:-15.961600pt;}
.ws5_c00188{word-spacing:-11.831680pt;}
.ws6_c00188{word-spacing:-9.607680pt;}
.ws4_c00188{word-spacing:-9.604224pt;}
.ws3_c00188{word-spacing:-9.590400pt;}
.ws0_c00188{word-spacing:-9.408672pt;}
.ws19_c00188{word-spacing:-0.083200pt;}
.ws31_c00188{word-spacing:-0.059584pt;}
.ws2e_c00188{word-spacing:-0.034048pt;}
.ws2d_c00188{word-spacing:-0.017024pt;}
.ws2a_c00188{word-spacing:-0.008512pt;}
.ws29_c00188{word-spacing:-0.004256pt;}
.ws8_c00188{word-spacing:0.000000pt;}
.ws2b_c00188{word-spacing:0.004256pt;}
.ws28_c00188{word-spacing:0.006400pt;}
.ws2c_c00188{word-spacing:0.008512pt;}
.wse_c00188{word-spacing:0.012800pt;}
.ws7_c00188{word-spacing:0.037408pt;}
.ws22_c00188{word-spacing:0.044800pt;}
.ws24_c00188{word-spacing:0.640000pt;}
.ws2f_c00188{word-spacing:0.944832pt;}
.ws30_c00188{word-spacing:0.953344pt;}
.ws34_c00188{word-spacing:1.583232pt;}
.ws33_c00188{word-spacing:1.596000pt;}
.ws32_c00188{word-spacing:1.604512pt;}
.ws20_c00188{word-spacing:1.619200pt;}
.ws1f_c00188{word-spacing:1.657600pt;}
.wsc_c00188{word-spacing:1.798400pt;}
.wsd_c00188{word-spacing:1.958400pt;}
.ws18_c00188{word-spacing:2.521600pt;}
.ws17_c00188{word-spacing:2.528000pt;}
.ws16_c00188{word-spacing:2.886400pt;}
.ws13_c00188{word-spacing:3.232000pt;}
.ws21_c00188{word-spacing:3.776000pt;}
.wsb_c00188{word-spacing:3.840000pt;}
.wsa_c00188{word-spacing:3.897600pt;}
.ws23_c00188{word-spacing:5.779200pt;}
.ws26_c00188{word-spacing:6.355200pt;}
.ws25_c00188{word-spacing:6.419200pt;}
.ws1b_c00188{word-spacing:7.660800pt;}
.ws1a_c00188{word-spacing:7.795200pt;}
.ws11_c00188{word-spacing:12.480000pt;}
.ws12_c00188{word-spacing:12.499200pt;}
.ws27_c00188{word-spacing:13.132800pt;}
.ws15_c00188{word-spacing:15.040000pt;}
.ws14_c00188{word-spacing:15.046400pt;}
.ws1e_c00188{word-spacing:19.142400pt;}
.ws1c_c00188{word-spacing:19.148800pt;}
.ws1d_c00188{word-spacing:19.200000pt;}
.ws9_c00188{word-spacing:21.420800pt;}
.wsf_c00188{word-spacing:22.393600pt;}
.ws10_c00188{word-spacing:22.476800pt;}
._0_c00188{margin-left:-1.175680pt;}
._1_c00188{width:0.916416pt;}
._2_c00188{width:1.958208pt;}
.fs5_c00188{font-size:34.560000pt;}
.fs3_c00188{font-size:37.440000pt;}
.fs4_c00188{font-size:42.560000pt;}
.fs1_c00188{font-size:48.000000pt;}
.fs0_c00188{font-size:53.440000pt;}
.fs2_c00188{font-size:64.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y3_c00188{bottom:51.067067pt;}
.y25_c00188{bottom:101.065947pt;}
.y24_c00188{bottom:113.392800pt;}
.y23_c00188{bottom:129.629440pt;}
.y22_c00188{bottom:141.865440pt;}
.y21_c00188{bottom:158.192027pt;}
.y20_c00188{bottom:174.428667pt;}
.y1f_c00188{bottom:190.665307pt;}
.y1e_c00188{bottom:206.993787pt;}
.y1d_c00188{bottom:223.230427pt;}
.y1c_c00188{bottom:239.467067pt;}
.y1b_c00188{bottom:252.987067pt;}
.y1a_c00188{bottom:271.387067pt;}
.y19_c00188{bottom:289.787067pt;}
.y18_c00188{bottom:378.347067pt;}
.y17_c00188{bottom:408.987067pt;}
.y16_c00188{bottom:439.547067pt;}
.y15_c00188{bottom:470.187067pt;}
.y14_c00188{bottom:500.747067pt;}
.y13_c00188{bottom:539.387067pt;}
.y12_c00188{bottom:569.947067pt;}
.y11_c00188{bottom:600.587067pt;}
.y10_c00188{bottom:631.147067pt;}
.yf_c00188{bottom:661.787067pt;}
.ye_c00188{bottom:700.347067pt;}
.yd_c00188{bottom:730.987067pt;}
.yc_c00188{bottom:761.547067pt;}
.yb_c00188{bottom:792.187067pt;}
.ya_c00188{bottom:822.747067pt;}
.y9_c00188{bottom:853.387067pt;}
.y8_c00188{bottom:883.947067pt;}
.y7_c00188{bottom:922.587067pt;}
.y6_c00188{bottom:953.147067pt;}
.y5_c00188{bottom:983.787067pt;}
.y4_c00188{bottom:1014.347067pt;}
.y2_c00188{bottom:1046.987067pt;}
.y1_c00188{bottom:1063.867067pt;}
.h8_c00188{height:42.656250pt;}
.h9_c00188{height:44.388750pt;}
.h1_c00188{height:44.724687pt;}
.h2_c00188{height:50.062500pt;}
.h4_c00188{height:53.562500pt;}
.h5_c00188{height:57.894062pt;}
.h6_c00188{height:57.894596pt;}
.h3_c00188{height:64.142500pt;}
.h7_c00188{height:66.750000pt;}
.h0_c00188{height:1122.666667pt;}
.w1_c00188{width:793.333333pt;}
.w0_c00188{width:793.626667pt;}
.x0_c00188{left:0.000000pt;}
.x1_c00188{left:113.440000pt;}
.x5_c00188{left:125.442720pt;}
.x4_c00188{left:137.280000pt;}
.x3_c00188{left:160.640000pt;}
.x2_c00188{left:183.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_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_fa5dec1f530ac9ac3487b947.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00189;src:url('chunks/assets/font_d2e43fc65695051afb395cad.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_1ad3cc0f8eb749b42c9c820e.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00189;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00189{font-family:ff5_c00189;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_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.v1_c00189{vertical-align:29.880000px;}
.lsb_c00189{letter-spacing:-0.151200px;}
.ls13_c00189{letter-spacing:-0.057600px;}
.ls18_c00189{letter-spacing:-0.046872px;}
.ls10_c00189{letter-spacing:-0.043200px;}
.ls16_c00189{letter-spacing:-0.036000px;}
.lse_c00189{letter-spacing:-0.028800px;}
.ls17_c00189{letter-spacing:-0.023436px;}
.lsd_c00189{letter-spacing:-0.021600px;}
.lsf_c00189{letter-spacing:-0.014400px;}
.lsc_c00189{letter-spacing:-0.007200px;}
.lsa_c00189{letter-spacing:0.000000px;}
.ls3_c00189{letter-spacing:0.007200px;}
.ls14_c00189{letter-spacing:0.014400px;}
.ls8_c00189{letter-spacing:0.019152px;}
.ls4_c00189{letter-spacing:0.021600px;}
.ls6_c00189{letter-spacing:0.023940px;}
.ls7_c00189{letter-spacing:0.028728px;}
.ls9_c00189{letter-spacing:0.033516px;}
.ls15_c00189{letter-spacing:0.036000px;}
.ls0_c00189{letter-spacing:0.036072px;}
.ls19_c00189{letter-spacing:0.052668px;}
.ls11_c00189{letter-spacing:0.054756px;}
.ls12_c00189{letter-spacing:0.093600px;}
.ls1_c00189{letter-spacing:0.144000px;}
.ls5_c00189{letter-spacing:17.498880px;}
.ls2_c00189{letter-spacing:66.024000px;}
.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;}
}
.ws2_c00189{word-spacing:-19.506564px;}
.ws0_c00189{word-spacing:-17.956800px;}
.ws1_c00189{word-spacing:-10.584756px;}
.ws3_c00189{word-spacing:-0.306612px;}
.ws19_c00189{word-spacing:-0.046872px;}
.ws26_c00189{word-spacing:-0.033516px;}
.ws2a_c00189{word-spacing:-0.014364px;}
.ws24_c00189{word-spacing:-0.004788px;}
.ws4_c00189{word-spacing:0.000000px;}
.ws6_c00189{word-spacing:0.021600px;}
.ws18_c00189{word-spacing:0.036000px;}
.ws11_c00189{word-spacing:0.043200px;}
.ws28_c00189{word-spacing:0.349524px;}
.ws29_c00189{word-spacing:0.359100px;}
.ws27_c00189{word-spacing:1.072512px;}
.ws25_c00189{word-spacing:1.795500px;}
.ws1a_c00189{word-spacing:1.807200px;}
.ws17_c00189{word-spacing:2.563200px;}
.ws16_c00189{word-spacing:2.613600px;}
.ws12_c00189{word-spacing:3.938400px;}
.ws14_c00189{word-spacing:3.996000px;}
.ws13_c00189{word-spacing:4.204800px;}
.ws15_c00189{word-spacing:4.622400px;}
.ws1f_c00189{word-spacing:5.464800px;}
.ws20_c00189{word-spacing:5.508000px;}
.ws8_c00189{word-spacing:5.788800px;}
.ws7_c00189{word-spacing:5.803200px;}
.ws5_c00189{word-spacing:6.847200px;}
.ws22_c00189{word-spacing:7.574400px;}
.ws21_c00189{word-spacing:7.689600px;}
.wsc_c00189{word-spacing:8.604000px;}
.wsb_c00189{word-spacing:8.647200px;}
.ws1c_c00189{word-spacing:9.021600px;}
.wse_c00189{word-spacing:9.028800px;}
.wsd_c00189{word-spacing:9.057600px;}
.ws1d_c00189{word-spacing:9.079200px;}
.wsa_c00189{word-spacing:9.676800px;}
.ws9_c00189{word-spacing:9.748800px;}
.ws10_c00189{word-spacing:12.643200px;}
.wsf_c00189{word-spacing:12.693600px;}
.ws1b_c00189{word-spacing:16.617600px;}
.ws23_c00189{word-spacing:18.720000px;}
.ws1e_c00189{word-spacing:27.741600px;}
._0_c00189{margin-left:-1.022040px;}
._1_c00189{width:1.296000px;}
.fc0_c00189{color:rgb(0,0,0);}
.fs3_c00189{font-size:42.120000px;}
.fs5_c00189{font-size:47.880000px;}
.fs2_c00189{font-size:54.000000px;}
.fs0_c00189{font-size:60.120000px;}
.fs1_c00189{font-size:72.000000px;}
.fs4_c00189{font-size:78.120000px;}
.y0_c00189{bottom:0.000000px;}
.y3_c00189{bottom:57.450450px;}
.y4_c00189{bottom:61.410450px;}
.y26_c00189{bottom:113.715570px;}
.y25_c00189{bottom:132.077550px;}
.y24_c00189{bottom:145.843050px;}
.y23_c00189{bottom:159.608550px;}
.y22_c00189{bottom:177.970530px;}
.y21_c00189{bottom:191.736030px;}
.y20_c00189{bottom:210.002250px;}
.y1f_c00189{bottom:228.364230px;}
.y1e_c00189{bottom:246.630450px;}
.y1d_c00189{bottom:261.840450px;}
.y1c_c00189{bottom:282.540450px;}
.y1b_c00189{bottom:303.240450px;}
.y1a_c00189{bottom:352.380450px;}
.y19_c00189{bottom:386.760450px;}
.y18_c00189{bottom:421.230450px;}
.y17_c00189{bottom:455.610450px;}
.y16_c00189{bottom:490.080450px;}
.y15_c00189{bottom:533.460450px;}
.y14_c00189{bottom:567.930450px;}
.y13_c00189{bottom:602.310450px;}
.y12_c00189{bottom:647.400450px;}
.y11_c00189{bottom:701.040450px;}
.y10_c00189{bottom:735.510450px;}
.yf_c00189{bottom:769.890450px;}
.ye_c00189{bottom:804.360450px;}
.yd_c00189{bottom:847.740450px;}
.yc_c00189{bottom:882.210450px;}
.yb_c00189{bottom:916.590450px;}
.ya_c00189{bottom:951.060450px;}
.y9_c00189{bottom:994.440450px;}
.y8_c00189{bottom:1028.910450px;}
.y7_c00189{bottom:1063.290450px;}
.y6_c00189{bottom:1106.760450px;}
.y5_c00189{bottom:1141.140450px;}
.y2_c00189{bottom:1173.810450px;}
.y1_c00189{bottom:1196.850450px;}
.h2_c00189{height:47.988281px;}
.h8_c00189{height:49.937344px;}
.h1_c00189{height:50.315273px;}
.h3_c00189{height:56.320312px;}
.h4_c00189{height:60.257812px;}
.h6_c00189{height:65.130820px;}
.h5_c00189{height:75.093750px;}
.h7_c00189{height:81.476719px;}
.h0_c00189{height:1263.000000px;}
.w1_c00189{width:892.500000px;}
.w0_c00189{width:892.830000px;}
.x0_c00189{left:0.000000px;}
.x2_c00189{left:127.620000px;}
.x7_c00189{left:141.122160px;}
.x6_c00189{left:154.440000px;}
.x5_c00189{left:180.720000px;}
.x4_c00189{left:435.240000px;}
.x3_c00189{left:446.490000px;}
.x1_c00189{left:490.770000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.v1_c00189{vertical-align:26.560000pt;}
.lsb_c00189{letter-spacing:-0.134400pt;}
.ls13_c00189{letter-spacing:-0.051200pt;}
.ls18_c00189{letter-spacing:-0.041664pt;}
.ls10_c00189{letter-spacing:-0.038400pt;}
.ls16_c00189{letter-spacing:-0.032000pt;}
.lse_c00189{letter-spacing:-0.025600pt;}
.ls17_c00189{letter-spacing:-0.020832pt;}
.lsd_c00189{letter-spacing:-0.019200pt;}
.lsf_c00189{letter-spacing:-0.012800pt;}
.lsc_c00189{letter-spacing:-0.006400pt;}
.lsa_c00189{letter-spacing:0.000000pt;}
.ls3_c00189{letter-spacing:0.006400pt;}
.ls14_c00189{letter-spacing:0.012800pt;}
.ls8_c00189{letter-spacing:0.017024pt;}
.ls4_c00189{letter-spacing:0.019200pt;}
.ls6_c00189{letter-spacing:0.021280pt;}
.ls7_c00189{letter-spacing:0.025536pt;}
.ls9_c00189{letter-spacing:0.029792pt;}
.ls15_c00189{letter-spacing:0.032000pt;}
.ls0_c00189{letter-spacing:0.032064pt;}
.ls19_c00189{letter-spacing:0.046816pt;}
.ls11_c00189{letter-spacing:0.048672pt;}
.ls12_c00189{letter-spacing:0.083200pt;}
.ls1_c00189{letter-spacing:0.128000pt;}
.ls5_c00189{letter-spacing:15.554560pt;}
.ls2_c00189{letter-spacing:58.688000pt;}
.ws2_c00189{word-spacing:-17.339168pt;}
.ws0_c00189{word-spacing:-15.961600pt;}
.ws1_c00189{word-spacing:-9.408672pt;}
.ws3_c00189{word-spacing:-0.272544pt;}
.ws19_c00189{word-spacing:-0.041664pt;}
.ws26_c00189{word-spacing:-0.029792pt;}
.ws2a_c00189{word-spacing:-0.012768pt;}
.ws24_c00189{word-spacing:-0.004256pt;}
.ws4_c00189{word-spacing:0.000000pt;}
.ws6_c00189{word-spacing:0.019200pt;}
.ws18_c00189{word-spacing:0.032000pt;}
.ws11_c00189{word-spacing:0.038400pt;}
.ws28_c00189{word-spacing:0.310688pt;}
.ws29_c00189{word-spacing:0.319200pt;}
.ws27_c00189{word-spacing:0.953344pt;}
.ws25_c00189{word-spacing:1.596000pt;}
.ws1a_c00189{word-spacing:1.606400pt;}
.ws17_c00189{word-spacing:2.278400pt;}
.ws16_c00189{word-spacing:2.323200pt;}
.ws12_c00189{word-spacing:3.500800pt;}
.ws14_c00189{word-spacing:3.552000pt;}
.ws13_c00189{word-spacing:3.737600pt;}
.ws15_c00189{word-spacing:4.108800pt;}
.ws1f_c00189{word-spacing:4.857600pt;}
.ws20_c00189{word-spacing:4.896000pt;}
.ws8_c00189{word-spacing:5.145600pt;}
.ws7_c00189{word-spacing:5.158400pt;}
.ws5_c00189{word-spacing:6.086400pt;}
.ws22_c00189{word-spacing:6.732800pt;}
.ws21_c00189{word-spacing:6.835200pt;}
.wsc_c00189{word-spacing:7.648000pt;}
.wsb_c00189{word-spacing:7.686400pt;}
.ws1c_c00189{word-spacing:8.019200pt;}
.wse_c00189{word-spacing:8.025600pt;}
.wsd_c00189{word-spacing:8.051200pt;}
.ws1d_c00189{word-spacing:8.070400pt;}
.wsa_c00189{word-spacing:8.601600pt;}
.ws9_c00189{word-spacing:8.665600pt;}
.ws10_c00189{word-spacing:11.238400pt;}
.wsf_c00189{word-spacing:11.283200pt;}
.ws1b_c00189{word-spacing:14.771200pt;}
.ws23_c00189{word-spacing:16.640000pt;}
.ws1e_c00189{word-spacing:24.659200pt;}
._0_c00189{margin-left:-0.908480pt;}
._1_c00189{width:1.152000pt;}
.fs3_c00189{font-size:37.440000pt;}
.fs5_c00189{font-size:42.560000pt;}
.fs2_c00189{font-size:48.000000pt;}
.fs0_c00189{font-size:53.440000pt;}
.fs1_c00189{font-size:64.000000pt;}
.fs4_c00189{font-size:69.440000pt;}
.y0_c00189{bottom:0.000000pt;}
.y3_c00189{bottom:51.067067pt;}
.y4_c00189{bottom:54.587067pt;}
.y26_c00189{bottom:101.080507pt;}
.y25_c00189{bottom:117.402267pt;}
.y24_c00189{bottom:129.638267pt;}
.y23_c00189{bottom:141.874267pt;}
.y22_c00189{bottom:158.196027pt;}
.y21_c00189{bottom:170.432027pt;}
.y20_c00189{bottom:186.668667pt;}
.y1f_c00189{bottom:202.990427pt;}
.y1e_c00189{bottom:219.227067pt;}
.y1d_c00189{bottom:232.747067pt;}
.y1c_c00189{bottom:251.147067pt;}
.y1b_c00189{bottom:269.547067pt;}
.y1a_c00189{bottom:313.227067pt;}
.y19_c00189{bottom:343.787067pt;}
.y18_c00189{bottom:374.427067pt;}
.y17_c00189{bottom:404.987067pt;}
.y16_c00189{bottom:435.627067pt;}
.y15_c00189{bottom:474.187067pt;}
.y14_c00189{bottom:504.827067pt;}
.y13_c00189{bottom:535.387067pt;}
.y12_c00189{bottom:575.467067pt;}
.y11_c00189{bottom:623.147067pt;}
.y10_c00189{bottom:653.787067pt;}
.yf_c00189{bottom:684.347067pt;}
.ye_c00189{bottom:714.987067pt;}
.yd_c00189{bottom:753.547067pt;}
.yc_c00189{bottom:784.187067pt;}
.yb_c00189{bottom:814.747067pt;}
.ya_c00189{bottom:845.387067pt;}
.y9_c00189{bottom:883.947067pt;}
.y8_c00189{bottom:914.587067pt;}
.y7_c00189{bottom:945.147067pt;}
.y6_c00189{bottom:983.787067pt;}
.y5_c00189{bottom:1014.347067pt;}
.y2_c00189{bottom:1043.387067pt;}
.y1_c00189{bottom:1063.867067pt;}
.h2_c00189{height:42.656250pt;}
.h8_c00189{height:44.388750pt;}
.h1_c00189{height:44.724687pt;}
.h3_c00189{height:50.062500pt;}
.h4_c00189{height:53.562500pt;}
.h6_c00189{height:57.894062pt;}
.h5_c00189{height:66.750000pt;}
.h7_c00189{height:72.423750pt;}
.h0_c00189{height:1122.666667pt;}
.w1_c00189{width:793.333333pt;}
.w0_c00189{width:793.626667pt;}
.x0_c00189{left:0.000000pt;}
.x2_c00189{left:113.440000pt;}
.x7_c00189{left:125.441920pt;}
.x6_c00189{left:137.280000pt;}
.x5_c00189{left:160.640000pt;}
.x4_c00189{left:386.880000pt;}
.x3_c00189{left:396.880000pt;}
.x1_c00189{left:436.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_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_327f962ab74bb9b20c4f4c9c.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.100098;font-style:normal;font-weight:normal;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_89672516989016a1ce7e0f17.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;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_c00190;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00190;src:url('chunks/assets/font_2987b1c16a4b69fcc0786502.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;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_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;}
.v1_c00190{vertical-align:15.840000px;}
.v2_c00190{vertical-align:29.880000px;}
.ls14_c00190{letter-spacing:-0.151200px;}
.ls1e_c00190{letter-spacing:-0.054108px;}
.ls25_c00190{letter-spacing:-0.050400px;}
.ls21_c00190{letter-spacing:-0.048096px;}
.ls20_c00190{letter-spacing:-0.042084px;}
.ls22_c00190{letter-spacing:-0.036072px;}
.ls15_c00190{letter-spacing:-0.028800px;}
.ls1c_c00190{letter-spacing:-0.024048px;}
.ls19_c00190{letter-spacing:-0.021600px;}
.ls23_c00190{letter-spacing:-0.018036px;}
.ls26_c00190{letter-spacing:-0.015552px;}
.ls16_c00190{letter-spacing:-0.014400px;}
.ls1f_c00190{letter-spacing:-0.012024px;}
.ls1b_c00190{letter-spacing:-0.007200px;}
.ls1d_c00190{letter-spacing:-0.006012px;}
.ls13_c00190{letter-spacing:0.000000px;}
.ls12_c00190{letter-spacing:0.004788px;}
.ls6_c00190{letter-spacing:0.006012px;}
.ls2_c00190{letter-spacing:0.007200px;}
.ls5_c00190{letter-spacing:0.012024px;}
.lsc_c00190{letter-spacing:0.014364px;}
.ls3_c00190{letter-spacing:0.018036px;}
.ls1a_c00190{letter-spacing:0.021600px;}
.lsb_c00190{letter-spacing:0.024048px;}
.ls4_c00190{letter-spacing:0.030060px;}
.ls10_c00190{letter-spacing:0.033516px;}
.ls8_c00190{letter-spacing:0.036072px;}
.ls11_c00190{letter-spacing:0.038304px;}
.ls9_c00190{letter-spacing:0.042084px;}
.lsf_c00190{letter-spacing:0.043092px;}
.ls0_c00190{letter-spacing:0.048096px;}
.lse_c00190{letter-spacing:0.052668px;}
.ls7_c00190{letter-spacing:0.054108px;}
.ls17_c00190{letter-spacing:0.054756px;}
.lsd_c00190{letter-spacing:0.075960px;}
.ls18_c00190{letter-spacing:0.093600px;}
.lsa_c00190{letter-spacing:0.102204px;}
.ls24_c00190{letter-spacing:0.168336px;}
.ls1_c00190{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00190{word-spacing:-10.808640px;}
.ws1_c00190{word-spacing:-10.793088px;}
.ws0_c00190{word-spacing:-10.584756px;}
.ws2c_c00190{word-spacing:-0.252504px;}
.ws2b_c00190{word-spacing:-0.234468px;}
.ws35_c00190{word-spacing:-0.033516px;}
.ws4_c00190{word-spacing:0.000000px;}
.ws33_c00190{word-spacing:0.004788px;}
.wse_c00190{word-spacing:0.007200px;}
.ws39_c00190{word-spacing:0.014364px;}
.ws6_c00190{word-spacing:0.014400px;}
.ws30_c00190{word-spacing:0.021600px;}
.ws3_c00190{word-spacing:0.042084px;}
.ws15_c00190{word-spacing:0.072144px;}
.ws19_c00190{word-spacing:0.096192px;}
.ws34_c00190{word-spacing:0.325584px;}
.wsf_c00190{word-spacing:0.734400px;}
.ws2f_c00190{word-spacing:1.101600px;}
.ws1d_c00190{word-spacing:1.899792px;}
.ws37_c00190{word-spacing:2.135448px;}
.ws38_c00190{word-spacing:2.145024px;}
.ws36_c00190{word-spacing:2.164176px;}
.ws28_c00190{word-spacing:2.230452px;}
.ws1a_c00190{word-spacing:2.236464px;}
.ws1b_c00190{word-spacing:2.242476px;}
.ws29_c00190{word-spacing:2.296584px;}
.ws1c_c00190{word-spacing:2.302596px;}
.ws27_c00190{word-spacing:2.561112px;}
.ws20_c00190{word-spacing:2.573136px;}
.ws26_c00190{word-spacing:2.633256px;}
.ws1f_c00190{word-spacing:2.651292px;}
.ws31_c00190{word-spacing:2.894400px;}
.ws32_c00190{word-spacing:2.930400px;}
.wsa_c00190{word-spacing:3.297600px;}
.wsb_c00190{word-spacing:3.319200px;}
.ws21_c00190{word-spacing:4.016016px;}
.ws22_c00190{word-spacing:4.040064px;}
.ws10_c00190{word-spacing:4.219200px;}
.ws11_c00190{word-spacing:4.348800px;}
.ws1e_c00190{word-spacing:4.352688px;}
.ws8_c00190{word-spacing:4.694400px;}
.ws9_c00190{word-spacing:4.701600px;}
.ws16_c00190{word-spacing:4.737456px;}
.ws18_c00190{word-spacing:4.767516px;}
.ws17_c00190{word-spacing:4.791564px;}
.ws25_c00190{word-spacing:5.747472px;}
.ws24_c00190{word-spacing:5.807592px;}
.ws2e_c00190{word-spacing:6.019200px;}
.ws2d_c00190{word-spacing:6.127200px;}
.ws7_c00190{word-spacing:6.854400px;}
.ws5_c00190{word-spacing:12.268800px;}
.ws13_c00190{word-spacing:12.564000px;}
.ws12_c00190{word-spacing:12.614400px;}
.ws23_c00190{word-spacing:13.003956px;}
.ws2a_c00190{word-spacing:13.743432px;}
.wsd_c00190{word-spacing:24.458400px;}
.wsc_c00190{word-spacing:24.559200px;}
.ws14_c00190{word-spacing:25.934400px;}
._0_c00190{margin-left:-1.322640px;}
._1_c00190{width:1.224000px;}
.fc0_c00190{color:rgb(0,0,0);}
.fs5_c00190{font-size:38.880000px;}
.fs3_c00190{font-size:42.120000px;}
.fs4_c00190{font-size:47.880000px;}
.fs1_c00190{font-size:54.000000px;}
.fs0_c00190{font-size:60.120000px;}
.fs2_c00190{font-size:72.000000px;}
.y0_c00190{bottom:0.000000px;}
.y3_c00190{bottom:57.450450px;}
.y27_c00190{bottom:113.699190px;}
.y26_c00190{bottom:127.564230px;}
.y25_c00190{bottom:145.830450px;}
.y24_c00190{bottom:161.040450px;}
.y23_c00190{bottom:181.740450px;}
.y22_c00190{bottom:202.440600px;}
.y21_c00190{bottom:322.140600px;}
.y20_c00190{bottom:356.610600px;}
.y1f_c00190{bottom:390.990600px;}
.y1e_c00190{bottom:425.460600px;}
.y1d_c00190{bottom:463.690740px;}
.y1c_c00190{bottom:483.124530px;}
.y1b_c00190{bottom:500.048310px;}
.y1a_c00190{bottom:516.881910px;}
.y19_c00190{bottom:533.805690px;}
.y18_c00190{bottom:550.639290px;}
.y17_c00190{bottom:567.563070px;}
.y16_c00190{bottom:584.396670px;}
.y15_c00190{bottom:601.320450px;}
.y14_c00190{bottom:618.129750px;}
.y13_c00190{bottom:635.053530px;}
.y12_c00190{bottom:660.890100px;}
.y11_c00190{bottom:677.813880px;}
.y10_c00190{bottom:703.650450px;}
.yf_c00190{bottom:744.510450px;}
.ye_c00190{bottom:778.890450px;}
.yd_c00190{bottom:813.360450px;}
.yc_c00190{bottom:847.740450px;}
.yb_c00190{bottom:882.210450px;}
.ya_c00190{bottom:925.590450px;}
.y9_c00190{bottom:960.060450px;}
.y8_c00190{bottom:994.440450px;}
.y7_c00190{bottom:1028.910450px;}
.y6_c00190{bottom:1063.290450px;}
.y5_c00190{bottom:1106.760450px;}
.y4_c00190{bottom:1141.140450px;}
.y2_c00190{bottom:1177.860450px;}
.y1_c00190{bottom:1196.850450px;}
.h7_c00190{height:47.988281px;}
.h8_c00190{height:49.937344px;}
.h1_c00190{height:50.315273px;}
.h2_c00190{height:56.320312px;}
.h4_c00190{height:60.257812px;}
.h5_c00190{height:65.130820px;}
.h6_c00190{height:65.210260px;}
.h3_c00190{height:72.160312px;}
.h0_c00190{height:1263.000000px;}
.w1_c00190{width:892.500000px;}
.w0_c00190{width:892.830000px;}
.x0_c00190{left:0.000000px;}
.x1_c00190{left:127.620000px;}
.x4_c00190{left:141.117300px;}
.x3_c00190{left:154.620000px;}
.x2_c00190{left:180.720000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.v1_c00190{vertical-align:14.080000pt;}
.v2_c00190{vertical-align:26.560000pt;}
.ls14_c00190{letter-spacing:-0.134400pt;}
.ls1e_c00190{letter-spacing:-0.048096pt;}
.ls25_c00190{letter-spacing:-0.044800pt;}
.ls21_c00190{letter-spacing:-0.042752pt;}
.ls20_c00190{letter-spacing:-0.037408pt;}
.ls22_c00190{letter-spacing:-0.032064pt;}
.ls15_c00190{letter-spacing:-0.025600pt;}
.ls1c_c00190{letter-spacing:-0.021376pt;}
.ls19_c00190{letter-spacing:-0.019200pt;}
.ls23_c00190{letter-spacing:-0.016032pt;}
.ls26_c00190{letter-spacing:-0.013824pt;}
.ls16_c00190{letter-spacing:-0.012800pt;}
.ls1f_c00190{letter-spacing:-0.010688pt;}
.ls1b_c00190{letter-spacing:-0.006400pt;}
.ls1d_c00190{letter-spacing:-0.005344pt;}
.ls13_c00190{letter-spacing:0.000000pt;}
.ls12_c00190{letter-spacing:0.004256pt;}
.ls6_c00190{letter-spacing:0.005344pt;}
.ls2_c00190{letter-spacing:0.006400pt;}
.ls5_c00190{letter-spacing:0.010688pt;}
.lsc_c00190{letter-spacing:0.012768pt;}
.ls3_c00190{letter-spacing:0.016032pt;}
.ls1a_c00190{letter-spacing:0.019200pt;}
.lsb_c00190{letter-spacing:0.021376pt;}
.ls4_c00190{letter-spacing:0.026720pt;}
.ls10_c00190{letter-spacing:0.029792pt;}
.ls8_c00190{letter-spacing:0.032064pt;}
.ls11_c00190{letter-spacing:0.034048pt;}
.ls9_c00190{letter-spacing:0.037408pt;}
.lsf_c00190{letter-spacing:0.038304pt;}
.ls0_c00190{letter-spacing:0.042752pt;}
.lse_c00190{letter-spacing:0.046816pt;}
.ls7_c00190{letter-spacing:0.048096pt;}
.ls17_c00190{letter-spacing:0.048672pt;}
.lsd_c00190{letter-spacing:0.067520pt;}
.ls18_c00190{letter-spacing:0.083200pt;}
.lsa_c00190{letter-spacing:0.090848pt;}
.ls24_c00190{letter-spacing:0.149632pt;}
.ls1_c00190{letter-spacing:1077.440000pt;}
.ws2_c00190{word-spacing:-9.607680pt;}
.ws1_c00190{word-spacing:-9.593856pt;}
.ws0_c00190{word-spacing:-9.408672pt;}
.ws2c_c00190{word-spacing:-0.224448pt;}
.ws2b_c00190{word-spacing:-0.208416pt;}
.ws35_c00190{word-spacing:-0.029792pt;}
.ws4_c00190{word-spacing:0.000000pt;}
.ws33_c00190{word-spacing:0.004256pt;}
.wse_c00190{word-spacing:0.006400pt;}
.ws39_c00190{word-spacing:0.012768pt;}
.ws6_c00190{word-spacing:0.012800pt;}
.ws30_c00190{word-spacing:0.019200pt;}
.ws3_c00190{word-spacing:0.037408pt;}
.ws15_c00190{word-spacing:0.064128pt;}
.ws19_c00190{word-spacing:0.085504pt;}
.ws34_c00190{word-spacing:0.289408pt;}
.wsf_c00190{word-spacing:0.652800pt;}
.ws2f_c00190{word-spacing:0.979200pt;}
.ws1d_c00190{word-spacing:1.688704pt;}
.ws37_c00190{word-spacing:1.898176pt;}
.ws38_c00190{word-spacing:1.906688pt;}
.ws36_c00190{word-spacing:1.923712pt;}
.ws28_c00190{word-spacing:1.982624pt;}
.ws1a_c00190{word-spacing:1.987968pt;}
.ws1b_c00190{word-spacing:1.993312pt;}
.ws29_c00190{word-spacing:2.041408pt;}
.ws1c_c00190{word-spacing:2.046752pt;}
.ws27_c00190{word-spacing:2.276544pt;}
.ws20_c00190{word-spacing:2.287232pt;}
.ws26_c00190{word-spacing:2.340672pt;}
.ws1f_c00190{word-spacing:2.356704pt;}
.ws31_c00190{word-spacing:2.572800pt;}
.ws32_c00190{word-spacing:2.604800pt;}
.wsa_c00190{word-spacing:2.931200pt;}
.wsb_c00190{word-spacing:2.950400pt;}
.ws21_c00190{word-spacing:3.569792pt;}
.ws22_c00190{word-spacing:3.591168pt;}
.ws10_c00190{word-spacing:3.750400pt;}
.ws11_c00190{word-spacing:3.865600pt;}
.ws1e_c00190{word-spacing:3.869056pt;}
.ws8_c00190{word-spacing:4.172800pt;}
.ws9_c00190{word-spacing:4.179200pt;}
.ws16_c00190{word-spacing:4.211072pt;}
.ws18_c00190{word-spacing:4.237792pt;}
.ws17_c00190{word-spacing:4.259168pt;}
.ws25_c00190{word-spacing:5.108864pt;}
.ws24_c00190{word-spacing:5.162304pt;}
.ws2e_c00190{word-spacing:5.350400pt;}
.ws2d_c00190{word-spacing:5.446400pt;}
.ws7_c00190{word-spacing:6.092800pt;}
.ws5_c00190{word-spacing:10.905600pt;}
.ws13_c00190{word-spacing:11.168000pt;}
.ws12_c00190{word-spacing:11.212800pt;}
.ws23_c00190{word-spacing:11.559072pt;}
.ws2a_c00190{word-spacing:12.216384pt;}
.wsd_c00190{word-spacing:21.740800pt;}
.wsc_c00190{word-spacing:21.830400pt;}
.ws14_c00190{word-spacing:23.052800pt;}
._0_c00190{margin-left:-1.175680pt;}
._1_c00190{width:1.088000pt;}
.fs5_c00190{font-size:34.560000pt;}
.fs3_c00190{font-size:37.440000pt;}
.fs4_c00190{font-size:42.560000pt;}
.fs1_c00190{font-size:48.000000pt;}
.fs0_c00190{font-size:53.440000pt;}
.fs2_c00190{font-size:64.000000pt;}
.y0_c00190{bottom:0.000000pt;}
.y3_c00190{bottom:51.067067pt;}
.y27_c00190{bottom:101.065947pt;}
.y26_c00190{bottom:113.390427pt;}
.y25_c00190{bottom:129.627067pt;}
.y24_c00190{bottom:143.147067pt;}
.y23_c00190{bottom:161.547067pt;}
.y22_c00190{bottom:179.947200pt;}
.y21_c00190{bottom:286.347200pt;}
.y20_c00190{bottom:316.987200pt;}
.y1f_c00190{bottom:347.547200pt;}
.y1e_c00190{bottom:378.187200pt;}
.y1d_c00190{bottom:412.169547pt;}
.y1c_c00190{bottom:429.444027pt;}
.y1b_c00190{bottom:444.487387pt;}
.y1a_c00190{bottom:459.450587pt;}
.y19_c00190{bottom:474.493947pt;}
.y18_c00190{bottom:489.457147pt;}
.y17_c00190{bottom:504.500507pt;}
.y16_c00190{bottom:519.463707pt;}
.y15_c00190{bottom:534.507067pt;}
.y14_c00190{bottom:549.448667pt;}
.y13_c00190{bottom:564.492027pt;}
.y12_c00190{bottom:587.457867pt;}
.y11_c00190{bottom:602.501227pt;}
.y10_c00190{bottom:625.467067pt;}
.yf_c00190{bottom:661.787067pt;}
.ye_c00190{bottom:692.347067pt;}
.yd_c00190{bottom:722.987067pt;}
.yc_c00190{bottom:753.547067pt;}
.yb_c00190{bottom:784.187067pt;}
.ya_c00190{bottom:822.747067pt;}
.y9_c00190{bottom:853.387067pt;}
.y8_c00190{bottom:883.947067pt;}
.y7_c00190{bottom:914.587067pt;}
.y6_c00190{bottom:945.147067pt;}
.y5_c00190{bottom:983.787067pt;}
.y4_c00190{bottom:1014.347067pt;}
.y2_c00190{bottom:1046.987067pt;}
.y1_c00190{bottom:1063.867067pt;}
.h7_c00190{height:42.656250pt;}
.h8_c00190{height:44.388750pt;}
.h1_c00190{height:44.724687pt;}
.h2_c00190{height:50.062500pt;}
.h4_c00190{height:53.562500pt;}
.h5_c00190{height:57.894063pt;}
.h6_c00190{height:57.964676pt;}
.h3_c00190{height:64.142500pt;}
.h0_c00190{height:1122.666667pt;}
.w1_c00190{width:793.333333pt;}
.w0_c00190{width:793.626667pt;}
.x0_c00190{left:0.000000pt;}
.x1_c00190{left:113.440000pt;}
.x4_c00190{left:125.437600pt;}
.x3_c00190{left:137.440000pt;}
.x2_c00190{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_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_4da1781533fbba2ddbfd3183.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00191;src:url('chunks/assets/font_d74fdfe2504f19333293b8a7.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00191;src:url('chunks/assets/font_d94d8624f4fa089a94e5d461.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00191;src:url('chunks/assets/font_88a30019db731382e870b2d2.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;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_c00191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00191{vertical-align:-29.880000px;}
.v0_c00191{vertical-align:0.000000px;}
.v2_c00191{vertical-align:15.120000px;}
.v1_c00191{vertical-align:29.880000px;}
.lsb_c00191{letter-spacing:-0.151200px;}
.ls16_c00191{letter-spacing:-0.048096px;}
.lsd_c00191{letter-spacing:-0.043200px;}
.ls14_c00191{letter-spacing:-0.042084px;}
.ls17_c00191{letter-spacing:-0.036072px;}
.ls1b_c00191{letter-spacing:-0.036000px;}
.ls13_c00191{letter-spacing:-0.030060px;}
.lsc_c00191{letter-spacing:-0.028800px;}
.ls1a_c00191{letter-spacing:-0.021600px;}
.ls12_c00191{letter-spacing:-0.018036px;}
.ls11_c00191{letter-spacing:-0.014400px;}
.ls15_c00191{letter-spacing:-0.012024px;}
.lse_c00191{letter-spacing:-0.007200px;}
.ls1c_c00191{letter-spacing:-0.003888px;}
.lsa_c00191{letter-spacing:0.000000px;}
.ls1_c00191{letter-spacing:0.007200px;}
.ls5_c00191{letter-spacing:0.014364px;}
.ls2_c00191{letter-spacing:0.014400px;}
.ls3_c00191{letter-spacing:0.021600px;}
.ls9_c00191{letter-spacing:0.023940px;}
.ls4_c00191{letter-spacing:0.028728px;}
.ls19_c00191{letter-spacing:0.028800px;}
.ls0_c00191{letter-spacing:0.036072px;}
.ls7_c00191{letter-spacing:0.043092px;}
.lsf_c00191{letter-spacing:0.054756px;}
.ls8_c00191{letter-spacing:0.067032px;}
.ls10_c00191{letter-spacing:0.093600px;}
.ls6_c00191{letter-spacing:0.104040px;}
.ls18_c00191{letter-spacing:0.136080px;}
.ls1d_c00191{letter-spacing:0.357696px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00191{word-spacing:-11.166336px;}
.ws0_c00191{word-spacing:-10.584756px;}
.ws1_c00191{word-spacing:-9.856080px;}
.ws3_c00191{word-spacing:-0.306612px;}
.wsd_c00191{word-spacing:-0.240480px;}
.wse_c00191{word-spacing:-0.228456px;}
.ws12_c00191{word-spacing:-0.222444px;}
.ws1e_c00191{word-spacing:-0.086400px;}
.wsb_c00191{word-spacing:-0.057600px;}
.ws2a_c00191{word-spacing:-0.009576px;}
.ws2f_c00191{word-spacing:-0.004788px;}
.ws4_c00191{word-spacing:0.000000px;}
.ws7_c00191{word-spacing:0.007200px;}
.wsa_c00191{word-spacing:0.014400px;}
.ws2e_c00191{word-spacing:0.019152px;}
.ws1d_c00191{word-spacing:0.036000px;}
.ws29_c00191{word-spacing:0.043200px;}
.ws28_c00191{word-spacing:0.086400px;}
.wsf_c00191{word-spacing:0.102204px;}
.wsc_c00191{word-spacing:0.108216px;}
.ws11_c00191{word-spacing:0.126252px;}
.ws10_c00191{word-spacing:0.138276px;}
.ws2d_c00191{word-spacing:0.311220px;}
.ws1c_c00191{word-spacing:0.381600px;}
.ws18_c00191{word-spacing:0.417600px;}
.ws1a_c00191{word-spacing:0.633600px;}
.ws1b_c00191{word-spacing:0.698400px;}
.ws19_c00191{word-spacing:0.734400px;}
.ws14_c00191{word-spacing:2.901600px;}
.ws20_c00191{word-spacing:2.916000px;}
.ws1f_c00191{word-spacing:2.944800px;}
.ws13_c00191{word-spacing:2.959200px;}
.ws27_c00191{word-spacing:5.025600px;}
.ws25_c00191{word-spacing:5.040000px;}
.ws26_c00191{word-spacing:5.097600px;}
.ws15_c00191{word-spacing:6.141600px;}
.ws16_c00191{word-spacing:6.163200px;}
.ws2c_c00191{word-spacing:6.454224px;}
.ws8_c00191{word-spacing:6.472800px;}
.ws2b_c00191{word-spacing:6.482952px;}
.ws9_c00191{word-spacing:6.487200px;}
.ws24_c00191{word-spacing:8.978400px;}
.ws17_c00191{word-spacing:9.007200px;}
.ws23_c00191{word-spacing:9.014400px;}
.ws5_c00191{word-spacing:12.988800px;}
.ws6_c00191{word-spacing:13.003200px;}
.ws22_c00191{word-spacing:13.276800px;}
.ws21_c00191{word-spacing:13.341600px;}
._0_c00191{margin-left:-1.022040px;}
._4_c00191{width:1.064124px;}
._a_c00191{width:6.485724px;}
._3_c00191{width:95.590800px;}
._9_c00191{width:131.043564px;}
._1_c00191{width:143.640000px;}
._7_c00191{width:264.227400px;}
._8_c00191{width:287.914680px;}
._2_c00191{width:348.120000px;}
._6_c00191{width:352.369332px;}
._5_c00191{width:403.585560px;}
.fc0_c00191{color:rgb(0,0,0);}
.fs4_c00191{font-size:38.880000px;}
.fs3_c00191{font-size:42.120000px;}
.fs5_c00191{font-size:47.880000px;}
.fs2_c00191{font-size:54.000000px;}
.fs0_c00191{font-size:60.120000px;}
.fs1_c00191{font-size:72.000000px;}
.y0_c00191{bottom:0.000000px;}
.y3_c00191{bottom:57.450450px;}
.y4_c00191{bottom:61.410450px;}
.y25_c00191{bottom:113.708550px;}
.y24_c00191{bottom:132.070530px;}
.y23_c00191{bottom:150.336750px;}
.y22_c00191{bottom:168.602970px;}
.y21_c00191{bottom:186.964950px;}
.y20_c00191{bottom:200.732250px;}
.y1f_c00191{bottom:218.998470px;}
.y1e_c00191{bottom:237.360450px;}
.y1d_c00191{bottom:252.570450px;}
.y1c_c00191{bottom:273.270450px;}
.y1b_c00191{bottom:293.970600px;}
.y1a_c00191{bottom:378.570600px;}
.y19_c00191{bottom:413.040450px;}
.y18_c00191{bottom:447.420450px;}
.y17_c00191{bottom:481.890450px;}
.y16_c00191{bottom:516.270450px;}
.y15_c00191{bottom:559.740450px;}
.y14_c00191{bottom:594.120450px;}
.y13_c00191{bottom:628.590450px;}
.y12_c00191{bottom:662.970450px;}
.y11_c00191{bottom:706.440450px;}
.y10_c00191{bottom:740.820450px;}
.yf_c00191{bottom:775.290450px;}
.ye_c00191{bottom:809.670450px;}
.yd_c00191{bottom:849.990450px;}
.yc_c00191{bottom:886.080450px;}
.yb_c00191{bottom:918.120450px;}
.ya_c00191{bottom:949.710450px;}
.y9_c00191{bottom:980.850450px;}
.y8_c00191{bottom:1028.910450px;}
.y7_c00191{bottom:1063.290450px;}
.y6_c00191{bottom:1106.760450px;}
.y5_c00191{bottom:1141.140450px;}
.y2_c00191{bottom:1173.810450px;}
.y1_c00191{bottom:1196.850450px;}
.h2_c00191{height:47.988281px;}
.h7_c00191{height:49.937344px;}
.h1_c00191{height:50.315273px;}
.h3_c00191{height:56.320312px;}
.h4_c00191{height:60.257812px;}
.h6_c00191{height:60.328125px;}
.h5_c00191{height:65.130820px;}
.h0_c00191{height:1263.000000px;}
.w1_c00191{width:892.500000px;}
.w0_c00191{width:892.830000px;}
.x0_c00191{left:0.000000px;}
.x2_c00191{left:127.620000px;}
.x9_c00191{left:141.119460px;}
.x7_c00191{left:171.990000px;}
.x5_c00191{left:180.720000px;}
.x6_c00191{left:182.700000px;}
.x8_c00191{left:315.630000px;}
.x4_c00191{left:435.240000px;}
.x3_c00191{left:446.490000px;}
.x1_c00191{left:490.770000px;}
@media print{
.v3_c00191{vertical-align:-26.560000pt;}
.v0_c00191{vertical-align:0.000000pt;}
.v2_c00191{vertical-align:13.440000pt;}
.v1_c00191{vertical-align:26.560000pt;}
.lsb_c00191{letter-spacing:-0.134400pt;}
.ls16_c00191{letter-spacing:-0.042752pt;}
.lsd_c00191{letter-spacing:-0.038400pt;}
.ls14_c00191{letter-spacing:-0.037408pt;}
.ls17_c00191{letter-spacing:-0.032064pt;}
.ls1b_c00191{letter-spacing:-0.032000pt;}
.ls13_c00191{letter-spacing:-0.026720pt;}
.lsc_c00191{letter-spacing:-0.025600pt;}
.ls1a_c00191{letter-spacing:-0.019200pt;}
.ls12_c00191{letter-spacing:-0.016032pt;}
.ls11_c00191{letter-spacing:-0.012800pt;}
.ls15_c00191{letter-spacing:-0.010688pt;}
.lse_c00191{letter-spacing:-0.006400pt;}
.ls1c_c00191{letter-spacing:-0.003456pt;}
.lsa_c00191{letter-spacing:0.000000pt;}
.ls1_c00191{letter-spacing:0.006400pt;}
.ls5_c00191{letter-spacing:0.012768pt;}
.ls2_c00191{letter-spacing:0.012800pt;}
.ls3_c00191{letter-spacing:0.019200pt;}
.ls9_c00191{letter-spacing:0.021280pt;}
.ls4_c00191{letter-spacing:0.025536pt;}
.ls19_c00191{letter-spacing:0.025600pt;}
.ls0_c00191{letter-spacing:0.032064pt;}
.ls7_c00191{letter-spacing:0.038304pt;}
.lsf_c00191{letter-spacing:0.048672pt;}
.ls8_c00191{letter-spacing:0.059584pt;}
.ls10_c00191{letter-spacing:0.083200pt;}
.ls6_c00191{letter-spacing:0.092480pt;}
.ls18_c00191{letter-spacing:0.120960pt;}
.ls1d_c00191{letter-spacing:0.317952pt;}
.ws2_c00191{word-spacing:-9.925632pt;}
.ws0_c00191{word-spacing:-9.408672pt;}
.ws1_c00191{word-spacing:-8.760960pt;}
.ws3_c00191{word-spacing:-0.272544pt;}
.wsd_c00191{word-spacing:-0.213760pt;}
.wse_c00191{word-spacing:-0.203072pt;}
.ws12_c00191{word-spacing:-0.197728pt;}
.ws1e_c00191{word-spacing:-0.076800pt;}
.wsb_c00191{word-spacing:-0.051200pt;}
.ws2a_c00191{word-spacing:-0.008512pt;}
.ws2f_c00191{word-spacing:-0.004256pt;}
.ws4_c00191{word-spacing:0.000000pt;}
.ws7_c00191{word-spacing:0.006400pt;}
.wsa_c00191{word-spacing:0.012800pt;}
.ws2e_c00191{word-spacing:0.017024pt;}
.ws1d_c00191{word-spacing:0.032000pt;}
.ws29_c00191{word-spacing:0.038400pt;}
.ws28_c00191{word-spacing:0.076800pt;}
.wsf_c00191{word-spacing:0.090848pt;}
.wsc_c00191{word-spacing:0.096192pt;}
.ws11_c00191{word-spacing:0.112224pt;}
.ws10_c00191{word-spacing:0.122912pt;}
.ws2d_c00191{word-spacing:0.276640pt;}
.ws1c_c00191{word-spacing:0.339200pt;}
.ws18_c00191{word-spacing:0.371200pt;}
.ws1a_c00191{word-spacing:0.563200pt;}
.ws1b_c00191{word-spacing:0.620800pt;}
.ws19_c00191{word-spacing:0.652800pt;}
.ws14_c00191{word-spacing:2.579200pt;}
.ws20_c00191{word-spacing:2.592000pt;}
.ws1f_c00191{word-spacing:2.617600pt;}
.ws13_c00191{word-spacing:2.630400pt;}
.ws27_c00191{word-spacing:4.467200pt;}
.ws25_c00191{word-spacing:4.480000pt;}
.ws26_c00191{word-spacing:4.531200pt;}
.ws15_c00191{word-spacing:5.459200pt;}
.ws16_c00191{word-spacing:5.478400pt;}
.ws2c_c00191{word-spacing:5.737088pt;}
.ws8_c00191{word-spacing:5.753600pt;}
.ws2b_c00191{word-spacing:5.762624pt;}
.ws9_c00191{word-spacing:5.766400pt;}
.ws24_c00191{word-spacing:7.980800pt;}
.ws17_c00191{word-spacing:8.006400pt;}
.ws23_c00191{word-spacing:8.012800pt;}
.ws5_c00191{word-spacing:11.545600pt;}
.ws6_c00191{word-spacing:11.558400pt;}
.ws22_c00191{word-spacing:11.801600pt;}
.ws21_c00191{word-spacing:11.859200pt;}
._0_c00191{margin-left:-0.908480pt;}
._4_c00191{width:0.945888pt;}
._a_c00191{width:5.765088pt;}
._3_c00191{width:84.969600pt;}
._9_c00191{width:116.483168pt;}
._1_c00191{width:127.680000pt;}
._7_c00191{width:234.868800pt;}
._8_c00191{width:255.924160pt;}
._2_c00191{width:309.440000pt;}
._6_c00191{width:313.217184pt;}
._5_c00191{width:358.742720pt;}
.fs4_c00191{font-size:34.560000pt;}
.fs3_c00191{font-size:37.440000pt;}
.fs5_c00191{font-size:42.560000pt;}
.fs2_c00191{font-size:48.000000pt;}
.fs0_c00191{font-size:53.440000pt;}
.fs1_c00191{font-size:64.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.y3_c00191{bottom:51.067067pt;}
.y4_c00191{bottom:54.587067pt;}
.y25_c00191{bottom:101.074267pt;}
.y24_c00191{bottom:117.396027pt;}
.y23_c00191{bottom:133.632667pt;}
.y22_c00191{bottom:149.869307pt;}
.y21_c00191{bottom:166.191067pt;}
.y20_c00191{bottom:178.428667pt;}
.y1f_c00191{bottom:194.665307pt;}
.y1e_c00191{bottom:210.987067pt;}
.y1d_c00191{bottom:224.507067pt;}
.y1c_c00191{bottom:242.907067pt;}
.y1b_c00191{bottom:261.307200pt;}
.y1a_c00191{bottom:336.507200pt;}
.y19_c00191{bottom:367.147067pt;}
.y18_c00191{bottom:397.707067pt;}
.y17_c00191{bottom:428.347067pt;}
.y16_c00191{bottom:458.907067pt;}
.y15_c00191{bottom:497.547067pt;}
.y14_c00191{bottom:528.107067pt;}
.y13_c00191{bottom:558.747067pt;}
.y12_c00191{bottom:589.307067pt;}
.y11_c00191{bottom:627.947067pt;}
.y10_c00191{bottom:658.507067pt;}
.yf_c00191{bottom:689.147067pt;}
.ye_c00191{bottom:719.707067pt;}
.yd_c00191{bottom:755.547067pt;}
.yc_c00191{bottom:787.627067pt;}
.yb_c00191{bottom:816.107067pt;}
.ya_c00191{bottom:844.187067pt;}
.y9_c00191{bottom:871.867067pt;}
.y8_c00191{bottom:914.587067pt;}
.y7_c00191{bottom:945.147067pt;}
.y6_c00191{bottom:983.787067pt;}
.y5_c00191{bottom:1014.347067pt;}
.y2_c00191{bottom:1043.387067pt;}
.y1_c00191{bottom:1063.867067pt;}
.h2_c00191{height:42.656250pt;}
.h7_c00191{height:44.388750pt;}
.h1_c00191{height:44.724687pt;}
.h3_c00191{height:50.062500pt;}
.h4_c00191{height:53.562500pt;}
.h6_c00191{height:53.625000pt;}
.h5_c00191{height:57.894063pt;}
.h0_c00191{height:1122.666667pt;}
.w1_c00191{width:793.333333pt;}
.w0_c00191{width:793.626667pt;}
.x0_c00191{left:0.000000pt;}
.x2_c00191{left:113.440000pt;}
.x9_c00191{left:125.439520pt;}
.x7_c00191{left:152.880000pt;}
.x5_c00191{left:160.640000pt;}
.x6_c00191{left:162.400000pt;}
.x8_c00191{left:280.560000pt;}
.x4_c00191{left:386.880000pt;}
.x3_c00191{left:396.880000pt;}
.x1_c00191{left:436.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_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_4433ead2e87835c66c723c4d.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.100098;font-style:normal;font-weight:normal;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_1502680994f78e4b3b19859d.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;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_c00192;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00192;src:url('chunks/assets/font_525584d75baa3c0c6ac0eaa2.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00192;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00192{font-family:ff5_c00192;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_c00192;src:url('chunks/assets/font_2779a907ee8dde064e5896e9.woff2')format("woff");}.ff6_c00192{font-family:ff6_c00192;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_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.v1_c00192{vertical-align:15.840000px;}
.v2_c00192{vertical-align:29.880000px;}
.lsd_c00192{letter-spacing:-0.151200px;}
.ls15_c00192{letter-spacing:-0.046872px;}
.ls10_c00192{letter-spacing:-0.043200px;}
.ls16_c00192{letter-spacing:-0.036000px;}
.ls14_c00192{letter-spacing:-0.023436px;}
.ls11_c00192{letter-spacing:-0.021600px;}
.lse_c00192{letter-spacing:-0.014400px;}
.lsf_c00192{letter-spacing:-0.007200px;}
.lsc_c00192{letter-spacing:0.000000px;}
.ls9_c00192{letter-spacing:0.003888px;}
.ls4_c00192{letter-spacing:0.007200px;}
.ls8_c00192{letter-spacing:0.014364px;}
.ls5_c00192{letter-spacing:0.014400px;}
.lsa_c00192{letter-spacing:0.019152px;}
.ls2_c00192{letter-spacing:0.021600px;}
.lsb_c00192{letter-spacing:0.028728px;}
.ls18_c00192{letter-spacing:0.038304px;}
.ls0_c00192{letter-spacing:0.048096px;}
.ls12_c00192{letter-spacing:0.054756px;}
.ls13_c00192{letter-spacing:0.093600px;}
.ls17_c00192{letter-spacing:0.136080px;}
.ls6_c00192{letter-spacing:0.144000px;}
.ls3_c00192{letter-spacing:17.498880px;}
.ls7_c00192{letter-spacing:65.304000px;}
.ls1_c00192{letter-spacing:1212.120000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00192{word-spacing:-19.506564px;}
.ws3_c00192{word-spacing:-13.310640px;}
.ws4_c00192{word-spacing:-10.812528px;}
.ws0_c00192{word-spacing:-10.584756px;}
.ws2_c00192{word-spacing:-9.856080px;}
.ws11_c00192{word-spacing:-0.046872px;}
.ws27_c00192{word-spacing:-0.019152px;}
.ws29_c00192{word-spacing:-0.009576px;}
.ws1d_c00192{word-spacing:-0.007200px;}
.ws6_c00192{word-spacing:0.000000px;}
.ws26_c00192{word-spacing:0.004788px;}
.ws21_c00192{word-spacing:0.007200px;}
.ws10_c00192{word-spacing:0.014400px;}
.ws28_c00192{word-spacing:0.019152px;}
.ws20_c00192{word-spacing:0.021600px;}
.ws5_c00192{word-spacing:0.042084px;}
.wse_c00192{word-spacing:0.302400px;}
.wsf_c00192{word-spacing:0.309600px;}
.ws1b_c00192{word-spacing:0.712800px;}
.wsa_c00192{word-spacing:0.727200px;}
.wsb_c00192{word-spacing:0.763200px;}
.ws1a_c00192{word-spacing:2.203200px;}
.ws19_c00192{word-spacing:2.224800px;}
.ws14_c00192{word-spacing:4.665600px;}
.ws1e_c00192{word-spacing:4.680000px;}
.ws13_c00192{word-spacing:4.759200px;}
.ws1f_c00192{word-spacing:4.802400px;}
.ws22_c00192{word-spacing:4.968000px;}
.ws23_c00192{word-spacing:4.975200px;}
.ws16_c00192{word-spacing:5.032800px;}
.ws15_c00192{word-spacing:5.076000px;}
.ws1c_c00192{word-spacing:7.214400px;}
.ws12_c00192{word-spacing:8.647200px;}
.ws9_c00192{word-spacing:9.734400px;}
.ws17_c00192{word-spacing:10.440000px;}
.ws18_c00192{word-spacing:10.533600px;}
.wsd_c00192{word-spacing:10.778400px;}
.wsc_c00192{word-spacing:10.828800px;}
.ws24_c00192{word-spacing:14.803200px;}
.ws25_c00192{word-spacing:14.853600px;}
.ws8_c00192{word-spacing:19.728000px;}
.ws7_c00192{word-spacing:19.800000px;}
._0_c00192{margin-left:-1.322640px;}
._1_c00192{width:1.152000px;}
.fc0_c00192{color:rgb(0,0,0);}
.fs5_c00192{font-size:38.880000px;}
.fs3_c00192{font-size:42.120000px;}
.fs6_c00192{font-size:47.880000px;}
.fs1_c00192{font-size:54.000000px;}
.fs0_c00192{font-size:60.120000px;}
.fs2_c00192{font-size:72.000000px;}
.fs4_c00192{font-size:78.120000px;}
.y0_c00192{bottom:0.000000px;}
.y3_c00192{bottom:57.450450px;}
.y1e_c00192{bottom:113.698470px;}
.y1d_c00192{bottom:132.060450px;}
.y1c_c00192{bottom:147.270450px;}
.y1b_c00192{bottom:167.970450px;}
.y1a_c00192{bottom:188.670450px;}
.y19_c00192{bottom:361.380450px;}
.y18_c00192{bottom:395.760450px;}
.y17_c00192{bottom:430.230450px;}
.y16_c00192{bottom:473.610450px;}
.y15_c00192{bottom:508.080450px;}
.y14_c00192{bottom:551.460450px;}
.y13_c00192{bottom:585.930450px;}
.y12_c00192{bottom:620.310450px;}
.y11_c00192{bottom:654.780450px;}
.y10_c00192{bottom:698.160450px;}
.yf_c00192{bottom:732.630450px;}
.ye_c00192{bottom:767.010450px;}
.yd_c00192{bottom:801.480450px;}
.yc_c00192{bottom:835.860450px;}
.yb_c00192{bottom:870.330450px;}
.ya_c00192{bottom:915.330450px;}
.y9_c00192{bottom:969.060450px;}
.y8_c00192{bottom:1003.440450px;}
.y7_c00192{bottom:1037.910450px;}
.y6_c00192{bottom:1072.290450px;}
.y5_c00192{bottom:1106.760450px;}
.y4_c00192{bottom:1141.140450px;}
.y2_c00192{bottom:1177.860450px;}
.y1_c00192{bottom:1196.850450px;}
.h8_c00192{height:47.988281px;}
.h9_c00192{height:49.937344px;}
.h1_c00192{height:50.315273px;}
.h2_c00192{height:56.320312px;}
.h4_c00192{height:60.257812px;}
.h5_c00192{height:65.130820px;}
.h3_c00192{height:72.160312px;}
.h7_c00192{height:75.093750px;}
.h6_c00192{height:81.476719px;}
.h0_c00192{height:1263.000000px;}
.w1_c00192{width:892.500000px;}
.w0_c00192{width:892.830000px;}
.x0_c00192{left:0.000000px;}
.x1_c00192{left:127.620000px;}
.x3_c00192{left:154.620000px;}
.x2_c00192{left:180.720000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.v1_c00192{vertical-align:14.080000pt;}
.v2_c00192{vertical-align:26.560000pt;}
.lsd_c00192{letter-spacing:-0.134400pt;}
.ls15_c00192{letter-spacing:-0.041664pt;}
.ls10_c00192{letter-spacing:-0.038400pt;}
.ls16_c00192{letter-spacing:-0.032000pt;}
.ls14_c00192{letter-spacing:-0.020832pt;}
.ls11_c00192{letter-spacing:-0.019200pt;}
.lse_c00192{letter-spacing:-0.012800pt;}
.lsf_c00192{letter-spacing:-0.006400pt;}
.lsc_c00192{letter-spacing:0.000000pt;}
.ls9_c00192{letter-spacing:0.003456pt;}
.ls4_c00192{letter-spacing:0.006400pt;}
.ls8_c00192{letter-spacing:0.012768pt;}
.ls5_c00192{letter-spacing:0.012800pt;}
.lsa_c00192{letter-spacing:0.017024pt;}
.ls2_c00192{letter-spacing:0.019200pt;}
.lsb_c00192{letter-spacing:0.025536pt;}
.ls18_c00192{letter-spacing:0.034048pt;}
.ls0_c00192{letter-spacing:0.042752pt;}
.ls12_c00192{letter-spacing:0.048672pt;}
.ls13_c00192{letter-spacing:0.083200pt;}
.ls17_c00192{letter-spacing:0.120960pt;}
.ls6_c00192{letter-spacing:0.128000pt;}
.ls3_c00192{letter-spacing:15.554560pt;}
.ls7_c00192{letter-spacing:58.048000pt;}
.ls1_c00192{letter-spacing:1077.440000pt;}
.ws1_c00192{word-spacing:-17.339168pt;}
.ws3_c00192{word-spacing:-11.831680pt;}
.ws4_c00192{word-spacing:-9.611136pt;}
.ws0_c00192{word-spacing:-9.408672pt;}
.ws2_c00192{word-spacing:-8.760960pt;}
.ws11_c00192{word-spacing:-0.041664pt;}
.ws27_c00192{word-spacing:-0.017024pt;}
.ws29_c00192{word-spacing:-0.008512pt;}
.ws1d_c00192{word-spacing:-0.006400pt;}
.ws6_c00192{word-spacing:0.000000pt;}
.ws26_c00192{word-spacing:0.004256pt;}
.ws21_c00192{word-spacing:0.006400pt;}
.ws10_c00192{word-spacing:0.012800pt;}
.ws28_c00192{word-spacing:0.017024pt;}
.ws20_c00192{word-spacing:0.019200pt;}
.ws5_c00192{word-spacing:0.037408pt;}
.wse_c00192{word-spacing:0.268800pt;}
.wsf_c00192{word-spacing:0.275200pt;}
.ws1b_c00192{word-spacing:0.633600pt;}
.wsa_c00192{word-spacing:0.646400pt;}
.wsb_c00192{word-spacing:0.678400pt;}
.ws1a_c00192{word-spacing:1.958400pt;}
.ws19_c00192{word-spacing:1.977600pt;}
.ws14_c00192{word-spacing:4.147200pt;}
.ws1e_c00192{word-spacing:4.160000pt;}
.ws13_c00192{word-spacing:4.230400pt;}
.ws1f_c00192{word-spacing:4.268800pt;}
.ws22_c00192{word-spacing:4.416000pt;}
.ws23_c00192{word-spacing:4.422400pt;}
.ws16_c00192{word-spacing:4.473600pt;}
.ws15_c00192{word-spacing:4.512000pt;}
.ws1c_c00192{word-spacing:6.412800pt;}
.ws12_c00192{word-spacing:7.686400pt;}
.ws9_c00192{word-spacing:8.652800pt;}
.ws17_c00192{word-spacing:9.280000pt;}
.ws18_c00192{word-spacing:9.363200pt;}
.wsd_c00192{word-spacing:9.580800pt;}
.wsc_c00192{word-spacing:9.625600pt;}
.ws24_c00192{word-spacing:13.158400pt;}
.ws25_c00192{word-spacing:13.203200pt;}
.ws8_c00192{word-spacing:17.536000pt;}
.ws7_c00192{word-spacing:17.600000pt;}
._0_c00192{margin-left:-1.175680pt;}
._1_c00192{width:1.024000pt;}
.fs5_c00192{font-size:34.560000pt;}
.fs3_c00192{font-size:37.440000pt;}
.fs6_c00192{font-size:42.560000pt;}
.fs1_c00192{font-size:48.000000pt;}
.fs0_c00192{font-size:53.440000pt;}
.fs2_c00192{font-size:64.000000pt;}
.fs4_c00192{font-size:69.440000pt;}
.y0_c00192{bottom:0.000000pt;}
.y3_c00192{bottom:51.067067pt;}
.y1e_c00192{bottom:101.065307pt;}
.y1d_c00192{bottom:117.387067pt;}
.y1c_c00192{bottom:130.907067pt;}
.y1b_c00192{bottom:149.307067pt;}
.y1a_c00192{bottom:167.707067pt;}
.y19_c00192{bottom:321.227067pt;}
.y18_c00192{bottom:351.787067pt;}
.y17_c00192{bottom:382.427067pt;}
.y16_c00192{bottom:420.987067pt;}
.y15_c00192{bottom:451.627067pt;}
.y14_c00192{bottom:490.187067pt;}
.y13_c00192{bottom:520.827067pt;}
.y12_c00192{bottom:551.387067pt;}
.y11_c00192{bottom:582.027067pt;}
.y10_c00192{bottom:620.587067pt;}
.yf_c00192{bottom:651.227067pt;}
.ye_c00192{bottom:681.787067pt;}
.yd_c00192{bottom:712.427067pt;}
.yc_c00192{bottom:742.987067pt;}
.yb_c00192{bottom:773.627067pt;}
.ya_c00192{bottom:813.627067pt;}
.y9_c00192{bottom:861.387067pt;}
.y8_c00192{bottom:891.947067pt;}
.y7_c00192{bottom:922.587067pt;}
.y6_c00192{bottom:953.147067pt;}
.y5_c00192{bottom:983.787067pt;}
.y4_c00192{bottom:1014.347067pt;}
.y2_c00192{bottom:1046.987067pt;}
.y1_c00192{bottom:1063.867067pt;}
.h8_c00192{height:42.656250pt;}
.h9_c00192{height:44.388750pt;}
.h1_c00192{height:44.724687pt;}
.h2_c00192{height:50.062500pt;}
.h4_c00192{height:53.562500pt;}
.h5_c00192{height:57.894062pt;}
.h3_c00192{height:64.142500pt;}
.h7_c00192{height:66.750000pt;}
.h6_c00192{height:72.423750pt;}
.h0_c00192{height:1122.666667pt;}
.w1_c00192{width:793.333333pt;}
.w0_c00192{width:793.626667pt;}
.x0_c00192{left:0.000000pt;}
.x1_c00192{left:113.440000pt;}
.x3_c00192{left:137.440000pt;}
.x2_c00192{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_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_c8984af66e65477c004680b1.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_6ebf8deb9992900c490ce858.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;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_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;}
.v2_c00193{vertical-align:15.498000px;}
.v1_c00193{vertical-align:29.880000px;}
.ls22_c00193{letter-spacing:-0.192384px;}
.ls10_c00193{letter-spacing:-0.151200px;}
.ls20_c00193{letter-spacing:-0.060120px;}
.ls1e_c00193{letter-spacing:-0.054108px;}
.ls1d_c00193{letter-spacing:-0.048096px;}
.ls1a_c00193{letter-spacing:-0.042084px;}
.ls1c_c00193{letter-spacing:-0.036072px;}
.ls18_c00193{letter-spacing:-0.030060px;}
.ls14_c00193{letter-spacing:-0.028800px;}
.ls1f_c00193{letter-spacing:-0.024048px;}
.ls12_c00193{letter-spacing:-0.021600px;}
.ls19_c00193{letter-spacing:-0.018036px;}
.ls11_c00193{letter-spacing:-0.014400px;}
.ls1b_c00193{letter-spacing:-0.012024px;}
.ls15_c00193{letter-spacing:-0.007200px;}
.ls17_c00193{letter-spacing:-0.006012px;}
.lsf_c00193{letter-spacing:0.000000px;}
.lsb_c00193{letter-spacing:0.006012px;}
.ls4_c00193{letter-spacing:0.007200px;}
.ls6_c00193{letter-spacing:0.012024px;}
.ls8_c00193{letter-spacing:0.018036px;}
.lsd_c00193{letter-spacing:0.023940px;}
.lsa_c00193{letter-spacing:0.024048px;}
.lse_c00193{letter-spacing:0.028728px;}
.ls16_c00193{letter-spacing:0.028800px;}
.lsc_c00193{letter-spacing:0.030060px;}
.ls0_c00193{letter-spacing:0.036072px;}
.ls9_c00193{letter-spacing:0.042084px;}
.ls7_c00193{letter-spacing:0.048096px;}
.ls5_c00193{letter-spacing:0.054108px;}
.ls3_c00193{letter-spacing:0.054756px;}
.ls13_c00193{letter-spacing:0.093600px;}
.ls21_c00193{letter-spacing:0.108216px;}
.ls23_c00193{letter-spacing:0.136080px;}
.ls1_c00193{letter-spacing:0.144000px;}
.ls24_c00193{letter-spacing:0.168336px;}
.ls2_c00193{letter-spacing:66.024000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00193{word-spacing:-17.978400px;}
.ws1_c00193{word-spacing:-10.584756px;}
.ws2_c00193{word-spacing:-9.856080px;}
.ws11_c00193{word-spacing:-0.453600px;}
.ws3_c00193{word-spacing:-0.306612px;}
.ws9_c00193{word-spacing:-0.093600px;}
.ws44_c00193{word-spacing:-0.009576px;}
.ws43_c00193{word-spacing:-0.004788px;}
.ws4_c00193{word-spacing:0.000000px;}
.ws14_c00193{word-spacing:0.007200px;}
.ws10_c00193{word-spacing:0.014400px;}
.ws13_c00193{word-spacing:0.021600px;}
.ws16_c00193{word-spacing:0.036072px;}
.ws42_c00193{word-spacing:0.102204px;}
.ws36_c00193{word-spacing:0.120240px;}
.ws8_c00193{word-spacing:0.214812px;}
.ws35_c00193{word-spacing:0.763524px;}
.ws41_c00193{word-spacing:0.775548px;}
.ws37_c00193{word-spacing:0.781560px;}
.ws7_c00193{word-spacing:1.814400px;}
.ws1e_c00193{word-spacing:1.869732px;}
.ws1f_c00193{word-spacing:1.893780px;}
.ws28_c00193{word-spacing:2.194380px;}
.ws1b_c00193{word-spacing:2.230452px;}
.ws3a_c00193{word-spacing:2.236464px;}
.ws29_c00193{word-spacing:2.242476px;}
.ws1a_c00193{word-spacing:2.248488px;}
.ws2b_c00193{word-spacing:2.957904px;}
.ws2d_c00193{word-spacing:2.999988px;}
.ws2c_c00193{word-spacing:3.012012px;}
.ws12_c00193{word-spacing:3.254400px;}
.ws6_c00193{word-spacing:3.333600px;}
.ws5_c00193{word-spacing:3.355200px;}
.ws3c_c00193{word-spacing:3.583152px;}
.wsb_c00193{word-spacing:3.614400px;}
.wsa_c00193{word-spacing:3.628800px;}
.ws19_c00193{word-spacing:3.643272px;}
.ws25_c00193{word-spacing:3.649284px;}
.ws3b_c00193{word-spacing:3.661308px;}
.ws23_c00193{word-spacing:3.703392px;}
.ws24_c00193{word-spacing:3.727440px;}
.ws3e_c00193{word-spacing:3.745476px;}
.ws3d_c00193{word-spacing:3.883752px;}
.wse_c00193{word-spacing:3.981600px;}
.wsf_c00193{word-spacing:4.039200px;}
.wsc_c00193{word-spacing:4.312800px;}
.wsd_c00193{word-spacing:4.327200px;}
.ws2a_c00193{word-spacing:4.749480px;}
.ws32_c00193{word-spacing:5.134248px;}
.ws30_c00193{word-spacing:5.464908px;}
.ws31_c00193{word-spacing:5.543064px;}
.ws17_c00193{word-spacing:7.280532px;}
.ws18_c00193{word-spacing:7.298568px;}
.ws2f_c00193{word-spacing:7.653276px;}
.ws2e_c00193{word-spacing:8.038044px;}
.ws15_c00193{word-spacing:8.308800px;}
.ws3f_c00193{word-spacing:8.368704px;}
.ws40_c00193{word-spacing:8.386740px;}
.ws20_c00193{word-spacing:9.450864px;}
.ws21_c00193{word-spacing:9.468900px;}
.ws22_c00193{word-spacing:9.492948px;}
.ws26_c00193{word-spacing:9.787536px;}
.ws27_c00193{word-spacing:9.859680px;}
.ws33_c00193{word-spacing:14.500944px;}
.ws34_c00193{word-spacing:14.512968px;}
.ws38_c00193{word-spacing:20.957832px;}
.ws39_c00193{word-spacing:21.390696px;}
.ws1c_c00193{word-spacing:25.280460px;}
.ws1d_c00193{word-spacing:25.322544px;}
._0_c00193{margin-left:-1.022040px;}
._1_c00193{width:1.178352px;}
.fc0_c00193{color:rgb(0,0,0);}
.fs4_c00193{font-size:38.880000px;}
.fs3_c00193{font-size:42.120000px;}
.fs5_c00193{font-size:47.880000px;}
.fs2_c00193{font-size:54.000000px;}
.fs0_c00193{font-size:60.120000px;}
.fs1_c00193{font-size:72.000000px;}
.y0_c00193{bottom:0.000000px;}
.y3_c00193{bottom:57.450450px;}
.y4_c00193{bottom:61.410450px;}
.y2f_c00193{bottom:113.702250px;}
.y2e_c00193{bottom:132.064230px;}
.y2d_c00193{bottom:150.330450px;}
.y2c_c00193{bottom:165.540450px;}
.y2b_c00193{bottom:186.240450px;}
.y2a_c00193{bottom:206.940450px;}
.y29_c00193{bottom:262.555950px;}
.y28_c00193{bottom:279.479730px;}
.y27_c00193{bottom:296.313330px;}
.y26_c00193{bottom:313.237110px;}
.y25_c00193{bottom:330.070710px;}
.y24_c00193{bottom:346.994490px;}
.y23_c00193{bottom:363.828090px;}
.y22_c00193{bottom:380.751870px;}
.y21_c00193{bottom:406.588440px;}
.y20_c00193{bottom:423.512220px;}
.y1f_c00193{bottom:440.345820px;}
.y1e_c00193{bottom:457.269600px;}
.y1d_c00193{bottom:474.103200px;}
.y1c_c00193{bottom:491.026980px;}
.y1b_c00193{bottom:507.860580px;}
.y1a_c00193{bottom:524.784360px;}
.y19_c00193{bottom:541.617960px;}
.y18_c00193{bottom:558.541740px;}
.y17_c00193{bottom:575.375340px;}
.y16_c00193{bottom:592.299120px;}
.y15_c00193{bottom:609.132720px;}
.y14_c00193{bottom:626.056500px;}
.y13_c00193{bottom:642.890100px;}
.y12_c00193{bottom:659.813880px;}
.y11_c00193{bottom:685.650450px;}
.y10_c00193{bottom:726.510450px;}
.yf_c00193{bottom:760.890450px;}
.ye_c00193{bottom:804.360450px;}
.yd_c00193{bottom:838.740450px;}
.yc_c00193{bottom:873.210450px;}
.yb_c00193{bottom:916.590450px;}
.ya_c00193{bottom:951.060450px;}
.y9_c00193{bottom:985.440450px;}
.y8_c00193{bottom:1019.910450px;}
.y7_c00193{bottom:1072.290450px;}
.y6_c00193{bottom:1106.760450px;}
.y5_c00193{bottom:1141.140450px;}
.y2_c00193{bottom:1173.810450px;}
.y1_c00193{bottom:1196.850450px;}
.h2_c00193{height:47.988281px;}
.h8_c00193{height:49.937344px;}
.h1_c00193{height:50.315273px;}
.h7_c00193{height:50.693273px;}
.h3_c00193{height:56.320312px;}
.h5_c00193{height:60.257812px;}
.h6_c00193{height:65.130820px;}
.h4_c00193{height:75.093750px;}
.h0_c00193{height:1263.000000px;}
.w1_c00193{width:892.500000px;}
.w0_c00193{width:892.830000px;}
.x0_c00193{left:0.000000px;}
.x2_c00193{left:127.620000px;}
.x5_c00193{left:154.440000px;}
.x6_c00193{left:181.170000px;}
.x4_c00193{left:435.240000px;}
.x3_c00193{left:446.490000px;}
.x1_c00193{left:490.770000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.v2_c00193{vertical-align:13.776000pt;}
.v1_c00193{vertical-align:26.560000pt;}
.ls22_c00193{letter-spacing:-0.171008pt;}
.ls10_c00193{letter-spacing:-0.134400pt;}
.ls20_c00193{letter-spacing:-0.053440pt;}
.ls1e_c00193{letter-spacing:-0.048096pt;}
.ls1d_c00193{letter-spacing:-0.042752pt;}
.ls1a_c00193{letter-spacing:-0.037408pt;}
.ls1c_c00193{letter-spacing:-0.032064pt;}
.ls18_c00193{letter-spacing:-0.026720pt;}
.ls14_c00193{letter-spacing:-0.025600pt;}
.ls1f_c00193{letter-spacing:-0.021376pt;}
.ls12_c00193{letter-spacing:-0.019200pt;}
.ls19_c00193{letter-spacing:-0.016032pt;}
.ls11_c00193{letter-spacing:-0.012800pt;}
.ls1b_c00193{letter-spacing:-0.010688pt;}
.ls15_c00193{letter-spacing:-0.006400pt;}
.ls17_c00193{letter-spacing:-0.005344pt;}
.lsf_c00193{letter-spacing:0.000000pt;}
.lsb_c00193{letter-spacing:0.005344pt;}
.ls4_c00193{letter-spacing:0.006400pt;}
.ls6_c00193{letter-spacing:0.010688pt;}
.ls8_c00193{letter-spacing:0.016032pt;}
.lsd_c00193{letter-spacing:0.021280pt;}
.lsa_c00193{letter-spacing:0.021376pt;}
.lse_c00193{letter-spacing:0.025536pt;}
.ls16_c00193{letter-spacing:0.025600pt;}
.lsc_c00193{letter-spacing:0.026720pt;}
.ls0_c00193{letter-spacing:0.032064pt;}
.ls9_c00193{letter-spacing:0.037408pt;}
.ls7_c00193{letter-spacing:0.042752pt;}
.ls5_c00193{letter-spacing:0.048096pt;}
.ls3_c00193{letter-spacing:0.048672pt;}
.ls13_c00193{letter-spacing:0.083200pt;}
.ls21_c00193{letter-spacing:0.096192pt;}
.ls23_c00193{letter-spacing:0.120960pt;}
.ls1_c00193{letter-spacing:0.128000pt;}
.ls24_c00193{letter-spacing:0.149632pt;}
.ls2_c00193{letter-spacing:58.688000pt;}
.ws0_c00193{word-spacing:-15.980800pt;}
.ws1_c00193{word-spacing:-9.408672pt;}
.ws2_c00193{word-spacing:-8.760960pt;}
.ws11_c00193{word-spacing:-0.403200pt;}
.ws3_c00193{word-spacing:-0.272544pt;}
.ws9_c00193{word-spacing:-0.083200pt;}
.ws44_c00193{word-spacing:-0.008512pt;}
.ws43_c00193{word-spacing:-0.004256pt;}
.ws4_c00193{word-spacing:0.000000pt;}
.ws14_c00193{word-spacing:0.006400pt;}
.ws10_c00193{word-spacing:0.012800pt;}
.ws13_c00193{word-spacing:0.019200pt;}
.ws16_c00193{word-spacing:0.032064pt;}
.ws42_c00193{word-spacing:0.090848pt;}
.ws36_c00193{word-spacing:0.106880pt;}
.ws8_c00193{word-spacing:0.190944pt;}
.ws35_c00193{word-spacing:0.678688pt;}
.ws41_c00193{word-spacing:0.689376pt;}
.ws37_c00193{word-spacing:0.694720pt;}
.ws7_c00193{word-spacing:1.612800pt;}
.ws1e_c00193{word-spacing:1.661984pt;}
.ws1f_c00193{word-spacing:1.683360pt;}
.ws28_c00193{word-spacing:1.950560pt;}
.ws1b_c00193{word-spacing:1.982624pt;}
.ws3a_c00193{word-spacing:1.987968pt;}
.ws29_c00193{word-spacing:1.993312pt;}
.ws1a_c00193{word-spacing:1.998656pt;}
.ws2b_c00193{word-spacing:2.629248pt;}
.ws2d_c00193{word-spacing:2.666656pt;}
.ws2c_c00193{word-spacing:2.677344pt;}
.ws12_c00193{word-spacing:2.892800pt;}
.ws6_c00193{word-spacing:2.963200pt;}
.ws5_c00193{word-spacing:2.982400pt;}
.ws3c_c00193{word-spacing:3.185024pt;}
.wsb_c00193{word-spacing:3.212800pt;}
.wsa_c00193{word-spacing:3.225600pt;}
.ws19_c00193{word-spacing:3.238464pt;}
.ws25_c00193{word-spacing:3.243808pt;}
.ws3b_c00193{word-spacing:3.254496pt;}
.ws23_c00193{word-spacing:3.291904pt;}
.ws24_c00193{word-spacing:3.313280pt;}
.ws3e_c00193{word-spacing:3.329312pt;}
.ws3d_c00193{word-spacing:3.452224pt;}
.wse_c00193{word-spacing:3.539200pt;}
.wsf_c00193{word-spacing:3.590400pt;}
.wsc_c00193{word-spacing:3.833600pt;}
.wsd_c00193{word-spacing:3.846400pt;}
.ws2a_c00193{word-spacing:4.221760pt;}
.ws32_c00193{word-spacing:4.563776pt;}
.ws30_c00193{word-spacing:4.857696pt;}
.ws31_c00193{word-spacing:4.927168pt;}
.ws17_c00193{word-spacing:6.471584pt;}
.ws18_c00193{word-spacing:6.487616pt;}
.ws2f_c00193{word-spacing:6.802912pt;}
.ws2e_c00193{word-spacing:7.144928pt;}
.ws15_c00193{word-spacing:7.385600pt;}
.ws3f_c00193{word-spacing:7.438848pt;}
.ws40_c00193{word-spacing:7.454880pt;}
.ws20_c00193{word-spacing:8.400768pt;}
.ws21_c00193{word-spacing:8.416800pt;}
.ws22_c00193{word-spacing:8.438176pt;}
.ws26_c00193{word-spacing:8.700032pt;}
.ws27_c00193{word-spacing:8.764160pt;}
.ws33_c00193{word-spacing:12.889728pt;}
.ws34_c00193{word-spacing:12.900416pt;}
.ws38_c00193{word-spacing:18.629184pt;}
.ws39_c00193{word-spacing:19.013952pt;}
.ws1c_c00193{word-spacing:22.471520pt;}
.ws1d_c00193{word-spacing:22.508928pt;}
._0_c00193{margin-left:-0.908480pt;}
._1_c00193{width:1.047424pt;}
.fs4_c00193{font-size:34.560000pt;}
.fs3_c00193{font-size:37.440000pt;}
.fs5_c00193{font-size:42.560000pt;}
.fs2_c00193{font-size:48.000000pt;}
.fs0_c00193{font-size:53.440000pt;}
.fs1_c00193{font-size:64.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y3_c00193{bottom:51.067067pt;}
.y4_c00193{bottom:54.587067pt;}
.y2f_c00193{bottom:101.068667pt;}
.y2e_c00193{bottom:117.390427pt;}
.y2d_c00193{bottom:133.627067pt;}
.y2c_c00193{bottom:147.147067pt;}
.y2b_c00193{bottom:165.547067pt;}
.y2a_c00193{bottom:183.947067pt;}
.y29_c00193{bottom:233.383067pt;}
.y28_c00193{bottom:248.426427pt;}
.y27_c00193{bottom:263.389627pt;}
.y26_c00193{bottom:278.432987pt;}
.y25_c00193{bottom:293.396187pt;}
.y24_c00193{bottom:308.439547pt;}
.y23_c00193{bottom:323.402747pt;}
.y22_c00193{bottom:338.446107pt;}
.y21_c00193{bottom:361.411947pt;}
.y20_c00193{bottom:376.455307pt;}
.y1f_c00193{bottom:391.418507pt;}
.y1e_c00193{bottom:406.461867pt;}
.y1d_c00193{bottom:421.425067pt;}
.y1c_c00193{bottom:436.468427pt;}
.y1b_c00193{bottom:451.431627pt;}
.y1a_c00193{bottom:466.474987pt;}
.y19_c00193{bottom:481.438187pt;}
.y18_c00193{bottom:496.481547pt;}
.y17_c00193{bottom:511.444747pt;}
.y16_c00193{bottom:526.488107pt;}
.y15_c00193{bottom:541.451307pt;}
.y14_c00193{bottom:556.494667pt;}
.y13_c00193{bottom:571.457867pt;}
.y12_c00193{bottom:586.501227pt;}
.y11_c00193{bottom:609.467067pt;}
.y10_c00193{bottom:645.787067pt;}
.yf_c00193{bottom:676.347067pt;}
.ye_c00193{bottom:714.987067pt;}
.yd_c00193{bottom:745.547067pt;}
.yc_c00193{bottom:776.187067pt;}
.yb_c00193{bottom:814.747067pt;}
.ya_c00193{bottom:845.387067pt;}
.y9_c00193{bottom:875.947067pt;}
.y8_c00193{bottom:906.587067pt;}
.y7_c00193{bottom:953.147067pt;}
.y6_c00193{bottom:983.787067pt;}
.y5_c00193{bottom:1014.347067pt;}
.y2_c00193{bottom:1043.387067pt;}
.y1_c00193{bottom:1063.867067pt;}
.h2_c00193{height:42.656250pt;}
.h8_c00193{height:44.388750pt;}
.h1_c00193{height:44.724687pt;}
.h7_c00193{height:45.060688pt;}
.h3_c00193{height:50.062500pt;}
.h5_c00193{height:53.562500pt;}
.h6_c00193{height:57.894062pt;}
.h4_c00193{height:66.750000pt;}
.h0_c00193{height:1122.666667pt;}
.w1_c00193{width:793.333333pt;}
.w0_c00193{width:793.626667pt;}
.x0_c00193{left:0.000000pt;}
.x2_c00193{left:113.440000pt;}
.x5_c00193{left:137.280000pt;}
.x6_c00193{left:161.040000pt;}
.x4_c00193{left:386.880000pt;}
.x3_c00193{left:396.880000pt;}
.x1_c00193{left:436.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_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_5b7152c693b4a56b534f572d.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.100098;font-style:normal;font-weight:normal;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_f8c9f62f3cda1f2cfd740b08.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;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_c00194;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_4d63316e8ca83f3558368ace.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00194;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00194{font-family:ff5_c00194;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_c00194;src:url('chunks/assets/font_b2c54878b20391cacb827b34.woff2')format("woff");}.ff6_c00194{font-family:ff6_c00194;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_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.v1_c00194{vertical-align:15.840000px;}
.v2_c00194{vertical-align:29.880000px;}
.lsd_c00194{letter-spacing:-0.151200px;}
.ls10_c00194{letter-spacing:-0.039060px;}
.lsf_c00194{letter-spacing:-0.036000px;}
.ls14_c00194{letter-spacing:-0.031248px;}
.ls13_c00194{letter-spacing:-0.028800px;}
.lse_c00194{letter-spacing:-0.021600px;}
.ls11_c00194{letter-spacing:-0.014400px;}
.ls17_c00194{letter-spacing:-0.011664px;}
.ls12_c00194{letter-spacing:-0.007200px;}
.lsc_c00194{letter-spacing:0.000000px;}
.ls5_c00194{letter-spacing:0.007200px;}
.ls8_c00194{letter-spacing:0.014364px;}
.ls3_c00194{letter-spacing:0.021600px;}
.lsa_c00194{letter-spacing:0.033516px;}
.ls2_c00194{letter-spacing:0.036000px;}
.lsb_c00194{letter-spacing:0.047880px;}
.ls0_c00194{letter-spacing:0.048096px;}
.ls15_c00194{letter-spacing:0.054756px;}
.ls4_c00194{letter-spacing:0.064800px;}
.ls16_c00194{letter-spacing:0.093600px;}
.ls9_c00194{letter-spacing:0.104040px;}
.ls7_c00194{letter-spacing:17.498880px;}
.ls6_c00194{letter-spacing:34.450920px;}
.ls1_c00194{letter-spacing:1212.120000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00194{word-spacing:-19.530000px;}
.ws1_c00194{word-spacing:-19.498752px;}
.ws3_c00194{word-spacing:-10.796976px;}
.ws2_c00194{word-spacing:-10.584756px;}
.ws1f_c00194{word-spacing:-0.210924px;}
.ws16_c00194{word-spacing:-0.140616px;}
.ws15_c00194{word-spacing:-0.007200px;}
.ws5_c00194{word-spacing:0.000000px;}
.ws2c_c00194{word-spacing:0.004788px;}
.ws19_c00194{word-spacing:0.007200px;}
.ws11_c00194{word-spacing:0.021600px;}
.ws4_c00194{word-spacing:0.042084px;}
.wsa_c00194{word-spacing:0.295200px;}
.ws8_c00194{word-spacing:0.324000px;}
.ws9_c00194{word-spacing:0.410400px;}
.ws6_c00194{word-spacing:1.440000px;}
.ws7_c00194{word-spacing:1.562400px;}
.wse_c00194{word-spacing:2.095200px;}
.wsf_c00194{word-spacing:2.152800px;}
.ws1d_c00194{word-spacing:2.541600px;}
.ws1e_c00194{word-spacing:2.556000px;}
.ws1a_c00194{word-spacing:2.908800px;}
.wsb_c00194{word-spacing:3.283200px;}
.ws14_c00194{word-spacing:3.636000px;}
.ws13_c00194{word-spacing:3.657600px;}
.ws28_c00194{word-spacing:4.356000px;}
.ws27_c00194{word-spacing:4.694400px;}
.ws26_c00194{word-spacing:4.701600px;}
.ws18_c00194{word-spacing:5.097600px;}
.ws17_c00194{word-spacing:5.140800px;}
.ws21_c00194{word-spacing:6.472800px;}
.ws20_c00194{word-spacing:6.523200px;}
.ws25_c00194{word-spacing:8.661600px;}
.ws2b_c00194{word-spacing:8.967924px;}
.ws2a_c00194{word-spacing:8.982288px;}
.ws29_c00194{word-spacing:9.001440px;}
.wsc_c00194{word-spacing:9.302400px;}
.wsd_c00194{word-spacing:9.345600px;}
.ws10_c00194{word-spacing:9.741600px;}
.ws1b_c00194{word-spacing:13.672800px;}
.ws1c_c00194{word-spacing:13.824000px;}
.ws24_c00194{word-spacing:14.788800px;}
.ws23_c00194{word-spacing:15.782400px;}
.ws22_c00194{word-spacing:15.847200px;}
.ws12_c00194{word-spacing:18.705600px;}
._0_c00194{margin-left:-1.322640px;}
._1_c00194{width:1.080000px;}
._4_c00194{width:9.401580px;}
._2_c00194{width:192.888000px;}
._3_c00194{width:195.120000px;}
.fc0_c00194{color:rgb(0,0,0);}
.fs6_c00194{font-size:38.880000px;}
.fs4_c00194{font-size:42.120000px;}
.fs5_c00194{font-size:47.880000px;}
.fs1_c00194{font-size:54.000000px;}
.fs0_c00194{font-size:60.120000px;}
.fs2_c00194{font-size:72.000000px;}
.fs3_c00194{font-size:78.120000px;}
.y0_c00194{bottom:0.000000px;}
.y3_c00194{bottom:57.450450px;}
.y21_c00194{bottom:113.699190px;}
.y20_c00194{bottom:127.560450px;}
.y1f_c00194{bottom:142.770450px;}
.y1e_c00194{bottom:163.470450px;}
.y1d_c00194{bottom:184.170450px;}
.y1c_c00194{bottom:246.270450px;}
.y1b_c00194{bottom:280.650450px;}
.y1a_c00194{bottom:315.120450px;}
.y19_c00194{bottom:349.500450px;}
.y18_c00194{bottom:383.970450px;}
.y17_c00194{bottom:418.350450px;}
.y16_c00194{bottom:452.820450px;}
.y15_c00194{bottom:497.820450px;}
.y14_c00194{bottom:551.460450px;}
.y13_c00194{bottom:585.930450px;}
.y12_c00194{bottom:620.310450px;}
.y11_c00194{bottom:654.780450px;}
.y10_c00194{bottom:689.160450px;}
.yf_c00194{bottom:723.630450px;}
.ye_c00194{bottom:768.630450px;}
.yd_c00194{bottom:822.360450px;}
.yc_c00194{bottom:856.740450px;}
.yb_c00194{bottom:891.210450px;}
.ya_c00194{bottom:934.590450px;}
.y9_c00194{bottom:969.060450px;}
.y8_c00194{bottom:1003.440450px;}
.y7_c00194{bottom:1037.910450px;}
.y6_c00194{bottom:1072.290450px;}
.y5_c00194{bottom:1106.760450px;}
.y4_c00194{bottom:1141.140450px;}
.y2_c00194{bottom:1177.860450px;}
.y1_c00194{bottom:1196.850450px;}
.h7_c00194{height:47.988281px;}
.h8_c00194{height:49.937344px;}
.h1_c00194{height:50.315273px;}
.h2_c00194{height:56.320312px;}
.h4_c00194{height:60.257812px;}
.h6_c00194{height:65.130820px;}
.h3_c00194{height:72.160312px;}
.h5_c00194{height:81.476719px;}
.h0_c00194{height:1263.000000px;}
.w1_c00194{width:892.500000px;}
.w0_c00194{width:892.830000px;}
.x0_c00194{left:0.000000px;}
.x1_c00194{left:127.620000px;}
.x3_c00194{left:141.119730px;}
.x2_c00194{left:181.620000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.v1_c00194{vertical-align:14.080000pt;}
.v2_c00194{vertical-align:26.560000pt;}
.lsd_c00194{letter-spacing:-0.134400pt;}
.ls10_c00194{letter-spacing:-0.034720pt;}
.lsf_c00194{letter-spacing:-0.032000pt;}
.ls14_c00194{letter-spacing:-0.027776pt;}
.ls13_c00194{letter-spacing:-0.025600pt;}
.lse_c00194{letter-spacing:-0.019200pt;}
.ls11_c00194{letter-spacing:-0.012800pt;}
.ls17_c00194{letter-spacing:-0.010368pt;}
.ls12_c00194{letter-spacing:-0.006400pt;}
.lsc_c00194{letter-spacing:0.000000pt;}
.ls5_c00194{letter-spacing:0.006400pt;}
.ls8_c00194{letter-spacing:0.012768pt;}
.ls3_c00194{letter-spacing:0.019200pt;}
.lsa_c00194{letter-spacing:0.029792pt;}
.ls2_c00194{letter-spacing:0.032000pt;}
.lsb_c00194{letter-spacing:0.042560pt;}
.ls0_c00194{letter-spacing:0.042752pt;}
.ls15_c00194{letter-spacing:0.048672pt;}
.ls4_c00194{letter-spacing:0.057600pt;}
.ls16_c00194{letter-spacing:0.083200pt;}
.ls9_c00194{letter-spacing:0.092480pt;}
.ls7_c00194{letter-spacing:15.554560pt;}
.ls6_c00194{letter-spacing:30.623040pt;}
.ls1_c00194{letter-spacing:1077.440000pt;}
.ws0_c00194{word-spacing:-17.360000pt;}
.ws1_c00194{word-spacing:-17.332224pt;}
.ws3_c00194{word-spacing:-9.597312pt;}
.ws2_c00194{word-spacing:-9.408672pt;}
.ws1f_c00194{word-spacing:-0.187488pt;}
.ws16_c00194{word-spacing:-0.124992pt;}
.ws15_c00194{word-spacing:-0.006400pt;}
.ws5_c00194{word-spacing:0.000000pt;}
.ws2c_c00194{word-spacing:0.004256pt;}
.ws19_c00194{word-spacing:0.006400pt;}
.ws11_c00194{word-spacing:0.019200pt;}
.ws4_c00194{word-spacing:0.037408pt;}
.wsa_c00194{word-spacing:0.262400pt;}
.ws8_c00194{word-spacing:0.288000pt;}
.ws9_c00194{word-spacing:0.364800pt;}
.ws6_c00194{word-spacing:1.280000pt;}
.ws7_c00194{word-spacing:1.388800pt;}
.wse_c00194{word-spacing:1.862400pt;}
.wsf_c00194{word-spacing:1.913600pt;}
.ws1d_c00194{word-spacing:2.259200pt;}
.ws1e_c00194{word-spacing:2.272000pt;}
.ws1a_c00194{word-spacing:2.585600pt;}
.wsb_c00194{word-spacing:2.918400pt;}
.ws14_c00194{word-spacing:3.232000pt;}
.ws13_c00194{word-spacing:3.251200pt;}
.ws28_c00194{word-spacing:3.872000pt;}
.ws27_c00194{word-spacing:4.172800pt;}
.ws26_c00194{word-spacing:4.179200pt;}
.ws18_c00194{word-spacing:4.531200pt;}
.ws17_c00194{word-spacing:4.569600pt;}
.ws21_c00194{word-spacing:5.753600pt;}
.ws20_c00194{word-spacing:5.798400pt;}
.ws25_c00194{word-spacing:7.699200pt;}
.ws2b_c00194{word-spacing:7.971488pt;}
.ws2a_c00194{word-spacing:7.984256pt;}
.ws29_c00194{word-spacing:8.001280pt;}
.wsc_c00194{word-spacing:8.268800pt;}
.wsd_c00194{word-spacing:8.307200pt;}
.ws10_c00194{word-spacing:8.659200pt;}
.ws1b_c00194{word-spacing:12.153600pt;}
.ws1c_c00194{word-spacing:12.288000pt;}
.ws24_c00194{word-spacing:13.145600pt;}
.ws23_c00194{word-spacing:14.028800pt;}
.ws22_c00194{word-spacing:14.086400pt;}
.ws12_c00194{word-spacing:16.627200pt;}
._0_c00194{margin-left:-1.175680pt;}
._1_c00194{width:0.960000pt;}
._4_c00194{width:8.356960pt;}
._2_c00194{width:171.456000pt;}
._3_c00194{width:173.440000pt;}
.fs6_c00194{font-size:34.560000pt;}
.fs4_c00194{font-size:37.440000pt;}
.fs5_c00194{font-size:42.560000pt;}
.fs1_c00194{font-size:48.000000pt;}
.fs0_c00194{font-size:53.440000pt;}
.fs2_c00194{font-size:64.000000pt;}
.fs3_c00194{font-size:69.440000pt;}
.y0_c00194{bottom:0.000000pt;}
.y3_c00194{bottom:51.067067pt;}
.y21_c00194{bottom:101.065947pt;}
.y20_c00194{bottom:113.387067pt;}
.y1f_c00194{bottom:126.907067pt;}
.y1e_c00194{bottom:145.307067pt;}
.y1d_c00194{bottom:163.707067pt;}
.y1c_c00194{bottom:218.907067pt;}
.y1b_c00194{bottom:249.467067pt;}
.y1a_c00194{bottom:280.107067pt;}
.y19_c00194{bottom:310.667067pt;}
.y18_c00194{bottom:341.307067pt;}
.y17_c00194{bottom:371.867067pt;}
.y16_c00194{bottom:402.507067pt;}
.y15_c00194{bottom:442.507067pt;}
.y14_c00194{bottom:490.187067pt;}
.y13_c00194{bottom:520.827067pt;}
.y12_c00194{bottom:551.387067pt;}
.y11_c00194{bottom:582.027067pt;}
.y10_c00194{bottom:612.587067pt;}
.yf_c00194{bottom:643.227067pt;}
.ye_c00194{bottom:683.227067pt;}
.yd_c00194{bottom:730.987067pt;}
.yc_c00194{bottom:761.547067pt;}
.yb_c00194{bottom:792.187067pt;}
.ya_c00194{bottom:830.747067pt;}
.y9_c00194{bottom:861.387067pt;}
.y8_c00194{bottom:891.947067pt;}
.y7_c00194{bottom:922.587067pt;}
.y6_c00194{bottom:953.147067pt;}
.y5_c00194{bottom:983.787067pt;}
.y4_c00194{bottom:1014.347067pt;}
.y2_c00194{bottom:1046.987067pt;}
.y1_c00194{bottom:1063.867067pt;}
.h7_c00194{height:42.656250pt;}
.h8_c00194{height:44.388750pt;}
.h1_c00194{height:44.724687pt;}
.h2_c00194{height:50.062500pt;}
.h4_c00194{height:53.562500pt;}
.h6_c00194{height:57.894063pt;}
.h3_c00194{height:64.142500pt;}
.h5_c00194{height:72.423750pt;}
.h0_c00194{height:1122.666667pt;}
.w1_c00194{width:793.333333pt;}
.w0_c00194{width:793.626667pt;}
.x0_c00194{left:0.000000pt;}
.x1_c00194{left:113.440000pt;}
.x3_c00194{left:125.439760pt;}
.x2_c00194{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_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_96ecd5089435587cf321c9b5.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00195;src:url('chunks/assets/font_2adb06ee3bfdaf8b03c570f2.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00195;src:url('chunks/assets/font_ac2344dbe7d35816d31962b8.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00195;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00195{font-family:ff5_c00195;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_c00195;src:url('chunks/assets/font_00d3d14196f6e43c5de43065.woff2')format("woff");}.ff6_c00195{font-family:ff6_c00195;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_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;}
.v1_c00195{vertical-align:29.880000px;}
.ls10_c00195{letter-spacing:-0.151200px;}
.ls17_c00195{letter-spacing:-0.036000px;}
.ls19_c00195{letter-spacing:-0.031248px;}
.ls1a_c00195{letter-spacing:-0.028800px;}
.ls16_c00195{letter-spacing:-0.023436px;}
.ls11_c00195{letter-spacing:-0.021600px;}
.ls21_c00195{letter-spacing:-0.019152px;}
.ls13_c00195{letter-spacing:-0.014400px;}
.ls1b_c00195{letter-spacing:-0.011664px;}
.ls15_c00195{letter-spacing:-0.007812px;}
.ls1d_c00195{letter-spacing:-0.007776px;}
.ls14_c00195{letter-spacing:-0.007200px;}
.ls1c_c00195{letter-spacing:-0.004788px;}
.ls1e_c00195{letter-spacing:-0.003888px;}
.lsf_c00195{letter-spacing:0.000000px;}
.lse_c00195{letter-spacing:0.004788px;}
.ls2_c00195{letter-spacing:0.007200px;}
.ls7_c00195{letter-spacing:0.014364px;}
.ls3_c00195{letter-spacing:0.014400px;}
.ls6_c00195{letter-spacing:0.021600px;}
.lsa_c00195{letter-spacing:0.023940px;}
.ls18_c00195{letter-spacing:0.036000px;}
.ls0_c00195{letter-spacing:0.036072px;}
.ls9_c00195{letter-spacing:0.043092px;}
.ls12_c00195{letter-spacing:0.054756px;}
.ls20_c00195{letter-spacing:0.062244px;}
.lsd_c00195{letter-spacing:0.071820px;}
.ls1_c00195{letter-spacing:0.093600px;}
.ls8_c00195{letter-spacing:0.104040px;}
.lsb_c00195{letter-spacing:0.189360px;}
.ls1f_c00195{letter-spacing:0.353808px;}
.lsc_c00195{letter-spacing:1.431360px;}
.ls4_c00195{letter-spacing:11.796120px;}
.ls5_c00195{letter-spacing:51.012360px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00195{word-spacing:-19.522188px;}
.ws3_c00195{word-spacing:-19.498752px;}
.ws0_c00195{word-spacing:-18.093600px;}
.ws5_c00195{word-spacing:-13.310640px;}
.ws6_c00195{word-spacing:-11.162448px;}
.ws4_c00195{word-spacing:-10.796976px;}
.ws1_c00195{word-spacing:-10.584756px;}
.ws7_c00195{word-spacing:-0.306612px;}
.ws28_c00195{word-spacing:-0.086400px;}
.ws19_c00195{word-spacing:-0.070308px;}
.ws2a_c00195{word-spacing:-0.023940px;}
.ws10_c00195{word-spacing:-0.007200px;}
.ws8_c00195{word-spacing:0.000000px;}
.ws29_c00195{word-spacing:0.004788px;}
.ws11_c00195{word-spacing:0.007200px;}
.ws32_c00195{word-spacing:0.014364px;}
.ws20_c00195{word-spacing:0.014400px;}
.ws2c_c00195{word-spacing:0.023940px;}
.ws18_c00195{word-spacing:0.064800px;}
.ws27_c00195{word-spacing:0.100800px;}
.ws2b_c00195{word-spacing:0.354312px;}
.ws31_c00195{word-spacing:0.756504px;}
.ws30_c00195{word-spacing:1.024632px;}
.ws2e_c00195{word-spacing:1.034208px;}
.ws2f_c00195{word-spacing:1.053360px;}
.ws26_c00195{word-spacing:1.072800px;}
.wsd_c00195{word-spacing:1.080000px;}
.ws2d_c00195{word-spacing:1.082088px;}
.wsc_c00195{word-spacing:1.116000px;}
.ws1a_c00195{word-spacing:1.123200px;}
.ws25_c00195{word-spacing:1.152000px;}
.ws22_c00195{word-spacing:1.411200px;}
.ws21_c00195{word-spacing:1.519200px;}
.ws1e_c00195{word-spacing:2.520000px;}
.ws1f_c00195{word-spacing:2.534400px;}
.ws16_c00195{word-spacing:3.578400px;}
.ws15_c00195{word-spacing:3.607200px;}
.wsb_c00195{word-spacing:4.334400px;}
.ws1d_c00195{word-spacing:6.084000px;}
.ws1c_c00195{word-spacing:6.148800px;}
.ws23_c00195{word-spacing:7.192800px;}
.wsf_c00195{word-spacing:7.207200px;}
.wse_c00195{word-spacing:7.243200px;}
.ws24_c00195{word-spacing:7.279200px;}
.ws1b_c00195{word-spacing:9.036000px;}
.ws17_c00195{word-spacing:9.352800px;}
.wsa_c00195{word-spacing:11.505600px;}
.ws9_c00195{word-spacing:11.541600px;}
.ws12_c00195{word-spacing:16.552800px;}
.ws13_c00195{word-spacing:16.617600px;}
.ws14_c00195{word-spacing:28.800000px;}
._0_c00195{margin-left:-1.022040px;}
._1_c00195{width:1.324800px;}
.fc0_c00195{color:rgb(0,0,0);}
.fs6_c00195{font-size:38.880000px;}
.fs3_c00195{font-size:42.120000px;}
.fs5_c00195{font-size:47.880000px;}
.fs2_c00195{font-size:54.000000px;}
.fs0_c00195{font-size:60.120000px;}
.fs1_c00195{font-size:72.000000px;}
.fs4_c00195{font-size:78.120000px;}
.y0_c00195{bottom:0.000000px;}
.y3_c00195{bottom:57.450450px;}
.y4_c00195{bottom:61.410450px;}
.y22_c00195{bottom:113.699190px;}
.y21_c00195{bottom:127.564230px;}
.y20_c00195{bottom:145.834230px;}
.y1f_c00195{bottom:164.100450px;}
.y1e_c00195{bottom:179.310600px;}
.y1d_c00195{bottom:200.010600px;}
.y1c_c00195{bottom:220.710450px;}
.y1b_c00195{bottom:315.120450px;}
.y1a_c00195{bottom:349.500450px;}
.y19_c00195{bottom:383.970450px;}
.y18_c00195{bottom:418.350450px;}
.y17_c00195{bottom:463.350450px;}
.y16_c00195{bottom:517.080450px;}
.y15_c00195{bottom:551.460450px;}
.y14_c00195{bottom:585.930450px;}
.y13_c00195{bottom:620.310450px;}
.y12_c00195{bottom:654.780450px;}
.y11_c00195{bottom:699.780450px;}
.y10_c00195{bottom:753.510450px;}
.yf_c00195{bottom:787.890450px;}
.ye_c00195{bottom:822.360450px;}
.yd_c00195{bottom:856.740450px;}
.yc_c00195{bottom:891.210450px;}
.yb_c00195{bottom:934.590450px;}
.ya_c00195{bottom:969.060450px;}
.y9_c00195{bottom:1003.440450px;}
.y8_c00195{bottom:1037.910450px;}
.y7_c00195{bottom:1072.290450px;}
.y6_c00195{bottom:1106.760450px;}
.y5_c00195{bottom:1141.140450px;}
.y2_c00195{bottom:1173.810450px;}
.y1_c00195{bottom:1196.850450px;}
.h2_c00195{height:47.988281px;}
.h7_c00195{height:47.988881px;}
.h8_c00195{height:49.937344px;}
.h1_c00195{height:50.315273px;}
.h3_c00195{height:56.320312px;}
.h4_c00195{height:60.257812px;}
.h5_c00195{height:65.130820px;}
.h6_c00195{height:81.476719px;}
.h0_c00195{height:1263.000000px;}
.w1_c00195{width:892.500000px;}
.w0_c00195{width:892.830000px;}
.x0_c00195{left:0.000000px;}
.x2_c00195{left:127.620000px;}
.x7_c00195{left:141.116310px;}
.x6_c00195{left:168.030000px;}
.x5_c00195{left:181.620000px;}
.x4_c00195{left:435.240000px;}
.x3_c00195{left:446.490000px;}
.x1_c00195{left:490.770000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.v1_c00195{vertical-align:26.560000pt;}
.ls10_c00195{letter-spacing:-0.134400pt;}
.ls17_c00195{letter-spacing:-0.032000pt;}
.ls19_c00195{letter-spacing:-0.027776pt;}
.ls1a_c00195{letter-spacing:-0.025600pt;}
.ls16_c00195{letter-spacing:-0.020832pt;}
.ls11_c00195{letter-spacing:-0.019200pt;}
.ls21_c00195{letter-spacing:-0.017024pt;}
.ls13_c00195{letter-spacing:-0.012800pt;}
.ls1b_c00195{letter-spacing:-0.010368pt;}
.ls15_c00195{letter-spacing:-0.006944pt;}
.ls1d_c00195{letter-spacing:-0.006912pt;}
.ls14_c00195{letter-spacing:-0.006400pt;}
.ls1c_c00195{letter-spacing:-0.004256pt;}
.ls1e_c00195{letter-spacing:-0.003456pt;}
.lsf_c00195{letter-spacing:0.000000pt;}
.lse_c00195{letter-spacing:0.004256pt;}
.ls2_c00195{letter-spacing:0.006400pt;}
.ls7_c00195{letter-spacing:0.012768pt;}
.ls3_c00195{letter-spacing:0.012800pt;}
.ls6_c00195{letter-spacing:0.019200pt;}
.lsa_c00195{letter-spacing:0.021280pt;}
.ls18_c00195{letter-spacing:0.032000pt;}
.ls0_c00195{letter-spacing:0.032064pt;}
.ls9_c00195{letter-spacing:0.038304pt;}
.ls12_c00195{letter-spacing:0.048672pt;}
.ls20_c00195{letter-spacing:0.055328pt;}
.lsd_c00195{letter-spacing:0.063840pt;}
.ls1_c00195{letter-spacing:0.083200pt;}
.ls8_c00195{letter-spacing:0.092480pt;}
.lsb_c00195{letter-spacing:0.168320pt;}
.ls1f_c00195{letter-spacing:0.314496pt;}
.lsc_c00195{letter-spacing:1.272320pt;}
.ls4_c00195{letter-spacing:10.485440pt;}
.ls5_c00195{letter-spacing:45.344320pt;}
.ws2_c00195{word-spacing:-17.353056pt;}
.ws3_c00195{word-spacing:-17.332224pt;}
.ws0_c00195{word-spacing:-16.083200pt;}
.ws5_c00195{word-spacing:-11.831680pt;}
.ws6_c00195{word-spacing:-9.922176pt;}
.ws4_c00195{word-spacing:-9.597312pt;}
.ws1_c00195{word-spacing:-9.408672pt;}
.ws7_c00195{word-spacing:-0.272544pt;}
.ws28_c00195{word-spacing:-0.076800pt;}
.ws19_c00195{word-spacing:-0.062496pt;}
.ws2a_c00195{word-spacing:-0.021280pt;}
.ws10_c00195{word-spacing:-0.006400pt;}
.ws8_c00195{word-spacing:0.000000pt;}
.ws29_c00195{word-spacing:0.004256pt;}
.ws11_c00195{word-spacing:0.006400pt;}
.ws32_c00195{word-spacing:0.012768pt;}
.ws20_c00195{word-spacing:0.012800pt;}
.ws2c_c00195{word-spacing:0.021280pt;}
.ws18_c00195{word-spacing:0.057600pt;}
.ws27_c00195{word-spacing:0.089600pt;}
.ws2b_c00195{word-spacing:0.314944pt;}
.ws31_c00195{word-spacing:0.672448pt;}
.ws30_c00195{word-spacing:0.910784pt;}
.ws2e_c00195{word-spacing:0.919296pt;}
.ws2f_c00195{word-spacing:0.936320pt;}
.ws26_c00195{word-spacing:0.953600pt;}
.wsd_c00195{word-spacing:0.960000pt;}
.ws2d_c00195{word-spacing:0.961856pt;}
.wsc_c00195{word-spacing:0.992000pt;}
.ws1a_c00195{word-spacing:0.998400pt;}
.ws25_c00195{word-spacing:1.024000pt;}
.ws22_c00195{word-spacing:1.254400pt;}
.ws21_c00195{word-spacing:1.350400pt;}
.ws1e_c00195{word-spacing:2.240000pt;}
.ws1f_c00195{word-spacing:2.252800pt;}
.ws16_c00195{word-spacing:3.180800pt;}
.ws15_c00195{word-spacing:3.206400pt;}
.wsb_c00195{word-spacing:3.852800pt;}
.ws1d_c00195{word-spacing:5.408000pt;}
.ws1c_c00195{word-spacing:5.465600pt;}
.ws23_c00195{word-spacing:6.393600pt;}
.wsf_c00195{word-spacing:6.406400pt;}
.wse_c00195{word-spacing:6.438400pt;}
.ws24_c00195{word-spacing:6.470400pt;}
.ws1b_c00195{word-spacing:8.032000pt;}
.ws17_c00195{word-spacing:8.313600pt;}
.wsa_c00195{word-spacing:10.227200pt;}
.ws9_c00195{word-spacing:10.259200pt;}
.ws12_c00195{word-spacing:14.713600pt;}
.ws13_c00195{word-spacing:14.771200pt;}
.ws14_c00195{word-spacing:25.600000pt;}
._0_c00195{margin-left:-0.908480pt;}
._1_c00195{width:1.177600pt;}
.fs6_c00195{font-size:34.560000pt;}
.fs3_c00195{font-size:37.440000pt;}
.fs5_c00195{font-size:42.560000pt;}
.fs2_c00195{font-size:48.000000pt;}
.fs0_c00195{font-size:53.440000pt;}
.fs1_c00195{font-size:64.000000pt;}
.fs4_c00195{font-size:69.440000pt;}
.y0_c00195{bottom:0.000000pt;}
.y3_c00195{bottom:51.067067pt;}
.y4_c00195{bottom:54.587067pt;}
.y22_c00195{bottom:101.065947pt;}
.y21_c00195{bottom:113.390427pt;}
.y20_c00195{bottom:129.630427pt;}
.y1f_c00195{bottom:145.867067pt;}
.y1e_c00195{bottom:159.387200pt;}
.y1d_c00195{bottom:177.787200pt;}
.y1c_c00195{bottom:196.187067pt;}
.y1b_c00195{bottom:280.107067pt;}
.y1a_c00195{bottom:310.667067pt;}
.y19_c00195{bottom:341.307067pt;}
.y18_c00195{bottom:371.867067pt;}
.y17_c00195{bottom:411.867067pt;}
.y16_c00195{bottom:459.627067pt;}
.y15_c00195{bottom:490.187067pt;}
.y14_c00195{bottom:520.827067pt;}
.y13_c00195{bottom:551.387067pt;}
.y12_c00195{bottom:582.027067pt;}
.y11_c00195{bottom:622.027067pt;}
.y10_c00195{bottom:669.787067pt;}
.yf_c00195{bottom:700.347067pt;}
.ye_c00195{bottom:730.987067pt;}
.yd_c00195{bottom:761.547067pt;}
.yc_c00195{bottom:792.187067pt;}
.yb_c00195{bottom:830.747067pt;}
.ya_c00195{bottom:861.387067pt;}
.y9_c00195{bottom:891.947067pt;}
.y8_c00195{bottom:922.587067pt;}
.y7_c00195{bottom:953.147067pt;}
.y6_c00195{bottom:983.787067pt;}
.y5_c00195{bottom:1014.347067pt;}
.y2_c00195{bottom:1043.387067pt;}
.y1_c00195{bottom:1063.867067pt;}
.h2_c00195{height:42.656250pt;}
.h7_c00195{height:42.656783pt;}
.h8_c00195{height:44.388750pt;}
.h1_c00195{height:44.724687pt;}
.h3_c00195{height:50.062500pt;}
.h4_c00195{height:53.562500pt;}
.h5_c00195{height:57.894063pt;}
.h6_c00195{height:72.423750pt;}
.h0_c00195{height:1122.666667pt;}
.w1_c00195{width:793.333333pt;}
.w0_c00195{width:793.626667pt;}
.x0_c00195{left:0.000000pt;}
.x2_c00195{left:113.440000pt;}
.x7_c00195{left:125.436720pt;}
.x6_c00195{left:149.360000pt;}
.x5_c00195{left:161.440000pt;}
.x4_c00195{left:386.880000pt;}
.x3_c00195{left:396.880000pt;}
.x1_c00195{left:436.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_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_1b0c5c172e92030521d8b7f0.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.100098;font-style:normal;font-weight:normal;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_5c209f83b333aee3f3573fdd.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;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_c00196;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00196;src:url('chunks/assets/font_6af9c846260f422cc3fd8324.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00196;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00196{font-family:ff5_c00196;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_c00196;src:url('chunks/assets/font_dc84bdfde50a0e31444894f3.woff2')format("woff");}.ff6_c00196{font-family:ff6_c00196;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_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;}
.v1_c00196{vertical-align:15.840000px;}
.v2_c00196{vertical-align:29.880000px;}
.ls11_c00196{letter-spacing:-0.151200px;}
.ls1b_c00196{letter-spacing:-0.043200px;}
.ls13_c00196{letter-spacing:-0.036000px;}
.ls17_c00196{letter-spacing:-0.028800px;}
.ls1d_c00196{letter-spacing:-0.023436px;}
.ls1e_c00196{letter-spacing:-0.021600px;}
.ls1c_c00196{letter-spacing:-0.015624px;}
.ls12_c00196{letter-spacing:-0.014400px;}
.ls16_c00196{letter-spacing:-0.007200px;}
.ls21_c00196{letter-spacing:-0.004788px;}
.ls1f_c00196{letter-spacing:-0.003888px;}
.ls10_c00196{letter-spacing:0.000000px;}
.ls3_c00196{letter-spacing:0.007200px;}
.lsb_c00196{letter-spacing:0.009576px;}
.ls8_c00196{letter-spacing:0.014364px;}
.ls4_c00196{letter-spacing:0.014400px;}
.lsf_c00196{letter-spacing:0.019152px;}
.ls6_c00196{letter-spacing:0.021600px;}
.lsd_c00196{letter-spacing:0.028728px;}
.ls2_c00196{letter-spacing:0.028800px;}
.ls1a_c00196{letter-spacing:0.036000px;}
.ls0_c00196{letter-spacing:0.048096px;}
.ls5_c00196{letter-spacing:0.050400px;}
.ls14_c00196{letter-spacing:0.054756px;}
.lsa_c00196{letter-spacing:0.057456px;}
.ls19_c00196{letter-spacing:0.057600px;}
.ls15_c00196{letter-spacing:0.093600px;}
.lse_c00196{letter-spacing:0.095760px;}
.lsc_c00196{letter-spacing:0.104040px;}
.ls20_c00196{letter-spacing:0.357696px;}
.ls9_c00196{letter-spacing:0.378720px;}
.ls18_c00196{letter-spacing:7.560000px;}
.ls7_c00196{letter-spacing:45.231480px;}
.ls1_c00196{letter-spacing:1212.120000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00196{word-spacing:-19.514376px;}
.ws3_c00196{word-spacing:-11.166336px;}
.ws2_c00196{word-spacing:-10.804752px;}
.ws0_c00196{word-spacing:-10.584756px;}
.wsc_c00196{word-spacing:-0.093600px;}
.ws2a_c00196{word-spacing:-0.070308px;}
.ws2e_c00196{word-spacing:-0.038304px;}
.ws36_c00196{word-spacing:-0.014364px;}
.ws35_c00196{word-spacing:-0.009576px;}
.ws5_c00196{word-spacing:0.000000px;}
.ws2d_c00196{word-spacing:0.004788px;}
.ws2f_c00196{word-spacing:0.009576px;}
.ws25_c00196{word-spacing:0.014400px;}
.ws34_c00196{word-spacing:0.023940px;}
.wsb_c00196{word-spacing:0.036000px;}
.ws4_c00196{word-spacing:0.042084px;}
.ws1e_c00196{word-spacing:0.072000px;}
.wsa_c00196{word-spacing:0.086400px;}
.ws31_c00196{word-spacing:1.067724px;}
.ws30_c00196{word-spacing:1.082088px;}
.ws33_c00196{word-spacing:1.096452px;}
.ws32_c00196{word-spacing:1.359792px;}
.ws23_c00196{word-spacing:1.800000px;}
.ws24_c00196{word-spacing:1.843200px;}
.ws2b_c00196{word-spacing:2.570400px;}
.ws1c_c00196{word-spacing:3.513600px;}
.ws2c_c00196{word-spacing:3.621600px;}
.ws1b_c00196{word-spacing:3.628800px;}
.ws21_c00196{word-spacing:3.657600px;}
.ws22_c00196{word-spacing:3.672000px;}
.ws11_c00196{word-spacing:4.320000px;}
.ws12_c00196{word-spacing:4.334400px;}
.wse_c00196{word-spacing:4.651200px;}
.wsf_c00196{word-spacing:4.780800px;}
.ws10_c00196{word-spacing:4.795200px;}
.ws20_c00196{word-spacing:6.134400px;}
.ws1f_c00196{word-spacing:6.170400px;}
.wsd_c00196{word-spacing:6.458400px;}
.ws13_c00196{word-spacing:7.531200px;}
.ws27_c00196{word-spacing:9.748800px;}
.ws26_c00196{word-spacing:9.777600px;}
.ws17_c00196{word-spacing:10.447200px;}
.ws8_c00196{word-spacing:10.792800px;}
.ws9_c00196{word-spacing:10.814400px;}
.ws6_c00196{word-spacing:11.491200px;}
.ws7_c00196{word-spacing:11.570400px;}
.ws15_c00196{word-spacing:12.549600px;}
.ws14_c00196{word-spacing:12.585600px;}
.ws16_c00196{word-spacing:12.657600px;}
.ws1d_c00196{word-spacing:15.156000px;}
.ws29_c00196{word-spacing:16.149600px;}
.ws28_c00196{word-spacing:16.221600px;}
.ws18_c00196{word-spacing:18.770400px;}
.ws1a_c00196{word-spacing:18.799200px;}
.ws19_c00196{word-spacing:18.813600px;}
._3_c00196{margin-left:-8.697600px;}
._2_c00196{margin-left:-7.531200px;}
._4_c00196{margin-left:-6.523200px;}
._0_c00196{margin-left:-1.322640px;}
._1_c00196{width:1.238400px;}
.fc0_c00196{color:rgb(0,0,0);}
.fs6_c00196{font-size:38.880000px;}
.fs3_c00196{font-size:42.120000px;}
.fs5_c00196{font-size:47.880000px;}
.fs1_c00196{font-size:54.000000px;}
.fs0_c00196{font-size:60.120000px;}
.fs2_c00196{font-size:72.000000px;}
.fs4_c00196{font-size:78.120000px;}
.y0_c00196{bottom:0.000000px;}
.y3_c00196{bottom:57.450450px;}
.y25_c00196{bottom:113.712330px;}
.y24_c00196{bottom:132.074310px;}
.y23_c00196{bottom:150.340530px;}
.y22_c00196{bottom:168.606750px;}
.y21_c00196{bottom:186.968730px;}
.y20_c00196{bottom:205.234950px;}
.y1f_c00196{bottom:218.998470px;}
.y1e_c00196{bottom:237.360450px;}
.y1d_c00196{bottom:252.570450px;}
.y1c_c00196{bottom:273.270450px;}
.y1b_c00196{bottom:293.970450px;}
.y1a_c00196{bottom:326.910450px;}
.y19_c00196{bottom:361.380450px;}
.y18_c00196{bottom:406.380450px;}
.y17_c00196{bottom:460.110450px;}
.y16_c00196{bottom:494.490450px;}
.y15_c00196{bottom:528.960450px;}
.y14_c00196{bottom:572.340450px;}
.y13_c00196{bottom:606.810450px;}
.y12_c00196{bottom:641.190450px;}
.y11_c00196{bottom:675.660450px;}
.y10_c00196{bottom:719.040450px;}
.yf_c00196{bottom:753.510450px;}
.ye_c00196{bottom:787.890450px;}
.yd_c00196{bottom:822.360450px;}
.yc_c00196{bottom:856.740450px;}
.yb_c00196{bottom:891.210450px;}
.ya_c00196{bottom:925.590450px;}
.y9_c00196{bottom:960.060450px;}
.y8_c00196{bottom:994.440450px;}
.y7_c00196{bottom:1028.910450px;}
.y6_c00196{bottom:1072.290450px;}
.y5_c00196{bottom:1106.760450px;}
.y4_c00196{bottom:1141.140450px;}
.y2_c00196{bottom:1177.860450px;}
.y1_c00196{bottom:1196.850450px;}
.h8_c00196{height:47.988281px;}
.h9_c00196{height:49.937344px;}
.ha_c00196{height:49.945264px;}
.h1_c00196{height:50.315273px;}
.h2_c00196{height:56.320312px;}
.h4_c00196{height:60.257812px;}
.h5_c00196{height:65.130820px;}
.h6_c00196{height:65.131420px;}
.h3_c00196{height:72.160312px;}
.h7_c00196{height:81.476719px;}
.h0_c00196{height:1263.000000px;}
.w1_c00196{width:892.500000px;}
.w0_c00196{width:892.830000px;}
.x0_c00196{left:0.000000px;}
.x1_c00196{left:127.620000px;}
.x4_c00196{left:141.118920px;}
.x2_c00196{left:168.030000px;}
.x3_c00196{left:180.720000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.v1_c00196{vertical-align:14.080000pt;}
.v2_c00196{vertical-align:26.560000pt;}
.ls11_c00196{letter-spacing:-0.134400pt;}
.ls1b_c00196{letter-spacing:-0.038400pt;}
.ls13_c00196{letter-spacing:-0.032000pt;}
.ls17_c00196{letter-spacing:-0.025600pt;}
.ls1d_c00196{letter-spacing:-0.020832pt;}
.ls1e_c00196{letter-spacing:-0.019200pt;}
.ls1c_c00196{letter-spacing:-0.013888pt;}
.ls12_c00196{letter-spacing:-0.012800pt;}
.ls16_c00196{letter-spacing:-0.006400pt;}
.ls21_c00196{letter-spacing:-0.004256pt;}
.ls1f_c00196{letter-spacing:-0.003456pt;}
.ls10_c00196{letter-spacing:0.000000pt;}
.ls3_c00196{letter-spacing:0.006400pt;}
.lsb_c00196{letter-spacing:0.008512pt;}
.ls8_c00196{letter-spacing:0.012768pt;}
.ls4_c00196{letter-spacing:0.012800pt;}
.lsf_c00196{letter-spacing:0.017024pt;}
.ls6_c00196{letter-spacing:0.019200pt;}
.lsd_c00196{letter-spacing:0.025536pt;}
.ls2_c00196{letter-spacing:0.025600pt;}
.ls1a_c00196{letter-spacing:0.032000pt;}
.ls0_c00196{letter-spacing:0.042752pt;}
.ls5_c00196{letter-spacing:0.044800pt;}
.ls14_c00196{letter-spacing:0.048672pt;}
.lsa_c00196{letter-spacing:0.051072pt;}
.ls19_c00196{letter-spacing:0.051200pt;}
.ls15_c00196{letter-spacing:0.083200pt;}
.lse_c00196{letter-spacing:0.085120pt;}
.lsc_c00196{letter-spacing:0.092480pt;}
.ls20_c00196{letter-spacing:0.317952pt;}
.ls9_c00196{letter-spacing:0.336640pt;}
.ls18_c00196{letter-spacing:6.720000pt;}
.ls7_c00196{letter-spacing:40.205760pt;}
.ls1_c00196{letter-spacing:1077.440000pt;}
.ws1_c00196{word-spacing:-17.346112pt;}
.ws3_c00196{word-spacing:-9.925632pt;}
.ws2_c00196{word-spacing:-9.604224pt;}
.ws0_c00196{word-spacing:-9.408672pt;}
.wsc_c00196{word-spacing:-0.083200pt;}
.ws2a_c00196{word-spacing:-0.062496pt;}
.ws2e_c00196{word-spacing:-0.034048pt;}
.ws36_c00196{word-spacing:-0.012768pt;}
.ws35_c00196{word-spacing:-0.008512pt;}
.ws5_c00196{word-spacing:0.000000pt;}
.ws2d_c00196{word-spacing:0.004256pt;}
.ws2f_c00196{word-spacing:0.008512pt;}
.ws25_c00196{word-spacing:0.012800pt;}
.ws34_c00196{word-spacing:0.021280pt;}
.wsb_c00196{word-spacing:0.032000pt;}
.ws4_c00196{word-spacing:0.037408pt;}
.ws1e_c00196{word-spacing:0.064000pt;}
.wsa_c00196{word-spacing:0.076800pt;}
.ws31_c00196{word-spacing:0.949088pt;}
.ws30_c00196{word-spacing:0.961856pt;}
.ws33_c00196{word-spacing:0.974624pt;}
.ws32_c00196{word-spacing:1.208704pt;}
.ws23_c00196{word-spacing:1.600000pt;}
.ws24_c00196{word-spacing:1.638400pt;}
.ws2b_c00196{word-spacing:2.284800pt;}
.ws1c_c00196{word-spacing:3.123200pt;}
.ws2c_c00196{word-spacing:3.219200pt;}
.ws1b_c00196{word-spacing:3.225600pt;}
.ws21_c00196{word-spacing:3.251200pt;}
.ws22_c00196{word-spacing:3.264000pt;}
.ws11_c00196{word-spacing:3.840000pt;}
.ws12_c00196{word-spacing:3.852800pt;}
.wse_c00196{word-spacing:4.134400pt;}
.wsf_c00196{word-spacing:4.249600pt;}
.ws10_c00196{word-spacing:4.262400pt;}
.ws20_c00196{word-spacing:5.452800pt;}
.ws1f_c00196{word-spacing:5.484800pt;}
.wsd_c00196{word-spacing:5.740800pt;}
.ws13_c00196{word-spacing:6.694400pt;}
.ws27_c00196{word-spacing:8.665600pt;}
.ws26_c00196{word-spacing:8.691200pt;}
.ws17_c00196{word-spacing:9.286400pt;}
.ws8_c00196{word-spacing:9.593600pt;}
.ws9_c00196{word-spacing:9.612800pt;}
.ws6_c00196{word-spacing:10.214400pt;}
.ws7_c00196{word-spacing:10.284800pt;}
.ws15_c00196{word-spacing:11.155200pt;}
.ws14_c00196{word-spacing:11.187200pt;}
.ws16_c00196{word-spacing:11.251200pt;}
.ws1d_c00196{word-spacing:13.472000pt;}
.ws29_c00196{word-spacing:14.355200pt;}
.ws28_c00196{word-spacing:14.419200pt;}
.ws18_c00196{word-spacing:16.684800pt;}
.ws1a_c00196{word-spacing:16.710400pt;}
.ws19_c00196{word-spacing:16.723200pt;}
._3_c00196{margin-left:-7.731200pt;}
._2_c00196{margin-left:-6.694400pt;}
._4_c00196{margin-left:-5.798400pt;}
._0_c00196{margin-left:-1.175680pt;}
._1_c00196{width:1.100800pt;}
.fs6_c00196{font-size:34.560000pt;}
.fs3_c00196{font-size:37.440000pt;}
.fs5_c00196{font-size:42.560000pt;}
.fs1_c00196{font-size:48.000000pt;}
.fs0_c00196{font-size:53.440000pt;}
.fs2_c00196{font-size:64.000000pt;}
.fs4_c00196{font-size:69.440000pt;}
.y0_c00196{bottom:0.000000pt;}
.y3_c00196{bottom:51.067067pt;}
.y25_c00196{bottom:101.077627pt;}
.y24_c00196{bottom:117.399387pt;}
.y23_c00196{bottom:133.636027pt;}
.y22_c00196{bottom:149.872667pt;}
.y21_c00196{bottom:166.194427pt;}
.y20_c00196{bottom:182.431067pt;}
.y1f_c00196{bottom:194.665307pt;}
.y1e_c00196{bottom:210.987067pt;}
.y1d_c00196{bottom:224.507067pt;}
.y1c_c00196{bottom:242.907067pt;}
.y1b_c00196{bottom:261.307067pt;}
.y1a_c00196{bottom:290.587067pt;}
.y19_c00196{bottom:321.227067pt;}
.y18_c00196{bottom:361.227067pt;}
.y17_c00196{bottom:408.987067pt;}
.y16_c00196{bottom:439.547067pt;}
.y15_c00196{bottom:470.187067pt;}
.y14_c00196{bottom:508.747067pt;}
.y13_c00196{bottom:539.387067pt;}
.y12_c00196{bottom:569.947067pt;}
.y11_c00196{bottom:600.587067pt;}
.y10_c00196{bottom:639.147067pt;}
.yf_c00196{bottom:669.787067pt;}
.ye_c00196{bottom:700.347067pt;}
.yd_c00196{bottom:730.987067pt;}
.yc_c00196{bottom:761.547067pt;}
.yb_c00196{bottom:792.187067pt;}
.ya_c00196{bottom:822.747067pt;}
.y9_c00196{bottom:853.387067pt;}
.y8_c00196{bottom:883.947067pt;}
.y7_c00196{bottom:914.587067pt;}
.y6_c00196{bottom:953.147067pt;}
.y5_c00196{bottom:983.787067pt;}
.y4_c00196{bottom:1014.347067pt;}
.y2_c00196{bottom:1046.987067pt;}
.y1_c00196{bottom:1063.867067pt;}
.h8_c00196{height:42.656250pt;}
.h9_c00196{height:44.388750pt;}
.ha_c00196{height:44.395790pt;}
.h1_c00196{height:44.724687pt;}
.h2_c00196{height:50.062500pt;}
.h4_c00196{height:53.562500pt;}
.h5_c00196{height:57.894062pt;}
.h6_c00196{height:57.894596pt;}
.h3_c00196{height:64.142500pt;}
.h7_c00196{height:72.423750pt;}
.h0_c00196{height:1122.666667pt;}
.w1_c00196{width:793.333333pt;}
.w0_c00196{width:793.626667pt;}
.x0_c00196{left:0.000000pt;}
.x1_c00196{left:113.440000pt;}
.x4_c00196{left:125.439040pt;}
.x2_c00196{left:149.360000pt;}
.x3_c00196{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_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_c2c2e5ce7a8f324ca1701b38.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00197;src:url('chunks/assets/font_aa2e61cdb432835ec71c0a09.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00197;src:url('chunks/assets/font_a388ff8e63516bfdb1298b66.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00197;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00197{font-family:ff5_c00197;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v3_c00197{vertical-align:15.120000px;}
.v1_c00197{vertical-align:29.880000px;}
.v2_c00197{vertical-align:33.847560px;}
.lsc_c00197{letter-spacing:-0.151200px;}
.ls17_c00197{letter-spacing:-0.048096px;}
.ls1a_c00197{letter-spacing:-0.039060px;}
.ls14_c00197{letter-spacing:-0.036072px;}
.ls13_c00197{letter-spacing:-0.030060px;}
.ls11_c00197{letter-spacing:-0.028800px;}
.ls16_c00197{letter-spacing:-0.024048px;}
.lsf_c00197{letter-spacing:-0.021600px;}
.ls19_c00197{letter-spacing:-0.015624px;}
.ls10_c00197{letter-spacing:-0.014400px;}
.lsd_c00197{letter-spacing:-0.007200px;}
.ls15_c00197{letter-spacing:-0.006012px;}
.lsb_c00197{letter-spacing:0.000000px;}
.ls3_c00197{letter-spacing:0.007200px;}
.ls1_c00197{letter-spacing:0.014400px;}
.ls4_c00197{letter-spacing:0.018036px;}
.ls8_c00197{letter-spacing:0.019152px;}
.lsa_c00197{letter-spacing:0.023940px;}
.ls9_c00197{letter-spacing:0.028728px;}
.ls12_c00197{letter-spacing:0.036000px;}
.ls0_c00197{letter-spacing:0.036072px;}
.ls2_c00197{letter-spacing:0.043200px;}
.lse_c00197{letter-spacing:0.054756px;}
.ls18_c00197{letter-spacing:0.136080px;}
.ls6_c00197{letter-spacing:0.144000px;}
.ls5_c00197{letter-spacing:45.231480px;}
.ls7_c00197{letter-spacing:65.304000px;}
.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;}
}
.ws3_c00197{word-spacing:-19.514376px;}
.ws1_c00197{word-spacing:-18.043200px;}
.ws0_c00197{word-spacing:-10.584756px;}
.ws2_c00197{word-spacing:-9.856080px;}
.ws4_c00197{word-spacing:-0.306612px;}
.ws18_c00197{word-spacing:-0.246492px;}
.ws1b_c00197{word-spacing:-0.140616px;}
.ws23_c00197{word-spacing:-0.009576px;}
.ws14_c00197{word-spacing:-0.007200px;}
.ws24_c00197{word-spacing:-0.004788px;}
.ws5_c00197{word-spacing:0.000000px;}
.ws15_c00197{word-spacing:0.007200px;}
.ws1e_c00197{word-spacing:0.021600px;}
.ws1a_c00197{word-spacing:0.072144px;}
.ws22_c00197{word-spacing:0.086400px;}
.ws17_c00197{word-spacing:0.096192px;}
.ws16_c00197{word-spacing:0.120240px;}
.ws13_c00197{word-spacing:0.122400px;}
.ws19_c00197{word-spacing:0.138276px;}
.ws21_c00197{word-spacing:0.151200px;}
.ws9_c00197{word-spacing:0.705600px;}
.ws1d_c00197{word-spacing:1.720800px;}
.ws1c_c00197{word-spacing:1.742400px;}
.ws8_c00197{word-spacing:2.527200px;}
.ws7_c00197{word-spacing:2.577600px;}
.ws6_c00197{word-spacing:2.671200px;}
.wsd_c00197{word-spacing:5.702400px;}
.wse_c00197{word-spacing:5.824800px;}
.wsf_c00197{word-spacing:7.581600px;}
.ws10_c00197{word-spacing:7.588800px;}
.wsa_c00197{word-spacing:9.324000px;}
.wsb_c00197{word-spacing:9.367200px;}
.ws20_c00197{word-spacing:12.132000px;}
.ws1f_c00197{word-spacing:12.261600px;}
.ws12_c00197{word-spacing:14.781600px;}
.ws11_c00197{word-spacing:14.810400px;}
.wsc_c00197{word-spacing:19.454400px;}
._0_c00197{margin-left:-1.022040px;}
._1_c00197{width:1.080000px;}
._5_c00197{width:202.123440px;}
._7_c00197{width:255.930840px;}
._4_c00197{width:271.622160px;}
._9_c00197{width:277.904700px;}
._2_c00197{width:279.360000px;}
._8_c00197{width:343.489608px;}
._3_c00197{width:348.120000px;}
._6_c00197{width:388.765980px;}
.fc0_c00197{color:rgb(0,0,0);}
.fs4_c00197{font-size:38.880000px;}
.fs3_c00197{font-size:42.120000px;}
.fs6_c00197{font-size:47.880000px;}
.fs2_c00197{font-size:54.000000px;}
.fs0_c00197{font-size:60.120000px;}
.fs1_c00197{font-size:72.000000px;}
.fs5_c00197{font-size:78.120000px;}
.y0_c00197{bottom:0.000000px;}
.y3_c00197{bottom:57.450450px;}
.y4_c00197{bottom:61.410450px;}
.y23_c00197{bottom:113.706030px;}
.y22_c00197{bottom:132.068010px;}
.y21_c00197{bottom:150.334230px;}
.y20_c00197{bottom:168.600450px;}
.y1f_c00197{bottom:183.810600px;}
.y1e_c00197{bottom:204.510600px;}
.y1d_c00197{bottom:225.210450px;}
.y1c_c00197{bottom:341.580450px;}
.y1b_c00197{bottom:385.050450px;}
.y1a_c00197{bottom:428.430450px;}
.y19_c00197{bottom:462.900450px;}
.y18_c00197{bottom:506.280450px;}
.y17_c00197{bottom:540.750450px;}
.y16_c00197{bottom:585.750450px;}
.y15_c00197{bottom:636.330450px;}
.y14_c00197{bottom:662.968380px;}
.y13_c00197{bottom:671.520450px;}
.y12_c00197{bottom:702.570450px;}
.y11_c00197{bottom:725.788740px;}
.y10_c00197{bottom:734.160450px;}
.yf_c00197{bottom:765.300450px;}
.ye_c00197{bottom:813.360450px;}
.yd_c00197{bottom:847.740450px;}
.yc_c00197{bottom:891.210450px;}
.yb_c00197{bottom:925.590450px;}
.ya_c00197{bottom:960.060450px;}
.y9_c00197{bottom:994.440450px;}
.y8_c00197{bottom:1028.910450px;}
.y7_c00197{bottom:1072.290450px;}
.y6_c00197{bottom:1106.760450px;}
.y5_c00197{bottom:1141.140450px;}
.y2_c00197{bottom:1173.810450px;}
.y1_c00197{bottom:1196.850450px;}
.h2_c00197{height:47.988281px;}
.hb_c00197{height:47.988881px;}
.hc_c00197{height:49.937344px;}
.h1_c00197{height:50.315273px;}
.h3_c00197{height:56.320312px;}
.h5_c00197{height:60.257812px;}
.h6_c00197{height:60.328125px;}
.h4_c00197{height:65.130820px;}
.ha_c00197{height:75.093750px;}
.h9_c00197{height:81.476719px;}
.h8_c00197{height:83.802113px;}
.h7_c00197{height:84.162833px;}
.h0_c00197{height:1263.000000px;}
.w1_c00197{width:892.500000px;}
.w0_c00197{width:892.830000px;}
.x0_c00197{left:0.000000px;}
.x2_c00197{left:127.620000px;}
.xb_c00197{left:154.620000px;}
.xa_c00197{left:168.030000px;}
.x7_c00197{left:171.990000px;}
.x5_c00197{left:180.720000px;}
.x6_c00197{left:216.630000px;}
.x9_c00197{left:265.320000px;}
.x4_c00197{left:435.240000px;}
.x3_c00197{left:446.490000px;}
.x1_c00197{left:490.770000px;}
.x8_c00197{left:536.482530px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.v3_c00197{vertical-align:13.440000pt;}
.v1_c00197{vertical-align:26.560000pt;}
.v2_c00197{vertical-align:30.086720pt;}
.lsc_c00197{letter-spacing:-0.134400pt;}
.ls17_c00197{letter-spacing:-0.042752pt;}
.ls1a_c00197{letter-spacing:-0.034720pt;}
.ls14_c00197{letter-spacing:-0.032064pt;}
.ls13_c00197{letter-spacing:-0.026720pt;}
.ls11_c00197{letter-spacing:-0.025600pt;}
.ls16_c00197{letter-spacing:-0.021376pt;}
.lsf_c00197{letter-spacing:-0.019200pt;}
.ls19_c00197{letter-spacing:-0.013888pt;}
.ls10_c00197{letter-spacing:-0.012800pt;}
.lsd_c00197{letter-spacing:-0.006400pt;}
.ls15_c00197{letter-spacing:-0.005344pt;}
.lsb_c00197{letter-spacing:0.000000pt;}
.ls3_c00197{letter-spacing:0.006400pt;}
.ls1_c00197{letter-spacing:0.012800pt;}
.ls4_c00197{letter-spacing:0.016032pt;}
.ls8_c00197{letter-spacing:0.017024pt;}
.lsa_c00197{letter-spacing:0.021280pt;}
.ls9_c00197{letter-spacing:0.025536pt;}
.ls12_c00197{letter-spacing:0.032000pt;}
.ls0_c00197{letter-spacing:0.032064pt;}
.ls2_c00197{letter-spacing:0.038400pt;}
.lse_c00197{letter-spacing:0.048672pt;}
.ls18_c00197{letter-spacing:0.120960pt;}
.ls6_c00197{letter-spacing:0.128000pt;}
.ls5_c00197{letter-spacing:40.205760pt;}
.ls7_c00197{letter-spacing:58.048000pt;}
.ws3_c00197{word-spacing:-17.346112pt;}
.ws1_c00197{word-spacing:-16.038400pt;}
.ws0_c00197{word-spacing:-9.408672pt;}
.ws2_c00197{word-spacing:-8.760960pt;}
.ws4_c00197{word-spacing:-0.272544pt;}
.ws18_c00197{word-spacing:-0.219104pt;}
.ws1b_c00197{word-spacing:-0.124992pt;}
.ws23_c00197{word-spacing:-0.008512pt;}
.ws14_c00197{word-spacing:-0.006400pt;}
.ws24_c00197{word-spacing:-0.004256pt;}
.ws5_c00197{word-spacing:0.000000pt;}
.ws15_c00197{word-spacing:0.006400pt;}
.ws1e_c00197{word-spacing:0.019200pt;}
.ws1a_c00197{word-spacing:0.064128pt;}
.ws22_c00197{word-spacing:0.076800pt;}
.ws17_c00197{word-spacing:0.085504pt;}
.ws16_c00197{word-spacing:0.106880pt;}
.ws13_c00197{word-spacing:0.108800pt;}
.ws19_c00197{word-spacing:0.122912pt;}
.ws21_c00197{word-spacing:0.134400pt;}
.ws9_c00197{word-spacing:0.627200pt;}
.ws1d_c00197{word-spacing:1.529600pt;}
.ws1c_c00197{word-spacing:1.548800pt;}
.ws8_c00197{word-spacing:2.246400pt;}
.ws7_c00197{word-spacing:2.291200pt;}
.ws6_c00197{word-spacing:2.374400pt;}
.wsd_c00197{word-spacing:5.068800pt;}
.wse_c00197{word-spacing:5.177600pt;}
.wsf_c00197{word-spacing:6.739200pt;}
.ws10_c00197{word-spacing:6.745600pt;}
.wsa_c00197{word-spacing:8.288000pt;}
.wsb_c00197{word-spacing:8.326400pt;}
.ws20_c00197{word-spacing:10.784000pt;}
.ws1f_c00197{word-spacing:10.899200pt;}
.ws12_c00197{word-spacing:13.139200pt;}
.ws11_c00197{word-spacing:13.164800pt;}
.wsc_c00197{word-spacing:17.292800pt;}
._0_c00197{margin-left:-0.908480pt;}
._1_c00197{width:0.960000pt;}
._5_c00197{width:179.665280pt;}
._7_c00197{width:227.494080pt;}
._4_c00197{width:241.441920pt;}
._9_c00197{width:247.026400pt;}
._2_c00197{width:248.320000pt;}
._8_c00197{width:305.324096pt;}
._3_c00197{width:309.440000pt;}
._6_c00197{width:345.569760pt;}
.fs4_c00197{font-size:34.560000pt;}
.fs3_c00197{font-size:37.440000pt;}
.fs6_c00197{font-size:42.560000pt;}
.fs2_c00197{font-size:48.000000pt;}
.fs0_c00197{font-size:53.440000pt;}
.fs1_c00197{font-size:64.000000pt;}
.fs5_c00197{font-size:69.440000pt;}
.y0_c00197{bottom:0.000000pt;}
.y3_c00197{bottom:51.067067pt;}
.y4_c00197{bottom:54.587067pt;}
.y23_c00197{bottom:101.072027pt;}
.y22_c00197{bottom:117.393787pt;}
.y21_c00197{bottom:133.630427pt;}
.y20_c00197{bottom:149.867067pt;}
.y1f_c00197{bottom:163.387200pt;}
.y1e_c00197{bottom:181.787200pt;}
.y1d_c00197{bottom:200.187067pt;}
.y1c_c00197{bottom:303.627067pt;}
.y1b_c00197{bottom:342.267067pt;}
.y1a_c00197{bottom:380.827067pt;}
.y19_c00197{bottom:411.467067pt;}
.y18_c00197{bottom:450.027067pt;}
.y17_c00197{bottom:480.667067pt;}
.y16_c00197{bottom:520.667067pt;}
.y15_c00197{bottom:565.627067pt;}
.y14_c00197{bottom:589.305227pt;}
.y13_c00197{bottom:596.907067pt;}
.y12_c00197{bottom:624.507067pt;}
.y11_c00197{bottom:645.145547pt;}
.y10_c00197{bottom:652.587067pt;}
.yf_c00197{bottom:680.267067pt;}
.ye_c00197{bottom:722.987067pt;}
.yd_c00197{bottom:753.547067pt;}
.yc_c00197{bottom:792.187067pt;}
.yb_c00197{bottom:822.747067pt;}
.ya_c00197{bottom:853.387067pt;}
.y9_c00197{bottom:883.947067pt;}
.y8_c00197{bottom:914.587067pt;}
.y7_c00197{bottom:953.147067pt;}
.y6_c00197{bottom:983.787067pt;}
.y5_c00197{bottom:1014.347067pt;}
.y2_c00197{bottom:1043.387067pt;}
.y1_c00197{bottom:1063.867067pt;}
.h2_c00197{height:42.656250pt;}
.hb_c00197{height:42.656783pt;}
.hc_c00197{height:44.388750pt;}
.h1_c00197{height:44.724687pt;}
.h3_c00197{height:50.062500pt;}
.h5_c00197{height:53.562500pt;}
.h6_c00197{height:53.625000pt;}
.h4_c00197{height:57.894063pt;}
.ha_c00197{height:66.750000pt;}
.h9_c00197{height:72.423750pt;}
.h8_c00197{height:74.490768pt;}
.h7_c00197{height:74.811408pt;}
.h0_c00197{height:1122.666667pt;}
.w1_c00197{width:793.333333pt;}
.w0_c00197{width:793.626667pt;}
.x0_c00197{left:0.000000pt;}
.x2_c00197{left:113.440000pt;}
.xb_c00197{left:137.440000pt;}
.xa_c00197{left:149.360000pt;}
.x7_c00197{left:152.880000pt;}
.x5_c00197{left:160.640000pt;}
.x6_c00197{left:192.560000pt;}
.x9_c00197{left:235.840000pt;}
.x4_c00197{left:386.880000pt;}
.x3_c00197{left:396.880000pt;}
.x1_c00197{left:436.240000pt;}
.x8_c00197{left:476.873360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fca1d8081afe483039cd094b.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.100098;font-style:normal;font-weight:normal;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_0d0ee3394174bbc6b6ad6254.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;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_c00198;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00198;src:url('chunks/assets/font_a7f16c99dc676563840f5ec2.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;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_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;}
.v1_c00198{vertical-align:15.840000px;}
.v2_c00198{vertical-align:29.880000px;}
.lse_c00198{letter-spacing:-0.151200px;}
.ls17_c00198{letter-spacing:-0.036000px;}
.ls13_c00198{letter-spacing:-0.028800px;}
.ls15_c00198{letter-spacing:-0.021600px;}
.ls12_c00198{letter-spacing:-0.014400px;}
.ls14_c00198{letter-spacing:-0.007200px;}
.ls18_c00198{letter-spacing:-0.003888px;}
.lsd_c00198{letter-spacing:0.000000px;}
.ls4_c00198{letter-spacing:0.007200px;}
.ls9_c00198{letter-spacing:0.014364px;}
.ls7_c00198{letter-spacing:0.014400px;}
.ls6_c00198{letter-spacing:0.021600px;}
.ls8_c00198{letter-spacing:0.028728px;}
.ls16_c00198{letter-spacing:0.028800px;}
.lsc_c00198{letter-spacing:0.033516px;}
.lsf_c00198{letter-spacing:0.036000px;}
.ls0_c00198{letter-spacing:0.048096px;}
.ls10_c00198{letter-spacing:0.054756px;}
.lsb_c00198{letter-spacing:0.057456px;}
.ls11_c00198{letter-spacing:0.093600px;}
.ls2_c00198{letter-spacing:0.144000px;}
.lsa_c00198{letter-spacing:0.378720px;}
.ls3_c00198{letter-spacing:65.304000px;}
.ls5_c00198{letter-spacing:66.024000px;}
.ls1_c00198{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00198{word-spacing:-18.007200px;}
.ws2_c00198{word-spacing:-10.804752px;}
.ws1_c00198{word-spacing:-10.584756px;}
.ws23_c00198{word-spacing:-0.038304px;}
.ws15_c00198{word-spacing:-0.021600px;}
.ws24_c00198{word-spacing:-0.014364px;}
.ws21_c00198{word-spacing:-0.009576px;}
.ws4_c00198{word-spacing:0.000000px;}
.ws22_c00198{word-spacing:0.004788px;}
.wsc_c00198{word-spacing:0.007200px;}
.ws18_c00198{word-spacing:0.021600px;}
.ws3_c00198{word-spacing:0.042084px;}
.ws1a_c00198{word-spacing:1.411200px;}
.ws19_c00198{word-spacing:1.627200px;}
.ws1b_c00198{word-spacing:1.900800px;}
.ws10_c00198{word-spacing:2.462400px;}
.ws11_c00198{word-spacing:2.505600px;}
.ws7_c00198{word-spacing:3.960000px;}
.ws16_c00198{word-spacing:4.305600px;}
.ws17_c00198{word-spacing:4.348800px;}
.ws14_c00198{word-spacing:4.744800px;}
.ws13_c00198{word-spacing:4.773600px;}
.ws1c_c00198{word-spacing:6.156000px;}
.ws20_c00198{word-spacing:10.080000px;}
.ws1f_c00198{word-spacing:10.166400px;}
.ws6_c00198{word-spacing:10.404000px;}
.ws5_c00198{word-spacing:10.490400px;}
.wsa_c00198{word-spacing:12.564000px;}
.wsb_c00198{word-spacing:12.621600px;}
.ws8_c00198{word-spacing:13.694400px;}
.ws9_c00198{word-spacing:13.708800px;}
.wsf_c00198{word-spacing:14.400000px;}
.wse_c00198{word-spacing:16.552800px;}
.wsd_c00198{word-spacing:16.632000px;}
.ws1e_c00198{word-spacing:18.705600px;}
.ws1d_c00198{word-spacing:18.720000px;}
.ws12_c00198{word-spacing:29.160000px;}
._0_c00198{margin-left:-1.322640px;}
._1_c00198{width:1.159200px;}
.fc0_c00198{color:rgb(0,0,0);}
.fs5_c00198{font-size:38.880000px;}
.fs3_c00198{font-size:42.120000px;}
.fs4_c00198{font-size:47.880000px;}
.fs1_c00198{font-size:54.000000px;}
.fs0_c00198{font-size:60.120000px;}
.fs2_c00198{font-size:72.000000px;}
.y0_c00198{bottom:0.000000px;}
.y3_c00198{bottom:57.450450px;}
.y21_c00198{bottom:113.706030px;}
.y20_c00198{bottom:132.068010px;}
.y1f_c00198{bottom:150.334230px;}
.y1e_c00198{bottom:168.598620px;}
.y1d_c00198{bottom:186.960600px;}
.y1c_c00198{bottom:202.170450px;}
.y1b_c00198{bottom:222.870450px;}
.y1a_c00198{bottom:243.570450px;}
.y19_c00198{bottom:355.260450px;}
.y18_c00198{bottom:389.640450px;}
.y17_c00198{bottom:424.110450px;}
.y16_c00198{bottom:458.490450px;}
.y15_c00198{bottom:492.960450px;}
.y14_c00198{bottom:536.340450px;}
.y13_c00198{bottom:570.810450px;}
.y12_c00198{bottom:614.190450px;}
.y11_c00198{bottom:648.660450px;}
.y10_c00198{bottom:692.040450px;}
.yf_c00198{bottom:726.510450px;}
.ye_c00198{bottom:760.890450px;}
.yd_c00198{bottom:804.360450px;}
.yc_c00198{bottom:838.740450px;}
.yb_c00198{bottom:873.210450px;}
.ya_c00198{bottom:907.590450px;}
.y9_c00198{bottom:960.060450px;}
.y8_c00198{bottom:994.440450px;}
.y7_c00198{bottom:1028.910450px;}
.y6_c00198{bottom:1072.290450px;}
.y5_c00198{bottom:1106.760450px;}
.y4_c00198{bottom:1141.140450px;}
.y2_c00198{bottom:1177.860450px;}
.y1_c00198{bottom:1196.850450px;}
.h7_c00198{height:47.988281px;}
.h8_c00198{height:49.937344px;}
.h9_c00198{height:49.944664px;}
.h1_c00198{height:50.315273px;}
.h2_c00198{height:56.320312px;}
.h5_c00198{height:60.257812px;}
.h6_c00198{height:65.130820px;}
.h3_c00198{height:72.160312px;}
.h4_c00198{height:75.093750px;}
.h0_c00198{height:1263.000000px;}
.w1_c00198{width:892.500000px;}
.w0_c00198{width:892.830000px;}
.x0_c00198{left:0.000000px;}
.x1_c00198{left:127.620000px;}
.x2_c00198{left:154.620000px;}
.x3_c00198{left:181.620000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.v1_c00198{vertical-align:14.080000pt;}
.v2_c00198{vertical-align:26.560000pt;}
.lse_c00198{letter-spacing:-0.134400pt;}
.ls17_c00198{letter-spacing:-0.032000pt;}
.ls13_c00198{letter-spacing:-0.025600pt;}
.ls15_c00198{letter-spacing:-0.019200pt;}
.ls12_c00198{letter-spacing:-0.012800pt;}
.ls14_c00198{letter-spacing:-0.006400pt;}
.ls18_c00198{letter-spacing:-0.003456pt;}
.lsd_c00198{letter-spacing:0.000000pt;}
.ls4_c00198{letter-spacing:0.006400pt;}
.ls9_c00198{letter-spacing:0.012768pt;}
.ls7_c00198{letter-spacing:0.012800pt;}
.ls6_c00198{letter-spacing:0.019200pt;}
.ls8_c00198{letter-spacing:0.025536pt;}
.ls16_c00198{letter-spacing:0.025600pt;}
.lsc_c00198{letter-spacing:0.029792pt;}
.lsf_c00198{letter-spacing:0.032000pt;}
.ls0_c00198{letter-spacing:0.042752pt;}
.ls10_c00198{letter-spacing:0.048672pt;}
.lsb_c00198{letter-spacing:0.051072pt;}
.ls11_c00198{letter-spacing:0.083200pt;}
.ls2_c00198{letter-spacing:0.128000pt;}
.lsa_c00198{letter-spacing:0.336640pt;}
.ls3_c00198{letter-spacing:58.048000pt;}
.ls5_c00198{letter-spacing:58.688000pt;}
.ls1_c00198{letter-spacing:1077.440000pt;}
.ws0_c00198{word-spacing:-16.006400pt;}
.ws2_c00198{word-spacing:-9.604224pt;}
.ws1_c00198{word-spacing:-9.408672pt;}
.ws23_c00198{word-spacing:-0.034048pt;}
.ws15_c00198{word-spacing:-0.019200pt;}
.ws24_c00198{word-spacing:-0.012768pt;}
.ws21_c00198{word-spacing:-0.008512pt;}
.ws4_c00198{word-spacing:0.000000pt;}
.ws22_c00198{word-spacing:0.004256pt;}
.wsc_c00198{word-spacing:0.006400pt;}
.ws18_c00198{word-spacing:0.019200pt;}
.ws3_c00198{word-spacing:0.037408pt;}
.ws1a_c00198{word-spacing:1.254400pt;}
.ws19_c00198{word-spacing:1.446400pt;}
.ws1b_c00198{word-spacing:1.689600pt;}
.ws10_c00198{word-spacing:2.188800pt;}
.ws11_c00198{word-spacing:2.227200pt;}
.ws7_c00198{word-spacing:3.520000pt;}
.ws16_c00198{word-spacing:3.827200pt;}
.ws17_c00198{word-spacing:3.865600pt;}
.ws14_c00198{word-spacing:4.217600pt;}
.ws13_c00198{word-spacing:4.243200pt;}
.ws1c_c00198{word-spacing:5.472000pt;}
.ws20_c00198{word-spacing:8.960000pt;}
.ws1f_c00198{word-spacing:9.036800pt;}
.ws6_c00198{word-spacing:9.248000pt;}
.ws5_c00198{word-spacing:9.324800pt;}
.wsa_c00198{word-spacing:11.168000pt;}
.wsb_c00198{word-spacing:11.219200pt;}
.ws8_c00198{word-spacing:12.172800pt;}
.ws9_c00198{word-spacing:12.185600pt;}
.wsf_c00198{word-spacing:12.800000pt;}
.wse_c00198{word-spacing:14.713600pt;}
.wsd_c00198{word-spacing:14.784000pt;}
.ws1e_c00198{word-spacing:16.627200pt;}
.ws1d_c00198{word-spacing:16.640000pt;}
.ws12_c00198{word-spacing:25.920000pt;}
._0_c00198{margin-left:-1.175680pt;}
._1_c00198{width:1.030400pt;}
.fs5_c00198{font-size:34.560000pt;}
.fs3_c00198{font-size:37.440000pt;}
.fs4_c00198{font-size:42.560000pt;}
.fs1_c00198{font-size:48.000000pt;}
.fs0_c00198{font-size:53.440000pt;}
.fs2_c00198{font-size:64.000000pt;}
.y0_c00198{bottom:0.000000pt;}
.y3_c00198{bottom:51.067067pt;}
.y21_c00198{bottom:101.072027pt;}
.y20_c00198{bottom:117.393787pt;}
.y1f_c00198{bottom:133.630427pt;}
.y1e_c00198{bottom:149.865440pt;}
.y1d_c00198{bottom:166.187200pt;}
.y1c_c00198{bottom:179.707067pt;}
.y1b_c00198{bottom:198.107067pt;}
.y1a_c00198{bottom:216.507067pt;}
.y19_c00198{bottom:315.787067pt;}
.y18_c00198{bottom:346.347067pt;}
.y17_c00198{bottom:376.987067pt;}
.y16_c00198{bottom:407.547067pt;}
.y15_c00198{bottom:438.187067pt;}
.y14_c00198{bottom:476.747067pt;}
.y13_c00198{bottom:507.387067pt;}
.y12_c00198{bottom:545.947067pt;}
.y11_c00198{bottom:576.587067pt;}
.y10_c00198{bottom:615.147067pt;}
.yf_c00198{bottom:645.787067pt;}
.ye_c00198{bottom:676.347067pt;}
.yd_c00198{bottom:714.987067pt;}
.yc_c00198{bottom:745.547067pt;}
.yb_c00198{bottom:776.187067pt;}
.ya_c00198{bottom:806.747067pt;}
.y9_c00198{bottom:853.387067pt;}
.y8_c00198{bottom:883.947067pt;}
.y7_c00198{bottom:914.587067pt;}
.y6_c00198{bottom:953.147067pt;}
.y5_c00198{bottom:983.787067pt;}
.y4_c00198{bottom:1014.347067pt;}
.y2_c00198{bottom:1046.987067pt;}
.y1_c00198{bottom:1063.867067pt;}
.h7_c00198{height:42.656250pt;}
.h8_c00198{height:44.388750pt;}
.h9_c00198{height:44.395257pt;}
.h1_c00198{height:44.724687pt;}
.h2_c00198{height:50.062500pt;}
.h5_c00198{height:53.562500pt;}
.h6_c00198{height:57.894062pt;}
.h3_c00198{height:64.142500pt;}
.h4_c00198{height:66.750000pt;}
.h0_c00198{height:1122.666667pt;}
.w1_c00198{width:793.333333pt;}
.w0_c00198{width:793.626667pt;}
.x0_c00198{left:0.000000pt;}
.x1_c00198{left:113.440000pt;}
.x2_c00198{left:137.440000pt;}
.x3_c00198{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_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_a86f92cb52c9ee9d35908a72.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00199;src:url('chunks/assets/font_5b21d07a3433964373aeeb14.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00199;src:url('chunks/assets/font_5401a83481388128ba4b91f2.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00199;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00199{font-family:ff5_c00199;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_c00199;src:url('chunks/assets/font_a7f16c99dc676563840f5ec2.woff2')format("woff");}.ff6_c00199{font-family:ff6_c00199;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_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;}
.v1_c00199{vertical-align:29.880000px;}
.ls1f_c00199{letter-spacing:-0.192384px;}
.ls13_c00199{letter-spacing:-0.151200px;}
.ls22_c00199{letter-spacing:-0.144288px;}
.ls1b_c00199{letter-spacing:-0.066132px;}
.ls1c_c00199{letter-spacing:-0.054108px;}
.ls1d_c00199{letter-spacing:-0.036072px;}
.ls19_c00199{letter-spacing:-0.036000px;}
.ls21_c00199{letter-spacing:-0.024048px;}
.ls15_c00199{letter-spacing:-0.021600px;}
.ls17_c00199{letter-spacing:-0.015624px;}
.ls18_c00199{letter-spacing:-0.014400px;}
.ls1e_c00199{letter-spacing:-0.012024px;}
.ls14_c00199{letter-spacing:-0.007200px;}
.ls20_c00199{letter-spacing:-0.006012px;}
.ls23_c00199{letter-spacing:-0.003888px;}
.ls12_c00199{letter-spacing:0.000000px;}
.lsb_c00199{letter-spacing:0.006012px;}
.ls9_c00199{letter-spacing:0.012024px;}
.lse_c00199{letter-spacing:0.014364px;}
.ls5_c00199{letter-spacing:0.021600px;}
.ls7_c00199{letter-spacing:0.024048px;}
.lsd_c00199{letter-spacing:0.028728px;}
.ls2_c00199{letter-spacing:0.028800px;}
.ls11_c00199{letter-spacing:0.033516px;}
.ls0_c00199{letter-spacing:0.036072px;}
.ls8_c00199{letter-spacing:0.042084px;}
.lsc_c00199{letter-spacing:0.048096px;}
.ls3_c00199{letter-spacing:0.050400px;}
.ls16_c00199{letter-spacing:0.054756px;}
.ls10_c00199{letter-spacing:0.057456px;}
.ls4_c00199{letter-spacing:0.057600px;}
.ls6_c00199{letter-spacing:0.060120px;}
.ls1a_c00199{letter-spacing:0.093600px;}
.lsa_c00199{letter-spacing:0.102204px;}
.lsf_c00199{letter-spacing:0.378720px;}
.ls1_c00199{letter-spacing:45.231480px;}
.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;}
}
.ws1_c00199{word-spacing:-19.514376px;}
.ws2_c00199{word-spacing:-10.804752px;}
.ws0_c00199{word-spacing:-10.584756px;}
.ws35_c00199{word-spacing:-0.318636px;}
.ws3_c00199{word-spacing:-0.306612px;}
.ws9_c00199{word-spacing:-0.132804px;}
.ws38_c00199{word-spacing:-0.038304px;}
.ws39_c00199{word-spacing:-0.014364px;}
.ws36_c00199{word-spacing:-0.009576px;}
.ws4_c00199{word-spacing:0.000000px;}
.ws37_c00199{word-spacing:0.004788px;}
.ws8_c00199{word-spacing:0.007200px;}
.ws7_c00199{word-spacing:0.021600px;}
.wsd_c00199{word-spacing:0.028800px;}
.ws22_c00199{word-spacing:0.030060px;}
.ws6_c00199{word-spacing:0.064800px;}
.ws14_c00199{word-spacing:0.079200px;}
.ws27_c00199{word-spacing:0.102204px;}
.ws34_c00199{word-spacing:0.126252px;}
.ws10_c00199{word-spacing:0.151200px;}
.ws15_c00199{word-spacing:0.309600px;}
.ws16_c00199{word-spacing:0.345600px;}
.ws26_c00199{word-spacing:0.486972px;}
.ws28_c00199{word-spacing:0.643284px;}
.ws21_c00199{word-spacing:0.769536px;}
.ws1c_c00199{word-spacing:1.418400px;}
.ws1b_c00199{word-spacing:1.461600px;}
.ws2c_c00199{word-spacing:3.288564px;}
.ws2b_c00199{word-spacing:3.667320px;}
.ws2d_c00199{word-spacing:3.715416px;}
.ws18_c00199{word-spacing:3.916800px;}
.ws12_c00199{word-spacing:3.938400px;}
.ws17_c00199{word-spacing:3.974400px;}
.ws11_c00199{word-spacing:4.068000px;}
.ws1e_c00199{word-spacing:4.767516px;}
.ws1f_c00199{word-spacing:5.104188px;}
.ws25_c00199{word-spacing:7.683336px;}
.ws24_c00199{word-spacing:7.701372px;}
.ws23_c00199{word-spacing:7.713396px;}
.ws1d_c00199{word-spacing:8.308584px;}
.ws20_c00199{word-spacing:8.687340px;}
.wsa_c00199{word-spacing:9.741600px;}
.wsb_c00199{word-spacing:11.887200px;}
.wsc_c00199{word-spacing:11.908800px;}
.ws13_c00199{word-spacing:12.614400px;}
.ws2e_c00199{word-spacing:13.400748px;}
.ws2f_c00199{word-spacing:13.418784px;}
.ws32_c00199{word-spacing:13.767480px;}
.ws33_c00199{word-spacing:13.911768px;}
.wse_c00199{word-spacing:14.356800px;}
.wsf_c00199{word-spacing:14.364000px;}
.ws1a_c00199{word-spacing:15.480000px;}
.ws19_c00199{word-spacing:15.552000px;}
.ws29_c00199{word-spacing:19.178280px;}
.ws2a_c00199{word-spacing:19.196316px;}
.ws5_c00199{word-spacing:20.527200px;}
.ws30_c00199{word-spacing:24.919740px;}
.ws31_c00199{word-spacing:24.925752px;}
._0_c00199{margin-left:-1.022040px;}
._1_c00199{width:1.440000px;}
.fc0_c00199{color:rgb(0,0,0);}
.fs6_c00199{font-size:38.880000px;}
.fs3_c00199{font-size:42.120000px;}
.fs5_c00199{font-size:47.880000px;}
.fs2_c00199{font-size:54.000000px;}
.fs0_c00199{font-size:60.120000px;}
.fs1_c00199{font-size:72.000000px;}
.fs4_c00199{font-size:78.120000px;}
.y0_c00199{bottom:0.000000px;}
.y3_c00199{bottom:57.450450px;}
.y4_c00199{bottom:61.410450px;}
.y29_c00199{bottom:113.698470px;}
.y28_c00199{bottom:132.064230px;}
.y27_c00199{bottom:150.330450px;}
.y26_c00199{bottom:165.540450px;}
.y25_c00199{bottom:186.240450px;}
.y24_c00199{bottom:206.940450px;}
.y23_c00199{bottom:264.231630px;}
.y22_c00199{bottom:281.155410px;}
.y21_c00199{bottom:297.989010px;}
.y20_c00199{bottom:323.915760px;}
.y1f_c00199{bottom:340.749360px;}
.y1e_c00199{bottom:357.673140px;}
.y1d_c00199{bottom:374.506740px;}
.y1c_c00199{bottom:391.430520px;}
.y1b_c00199{bottom:408.264120px;}
.y1a_c00199{bottom:434.175840px;}
.y19_c00199{bottom:451.009440px;}
.y18_c00199{bottom:467.933220px;}
.y17_c00199{bottom:484.766820px;}
.y16_c00199{bottom:501.690600px;}
.y15_c00199{bottom:542.460450px;}
.y14_c00199{bottom:576.930450px;}
.y13_c00199{bottom:611.310450px;}
.y12_c00199{bottom:645.780450px;}
.y11_c00199{bottom:680.160450px;}
.y10_c00199{bottom:723.630600px;}
.yf_c00199{bottom:758.010600px;}
.ye_c00199{bottom:792.480600px;}
.yd_c00199{bottom:835.860450px;}
.yc_c00199{bottom:870.330450px;}
.yb_c00199{bottom:904.710450px;}
.ya_c00199{bottom:939.180450px;}
.y9_c00199{bottom:973.560450px;}
.y8_c00199{bottom:1018.650450px;}
.y7_c00199{bottom:1072.290450px;}
.y6_c00199{bottom:1106.760450px;}
.y5_c00199{bottom:1141.140450px;}
.y2_c00199{bottom:1173.810450px;}
.y1_c00199{bottom:1196.850450px;}
.h2_c00199{height:47.988281px;}
.h8_c00199{height:49.937344px;}
.h1_c00199{height:50.315273px;}
.h3_c00199{height:56.320312px;}
.h4_c00199{height:60.257812px;}
.h7_c00199{height:65.130220px;}
.h5_c00199{height:65.130820px;}
.h6_c00199{height:81.476719px;}
.h0_c00199{height:1263.000000px;}
.w1_c00199{width:892.500000px;}
.w0_c00199{width:892.830000px;}
.x0_c00199{left:0.000000px;}
.x2_c00199{left:127.620000px;}
.x7_c00199{left:154.620000px;}
.x6_c00199{left:168.030000px;}
.x5_c00199{left:180.810000px;}
.x4_c00199{left:435.240000px;}
.x3_c00199{left:446.490000px;}
.x1_c00199{left:490.770000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.v1_c00199{vertical-align:26.560000pt;}
.ls1f_c00199{letter-spacing:-0.171008pt;}
.ls13_c00199{letter-spacing:-0.134400pt;}
.ls22_c00199{letter-spacing:-0.128256pt;}
.ls1b_c00199{letter-spacing:-0.058784pt;}
.ls1c_c00199{letter-spacing:-0.048096pt;}
.ls1d_c00199{letter-spacing:-0.032064pt;}
.ls19_c00199{letter-spacing:-0.032000pt;}
.ls21_c00199{letter-spacing:-0.021376pt;}
.ls15_c00199{letter-spacing:-0.019200pt;}
.ls17_c00199{letter-spacing:-0.013888pt;}
.ls18_c00199{letter-spacing:-0.012800pt;}
.ls1e_c00199{letter-spacing:-0.010688pt;}
.ls14_c00199{letter-spacing:-0.006400pt;}
.ls20_c00199{letter-spacing:-0.005344pt;}
.ls23_c00199{letter-spacing:-0.003456pt;}
.ls12_c00199{letter-spacing:0.000000pt;}
.lsb_c00199{letter-spacing:0.005344pt;}
.ls9_c00199{letter-spacing:0.010688pt;}
.lse_c00199{letter-spacing:0.012768pt;}
.ls5_c00199{letter-spacing:0.019200pt;}
.ls7_c00199{letter-spacing:0.021376pt;}
.lsd_c00199{letter-spacing:0.025536pt;}
.ls2_c00199{letter-spacing:0.025600pt;}
.ls11_c00199{letter-spacing:0.029792pt;}
.ls0_c00199{letter-spacing:0.032064pt;}
.ls8_c00199{letter-spacing:0.037408pt;}
.lsc_c00199{letter-spacing:0.042752pt;}
.ls3_c00199{letter-spacing:0.044800pt;}
.ls16_c00199{letter-spacing:0.048672pt;}
.ls10_c00199{letter-spacing:0.051072pt;}
.ls4_c00199{letter-spacing:0.051200pt;}
.ls6_c00199{letter-spacing:0.053440pt;}
.ls1a_c00199{letter-spacing:0.083200pt;}
.lsa_c00199{letter-spacing:0.090848pt;}
.lsf_c00199{letter-spacing:0.336640pt;}
.ls1_c00199{letter-spacing:40.205760pt;}
.ws1_c00199{word-spacing:-17.346112pt;}
.ws2_c00199{word-spacing:-9.604224pt;}
.ws0_c00199{word-spacing:-9.408672pt;}
.ws35_c00199{word-spacing:-0.283232pt;}
.ws3_c00199{word-spacing:-0.272544pt;}
.ws9_c00199{word-spacing:-0.118048pt;}
.ws38_c00199{word-spacing:-0.034048pt;}
.ws39_c00199{word-spacing:-0.012768pt;}
.ws36_c00199{word-spacing:-0.008512pt;}
.ws4_c00199{word-spacing:0.000000pt;}
.ws37_c00199{word-spacing:0.004256pt;}
.ws8_c00199{word-spacing:0.006400pt;}
.ws7_c00199{word-spacing:0.019200pt;}
.wsd_c00199{word-spacing:0.025600pt;}
.ws22_c00199{word-spacing:0.026720pt;}
.ws6_c00199{word-spacing:0.057600pt;}
.ws14_c00199{word-spacing:0.070400pt;}
.ws27_c00199{word-spacing:0.090848pt;}
.ws34_c00199{word-spacing:0.112224pt;}
.ws10_c00199{word-spacing:0.134400pt;}
.ws15_c00199{word-spacing:0.275200pt;}
.ws16_c00199{word-spacing:0.307200pt;}
.ws26_c00199{word-spacing:0.432864pt;}
.ws28_c00199{word-spacing:0.571808pt;}
.ws21_c00199{word-spacing:0.684032pt;}
.ws1c_c00199{word-spacing:1.260800pt;}
.ws1b_c00199{word-spacing:1.299200pt;}
.ws2c_c00199{word-spacing:2.923168pt;}
.ws2b_c00199{word-spacing:3.259840pt;}
.ws2d_c00199{word-spacing:3.302592pt;}
.ws18_c00199{word-spacing:3.481600pt;}
.ws12_c00199{word-spacing:3.500800pt;}
.ws17_c00199{word-spacing:3.532800pt;}
.ws11_c00199{word-spacing:3.616000pt;}
.ws1e_c00199{word-spacing:4.237792pt;}
.ws1f_c00199{word-spacing:4.537056pt;}
.ws25_c00199{word-spacing:6.829632pt;}
.ws24_c00199{word-spacing:6.845664pt;}
.ws23_c00199{word-spacing:6.856352pt;}
.ws1d_c00199{word-spacing:7.385408pt;}
.ws20_c00199{word-spacing:7.722080pt;}
.wsa_c00199{word-spacing:8.659200pt;}
.wsb_c00199{word-spacing:10.566400pt;}
.wsc_c00199{word-spacing:10.585600pt;}
.ws13_c00199{word-spacing:11.212800pt;}
.ws2e_c00199{word-spacing:11.911776pt;}
.ws2f_c00199{word-spacing:11.927808pt;}
.ws32_c00199{word-spacing:12.237760pt;}
.ws33_c00199{word-spacing:12.366016pt;}
.wse_c00199{word-spacing:12.761600pt;}
.wsf_c00199{word-spacing:12.768000pt;}
.ws1a_c00199{word-spacing:13.760000pt;}
.ws19_c00199{word-spacing:13.824000pt;}
.ws29_c00199{word-spacing:17.047360pt;}
.ws2a_c00199{word-spacing:17.063392pt;}
.ws5_c00199{word-spacing:18.246400pt;}
.ws30_c00199{word-spacing:22.150880pt;}
.ws31_c00199{word-spacing:22.156224pt;}
._0_c00199{margin-left:-0.908480pt;}
._1_c00199{width:1.280000pt;}
.fs6_c00199{font-size:34.560000pt;}
.fs3_c00199{font-size:37.440000pt;}
.fs5_c00199{font-size:42.560000pt;}
.fs2_c00199{font-size:48.000000pt;}
.fs0_c00199{font-size:53.440000pt;}
.fs1_c00199{font-size:64.000000pt;}
.fs4_c00199{font-size:69.440000pt;}
.y0_c00199{bottom:0.000000pt;}
.y3_c00199{bottom:51.067067pt;}
.y4_c00199{bottom:54.587067pt;}
.y29_c00199{bottom:101.065307pt;}
.y28_c00199{bottom:117.390427pt;}
.y27_c00199{bottom:133.627067pt;}
.y26_c00199{bottom:147.147067pt;}
.y25_c00199{bottom:165.547067pt;}
.y24_c00199{bottom:183.947067pt;}
.y23_c00199{bottom:234.872560pt;}
.y22_c00199{bottom:249.915920pt;}
.y21_c00199{bottom:264.879120pt;}
.y20_c00199{bottom:287.925120pt;}
.y1f_c00199{bottom:302.888320pt;}
.y1e_c00199{bottom:317.931680pt;}
.y1d_c00199{bottom:332.894880pt;}
.y1c_c00199{bottom:347.938240pt;}
.y1b_c00199{bottom:362.901440pt;}
.y1a_c00199{bottom:385.934080pt;}
.y19_c00199{bottom:400.897280pt;}
.y18_c00199{bottom:415.940640pt;}
.y17_c00199{bottom:430.903840pt;}
.y16_c00199{bottom:445.947200pt;}
.y15_c00199{bottom:482.187067pt;}
.y14_c00199{bottom:512.827067pt;}
.y13_c00199{bottom:543.387067pt;}
.y12_c00199{bottom:574.027067pt;}
.y11_c00199{bottom:604.587067pt;}
.y10_c00199{bottom:643.227200pt;}
.yf_c00199{bottom:673.787200pt;}
.ye_c00199{bottom:704.427200pt;}
.yd_c00199{bottom:742.987067pt;}
.yc_c00199{bottom:773.627067pt;}
.yb_c00199{bottom:804.187067pt;}
.ya_c00199{bottom:834.827067pt;}
.y9_c00199{bottom:865.387067pt;}
.y8_c00199{bottom:905.467067pt;}
.y7_c00199{bottom:953.147067pt;}
.y6_c00199{bottom:983.787067pt;}
.y5_c00199{bottom:1014.347067pt;}
.y2_c00199{bottom:1043.387067pt;}
.y1_c00199{bottom:1063.867067pt;}
.h2_c00199{height:42.656250pt;}
.h8_c00199{height:44.388750pt;}
.h1_c00199{height:44.724687pt;}
.h3_c00199{height:50.062500pt;}
.h4_c00199{height:53.562500pt;}
.h7_c00199{height:57.893529pt;}
.h5_c00199{height:57.894062pt;}
.h6_c00199{height:72.423750pt;}
.h0_c00199{height:1122.666667pt;}
.w1_c00199{width:793.333333pt;}
.w0_c00199{width:793.626667pt;}
.x0_c00199{left:0.000000pt;}
.x2_c00199{left:113.440000pt;}
.x7_c00199{left:137.440000pt;}
.x6_c00199{left:149.360000pt;}
.x5_c00199{left:160.720000pt;}
.x4_c00199{left:386.880000pt;}
.x3_c00199{left:396.880000pt;}
.x1_c00199{left:436.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_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_e417f0a48ef5b6f9bb28f401.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.100098;font-style:normal;font-weight:normal;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_f158b6a8069bc4dca2960965.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;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_c00200;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00200;src:url('chunks/assets/font_57aaacc4d1f6044608ebba78.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00200;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00200{font-family:ff5_c00200;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_c00200;src:url('chunks/assets/font_386d996aafdbc6e473ad35cc.woff2')format("woff");}.ff6_c00200{font-family:ff6_c00200;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_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.v1_c00200{vertical-align:15.840000px;}
.v3_c00200{vertical-align:24.119400px;}
.v2_c00200{vertical-align:29.880600px;}
.ls17_c00200{letter-spacing:-0.151200px;}
.ls19_c00200{letter-spacing:-0.150300px;}
.ls21_c00200{letter-spacing:-0.062496px;}
.ls18_c00200{letter-spacing:-0.036072px;}
.ls22_c00200{letter-spacing:-0.028800px;}
.ls1e_c00200{letter-spacing:-0.021600px;}
.ls2a_c00200{letter-spacing:-0.019152px;}
.ls29_c00200{letter-spacing:-0.015552px;}
.ls23_c00200{letter-spacing:-0.014400px;}
.ls1a_c00200{letter-spacing:-0.012024px;}
.ls28_c00200{letter-spacing:-0.011664px;}
.ls2c_c00200{letter-spacing:-0.009576px;}
.ls20_c00200{letter-spacing:-0.007812px;}
.ls1d_c00200{letter-spacing:-0.007200px;}
.ls27_c00200{letter-spacing:-0.004788px;}
.ls25_c00200{letter-spacing:-0.003888px;}
.ls16_c00200{letter-spacing:0.000000px;}
.ls3_c00200{letter-spacing:0.006012px;}
.ls5_c00200{letter-spacing:0.007200px;}
.lsc_c00200{letter-spacing:0.014364px;}
.ls6_c00200{letter-spacing:0.014400px;}
.ls12_c00200{letter-spacing:0.019152px;}
.lse_c00200{letter-spacing:0.023940px;}
.ls2_c00200{letter-spacing:0.024048px;}
.ls10_c00200{letter-spacing:0.028728px;}
.ls15_c00200{letter-spacing:0.033516px;}
.ls14_c00200{letter-spacing:0.043092px;}
.ls7_c00200{letter-spacing:0.043200px;}
.ls0_c00200{letter-spacing:0.048096px;}
.ls13_c00200{letter-spacing:0.052668px;}
.ls4_c00200{letter-spacing:0.054108px;}
.ls1f_c00200{letter-spacing:0.054756px;}
.ls11_c00200{letter-spacing:0.057456px;}
.lsf_c00200{letter-spacing:0.067032px;}
.ls24_c00200{letter-spacing:0.093600px;}
.lsd_c00200{letter-spacing:0.104040px;}
.ls1b_c00200{letter-spacing:0.136080px;}
.ls9_c00200{letter-spacing:0.144000px;}
.ls1c_c00200{letter-spacing:0.168336px;}
.ls2b_c00200{letter-spacing:0.253764px;}
.ls26_c00200{letter-spacing:0.357696px;}
.ls8_c00200{letter-spacing:11.796120px;}
.lsa_c00200{letter-spacing:65.304000px;}
.lsb_c00200{letter-spacing:66.024000px;}
.ls1_c00200{letter-spacing:1212.120000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00200{word-spacing:-19.522188px;}
.ws3_c00200{word-spacing:-11.166336px;}
.ws4_c00200{word-spacing:-10.793088px;}
.ws1_c00200{word-spacing:-10.584756px;}
.ws0_c00200{word-spacing:-9.856080px;}
.ws5_c00200{word-spacing:-8.306640px;}
.ws1c_c00200{word-spacing:-0.031248px;}
.ws32_c00200{word-spacing:-0.014364px;}
.ws33_c00200{word-spacing:-0.009576px;}
.ws1f_c00200{word-spacing:-0.007200px;}
.ws7_c00200{word-spacing:0.000000px;}
.ws1b_c00200{word-spacing:0.007200px;}
.ws22_c00200{word-spacing:0.014400px;}
.ws29_c00200{word-spacing:0.023940px;}
.ws31_c00200{word-spacing:0.028728px;}
.ws6_c00200{word-spacing:0.042084px;}
.ws20_c00200{word-spacing:0.079200px;}
.wse_c00200{word-spacing:0.102204px;}
.wsb_c00200{word-spacing:0.126252px;}
.ws28_c00200{word-spacing:0.311220px;}
.wsc_c00200{word-spacing:1.472940px;}
.ws12_c00200{word-spacing:1.828800px;}
.ws13_c00200{word-spacing:1.915200px;}
.ws11_c00200{word-spacing:1.951200px;}
.wsd_c00200{word-spacing:2.038068px;}
.wsf_c00200{word-spacing:2.152800px;}
.ws10_c00200{word-spacing:2.196000px;}
.ws2f_c00200{word-spacing:2.642976px;}
.ws2e_c00200{word-spacing:2.844072px;}
.ws30_c00200{word-spacing:2.853648px;}
.ws2d_c00200{word-spacing:2.915892px;}
.ws19_c00200{word-spacing:3.981600px;}
.ws18_c00200{word-spacing:3.996000px;}
.ws9_c00200{word-spacing:4.388760px;}
.wsa_c00200{word-spacing:4.400784px;}
.ws25_c00200{word-spacing:5.054400px;}
.ws2b_c00200{word-spacing:6.080760px;}
.ws2a_c00200{word-spacing:6.109488px;}
.ws2c_c00200{word-spacing:6.119064px;}
.ws15_c00200{word-spacing:6.141600px;}
.ws27_c00200{word-spacing:6.473376px;}
.ws26_c00200{word-spacing:6.482952px;}
.ws1a_c00200{word-spacing:11.520000px;}
.ws23_c00200{word-spacing:11.865600px;}
.ws8_c00200{word-spacing:12.282516px;}
.ws17_c00200{word-spacing:14.443200px;}
.ws16_c00200{word-spacing:14.551200px;}
.ws14_c00200{word-spacing:15.861600px;}
.ws24_c00200{word-spacing:16.200000px;}
.ws1e_c00200{word-spacing:16.905600px;}
.ws21_c00200{word-spacing:16.920000px;}
.ws1d_c00200{word-spacing:16.999200px;}
._0_c00200{margin-left:-1.322640px;}
._1_c00200{width:1.034064px;}
._3_c00200{width:3.214080px;}
._2_c00200{width:6.485724px;}
.fc0_c00200{color:rgb(0,0,0);}
.fs7_c00200{font-size:29.880000px;}
.fs3_c00200{font-size:38.880000px;}
.fs4_c00200{font-size:42.120000px;}
.fs6_c00200{font-size:47.880000px;}
.fs1_c00200{font-size:54.000000px;}
.fs0_c00200{font-size:60.120000px;}
.fs2_c00200{font-size:72.000000px;}
.fs5_c00200{font-size:78.120000px;}
.y0_c00200{bottom:0.000000px;}
.y3_c00200{bottom:57.450450px;}
.y26_c00200{bottom:113.704920px;}
.y25_c00200{bottom:132.066900px;}
.y24_c00200{bottom:150.333120px;}
.y23_c00200{bottom:168.599340px;}
.y22_c00200{bottom:182.460600px;}
.y21_c00200{bottom:196.232970px;}
.y20_c00200{bottom:214.499190px;}
.y1f_c00200{bottom:228.360450px;}
.y1e_c00200{bottom:243.570450px;}
.y1d_c00200{bottom:264.270450px;}
.y1c_c00200{bottom:284.970450px;}
.y1b_c00200{bottom:344.280450px;}
.y1a_c00200{bottom:378.660450px;}
.y19_c00200{bottom:413.130450px;}
.y18_c00200{bottom:456.510450px;}
.y17_c00200{bottom:499.980450px;}
.y16_c00200{bottom:534.360450px;}
.y15_c00200{bottom:577.830450px;}
.y14_c00200{bottom:612.210450px;}
.y13_c00200{bottom:655.680450px;}
.y12_c00200{bottom:690.060450px;}
.y11_c00200{bottom:735.150450px;}
.y10_c00200{bottom:788.790450px;}
.yf_c00200{bottom:823.260450px;}
.ye_c00200{bottom:857.640450px;}
.yd_c00200{bottom:892.110450px;}
.yc_c00200{bottom:926.490450px;}
.yb_c00200{bottom:960.960450px;}
.ya_c00200{bottom:995.340450px;}
.y9_c00200{bottom:1029.810450px;}
.y8_c00200{bottom:1067.232720px;}
.y7_c00200{bottom:1084.156500px;}
.y6_c00200{bottom:1109.993070px;}
.y5_c00200{bottom:1126.916850px;}
.y4_c00200{bottom:1143.750450px;}
.y2_c00200{bottom:1177.860450px;}
.y1_c00200{bottom:1196.850450px;}
.h9_c00200{height:47.988281px;}
.ha_c00200{height:49.937344px;}
.h1_c00200{height:50.315273px;}
.h4_c00200{height:50.386193px;}
.hb_c00200{height:55.283306px;}
.h2_c00200{height:56.320312px;}
.h5_c00200{height:60.257812px;}
.h6_c00200{height:65.131420px;}
.h3_c00200{height:72.160312px;}
.h8_c00200{height:75.093750px;}
.h7_c00200{height:81.476719px;}
.h0_c00200{height:1263.000000px;}
.w1_c00200{width:892.500000px;}
.w0_c00200{width:892.830000px;}
.x0_c00200{left:0.000000px;}
.x1_c00200{left:127.620000px;}
.x4_c00200{left:141.113250px;}
.x3_c00200{left:154.620000px;}
.x2_c00200{left:180.810000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.v1_c00200{vertical-align:14.080000pt;}
.v3_c00200{vertical-align:21.439467pt;}
.v2_c00200{vertical-align:26.560533pt;}
.ls17_c00200{letter-spacing:-0.134400pt;}
.ls19_c00200{letter-spacing:-0.133600pt;}
.ls21_c00200{letter-spacing:-0.055552pt;}
.ls18_c00200{letter-spacing:-0.032064pt;}
.ls22_c00200{letter-spacing:-0.025600pt;}
.ls1e_c00200{letter-spacing:-0.019200pt;}
.ls2a_c00200{letter-spacing:-0.017024pt;}
.ls29_c00200{letter-spacing:-0.013824pt;}
.ls23_c00200{letter-spacing:-0.012800pt;}
.ls1a_c00200{letter-spacing:-0.010688pt;}
.ls28_c00200{letter-spacing:-0.010368pt;}
.ls2c_c00200{letter-spacing:-0.008512pt;}
.ls20_c00200{letter-spacing:-0.006944pt;}
.ls1d_c00200{letter-spacing:-0.006400pt;}
.ls27_c00200{letter-spacing:-0.004256pt;}
.ls25_c00200{letter-spacing:-0.003456pt;}
.ls16_c00200{letter-spacing:0.000000pt;}
.ls3_c00200{letter-spacing:0.005344pt;}
.ls5_c00200{letter-spacing:0.006400pt;}
.lsc_c00200{letter-spacing:0.012768pt;}
.ls6_c00200{letter-spacing:0.012800pt;}
.ls12_c00200{letter-spacing:0.017024pt;}
.lse_c00200{letter-spacing:0.021280pt;}
.ls2_c00200{letter-spacing:0.021376pt;}
.ls10_c00200{letter-spacing:0.025536pt;}
.ls15_c00200{letter-spacing:0.029792pt;}
.ls14_c00200{letter-spacing:0.038304pt;}
.ls7_c00200{letter-spacing:0.038400pt;}
.ls0_c00200{letter-spacing:0.042752pt;}
.ls13_c00200{letter-spacing:0.046816pt;}
.ls4_c00200{letter-spacing:0.048096pt;}
.ls1f_c00200{letter-spacing:0.048672pt;}
.ls11_c00200{letter-spacing:0.051072pt;}
.lsf_c00200{letter-spacing:0.059584pt;}
.ls24_c00200{letter-spacing:0.083200pt;}
.lsd_c00200{letter-spacing:0.092480pt;}
.ls1b_c00200{letter-spacing:0.120960pt;}
.ls9_c00200{letter-spacing:0.128000pt;}
.ls1c_c00200{letter-spacing:0.149632pt;}
.ls2b_c00200{letter-spacing:0.225568pt;}
.ls26_c00200{letter-spacing:0.317952pt;}
.ls8_c00200{letter-spacing:10.485440pt;}
.lsa_c00200{letter-spacing:58.048000pt;}
.lsb_c00200{letter-spacing:58.688000pt;}
.ls1_c00200{letter-spacing:1077.440000pt;}
.ws2_c00200{word-spacing:-17.353056pt;}
.ws3_c00200{word-spacing:-9.925632pt;}
.ws4_c00200{word-spacing:-9.593856pt;}
.ws1_c00200{word-spacing:-9.408672pt;}
.ws0_c00200{word-spacing:-8.760960pt;}
.ws5_c00200{word-spacing:-7.383680pt;}
.ws1c_c00200{word-spacing:-0.027776pt;}
.ws32_c00200{word-spacing:-0.012768pt;}
.ws33_c00200{word-spacing:-0.008512pt;}
.ws1f_c00200{word-spacing:-0.006400pt;}
.ws7_c00200{word-spacing:0.000000pt;}
.ws1b_c00200{word-spacing:0.006400pt;}
.ws22_c00200{word-spacing:0.012800pt;}
.ws29_c00200{word-spacing:0.021280pt;}
.ws31_c00200{word-spacing:0.025536pt;}
.ws6_c00200{word-spacing:0.037408pt;}
.ws20_c00200{word-spacing:0.070400pt;}
.wse_c00200{word-spacing:0.090848pt;}
.wsb_c00200{word-spacing:0.112224pt;}
.ws28_c00200{word-spacing:0.276640pt;}
.wsc_c00200{word-spacing:1.309280pt;}
.ws12_c00200{word-spacing:1.625600pt;}
.ws13_c00200{word-spacing:1.702400pt;}
.ws11_c00200{word-spacing:1.734400pt;}
.wsd_c00200{word-spacing:1.811616pt;}
.wsf_c00200{word-spacing:1.913600pt;}
.ws10_c00200{word-spacing:1.952000pt;}
.ws2f_c00200{word-spacing:2.349312pt;}
.ws2e_c00200{word-spacing:2.528064pt;}
.ws30_c00200{word-spacing:2.536576pt;}
.ws2d_c00200{word-spacing:2.591904pt;}
.ws19_c00200{word-spacing:3.539200pt;}
.ws18_c00200{word-spacing:3.552000pt;}
.ws9_c00200{word-spacing:3.901120pt;}
.wsa_c00200{word-spacing:3.911808pt;}
.ws25_c00200{word-spacing:4.492800pt;}
.ws2b_c00200{word-spacing:5.405120pt;}
.ws2a_c00200{word-spacing:5.430656pt;}
.ws2c_c00200{word-spacing:5.439168pt;}
.ws15_c00200{word-spacing:5.459200pt;}
.ws27_c00200{word-spacing:5.754112pt;}
.ws26_c00200{word-spacing:5.762624pt;}
.ws1a_c00200{word-spacing:10.240000pt;}
.ws23_c00200{word-spacing:10.547200pt;}
.ws8_c00200{word-spacing:10.917792pt;}
.ws17_c00200{word-spacing:12.838400pt;}
.ws16_c00200{word-spacing:12.934400pt;}
.ws14_c00200{word-spacing:14.099200pt;}
.ws24_c00200{word-spacing:14.400000pt;}
.ws1e_c00200{word-spacing:15.027200pt;}
.ws21_c00200{word-spacing:15.040000pt;}
.ws1d_c00200{word-spacing:15.110400pt;}
._0_c00200{margin-left:-1.175680pt;}
._1_c00200{width:0.919168pt;}
._3_c00200{width:2.856960pt;}
._2_c00200{width:5.765088pt;}
.fs7_c00200{font-size:26.560000pt;}
.fs3_c00200{font-size:34.560000pt;}
.fs4_c00200{font-size:37.440000pt;}
.fs6_c00200{font-size:42.560000pt;}
.fs1_c00200{font-size:48.000000pt;}
.fs0_c00200{font-size:53.440000pt;}
.fs2_c00200{font-size:64.000000pt;}
.fs5_c00200{font-size:69.440000pt;}
.y0_c00200{bottom:0.000000pt;}
.y3_c00200{bottom:51.067067pt;}
.y26_c00200{bottom:101.071040pt;}
.y25_c00200{bottom:117.392800pt;}
.y24_c00200{bottom:133.629440pt;}
.y23_c00200{bottom:149.866080pt;}
.y22_c00200{bottom:162.187200pt;}
.y21_c00200{bottom:174.429307pt;}
.y20_c00200{bottom:190.665947pt;}
.y1f_c00200{bottom:202.987067pt;}
.y1e_c00200{bottom:216.507067pt;}
.y1d_c00200{bottom:234.907067pt;}
.y1c_c00200{bottom:253.307067pt;}
.y1b_c00200{bottom:306.027067pt;}
.y1a_c00200{bottom:336.587067pt;}
.y19_c00200{bottom:367.227067pt;}
.y18_c00200{bottom:405.787067pt;}
.y17_c00200{bottom:444.427067pt;}
.y16_c00200{bottom:474.987067pt;}
.y15_c00200{bottom:513.627067pt;}
.y14_c00200{bottom:544.187067pt;}
.y13_c00200{bottom:582.827067pt;}
.y12_c00200{bottom:613.387067pt;}
.y11_c00200{bottom:653.467067pt;}
.y10_c00200{bottom:701.147067pt;}
.yf_c00200{bottom:731.787067pt;}
.ye_c00200{bottom:762.347067pt;}
.yd_c00200{bottom:792.987067pt;}
.yc_c00200{bottom:823.547067pt;}
.yb_c00200{bottom:854.187067pt;}
.ya_c00200{bottom:884.747067pt;}
.y9_c00200{bottom:915.387067pt;}
.y8_c00200{bottom:948.651307pt;}
.y7_c00200{bottom:963.694667pt;}
.y6_c00200{bottom:986.660507pt;}
.y5_c00200{bottom:1001.703867pt;}
.y4_c00200{bottom:1016.667067pt;}
.y2_c00200{bottom:1046.987067pt;}
.y1_c00200{bottom:1063.867067pt;}
.h9_c00200{height:42.656250pt;}
.ha_c00200{height:44.388750pt;}
.h1_c00200{height:44.724687pt;}
.h4_c00200{height:44.787728pt;}
.hb_c00200{height:49.140717pt;}
.h2_c00200{height:50.062500pt;}
.h5_c00200{height:53.562500pt;}
.h6_c00200{height:57.894596pt;}
.h3_c00200{height:64.142500pt;}
.h8_c00200{height:66.750000pt;}
.h7_c00200{height:72.423750pt;}
.h0_c00200{height:1122.666667pt;}
.w1_c00200{width:793.333333pt;}
.w0_c00200{width:793.626667pt;}
.x0_c00200{left:0.000000pt;}
.x1_c00200{left:113.440000pt;}
.x4_c00200{left:125.434000pt;}
.x3_c00200{left:137.440000pt;}
.x2_c00200{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_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_55fdbb81d6ac59e716981142.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00201;src:url('chunks/assets/font_c0282173419d86f3a735f3cc.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00201;src:url('chunks/assets/font_11de84d15d29ef35aded416d.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00201;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00201{font-family:ff5_c00201;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_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);}
.v4_c00201{vertical-align:-15.120000px;}
.v0_c00201{vertical-align:0.000000px;}
.v3_c00201{vertical-align:15.120000px;}
.v1_c00201{vertical-align:29.880000px;}
.v2_c00201{vertical-align:33.486840px;}
.lsb_c00201{letter-spacing:-0.151200px;}
.ls17_c00201{letter-spacing:-0.054684px;}
.ls13_c00201{letter-spacing:-0.050400px;}
.ls14_c00201{letter-spacing:-0.043200px;}
.ls18_c00201{letter-spacing:-0.039060px;}
.ls10_c00201{letter-spacing:-0.036072px;}
.ls16_c00201{letter-spacing:-0.028800px;}
.ls15_c00201{letter-spacing:-0.021600px;}
.lsf_c00201{letter-spacing:-0.018036px;}
.lse_c00201{letter-spacing:-0.014400px;}
.ls12_c00201{letter-spacing:-0.007200px;}
.lsa_c00201{letter-spacing:0.000000px;}
.ls3_c00201{letter-spacing:0.007200px;}
.ls5_c00201{letter-spacing:0.014400px;}
.ls2_c00201{letter-spacing:0.018036px;}
.ls4_c00201{letter-spacing:0.021600px;}
.ls9_c00201{letter-spacing:0.023940px;}
.ls8_c00201{letter-spacing:0.033516px;}
.ls0_c00201{letter-spacing:0.036072px;}
.ls6_c00201{letter-spacing:0.043200px;}
.ls1_c00201{letter-spacing:0.048096px;}
.lsc_c00201{letter-spacing:0.054756px;}
.lsd_c00201{letter-spacing:0.093600px;}
.ls11_c00201{letter-spacing:0.136080px;}
.ls7_c00201{letter-spacing:34.450920px;}
.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;}
}
.ws3_c00201{word-spacing:-19.530000px;}
.ws1_c00201{word-spacing:-15.030000px;}
.ws0_c00201{word-spacing:-10.584756px;}
.ws2_c00201{word-spacing:-9.856080px;}
.ws4_c00201{word-spacing:-0.306612px;}
.wsb_c00201{word-spacing:-0.234468px;}
.ws24_c00201{word-spacing:-0.234360px;}
.ws23_c00201{word-spacing:-0.124992px;}
.ws29_c00201{word-spacing:-0.014364px;}
.ws2a_c00201{word-spacing:-0.009576px;}
.ws8_c00201{word-spacing:-0.007200px;}
.ws2b_c00201{word-spacing:-0.004788px;}
.ws5_c00201{word-spacing:0.000000px;}
.ws9_c00201{word-spacing:0.014400px;}
.wsc_c00201{word-spacing:0.042084px;}
.ws18_c00201{word-spacing:0.057600px;}
.ws22_c00201{word-spacing:0.064800px;}
.wse_c00201{word-spacing:0.072144px;}
.wsd_c00201{word-spacing:0.090180px;}
.wsa_c00201{word-spacing:0.108216px;}
.ws12_c00201{word-spacing:1.087200px;}
.ws6_c00201{word-spacing:1.404000px;}
.ws7_c00201{word-spacing:1.440000px;}
.ws1e_c00201{word-spacing:6.120000px;}
.ws13_c00201{word-spacing:6.134400px;}
.ws1f_c00201{word-spacing:6.148800px;}
.ws14_c00201{word-spacing:6.163200px;}
.ws1d_c00201{word-spacing:6.177600px;}
.ws16_c00201{word-spacing:7.113600px;}
.ws15_c00201{word-spacing:7.178400px;}
.ws17_c00201{word-spacing:7.250400px;}
.ws10_c00201{word-spacing:7.934400px;}
.ws11_c00201{word-spacing:7.970400px;}
.wsf_c00201{word-spacing:8.287200px;}
.ws27_c00201{word-spacing:9.050400px;}
.ws28_c00201{word-spacing:9.057600px;}
.ws1c_c00201{word-spacing:9.295200px;}
.ws1b_c00201{word-spacing:9.302400px;}
.ws21_c00201{word-spacing:9.720000px;}
.ws20_c00201{word-spacing:9.727200px;}
.ws19_c00201{word-spacing:10.512000px;}
.ws1a_c00201{word-spacing:10.540800px;}
.ws25_c00201{word-spacing:13.672800px;}
.ws26_c00201{word-spacing:13.694400px;}
._0_c00201{margin-left:-1.022040px;}
._7_c00201{width:1.123200px;}
._1_c00201{width:147.312000px;}
._4_c00201{width:228.215520px;}
._2_c00201{width:348.120000px;}
._6_c00201{width:393.274980px;}
._5_c00201{width:394.904232px;}
._3_c00201{width:499.302612px;}
.fc0_c00201{color:rgb(0,0,0);}
.fs4_c00201{font-size:38.880000px;}
.fs3_c00201{font-size:42.120000px;}
.fs6_c00201{font-size:47.880000px;}
.fs2_c00201{font-size:54.000000px;}
.fs0_c00201{font-size:60.120000px;}
.fs1_c00201{font-size:72.000000px;}
.fs5_c00201{font-size:78.120000px;}
.y0_c00201{bottom:0.000000px;}
.y3_c00201{bottom:57.450450px;}
.y4_c00201{bottom:61.410450px;}
.y25_c00201{bottom:113.711610px;}
.y24_c00201{bottom:132.073590px;}
.y23_c00201{bottom:150.339810px;}
.y22_c00201{bottom:168.606030px;}
.y21_c00201{bottom:186.968010px;}
.y20_c00201{bottom:205.234230px;}
.y1f_c00201{bottom:223.500450px;}
.y1e_c00201{bottom:238.710450px;}
.y1d_c00201{bottom:259.410450px;}
.y1c_c00201{bottom:280.110450px;}
.y1b_c00201{bottom:322.320450px;}
.y1a_c00201{bottom:356.700450px;}
.y19_c00201{bottom:401.790600px;}
.y18_c00201{bottom:455.430450px;}
.y17_c00201{bottom:489.900450px;}
.y16_c00201{bottom:524.280450px;}
.y15_c00201{bottom:558.750450px;}
.y14_c00201{bottom:593.130450px;}
.y13_c00201{bottom:636.600450px;}
.y12_c00201{bottom:670.980450px;}
.y11_c00201{bottom:705.450450px;}
.y10_c00201{bottom:739.830450px;}
.yf_c00201{bottom:783.300600px;}
.ye_c00201{bottom:817.680450px;}
.yd_c00201{bottom:852.150450px;}
.yc_c00201{bottom:889.590450px;}
.yb_c00201{bottom:916.228380px;}
.ya_c00201{bottom:924.780450px;}
.y9_c00201{bottom:959.700450px;}
.y8_c00201{bottom:1001.190450px;}
.y7_c00201{bottom:1054.290450px;}
.y6_c00201{bottom:1088.760450px;}
.y5_c00201{bottom:1141.140450px;}
.y2_c00201{bottom:1173.810450px;}
.y1_c00201{bottom:1196.850450px;}
.h2_c00201{height:47.988281px;}
.hb_c00201{height:49.937344px;}
.h1_c00201{height:50.315273px;}
.h8_c00201{height:50.373984px;}
.h3_c00201{height:56.320312px;}
.h5_c00201{height:60.257812px;}
.h6_c00201{height:60.328125px;}
.h9_c00201{height:65.130220px;}
.h4_c00201{height:65.130820px;}
.ha_c00201{height:81.476719px;}
.h7_c00201{height:83.802113px;}
.h0_c00201{height:1263.000000px;}
.w1_c00201{width:892.500000px;}
.w0_c00201{width:892.830000px;}
.x0_c00201{left:0.000000px;}
.x2_c00201{left:127.620000px;}
.x6_c00201{left:154.620000px;}
.x8_c00201{left:171.990000px;}
.x5_c00201{left:180.810000px;}
.x7_c00201{left:183.510000px;}
.xa_c00201{left:285.210000px;}
.x4_c00201{left:435.240000px;}
.x3_c00201{left:446.490000px;}
.x1_c00201{left:490.770000px;}
.x9_c00201{left:536.482530px;}
@media print{
.v4_c00201{vertical-align:-13.440000pt;}
.v0_c00201{vertical-align:0.000000pt;}
.v3_c00201{vertical-align:13.440000pt;}
.v1_c00201{vertical-align:26.560000pt;}
.v2_c00201{vertical-align:29.766080pt;}
.lsb_c00201{letter-spacing:-0.134400pt;}
.ls17_c00201{letter-spacing:-0.048608pt;}
.ls13_c00201{letter-spacing:-0.044800pt;}
.ls14_c00201{letter-spacing:-0.038400pt;}
.ls18_c00201{letter-spacing:-0.034720pt;}
.ls10_c00201{letter-spacing:-0.032064pt;}
.ls16_c00201{letter-spacing:-0.025600pt;}
.ls15_c00201{letter-spacing:-0.019200pt;}
.lsf_c00201{letter-spacing:-0.016032pt;}
.lse_c00201{letter-spacing:-0.012800pt;}
.ls12_c00201{letter-spacing:-0.006400pt;}
.lsa_c00201{letter-spacing:0.000000pt;}
.ls3_c00201{letter-spacing:0.006400pt;}
.ls5_c00201{letter-spacing:0.012800pt;}
.ls2_c00201{letter-spacing:0.016032pt;}
.ls4_c00201{letter-spacing:0.019200pt;}
.ls9_c00201{letter-spacing:0.021280pt;}
.ls8_c00201{letter-spacing:0.029792pt;}
.ls0_c00201{letter-spacing:0.032064pt;}
.ls6_c00201{letter-spacing:0.038400pt;}
.ls1_c00201{letter-spacing:0.042752pt;}
.lsc_c00201{letter-spacing:0.048672pt;}
.lsd_c00201{letter-spacing:0.083200pt;}
.ls11_c00201{letter-spacing:0.120960pt;}
.ls7_c00201{letter-spacing:30.623040pt;}
.ws3_c00201{word-spacing:-17.360000pt;}
.ws1_c00201{word-spacing:-13.360000pt;}
.ws0_c00201{word-spacing:-9.408672pt;}
.ws2_c00201{word-spacing:-8.760960pt;}
.ws4_c00201{word-spacing:-0.272544pt;}
.wsb_c00201{word-spacing:-0.208416pt;}
.ws24_c00201{word-spacing:-0.208320pt;}
.ws23_c00201{word-spacing:-0.111104pt;}
.ws29_c00201{word-spacing:-0.012768pt;}
.ws2a_c00201{word-spacing:-0.008512pt;}
.ws8_c00201{word-spacing:-0.006400pt;}
.ws2b_c00201{word-spacing:-0.004256pt;}
.ws5_c00201{word-spacing:0.000000pt;}
.ws9_c00201{word-spacing:0.012800pt;}
.wsc_c00201{word-spacing:0.037408pt;}
.ws18_c00201{word-spacing:0.051200pt;}
.ws22_c00201{word-spacing:0.057600pt;}
.wse_c00201{word-spacing:0.064128pt;}
.wsd_c00201{word-spacing:0.080160pt;}
.wsa_c00201{word-spacing:0.096192pt;}
.ws12_c00201{word-spacing:0.966400pt;}
.ws6_c00201{word-spacing:1.248000pt;}
.ws7_c00201{word-spacing:1.280000pt;}
.ws1e_c00201{word-spacing:5.440000pt;}
.ws13_c00201{word-spacing:5.452800pt;}
.ws1f_c00201{word-spacing:5.465600pt;}
.ws14_c00201{word-spacing:5.478400pt;}
.ws1d_c00201{word-spacing:5.491200pt;}
.ws16_c00201{word-spacing:6.323200pt;}
.ws15_c00201{word-spacing:6.380800pt;}
.ws17_c00201{word-spacing:6.444800pt;}
.ws10_c00201{word-spacing:7.052800pt;}
.ws11_c00201{word-spacing:7.084800pt;}
.wsf_c00201{word-spacing:7.366400pt;}
.ws27_c00201{word-spacing:8.044800pt;}
.ws28_c00201{word-spacing:8.051200pt;}
.ws1c_c00201{word-spacing:8.262400pt;}
.ws1b_c00201{word-spacing:8.268800pt;}
.ws21_c00201{word-spacing:8.640000pt;}
.ws20_c00201{word-spacing:8.646400pt;}
.ws19_c00201{word-spacing:9.344000pt;}
.ws1a_c00201{word-spacing:9.369600pt;}
.ws25_c00201{word-spacing:12.153600pt;}
.ws26_c00201{word-spacing:12.172800pt;}
._0_c00201{margin-left:-0.908480pt;}
._7_c00201{width:0.998400pt;}
._1_c00201{width:130.944000pt;}
._4_c00201{width:202.858240pt;}
._2_c00201{width:309.440000pt;}
._6_c00201{width:349.577760pt;}
._5_c00201{width:351.025984pt;}
._3_c00201{width:443.824544pt;}
.fs4_c00201{font-size:34.560000pt;}
.fs3_c00201{font-size:37.440000pt;}
.fs6_c00201{font-size:42.560000pt;}
.fs2_c00201{font-size:48.000000pt;}
.fs0_c00201{font-size:53.440000pt;}
.fs1_c00201{font-size:64.000000pt;}
.fs5_c00201{font-size:69.440000pt;}
.y0_c00201{bottom:0.000000pt;}
.y3_c00201{bottom:51.067067pt;}
.y4_c00201{bottom:54.587067pt;}
.y25_c00201{bottom:101.076987pt;}
.y24_c00201{bottom:117.398747pt;}
.y23_c00201{bottom:133.635387pt;}
.y22_c00201{bottom:149.872027pt;}
.y21_c00201{bottom:166.193787pt;}
.y20_c00201{bottom:182.430427pt;}
.y1f_c00201{bottom:198.667067pt;}
.y1e_c00201{bottom:212.187067pt;}
.y1d_c00201{bottom:230.587067pt;}
.y1c_c00201{bottom:248.987067pt;}
.y1b_c00201{bottom:286.507067pt;}
.y1a_c00201{bottom:317.067067pt;}
.y19_c00201{bottom:357.147200pt;}
.y18_c00201{bottom:404.827067pt;}
.y17_c00201{bottom:435.467067pt;}
.y16_c00201{bottom:466.027067pt;}
.y15_c00201{bottom:496.667067pt;}
.y14_c00201{bottom:527.227067pt;}
.y13_c00201{bottom:565.867067pt;}
.y12_c00201{bottom:596.427067pt;}
.y11_c00201{bottom:627.067067pt;}
.y10_c00201{bottom:657.627067pt;}
.yf_c00201{bottom:696.267200pt;}
.ye_c00201{bottom:726.827067pt;}
.yd_c00201{bottom:757.467067pt;}
.yc_c00201{bottom:790.747067pt;}
.yb_c00201{bottom:814.425227pt;}
.ya_c00201{bottom:822.027067pt;}
.y9_c00201{bottom:853.067067pt;}
.y8_c00201{bottom:889.947067pt;}
.y7_c00201{bottom:937.147067pt;}
.y6_c00201{bottom:967.787067pt;}
.y5_c00201{bottom:1014.347067pt;}
.y2_c00201{bottom:1043.387067pt;}
.y1_c00201{bottom:1063.867067pt;}
.h2_c00201{height:42.656250pt;}
.hb_c00201{height:44.388750pt;}
.h1_c00201{height:44.724687pt;}
.h8_c00201{height:44.776875pt;}
.h3_c00201{height:50.062500pt;}
.h5_c00201{height:53.562500pt;}
.h6_c00201{height:53.625000pt;}
.h9_c00201{height:57.893529pt;}
.h4_c00201{height:57.894063pt;}
.ha_c00201{height:72.423750pt;}
.h7_c00201{height:74.490768pt;}
.h0_c00201{height:1122.666667pt;}
.w1_c00201{width:793.333333pt;}
.w0_c00201{width:793.626667pt;}
.x0_c00201{left:0.000000pt;}
.x2_c00201{left:113.440000pt;}
.x6_c00201{left:137.440000pt;}
.x8_c00201{left:152.880000pt;}
.x5_c00201{left:160.720000pt;}
.x7_c00201{left:163.120000pt;}
.xa_c00201{left:253.520000pt;}
.x4_c00201{left:386.880000pt;}
.x3_c00201{left:396.880000pt;}
.x1_c00201{left:436.240000pt;}
.x9_c00201{left:476.873360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a46a122027979b9f3a0aa4e0.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.100098;font-style:normal;font-weight:normal;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_e40b4fcdc08af3c100c1cc34.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;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_c00202;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00202;src:url('chunks/assets/font_22cfbce1f1b17e1ba8daa299.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;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_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:15.840000px;}
.v3_c00202{vertical-align:24.119400px;}
.v2_c00202{vertical-align:29.880000px;}
.lsb_c00202{letter-spacing:-0.151200px;}
.ls15_c00202{letter-spacing:-0.047880px;}
.ls10_c00202{letter-spacing:-0.036000px;}
.lsd_c00202{letter-spacing:-0.021600px;}
.ls16_c00202{letter-spacing:-0.019440px;}
.lse_c00202{letter-spacing:-0.014400px;}
.ls14_c00202{letter-spacing:-0.014364px;}
.ls13_c00202{letter-spacing:-0.011664px;}
.lsc_c00202{letter-spacing:-0.007200px;}
.lsa_c00202{letter-spacing:0.000000px;}
.ls3_c00202{letter-spacing:0.007200px;}
.ls17_c00202{letter-spacing:0.009576px;}
.ls6_c00202{letter-spacing:0.014364px;}
.ls4_c00202{letter-spacing:0.014400px;}
.ls2_c00202{letter-spacing:0.021600px;}
.ls5_c00202{letter-spacing:0.028800px;}
.ls9_c00202{letter-spacing:0.038304px;}
.ls12_c00202{letter-spacing:0.043200px;}
.ls0_c00202{letter-spacing:0.048096px;}
.ls8_c00202{letter-spacing:0.052668px;}
.lsf_c00202{letter-spacing:0.054756px;}
.ls11_c00202{letter-spacing:0.093600px;}
.ls7_c00202{letter-spacing:0.104040px;}
.ls1_c00202{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00202{word-spacing:-10.796976px;}
.ws3_c00202{word-spacing:-10.789200px;}
.ws0_c00202{word-spacing:-10.584756px;}
.ws2_c00202{word-spacing:-8.306640px;}
.ws1a_c00202{word-spacing:-0.093600px;}
.ws33_c00202{word-spacing:-0.019152px;}
.ws14_c00202{word-spacing:-0.014400px;}
.ws5_c00202{word-spacing:0.000000px;}
.ws31_c00202{word-spacing:0.004788px;}
.ws9_c00202{word-spacing:0.007200px;}
.ws32_c00202{word-spacing:0.009576px;}
.ws23_c00202{word-spacing:0.014400px;}
.ws4_c00202{word-spacing:0.042084px;}
.ws8_c00202{word-spacing:0.043200px;}
.ws12_c00202{word-spacing:0.374400px;}
.ws13_c00202{word-spacing:0.396000px;}
.wsb_c00202{word-spacing:1.058400px;}
.wsa_c00202{word-spacing:1.231200px;}
.ws2b_c00202{word-spacing:1.800000px;}
.ws1e_c00202{word-spacing:1.807200px;}
.ws11_c00202{word-spacing:1.814400px;}
.ws1f_c00202{word-spacing:1.821600px;}
.ws2c_c00202{word-spacing:1.850400px;}
.ws10_c00202{word-spacing:1.872000px;}
.ws26_c00202{word-spacing:4.003200px;}
.wsf_c00202{word-spacing:4.312800px;}
.wse_c00202{word-spacing:4.334400px;}
.ws19_c00202{word-spacing:4.672800px;}
.ws1c_c00202{word-spacing:7.200000px;}
.ws1d_c00202{word-spacing:7.207200px;}
.ws2f_c00202{word-spacing:7.526736px;}
.ws2d_c00202{word-spacing:7.565040px;}
.ws2e_c00202{word-spacing:7.598556px;}
.ws30_c00202{word-spacing:7.627284px;}
.ws18_c00202{word-spacing:12.261600px;}
.ws15_c00202{word-spacing:12.938400px;}
.ws16_c00202{word-spacing:12.952800px;}
.ws29_c00202{word-spacing:14.407200px;}
.ws2a_c00202{word-spacing:14.414400px;}
.ws22_c00202{word-spacing:15.436800px;}
.ws21_c00202{word-spacing:15.451200px;}
.wsc_c00202{word-spacing:15.472800px;}
.wsd_c00202{word-spacing:15.516000px;}
.ws20_c00202{word-spacing:15.552000px;}
.ws24_c00202{word-spacing:15.760800px;}
.ws25_c00202{word-spacing:15.832800px;}
.ws17_c00202{word-spacing:17.280000px;}
.ws1b_c00202{word-spacing:17.330400px;}
.ws6_c00202{word-spacing:22.327200px;}
.ws7_c00202{word-spacing:22.341600px;}
.ws27_c00202{word-spacing:24.408000px;}
.ws28_c00202{word-spacing:24.487200px;}
._0_c00202{margin-left:-1.322640px;}
._1_c00202{width:1.288800px;}
._2_c00202{width:7.884756px;}
.fc0_c00202{color:rgb(0,0,0);}
.fs6_c00202{font-size:29.880000px;}
.fs5_c00202{font-size:38.880000px;}
.fs3_c00202{font-size:42.120000px;}
.fs4_c00202{font-size:47.880000px;}
.fs1_c00202{font-size:54.000000px;}
.fs0_c00202{font-size:60.120000px;}
.fs2_c00202{font-size:72.000000px;}
.y0_c00202{bottom:0.000000px;}
.y3_c00202{bottom:57.450450px;}
.y24_c00202{bottom:113.698470px;}
.y23_c00202{bottom:132.064230px;}
.y22_c00202{bottom:150.333120px;}
.y21_c00202{bottom:168.599340px;}
.y20_c00202{bottom:182.460600px;}
.y1f_c00202{bottom:197.670450px;}
.y1e_c00202{bottom:218.370450px;}
.y1d_c00202{bottom:239.070600px;}
.y1c_c00202{bottom:269.940600px;}
.y1b_c00202{bottom:304.410600px;}
.y1a_c00202{bottom:347.790450px;}
.y19_c00202{bottom:382.260450px;}
.y18_c00202{bottom:416.640450px;}
.y17_c00202{bottom:451.110450px;}
.y16_c00202{bottom:485.490450px;}
.y15_c00202{bottom:528.960450px;}
.y14_c00202{bottom:563.340450px;}
.y13_c00202{bottom:597.810450px;}
.y12_c00202{bottom:632.190450px;}
.y11_c00202{bottom:666.660450px;}
.y10_c00202{bottom:710.040450px;}
.yf_c00202{bottom:744.510450px;}
.ye_c00202{bottom:778.890450px;}
.yd_c00202{bottom:813.360450px;}
.yc_c00202{bottom:847.740450px;}
.yb_c00202{bottom:891.210450px;}
.ya_c00202{bottom:925.590450px;}
.y9_c00202{bottom:960.060450px;}
.y8_c00202{bottom:994.440450px;}
.y7_c00202{bottom:1028.910450px;}
.y6_c00202{bottom:1063.290450px;}
.y5_c00202{bottom:1106.760450px;}
.y4_c00202{bottom:1141.140450px;}
.y2_c00202{bottom:1177.860450px;}
.y1_c00202{bottom:1196.850450px;}
.h6_c00202{height:47.988281px;}
.h8_c00202{height:49.937344px;}
.h9_c00202{height:49.945264px;}
.h1_c00202{height:50.315273px;}
.h7_c00202{height:55.283306px;}
.h2_c00202{height:56.320312px;}
.h4_c00202{height:60.257812px;}
.h5_c00202{height:65.130820px;}
.h3_c00202{height:72.160312px;}
.h0_c00202{height:1263.000000px;}
.w1_c00202{width:892.500000px;}
.w0_c00202{width:892.830000px;}
.x0_c00202{left:0.000000px;}
.x1_c00202{left:127.620000px;}
.x3_c00202{left:141.116400px;}
.x2_c00202{left:180.720000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.v1_c00202{vertical-align:14.080000pt;}
.v3_c00202{vertical-align:21.439467pt;}
.v2_c00202{vertical-align:26.560000pt;}
.lsb_c00202{letter-spacing:-0.134400pt;}
.ls15_c00202{letter-spacing:-0.042560pt;}
.ls10_c00202{letter-spacing:-0.032000pt;}
.lsd_c00202{letter-spacing:-0.019200pt;}
.ls16_c00202{letter-spacing:-0.017280pt;}
.lse_c00202{letter-spacing:-0.012800pt;}
.ls14_c00202{letter-spacing:-0.012768pt;}
.ls13_c00202{letter-spacing:-0.010368pt;}
.lsc_c00202{letter-spacing:-0.006400pt;}
.lsa_c00202{letter-spacing:0.000000pt;}
.ls3_c00202{letter-spacing:0.006400pt;}
.ls17_c00202{letter-spacing:0.008512pt;}
.ls6_c00202{letter-spacing:0.012768pt;}
.ls4_c00202{letter-spacing:0.012800pt;}
.ls2_c00202{letter-spacing:0.019200pt;}
.ls5_c00202{letter-spacing:0.025600pt;}
.ls9_c00202{letter-spacing:0.034048pt;}
.ls12_c00202{letter-spacing:0.038400pt;}
.ls0_c00202{letter-spacing:0.042752pt;}
.ls8_c00202{letter-spacing:0.046816pt;}
.lsf_c00202{letter-spacing:0.048672pt;}
.ls11_c00202{letter-spacing:0.083200pt;}
.ls7_c00202{letter-spacing:0.092480pt;}
.ls1_c00202{letter-spacing:1077.440000pt;}
.ws1_c00202{word-spacing:-9.597312pt;}
.ws3_c00202{word-spacing:-9.590400pt;}
.ws0_c00202{word-spacing:-9.408672pt;}
.ws2_c00202{word-spacing:-7.383680pt;}
.ws1a_c00202{word-spacing:-0.083200pt;}
.ws33_c00202{word-spacing:-0.017024pt;}
.ws14_c00202{word-spacing:-0.012800pt;}
.ws5_c00202{word-spacing:0.000000pt;}
.ws31_c00202{word-spacing:0.004256pt;}
.ws9_c00202{word-spacing:0.006400pt;}
.ws32_c00202{word-spacing:0.008512pt;}
.ws23_c00202{word-spacing:0.012800pt;}
.ws4_c00202{word-spacing:0.037408pt;}
.ws8_c00202{word-spacing:0.038400pt;}
.ws12_c00202{word-spacing:0.332800pt;}
.ws13_c00202{word-spacing:0.352000pt;}
.wsb_c00202{word-spacing:0.940800pt;}
.wsa_c00202{word-spacing:1.094400pt;}
.ws2b_c00202{word-spacing:1.600000pt;}
.ws1e_c00202{word-spacing:1.606400pt;}
.ws11_c00202{word-spacing:1.612800pt;}
.ws1f_c00202{word-spacing:1.619200pt;}
.ws2c_c00202{word-spacing:1.644800pt;}
.ws10_c00202{word-spacing:1.664000pt;}
.ws26_c00202{word-spacing:3.558400pt;}
.wsf_c00202{word-spacing:3.833600pt;}
.wse_c00202{word-spacing:3.852800pt;}
.ws19_c00202{word-spacing:4.153600pt;}
.ws1c_c00202{word-spacing:6.400000pt;}
.ws1d_c00202{word-spacing:6.406400pt;}
.ws2f_c00202{word-spacing:6.690432pt;}
.ws2d_c00202{word-spacing:6.724480pt;}
.ws2e_c00202{word-spacing:6.754272pt;}
.ws30_c00202{word-spacing:6.779808pt;}
.ws18_c00202{word-spacing:10.899200pt;}
.ws15_c00202{word-spacing:11.500800pt;}
.ws16_c00202{word-spacing:11.513600pt;}
.ws29_c00202{word-spacing:12.806400pt;}
.ws2a_c00202{word-spacing:12.812800pt;}
.ws22_c00202{word-spacing:13.721600pt;}
.ws21_c00202{word-spacing:13.734400pt;}
.wsc_c00202{word-spacing:13.753600pt;}
.wsd_c00202{word-spacing:13.792000pt;}
.ws20_c00202{word-spacing:13.824000pt;}
.ws24_c00202{word-spacing:14.009600pt;}
.ws25_c00202{word-spacing:14.073600pt;}
.ws17_c00202{word-spacing:15.360000pt;}
.ws1b_c00202{word-spacing:15.404800pt;}
.ws6_c00202{word-spacing:19.846400pt;}
.ws7_c00202{word-spacing:19.859200pt;}
.ws27_c00202{word-spacing:21.696000pt;}
.ws28_c00202{word-spacing:21.766400pt;}
._0_c00202{margin-left:-1.175680pt;}
._1_c00202{width:1.145600pt;}
._2_c00202{width:7.008672pt;}
.fs6_c00202{font-size:26.560000pt;}
.fs5_c00202{font-size:34.560000pt;}
.fs3_c00202{font-size:37.440000pt;}
.fs4_c00202{font-size:42.560000pt;}
.fs1_c00202{font-size:48.000000pt;}
.fs0_c00202{font-size:53.440000pt;}
.fs2_c00202{font-size:64.000000pt;}
.y0_c00202{bottom:0.000000pt;}
.y3_c00202{bottom:51.067067pt;}
.y24_c00202{bottom:101.065307pt;}
.y23_c00202{bottom:117.390427pt;}
.y22_c00202{bottom:133.629440pt;}
.y21_c00202{bottom:149.866080pt;}
.y20_c00202{bottom:162.187200pt;}
.y1f_c00202{bottom:175.707067pt;}
.y1e_c00202{bottom:194.107067pt;}
.y1d_c00202{bottom:212.507200pt;}
.y1c_c00202{bottom:239.947200pt;}
.y1b_c00202{bottom:270.587200pt;}
.y1a_c00202{bottom:309.147067pt;}
.y19_c00202{bottom:339.787067pt;}
.y18_c00202{bottom:370.347067pt;}
.y17_c00202{bottom:400.987067pt;}
.y16_c00202{bottom:431.547067pt;}
.y15_c00202{bottom:470.187067pt;}
.y14_c00202{bottom:500.747067pt;}
.y13_c00202{bottom:531.387067pt;}
.y12_c00202{bottom:561.947067pt;}
.y11_c00202{bottom:592.587067pt;}
.y10_c00202{bottom:631.147067pt;}
.yf_c00202{bottom:661.787067pt;}
.ye_c00202{bottom:692.347067pt;}
.yd_c00202{bottom:722.987067pt;}
.yc_c00202{bottom:753.547067pt;}
.yb_c00202{bottom:792.187067pt;}
.ya_c00202{bottom:822.747067pt;}
.y9_c00202{bottom:853.387067pt;}
.y8_c00202{bottom:883.947067pt;}
.y7_c00202{bottom:914.587067pt;}
.y6_c00202{bottom:945.147067pt;}
.y5_c00202{bottom:983.787067pt;}
.y4_c00202{bottom:1014.347067pt;}
.y2_c00202{bottom:1046.987067pt;}
.y1_c00202{bottom:1063.867067pt;}
.h6_c00202{height:42.656250pt;}
.h8_c00202{height:44.388750pt;}
.h9_c00202{height:44.395790pt;}
.h1_c00202{height:44.724687pt;}
.h7_c00202{height:49.140717pt;}
.h2_c00202{height:50.062500pt;}
.h4_c00202{height:53.562500pt;}
.h5_c00202{height:57.894063pt;}
.h3_c00202{height:64.142500pt;}
.h0_c00202{height:1122.666667pt;}
.w1_c00202{width:793.333333pt;}
.w0_c00202{width:793.626667pt;}
.x0_c00202{left:0.000000pt;}
.x1_c00202{left:113.440000pt;}
.x3_c00202{left:125.436800pt;}
.x2_c00202{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_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_86fc7d73bd1adddff260eade.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00203;src:url('chunks/assets/font_8c967ee8bd987f220cfb510b.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00203;src:url('chunks/assets/font_d3b0996014e07fd1233074f7.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00203;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00203{font-family:ff5_c00203;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_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00203{vertical-align:-29.880000px;}
.v0_c00203{vertical-align:0.000000px;}
.v1_c00203{vertical-align:29.880000px;}
.lsc_c00203{letter-spacing:-0.151200px;}
.ls16_c00203{letter-spacing:-0.031248px;}
.ls12_c00203{letter-spacing:-0.028800px;}
.ls10_c00203{letter-spacing:-0.021600px;}
.lsf_c00203{letter-spacing:-0.014400px;}
.lsd_c00203{letter-spacing:-0.007200px;}
.lsb_c00203{letter-spacing:0.000000px;}
.ls5_c00203{letter-spacing:0.007200px;}
.ls1_c00203{letter-spacing:0.014400px;}
.ls15_c00203{letter-spacing:0.021600px;}
.lsa_c00203{letter-spacing:0.023940px;}
.ls8_c00203{letter-spacing:0.028728px;}
.ls2_c00203{letter-spacing:0.028800px;}
.ls0_c00203{letter-spacing:0.036072px;}
.ls9_c00203{letter-spacing:0.038304px;}
.ls13_c00203{letter-spacing:0.043200px;}
.lse_c00203{letter-spacing:0.054756px;}
.ls3_c00203{letter-spacing:0.072000px;}
.ls14_c00203{letter-spacing:0.090180px;}
.ls11_c00203{letter-spacing:0.093600px;}
.ls6_c00203{letter-spacing:0.144000px;}
.ls4_c00203{letter-spacing:17.498880px;}
.ls7_c00203{letter-spacing:66.024000px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00203{word-spacing:-19.498752px;}
.ws0_c00203{word-spacing:-10.584756px;}
.ws2_c00203{word-spacing:-0.306612px;}
.ws20_c00203{word-spacing:-0.062496px;}
.ws29_c00203{word-spacing:-0.019152px;}
.ws28_c00203{word-spacing:-0.009576px;}
.ws23_c00203{word-spacing:-0.007200px;}
.ws2a_c00203{word-spacing:-0.004788px;}
.ws3_c00203{word-spacing:0.000000px;}
.ws1f_c00203{word-spacing:0.007200px;}
.ws8_c00203{word-spacing:0.057600px;}
.ws9_c00203{word-spacing:1.094400px;}
.ws24_c00203{word-spacing:2.520000px;}
.ws25_c00203{word-spacing:2.541600px;}
.ws7_c00203{word-spacing:3.247200px;}
.ws17_c00203{word-spacing:4.276800px;}
.wsd_c00203{word-spacing:4.341600px;}
.wsc_c00203{word-spacing:4.392000px;}
.ws16_c00203{word-spacing:4.435200px;}
.ws4_c00203{word-spacing:5.047200px;}
.ws21_c00203{word-spacing:5.407200px;}
.ws22_c00203{word-spacing:5.464800px;}
.ws1d_c00203{word-spacing:6.127200px;}
.ws1e_c00203{word-spacing:6.148800px;}
.wsa_c00203{word-spacing:6.465600px;}
.wsb_c00203{word-spacing:6.544800px;}
.ws11_c00203{word-spacing:7.531200px;}
.ws10_c00203{word-spacing:7.574400px;}
.ws27_c00203{word-spacing:7.905600px;}
.wse_c00203{word-spacing:7.984800px;}
.wsf_c00203{word-spacing:8.035200px;}
.ws26_c00203{word-spacing:8.092800px;}
.ws18_c00203{word-spacing:9.727200px;}
.ws1a_c00203{word-spacing:9.734400px;}
.ws19_c00203{word-spacing:9.748800px;}
.ws1c_c00203{word-spacing:10.432800px;}
.ws1b_c00203{word-spacing:10.504800px;}
.ws12_c00203{word-spacing:15.098400px;}
.ws13_c00203{word-spacing:15.177600px;}
.ws5_c00203{word-spacing:17.280000px;}
.ws6_c00203{word-spacing:17.337600px;}
.ws15_c00203{word-spacing:17.640000px;}
.ws14_c00203{word-spacing:17.690400px;}
._0_c00203{margin-left:-1.022040px;}
._1_c00203{width:1.080000px;}
.fc0_c00203{color:rgb(0,0,0);}
.fs3_c00203{font-size:42.120000px;}
.fs5_c00203{font-size:47.880000px;}
.fs2_c00203{font-size:54.000000px;}
.fs0_c00203{font-size:60.120000px;}
.fs1_c00203{font-size:72.000000px;}
.fs4_c00203{font-size:78.120000px;}
.y0_c00203{bottom:0.000000px;}
.y3_c00203{bottom:57.450450px;}
.y4_c00203{bottom:61.410450px;}
.y24_c00203{bottom:113.707830px;}
.y23_c00203{bottom:132.069810px;}
.y22_c00203{bottom:150.336030px;}
.y21_c00203{bottom:168.602250px;}
.y20_c00203{bottom:186.964230px;}
.y1f_c00203{bottom:205.230450px;}
.y1e_c00203{bottom:220.440450px;}
.y1d_c00203{bottom:241.140450px;}
.y1c_c00203{bottom:261.840450px;}
.y1b_c00203{bottom:317.910450px;}
.y1a_c00203{bottom:352.380450px;}
.y19_c00203{bottom:395.760450px;}
.y18_c00203{bottom:430.230450px;}
.y17_c00203{bottom:475.230450px;}
.y16_c00203{bottom:528.960450px;}
.y15_c00203{bottom:563.340450px;}
.y14_c00203{bottom:597.810450px;}
.y13_c00203{bottom:641.190450px;}
.y12_c00203{bottom:675.660450px;}
.y11_c00203{bottom:710.040450px;}
.y10_c00203{bottom:744.510450px;}
.yf_c00203{bottom:778.890450px;}
.ye_c00203{bottom:813.360450px;}
.yd_c00203{bottom:847.740450px;}
.yc_c00203{bottom:891.210450px;}
.yb_c00203{bottom:925.590450px;}
.ya_c00203{bottom:960.060450px;}
.y9_c00203{bottom:994.440450px;}
.y8_c00203{bottom:1037.910450px;}
.y7_c00203{bottom:1072.290450px;}
.y6_c00203{bottom:1106.760450px;}
.y5_c00203{bottom:1141.140450px;}
.y2_c00203{bottom:1173.810450px;}
.y1_c00203{bottom:1196.850450px;}
.h2_c00203{height:47.988281px;}
.h9_c00203{height:49.937344px;}
.h1_c00203{height:50.315273px;}
.h3_c00203{height:56.320312px;}
.h5_c00203{height:60.257812px;}
.h4_c00203{height:65.130820px;}
.h7_c00203{height:65.131420px;}
.h8_c00203{height:75.093750px;}
.h6_c00203{height:81.476719px;}
.h0_c00203{height:1263.000000px;}
.w1_c00203{width:892.500000px;}
.w0_c00203{width:892.830000px;}
.x0_c00203{left:0.000000px;}
.x2_c00203{left:127.620000px;}
.x6_c00203{left:154.440000px;}
.x5_c00203{left:180.720000px;}
.x4_c00203{left:435.240000px;}
.x3_c00203{left:446.490000px;}
.x1_c00203{left:490.770000px;}
@media print{
.v2_c00203{vertical-align:-26.560000pt;}
.v0_c00203{vertical-align:0.000000pt;}
.v1_c00203{vertical-align:26.560000pt;}
.lsc_c00203{letter-spacing:-0.134400pt;}
.ls16_c00203{letter-spacing:-0.027776pt;}
.ls12_c00203{letter-spacing:-0.025600pt;}
.ls10_c00203{letter-spacing:-0.019200pt;}
.lsf_c00203{letter-spacing:-0.012800pt;}
.lsd_c00203{letter-spacing:-0.006400pt;}
.lsb_c00203{letter-spacing:0.000000pt;}
.ls5_c00203{letter-spacing:0.006400pt;}
.ls1_c00203{letter-spacing:0.012800pt;}
.ls15_c00203{letter-spacing:0.019200pt;}
.lsa_c00203{letter-spacing:0.021280pt;}
.ls8_c00203{letter-spacing:0.025536pt;}
.ls2_c00203{letter-spacing:0.025600pt;}
.ls0_c00203{letter-spacing:0.032064pt;}
.ls9_c00203{letter-spacing:0.034048pt;}
.ls13_c00203{letter-spacing:0.038400pt;}
.lse_c00203{letter-spacing:0.048672pt;}
.ls3_c00203{letter-spacing:0.064000pt;}
.ls14_c00203{letter-spacing:0.080160pt;}
.ls11_c00203{letter-spacing:0.083200pt;}
.ls6_c00203{letter-spacing:0.128000pt;}
.ls4_c00203{letter-spacing:15.554560pt;}
.ls7_c00203{letter-spacing:58.688000pt;}
.ws1_c00203{word-spacing:-17.332224pt;}
.ws0_c00203{word-spacing:-9.408672pt;}
.ws2_c00203{word-spacing:-0.272544pt;}
.ws20_c00203{word-spacing:-0.055552pt;}
.ws29_c00203{word-spacing:-0.017024pt;}
.ws28_c00203{word-spacing:-0.008512pt;}
.ws23_c00203{word-spacing:-0.006400pt;}
.ws2a_c00203{word-spacing:-0.004256pt;}
.ws3_c00203{word-spacing:0.000000pt;}
.ws1f_c00203{word-spacing:0.006400pt;}
.ws8_c00203{word-spacing:0.051200pt;}
.ws9_c00203{word-spacing:0.972800pt;}
.ws24_c00203{word-spacing:2.240000pt;}
.ws25_c00203{word-spacing:2.259200pt;}
.ws7_c00203{word-spacing:2.886400pt;}
.ws17_c00203{word-spacing:3.801600pt;}
.wsd_c00203{word-spacing:3.859200pt;}
.wsc_c00203{word-spacing:3.904000pt;}
.ws16_c00203{word-spacing:3.942400pt;}
.ws4_c00203{word-spacing:4.486400pt;}
.ws21_c00203{word-spacing:4.806400pt;}
.ws22_c00203{word-spacing:4.857600pt;}
.ws1d_c00203{word-spacing:5.446400pt;}
.ws1e_c00203{word-spacing:5.465600pt;}
.wsa_c00203{word-spacing:5.747200pt;}
.wsb_c00203{word-spacing:5.817600pt;}
.ws11_c00203{word-spacing:6.694400pt;}
.ws10_c00203{word-spacing:6.732800pt;}
.ws27_c00203{word-spacing:7.027200pt;}
.wse_c00203{word-spacing:7.097600pt;}
.wsf_c00203{word-spacing:7.142400pt;}
.ws26_c00203{word-spacing:7.193600pt;}
.ws18_c00203{word-spacing:8.646400pt;}
.ws1a_c00203{word-spacing:8.652800pt;}
.ws19_c00203{word-spacing:8.665600pt;}
.ws1c_c00203{word-spacing:9.273600pt;}
.ws1b_c00203{word-spacing:9.337600pt;}
.ws12_c00203{word-spacing:13.420800pt;}
.ws13_c00203{word-spacing:13.491200pt;}
.ws5_c00203{word-spacing:15.360000pt;}
.ws6_c00203{word-spacing:15.411200pt;}
.ws15_c00203{word-spacing:15.680000pt;}
.ws14_c00203{word-spacing:15.724800pt;}
._0_c00203{margin-left:-0.908480pt;}
._1_c00203{width:0.960000pt;}
.fs3_c00203{font-size:37.440000pt;}
.fs5_c00203{font-size:42.560000pt;}
.fs2_c00203{font-size:48.000000pt;}
.fs0_c00203{font-size:53.440000pt;}
.fs1_c00203{font-size:64.000000pt;}
.fs4_c00203{font-size:69.440000pt;}
.y0_c00203{bottom:0.000000pt;}
.y3_c00203{bottom:51.067067pt;}
.y4_c00203{bottom:54.587067pt;}
.y24_c00203{bottom:101.073627pt;}
.y23_c00203{bottom:117.395387pt;}
.y22_c00203{bottom:133.632027pt;}
.y21_c00203{bottom:149.868667pt;}
.y20_c00203{bottom:166.190427pt;}
.y1f_c00203{bottom:182.427067pt;}
.y1e_c00203{bottom:195.947067pt;}
.y1d_c00203{bottom:214.347067pt;}
.y1c_c00203{bottom:232.747067pt;}
.y1b_c00203{bottom:282.587067pt;}
.y1a_c00203{bottom:313.227067pt;}
.y19_c00203{bottom:351.787067pt;}
.y18_c00203{bottom:382.427067pt;}
.y17_c00203{bottom:422.427067pt;}
.y16_c00203{bottom:470.187067pt;}
.y15_c00203{bottom:500.747067pt;}
.y14_c00203{bottom:531.387067pt;}
.y13_c00203{bottom:569.947067pt;}
.y12_c00203{bottom:600.587067pt;}
.y11_c00203{bottom:631.147067pt;}
.y10_c00203{bottom:661.787067pt;}
.yf_c00203{bottom:692.347067pt;}
.ye_c00203{bottom:722.987067pt;}
.yd_c00203{bottom:753.547067pt;}
.yc_c00203{bottom:792.187067pt;}
.yb_c00203{bottom:822.747067pt;}
.ya_c00203{bottom:853.387067pt;}
.y9_c00203{bottom:883.947067pt;}
.y8_c00203{bottom:922.587067pt;}
.y7_c00203{bottom:953.147067pt;}
.y6_c00203{bottom:983.787067pt;}
.y5_c00203{bottom:1014.347067pt;}
.y2_c00203{bottom:1043.387067pt;}
.y1_c00203{bottom:1063.867067pt;}
.h2_c00203{height:42.656250pt;}
.h9_c00203{height:44.388750pt;}
.h1_c00203{height:44.724687pt;}
.h3_c00203{height:50.062500pt;}
.h5_c00203{height:53.562500pt;}
.h4_c00203{height:57.894063pt;}
.h7_c00203{height:57.894596pt;}
.h8_c00203{height:66.750000pt;}
.h6_c00203{height:72.423750pt;}
.h0_c00203{height:1122.666667pt;}
.w1_c00203{width:793.333333pt;}
.w0_c00203{width:793.626667pt;}
.x0_c00203{left:0.000000pt;}
.x2_c00203{left:113.440000pt;}
.x6_c00203{left:137.280000pt;}
.x5_c00203{left:160.640000pt;}
.x4_c00203{left:386.880000pt;}
.x3_c00203{left:396.880000pt;}
.x1_c00203{left:436.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_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_596af0af59d0cd335accafa7.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.100098;font-style:normal;font-weight:normal;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_b55a82715414ce0218de6488.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;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_c00204;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00204;src:url('chunks/assets/font_c414f5cfa2645e57d13a5ef4.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;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_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00204{vertical-align:-29.880000px;}
.v0_c00204{vertical-align:0.000000px;}
.v1_c00204{vertical-align:15.840000px;}
.v4_c00204{vertical-align:24.120000px;}
.v2_c00204{vertical-align:29.880000px;}
.ls17_c00204{letter-spacing:-0.266400px;}
.ls16_c00204{letter-spacing:-0.151200px;}
.ls24_c00204{letter-spacing:-0.047880px;}
.ls1c_c00204{letter-spacing:-0.043200px;}
.ls1b_c00204{letter-spacing:-0.028800px;}
.ls1d_c00204{letter-spacing:-0.021600px;}
.ls20_c00204{letter-spacing:-0.019440px;}
.ls25_c00204{letter-spacing:-0.015552px;}
.ls18_c00204{letter-spacing:-0.014400px;}
.ls23_c00204{letter-spacing:-0.014364px;}
.ls22_c00204{letter-spacing:-0.011664px;}
.ls28_c00204{letter-spacing:-0.009576px;}
.ls27_c00204{letter-spacing:-0.007776px;}
.ls19_c00204{letter-spacing:-0.007200px;}
.ls21_c00204{letter-spacing:-0.003888px;}
.ls15_c00204{letter-spacing:0.000000px;}
.ls2_c00204{letter-spacing:0.007200px;}
.ls14_c00204{letter-spacing:0.009576px;}
.ls1f_c00204{letter-spacing:0.014400px;}
.ls12_c00204{letter-spacing:0.019152px;}
.ls6_c00204{letter-spacing:0.021600px;}
.ls9_c00204{letter-spacing:0.023940px;}
.lsa_c00204{letter-spacing:0.028728px;}
.ls3_c00204{letter-spacing:0.028800px;}
.ls13_c00204{letter-spacing:0.033516px;}
.ls1e_c00204{letter-spacing:0.036000px;}
.lsb_c00204{letter-spacing:0.038304px;}
.lsc_c00204{letter-spacing:0.047880px;}
.ls0_c00204{letter-spacing:0.048096px;}
.ls10_c00204{letter-spacing:0.052668px;}
.ls8_c00204{letter-spacing:0.054756px;}
.ls7_c00204{letter-spacing:0.057600px;}
.ls1a_c00204{letter-spacing:0.093600px;}
.lsf_c00204{letter-spacing:0.104040px;}
.ls4_c00204{letter-spacing:0.144000px;}
.ls11_c00204{letter-spacing:0.307320px;}
.ls26_c00204{letter-spacing:0.361584px;}
.lse_c00204{letter-spacing:0.464040px;}
.lsd_c00204{letter-spacing:1.071360px;}
.ls5_c00204{letter-spacing:66.024000px;}
.ls1_c00204{letter-spacing:1212.120000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00204{word-spacing:-13.310640px;}
.ws3_c00204{word-spacing:-10.800864px;}
.ws2_c00204{word-spacing:-10.796976px;}
.ws0_c00204{word-spacing:-10.584756px;}
.ws4_c00204{word-spacing:-8.306640px;}
.wsd_c00204{word-spacing:-0.093600px;}
.ws26_c00204{word-spacing:-0.009576px;}
.ws25_c00204{word-spacing:-0.004788px;}
.ws6_c00204{word-spacing:0.000000px;}
.wsc_c00204{word-spacing:0.007200px;}
.ws5_c00204{word-spacing:0.042084px;}
.ws15_c00204{word-spacing:0.043200px;}
.ws1c_c00204{word-spacing:0.302400px;}
.ws1b_c00204{word-spacing:0.338400px;}
.ws28_c00204{word-spacing:0.689472px;}
.ws27_c00204{word-spacing:0.699048px;}
.ws8_c00204{word-spacing:0.734400px;}
.ws14_c00204{word-spacing:0.777600px;}
.ws7_c00204{word-spacing:0.813600px;}
.ws2b_c00204{word-spacing:1.043784px;}
.ws29_c00204{word-spacing:1.067724px;}
.ws2a_c00204{word-spacing:1.110816px;}
.ws2c_c00204{word-spacing:1.144332px;}
.ws19_c00204{word-spacing:2.124000px;}
.ws18_c00204{word-spacing:2.167200px;}
.ws17_c00204{word-spacing:2.181600px;}
.ws1d_c00204{word-spacing:2.887200px;}
.ws9_c00204{word-spacing:2.894400px;}
.ws1e_c00204{word-spacing:2.937600px;}
.ws13_c00204{word-spacing:4.716000px;}
.ws1f_c00204{word-spacing:7.171200px;}
.ws2d_c00204{word-spacing:7.182000px;}
.ws21_c00204{word-spacing:7.192800px;}
.ws20_c00204{word-spacing:7.214400px;}
.wse_c00204{word-spacing:8.287200px;}
.ws22_c00204{word-spacing:9.417600px;}
.ws12_c00204{word-spacing:10.101600px;}
.ws11_c00204{word-spacing:10.166400px;}
.wsb_c00204{word-spacing:10.843200px;}
.wsa_c00204{word-spacing:10.886400px;}
.ws1a_c00204{word-spacing:12.967200px;}
.ws16_c00204{word-spacing:13.737600px;}
.ws10_c00204{word-spacing:15.811200px;}
.wsf_c00204{word-spacing:15.832800px;}
.ws30_c00204{word-spacing:16.164288px;}
.ws32_c00204{word-spacing:16.169076px;}
.ws2e_c00204{word-spacing:16.207380px;}
.ws2f_c00204{word-spacing:16.226532px;}
.ws31_c00204{word-spacing:16.264836px;}
.ws24_c00204{word-spacing:16.912800px;}
.ws23_c00204{word-spacing:16.948800px;}
._0_c00204{margin-left:-1.322640px;}
._1_c00204{width:1.008000px;}
._3_c00204{width:14.964048px;}
._2_c00204{width:16.644744px;}
.fc0_c00204{color:rgb(0,0,0);}
.fs6_c00204{font-size:29.880000px;}
.fs5_c00204{font-size:38.880000px;}
.fs3_c00204{font-size:42.120000px;}
.fs4_c00204{font-size:47.880000px;}
.fs1_c00204{font-size:54.000000px;}
.fs0_c00204{font-size:60.120000px;}
.fs2_c00204{font-size:72.000000px;}
.y0_c00204{bottom:0.000000px;}
.y3_c00204{bottom:57.450450px;}
.y27_c00204{bottom:113.702970px;}
.y26_c00204{bottom:132.064950px;}
.y25_c00204{bottom:145.837470px;}
.y24_c00204{bottom:159.602970px;}
.y23_c00204{bottom:177.964950px;}
.y22_c00204{bottom:191.746110px;}
.y21_c00204{bottom:205.511610px;}
.y20_c00204{bottom:223.873590px;}
.y1f_c00204{bottom:242.139810px;}
.y1e_c00204{bottom:260.406030px;}
.y1d_c00204{bottom:278.768010px;}
.y1c_c00204{bottom:297.034230px;}
.y1b_c00204{bottom:315.300450px;}
.y1a_c00204{bottom:330.510450px;}
.y19_c00204{bottom:351.210450px;}
.y18_c00204{bottom:371.910600px;}
.y17_c00204{bottom:442.110600px;}
.y16_c00204{bottom:476.490600px;}
.y15_c00204{bottom:510.960450px;}
.y14_c00204{bottom:554.340450px;}
.y13_c00204{bottom:588.810450px;}
.y12_c00204{bottom:623.190450px;}
.y11_c00204{bottom:657.660450px;}
.y10_c00204{bottom:692.040450px;}
.yf_c00204{bottom:726.510450px;}
.ye_c00204{bottom:778.890450px;}
.yd_c00204{bottom:813.360450px;}
.yc_c00204{bottom:847.740450px;}
.yb_c00204{bottom:882.210450px;}
.ya_c00204{bottom:916.590450px;}
.y9_c00204{bottom:951.060450px;}
.y8_c00204{bottom:994.440450px;}
.y7_c00204{bottom:1028.910450px;}
.y6_c00204{bottom:1072.290450px;}
.y5_c00204{bottom:1106.760450px;}
.y4_c00204{bottom:1141.140450px;}
.y2_c00204{bottom:1177.860450px;}
.y1_c00204{bottom:1196.850450px;}
.h9_c00204{height:47.988281px;}
.ha_c00204{height:49.937344px;}
.h1_c00204{height:50.315273px;}
.hb_c00204{height:55.221266px;}
.hc_c00204{height:55.255826px;}
.h2_c00204{height:56.320312px;}
.h5_c00204{height:60.257812px;}
.h8_c00204{height:65.130220px;}
.h4_c00204{height:65.130820px;}
.h7_c00204{height:65.131420px;}
.h3_c00204{height:72.160312px;}
.h6_c00204{height:75.093750px;}
.h0_c00204{height:1263.000000px;}
.w1_c00204{width:892.500000px;}
.w0_c00204{width:892.830000px;}
.x0_c00204{left:0.000000px;}
.x1_c00204{left:127.620000px;}
.x5_c00204{left:141.110190px;}
.x3_c00204{left:154.440000px;}
.x2_c00204{left:181.170000px;}
.x4_c00204{left:233.820000px;}
@media print{
.v3_c00204{vertical-align:-26.560000pt;}
.v0_c00204{vertical-align:0.000000pt;}
.v1_c00204{vertical-align:14.080000pt;}
.v4_c00204{vertical-align:21.440000pt;}
.v2_c00204{vertical-align:26.560000pt;}
.ls17_c00204{letter-spacing:-0.236800pt;}
.ls16_c00204{letter-spacing:-0.134400pt;}
.ls24_c00204{letter-spacing:-0.042560pt;}
.ls1c_c00204{letter-spacing:-0.038400pt;}
.ls1b_c00204{letter-spacing:-0.025600pt;}
.ls1d_c00204{letter-spacing:-0.019200pt;}
.ls20_c00204{letter-spacing:-0.017280pt;}
.ls25_c00204{letter-spacing:-0.013824pt;}
.ls18_c00204{letter-spacing:-0.012800pt;}
.ls23_c00204{letter-spacing:-0.012768pt;}
.ls22_c00204{letter-spacing:-0.010368pt;}
.ls28_c00204{letter-spacing:-0.008512pt;}
.ls27_c00204{letter-spacing:-0.006912pt;}
.ls19_c00204{letter-spacing:-0.006400pt;}
.ls21_c00204{letter-spacing:-0.003456pt;}
.ls15_c00204{letter-spacing:0.000000pt;}
.ls2_c00204{letter-spacing:0.006400pt;}
.ls14_c00204{letter-spacing:0.008512pt;}
.ls1f_c00204{letter-spacing:0.012800pt;}
.ls12_c00204{letter-spacing:0.017024pt;}
.ls6_c00204{letter-spacing:0.019200pt;}
.ls9_c00204{letter-spacing:0.021280pt;}
.lsa_c00204{letter-spacing:0.025536pt;}
.ls3_c00204{letter-spacing:0.025600pt;}
.ls13_c00204{letter-spacing:0.029792pt;}
.ls1e_c00204{letter-spacing:0.032000pt;}
.lsb_c00204{letter-spacing:0.034048pt;}
.lsc_c00204{letter-spacing:0.042560pt;}
.ls0_c00204{letter-spacing:0.042752pt;}
.ls10_c00204{letter-spacing:0.046816pt;}
.ls8_c00204{letter-spacing:0.048672pt;}
.ls7_c00204{letter-spacing:0.051200pt;}
.ls1a_c00204{letter-spacing:0.083200pt;}
.lsf_c00204{letter-spacing:0.092480pt;}
.ls4_c00204{letter-spacing:0.128000pt;}
.ls11_c00204{letter-spacing:0.273173pt;}
.ls26_c00204{letter-spacing:0.321408pt;}
.lse_c00204{letter-spacing:0.412480pt;}
.lsd_c00204{letter-spacing:0.952320pt;}
.ls5_c00204{letter-spacing:58.688000pt;}
.ls1_c00204{letter-spacing:1077.440000pt;}
.ws1_c00204{word-spacing:-11.831680pt;}
.ws3_c00204{word-spacing:-9.600768pt;}
.ws2_c00204{word-spacing:-9.597312pt;}
.ws0_c00204{word-spacing:-9.408672pt;}
.ws4_c00204{word-spacing:-7.383680pt;}
.wsd_c00204{word-spacing:-0.083200pt;}
.ws26_c00204{word-spacing:-0.008512pt;}
.ws25_c00204{word-spacing:-0.004256pt;}
.ws6_c00204{word-spacing:0.000000pt;}
.wsc_c00204{word-spacing:0.006400pt;}
.ws5_c00204{word-spacing:0.037408pt;}
.ws15_c00204{word-spacing:0.038400pt;}
.ws1c_c00204{word-spacing:0.268800pt;}
.ws1b_c00204{word-spacing:0.300800pt;}
.ws28_c00204{word-spacing:0.612864pt;}
.ws27_c00204{word-spacing:0.621376pt;}
.ws8_c00204{word-spacing:0.652800pt;}
.ws14_c00204{word-spacing:0.691200pt;}
.ws7_c00204{word-spacing:0.723200pt;}
.ws2b_c00204{word-spacing:0.927808pt;}
.ws29_c00204{word-spacing:0.949088pt;}
.ws2a_c00204{word-spacing:0.987392pt;}
.ws2c_c00204{word-spacing:1.017184pt;}
.ws19_c00204{word-spacing:1.888000pt;}
.ws18_c00204{word-spacing:1.926400pt;}
.ws17_c00204{word-spacing:1.939200pt;}
.ws1d_c00204{word-spacing:2.566400pt;}
.ws9_c00204{word-spacing:2.572800pt;}
.ws1e_c00204{word-spacing:2.611200pt;}
.ws13_c00204{word-spacing:4.192000pt;}
.ws1f_c00204{word-spacing:6.374400pt;}
.ws2d_c00204{word-spacing:6.384000pt;}
.ws21_c00204{word-spacing:6.393600pt;}
.ws20_c00204{word-spacing:6.412800pt;}
.wse_c00204{word-spacing:7.366400pt;}
.ws22_c00204{word-spacing:8.371200pt;}
.ws12_c00204{word-spacing:8.979200pt;}
.ws11_c00204{word-spacing:9.036800pt;}
.wsb_c00204{word-spacing:9.638400pt;}
.wsa_c00204{word-spacing:9.676800pt;}
.ws1a_c00204{word-spacing:11.526400pt;}
.ws16_c00204{word-spacing:12.211200pt;}
.ws10_c00204{word-spacing:14.054400pt;}
.wsf_c00204{word-spacing:14.073600pt;}
.ws30_c00204{word-spacing:14.368256pt;}
.ws32_c00204{word-spacing:14.372512pt;}
.ws2e_c00204{word-spacing:14.406560pt;}
.ws2f_c00204{word-spacing:14.423584pt;}
.ws31_c00204{word-spacing:14.457632pt;}
.ws24_c00204{word-spacing:15.033600pt;}
.ws23_c00204{word-spacing:15.065600pt;}
._0_c00204{margin-left:-1.175680pt;}
._1_c00204{width:0.896000pt;}
._3_c00204{width:13.301376pt;}
._2_c00204{width:14.795328pt;}
.fs6_c00204{font-size:26.560000pt;}
.fs5_c00204{font-size:34.560000pt;}
.fs3_c00204{font-size:37.440000pt;}
.fs4_c00204{font-size:42.560000pt;}
.fs1_c00204{font-size:48.000000pt;}
.fs0_c00204{font-size:53.440000pt;}
.fs2_c00204{font-size:64.000000pt;}
.y0_c00204{bottom:0.000000pt;}
.y3_c00204{bottom:51.067067pt;}
.y27_c00204{bottom:101.069307pt;}
.y26_c00204{bottom:117.391067pt;}
.y25_c00204{bottom:129.633307pt;}
.y24_c00204{bottom:141.869307pt;}
.y23_c00204{bottom:158.191067pt;}
.y22_c00204{bottom:170.440987pt;}
.y21_c00204{bottom:182.676987pt;}
.y20_c00204{bottom:198.998747pt;}
.y1f_c00204{bottom:215.235387pt;}
.y1e_c00204{bottom:231.472027pt;}
.y1d_c00204{bottom:247.793787pt;}
.y1c_c00204{bottom:264.030427pt;}
.y1b_c00204{bottom:280.267067pt;}
.y1a_c00204{bottom:293.787067pt;}
.y19_c00204{bottom:312.187067pt;}
.y18_c00204{bottom:330.587200pt;}
.y17_c00204{bottom:392.987200pt;}
.y16_c00204{bottom:423.547200pt;}
.y15_c00204{bottom:454.187067pt;}
.y14_c00204{bottom:492.747067pt;}
.y13_c00204{bottom:523.387067pt;}
.y12_c00204{bottom:553.947067pt;}
.y11_c00204{bottom:584.587067pt;}
.y10_c00204{bottom:615.147067pt;}
.yf_c00204{bottom:645.787067pt;}
.ye_c00204{bottom:692.347067pt;}
.yd_c00204{bottom:722.987067pt;}
.yc_c00204{bottom:753.547067pt;}
.yb_c00204{bottom:784.187067pt;}
.ya_c00204{bottom:814.747067pt;}
.y9_c00204{bottom:845.387067pt;}
.y8_c00204{bottom:883.947067pt;}
.y7_c00204{bottom:914.587067pt;}
.y6_c00204{bottom:953.147067pt;}
.y5_c00204{bottom:983.787067pt;}
.y4_c00204{bottom:1014.347067pt;}
.y2_c00204{bottom:1046.987067pt;}
.y1_c00204{bottom:1063.867067pt;}
.h9_c00204{height:42.656250pt;}
.ha_c00204{height:44.388750pt;}
.h1_c00204{height:44.724687pt;}
.hb_c00204{height:49.085570pt;}
.hc_c00204{height:49.116290pt;}
.h2_c00204{height:50.062500pt;}
.h5_c00204{height:53.562500pt;}
.h8_c00204{height:57.893529pt;}
.h4_c00204{height:57.894063pt;}
.h7_c00204{height:57.894596pt;}
.h3_c00204{height:64.142500pt;}
.h6_c00204{height:66.750000pt;}
.h0_c00204{height:1122.666667pt;}
.w1_c00204{width:793.333333pt;}
.w0_c00204{width:793.626667pt;}
.x0_c00204{left:0.000000pt;}
.x1_c00204{left:113.440000pt;}
.x5_c00204{left:125.431280pt;}
.x3_c00204{left:137.280000pt;}
.x2_c00204{left:161.040000pt;}
.x4_c00204{left:207.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_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_e71d4e5d920c9f993547a184.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00205;src:url('chunks/assets/font_b3b39c38aae15c5bb30187a3.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00205;src:url('chunks/assets/font_3fb1c3d142350e4286aab934.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;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_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;}
.v2_c00205{vertical-align:24.120000px;}
.v1_c00205{vertical-align:29.880000px;}
.ls14_c00205{letter-spacing:-0.151200px;}
.ls21_c00205{letter-spacing:-0.047880px;}
.ls1d_c00205{letter-spacing:-0.043200px;}
.ls17_c00205{letter-spacing:-0.036000px;}
.ls19_c00205{letter-spacing:-0.028800px;}
.ls18_c00205{letter-spacing:-0.021600px;}
.ls1e_c00205{letter-spacing:-0.015552px;}
.ls15_c00205{letter-spacing:-0.014400px;}
.ls20_c00205{letter-spacing:-0.011664px;}
.ls16_c00205{letter-spacing:-0.007200px;}
.ls1f_c00205{letter-spacing:-0.003888px;}
.ls13_c00205{letter-spacing:0.000000px;}
.lsa_c00205{letter-spacing:0.003888px;}
.ls1_c00205{letter-spacing:0.007200px;}
.ls9_c00205{letter-spacing:0.014364px;}
.ls1a_c00205{letter-spacing:0.014400px;}
.lsb_c00205{letter-spacing:0.019152px;}
.ls3_c00205{letter-spacing:0.021600px;}
.ls12_c00205{letter-spacing:0.023940px;}
.ls8_c00205{letter-spacing:0.028728px;}
.ls6_c00205{letter-spacing:0.028800px;}
.lse_c00205{letter-spacing:0.033516px;}
.ls1c_c00205{letter-spacing:0.036000px;}
.ls0_c00205{letter-spacing:0.036072px;}
.lsd_c00205{letter-spacing:0.038304px;}
.lsc_c00205{letter-spacing:0.043092px;}
.ls22_c00205{letter-spacing:0.047880px;}
.ls7_c00205{letter-spacing:0.050400px;}
.ls11_c00205{letter-spacing:0.052668px;}
.ls2_c00205{letter-spacing:0.054756px;}
.ls1b_c00205{letter-spacing:0.093600px;}
.lsf_c00205{letter-spacing:0.104040px;}
.ls4_c00205{letter-spacing:0.144000px;}
.ls23_c00205{letter-spacing:0.357696px;}
.ls10_c00205{letter-spacing:0.464040px;}
.ls5_c00205{letter-spacing:66.024000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00205{word-spacing:-13.310640px;}
.ws5_c00205{word-spacing:-11.166336px;}
.ws2_c00205{word-spacing:-10.812528px;}
.ws3_c00205{word-spacing:-10.796976px;}
.ws0_c00205{word-spacing:-10.584756px;}
.ws4_c00205{word-spacing:-8.306640px;}
.ws6_c00205{word-spacing:-0.306612px;}
.ws38_c00205{word-spacing:-0.033516px;}
.ws2e_c00205{word-spacing:-0.023940px;}
.ws2d_c00205{word-spacing:-0.019152px;}
.ws2b_c00205{word-spacing:-0.009576px;}
.ws9_c00205{word-spacing:-0.007200px;}
.ws37_c00205{word-spacing:-0.004788px;}
.ws7_c00205{word-spacing:0.000000px;}
.ws2c_c00205{word-spacing:0.004788px;}
.ws23_c00205{word-spacing:0.007200px;}
.ws24_c00205{word-spacing:0.014400px;}
.ws1a_c00205{word-spacing:0.086400px;}
.wse_c00205{word-spacing:0.115200px;}
.ws13_c00205{word-spacing:0.331200px;}
.ws2f_c00205{word-spacing:0.335160px;}
.ws12_c00205{word-spacing:0.381600px;}
.ws21_c00205{word-spacing:1.404000px;}
.ws22_c00205{word-spacing:1.483200px;}
.ws1d_c00205{word-spacing:1.519200px;}
.ws20_c00205{word-spacing:1.764000px;}
.ws14_c00205{word-spacing:1.800000px;}
.ws15_c00205{word-spacing:1.828800px;}
.ws1f_c00205{word-spacing:1.836000px;}
.ws8_c00205{word-spacing:3.254400px;}
.ws30_c00205{word-spacing:3.940524px;}
.ws31_c00205{word-spacing:3.945312px;}
.ws19_c00205{word-spacing:4.305600px;}
.ws1b_c00205{word-spacing:4.312800px;}
.ws1c_c00205{word-spacing:4.377600px;}
.ws18_c00205{word-spacing:4.500000px;}
.ws1e_c00205{word-spacing:5.414400px;}
.ws2a_c00205{word-spacing:6.091200px;}
.ws29_c00205{word-spacing:6.098400px;}
.ws16_c00205{word-spacing:6.429600px;}
.ws27_c00205{word-spacing:6.451200px;}
.ws17_c00205{word-spacing:6.487200px;}
.wsb_c00205{word-spacing:6.516000px;}
.ws28_c00205{word-spacing:6.530400px;}
.wsd_c00205{word-spacing:6.552000px;}
.wsc_c00205{word-spacing:6.638400px;}
.ws25_c00205{word-spacing:7.560000px;}
.ws26_c00205{word-spacing:7.632000px;}
.wsa_c00205{word-spacing:9.727200px;}
.ws11_c00205{word-spacing:11.808000px;}
.ws10_c00205{word-spacing:11.887200px;}
.wsf_c00205{word-spacing:11.894400px;}
.ws34_c00205{word-spacing:51.083172px;}
.ws36_c00205{word-spacing:51.087960px;}
.ws32_c00205{word-spacing:51.116688px;}
.ws33_c00205{word-spacing:51.121476px;}
.ws35_c00205{word-spacing:51.183720px;}
._0_c00205{margin-left:-1.022040px;}
._1_c00205{width:1.080000px;}
._2_c00205{width:51.461136px;}
.fc0_c00205{color:rgb(0,0,0);}
.fs6_c00205{font-size:29.880000px;}
.fs5_c00205{font-size:38.880000px;}
.fs3_c00205{font-size:42.120000px;}
.fs4_c00205{font-size:47.880000px;}
.fs2_c00205{font-size:54.000000px;}
.fs0_c00205{font-size:60.120000px;}
.fs1_c00205{font-size:72.000000px;}
.y0_c00205{bottom:0.000000px;}
.y3_c00205{bottom:57.450450px;}
.y4_c00205{bottom:61.410450px;}
.y27_c00205{bottom:113.706030px;}
.y26_c00205{bottom:132.068010px;}
.y25_c00205{bottom:150.334230px;}
.y24_c00205{bottom:168.602970px;}
.y23_c00205{bottom:186.964950px;}
.y22_c00205{bottom:200.741970px;}
.y21_c00205{bottom:214.507470px;}
.y20_c00205{bottom:228.368730px;}
.y1f_c00205{bottom:242.134230px;}
.y1e_c00205{bottom:260.398470px;}
.y1d_c00205{bottom:278.760450px;}
.y1c_c00205{bottom:293.970450px;}
.y1b_c00205{bottom:314.580450px;}
.y1a_c00205{bottom:335.280600px;}
.y19_c00205{bottom:407.640600px;}
.y18_c00205{bottom:442.110600px;}
.y17_c00205{bottom:476.490600px;}
.y16_c00205{bottom:519.960450px;}
.y15_c00205{bottom:554.340450px;}
.y14_c00205{bottom:588.810450px;}
.y13_c00205{bottom:632.190450px;}
.y12_c00205{bottom:666.660450px;}
.y11_c00205{bottom:701.040450px;}
.y10_c00205{bottom:735.510450px;}
.yf_c00205{bottom:778.890450px;}
.ye_c00205{bottom:813.360450px;}
.yd_c00205{bottom:847.740450px;}
.yc_c00205{bottom:882.210450px;}
.yb_c00205{bottom:916.590450px;}
.ya_c00205{bottom:951.060450px;}
.y9_c00205{bottom:994.440450px;}
.y8_c00205{bottom:1028.910450px;}
.y7_c00205{bottom:1063.290450px;}
.y6_c00205{bottom:1106.760450px;}
.y5_c00205{bottom:1141.140450px;}
.y2_c00205{bottom:1173.810450px;}
.y1_c00205{bottom:1196.850450px;}
.h2_c00205{height:47.988281px;}
.h9_c00205{height:49.937344px;}
.ha_c00205{height:49.945264px;}
.h1_c00205{height:50.315273px;}
.hb_c00205{height:55.237826px;}
.h3_c00205{height:56.320312px;}
.h4_c00205{height:60.257812px;}
.h8_c00205{height:65.130220px;}
.h5_c00205{height:65.130820px;}
.h7_c00205{height:65.131420px;}
.h6_c00205{height:75.093750px;}
.h0_c00205{height:1263.000000px;}
.w1_c00205{width:892.500000px;}
.w0_c00205{width:892.830000px;}
.x0_c00205{left:0.000000px;}
.x2_c00205{left:127.620000px;}
.x7_c00205{left:154.440000px;}
.x5_c00205{left:181.170000px;}
.x8_c00205{left:207.180000px;}
.x6_c00205{left:233.910000px;}
.x4_c00205{left:435.240000px;}
.x3_c00205{left:446.490000px;}
.x1_c00205{left:490.770000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.v2_c00205{vertical-align:21.440000pt;}
.v1_c00205{vertical-align:26.560000pt;}
.ls14_c00205{letter-spacing:-0.134400pt;}
.ls21_c00205{letter-spacing:-0.042560pt;}
.ls1d_c00205{letter-spacing:-0.038400pt;}
.ls17_c00205{letter-spacing:-0.032000pt;}
.ls19_c00205{letter-spacing:-0.025600pt;}
.ls18_c00205{letter-spacing:-0.019200pt;}
.ls1e_c00205{letter-spacing:-0.013824pt;}
.ls15_c00205{letter-spacing:-0.012800pt;}
.ls20_c00205{letter-spacing:-0.010368pt;}
.ls16_c00205{letter-spacing:-0.006400pt;}
.ls1f_c00205{letter-spacing:-0.003456pt;}
.ls13_c00205{letter-spacing:0.000000pt;}
.lsa_c00205{letter-spacing:0.003456pt;}
.ls1_c00205{letter-spacing:0.006400pt;}
.ls9_c00205{letter-spacing:0.012768pt;}
.ls1a_c00205{letter-spacing:0.012800pt;}
.lsb_c00205{letter-spacing:0.017024pt;}
.ls3_c00205{letter-spacing:0.019200pt;}
.ls12_c00205{letter-spacing:0.021280pt;}
.ls8_c00205{letter-spacing:0.025536pt;}
.ls6_c00205{letter-spacing:0.025600pt;}
.lse_c00205{letter-spacing:0.029792pt;}
.ls1c_c00205{letter-spacing:0.032000pt;}
.ls0_c00205{letter-spacing:0.032064pt;}
.lsd_c00205{letter-spacing:0.034048pt;}
.lsc_c00205{letter-spacing:0.038304pt;}
.ls22_c00205{letter-spacing:0.042560pt;}
.ls7_c00205{letter-spacing:0.044800pt;}
.ls11_c00205{letter-spacing:0.046816pt;}
.ls2_c00205{letter-spacing:0.048672pt;}
.ls1b_c00205{letter-spacing:0.083200pt;}
.lsf_c00205{letter-spacing:0.092480pt;}
.ls4_c00205{letter-spacing:0.128000pt;}
.ls23_c00205{letter-spacing:0.317952pt;}
.ls10_c00205{letter-spacing:0.412480pt;}
.ls5_c00205{letter-spacing:58.688000pt;}
.ws1_c00205{word-spacing:-11.831680pt;}
.ws5_c00205{word-spacing:-9.925632pt;}
.ws2_c00205{word-spacing:-9.611136pt;}
.ws3_c00205{word-spacing:-9.597312pt;}
.ws0_c00205{word-spacing:-9.408672pt;}
.ws4_c00205{word-spacing:-7.383680pt;}
.ws6_c00205{word-spacing:-0.272544pt;}
.ws38_c00205{word-spacing:-0.029792pt;}
.ws2e_c00205{word-spacing:-0.021280pt;}
.ws2d_c00205{word-spacing:-0.017024pt;}
.ws2b_c00205{word-spacing:-0.008512pt;}
.ws9_c00205{word-spacing:-0.006400pt;}
.ws37_c00205{word-spacing:-0.004256pt;}
.ws7_c00205{word-spacing:0.000000pt;}
.ws2c_c00205{word-spacing:0.004256pt;}
.ws23_c00205{word-spacing:0.006400pt;}
.ws24_c00205{word-spacing:0.012800pt;}
.ws1a_c00205{word-spacing:0.076800pt;}
.wse_c00205{word-spacing:0.102400pt;}
.ws13_c00205{word-spacing:0.294400pt;}
.ws2f_c00205{word-spacing:0.297920pt;}
.ws12_c00205{word-spacing:0.339200pt;}
.ws21_c00205{word-spacing:1.248000pt;}
.ws22_c00205{word-spacing:1.318400pt;}
.ws1d_c00205{word-spacing:1.350400pt;}
.ws20_c00205{word-spacing:1.568000pt;}
.ws14_c00205{word-spacing:1.600000pt;}
.ws15_c00205{word-spacing:1.625600pt;}
.ws1f_c00205{word-spacing:1.632000pt;}
.ws8_c00205{word-spacing:2.892800pt;}
.ws30_c00205{word-spacing:3.502688pt;}
.ws31_c00205{word-spacing:3.506944pt;}
.ws19_c00205{word-spacing:3.827200pt;}
.ws1b_c00205{word-spacing:3.833600pt;}
.ws1c_c00205{word-spacing:3.891200pt;}
.ws18_c00205{word-spacing:4.000000pt;}
.ws1e_c00205{word-spacing:4.812800pt;}
.ws2a_c00205{word-spacing:5.414400pt;}
.ws29_c00205{word-spacing:5.420800pt;}
.ws16_c00205{word-spacing:5.715200pt;}
.ws27_c00205{word-spacing:5.734400pt;}
.ws17_c00205{word-spacing:5.766400pt;}
.wsb_c00205{word-spacing:5.792000pt;}
.ws28_c00205{word-spacing:5.804800pt;}
.wsd_c00205{word-spacing:5.824000pt;}
.wsc_c00205{word-spacing:5.900800pt;}
.ws25_c00205{word-spacing:6.720000pt;}
.ws26_c00205{word-spacing:6.784000pt;}
.wsa_c00205{word-spacing:8.646400pt;}
.ws11_c00205{word-spacing:10.496000pt;}
.ws10_c00205{word-spacing:10.566400pt;}
.wsf_c00205{word-spacing:10.572800pt;}
.ws34_c00205{word-spacing:45.407264pt;}
.ws36_c00205{word-spacing:45.411520pt;}
.ws32_c00205{word-spacing:45.437056pt;}
.ws33_c00205{word-spacing:45.441312pt;}
.ws35_c00205{word-spacing:45.496640pt;}
._0_c00205{margin-left:-0.908480pt;}
._1_c00205{width:0.960000pt;}
._2_c00205{width:45.743232pt;}
.fs6_c00205{font-size:26.560000pt;}
.fs5_c00205{font-size:34.560000pt;}
.fs3_c00205{font-size:37.440000pt;}
.fs4_c00205{font-size:42.560000pt;}
.fs2_c00205{font-size:48.000000pt;}
.fs0_c00205{font-size:53.440000pt;}
.fs1_c00205{font-size:64.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y3_c00205{bottom:51.067067pt;}
.y4_c00205{bottom:54.587067pt;}
.y27_c00205{bottom:101.072027pt;}
.y26_c00205{bottom:117.393787pt;}
.y25_c00205{bottom:133.630427pt;}
.y24_c00205{bottom:149.869307pt;}
.y23_c00205{bottom:166.191067pt;}
.y22_c00205{bottom:178.437307pt;}
.y21_c00205{bottom:190.673307pt;}
.y20_c00205{bottom:202.994427pt;}
.y1f_c00205{bottom:215.230427pt;}
.y1e_c00205{bottom:231.465307pt;}
.y1d_c00205{bottom:247.787067pt;}
.y1c_c00205{bottom:261.307067pt;}
.y1b_c00205{bottom:279.627067pt;}
.y1a_c00205{bottom:298.027200pt;}
.y19_c00205{bottom:362.347200pt;}
.y18_c00205{bottom:392.987200pt;}
.y17_c00205{bottom:423.547200pt;}
.y16_c00205{bottom:462.187067pt;}
.y15_c00205{bottom:492.747067pt;}
.y14_c00205{bottom:523.387067pt;}
.y13_c00205{bottom:561.947067pt;}
.y12_c00205{bottom:592.587067pt;}
.y11_c00205{bottom:623.147067pt;}
.y10_c00205{bottom:653.787067pt;}
.yf_c00205{bottom:692.347067pt;}
.ye_c00205{bottom:722.987067pt;}
.yd_c00205{bottom:753.547067pt;}
.yc_c00205{bottom:784.187067pt;}
.yb_c00205{bottom:814.747067pt;}
.ya_c00205{bottom:845.387067pt;}
.y9_c00205{bottom:883.947067pt;}
.y8_c00205{bottom:914.587067pt;}
.y7_c00205{bottom:945.147067pt;}
.y6_c00205{bottom:983.787067pt;}
.y5_c00205{bottom:1014.347067pt;}
.y2_c00205{bottom:1043.387067pt;}
.y1_c00205{bottom:1063.867067pt;}
.h2_c00205{height:42.656250pt;}
.h9_c00205{height:44.388750pt;}
.ha_c00205{height:44.395790pt;}
.h1_c00205{height:44.724687pt;}
.hb_c00205{height:49.100290pt;}
.h3_c00205{height:50.062500pt;}
.h4_c00205{height:53.562500pt;}
.h8_c00205{height:57.893529pt;}
.h5_c00205{height:57.894063pt;}
.h7_c00205{height:57.894596pt;}
.h6_c00205{height:66.750000pt;}
.h0_c00205{height:1122.666667pt;}
.w1_c00205{width:793.333333pt;}
.w0_c00205{width:793.626667pt;}
.x0_c00205{left:0.000000pt;}
.x2_c00205{left:113.440000pt;}
.x7_c00205{left:137.280000pt;}
.x5_c00205{left:161.040000pt;}
.x8_c00205{left:184.160000pt;}
.x6_c00205{left:207.920000pt;}
.x4_c00205{left:386.880000pt;}
.x3_c00205{left:396.880000pt;}
.x1_c00205{left:436.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_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_84776a2de9bb884a70c82992.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.100098;font-style:normal;font-weight:normal;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_b588e595063b9a6d8ffba1ea.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;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_c00206;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00206;src:url('chunks/assets/font_6d596df4e3af1c2744ae2ce1.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00206;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;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_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;}
.v1_c00206{vertical-align:15.840000px;}
.v2_c00206{vertical-align:29.880000px;}
.ls11_c00206{letter-spacing:-0.266400px;}
.lsc_c00206{letter-spacing:-0.151200px;}
.ls16_c00206{letter-spacing:-0.046872px;}
.ls14_c00206{letter-spacing:-0.028800px;}
.lse_c00206{letter-spacing:-0.021600px;}
.ls10_c00206{letter-spacing:-0.014400px;}
.ls15_c00206{letter-spacing:-0.007812px;}
.lsd_c00206{letter-spacing:-0.007200px;}
.lsb_c00206{letter-spacing:0.000000px;}
.ls6_c00206{letter-spacing:0.007200px;}
.ls12_c00206{letter-spacing:0.014400px;}
.ls7_c00206{letter-spacing:0.021600px;}
.ls9_c00206{letter-spacing:0.023940px;}
.lsa_c00206{letter-spacing:0.028728px;}
.ls13_c00206{letter-spacing:0.028800px;}
.ls17_c00206{letter-spacing:0.036000px;}
.ls3_c00206{letter-spacing:0.043200px;}
.ls0_c00206{letter-spacing:0.048096px;}
.ls2_c00206{letter-spacing:0.054756px;}
.lsf_c00206{letter-spacing:0.093600px;}
.ls4_c00206{letter-spacing:0.144000px;}
.ls8_c00206{letter-spacing:11.796120px;}
.ls5_c00206{letter-spacing:66.024000px;}
.ls1_c00206{letter-spacing:1212.120000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00206{word-spacing:-19.522188px;}
.ws1_c00206{word-spacing:-18.043200px;}
.ws0_c00206{word-spacing:-10.584756px;}
.ws11_c00206{word-spacing:-0.086400px;}
.ws1a_c00206{word-spacing:-0.046872px;}
.ws25_c00206{word-spacing:-0.009576px;}
.ws24_c00206{word-spacing:-0.004788px;}
.ws4_c00206{word-spacing:0.000000px;}
.ws19_c00206{word-spacing:0.007200px;}
.ws10_c00206{word-spacing:0.014400px;}
.ws3_c00206{word-spacing:0.042084px;}
.ws6_c00206{word-spacing:0.108000px;}
.ws1f_c00206{word-spacing:1.411200px;}
.ws20_c00206{word-spacing:1.432800px;}
.wsf_c00206{word-spacing:1.468800px;}
.ws16_c00206{word-spacing:2.152800px;}
.ws5_c00206{word-spacing:2.498400px;}
.ws1c_c00206{word-spacing:3.564000px;}
.ws12_c00206{word-spacing:3.592800px;}
.ws1b_c00206{word-spacing:3.657600px;}
.wsb_c00206{word-spacing:3.945600px;}
.ws21_c00206{word-spacing:3.952800px;}
.ws22_c00206{word-spacing:3.974400px;}
.wsa_c00206{word-spacing:4.032000px;}
.ws8_c00206{word-spacing:4.773600px;}
.ws9_c00206{word-spacing:4.824000px;}
.wsc_c00206{word-spacing:6.141600px;}
.wse_c00206{word-spacing:9.403200px;}
.wsd_c00206{word-spacing:9.410400px;}
.ws14_c00206{word-spacing:10.058400px;}
.ws15_c00206{word-spacing:10.065600px;}
.ws13_c00206{word-spacing:10.188000px;}
.ws1d_c00206{word-spacing:10.807200px;}
.ws1e_c00206{word-spacing:10.857600px;}
.ws23_c00206{word-spacing:11.167200px;}
.ws7_c00206{word-spacing:14.018400px;}
.ws17_c00206{word-spacing:14.047200px;}
.ws18_c00206{word-spacing:14.090400px;}
._0_c00206{margin-left:-1.322640px;}
._1_c00206{width:1.008000px;}
.fc0_c00206{color:rgb(0,0,0);}
.fs3_c00206{font-size:42.120000px;}
.fs5_c00206{font-size:47.880000px;}
.fs1_c00206{font-size:54.000000px;}
.fs0_c00206{font-size:60.120000px;}
.fs2_c00206{font-size:72.000000px;}
.fs4_c00206{font-size:78.120000px;}
.y0_c00206{bottom:0.000000px;}
.y3_c00206{bottom:57.450450px;}
.y24_c00206{bottom:113.711610px;}
.y23_c00206{bottom:132.073590px;}
.y22_c00206{bottom:150.339810px;}
.y21_c00206{bottom:168.606030px;}
.y20_c00206{bottom:186.968010px;}
.y1f_c00206{bottom:205.234230px;}
.y1e_c00206{bottom:223.500450px;}
.y1d_c00206{bottom:238.710450px;}
.y1c_c00206{bottom:259.410450px;}
.y1b_c00206{bottom:280.110450px;}
.y1a_c00206{bottom:317.910450px;}
.y19_c00206{bottom:352.380450px;}
.y18_c00206{bottom:395.760450px;}
.y17_c00206{bottom:430.230450px;}
.y16_c00206{bottom:464.610450px;}
.y15_c00206{bottom:499.080450px;}
.y14_c00206{bottom:533.460450px;}
.y13_c00206{bottom:578.550450px;}
.y12_c00206{bottom:632.190450px;}
.y11_c00206{bottom:666.660450px;}
.y10_c00206{bottom:701.040450px;}
.yf_c00206{bottom:735.510600px;}
.ye_c00206{bottom:769.890600px;}
.yd_c00206{bottom:813.360450px;}
.yc_c00206{bottom:847.740450px;}
.yb_c00206{bottom:882.210450px;}
.ya_c00206{bottom:925.590450px;}
.y9_c00206{bottom:960.060450px;}
.y8_c00206{bottom:994.440450px;}
.y7_c00206{bottom:1028.910450px;}
.y6_c00206{bottom:1063.290450px;}
.y5_c00206{bottom:1106.760450px;}
.y4_c00206{bottom:1141.140450px;}
.y2_c00206{bottom:1177.860450px;}
.y1_c00206{bottom:1196.850450px;}
.h9_c00206{height:47.988281px;}
.ha_c00206{height:49.937344px;}
.h1_c00206{height:50.315273px;}
.h2_c00206{height:56.320312px;}
.h4_c00206{height:60.257812px;}
.h7_c00206{height:65.130220px;}
.h5_c00206{height:65.130820px;}
.h3_c00206{height:72.160312px;}
.h6_c00206{height:75.093750px;}
.h8_c00206{height:81.476719px;}
.h0_c00206{height:1263.000000px;}
.w1_c00206{width:892.500000px;}
.w0_c00206{width:892.830000px;}
.x0_c00206{left:0.000000px;}
.x1_c00206{left:127.620000px;}
.x4_c00206{left:154.440000px;}
.x2_c00206{left:180.810000px;}
.x3_c00206{left:233.910000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.v1_c00206{vertical-align:14.080000pt;}
.v2_c00206{vertical-align:26.560000pt;}
.ls11_c00206{letter-spacing:-0.236800pt;}
.lsc_c00206{letter-spacing:-0.134400pt;}
.ls16_c00206{letter-spacing:-0.041664pt;}
.ls14_c00206{letter-spacing:-0.025600pt;}
.lse_c00206{letter-spacing:-0.019200pt;}
.ls10_c00206{letter-spacing:-0.012800pt;}
.ls15_c00206{letter-spacing:-0.006944pt;}
.lsd_c00206{letter-spacing:-0.006400pt;}
.lsb_c00206{letter-spacing:0.000000pt;}
.ls6_c00206{letter-spacing:0.006400pt;}
.ls12_c00206{letter-spacing:0.012800pt;}
.ls7_c00206{letter-spacing:0.019200pt;}
.ls9_c00206{letter-spacing:0.021280pt;}
.lsa_c00206{letter-spacing:0.025536pt;}
.ls13_c00206{letter-spacing:0.025600pt;}
.ls17_c00206{letter-spacing:0.032000pt;}
.ls3_c00206{letter-spacing:0.038400pt;}
.ls0_c00206{letter-spacing:0.042752pt;}
.ls2_c00206{letter-spacing:0.048672pt;}
.lsf_c00206{letter-spacing:0.083200pt;}
.ls4_c00206{letter-spacing:0.128000pt;}
.ls8_c00206{letter-spacing:10.485440pt;}
.ls5_c00206{letter-spacing:58.688000pt;}
.ls1_c00206{letter-spacing:1077.440000pt;}
.ws2_c00206{word-spacing:-17.353056pt;}
.ws1_c00206{word-spacing:-16.038400pt;}
.ws0_c00206{word-spacing:-9.408672pt;}
.ws11_c00206{word-spacing:-0.076800pt;}
.ws1a_c00206{word-spacing:-0.041664pt;}
.ws25_c00206{word-spacing:-0.008512pt;}
.ws24_c00206{word-spacing:-0.004256pt;}
.ws4_c00206{word-spacing:0.000000pt;}
.ws19_c00206{word-spacing:0.006400pt;}
.ws10_c00206{word-spacing:0.012800pt;}
.ws3_c00206{word-spacing:0.037408pt;}
.ws6_c00206{word-spacing:0.096000pt;}
.ws1f_c00206{word-spacing:1.254400pt;}
.ws20_c00206{word-spacing:1.273600pt;}
.wsf_c00206{word-spacing:1.305600pt;}
.ws16_c00206{word-spacing:1.913600pt;}
.ws5_c00206{word-spacing:2.220800pt;}
.ws1c_c00206{word-spacing:3.168000pt;}
.ws12_c00206{word-spacing:3.193600pt;}
.ws1b_c00206{word-spacing:3.251200pt;}
.wsb_c00206{word-spacing:3.507200pt;}
.ws21_c00206{word-spacing:3.513600pt;}
.ws22_c00206{word-spacing:3.532800pt;}
.wsa_c00206{word-spacing:3.584000pt;}
.ws8_c00206{word-spacing:4.243200pt;}
.ws9_c00206{word-spacing:4.288000pt;}
.wsc_c00206{word-spacing:5.459200pt;}
.wse_c00206{word-spacing:8.358400pt;}
.wsd_c00206{word-spacing:8.364800pt;}
.ws14_c00206{word-spacing:8.940800pt;}
.ws15_c00206{word-spacing:8.947200pt;}
.ws13_c00206{word-spacing:9.056000pt;}
.ws1d_c00206{word-spacing:9.606400pt;}
.ws1e_c00206{word-spacing:9.651200pt;}
.ws23_c00206{word-spacing:9.926400pt;}
.ws7_c00206{word-spacing:12.460800pt;}
.ws17_c00206{word-spacing:12.486400pt;}
.ws18_c00206{word-spacing:12.524800pt;}
._0_c00206{margin-left:-1.175680pt;}
._1_c00206{width:0.896000pt;}
.fs3_c00206{font-size:37.440000pt;}
.fs5_c00206{font-size:42.560000pt;}
.fs1_c00206{font-size:48.000000pt;}
.fs0_c00206{font-size:53.440000pt;}
.fs2_c00206{font-size:64.000000pt;}
.fs4_c00206{font-size:69.440000pt;}
.y0_c00206{bottom:0.000000pt;}
.y3_c00206{bottom:51.067067pt;}
.y24_c00206{bottom:101.076987pt;}
.y23_c00206{bottom:117.398747pt;}
.y22_c00206{bottom:133.635387pt;}
.y21_c00206{bottom:149.872027pt;}
.y20_c00206{bottom:166.193787pt;}
.y1f_c00206{bottom:182.430427pt;}
.y1e_c00206{bottom:198.667067pt;}
.y1d_c00206{bottom:212.187067pt;}
.y1c_c00206{bottom:230.587067pt;}
.y1b_c00206{bottom:248.987067pt;}
.y1a_c00206{bottom:282.587067pt;}
.y19_c00206{bottom:313.227067pt;}
.y18_c00206{bottom:351.787067pt;}
.y17_c00206{bottom:382.427067pt;}
.y16_c00206{bottom:412.987067pt;}
.y15_c00206{bottom:443.627067pt;}
.y14_c00206{bottom:474.187067pt;}
.y13_c00206{bottom:514.267067pt;}
.y12_c00206{bottom:561.947067pt;}
.y11_c00206{bottom:592.587067pt;}
.y10_c00206{bottom:623.147067pt;}
.yf_c00206{bottom:653.787200pt;}
.ye_c00206{bottom:684.347200pt;}
.yd_c00206{bottom:722.987067pt;}
.yc_c00206{bottom:753.547067pt;}
.yb_c00206{bottom:784.187067pt;}
.ya_c00206{bottom:822.747067pt;}
.y9_c00206{bottom:853.387067pt;}
.y8_c00206{bottom:883.947067pt;}
.y7_c00206{bottom:914.587067pt;}
.y6_c00206{bottom:945.147067pt;}
.y5_c00206{bottom:983.787067pt;}
.y4_c00206{bottom:1014.347067pt;}
.y2_c00206{bottom:1046.987067pt;}
.y1_c00206{bottom:1063.867067pt;}
.h9_c00206{height:42.656250pt;}
.ha_c00206{height:44.388750pt;}
.h1_c00206{height:44.724687pt;}
.h2_c00206{height:50.062500pt;}
.h4_c00206{height:53.562500pt;}
.h7_c00206{height:57.893529pt;}
.h5_c00206{height:57.894063pt;}
.h3_c00206{height:64.142500pt;}
.h6_c00206{height:66.750000pt;}
.h8_c00206{height:72.423750pt;}
.h0_c00206{height:1122.666667pt;}
.w1_c00206{width:793.333333pt;}
.w0_c00206{width:793.626667pt;}
.x0_c00206{left:0.000000pt;}
.x1_c00206{left:113.440000pt;}
.x4_c00206{left:137.280000pt;}
.x2_c00206{left:160.720000pt;}
.x3_c00206{left:207.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2da7bf3f59c60f3fac4ad330.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00207;src:url('chunks/assets/font_b3b148ccc2c74df05c041c7f.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00207;src:url('chunks/assets/font_30772873fb1c1ab00a0f8e04.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00207{transform:matrix(0.000000,-0.250821,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250821,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250821,0.250000,0.000000,0,0);}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00207{transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);}
.m2_c00207{transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.v1_c00207{vertical-align:15.120000px;}
.ls10_c00207{letter-spacing:-1.321731px;}
.lsc_c00207{letter-spacing:-0.550341px;}
.ls9_c00207{letter-spacing:-0.151200px;}
.ls12_c00207{letter-spacing:-0.078156px;}
.lse_c00207{letter-spacing:-0.076781px;}
.ls15_c00207{letter-spacing:-0.043200px;}
.ls11_c00207{letter-spacing:-0.036072px;}
.ls16_c00207{letter-spacing:-0.036000px;}
.lsa_c00207{letter-spacing:-0.021600px;}
.ls14_c00207{letter-spacing:-0.014400px;}
.ls13_c00207{letter-spacing:-0.007200px;}
.ls8_c00207{letter-spacing:0.000000px;}
.lsb_c00207{letter-spacing:0.007200px;}
.ls3_c00207{letter-spacing:0.014400px;}
.ls7_c00207{letter-spacing:0.019152px;}
.ls6_c00207{letter-spacing:0.021600px;}
.ls0_c00207{letter-spacing:0.036072px;}
.ls1_c00207{letter-spacing:0.079200px;}
.ls5_c00207{letter-spacing:0.136080px;}
.ls4_c00207{letter-spacing:0.178242px;}
.lsd_c00207{letter-spacing:0.208406px;}
.lsf_c00207{letter-spacing:0.367452px;}
.ls2_c00207{letter-spacing:3.960000px;}
.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:-9.856080px;}
.ws1_c00207{word-spacing:-7.801502px;}
.wsd_c00207{word-spacing:-0.978958px;}
.wse_c00207{word-spacing:-0.723936px;}
.wsf_c00207{word-spacing:-0.619733px;}
.ws7_c00207{word-spacing:-0.306612px;}
.ws11_c00207{word-spacing:-0.228456px;}
.ws19_c00207{word-spacing:-0.021600px;}
.ws8_c00207{word-spacing:0.000000px;}
.ws18_c00207{word-spacing:0.014400px;}
.wsc_c00207{word-spacing:0.050400px;}
.ws10_c00207{word-spacing:0.126252px;}
.ws2a_c00207{word-spacing:0.129600px;}
.ws12_c00207{word-spacing:0.168336px;}
.ws23_c00207{word-spacing:0.374400px;}
.ws21_c00207{word-spacing:3.614400px;}
.ws1a_c00207{word-spacing:3.981600px;}
.ws9_c00207{word-spacing:4.060800px;}
.wsb_c00207{word-spacing:4.248000px;}
.wsa_c00207{word-spacing:4.341600px;}
.ws22_c00207{word-spacing:4.701600px;}
.ws20_c00207{word-spacing:5.644800px;}
.ws1f_c00207{word-spacing:5.781600px;}
.ws13_c00207{word-spacing:6.487200px;}
.ws1b_c00207{word-spacing:8.964000px;}
.ws1c_c00207{word-spacing:9.043200px;}
.ws16_c00207{word-spacing:10.404000px;}
.ws17_c00207{word-spacing:10.461600px;}
.ws26_c00207{word-spacing:10.821600px;}
.ws27_c00207{word-spacing:10.836000px;}
.ws15_c00207{word-spacing:11.858400px;}
.ws14_c00207{word-spacing:11.930400px;}
.ws28_c00207{word-spacing:16.207200px;}
.ws29_c00207{word-spacing:16.236000px;}
.ws0_c00207{word-spacing:20.179902px;}
.ws25_c00207{word-spacing:24.019200px;}
.ws24_c00207{word-spacing:24.055200px;}
.ws1e_c00207{word-spacing:31.334400px;}
.ws1d_c00207{word-spacing:31.384800px;}
.ws4_c00207{word-spacing:183.551452px;}
.ws2_c00207{word-spacing:183.877288px;}
.ws3_c00207{word-spacing:184.295309px;}
.ws5_c00207{word-spacing:185.910210px;}
._4_c00207{margin-left:-2.433107px;}
._0_c00207{margin-left:-1.022040px;}
._1_c00207{width:1.069488px;}
._7_c00207{width:2.118874px;}
._2_c00207{width:24.397695px;}
._3_c00207{width:26.915448px;}
._5_c00207{width:190.796520px;}
._6_c00207{width:192.699840px;}
.fc0_c00207{color:rgb(0,0,0);}
.fs3_c00207{font-size:22.281000px;}
.fs4_c00207{font-size:27.421800px;}
.fs5_c00207{font-size:38.880000px;}
.fs6_c00207{font-size:47.880000px;}
.fs2_c00207{font-size:54.000000px;}
.fs0_c00207{font-size:60.120000px;}
.fs1_c00207{font-size:72.000000px;}
.y0_c00207{bottom:0.000000px;}
.y15_c00207{bottom:45.090450px;}
.y3_c00207{bottom:57.450450px;}
.y4_c00207{bottom:61.410450px;}
.y2c_c00207{bottom:113.700450px;}
.y2b_c00207{bottom:128.910450px;}
.y2a_c00207{bottom:149.610450px;}
.y29_c00207{bottom:170.310450px;}
.y28_c00207{bottom:289.200450px;}
.y27_c00207{bottom:323.580450px;}
.y26_c00207{bottom:358.050450px;}
.y25_c00207{bottom:392.430450px;}
.y24_c00207{bottom:435.900450px;}
.y23_c00207{bottom:470.280450px;}
.y22_c00207{bottom:504.750450px;}
.y21_c00207{bottom:539.130450px;}
.y20_c00207{bottom:582.600450px;}
.y1f_c00207{bottom:616.980450px;}
.y1e_c00207{bottom:651.450450px;}
.y1d_c00207{bottom:685.830450px;}
.y1c_c00207{bottom:729.300450px;}
.y1b_c00207{bottom:763.680450px;}
.y1a_c00207{bottom:798.150450px;}
.y19_c00207{bottom:832.530450px;}
.y18_c00207{bottom:870.060450px;}
.y17_c00207{bottom:897.060450px;}
.y16_c00207{bottom:903.360450px;}
.y12_c00207{bottom:914.520450px;}
.y11_c00207{bottom:922.442182px;}
.y7_c00207{bottom:930.630450px;}
.y8_c00207{bottom:946.021051px;}
.y9_c00207{bottom:961.500775px;}
.ya_c00207{bottom:977.342566px;}
.y14_c00207{bottom:978.420000px;}
.y13_c00207{bottom:978.510450px;}
.yb_c00207{bottom:992.733167px;}
.yc_c00207{bottom:1008.212892px;}
.yd_c00207{bottom:1023.603493px;}
.ye_c00207{bottom:1039.445284px;}
.yf_c00207{bottom:1054.925008px;}
.y10_c00207{bottom:1070.315609px;}
.y6_c00207{bottom:1106.760450px;}
.y5_c00207{bottom:1141.140450px;}
.y2_c00207{bottom:1173.810450px;}
.y1_c00207{bottom:1196.850450px;}
.h6_c00207{height:23.238387px;}
.h7_c00207{height:28.600080px;}
.h2_c00207{height:47.988281px;}
.h8_c00207{height:48.060000px;}
.h9_c00207{height:49.937344px;}
.h1_c00207{height:50.315273px;}
.h3_c00207{height:56.320312px;}
.h5_c00207{height:60.257812px;}
.h4_c00207{height:60.328125px;}
.h0_c00207{height:1263.000000px;}
.w2_c00207{width:8.010000px;}
.w1_c00207{width:892.500000px;}
.w0_c00207{width:892.830000px;}
.x0_c00207{left:0.000000px;}
.xb_c00207{left:6.390000px;}
.xa_c00207{left:110.250000px;}
.x5_c00207{left:114.120000px;}
.x9_c00207{left:116.640000px;}
.x6_c00207{left:121.050000px;}
.x7_c00207{left:122.312978px;}
.x2_c00207{left:127.620000px;}
.xf_c00207{left:180.720000px;}
.xe_c00207{left:197.100000px;}
.xc_c00207{left:223.290000px;}
.x4_c00207{left:435.240000px;}
.x3_c00207{left:446.490000px;}
.x1_c00207{left:490.770000px;}
.x8_c00207{left:763.290000px;}
.xd_c00207{left:799.470000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.v1_c00207{vertical-align:13.440000pt;}
.ls10_c00207{letter-spacing:-1.174872pt;}
.lsc_c00207{letter-spacing:-0.489192pt;}
.ls9_c00207{letter-spacing:-0.134400pt;}
.ls12_c00207{letter-spacing:-0.069472pt;}
.lse_c00207{letter-spacing:-0.068250pt;}
.ls15_c00207{letter-spacing:-0.038400pt;}
.ls11_c00207{letter-spacing:-0.032064pt;}
.ls16_c00207{letter-spacing:-0.032000pt;}
.lsa_c00207{letter-spacing:-0.019200pt;}
.ls14_c00207{letter-spacing:-0.012800pt;}
.ls13_c00207{letter-spacing:-0.006400pt;}
.ls8_c00207{letter-spacing:0.000000pt;}
.lsb_c00207{letter-spacing:0.006400pt;}
.ls3_c00207{letter-spacing:0.012800pt;}
.ls7_c00207{letter-spacing:0.017024pt;}
.ls6_c00207{letter-spacing:0.019200pt;}
.ls0_c00207{letter-spacing:0.032064pt;}
.ls1_c00207{letter-spacing:0.070400pt;}
.ls5_c00207{letter-spacing:0.120960pt;}
.ls4_c00207{letter-spacing:0.158437pt;}
.lsd_c00207{letter-spacing:0.185249pt;}
.lsf_c00207{letter-spacing:0.326624pt;}
.ls2_c00207{letter-spacing:3.520000pt;}
.ws6_c00207{word-spacing:-8.760960pt;}
.ws1_c00207{word-spacing:-6.934669pt;}
.wsd_c00207{word-spacing:-0.870185pt;}
.wse_c00207{word-spacing:-0.643498pt;}
.wsf_c00207{word-spacing:-0.550873pt;}
.ws7_c00207{word-spacing:-0.272544pt;}
.ws11_c00207{word-spacing:-0.203072pt;}
.ws19_c00207{word-spacing:-0.019200pt;}
.ws8_c00207{word-spacing:0.000000pt;}
.ws18_c00207{word-spacing:0.012800pt;}
.wsc_c00207{word-spacing:0.044800pt;}
.ws10_c00207{word-spacing:0.112224pt;}
.ws2a_c00207{word-spacing:0.115200pt;}
.ws12_c00207{word-spacing:0.149632pt;}
.ws23_c00207{word-spacing:0.332800pt;}
.ws21_c00207{word-spacing:3.212800pt;}
.ws1a_c00207{word-spacing:3.539200pt;}
.ws9_c00207{word-spacing:3.609600pt;}
.wsb_c00207{word-spacing:3.776000pt;}
.wsa_c00207{word-spacing:3.859200pt;}
.ws22_c00207{word-spacing:4.179200pt;}
.ws20_c00207{word-spacing:5.017600pt;}
.ws1f_c00207{word-spacing:5.139200pt;}
.ws13_c00207{word-spacing:5.766400pt;}
.ws1b_c00207{word-spacing:7.968000pt;}
.ws1c_c00207{word-spacing:8.038400pt;}
.ws16_c00207{word-spacing:9.248000pt;}
.ws17_c00207{word-spacing:9.299200pt;}
.ws26_c00207{word-spacing:9.619200pt;}
.ws27_c00207{word-spacing:9.632000pt;}
.ws15_c00207{word-spacing:10.540800pt;}
.ws14_c00207{word-spacing:10.604800pt;}
.ws28_c00207{word-spacing:14.406400pt;}
.ws29_c00207{word-spacing:14.432000pt;}
.ws0_c00207{word-spacing:17.937690pt;}
.ws25_c00207{word-spacing:21.350400pt;}
.ws24_c00207{word-spacing:21.382400pt;}
.ws1e_c00207{word-spacing:27.852800pt;}
.ws1d_c00207{word-spacing:27.897600pt;}
.ws4_c00207{word-spacing:163.156846pt;}
.ws2_c00207{word-spacing:163.446478pt;}
.ws3_c00207{word-spacing:163.818052pt;}
.ws5_c00207{word-spacing:165.253520pt;}
._4_c00207{margin-left:-2.162762pt;}
._0_c00207{margin-left:-0.908480pt;}
._1_c00207{width:0.950656pt;}
._7_c00207{width:1.883444pt;}
._2_c00207{width:21.686840pt;}
._3_c00207{width:23.924843pt;}
._5_c00207{width:169.596907pt;}
._6_c00207{width:171.288746pt;}
.fs3_c00207{font-size:19.805333pt;}
.fs4_c00207{font-size:24.374933pt;}
.fs5_c00207{font-size:34.560000pt;}
.fs6_c00207{font-size:42.560000pt;}
.fs2_c00207{font-size:48.000000pt;}
.fs0_c00207{font-size:53.440000pt;}
.fs1_c00207{font-size:64.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y15_c00207{bottom:40.080400pt;}
.y3_c00207{bottom:51.067067pt;}
.y4_c00207{bottom:54.587067pt;}
.y2c_c00207{bottom:101.067067pt;}
.y2b_c00207{bottom:114.587067pt;}
.y2a_c00207{bottom:132.987067pt;}
.y29_c00207{bottom:151.387067pt;}
.y28_c00207{bottom:257.067067pt;}
.y27_c00207{bottom:287.627067pt;}
.y26_c00207{bottom:318.267067pt;}
.y25_c00207{bottom:348.827067pt;}
.y24_c00207{bottom:387.467067pt;}
.y23_c00207{bottom:418.027067pt;}
.y22_c00207{bottom:448.667067pt;}
.y21_c00207{bottom:479.227067pt;}
.y20_c00207{bottom:517.867067pt;}
.y1f_c00207{bottom:548.427067pt;}
.y1e_c00207{bottom:579.067067pt;}
.y1d_c00207{bottom:609.627067pt;}
.y1c_c00207{bottom:648.267067pt;}
.y1b_c00207{bottom:678.827067pt;}
.y1a_c00207{bottom:709.467067pt;}
.y19_c00207{bottom:740.027067pt;}
.y18_c00207{bottom:773.387067pt;}
.y17_c00207{bottom:797.387067pt;}
.y16_c00207{bottom:802.987067pt;}
.y12_c00207{bottom:812.907067pt;}
.y11_c00207{bottom:819.948607pt;}
.y7_c00207{bottom:827.227067pt;}
.y8_c00207{bottom:840.907601pt;}
.y9_c00207{bottom:854.667356pt;}
.ya_c00207{bottom:868.748948pt;}
.y14_c00207{bottom:869.706667pt;}
.y13_c00207{bottom:869.787067pt;}
.yb_c00207{bottom:882.429482pt;}
.yc_c00207{bottom:896.189237pt;}
.yd_c00207{bottom:909.869771pt;}
.ye_c00207{bottom:923.951363pt;}
.yf_c00207{bottom:937.711119pt;}
.y10_c00207{bottom:951.391653pt;}
.y6_c00207{bottom:983.787067pt;}
.y5_c00207{bottom:1014.347067pt;}
.y2_c00207{bottom:1043.387067pt;}
.y1_c00207{bottom:1063.867067pt;}
.h6_c00207{height:20.656344pt;}
.h7_c00207{height:25.422294pt;}
.h2_c00207{height:42.656250pt;}
.h8_c00207{height:42.720000pt;}
.h9_c00207{height:44.388750pt;}
.h1_c00207{height:44.724687pt;}
.h3_c00207{height:50.062500pt;}
.h5_c00207{height:53.562500pt;}
.h4_c00207{height:53.625000pt;}
.h0_c00207{height:1122.666667pt;}
.w2_c00207{width:7.120000pt;}
.w1_c00207{width:793.333333pt;}
.w0_c00207{width:793.626667pt;}
.x0_c00207{left:0.000000pt;}
.xb_c00207{left:5.680000pt;}
.xa_c00207{left:98.000000pt;}
.x5_c00207{left:101.440000pt;}
.x9_c00207{left:103.680000pt;}
.x6_c00207{left:107.600000pt;}
.x7_c00207{left:108.722647pt;}
.x2_c00207{left:113.440000pt;}
.xf_c00207{left:160.640000pt;}
.xe_c00207{left:175.200000pt;}
.xc_c00207{left:198.480000pt;}
.x4_c00207{left:386.880000pt;}
.x3_c00207{left:396.880000pt;}
.x1_c00207{left:436.240000pt;}
.x8_c00207{left:678.480000pt;}
.xd_c00207{left:710.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_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_16d48b576653d2083dbed7d8.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.100098;font-style:normal;font-weight:normal;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_709c29751d3c4963e04ed150.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00208;src:url('chunks/assets/font_42fca539a7ade4a0d748d88a.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00208;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00208{font-family:ff5_c00208;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00208;src:url('chunks/assets/font_2779a907ee8dde064e5896e9.woff2')format("woff");}.ff6_c00208{font-family:ff6_c00208;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00208{vertical-align:15.840000px;}
.v2_c00208{vertical-align:29.880000px;}
.lse_c00208{letter-spacing:-0.151200px;}
.ls16_c00208{letter-spacing:-0.043200px;}
.ls10_c00208{letter-spacing:-0.031248px;}
.ls11_c00208{letter-spacing:-0.028800px;}
.ls14_c00208{letter-spacing:-0.021600px;}
.ls13_c00208{letter-spacing:-0.014400px;}
.lsf_c00208{letter-spacing:-0.007812px;}
.ls12_c00208{letter-spacing:-0.007200px;}
.lsd_c00208{letter-spacing:0.000000px;}
.lsb_c00208{letter-spacing:0.003888px;}
.ls3_c00208{letter-spacing:0.007200px;}
.lsa_c00208{letter-spacing:0.014364px;}
.ls7_c00208{letter-spacing:0.014400px;}
.lsc_c00208{letter-spacing:0.019152px;}
.ls15_c00208{letter-spacing:0.021600px;}
.ls9_c00208{letter-spacing:0.033516px;}
.ls17_c00208{letter-spacing:0.038304px;}
.ls0_c00208{letter-spacing:0.048096px;}
.ls6_c00208{letter-spacing:0.054756px;}
.ls8_c00208{letter-spacing:0.072000px;}
.ls4_c00208{letter-spacing:0.144000px;}
.ls2_c00208{letter-spacing:11.796120px;}
.ls5_c00208{letter-spacing:65.304000px;}
.ls1_c00208{letter-spacing:1212.120000px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00208{word-spacing:-19.522188px;}
.ws1_c00208{word-spacing:-18.000000px;}
.ws3_c00208{word-spacing:-13.310640px;}
.ws4_c00208{word-spacing:-10.812528px;}
.ws2_c00208{word-spacing:-10.584756px;}
.ws7_c00208{word-spacing:-0.109368px;}
.ws2c_c00208{word-spacing:-0.019152px;}
.ws2a_c00208{word-spacing:-0.014364px;}
.ws20_c00208{word-spacing:-0.007200px;}
.ws6_c00208{word-spacing:0.000000px;}
.ws2b_c00208{word-spacing:0.004788px;}
.wsf_c00208{word-spacing:0.014400px;}
.ws5_c00208{word-spacing:0.042084px;}
.ws28_c00208{word-spacing:0.367200px;}
.ws12_c00208{word-spacing:0.705600px;}
.ws11_c00208{word-spacing:0.741600px;}
.ws1a_c00208{word-spacing:1.843200px;}
.ws19_c00208{word-spacing:1.864800px;}
.ws9_c00208{word-spacing:2.167200px;}
.ws8_c00208{word-spacing:2.188800px;}
.ws26_c00208{word-spacing:4.248000px;}
.wsd_c00208{word-spacing:4.262400px;}
.wsc_c00208{word-spacing:4.312800px;}
.ws25_c00208{word-spacing:4.320000px;}
.ws16_c00208{word-spacing:4.982400px;}
.ws18_c00208{word-spacing:5.047200px;}
.ws15_c00208{word-spacing:5.061600px;}
.wse_c00208{word-spacing:5.421600px;}
.ws21_c00208{word-spacing:5.767200px;}
.ws22_c00208{word-spacing:5.832000px;}
.ws1b_c00208{word-spacing:6.494400px;}
.ws14_c00208{word-spacing:6.588000px;}
.ws13_c00208{word-spacing:6.624000px;}
.ws23_c00208{word-spacing:7.192800px;}
.wsb_c00208{word-spacing:7.560000px;}
.wsa_c00208{word-spacing:7.632000px;}
.ws24_c00208{word-spacing:8.229600px;}
.ws17_c00208{word-spacing:8.668800px;}
.ws27_c00208{word-spacing:9.741600px;}
.ws1f_c00208{word-spacing:12.988800px;}
.ws1e_c00208{word-spacing:13.003200px;}
.ws10_c00208{word-spacing:15.861600px;}
.ws29_c00208{word-spacing:17.992800px;}
.ws1d_c00208{word-spacing:19.785600px;}
.ws1c_c00208{word-spacing:19.814400px;}
._0_c00208{margin-left:-1.322640px;}
._1_c00208{width:1.080000px;}
.fc0_c00208{color:rgb(0,0,0);}
.fs6_c00208{font-size:38.880000px;}
.fs4_c00208{font-size:42.120000px;}
.fs5_c00208{font-size:47.880000px;}
.fs1_c00208{font-size:54.000000px;}
.fs0_c00208{font-size:60.120000px;}
.fs2_c00208{font-size:72.000000px;}
.fs3_c00208{font-size:78.120000px;}
.y0_c00208{bottom:0.000000px;}
.y3_c00208{bottom:57.450450px;}
.y22_c00208{bottom:113.698470px;}
.y21_c00208{bottom:132.060450px;}
.y20_c00208{bottom:147.270450px;}
.y1f_c00208{bottom:167.970450px;}
.y1e_c00208{bottom:188.670450px;}
.y1d_c00208{bottom:232.680450px;}
.y1c_c00208{bottom:267.060450px;}
.y1b_c00208{bottom:301.530450px;}
.y1a_c00208{bottom:335.910450px;}
.y19_c00208{bottom:370.380450px;}
.y18_c00208{bottom:404.760450px;}
.y17_c00208{bottom:448.230450px;}
.y16_c00208{bottom:482.610450px;}
.y15_c00208{bottom:526.080450px;}
.y14_c00208{bottom:560.460450px;}
.y13_c00208{bottom:594.930600px;}
.y12_c00208{bottom:629.310600px;}
.y11_c00208{bottom:663.780600px;}
.y10_c00208{bottom:698.160600px;}
.yf_c00208{bottom:741.630600px;}
.ye_c00208{bottom:776.010600px;}
.yd_c00208{bottom:810.480600px;}
.yc_c00208{bottom:844.860450px;}
.yb_c00208{bottom:879.330450px;}
.ya_c00208{bottom:913.710450px;}
.y9_c00208{bottom:957.180450px;}
.y8_c00208{bottom:991.560450px;}
.y7_c00208{bottom:1026.030450px;}
.y6_c00208{bottom:1060.410450px;}
.y5_c00208{bottom:1094.880450px;}
.y4_c00208{bottom:1139.880450px;}
.y2_c00208{bottom:1177.860450px;}
.y1_c00208{bottom:1196.850450px;}
.h9_c00208{height:47.988281px;}
.ha_c00208{height:49.937344px;}
.hb_c00208{height:49.945264px;}
.h1_c00208{height:50.315273px;}
.h2_c00208{height:56.320312px;}
.h5_c00208{height:60.257812px;}
.h8_c00208{height:65.130220px;}
.h7_c00208{height:65.130820px;}
.h3_c00208{height:72.160312px;}
.h6_c00208{height:75.093750px;}
.h4_c00208{height:81.476719px;}
.h0_c00208{height:1263.000000px;}
.w1_c00208{width:892.500000px;}
.w0_c00208{width:892.830000px;}
.x0_c00208{left:0.000000px;}
.x1_c00208{left:127.620000px;}
.x2_c00208{left:180.720000px;}
.x3_c00208{left:207.540000px;}
.x4_c00208{left:259.020000px;}
.x5_c00208{left:260.730000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.v1_c00208{vertical-align:14.080000pt;}
.v2_c00208{vertical-align:26.560000pt;}
.lse_c00208{letter-spacing:-0.134400pt;}
.ls16_c00208{letter-spacing:-0.038400pt;}
.ls10_c00208{letter-spacing:-0.027776pt;}
.ls11_c00208{letter-spacing:-0.025600pt;}
.ls14_c00208{letter-spacing:-0.019200pt;}
.ls13_c00208{letter-spacing:-0.012800pt;}
.lsf_c00208{letter-spacing:-0.006944pt;}
.ls12_c00208{letter-spacing:-0.006400pt;}
.lsd_c00208{letter-spacing:0.000000pt;}
.lsb_c00208{letter-spacing:0.003456pt;}
.ls3_c00208{letter-spacing:0.006400pt;}
.lsa_c00208{letter-spacing:0.012768pt;}
.ls7_c00208{letter-spacing:0.012800pt;}
.lsc_c00208{letter-spacing:0.017024pt;}
.ls15_c00208{letter-spacing:0.019200pt;}
.ls9_c00208{letter-spacing:0.029792pt;}
.ls17_c00208{letter-spacing:0.034048pt;}
.ls0_c00208{letter-spacing:0.042752pt;}
.ls6_c00208{letter-spacing:0.048672pt;}
.ls8_c00208{letter-spacing:0.064000pt;}
.ls4_c00208{letter-spacing:0.128000pt;}
.ls2_c00208{letter-spacing:10.485440pt;}
.ls5_c00208{letter-spacing:58.048000pt;}
.ls1_c00208{letter-spacing:1077.440000pt;}
.ws0_c00208{word-spacing:-17.353056pt;}
.ws1_c00208{word-spacing:-16.000000pt;}
.ws3_c00208{word-spacing:-11.831680pt;}
.ws4_c00208{word-spacing:-9.611136pt;}
.ws2_c00208{word-spacing:-9.408672pt;}
.ws7_c00208{word-spacing:-0.097216pt;}
.ws2c_c00208{word-spacing:-0.017024pt;}
.ws2a_c00208{word-spacing:-0.012768pt;}
.ws20_c00208{word-spacing:-0.006400pt;}
.ws6_c00208{word-spacing:0.000000pt;}
.ws2b_c00208{word-spacing:0.004256pt;}
.wsf_c00208{word-spacing:0.012800pt;}
.ws5_c00208{word-spacing:0.037408pt;}
.ws28_c00208{word-spacing:0.326400pt;}
.ws12_c00208{word-spacing:0.627200pt;}
.ws11_c00208{word-spacing:0.659200pt;}
.ws1a_c00208{word-spacing:1.638400pt;}
.ws19_c00208{word-spacing:1.657600pt;}
.ws9_c00208{word-spacing:1.926400pt;}
.ws8_c00208{word-spacing:1.945600pt;}
.ws26_c00208{word-spacing:3.776000pt;}
.wsd_c00208{word-spacing:3.788800pt;}
.wsc_c00208{word-spacing:3.833600pt;}
.ws25_c00208{word-spacing:3.840000pt;}
.ws16_c00208{word-spacing:4.428800pt;}
.ws18_c00208{word-spacing:4.486400pt;}
.ws15_c00208{word-spacing:4.499200pt;}
.wse_c00208{word-spacing:4.819200pt;}
.ws21_c00208{word-spacing:5.126400pt;}
.ws22_c00208{word-spacing:5.184000pt;}
.ws1b_c00208{word-spacing:5.772800pt;}
.ws14_c00208{word-spacing:5.856000pt;}
.ws13_c00208{word-spacing:5.888000pt;}
.ws23_c00208{word-spacing:6.393600pt;}
.wsb_c00208{word-spacing:6.720000pt;}
.wsa_c00208{word-spacing:6.784000pt;}
.ws24_c00208{word-spacing:7.315200pt;}
.ws17_c00208{word-spacing:7.705600pt;}
.ws27_c00208{word-spacing:8.659200pt;}
.ws1f_c00208{word-spacing:11.545600pt;}
.ws1e_c00208{word-spacing:11.558400pt;}
.ws10_c00208{word-spacing:14.099200pt;}
.ws29_c00208{word-spacing:15.993600pt;}
.ws1d_c00208{word-spacing:17.587200pt;}
.ws1c_c00208{word-spacing:17.612800pt;}
._0_c00208{margin-left:-1.175680pt;}
._1_c00208{width:0.960000pt;}
.fs6_c00208{font-size:34.560000pt;}
.fs4_c00208{font-size:37.440000pt;}
.fs5_c00208{font-size:42.560000pt;}
.fs1_c00208{font-size:48.000000pt;}
.fs0_c00208{font-size:53.440000pt;}
.fs2_c00208{font-size:64.000000pt;}
.fs3_c00208{font-size:69.440000pt;}
.y0_c00208{bottom:0.000000pt;}
.y3_c00208{bottom:51.067067pt;}
.y22_c00208{bottom:101.065307pt;}
.y21_c00208{bottom:117.387067pt;}
.y20_c00208{bottom:130.907067pt;}
.y1f_c00208{bottom:149.307067pt;}
.y1e_c00208{bottom:167.707067pt;}
.y1d_c00208{bottom:206.827067pt;}
.y1c_c00208{bottom:237.387067pt;}
.y1b_c00208{bottom:268.027067pt;}
.y1a_c00208{bottom:298.587067pt;}
.y19_c00208{bottom:329.227067pt;}
.y18_c00208{bottom:359.787067pt;}
.y17_c00208{bottom:398.427067pt;}
.y16_c00208{bottom:428.987067pt;}
.y15_c00208{bottom:467.627067pt;}
.y14_c00208{bottom:498.187067pt;}
.y13_c00208{bottom:528.827200pt;}
.y12_c00208{bottom:559.387200pt;}
.y11_c00208{bottom:590.027200pt;}
.y10_c00208{bottom:620.587200pt;}
.yf_c00208{bottom:659.227200pt;}
.ye_c00208{bottom:689.787200pt;}
.yd_c00208{bottom:720.427200pt;}
.yc_c00208{bottom:750.987067pt;}
.yb_c00208{bottom:781.627067pt;}
.ya_c00208{bottom:812.187067pt;}
.y9_c00208{bottom:850.827067pt;}
.y8_c00208{bottom:881.387067pt;}
.y7_c00208{bottom:912.027067pt;}
.y6_c00208{bottom:942.587067pt;}
.y5_c00208{bottom:973.227067pt;}
.y4_c00208{bottom:1013.227067pt;}
.y2_c00208{bottom:1046.987067pt;}
.y1_c00208{bottom:1063.867067pt;}
.h9_c00208{height:42.656250pt;}
.ha_c00208{height:44.388750pt;}
.hb_c00208{height:44.395790pt;}
.h1_c00208{height:44.724687pt;}
.h2_c00208{height:50.062500pt;}
.h5_c00208{height:53.562500pt;}
.h8_c00208{height:57.893529pt;}
.h7_c00208{height:57.894063pt;}
.h3_c00208{height:64.142500pt;}
.h6_c00208{height:66.750000pt;}
.h4_c00208{height:72.423750pt;}
.h0_c00208{height:1122.666667pt;}
.w1_c00208{width:793.333333pt;}
.w0_c00208{width:793.626667pt;}
.x0_c00208{left:0.000000pt;}
.x1_c00208{left:113.440000pt;}
.x2_c00208{left:160.640000pt;}
.x3_c00208{left:184.480000pt;}
.x4_c00208{left:230.240000pt;}
.x5_c00208{left:231.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_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_8597874ae84722bc2e63acc7.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_0f1f6d79fa6821a8f0a40d0e.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00209;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00209;src:url('chunks/assets/font_1b8846f5b56e02bd0955b2aa.woff2')format("woff");}.ff5_c00209{font-family:ff5_c00209;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_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;}
.v1_c00209{vertical-align:29.880000px;}
.ls13_c00209{letter-spacing:-0.151200px;}
.ls1a_c00209{letter-spacing:-0.144000px;}
.ls18_c00209{letter-spacing:-0.036000px;}
.ls1b_c00209{letter-spacing:-0.028800px;}
.ls15_c00209{letter-spacing:-0.021600px;}
.ls14_c00209{letter-spacing:-0.014400px;}
.ls1e_c00209{letter-spacing:-0.007776px;}
.ls19_c00209{letter-spacing:-0.007200px;}
.ls1d_c00209{letter-spacing:-0.003888px;}
.ls12_c00209{letter-spacing:0.000000px;}
.ls16_c00209{letter-spacing:0.007200px;}
.ls4_c00209{letter-spacing:0.014364px;}
.ls2_c00209{letter-spacing:0.014400px;}
.ls8_c00209{letter-spacing:0.019152px;}
.ls9_c00209{letter-spacing:0.023940px;}
.lsd_c00209{letter-spacing:0.028728px;}
.ls17_c00209{letter-spacing:0.028800px;}
.ls7_c00209{letter-spacing:0.033516px;}
.ls0_c00209{letter-spacing:0.036072px;}
.lsc_c00209{letter-spacing:0.038304px;}
.lsb_c00209{letter-spacing:0.043092px;}
.ls11_c00209{letter-spacing:0.047880px;}
.ls1_c00209{letter-spacing:0.054756px;}
.ls6_c00209{letter-spacing:0.057456px;}
.ls10_c00209{letter-spacing:0.067032px;}
.lsa_c00209{letter-spacing:0.071820px;}
.lse_c00209{letter-spacing:0.090972px;}
.ls1c_c00209{letter-spacing:0.093600px;}
.lsf_c00209{letter-spacing:0.104040px;}
.ls5_c00209{letter-spacing:0.105336px;}
.ls20_c00209{letter-spacing:0.353808px;}
.ls1f_c00209{letter-spacing:0.357696px;}
.ls21_c00209{letter-spacing:0.378252px;}
.ls3_c00209{letter-spacing:44.784000px;}
.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;}
}
.ws3_c00209{word-spacing:-13.310640px;}
.ws4_c00209{word-spacing:-11.166336px;}
.ws5_c00209{word-spacing:-11.162448px;}
.ws1_c00209{word-spacing:-10.804752px;}
.ws2_c00209{word-spacing:-10.800864px;}
.ws0_c00209{word-spacing:-10.584756px;}
.ws6_c00209{word-spacing:-0.306612px;}
.ws3c_c00209{word-spacing:-0.052668px;}
.ws3a_c00209{word-spacing:-0.038304px;}
.ws37_c00209{word-spacing:-0.028728px;}
.ws3b_c00209{word-spacing:-0.023940px;}
.ws31_c00209{word-spacing:-0.019152px;}
.ws20_c00209{word-spacing:-0.014400px;}
.ws47_c00209{word-spacing:-0.014364px;}
.ws46_c00209{word-spacing:-0.009576px;}
.ws38_c00209{word-spacing:-0.004788px;}
.ws7_c00209{word-spacing:0.000000px;}
.ws39_c00209{word-spacing:0.004788px;}
.ws1f_c00209{word-spacing:0.007200px;}
.ws1e_c00209{word-spacing:0.014400px;}
.ws19_c00209{word-spacing:0.021600px;}
.ws21_c00209{word-spacing:0.727200px;}
.ws27_c00209{word-spacing:1.398096px;}
.ws28_c00209{word-spacing:1.422036px;}
.ws25_c00209{word-spacing:1.441188px;}
.ws26_c00209{word-spacing:1.714104px;}
.wsf_c00209{word-spacing:1.836000px;}
.ws18_c00209{word-spacing:2.102400px;}
.ws17_c00209{word-spacing:2.188800px;}
.ws1b_c00209{word-spacing:5.450400px;}
.ws30_c00209{word-spacing:5.688144px;}
.ws44_c00209{word-spacing:5.716872px;}
.ws45_c00209{word-spacing:5.736024px;}
.ws2f_c00209{word-spacing:5.750388px;}
.wsd_c00209{word-spacing:6.105600px;}
.wse_c00209{word-spacing:6.163200px;}
.ws2b_c00209{word-spacing:6.425496px;}
.wsc_c00209{word-spacing:6.451200px;}
.ws2c_c00209{word-spacing:6.454224px;}
.wsb_c00209{word-spacing:6.472800px;}
.ws2a_c00209{word-spacing:6.473376px;}
.ws29_c00209{word-spacing:6.482952px;}
.ws10_c00209{word-spacing:6.487200px;}
.ws11_c00209{word-spacing:6.552000px;}
.ws12_c00209{word-spacing:6.624000px;}
.ws1a_c00209{word-spacing:7.603200px;}
.ws14_c00209{word-spacing:7.963200px;}
.ws15_c00209{word-spacing:8.049600px;}
.ws36_c00209{word-spacing:8.584884px;}
.ws8_c00209{word-spacing:8.589600px;}
.ws34_c00209{word-spacing:8.589672px;}
.ws35_c00209{word-spacing:8.599248px;}
.ws9_c00209{word-spacing:8.640000px;}
.ws32_c00209{word-spacing:8.642340px;}
.ws33_c00209{word-spacing:8.643024px;}
.ws13_c00209{word-spacing:8.704800px;}
.ws23_c00209{word-spacing:11.829600px;}
.ws22_c00209{word-spacing:11.908800px;}
.ws3e_c00209{word-spacing:12.238128px;}
.ws40_c00209{word-spacing:12.578076px;}
.ws3f_c00209{word-spacing:12.587652px;}
.ws3d_c00209{word-spacing:12.602016px;}
.ws42_c00209{word-spacing:12.918024px;}
.ws41_c00209{word-spacing:12.927600px;}
.ws43_c00209{word-spacing:14.359212px;}
.ws2d_c00209{word-spacing:14.373576px;}
.ws2e_c00209{word-spacing:14.378364px;}
.wsa_c00209{word-spacing:20.541600px;}
.ws1d_c00209{word-spacing:24.825600px;}
.ws1c_c00209{word-spacing:24.847200px;}
.ws24_c00209{word-spacing:27.345600px;}
.ws16_c00209{word-spacing:28.080000px;}
._0_c00209{margin-left:-1.022040px;}
._1_c00209{width:1.080000px;}
._2_c00209{width:6.921216px;}
._3_c00209{width:13.006800px;}
.fc0_c00209{color:rgb(0,0,0);}
.fs5_c00209{font-size:38.880000px;}
.fs3_c00209{font-size:42.120000px;}
.fs4_c00209{font-size:47.880000px;}
.fs2_c00209{font-size:54.000000px;}
.fs0_c00209{font-size:60.120000px;}
.fs1_c00209{font-size:72.000000px;}
.y0_c00209{bottom:0.000000px;}
.y3_c00209{bottom:57.450450px;}
.y4_c00209{bottom:61.410450px;}
.y2c_c00209{bottom:113.712510px;}
.y2b_c00209{bottom:132.074490px;}
.y2a_c00209{bottom:150.340710px;}
.y29_c00209{bottom:168.606930px;}
.y28_c00209{bottom:182.468190px;}
.y27_c00209{bottom:196.149900px;}
.y26_c00209{bottom:209.915400px;}
.y25_c00209{bottom:223.864230px;}
.y24_c00209{bottom:242.132970px;}
.y23_c00209{bottom:260.399190px;}
.y22_c00209{bottom:274.271970px;}
.y21_c00209{bottom:292.538190px;}
.y20_c00209{bottom:306.303690px;}
.y1f_c00209{bottom:319.985400px;}
.y1e_c00209{bottom:333.938730px;}
.y1d_c00209{bottom:352.204950px;}
.y1c_c00209{bottom:365.970450px;}
.y1b_c00209{bottom:381.180450px;}
.y1a_c00209{bottom:401.880450px;}
.y19_c00209{bottom:422.580450px;}
.y18_c00209{bottom:451.110450px;}
.y17_c00209{bottom:485.490450px;}
.y16_c00209{bottom:519.960450px;}
.y15_c00209{bottom:563.340450px;}
.y14_c00209{bottom:606.810450px;}
.y13_c00209{bottom:641.190450px;}
.y12_c00209{bottom:684.660450px;}
.y11_c00209{bottom:719.040450px;}
.y10_c00209{bottom:753.510450px;}
.yf_c00209{bottom:796.890450px;}
.ye_c00209{bottom:831.360450px;}
.yd_c00209{bottom:865.740450px;}
.yc_c00209{bottom:900.210450px;}
.yb_c00209{bottom:934.590450px;}
.ya_c00209{bottom:969.060450px;}
.y9_c00209{bottom:1003.440450px;}
.y8_c00209{bottom:1037.910450px;}
.y7_c00209{bottom:1072.290450px;}
.y6_c00209{bottom:1106.760450px;}
.y5_c00209{bottom:1141.140450px;}
.y2_c00209{bottom:1173.810450px;}
.y1_c00209{bottom:1196.850450px;}
.h2_c00209{height:47.988281px;}
.h7_c00209{height:49.937344px;}
.h1_c00209{height:50.315273px;}
.h3_c00209{height:56.320312px;}
.h5_c00209{height:60.257812px;}
.h4_c00209{height:65.130820px;}
.h6_c00209{height:75.093750px;}
.h0_c00209{height:1263.000000px;}
.w1_c00209{width:892.500000px;}
.w0_c00209{width:892.830000px;}
.x0_c00209{left:0.000000px;}
.x2_c00209{left:127.620000px;}
.x9_c00209{left:154.440270px;}
.x8_c00209{left:180.810000px;}
.x5_c00209{left:207.540000px;}
.x6_c00209{left:234.810000px;}
.x7_c00209{left:261.810000px;}
.x4_c00209{left:435.240000px;}
.x3_c00209{left:446.490000px;}
.x1_c00209{left:490.770000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.v1_c00209{vertical-align:26.560000pt;}
.ls13_c00209{letter-spacing:-0.134400pt;}
.ls1a_c00209{letter-spacing:-0.128000pt;}
.ls18_c00209{letter-spacing:-0.032000pt;}
.ls1b_c00209{letter-spacing:-0.025600pt;}
.ls15_c00209{letter-spacing:-0.019200pt;}
.ls14_c00209{letter-spacing:-0.012800pt;}
.ls1e_c00209{letter-spacing:-0.006912pt;}
.ls19_c00209{letter-spacing:-0.006400pt;}
.ls1d_c00209{letter-spacing:-0.003456pt;}
.ls12_c00209{letter-spacing:0.000000pt;}
.ls16_c00209{letter-spacing:0.006400pt;}
.ls4_c00209{letter-spacing:0.012768pt;}
.ls2_c00209{letter-spacing:0.012800pt;}
.ls8_c00209{letter-spacing:0.017024pt;}
.ls9_c00209{letter-spacing:0.021280pt;}
.lsd_c00209{letter-spacing:0.025536pt;}
.ls17_c00209{letter-spacing:0.025600pt;}
.ls7_c00209{letter-spacing:0.029792pt;}
.ls0_c00209{letter-spacing:0.032064pt;}
.lsc_c00209{letter-spacing:0.034048pt;}
.lsb_c00209{letter-spacing:0.038304pt;}
.ls11_c00209{letter-spacing:0.042560pt;}
.ls1_c00209{letter-spacing:0.048672pt;}
.ls6_c00209{letter-spacing:0.051072pt;}
.ls10_c00209{letter-spacing:0.059584pt;}
.lsa_c00209{letter-spacing:0.063840pt;}
.lse_c00209{letter-spacing:0.080864pt;}
.ls1c_c00209{letter-spacing:0.083200pt;}
.lsf_c00209{letter-spacing:0.092480pt;}
.ls5_c00209{letter-spacing:0.093632pt;}
.ls20_c00209{letter-spacing:0.314496pt;}
.ls1f_c00209{letter-spacing:0.317952pt;}
.ls21_c00209{letter-spacing:0.336224pt;}
.ls3_c00209{letter-spacing:39.808000pt;}
.ws3_c00209{word-spacing:-11.831680pt;}
.ws4_c00209{word-spacing:-9.925632pt;}
.ws5_c00209{word-spacing:-9.922176pt;}
.ws1_c00209{word-spacing:-9.604224pt;}
.ws2_c00209{word-spacing:-9.600768pt;}
.ws0_c00209{word-spacing:-9.408672pt;}
.ws6_c00209{word-spacing:-0.272544pt;}
.ws3c_c00209{word-spacing:-0.046816pt;}
.ws3a_c00209{word-spacing:-0.034048pt;}
.ws37_c00209{word-spacing:-0.025536pt;}
.ws3b_c00209{word-spacing:-0.021280pt;}
.ws31_c00209{word-spacing:-0.017024pt;}
.ws20_c00209{word-spacing:-0.012800pt;}
.ws47_c00209{word-spacing:-0.012768pt;}
.ws46_c00209{word-spacing:-0.008512pt;}
.ws38_c00209{word-spacing:-0.004256pt;}
.ws7_c00209{word-spacing:0.000000pt;}
.ws39_c00209{word-spacing:0.004256pt;}
.ws1f_c00209{word-spacing:0.006400pt;}
.ws1e_c00209{word-spacing:0.012800pt;}
.ws19_c00209{word-spacing:0.019200pt;}
.ws21_c00209{word-spacing:0.646400pt;}
.ws27_c00209{word-spacing:1.242752pt;}
.ws28_c00209{word-spacing:1.264032pt;}
.ws25_c00209{word-spacing:1.281056pt;}
.ws26_c00209{word-spacing:1.523648pt;}
.wsf_c00209{word-spacing:1.632000pt;}
.ws18_c00209{word-spacing:1.868800pt;}
.ws17_c00209{word-spacing:1.945600pt;}
.ws1b_c00209{word-spacing:4.844800pt;}
.ws30_c00209{word-spacing:5.056128pt;}
.ws44_c00209{word-spacing:5.081664pt;}
.ws45_c00209{word-spacing:5.098688pt;}
.ws2f_c00209{word-spacing:5.111456pt;}
.wsd_c00209{word-spacing:5.427200pt;}
.wse_c00209{word-spacing:5.478400pt;}
.ws2b_c00209{word-spacing:5.711552pt;}
.wsc_c00209{word-spacing:5.734400pt;}
.ws2c_c00209{word-spacing:5.737088pt;}
.wsb_c00209{word-spacing:5.753600pt;}
.ws2a_c00209{word-spacing:5.754112pt;}
.ws29_c00209{word-spacing:5.762624pt;}
.ws10_c00209{word-spacing:5.766400pt;}
.ws11_c00209{word-spacing:5.824000pt;}
.ws12_c00209{word-spacing:5.888000pt;}
.ws1a_c00209{word-spacing:6.758400pt;}
.ws14_c00209{word-spacing:7.078400pt;}
.ws15_c00209{word-spacing:7.155200pt;}
.ws36_c00209{word-spacing:7.631008pt;}
.ws8_c00209{word-spacing:7.635200pt;}
.ws34_c00209{word-spacing:7.635264pt;}
.ws35_c00209{word-spacing:7.643776pt;}
.ws9_c00209{word-spacing:7.680000pt;}
.ws32_c00209{word-spacing:7.682080pt;}
.ws33_c00209{word-spacing:7.682688pt;}
.ws13_c00209{word-spacing:7.737600pt;}
.ws23_c00209{word-spacing:10.515200pt;}
.ws22_c00209{word-spacing:10.585600pt;}
.ws3e_c00209{word-spacing:10.878336pt;}
.ws40_c00209{word-spacing:11.180512pt;}
.ws3f_c00209{word-spacing:11.189024pt;}
.ws3d_c00209{word-spacing:11.201792pt;}
.ws42_c00209{word-spacing:11.482688pt;}
.ws41_c00209{word-spacing:11.491200pt;}
.ws43_c00209{word-spacing:12.763744pt;}
.ws2d_c00209{word-spacing:12.776512pt;}
.ws2e_c00209{word-spacing:12.780768pt;}
.wsa_c00209{word-spacing:18.259200pt;}
.ws1d_c00209{word-spacing:22.067200pt;}
.ws1c_c00209{word-spacing:22.086400pt;}
.ws24_c00209{word-spacing:24.307200pt;}
.ws16_c00209{word-spacing:24.960000pt;}
._0_c00209{margin-left:-0.908480pt;}
._1_c00209{width:0.960000pt;}
._2_c00209{width:6.152192pt;}
._3_c00209{width:11.561600pt;}
.fs5_c00209{font-size:34.560000pt;}
.fs3_c00209{font-size:37.440000pt;}
.fs4_c00209{font-size:42.560000pt;}
.fs2_c00209{font-size:48.000000pt;}
.fs0_c00209{font-size:53.440000pt;}
.fs1_c00209{font-size:64.000000pt;}
.y0_c00209{bottom:0.000000pt;}
.y3_c00209{bottom:51.067067pt;}
.y4_c00209{bottom:54.587067pt;}
.y2c_c00209{bottom:101.077787pt;}
.y2b_c00209{bottom:117.399547pt;}
.y2a_c00209{bottom:133.636187pt;}
.y29_c00209{bottom:149.872827pt;}
.y28_c00209{bottom:162.193947pt;}
.y27_c00209{bottom:174.355467pt;}
.y26_c00209{bottom:186.591467pt;}
.y25_c00209{bottom:198.990427pt;}
.y24_c00209{bottom:215.229307pt;}
.y23_c00209{bottom:231.465947pt;}
.y22_c00209{bottom:243.797307pt;}
.y21_c00209{bottom:260.033947pt;}
.y20_c00209{bottom:272.269947pt;}
.y1f_c00209{bottom:284.431467pt;}
.y1e_c00209{bottom:296.834427pt;}
.y1d_c00209{bottom:313.071067pt;}
.y1c_c00209{bottom:325.307067pt;}
.y1b_c00209{bottom:338.827067pt;}
.y1a_c00209{bottom:357.227067pt;}
.y19_c00209{bottom:375.627067pt;}
.y18_c00209{bottom:400.987067pt;}
.y17_c00209{bottom:431.547067pt;}
.y16_c00209{bottom:462.187067pt;}
.y15_c00209{bottom:500.747067pt;}
.y14_c00209{bottom:539.387067pt;}
.y13_c00209{bottom:569.947067pt;}
.y12_c00209{bottom:608.587067pt;}
.y11_c00209{bottom:639.147067pt;}
.y10_c00209{bottom:669.787067pt;}
.yf_c00209{bottom:708.347067pt;}
.ye_c00209{bottom:738.987067pt;}
.yd_c00209{bottom:769.547067pt;}
.yc_c00209{bottom:800.187067pt;}
.yb_c00209{bottom:830.747067pt;}
.ya_c00209{bottom:861.387067pt;}
.y9_c00209{bottom:891.947067pt;}
.y8_c00209{bottom:922.587067pt;}
.y7_c00209{bottom:953.147067pt;}
.y6_c00209{bottom:983.787067pt;}
.y5_c00209{bottom:1014.347067pt;}
.y2_c00209{bottom:1043.387067pt;}
.y1_c00209{bottom:1063.867067pt;}
.h2_c00209{height:42.656250pt;}
.h7_c00209{height:44.388750pt;}
.h1_c00209{height:44.724687pt;}
.h3_c00209{height:50.062500pt;}
.h5_c00209{height:53.562500pt;}
.h4_c00209{height:57.894063pt;}
.h6_c00209{height:66.750000pt;}
.h0_c00209{height:1122.666667pt;}
.w1_c00209{width:793.333333pt;}
.w0_c00209{width:793.626667pt;}
.x0_c00209{left:0.000000pt;}
.x2_c00209{left:113.440000pt;}
.x9_c00209{left:137.280240pt;}
.x8_c00209{left:160.720000pt;}
.x5_c00209{left:184.480000pt;}
.x6_c00209{left:208.720000pt;}
.x7_c00209{left:232.720000pt;}
.x4_c00209{left:386.880000pt;}
.x3_c00209{left:396.880000pt;}
.x1_c00209{left:436.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_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_a837b52e784d5a378dff9988.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.100098;font-style:normal;font-weight:normal;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_26753de4b6eb63fa31d4950b.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;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_c00210;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c00210{vertical-align:-29.880600px;}
.v0_c00210{vertical-align:0.000000px;}
.v1_c00210{vertical-align:15.840000px;}
.v2_c00210{vertical-align:29.880000px;}
.ls18_c00210{letter-spacing:-0.266400px;}
.ls10_c00210{letter-spacing:-0.151200px;}
.ls16_c00210{letter-spacing:-0.050400px;}
.ls11_c00210{letter-spacing:-0.036000px;}
.ls15_c00210{letter-spacing:-0.021600px;}
.ls12_c00210{letter-spacing:-0.014400px;}
.ls14_c00210{letter-spacing:-0.007200px;}
.lsf_c00210{letter-spacing:0.000000px;}
.ls8_c00210{letter-spacing:0.007200px;}
.ls3_c00210{letter-spacing:0.014400px;}
.lsc_c00210{letter-spacing:0.023940px;}
.lse_c00210{letter-spacing:0.028728px;}
.ls5_c00210{letter-spacing:0.028800px;}
.ls4_c00210{letter-spacing:0.036000px;}
.lsd_c00210{letter-spacing:0.038304px;}
.ls0_c00210{letter-spacing:0.048096px;}
.lsb_c00210{letter-spacing:0.050400px;}
.ls2_c00210{letter-spacing:0.054756px;}
.ls6_c00210{letter-spacing:0.057600px;}
.ls7_c00210{letter-spacing:0.079200px;}
.ls13_c00210{letter-spacing:0.093600px;}
.ls9_c00210{letter-spacing:0.144000px;}
.ls17_c00210{letter-spacing:3.600000px;}
.lsa_c00210{letter-spacing:66.024000px;}
.ls1_c00210{letter-spacing:1212.120000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00210{word-spacing:-10.584756px;}
.ws1b_c00210{word-spacing:-0.093600px;}
.wsf_c00210{word-spacing:-0.036000px;}
.ws26_c00210{word-spacing:-0.019152px;}
.ws27_c00210{word-spacing:-0.009576px;}
.ws1a_c00210{word-spacing:-0.007200px;}
.ws25_c00210{word-spacing:-0.004788px;}
.ws2_c00210{word-spacing:0.000000px;}
.ws15_c00210{word-spacing:0.007200px;}
.ws5_c00210{word-spacing:0.014400px;}
.ws1_c00210{word-spacing:0.042084px;}
.ws14_c00210{word-spacing:0.050400px;}
.ws12_c00210{word-spacing:0.280800px;}
.ws11_c00210{word-spacing:0.302400px;}
.ws10_c00210{word-spacing:0.381600px;}
.ws13_c00210{word-spacing:0.504000px;}
.ws17_c00210{word-spacing:0.626400px;}
.ws16_c00210{word-spacing:0.741600px;}
.wsa_c00210{word-spacing:1.080000px;}
.wsc_c00210{word-spacing:1.130400px;}
.wsb_c00210{word-spacing:1.173600px;}
.ws1c_c00210{word-spacing:2.527200px;}
.ws24_c00210{word-spacing:2.865600px;}
.ws22_c00210{word-spacing:2.887200px;}
.ws23_c00210{word-spacing:2.973600px;}
.ws19_c00210{word-spacing:3.549600px;}
.ws18_c00210{word-spacing:3.564000px;}
.wsd_c00210{word-spacing:5.025600px;}
.wse_c00210{word-spacing:5.061600px;}
.ws9_c00210{word-spacing:5.824800px;}
.ws8_c00210{word-spacing:5.832000px;}
.ws1f_c00210{word-spacing:6.494400px;}
.ws20_c00210{word-spacing:8.611200px;}
.ws21_c00210{word-spacing:8.640000px;}
.ws1e_c00210{word-spacing:8.654400px;}
.ws1d_c00210{word-spacing:8.661600px;}
.ws3_c00210{word-spacing:17.316000px;}
.ws4_c00210{word-spacing:17.330400px;}
.ws7_c00210{word-spacing:21.189600px;}
.ws6_c00210{word-spacing:21.240000px;}
._2_c00210{margin-left:-3.744000px;}
._3_c00210{margin-left:-2.664000px;}
._0_c00210{margin-left:-1.322640px;}
._1_c00210{width:1.166400px;}
.fc0_c00210{color:rgb(0,0,0);}
.fs3_c00210{font-size:42.120000px;}
.fs4_c00210{font-size:47.880000px;}
.fs1_c00210{font-size:54.000000px;}
.fs0_c00210{font-size:60.120000px;}
.fs2_c00210{font-size:72.000000px;}
.y0_c00210{bottom:0.000000px;}
.y3_c00210{bottom:57.450450px;}
.y26_c00210{bottom:113.718990px;}
.y25_c00210{bottom:132.080970px;}
.y24_c00210{bottom:150.347190px;}
.y23_c00210{bottom:168.613410px;}
.y22_c00210{bottom:186.975390px;}
.y21_c00210{bottom:205.241610px;}
.y20_c00210{bottom:223.507830px;}
.y1f_c00210{bottom:241.869810px;}
.y1e_c00210{bottom:260.136030px;}
.y1d_c00210{bottom:278.402250px;}
.y1c_c00210{bottom:296.764230px;}
.y1b_c00210{bottom:315.030450px;}
.y1a_c00210{bottom:330.240450px;}
.y19_c00210{bottom:350.940450px;}
.y18_c00210{bottom:371.640600px;}
.y17_c00210{bottom:424.110450px;}
.y16_c00210{bottom:458.490450px;}
.y15_c00210{bottom:492.960450px;}
.y14_c00210{bottom:536.340450px;}
.y13_c00210{bottom:570.810450px;}
.y12_c00210{bottom:623.190450px;}
.y11_c00210{bottom:657.660450px;}
.y10_c00210{bottom:692.040450px;}
.yf_c00210{bottom:735.510450px;}
.ye_c00210{bottom:769.890450px;}
.yd_c00210{bottom:804.360450px;}
.yc_c00210{bottom:847.740450px;}
.yb_c00210{bottom:882.210450px;}
.ya_c00210{bottom:925.590450px;}
.y9_c00210{bottom:960.060450px;}
.y8_c00210{bottom:994.440450px;}
.y7_c00210{bottom:1028.910450px;}
.y6_c00210{bottom:1063.290450px;}
.y5_c00210{bottom:1106.760450px;}
.y4_c00210{bottom:1141.140450px;}
.y2_c00210{bottom:1177.860450px;}
.y1_c00210{bottom:1196.850450px;}
.h8_c00210{height:47.988281px;}
.h9_c00210{height:49.937344px;}
.h1_c00210{height:50.315273px;}
.h2_c00210{height:56.320312px;}
.h5_c00210{height:60.257812px;}
.h4_c00210{height:65.130820px;}
.h7_c00210{height:65.131420px;}
.h3_c00210{height:72.160312px;}
.h6_c00210{height:75.093750px;}
.h0_c00210{height:1263.000000px;}
.w1_c00210{width:892.500000px;}
.w0_c00210{width:892.830000px;}
.x0_c00210{left:0.000000px;}
.x1_c00210{left:127.620000px;}
.x3_c00210{left:154.440000px;}
.x2_c00210{left:180.810000px;}
.x4_c00210{left:206.820000px;}
.x5_c00210{left:208.620000px;}
@media print{
.v3_c00210{vertical-align:-26.560533pt;}
.v0_c00210{vertical-align:0.000000pt;}
.v1_c00210{vertical-align:14.080000pt;}
.v2_c00210{vertical-align:26.560000pt;}
.ls18_c00210{letter-spacing:-0.236800pt;}
.ls10_c00210{letter-spacing:-0.134400pt;}
.ls16_c00210{letter-spacing:-0.044800pt;}
.ls11_c00210{letter-spacing:-0.032000pt;}
.ls15_c00210{letter-spacing:-0.019200pt;}
.ls12_c00210{letter-spacing:-0.012800pt;}
.ls14_c00210{letter-spacing:-0.006400pt;}
.lsf_c00210{letter-spacing:0.000000pt;}
.ls8_c00210{letter-spacing:0.006400pt;}
.ls3_c00210{letter-spacing:0.012800pt;}
.lsc_c00210{letter-spacing:0.021280pt;}
.lse_c00210{letter-spacing:0.025536pt;}
.ls5_c00210{letter-spacing:0.025600pt;}
.ls4_c00210{letter-spacing:0.032000pt;}
.lsd_c00210{letter-spacing:0.034048pt;}
.ls0_c00210{letter-spacing:0.042752pt;}
.lsb_c00210{letter-spacing:0.044800pt;}
.ls2_c00210{letter-spacing:0.048672pt;}
.ls6_c00210{letter-spacing:0.051200pt;}
.ls7_c00210{letter-spacing:0.070400pt;}
.ls13_c00210{letter-spacing:0.083200pt;}
.ls9_c00210{letter-spacing:0.128000pt;}
.ls17_c00210{letter-spacing:3.200000pt;}
.lsa_c00210{letter-spacing:58.688000pt;}
.ls1_c00210{letter-spacing:1077.440000pt;}
.ws0_c00210{word-spacing:-9.408672pt;}
.ws1b_c00210{word-spacing:-0.083200pt;}
.wsf_c00210{word-spacing:-0.032000pt;}
.ws26_c00210{word-spacing:-0.017024pt;}
.ws27_c00210{word-spacing:-0.008512pt;}
.ws1a_c00210{word-spacing:-0.006400pt;}
.ws25_c00210{word-spacing:-0.004256pt;}
.ws2_c00210{word-spacing:0.000000pt;}
.ws15_c00210{word-spacing:0.006400pt;}
.ws5_c00210{word-spacing:0.012800pt;}
.ws1_c00210{word-spacing:0.037408pt;}
.ws14_c00210{word-spacing:0.044800pt;}
.ws12_c00210{word-spacing:0.249600pt;}
.ws11_c00210{word-spacing:0.268800pt;}
.ws10_c00210{word-spacing:0.339200pt;}
.ws13_c00210{word-spacing:0.448000pt;}
.ws17_c00210{word-spacing:0.556800pt;}
.ws16_c00210{word-spacing:0.659200pt;}
.wsa_c00210{word-spacing:0.960000pt;}
.wsc_c00210{word-spacing:1.004800pt;}
.wsb_c00210{word-spacing:1.043200pt;}
.ws1c_c00210{word-spacing:2.246400pt;}
.ws24_c00210{word-spacing:2.547200pt;}
.ws22_c00210{word-spacing:2.566400pt;}
.ws23_c00210{word-spacing:2.643200pt;}
.ws19_c00210{word-spacing:3.155200pt;}
.ws18_c00210{word-spacing:3.168000pt;}
.wsd_c00210{word-spacing:4.467200pt;}
.wse_c00210{word-spacing:4.499200pt;}
.ws9_c00210{word-spacing:5.177600pt;}
.ws8_c00210{word-spacing:5.184000pt;}
.ws1f_c00210{word-spacing:5.772800pt;}
.ws20_c00210{word-spacing:7.654400pt;}
.ws21_c00210{word-spacing:7.680000pt;}
.ws1e_c00210{word-spacing:7.692800pt;}
.ws1d_c00210{word-spacing:7.699200pt;}
.ws3_c00210{word-spacing:15.392000pt;}
.ws4_c00210{word-spacing:15.404800pt;}
.ws7_c00210{word-spacing:18.835200pt;}
.ws6_c00210{word-spacing:18.880000pt;}
._2_c00210{margin-left:-3.328000pt;}
._3_c00210{margin-left:-2.368000pt;}
._0_c00210{margin-left:-1.175680pt;}
._1_c00210{width:1.036800pt;}
.fs3_c00210{font-size:37.440000pt;}
.fs4_c00210{font-size:42.560000pt;}
.fs1_c00210{font-size:48.000000pt;}
.fs0_c00210{font-size:53.440000pt;}
.fs2_c00210{font-size:64.000000pt;}
.y0_c00210{bottom:0.000000pt;}
.y3_c00210{bottom:51.067067pt;}
.y26_c00210{bottom:101.083547pt;}
.y25_c00210{bottom:117.405307pt;}
.y24_c00210{bottom:133.641947pt;}
.y23_c00210{bottom:149.878587pt;}
.y22_c00210{bottom:166.200347pt;}
.y21_c00210{bottom:182.436987pt;}
.y20_c00210{bottom:198.673627pt;}
.y1f_c00210{bottom:214.995387pt;}
.y1e_c00210{bottom:231.232027pt;}
.y1d_c00210{bottom:247.468667pt;}
.y1c_c00210{bottom:263.790427pt;}
.y1b_c00210{bottom:280.027067pt;}
.y1a_c00210{bottom:293.547067pt;}
.y19_c00210{bottom:311.947067pt;}
.y18_c00210{bottom:330.347200pt;}
.y17_c00210{bottom:376.987067pt;}
.y16_c00210{bottom:407.547067pt;}
.y15_c00210{bottom:438.187067pt;}
.y14_c00210{bottom:476.747067pt;}
.y13_c00210{bottom:507.387067pt;}
.y12_c00210{bottom:553.947067pt;}
.y11_c00210{bottom:584.587067pt;}
.y10_c00210{bottom:615.147067pt;}
.yf_c00210{bottom:653.787067pt;}
.ye_c00210{bottom:684.347067pt;}
.yd_c00210{bottom:714.987067pt;}
.yc_c00210{bottom:753.547067pt;}
.yb_c00210{bottom:784.187067pt;}
.ya_c00210{bottom:822.747067pt;}
.y9_c00210{bottom:853.387067pt;}
.y8_c00210{bottom:883.947067pt;}
.y7_c00210{bottom:914.587067pt;}
.y6_c00210{bottom:945.147067pt;}
.y5_c00210{bottom:983.787067pt;}
.y4_c00210{bottom:1014.347067pt;}
.y2_c00210{bottom:1046.987067pt;}
.y1_c00210{bottom:1063.867067pt;}
.h8_c00210{height:42.656250pt;}
.h9_c00210{height:44.388750pt;}
.h1_c00210{height:44.724687pt;}
.h2_c00210{height:50.062500pt;}
.h5_c00210{height:53.562500pt;}
.h4_c00210{height:57.894063pt;}
.h7_c00210{height:57.894596pt;}
.h3_c00210{height:64.142500pt;}
.h6_c00210{height:66.750000pt;}
.h0_c00210{height:1122.666667pt;}
.w1_c00210{width:793.333333pt;}
.w0_c00210{width:793.626667pt;}
.x0_c00210{left:0.000000pt;}
.x1_c00210{left:113.440000pt;}
.x3_c00210{left:137.280000pt;}
.x2_c00210{left:160.720000pt;}
.x4_c00210{left:183.840000pt;}
.x5_c00210{left:185.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_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_c81b7a4df7f51c309fc5b89d.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_d9e7aea4e8c0ee894c4e09ef.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00211;src:url('chunks/assets/font_349adb2134cbc46d637ce10d.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00211;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00211{font-family:ff5_c00211;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_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;}
.v1_c00211{vertical-align:29.880000px;}
.lsc_c00211{letter-spacing:-0.151200px;}
.ls13_c00211{letter-spacing:-0.108000px;}
.ls14_c00211{letter-spacing:-0.039060px;}
.ls12_c00211{letter-spacing:-0.028800px;}
.ls10_c00211{letter-spacing:-0.021600px;}
.lse_c00211{letter-spacing:-0.014400px;}
.lsd_c00211{letter-spacing:-0.007200px;}
.lsb_c00211{letter-spacing:0.000000px;}
.ls5_c00211{letter-spacing:0.007200px;}
.ls2_c00211{letter-spacing:0.014400px;}
.ls6_c00211{letter-spacing:0.021600px;}
.ls9_c00211{letter-spacing:0.023940px;}
.lsa_c00211{letter-spacing:0.028728px;}
.ls11_c00211{letter-spacing:0.028800px;}
.ls0_c00211{letter-spacing:0.036072px;}
.ls7_c00211{letter-spacing:0.043200px;}
.ls1_c00211{letter-spacing:0.054756px;}
.lsf_c00211{letter-spacing:0.093600px;}
.ls3_c00211{letter-spacing:0.144000px;}
.ls8_c00211{letter-spacing:34.450920px;}
.ls4_c00211{letter-spacing:66.024000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00211{word-spacing:-19.530000px;}
.ws0_c00211{word-spacing:-10.584756px;}
.ws2_c00211{word-spacing:-0.306612px;}
.ws7_c00211{word-spacing:-0.086400px;}
.ws23_c00211{word-spacing:-0.054684px;}
.ws2b_c00211{word-spacing:-0.009576px;}
.ws22_c00211{word-spacing:-0.007200px;}
.ws2a_c00211{word-spacing:-0.004788px;}
.ws3_c00211{word-spacing:0.000000px;}
.wsb_c00211{word-spacing:0.007200px;}
.ws11_c00211{word-spacing:0.021600px;}
.ws10_c00211{word-spacing:0.043200px;}
.ws21_c00211{word-spacing:0.374400px;}
.ws20_c00211{word-spacing:0.468000px;}
.ws28_c00211{word-spacing:1.382400px;}
.ws29_c00211{word-spacing:1.468800px;}
.ws6_c00211{word-spacing:2.145600px;}
.ws5_c00211{word-spacing:2.174400px;}
.ws26_c00211{word-spacing:3.938400px;}
.ws27_c00211{word-spacing:3.974400px;}
.ws1d_c00211{word-spacing:3.996000px;}
.ws1e_c00211{word-spacing:4.010400px;}
.ws1f_c00211{word-spacing:4.068000px;}
.ws19_c00211{word-spacing:4.334400px;}
.ws1a_c00211{word-spacing:4.370400px;}
.ws24_c00211{word-spacing:5.781600px;}
.ws25_c00211{word-spacing:5.832000px;}
.ws12_c00211{word-spacing:7.531200px;}
.ws9_c00211{word-spacing:7.538400px;}
.ws13_c00211{word-spacing:7.574400px;}
.wsa_c00211{word-spacing:7.668000px;}
.ws4_c00211{word-spacing:8.704800px;}
.wsc_c00211{word-spacing:10.749600px;}
.wsd_c00211{word-spacing:10.814400px;}
.ws18_c00211{word-spacing:13.262400px;}
.ws16_c00211{word-spacing:13.320000px;}
.ws17_c00211{word-spacing:13.348800px;}
.ws8_c00211{word-spacing:15.472800px;}
.ws1b_c00211{word-spacing:15.832800px;}
.ws1c_c00211{word-spacing:15.883200px;}
.ws15_c00211{word-spacing:16.128000px;}
.ws14_c00211{word-spacing:16.221600px;}
.wsf_c00211{word-spacing:22.593600px;}
.wse_c00211{word-spacing:22.680000px;}
._0_c00211{margin-left:-1.022040px;}
._1_c00211{width:1.180800px;}
.fc0_c00211{color:rgb(0,0,0);}
.fs3_c00211{font-size:42.120000px;}
.fs5_c00211{font-size:47.880000px;}
.fs2_c00211{font-size:54.000000px;}
.fs0_c00211{font-size:60.120000px;}
.fs1_c00211{font-size:72.000000px;}
.fs4_c00211{font-size:78.120000px;}
.y0_c00211{bottom:0.000000px;}
.y3_c00211{bottom:57.450450px;}
.y4_c00211{bottom:61.410450px;}
.y25_c00211{bottom:113.711610px;}
.y24_c00211{bottom:132.073590px;}
.y23_c00211{bottom:150.339810px;}
.y22_c00211{bottom:168.606030px;}
.y21_c00211{bottom:186.968010px;}
.y20_c00211{bottom:205.234230px;}
.y1f_c00211{bottom:223.500450px;}
.y1e_c00211{bottom:238.710450px;}
.y1d_c00211{bottom:259.410450px;}
.y1c_c00211{bottom:280.110450px;}
.y1b_c00211{bottom:317.910450px;}
.y1a_c00211{bottom:352.380450px;}
.y19_c00211{bottom:386.760450px;}
.y18_c00211{bottom:431.850450px;}
.y17_c00211{bottom:485.490600px;}
.y16_c00211{bottom:519.960450px;}
.y15_c00211{bottom:554.340450px;}
.y14_c00211{bottom:588.810450px;}
.y13_c00211{bottom:623.190450px;}
.y12_c00211{bottom:666.660450px;}
.y11_c00211{bottom:701.040450px;}
.y10_c00211{bottom:735.510450px;}
.yf_c00211{bottom:769.890450px;}
.ye_c00211{bottom:804.360450px;}
.yd_c00211{bottom:847.740450px;}
.yc_c00211{bottom:882.210450px;}
.yb_c00211{bottom:916.590450px;}
.ya_c00211{bottom:960.060450px;}
.y9_c00211{bottom:994.440450px;}
.y8_c00211{bottom:1028.910450px;}
.y7_c00211{bottom:1072.290450px;}
.y6_c00211{bottom:1106.760450px;}
.y5_c00211{bottom:1141.140450px;}
.y2_c00211{bottom:1173.810450px;}
.y1_c00211{bottom:1196.850450px;}
.h2_c00211{height:47.988281px;}
.h8_c00211{height:49.937344px;}
.h1_c00211{height:50.315273px;}
.h3_c00211{height:56.320312px;}
.h4_c00211{height:60.257812px;}
.h5_c00211{height:65.130820px;}
.h6_c00211{height:75.093750px;}
.h7_c00211{height:81.476719px;}
.h0_c00211{height:1263.000000px;}
.w1_c00211{width:892.500000px;}
.w0_c00211{width:892.830000px;}
.x0_c00211{left:0.000000px;}
.x2_c00211{left:127.620000px;}
.x6_c00211{left:154.440000px;}
.x5_c00211{left:180.810000px;}
.x7_c00211{left:207.180000px;}
.x8_c00211{left:208.620000px;}
.x4_c00211{left:435.240000px;}
.x3_c00211{left:446.490000px;}
.x1_c00211{left:490.770000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.v1_c00211{vertical-align:26.560000pt;}
.lsc_c00211{letter-spacing:-0.134400pt;}
.ls13_c00211{letter-spacing:-0.096000pt;}
.ls14_c00211{letter-spacing:-0.034720pt;}
.ls12_c00211{letter-spacing:-0.025600pt;}
.ls10_c00211{letter-spacing:-0.019200pt;}
.lse_c00211{letter-spacing:-0.012800pt;}
.lsd_c00211{letter-spacing:-0.006400pt;}
.lsb_c00211{letter-spacing:0.000000pt;}
.ls5_c00211{letter-spacing:0.006400pt;}
.ls2_c00211{letter-spacing:0.012800pt;}
.ls6_c00211{letter-spacing:0.019200pt;}
.ls9_c00211{letter-spacing:0.021280pt;}
.lsa_c00211{letter-spacing:0.025536pt;}
.ls11_c00211{letter-spacing:0.025600pt;}
.ls0_c00211{letter-spacing:0.032064pt;}
.ls7_c00211{letter-spacing:0.038400pt;}
.ls1_c00211{letter-spacing:0.048672pt;}
.lsf_c00211{letter-spacing:0.083200pt;}
.ls3_c00211{letter-spacing:0.128000pt;}
.ls8_c00211{letter-spacing:30.623040pt;}
.ls4_c00211{letter-spacing:58.688000pt;}
.ws1_c00211{word-spacing:-17.360000pt;}
.ws0_c00211{word-spacing:-9.408672pt;}
.ws2_c00211{word-spacing:-0.272544pt;}
.ws7_c00211{word-spacing:-0.076800pt;}
.ws23_c00211{word-spacing:-0.048608pt;}
.ws2b_c00211{word-spacing:-0.008512pt;}
.ws22_c00211{word-spacing:-0.006400pt;}
.ws2a_c00211{word-spacing:-0.004256pt;}
.ws3_c00211{word-spacing:0.000000pt;}
.wsb_c00211{word-spacing:0.006400pt;}
.ws11_c00211{word-spacing:0.019200pt;}
.ws10_c00211{word-spacing:0.038400pt;}
.ws21_c00211{word-spacing:0.332800pt;}
.ws20_c00211{word-spacing:0.416000pt;}
.ws28_c00211{word-spacing:1.228800pt;}
.ws29_c00211{word-spacing:1.305600pt;}
.ws6_c00211{word-spacing:1.907200pt;}
.ws5_c00211{word-spacing:1.932800pt;}
.ws26_c00211{word-spacing:3.500800pt;}
.ws27_c00211{word-spacing:3.532800pt;}
.ws1d_c00211{word-spacing:3.552000pt;}
.ws1e_c00211{word-spacing:3.564800pt;}
.ws1f_c00211{word-spacing:3.616000pt;}
.ws19_c00211{word-spacing:3.852800pt;}
.ws1a_c00211{word-spacing:3.884800pt;}
.ws24_c00211{word-spacing:5.139200pt;}
.ws25_c00211{word-spacing:5.184000pt;}
.ws12_c00211{word-spacing:6.694400pt;}
.ws9_c00211{word-spacing:6.700800pt;}
.ws13_c00211{word-spacing:6.732800pt;}
.wsa_c00211{word-spacing:6.816000pt;}
.ws4_c00211{word-spacing:7.737600pt;}
.wsc_c00211{word-spacing:9.555200pt;}
.wsd_c00211{word-spacing:9.612800pt;}
.ws18_c00211{word-spacing:11.788800pt;}
.ws16_c00211{word-spacing:11.840000pt;}
.ws17_c00211{word-spacing:11.865600pt;}
.ws8_c00211{word-spacing:13.753600pt;}
.ws1b_c00211{word-spacing:14.073600pt;}
.ws1c_c00211{word-spacing:14.118400pt;}
.ws15_c00211{word-spacing:14.336000pt;}
.ws14_c00211{word-spacing:14.419200pt;}
.wsf_c00211{word-spacing:20.083200pt;}
.wse_c00211{word-spacing:20.160000pt;}
._0_c00211{margin-left:-0.908480pt;}
._1_c00211{width:1.049600pt;}
.fs3_c00211{font-size:37.440000pt;}
.fs5_c00211{font-size:42.560000pt;}
.fs2_c00211{font-size:48.000000pt;}
.fs0_c00211{font-size:53.440000pt;}
.fs1_c00211{font-size:64.000000pt;}
.fs4_c00211{font-size:69.440000pt;}
.y0_c00211{bottom:0.000000pt;}
.y3_c00211{bottom:51.067067pt;}
.y4_c00211{bottom:54.587067pt;}
.y25_c00211{bottom:101.076987pt;}
.y24_c00211{bottom:117.398747pt;}
.y23_c00211{bottom:133.635387pt;}
.y22_c00211{bottom:149.872027pt;}
.y21_c00211{bottom:166.193787pt;}
.y20_c00211{bottom:182.430427pt;}
.y1f_c00211{bottom:198.667067pt;}
.y1e_c00211{bottom:212.187067pt;}
.y1d_c00211{bottom:230.587067pt;}
.y1c_c00211{bottom:248.987067pt;}
.y1b_c00211{bottom:282.587067pt;}
.y1a_c00211{bottom:313.227067pt;}
.y19_c00211{bottom:343.787067pt;}
.y18_c00211{bottom:383.867067pt;}
.y17_c00211{bottom:431.547200pt;}
.y16_c00211{bottom:462.187067pt;}
.y15_c00211{bottom:492.747067pt;}
.y14_c00211{bottom:523.387067pt;}
.y13_c00211{bottom:553.947067pt;}
.y12_c00211{bottom:592.587067pt;}
.y11_c00211{bottom:623.147067pt;}
.y10_c00211{bottom:653.787067pt;}
.yf_c00211{bottom:684.347067pt;}
.ye_c00211{bottom:714.987067pt;}
.yd_c00211{bottom:753.547067pt;}
.yc_c00211{bottom:784.187067pt;}
.yb_c00211{bottom:814.747067pt;}
.ya_c00211{bottom:853.387067pt;}
.y9_c00211{bottom:883.947067pt;}
.y8_c00211{bottom:914.587067pt;}
.y7_c00211{bottom:953.147067pt;}
.y6_c00211{bottom:983.787067pt;}
.y5_c00211{bottom:1014.347067pt;}
.y2_c00211{bottom:1043.387067pt;}
.y1_c00211{bottom:1063.867067pt;}
.h2_c00211{height:42.656250pt;}
.h8_c00211{height:44.388750pt;}
.h1_c00211{height:44.724687pt;}
.h3_c00211{height:50.062500pt;}
.h4_c00211{height:53.562500pt;}
.h5_c00211{height:57.894063pt;}
.h6_c00211{height:66.750000pt;}
.h7_c00211{height:72.423750pt;}
.h0_c00211{height:1122.666667pt;}
.w1_c00211{width:793.333333pt;}
.w0_c00211{width:793.626667pt;}
.x0_c00211{left:0.000000pt;}
.x2_c00211{left:113.440000pt;}
.x6_c00211{left:137.280000pt;}
.x5_c00211{left:160.720000pt;}
.x7_c00211{left:184.160000pt;}
.x8_c00211{left:185.440000pt;}
.x4_c00211{left:386.880000pt;}
.x3_c00211{left:396.880000pt;}
.x1_c00211{left:436.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_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_b378b84cfa241d125833bc05.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.100098;font-style:normal;font-weight:normal;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_f2e74d630038cdb7744b75da.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;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_c00212;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00212;src:url('chunks/assets/font_cb905fa1918a633d12b5391f.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00212;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00212{font-family:ff5_c00212;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_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;}
.v1_c00212{vertical-align:15.840000px;}
.v2_c00212{vertical-align:29.880000px;}
.lsc_c00212{letter-spacing:-0.151200px;}
.ls15_c00212{letter-spacing:-0.054684px;}
.lse_c00212{letter-spacing:-0.043200px;}
.lsd_c00212{letter-spacing:-0.036000px;}
.ls14_c00212{letter-spacing:-0.031248px;}
.ls12_c00212{letter-spacing:-0.028800px;}
.ls11_c00212{letter-spacing:-0.021600px;}
.ls10_c00212{letter-spacing:-0.014400px;}
.lsf_c00212{letter-spacing:-0.007200px;}
.lsb_c00212{letter-spacing:0.000000px;}
.ls4_c00212{letter-spacing:0.007200px;}
.ls2_c00212{letter-spacing:0.014400px;}
.lsa_c00212{letter-spacing:0.019152px;}
.ls8_c00212{letter-spacing:0.021600px;}
.ls6_c00212{letter-spacing:0.028800px;}
.ls9_c00212{letter-spacing:0.033516px;}
.ls16_c00212{letter-spacing:0.036000px;}
.ls0_c00212{letter-spacing:0.048096px;}
.ls7_c00212{letter-spacing:0.050400px;}
.ls3_c00212{letter-spacing:0.054756px;}
.ls13_c00212{letter-spacing:0.093600px;}
.ls5_c00212{letter-spacing:17.498880px;}
.ls1_c00212{letter-spacing:1212.120000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00212{word-spacing:-19.498752px;}
.ws2_c00212{word-spacing:-18.000000px;}
.ws0_c00212{word-spacing:-10.584756px;}
.ws19_c00212{word-spacing:-0.093600px;}
.ws1a_c00212{word-spacing:-0.039060px;}
.ws2d_c00212{word-spacing:-0.014364px;}
.ws12_c00212{word-spacing:-0.007200px;}
.ws4_c00212{word-spacing:0.000000px;}
.ws14_c00212{word-spacing:0.007200px;}
.ws18_c00212{word-spacing:0.014400px;}
.ws8_c00212{word-spacing:0.036000px;}
.ws3_c00212{word-spacing:0.042084px;}
.ws13_c00212{word-spacing:0.050400px;}
.ws2c_c00212{word-spacing:1.072800px;}
.ws2b_c00212{word-spacing:1.087200px;}
.ws20_c00212{word-spacing:1.461600px;}
.ws21_c00212{word-spacing:1.540800px;}
.ws16_c00212{word-spacing:2.246400px;}
.ws17_c00212{word-spacing:2.275200px;}
.ws27_c00212{word-spacing:2.541600px;}
.ws28_c00212{word-spacing:2.642400px;}
.ws26_c00212{word-spacing:4.262400px;}
.ws25_c00212{word-spacing:4.276800px;}
.wse_c00212{word-spacing:4.334400px;}
.wsf_c00212{word-spacing:4.399200px;}
.ws24_c00212{word-spacing:5.126400px;}
.ws23_c00212{word-spacing:5.140800px;}
.ws1d_c00212{word-spacing:5.709600px;}
.ws1b_c00212{word-spacing:5.745600px;}
.ws1c_c00212{word-spacing:5.817600px;}
.wsc_c00212{word-spacing:6.480000px;}
.wsd_c00212{word-spacing:6.580800px;}
.ws1e_c00212{word-spacing:7.538400px;}
.ws1f_c00212{word-spacing:7.617600px;}
.ws6_c00212{word-spacing:8.265600px;}
.ws5_c00212{word-spacing:8.323200px;}
.ws15_c00212{word-spacing:8.647200px;}
.ws22_c00212{word-spacing:11.160000px;}
.wsb_c00212{word-spacing:11.527200px;}
.ws2a_c00212{word-spacing:12.614400px;}
.ws29_c00212{word-spacing:12.643200px;}
.wsa_c00212{word-spacing:14.342400px;}
.ws9_c00212{word-spacing:14.443200px;}
.ws7_c00212{word-spacing:19.800000px;}
.ws10_c00212{word-spacing:21.254400px;}
.ws11_c00212{word-spacing:21.312000px;}
._0_c00212{margin-left:-1.322640px;}
._1_c00212{width:1.152000px;}
.fc0_c00212{color:rgb(0,0,0);}
.fs3_c00212{font-size:42.120000px;}
.fs5_c00212{font-size:47.880000px;}
.fs1_c00212{font-size:54.000000px;}
.fs0_c00212{font-size:60.120000px;}
.fs2_c00212{font-size:72.000000px;}
.fs4_c00212{font-size:78.120000px;}
.y0_c00212{bottom:0.000000px;}
.y3_c00212{bottom:57.450450px;}
.y21_c00212{bottom:113.702250px;}
.y20_c00212{bottom:132.064230px;}
.y1f_c00212{bottom:150.330450px;}
.y1e_c00212{bottom:165.540450px;}
.y1d_c00212{bottom:186.240450px;}
.y1c_c00212{bottom:206.940450px;}
.y1b_c00212{bottom:292.530450px;}
.y1a_c00212{bottom:326.910450px;}
.y19_c00212{bottom:361.380450px;}
.y18_c00212{bottom:395.760450px;}
.y17_c00212{bottom:430.230450px;}
.y16_c00212{bottom:464.610450px;}
.y15_c00212{bottom:508.080450px;}
.y14_c00212{bottom:542.460450px;}
.y13_c00212{bottom:576.930450px;}
.y12_c00212{bottom:611.310450px;}
.y11_c00212{bottom:656.400450px;}
.y10_c00212{bottom:710.040450px;}
.yf_c00212{bottom:744.510450px;}
.ye_c00212{bottom:778.890450px;}
.yd_c00212{bottom:822.360450px;}
.yc_c00212{bottom:856.740450px;}
.yb_c00212{bottom:891.210450px;}
.ya_c00212{bottom:925.590450px;}
.y9_c00212{bottom:960.060450px;}
.y8_c00212{bottom:994.440450px;}
.y7_c00212{bottom:1028.910450px;}
.y6_c00212{bottom:1072.290450px;}
.y5_c00212{bottom:1106.760450px;}
.y4_c00212{bottom:1141.140450px;}
.y2_c00212{bottom:1177.860450px;}
.y1_c00212{bottom:1196.850450px;}
.h7_c00212{height:47.988281px;}
.h8_c00212{height:49.937344px;}
.h1_c00212{height:50.315273px;}
.h2_c00212{height:56.320312px;}
.h4_c00212{height:60.257812px;}
.h5_c00212{height:65.130820px;}
.h3_c00212{height:72.160312px;}
.h6_c00212{height:81.476719px;}
.h0_c00212{height:1263.000000px;}
.w1_c00212{width:892.500000px;}
.w0_c00212{width:892.830000px;}
.x0_c00212{left:0.000000px;}
.x1_c00212{left:127.620000px;}
.x2_c00212{left:180.720000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.v1_c00212{vertical-align:14.080000pt;}
.v2_c00212{vertical-align:26.560000pt;}
.lsc_c00212{letter-spacing:-0.134400pt;}
.ls15_c00212{letter-spacing:-0.048608pt;}
.lse_c00212{letter-spacing:-0.038400pt;}
.lsd_c00212{letter-spacing:-0.032000pt;}
.ls14_c00212{letter-spacing:-0.027776pt;}
.ls12_c00212{letter-spacing:-0.025600pt;}
.ls11_c00212{letter-spacing:-0.019200pt;}
.ls10_c00212{letter-spacing:-0.012800pt;}
.lsf_c00212{letter-spacing:-0.006400pt;}
.lsb_c00212{letter-spacing:0.000000pt;}
.ls4_c00212{letter-spacing:0.006400pt;}
.ls2_c00212{letter-spacing:0.012800pt;}
.lsa_c00212{letter-spacing:0.017024pt;}
.ls8_c00212{letter-spacing:0.019200pt;}
.ls6_c00212{letter-spacing:0.025600pt;}
.ls9_c00212{letter-spacing:0.029792pt;}
.ls16_c00212{letter-spacing:0.032000pt;}
.ls0_c00212{letter-spacing:0.042752pt;}
.ls7_c00212{letter-spacing:0.044800pt;}
.ls3_c00212{letter-spacing:0.048672pt;}
.ls13_c00212{letter-spacing:0.083200pt;}
.ls5_c00212{letter-spacing:15.554560pt;}
.ls1_c00212{letter-spacing:1077.440000pt;}
.ws1_c00212{word-spacing:-17.332224pt;}
.ws2_c00212{word-spacing:-16.000000pt;}
.ws0_c00212{word-spacing:-9.408672pt;}
.ws19_c00212{word-spacing:-0.083200pt;}
.ws1a_c00212{word-spacing:-0.034720pt;}
.ws2d_c00212{word-spacing:-0.012768pt;}
.ws12_c00212{word-spacing:-0.006400pt;}
.ws4_c00212{word-spacing:0.000000pt;}
.ws14_c00212{word-spacing:0.006400pt;}
.ws18_c00212{word-spacing:0.012800pt;}
.ws8_c00212{word-spacing:0.032000pt;}
.ws3_c00212{word-spacing:0.037408pt;}
.ws13_c00212{word-spacing:0.044800pt;}
.ws2c_c00212{word-spacing:0.953600pt;}
.ws2b_c00212{word-spacing:0.966400pt;}
.ws20_c00212{word-spacing:1.299200pt;}
.ws21_c00212{word-spacing:1.369600pt;}
.ws16_c00212{word-spacing:1.996800pt;}
.ws17_c00212{word-spacing:2.022400pt;}
.ws27_c00212{word-spacing:2.259200pt;}
.ws28_c00212{word-spacing:2.348800pt;}
.ws26_c00212{word-spacing:3.788800pt;}
.ws25_c00212{word-spacing:3.801600pt;}
.wse_c00212{word-spacing:3.852800pt;}
.wsf_c00212{word-spacing:3.910400pt;}
.ws24_c00212{word-spacing:4.556800pt;}
.ws23_c00212{word-spacing:4.569600pt;}
.ws1d_c00212{word-spacing:5.075200pt;}
.ws1b_c00212{word-spacing:5.107200pt;}
.ws1c_c00212{word-spacing:5.171200pt;}
.wsc_c00212{word-spacing:5.760000pt;}
.wsd_c00212{word-spacing:5.849600pt;}
.ws1e_c00212{word-spacing:6.700800pt;}
.ws1f_c00212{word-spacing:6.771200pt;}
.ws6_c00212{word-spacing:7.347200pt;}
.ws5_c00212{word-spacing:7.398400pt;}
.ws15_c00212{word-spacing:7.686400pt;}
.ws22_c00212{word-spacing:9.920000pt;}
.wsb_c00212{word-spacing:10.246400pt;}
.ws2a_c00212{word-spacing:11.212800pt;}
.ws29_c00212{word-spacing:11.238400pt;}
.wsa_c00212{word-spacing:12.748800pt;}
.ws9_c00212{word-spacing:12.838400pt;}
.ws7_c00212{word-spacing:17.600000pt;}
.ws10_c00212{word-spacing:18.892800pt;}
.ws11_c00212{word-spacing:18.944000pt;}
._0_c00212{margin-left:-1.175680pt;}
._1_c00212{width:1.024000pt;}
.fs3_c00212{font-size:37.440000pt;}
.fs5_c00212{font-size:42.560000pt;}
.fs1_c00212{font-size:48.000000pt;}
.fs0_c00212{font-size:53.440000pt;}
.fs2_c00212{font-size:64.000000pt;}
.fs4_c00212{font-size:69.440000pt;}
.y0_c00212{bottom:0.000000pt;}
.y3_c00212{bottom:51.067067pt;}
.y21_c00212{bottom:101.068667pt;}
.y20_c00212{bottom:117.390427pt;}
.y1f_c00212{bottom:133.627067pt;}
.y1e_c00212{bottom:147.147067pt;}
.y1d_c00212{bottom:165.547067pt;}
.y1c_c00212{bottom:183.947067pt;}
.y1b_c00212{bottom:260.027067pt;}
.y1a_c00212{bottom:290.587067pt;}
.y19_c00212{bottom:321.227067pt;}
.y18_c00212{bottom:351.787067pt;}
.y17_c00212{bottom:382.427067pt;}
.y16_c00212{bottom:412.987067pt;}
.y15_c00212{bottom:451.627067pt;}
.y14_c00212{bottom:482.187067pt;}
.y13_c00212{bottom:512.827067pt;}
.y12_c00212{bottom:543.387067pt;}
.y11_c00212{bottom:583.467067pt;}
.y10_c00212{bottom:631.147067pt;}
.yf_c00212{bottom:661.787067pt;}
.ye_c00212{bottom:692.347067pt;}
.yd_c00212{bottom:730.987067pt;}
.yc_c00212{bottom:761.547067pt;}
.yb_c00212{bottom:792.187067pt;}
.ya_c00212{bottom:822.747067pt;}
.y9_c00212{bottom:853.387067pt;}
.y8_c00212{bottom:883.947067pt;}
.y7_c00212{bottom:914.587067pt;}
.y6_c00212{bottom:953.147067pt;}
.y5_c00212{bottom:983.787067pt;}
.y4_c00212{bottom:1014.347067pt;}
.y2_c00212{bottom:1046.987067pt;}
.y1_c00212{bottom:1063.867067pt;}
.h7_c00212{height:42.656250pt;}
.h8_c00212{height:44.388750pt;}
.h1_c00212{height:44.724687pt;}
.h2_c00212{height:50.062500pt;}
.h4_c00212{height:53.562500pt;}
.h5_c00212{height:57.894062pt;}
.h3_c00212{height:64.142500pt;}
.h6_c00212{height:72.423750pt;}
.h0_c00212{height:1122.666667pt;}
.w1_c00212{width:793.333333pt;}
.w0_c00212{width:793.626667pt;}
.x0_c00212{left:0.000000pt;}
.x1_c00212{left:113.440000pt;}
.x2_c00212{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_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_1027e23c83b19139099f0608.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00213;src:url('chunks/assets/font_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;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_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;}
.v1_c00213{vertical-align:29.880000px;}
.lsf_c00213{letter-spacing:-0.151200px;}
.ls18_c00213{letter-spacing:-0.036072px;}
.ls11_c00213{letter-spacing:-0.036000px;}
.ls16_c00213{letter-spacing:-0.030060px;}
.ls13_c00213{letter-spacing:-0.021600px;}
.ls17_c00213{letter-spacing:-0.018036px;}
.ls12_c00213{letter-spacing:-0.014400px;}
.ls10_c00213{letter-spacing:-0.007200px;}
.ls15_c00213{letter-spacing:-0.006012px;}
.lse_c00213{letter-spacing:0.000000px;}
.ls3_c00213{letter-spacing:0.007200px;}
.ls9_c00213{letter-spacing:0.012024px;}
.ls4_c00213{letter-spacing:0.014400px;}
.lsb_c00213{letter-spacing:0.019152px;}
.lsd_c00213{letter-spacing:0.023940px;}
.lsc_c00213{letter-spacing:0.028728px;}
.ls5_c00213{letter-spacing:0.028800px;}
.lsa_c00213{letter-spacing:0.030060px;}
.ls0_c00213{letter-spacing:0.036072px;}
.ls6_c00213{letter-spacing:0.042084px;}
.ls8_c00213{letter-spacing:0.048096px;}
.ls7_c00213{letter-spacing:0.054108px;}
.ls1_c00213{letter-spacing:0.054756px;}
.ls2_c00213{letter-spacing:0.072000px;}
.ls14_c00213{letter-spacing:0.252000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00213{word-spacing:-10.584756px;}
.ws1_c00213{word-spacing:-0.306612px;}
.ws2c_c00213{word-spacing:-0.009576px;}
.wsd_c00213{word-spacing:-0.007200px;}
.ws2d_c00213{word-spacing:-0.004788px;}
.ws2_c00213{word-spacing:0.000000px;}
.ws12_c00213{word-spacing:0.007200px;}
.ws6_c00213{word-spacing:0.014400px;}
.ws5_c00213{word-spacing:0.086400px;}
.wsc_c00213{word-spacing:0.093600px;}
.ws2a_c00213{word-spacing:0.114228px;}
.ws2b_c00213{word-spacing:0.126252px;}
.ws24_c00213{word-spacing:0.799596px;}
.ws25_c00213{word-spacing:0.841680px;}
.ws8_c00213{word-spacing:1.101600px;}
.ws28_c00213{word-spacing:2.218428px;}
.ws29_c00213{word-spacing:2.266524px;}
.ws1e_c00213{word-spacing:2.567124px;}
.wsb_c00213{word-spacing:2.570400px;}
.wsa_c00213{word-spacing:2.592000px;}
.ws27_c00213{word-spacing:2.957904px;}
.ws26_c00213{word-spacing:2.999988px;}
.ws21_c00213{word-spacing:3.336660px;}
.ws18_c00213{word-spacing:3.348000px;}
.ws22_c00213{word-spacing:3.360708px;}
.ws17_c00213{word-spacing:3.664800px;}
.wse_c00213{word-spacing:4.356000px;}
.ws23_c00213{word-spacing:4.364712px;}
.wsf_c00213{word-spacing:4.370400px;}
.ws9_c00213{word-spacing:4.694400px;}
.ws7_c00213{word-spacing:5.407200px;}
.ws1d_c00213{word-spacing:6.501600px;}
.ws11_c00213{word-spacing:6.825600px;}
.ws10_c00213{word-spacing:6.912000px;}
.ws1c_c00213{word-spacing:8.596800px;}
.ws1b_c00213{word-spacing:8.654400px;}
.ws3_c00213{word-spacing:9.007200px;}
.ws4_c00213{word-spacing:9.043200px;}
.ws14_c00213{word-spacing:11.167200px;}
.ws16_c00213{word-spacing:11.203200px;}
.ws13_c00213{word-spacing:11.246400px;}
.ws19_c00213{word-spacing:11.894400px;}
.ws1a_c00213{word-spacing:11.901600px;}
.ws20_c00213{word-spacing:13.358664px;}
.ws1f_c00213{word-spacing:13.412772px;}
.ws15_c00213{word-spacing:27.748800px;}
._0_c00213{margin-left:-1.022040px;}
._1_c00213{width:1.015200px;}
.fc0_c00213{color:rgb(0,0,0);}
.fs3_c00213{font-size:42.120000px;}
.fs4_c00213{font-size:47.880000px;}
.fs2_c00213{font-size:54.000000px;}
.fs0_c00213{font-size:60.120000px;}
.fs1_c00213{font-size:72.000000px;}
.y0_c00213{bottom:0.000000px;}
.y3_c00213{bottom:57.450450px;}
.y4_c00213{bottom:61.410450px;}
.y26_c00213{bottom:113.702250px;}
.y25_c00213{bottom:132.064230px;}
.y24_c00213{bottom:150.330450px;}
.y23_c00213{bottom:165.540450px;}
.y22_c00213{bottom:186.240450px;}
.y21_c00213{bottom:206.940450px;}
.y20_c00213{bottom:301.144860px;}
.y1f_c00213{bottom:317.978460px;}
.y1e_c00213{bottom:334.902240px;}
.y1d_c00213{bottom:351.735840px;}
.y1c_c00213{bottom:368.659620px;}
.y1b_c00213{bottom:385.493220px;}
.y1a_c00213{bottom:402.417000px;}
.y19_c00213{bottom:419.250600px;}
.y18_c00213{bottom:460.110450px;}
.y17_c00213{bottom:494.490450px;}
.y16_c00213{bottom:528.960450px;}
.y15_c00213{bottom:572.340450px;}
.y14_c00213{bottom:606.810450px;}
.y13_c00213{bottom:641.190450px;}
.y12_c00213{bottom:675.660450px;}
.y11_c00213{bottom:710.040450px;}
.y10_c00213{bottom:744.510450px;}
.yf_c00213{bottom:778.890450px;}
.ye_c00213{bottom:822.360450px;}
.yd_c00213{bottom:856.740450px;}
.yc_c00213{bottom:891.210450px;}
.yb_c00213{bottom:925.590450px;}
.ya_c00213{bottom:960.060450px;}
.y9_c00213{bottom:994.440450px;}
.y8_c00213{bottom:1028.910450px;}
.y7_c00213{bottom:1063.290450px;}
.y6_c00213{bottom:1106.760450px;}
.y5_c00213{bottom:1141.140450px;}
.y2_c00213{bottom:1173.810450px;}
.y1_c00213{bottom:1196.850450px;}
.h2_c00213{height:47.988281px;}
.h6_c00213{height:49.937344px;}
.h1_c00213{height:50.315273px;}
.h3_c00213{height:56.320312px;}
.h4_c00213{height:60.257812px;}
.h5_c00213{height:65.130820px;}
.h0_c00213{height:1263.000000px;}
.w1_c00213{width:892.500000px;}
.w0_c00213{width:892.830000px;}
.x0_c00213{left:0.000000px;}
.x2_c00213{left:127.620000px;}
.x5_c00213{left:180.720000px;}
.x4_c00213{left:435.240000px;}
.x3_c00213{left:446.490000px;}
.x1_c00213{left:490.770000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.v1_c00213{vertical-align:26.560000pt;}
.lsf_c00213{letter-spacing:-0.134400pt;}
.ls18_c00213{letter-spacing:-0.032064pt;}
.ls11_c00213{letter-spacing:-0.032000pt;}
.ls16_c00213{letter-spacing:-0.026720pt;}
.ls13_c00213{letter-spacing:-0.019200pt;}
.ls17_c00213{letter-spacing:-0.016032pt;}
.ls12_c00213{letter-spacing:-0.012800pt;}
.ls10_c00213{letter-spacing:-0.006400pt;}
.ls15_c00213{letter-spacing:-0.005344pt;}
.lse_c00213{letter-spacing:0.000000pt;}
.ls3_c00213{letter-spacing:0.006400pt;}
.ls9_c00213{letter-spacing:0.010688pt;}
.ls4_c00213{letter-spacing:0.012800pt;}
.lsb_c00213{letter-spacing:0.017024pt;}
.lsd_c00213{letter-spacing:0.021280pt;}
.lsc_c00213{letter-spacing:0.025536pt;}
.ls5_c00213{letter-spacing:0.025600pt;}
.lsa_c00213{letter-spacing:0.026720pt;}
.ls0_c00213{letter-spacing:0.032064pt;}
.ls6_c00213{letter-spacing:0.037408pt;}
.ls8_c00213{letter-spacing:0.042752pt;}
.ls7_c00213{letter-spacing:0.048096pt;}
.ls1_c00213{letter-spacing:0.048672pt;}
.ls2_c00213{letter-spacing:0.064000pt;}
.ls14_c00213{letter-spacing:0.224000pt;}
.ws0_c00213{word-spacing:-9.408672pt;}
.ws1_c00213{word-spacing:-0.272544pt;}
.ws2c_c00213{word-spacing:-0.008512pt;}
.wsd_c00213{word-spacing:-0.006400pt;}
.ws2d_c00213{word-spacing:-0.004256pt;}
.ws2_c00213{word-spacing:0.000000pt;}
.ws12_c00213{word-spacing:0.006400pt;}
.ws6_c00213{word-spacing:0.012800pt;}
.ws5_c00213{word-spacing:0.076800pt;}
.wsc_c00213{word-spacing:0.083200pt;}
.ws2a_c00213{word-spacing:0.101536pt;}
.ws2b_c00213{word-spacing:0.112224pt;}
.ws24_c00213{word-spacing:0.710752pt;}
.ws25_c00213{word-spacing:0.748160pt;}
.ws8_c00213{word-spacing:0.979200pt;}
.ws28_c00213{word-spacing:1.971936pt;}
.ws29_c00213{word-spacing:2.014688pt;}
.ws1e_c00213{word-spacing:2.281888pt;}
.wsb_c00213{word-spacing:2.284800pt;}
.wsa_c00213{word-spacing:2.304000pt;}
.ws27_c00213{word-spacing:2.629248pt;}
.ws26_c00213{word-spacing:2.666656pt;}
.ws21_c00213{word-spacing:2.965920pt;}
.ws18_c00213{word-spacing:2.976000pt;}
.ws22_c00213{word-spacing:2.987296pt;}
.ws17_c00213{word-spacing:3.257600pt;}
.wse_c00213{word-spacing:3.872000pt;}
.ws23_c00213{word-spacing:3.879744pt;}
.wsf_c00213{word-spacing:3.884800pt;}
.ws9_c00213{word-spacing:4.172800pt;}
.ws7_c00213{word-spacing:4.806400pt;}
.ws1d_c00213{word-spacing:5.779200pt;}
.ws11_c00213{word-spacing:6.067200pt;}
.ws10_c00213{word-spacing:6.144000pt;}
.ws1c_c00213{word-spacing:7.641600pt;}
.ws1b_c00213{word-spacing:7.692800pt;}
.ws3_c00213{word-spacing:8.006400pt;}
.ws4_c00213{word-spacing:8.038400pt;}
.ws14_c00213{word-spacing:9.926400pt;}
.ws16_c00213{word-spacing:9.958400pt;}
.ws13_c00213{word-spacing:9.996800pt;}
.ws19_c00213{word-spacing:10.572800pt;}
.ws1a_c00213{word-spacing:10.579200pt;}
.ws20_c00213{word-spacing:11.874368pt;}
.ws1f_c00213{word-spacing:11.922464pt;}
.ws15_c00213{word-spacing:24.665600pt;}
._0_c00213{margin-left:-0.908480pt;}
._1_c00213{width:0.902400pt;}
.fs3_c00213{font-size:37.440000pt;}
.fs4_c00213{font-size:42.560000pt;}
.fs2_c00213{font-size:48.000000pt;}
.fs0_c00213{font-size:53.440000pt;}
.fs1_c00213{font-size:64.000000pt;}
.y0_c00213{bottom:0.000000pt;}
.y3_c00213{bottom:51.067067pt;}
.y4_c00213{bottom:54.587067pt;}
.y26_c00213{bottom:101.068667pt;}
.y25_c00213{bottom:117.390427pt;}
.y24_c00213{bottom:133.627067pt;}
.y23_c00213{bottom:147.147067pt;}
.y22_c00213{bottom:165.547067pt;}
.y21_c00213{bottom:183.947067pt;}
.y20_c00213{bottom:267.684320pt;}
.y1f_c00213{bottom:282.647520pt;}
.y1e_c00213{bottom:297.690880pt;}
.y1d_c00213{bottom:312.654080pt;}
.y1c_c00213{bottom:327.697440pt;}
.y1b_c00213{bottom:342.660640pt;}
.y1a_c00213{bottom:357.704000pt;}
.y19_c00213{bottom:372.667200pt;}
.y18_c00213{bottom:408.987067pt;}
.y17_c00213{bottom:439.547067pt;}
.y16_c00213{bottom:470.187067pt;}
.y15_c00213{bottom:508.747067pt;}
.y14_c00213{bottom:539.387067pt;}
.y13_c00213{bottom:569.947067pt;}
.y12_c00213{bottom:600.587067pt;}
.y11_c00213{bottom:631.147067pt;}
.y10_c00213{bottom:661.787067pt;}
.yf_c00213{bottom:692.347067pt;}
.ye_c00213{bottom:730.987067pt;}
.yd_c00213{bottom:761.547067pt;}
.yc_c00213{bottom:792.187067pt;}
.yb_c00213{bottom:822.747067pt;}
.ya_c00213{bottom:853.387067pt;}
.y9_c00213{bottom:883.947067pt;}
.y8_c00213{bottom:914.587067pt;}
.y7_c00213{bottom:945.147067pt;}
.y6_c00213{bottom:983.787067pt;}
.y5_c00213{bottom:1014.347067pt;}
.y2_c00213{bottom:1043.387067pt;}
.y1_c00213{bottom:1063.867067pt;}
.h2_c00213{height:42.656250pt;}
.h6_c00213{height:44.388750pt;}
.h1_c00213{height:44.724687pt;}
.h3_c00213{height:50.062500pt;}
.h4_c00213{height:53.562500pt;}
.h5_c00213{height:57.894063pt;}
.h0_c00213{height:1122.666667pt;}
.w1_c00213{width:793.333333pt;}
.w0_c00213{width:793.626667pt;}
.x0_c00213{left:0.000000pt;}
.x2_c00213{left:113.440000pt;}
.x5_c00213{left:160.640000pt;}
.x4_c00213{left:386.880000pt;}
.x3_c00213{left:396.880000pt;}
.x1_c00213{left:436.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_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_deaed7443d1e666416e99662.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.100098;font-style:normal;font-weight:normal;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_e11556ede223a993f4414430.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;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_c00214;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00214;src:url('chunks/assets/font_e48b285ec395f721e98d889e.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00214{font-family:ff5_c00214;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_c00214;src:url('chunks/assets/font_a7f16c99dc676563840f5ec2.woff2')format("woff");}.ff6_c00214{font-family:ff6_c00214;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_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00214{vertical-align:-15.120000px;}
.v0_c00214{vertical-align:0.000000px;}
.v1_c00214{vertical-align:15.840000px;}
.v3_c00214{vertical-align:29.880000px;}
.ls14_c00214{letter-spacing:-0.151200px;}
.ls1c_c00214{letter-spacing:-0.050400px;}
.ls1d_c00214{letter-spacing:-0.043200px;}
.ls1b_c00214{letter-spacing:-0.039060px;}
.ls1a_c00214{letter-spacing:-0.028800px;}
.ls18_c00214{letter-spacing:-0.021600px;}
.ls16_c00214{letter-spacing:-0.014400px;}
.ls17_c00214{letter-spacing:-0.007200px;}
.ls1e_c00214{letter-spacing:-0.003888px;}
.ls13_c00214{letter-spacing:0.000000px;}
.lsf_c00214{letter-spacing:0.004788px;}
.ls6_c00214{letter-spacing:0.007200px;}
.ls11_c00214{letter-spacing:0.009576px;}
.lsc_c00214{letter-spacing:0.014364px;}
.ls5_c00214{letter-spacing:0.014400px;}
.lsa_c00214{letter-spacing:0.015624px;}
.ls12_c00214{letter-spacing:0.019152px;}
.ls19_c00214{letter-spacing:0.028800px;}
.ls10_c00214{letter-spacing:0.033516px;}
.ls0_c00214{letter-spacing:0.048096px;}
.ls2_c00214{letter-spacing:0.054108px;}
.ls4_c00214{letter-spacing:0.054756px;}
.lse_c00214{letter-spacing:0.057456px;}
.lsb_c00214{letter-spacing:0.093600px;}
.ls3_c00214{letter-spacing:0.136080px;}
.ls7_c00214{letter-spacing:0.144000px;}
.ls15_c00214{letter-spacing:0.168336px;}
.lsd_c00214{letter-spacing:0.378720px;}
.ls9_c00214{letter-spacing:56.793240px;}
.ls8_c00214{letter-spacing:65.304000px;}
.ls1_c00214{letter-spacing:1212.120000px;}
.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;}
}
.ws3_c00214{word-spacing:-19.490940px;}
.ws2_c00214{word-spacing:-17.971200px;}
.ws4_c00214{word-spacing:-10.804752px;}
.ws1_c00214{word-spacing:-10.584756px;}
.ws0_c00214{word-spacing:-9.856080px;}
.ws20_c00214{word-spacing:-0.109368px;}
.ws18_c00214{word-spacing:-0.093600px;}
.ws1f_c00214{word-spacing:-0.086400px;}
.ws29_c00214{word-spacing:-0.038304px;}
.ws2b_c00214{word-spacing:-0.014364px;}
.ws6_c00214{word-spacing:0.000000px;}
.ws28_c00214{word-spacing:0.004788px;}
.wse_c00214{word-spacing:0.007200px;}
.ws2c_c00214{word-spacing:0.009576px;}
.ws2a_c00214{word-spacing:0.014364px;}
.ws5_c00214{word-spacing:0.042084px;}
.ws1b_c00214{word-spacing:0.057600px;}
.wsd_c00214{word-spacing:0.093600px;}
.ws17_c00214{word-spacing:0.100800px;}
.ws8_c00214{word-spacing:0.676800px;}
.ws12_c00214{word-spacing:1.101600px;}
.ws7_c00214{word-spacing:1.118232px;}
.wsa_c00214{word-spacing:2.527200px;}
.ws9_c00214{word-spacing:2.584800px;}
.ws1c_c00214{word-spacing:6.847200px;}
.ws25_c00214{word-spacing:7.200000px;}
.ws24_c00214{word-spacing:7.214400px;}
.ws1e_c00214{word-spacing:8.287200px;}
.ws27_c00214{word-spacing:8.683200px;}
.ws26_c00214{word-spacing:8.712000px;}
.wsb_c00214{word-spacing:9.741600px;}
.wsc_c00214{word-spacing:9.792000px;}
.ws15_c00214{word-spacing:11.541600px;}
.ws11_c00214{word-spacing:13.687200px;}
.ws10_c00214{word-spacing:13.723200px;}
.ws1a_c00214{word-spacing:14.731200px;}
.ws19_c00214{word-spacing:14.760000px;}
.wsf_c00214{word-spacing:18.352800px;}
.ws1d_c00214{word-spacing:19.454400px;}
.ws23_c00214{word-spacing:22.226400px;}
.ws22_c00214{word-spacing:22.305600px;}
.ws13_c00214{word-spacing:22.312800px;}
.ws21_c00214{word-spacing:22.341600px;}
.ws14_c00214{word-spacing:22.384800px;}
.ws16_c00214{word-spacing:33.444000px;}
._0_c00214{margin-left:-1.322640px;}
._1_c00214{width:1.080000px;}
.fc0_c00214{color:rgb(0,0,0);}
.fs3_c00214{font-size:38.880000px;}
.fs4_c00214{font-size:42.120000px;}
.fs6_c00214{font-size:47.880000px;}
.fs1_c00214{font-size:54.000000px;}
.fs0_c00214{font-size:60.120000px;}
.fs2_c00214{font-size:72.000000px;}
.fs5_c00214{font-size:78.120000px;}
.y0_c00214{bottom:0.000000px;}
.y3_c00214{bottom:57.450450px;}
.y24_c00214{bottom:113.698470px;}
.y23_c00214{bottom:132.068010px;}
.y22_c00214{bottom:150.334230px;}
.y21_c00214{bottom:168.602250px;}
.y20_c00214{bottom:186.964230px;}
.y1f_c00214{bottom:205.230450px;}
.y1e_c00214{bottom:220.440450px;}
.y1d_c00214{bottom:241.140450px;}
.y1c_c00214{bottom:261.840450px;}
.y1b_c00214{bottom:300.630450px;}
.y1a_c00214{bottom:335.010450px;}
.y19_c00214{bottom:369.480450px;}
.y18_c00214{bottom:414.480450px;}
.y17_c00214{bottom:468.210450px;}
.y16_c00214{bottom:502.590450px;}
.y15_c00214{bottom:537.060450px;}
.y14_c00214{bottom:571.440450px;}
.y13_c00214{bottom:614.910450px;}
.y12_c00214{bottom:649.290450px;}
.y11_c00214{bottom:692.760450px;}
.y10_c00214{bottom:727.140450px;}
.yf_c00214{bottom:761.610450px;}
.ye_c00214{bottom:804.990450px;}
.yd_c00214{bottom:839.460450px;}
.yc_c00214{bottom:873.840450px;}
.yb_c00214{bottom:908.310450px;}
.ya_c00214{bottom:942.690450px;}
.y9_c00214{bottom:986.160450px;}
.y8_c00214{bottom:1020.540450px;}
.y7_c00214{bottom:1055.010450px;}
.y6_c00214{bottom:1089.390450px;}
.y5_c00214{bottom:1126.916850px;}
.y4_c00214{bottom:1143.750450px;}
.y2_c00214{bottom:1177.860450px;}
.y1_c00214{bottom:1196.850450px;}
.ha_c00214{height:47.988281px;}
.hb_c00214{height:49.937344px;}
.h1_c00214{height:50.315273px;}
.h4_c00214{height:50.329673px;}
.h2_c00214{height:56.320312px;}
.h5_c00214{height:60.257812px;}
.h6_c00214{height:65.130820px;}
.h8_c00214{height:65.131420px;}
.h3_c00214{height:72.160312px;}
.h7_c00214{height:75.093750px;}
.h9_c00214{height:81.476719px;}
.h0_c00214{height:1263.000000px;}
.w1_c00214{width:892.500000px;}
.w0_c00214{width:892.830000px;}
.x0_c00214{left:0.000000px;}
.x1_c00214{left:127.620000px;}
.x3_c00214{left:154.620000px;}
.x2_c00214{left:180.810000px;}
@media print{
.v2_c00214{vertical-align:-13.440000pt;}
.v0_c00214{vertical-align:0.000000pt;}
.v1_c00214{vertical-align:14.080000pt;}
.v3_c00214{vertical-align:26.560000pt;}
.ls14_c00214{letter-spacing:-0.134400pt;}
.ls1c_c00214{letter-spacing:-0.044800pt;}
.ls1d_c00214{letter-spacing:-0.038400pt;}
.ls1b_c00214{letter-spacing:-0.034720pt;}
.ls1a_c00214{letter-spacing:-0.025600pt;}
.ls18_c00214{letter-spacing:-0.019200pt;}
.ls16_c00214{letter-spacing:-0.012800pt;}
.ls17_c00214{letter-spacing:-0.006400pt;}
.ls1e_c00214{letter-spacing:-0.003456pt;}
.ls13_c00214{letter-spacing:0.000000pt;}
.lsf_c00214{letter-spacing:0.004256pt;}
.ls6_c00214{letter-spacing:0.006400pt;}
.ls11_c00214{letter-spacing:0.008512pt;}
.lsc_c00214{letter-spacing:0.012768pt;}
.ls5_c00214{letter-spacing:0.012800pt;}
.lsa_c00214{letter-spacing:0.013888pt;}
.ls12_c00214{letter-spacing:0.017024pt;}
.ls19_c00214{letter-spacing:0.025600pt;}
.ls10_c00214{letter-spacing:0.029792pt;}
.ls0_c00214{letter-spacing:0.042752pt;}
.ls2_c00214{letter-spacing:0.048096pt;}
.ls4_c00214{letter-spacing:0.048672pt;}
.lse_c00214{letter-spacing:0.051072pt;}
.lsb_c00214{letter-spacing:0.083200pt;}
.ls3_c00214{letter-spacing:0.120960pt;}
.ls7_c00214{letter-spacing:0.128000pt;}
.ls15_c00214{letter-spacing:0.149632pt;}
.lsd_c00214{letter-spacing:0.336640pt;}
.ls9_c00214{letter-spacing:50.482880pt;}
.ls8_c00214{letter-spacing:58.048000pt;}
.ls1_c00214{letter-spacing:1077.440000pt;}
.ws3_c00214{word-spacing:-17.325280pt;}
.ws2_c00214{word-spacing:-15.974400pt;}
.ws4_c00214{word-spacing:-9.604224pt;}
.ws1_c00214{word-spacing:-9.408672pt;}
.ws0_c00214{word-spacing:-8.760960pt;}
.ws20_c00214{word-spacing:-0.097216pt;}
.ws18_c00214{word-spacing:-0.083200pt;}
.ws1f_c00214{word-spacing:-0.076800pt;}
.ws29_c00214{word-spacing:-0.034048pt;}
.ws2b_c00214{word-spacing:-0.012768pt;}
.ws6_c00214{word-spacing:0.000000pt;}
.ws28_c00214{word-spacing:0.004256pt;}
.wse_c00214{word-spacing:0.006400pt;}
.ws2c_c00214{word-spacing:0.008512pt;}
.ws2a_c00214{word-spacing:0.012768pt;}
.ws5_c00214{word-spacing:0.037408pt;}
.ws1b_c00214{word-spacing:0.051200pt;}
.wsd_c00214{word-spacing:0.083200pt;}
.ws17_c00214{word-spacing:0.089600pt;}
.ws8_c00214{word-spacing:0.601600pt;}
.ws12_c00214{word-spacing:0.979200pt;}
.ws7_c00214{word-spacing:0.993984pt;}
.wsa_c00214{word-spacing:2.246400pt;}
.ws9_c00214{word-spacing:2.297600pt;}
.ws1c_c00214{word-spacing:6.086400pt;}
.ws25_c00214{word-spacing:6.400000pt;}
.ws24_c00214{word-spacing:6.412800pt;}
.ws1e_c00214{word-spacing:7.366400pt;}
.ws27_c00214{word-spacing:7.718400pt;}
.ws26_c00214{word-spacing:7.744000pt;}
.wsb_c00214{word-spacing:8.659200pt;}
.wsc_c00214{word-spacing:8.704000pt;}
.ws15_c00214{word-spacing:10.259200pt;}
.ws11_c00214{word-spacing:12.166400pt;}
.ws10_c00214{word-spacing:12.198400pt;}
.ws1a_c00214{word-spacing:13.094400pt;}
.ws19_c00214{word-spacing:13.120000pt;}
.wsf_c00214{word-spacing:16.313600pt;}
.ws1d_c00214{word-spacing:17.292800pt;}
.ws23_c00214{word-spacing:19.756800pt;}
.ws22_c00214{word-spacing:19.827200pt;}
.ws13_c00214{word-spacing:19.833600pt;}
.ws21_c00214{word-spacing:19.859200pt;}
.ws14_c00214{word-spacing:19.897600pt;}
.ws16_c00214{word-spacing:29.728000pt;}
._0_c00214{margin-left:-1.175680pt;}
._1_c00214{width:0.960000pt;}
.fs3_c00214{font-size:34.560000pt;}
.fs4_c00214{font-size:37.440000pt;}
.fs6_c00214{font-size:42.560000pt;}
.fs1_c00214{font-size:48.000000pt;}
.fs0_c00214{font-size:53.440000pt;}
.fs2_c00214{font-size:64.000000pt;}
.fs5_c00214{font-size:69.440000pt;}
.y0_c00214{bottom:0.000000pt;}
.y3_c00214{bottom:51.067067pt;}
.y24_c00214{bottom:101.065307pt;}
.y23_c00214{bottom:117.393787pt;}
.y22_c00214{bottom:133.630427pt;}
.y21_c00214{bottom:149.868667pt;}
.y20_c00214{bottom:166.190427pt;}
.y1f_c00214{bottom:182.427067pt;}
.y1e_c00214{bottom:195.947067pt;}
.y1d_c00214{bottom:214.347067pt;}
.y1c_c00214{bottom:232.747067pt;}
.y1b_c00214{bottom:267.227067pt;}
.y1a_c00214{bottom:297.787067pt;}
.y19_c00214{bottom:328.427067pt;}
.y18_c00214{bottom:368.427067pt;}
.y17_c00214{bottom:416.187067pt;}
.y16_c00214{bottom:446.747067pt;}
.y15_c00214{bottom:477.387067pt;}
.y14_c00214{bottom:507.947067pt;}
.y13_c00214{bottom:546.587067pt;}
.y12_c00214{bottom:577.147067pt;}
.y11_c00214{bottom:615.787067pt;}
.y10_c00214{bottom:646.347067pt;}
.yf_c00214{bottom:676.987067pt;}
.ye_c00214{bottom:715.547067pt;}
.yd_c00214{bottom:746.187067pt;}
.yc_c00214{bottom:776.747067pt;}
.yb_c00214{bottom:807.387067pt;}
.ya_c00214{bottom:837.947067pt;}
.y9_c00214{bottom:876.587067pt;}
.y8_c00214{bottom:907.147067pt;}
.y7_c00214{bottom:937.787067pt;}
.y6_c00214{bottom:968.347067pt;}
.y5_c00214{bottom:1001.703867pt;}
.y4_c00214{bottom:1016.667067pt;}
.y2_c00214{bottom:1046.987067pt;}
.y1_c00214{bottom:1063.867067pt;}
.ha_c00214{height:42.656250pt;}
.hb_c00214{height:44.388750pt;}
.h1_c00214{height:44.724687pt;}
.h4_c00214{height:44.737488pt;}
.h2_c00214{height:50.062500pt;}
.h5_c00214{height:53.562500pt;}
.h6_c00214{height:57.894062pt;}
.h8_c00214{height:57.894596pt;}
.h3_c00214{height:64.142500pt;}
.h7_c00214{height:66.750000pt;}
.h9_c00214{height:72.423750pt;}
.h0_c00214{height:1122.666667pt;}
.w1_c00214{width:793.333333pt;}
.w0_c00214{width:793.626667pt;}
.x0_c00214{left:0.000000pt;}
.x1_c00214{left:113.440000pt;}
.x3_c00214{left:137.440000pt;}
.x2_c00214{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_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_c455f6de2f986da0ccb1fe6b.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_c8d595a66b5fa80f6fcf4574.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00215;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.281250;font-style:normal;font-weight:normal;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_a7f16c99dc676563840f5ec2.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;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_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);}
.v2_c00215{vertical-align:-15.120000px;}
.v0_c00215{vertical-align:0.000000px;}
.v1_c00215{vertical-align:15.253200px;}
.ls16_c00215{letter-spacing:-0.151200px;}
.ls21_c00215{letter-spacing:-0.036000px;}
.ls1a_c00215{letter-spacing:-0.030060px;}
.ls20_c00215{letter-spacing:-0.028800px;}
.ls1c_c00215{letter-spacing:-0.024048px;}
.ls19_c00215{letter-spacing:-0.021600px;}
.ls1e_c00215{letter-spacing:-0.018036px;}
.ls18_c00215{letter-spacing:-0.014400px;}
.ls1b_c00215{letter-spacing:-0.012024px;}
.ls17_c00215{letter-spacing:-0.007200px;}
.ls1d_c00215{letter-spacing:-0.006012px;}
.ls22_c00215{letter-spacing:-0.003888px;}
.ls15_c00215{letter-spacing:0.000000px;}
.ls5_c00215{letter-spacing:0.006012px;}
.ls4_c00215{letter-spacing:0.007200px;}
.lse_c00215{letter-spacing:0.012024px;}
.ls12_c00215{letter-spacing:0.014364px;}
.ls10_c00215{letter-spacing:0.014400px;}
.lsb_c00215{letter-spacing:0.018036px;}
.ls1_c00215{letter-spacing:0.021600px;}
.ls7_c00215{letter-spacing:0.024048px;}
.ls8_c00215{letter-spacing:0.030060px;}
.ls0_c00215{letter-spacing:0.036072px;}
.ls6_c00215{letter-spacing:0.042084px;}
.ls11_c00215{letter-spacing:0.043092px;}
.ls9_c00215{letter-spacing:0.048096px;}
.lsa_c00215{letter-spacing:0.054108px;}
.ls14_c00215{letter-spacing:0.057456px;}
.lsd_c00215{letter-spacing:0.060120px;}
.lsc_c00215{letter-spacing:0.136080px;}
.ls2_c00215{letter-spacing:0.144000px;}
.ls1f_c00215{letter-spacing:0.168336px;}
.ls13_c00215{letter-spacing:0.378720px;}
.lsf_c00215{letter-spacing:44.784000px;}
.ls3_c00215{letter-spacing:65.304000px;}
.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:-15.048036px;}
.ws2_c00215{word-spacing:-10.804752px;}
.ws1_c00215{word-spacing:-9.856080px;}
.ws3_c00215{word-spacing:-0.306612px;}
.ws8_c00215{word-spacing:-0.072000px;}
.ws32_c00215{word-spacing:-0.038304px;}
.ws30_c00215{word-spacing:-0.023940px;}
.ws2d_c00215{word-spacing:-0.007200px;}
.ws4_c00215{word-spacing:0.000000px;}
.ws31_c00215{word-spacing:0.004788px;}
.ws9_c00215{word-spacing:0.007200px;}
.ws33_c00215{word-spacing:0.019152px;}
.ws2c_c00215{word-spacing:0.036000px;}
.wsb_c00215{word-spacing:0.079200px;}
.ws21_c00215{word-spacing:0.108216px;}
.ws11_c00215{word-spacing:0.120240px;}
.ws19_c00215{word-spacing:0.751500px;}
.ws17_c00215{word-spacing:0.781560px;}
.ws18_c00215{word-spacing:0.805608px;}
.ws2b_c00215{word-spacing:1.807200px;}
.ws16_c00215{word-spacing:1.863720px;}
.ws27_c00215{word-spacing:2.246400px;}
.ws26_c00215{word-spacing:2.419200px;}
.ws14_c00215{word-spacing:2.561112px;}
.ws15_c00215{word-spacing:2.567124px;}
.ws1a_c00215{word-spacing:2.909808px;}
.ws1e_c00215{word-spacing:2.927844px;}
.ws1b_c00215{word-spacing:2.969928px;}
.ws13_c00215{word-spacing:3.276540px;}
.wsd_c00215{word-spacing:3.288564px;}
.wsc_c00215{word-spacing:3.324636px;}
.ws1c_c00215{word-spacing:3.703392px;}
.ws1d_c00215{word-spacing:3.715416px;}
.ws23_c00215{word-spacing:4.392000px;}
.ws24_c00215{word-spacing:4.456800px;}
.ws10_c00215{word-spacing:5.104188px;}
.wsa_c00215{word-spacing:5.392800px;}
.ws7_c00215{word-spacing:5.774400px;}
.ws6_c00215{word-spacing:5.875200px;}
.ws28_c00215{word-spacing:6.091200px;}
.ws29_c00215{word-spacing:6.148800px;}
.wsf_c00215{word-spacing:6.901776px;}
.wse_c00215{word-spacing:6.907788px;}
.ws12_c00215{word-spacing:7.244460px;}
.ws5_c00215{word-spacing:8.287200px;}
.ws25_c00215{word-spacing:11.534400px;}
.ws20_c00215{word-spacing:11.957868px;}
.ws1f_c00215{word-spacing:11.975904px;}
.ws2a_c00215{word-spacing:18.770400px;}
.ws2e_c00215{word-spacing:24.120000px;}
.ws2f_c00215{word-spacing:24.177600px;}
.ws22_c00215{word-spacing:29.188800px;}
._0_c00215{margin-left:-1.022040px;}
._1_c00215{width:1.368000px;}
.fc0_c00215{color:rgb(0,0,0);}
.fs3_c00215{font-size:38.880000px;}
.fs4_c00215{font-size:47.880000px;}
.fs2_c00215{font-size:54.000000px;}
.fs0_c00215{font-size:60.120000px;}
.fs1_c00215{font-size:72.000000px;}
.y0_c00215{bottom:0.000000px;}
.y3_c00215{bottom:57.450450px;}
.y4_c00215{bottom:61.410450px;}
.y29_c00215{bottom:113.698470px;}
.y28_c00215{bottom:132.060450px;}
.y27_c00215{bottom:147.270450px;}
.y26_c00215{bottom:167.970450px;}
.y25_c00215{bottom:188.670450px;}
.y24_c00215{bottom:274.260450px;}
.y23_c00215{bottom:308.640450px;}
.y22_c00215{bottom:352.110450px;}
.y21_c00215{bottom:395.490450px;}
.y20_c00215{bottom:429.960450px;}
.y1f_c00215{bottom:464.340450px;}
.y1e_c00215{bottom:498.810450px;}
.y1d_c00215{bottom:533.190450px;}
.y1c_c00215{bottom:576.660450px;}
.y1b_c00215{bottom:611.040450px;}
.y1a_c00215{bottom:645.510450px;}
.y19_c00215{bottom:679.890450px;}
.y18_c00215{bottom:717.402090px;}
.y17_c00215{bottom:734.235690px;}
.y16_c00215{bottom:751.159470px;}
.y15_c00215{bottom:767.993070px;}
.y14_c00215{bottom:784.916850px;}
.y13_c00215{bottom:801.717150px;}
.y12_c00215{bottom:818.640930px;}
.y11_c00215{bottom:835.474530px;}
.y10_c00215{bottom:852.398310px;}
.yf_c00215{bottom:869.231910px;}
.ye_c00215{bottom:886.155690px;}
.yd_c00215{bottom:902.989290px;}
.yc_c00215{bottom:919.913070px;}
.yb_c00215{bottom:936.746670px;}
.ya_c00215{bottom:953.670450px;}
.y9_c00215{bottom:994.440450px;}
.y8_c00215{bottom:1028.910450px;}
.y7_c00215{bottom:1072.290450px;}
.y6_c00215{bottom:1106.760450px;}
.y5_c00215{bottom:1141.140450px;}
.y2_c00215{bottom:1173.810450px;}
.y1_c00215{bottom:1196.850450px;}
.h2_c00215{height:47.988281px;}
.h8_c00215{height:49.937344px;}
.h9_c00215{height:49.945264px;}
.h1_c00215{height:50.315273px;}
.h7_c00215{height:50.388713px;}
.h6_c00215{height:50.448473px;}
.h3_c00215{height:56.320312px;}
.h4_c00215{height:60.257812px;}
.h5_c00215{height:75.093750px;}
.h0_c00215{height:1263.000000px;}
.w1_c00215{width:892.500000px;}
.w0_c00215{width:892.830000px;}
.x0_c00215{left:0.000000px;}
.x2_c00215{left:127.620000px;}
.x5_c00215{left:154.620000px;}
.x6_c00215{left:181.620000px;}
.x9_c00215{left:208.620000px;}
.x7_c00215{left:222.120000px;}
.x8_c00215{left:233.820000px;}
.xa_c00215{left:235.620000px;}
.x4_c00215{left:435.240000px;}
.x3_c00215{left:446.490000px;}
.x1_c00215{left:490.770000px;}
@media print{
.v2_c00215{vertical-align:-13.440000pt;}
.v0_c00215{vertical-align:0.000000pt;}
.v1_c00215{vertical-align:13.558400pt;}
.ls16_c00215{letter-spacing:-0.134400pt;}
.ls21_c00215{letter-spacing:-0.032000pt;}
.ls1a_c00215{letter-spacing:-0.026720pt;}
.ls20_c00215{letter-spacing:-0.025600pt;}
.ls1c_c00215{letter-spacing:-0.021376pt;}
.ls19_c00215{letter-spacing:-0.019200pt;}
.ls1e_c00215{letter-spacing:-0.016032pt;}
.ls18_c00215{letter-spacing:-0.012800pt;}
.ls1b_c00215{letter-spacing:-0.010688pt;}
.ls17_c00215{letter-spacing:-0.006400pt;}
.ls1d_c00215{letter-spacing:-0.005344pt;}
.ls22_c00215{letter-spacing:-0.003456pt;}
.ls15_c00215{letter-spacing:0.000000pt;}
.ls5_c00215{letter-spacing:0.005344pt;}
.ls4_c00215{letter-spacing:0.006400pt;}
.lse_c00215{letter-spacing:0.010688pt;}
.ls12_c00215{letter-spacing:0.012768pt;}
.ls10_c00215{letter-spacing:0.012800pt;}
.lsb_c00215{letter-spacing:0.016032pt;}
.ls1_c00215{letter-spacing:0.019200pt;}
.ls7_c00215{letter-spacing:0.021376pt;}
.ls8_c00215{letter-spacing:0.026720pt;}
.ls0_c00215{letter-spacing:0.032064pt;}
.ls6_c00215{letter-spacing:0.037408pt;}
.ls11_c00215{letter-spacing:0.038304pt;}
.ls9_c00215{letter-spacing:0.042752pt;}
.lsa_c00215{letter-spacing:0.048096pt;}
.ls14_c00215{letter-spacing:0.051072pt;}
.lsd_c00215{letter-spacing:0.053440pt;}
.lsc_c00215{letter-spacing:0.120960pt;}
.ls2_c00215{letter-spacing:0.128000pt;}
.ls1f_c00215{letter-spacing:0.149632pt;}
.ls13_c00215{letter-spacing:0.336640pt;}
.lsf_c00215{letter-spacing:39.808000pt;}
.ls3_c00215{letter-spacing:58.048000pt;}
.ws0_c00215{word-spacing:-13.376032pt;}
.ws2_c00215{word-spacing:-9.604224pt;}
.ws1_c00215{word-spacing:-8.760960pt;}
.ws3_c00215{word-spacing:-0.272544pt;}
.ws8_c00215{word-spacing:-0.064000pt;}
.ws32_c00215{word-spacing:-0.034048pt;}
.ws30_c00215{word-spacing:-0.021280pt;}
.ws2d_c00215{word-spacing:-0.006400pt;}
.ws4_c00215{word-spacing:0.000000pt;}
.ws31_c00215{word-spacing:0.004256pt;}
.ws9_c00215{word-spacing:0.006400pt;}
.ws33_c00215{word-spacing:0.017024pt;}
.ws2c_c00215{word-spacing:0.032000pt;}
.wsb_c00215{word-spacing:0.070400pt;}
.ws21_c00215{word-spacing:0.096192pt;}
.ws11_c00215{word-spacing:0.106880pt;}
.ws19_c00215{word-spacing:0.668000pt;}
.ws17_c00215{word-spacing:0.694720pt;}
.ws18_c00215{word-spacing:0.716096pt;}
.ws2b_c00215{word-spacing:1.606400pt;}
.ws16_c00215{word-spacing:1.656640pt;}
.ws27_c00215{word-spacing:1.996800pt;}
.ws26_c00215{word-spacing:2.150400pt;}
.ws14_c00215{word-spacing:2.276544pt;}
.ws15_c00215{word-spacing:2.281888pt;}
.ws1a_c00215{word-spacing:2.586496pt;}
.ws1e_c00215{word-spacing:2.602528pt;}
.ws1b_c00215{word-spacing:2.639936pt;}
.ws13_c00215{word-spacing:2.912480pt;}
.wsd_c00215{word-spacing:2.923168pt;}
.wsc_c00215{word-spacing:2.955232pt;}
.ws1c_c00215{word-spacing:3.291904pt;}
.ws1d_c00215{word-spacing:3.302592pt;}
.ws23_c00215{word-spacing:3.904000pt;}
.ws24_c00215{word-spacing:3.961600pt;}
.ws10_c00215{word-spacing:4.537056pt;}
.wsa_c00215{word-spacing:4.793600pt;}
.ws7_c00215{word-spacing:5.132800pt;}
.ws6_c00215{word-spacing:5.222400pt;}
.ws28_c00215{word-spacing:5.414400pt;}
.ws29_c00215{word-spacing:5.465600pt;}
.wsf_c00215{word-spacing:6.134912pt;}
.wse_c00215{word-spacing:6.140256pt;}
.ws12_c00215{word-spacing:6.439520pt;}
.ws5_c00215{word-spacing:7.366400pt;}
.ws25_c00215{word-spacing:10.252800pt;}
.ws20_c00215{word-spacing:10.629216pt;}
.ws1f_c00215{word-spacing:10.645248pt;}
.ws2a_c00215{word-spacing:16.684800pt;}
.ws2e_c00215{word-spacing:21.440000pt;}
.ws2f_c00215{word-spacing:21.491200pt;}
.ws22_c00215{word-spacing:25.945600pt;}
._0_c00215{margin-left:-0.908480pt;}
._1_c00215{width:1.216000pt;}
.fs3_c00215{font-size:34.560000pt;}
.fs4_c00215{font-size:42.560000pt;}
.fs2_c00215{font-size:48.000000pt;}
.fs0_c00215{font-size:53.440000pt;}
.fs1_c00215{font-size:64.000000pt;}
.y0_c00215{bottom:0.000000pt;}
.y3_c00215{bottom:51.067067pt;}
.y4_c00215{bottom:54.587067pt;}
.y29_c00215{bottom:101.065307pt;}
.y28_c00215{bottom:117.387067pt;}
.y27_c00215{bottom:130.907067pt;}
.y26_c00215{bottom:149.307067pt;}
.y25_c00215{bottom:167.707067pt;}
.y24_c00215{bottom:243.787067pt;}
.y23_c00215{bottom:274.347067pt;}
.y22_c00215{bottom:312.987067pt;}
.y21_c00215{bottom:351.547067pt;}
.y20_c00215{bottom:382.187067pt;}
.y1f_c00215{bottom:412.747067pt;}
.y1e_c00215{bottom:443.387067pt;}
.y1d_c00215{bottom:473.947067pt;}
.y1c_c00215{bottom:512.587067pt;}
.y1b_c00215{bottom:543.147067pt;}
.y1a_c00215{bottom:573.787067pt;}
.y19_c00215{bottom:604.347067pt;}
.y18_c00215{bottom:637.690747pt;}
.y17_c00215{bottom:652.653947pt;}
.y16_c00215{bottom:667.697307pt;}
.y15_c00215{bottom:682.660507pt;}
.y14_c00215{bottom:697.703867pt;}
.y13_c00215{bottom:712.637467pt;}
.y12_c00215{bottom:727.680827pt;}
.y11_c00215{bottom:742.644027pt;}
.y10_c00215{bottom:757.687387pt;}
.yf_c00215{bottom:772.650587pt;}
.ye_c00215{bottom:787.693947pt;}
.yd_c00215{bottom:802.657147pt;}
.yc_c00215{bottom:817.700507pt;}
.yb_c00215{bottom:832.663707pt;}
.ya_c00215{bottom:847.707067pt;}
.y9_c00215{bottom:883.947067pt;}
.y8_c00215{bottom:914.587067pt;}
.y7_c00215{bottom:953.147067pt;}
.y6_c00215{bottom:983.787067pt;}
.y5_c00215{bottom:1014.347067pt;}
.y2_c00215{bottom:1043.387067pt;}
.y1_c00215{bottom:1063.867067pt;}
.h2_c00215{height:42.656250pt;}
.h8_c00215{height:44.388750pt;}
.h9_c00215{height:44.395790pt;}
.h1_c00215{height:44.724687pt;}
.h7_c00215{height:44.789967pt;}
.h6_c00215{height:44.843087pt;}
.h3_c00215{height:50.062500pt;}
.h4_c00215{height:53.562500pt;}
.h5_c00215{height:66.750000pt;}
.h0_c00215{height:1122.666667pt;}
.w1_c00215{width:793.333333pt;}
.w0_c00215{width:793.626667pt;}
.x0_c00215{left:0.000000pt;}
.x2_c00215{left:113.440000pt;}
.x5_c00215{left:137.440000pt;}
.x6_c00215{left:161.440000pt;}
.x9_c00215{left:185.440000pt;}
.x7_c00215{left:197.440000pt;}
.x8_c00215{left:207.840000pt;}
.xa_c00215{left:209.440000pt;}
.x4_c00215{left:386.880000pt;}
.x3_c00215{left:396.880000pt;}
.x1_c00215{left:436.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_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_8dea29fcce6d8cadfd72ac3a.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.100098;font-style:normal;font-weight:normal;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_5eb038a60e46f00b6dd80f23.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;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_c00216;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00216;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:1.281250;font-style:normal;font-weight:normal;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_6f22dc3479550cd77977868a.woff2')format("woff");}.ff5_c00216{font-family:ff5_c00216;line-height:1.102051;font-style:normal;font-weight:normal;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_e2fa4cd25a7fb1f9855daf69.woff2')format("woff");}.ff6_c00216{font-family:ff6_c00216;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00216;src:url('chunks/assets/font_a7f16c99dc676563840f5ec2.woff2')format("woff");}.ff7_c00216{font-family:ff7_c00216;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_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;}
.v1_c00216{vertical-align:15.840000px;}
.v2_c00216{vertical-align:29.880000px;}
.v3_c00216{vertical-align:33.486840px;}
.ls11_c00216{letter-spacing:-0.151200px;}
.ls14_c00216{letter-spacing:-0.064800px;}
.ls1d_c00216{letter-spacing:-0.060120px;}
.ls1e_c00216{letter-spacing:-0.048096px;}
.ls1b_c00216{letter-spacing:-0.042084px;}
.ls16_c00216{letter-spacing:-0.036000px;}
.ls1a_c00216{letter-spacing:-0.030060px;}
.ls18_c00216{letter-spacing:-0.028800px;}
.ls1f_c00216{letter-spacing:-0.024048px;}
.ls12_c00216{letter-spacing:-0.021600px;}
.ls1c_c00216{letter-spacing:-0.018036px;}
.ls15_c00216{letter-spacing:-0.014400px;}
.ls13_c00216{letter-spacing:-0.007200px;}
.ls20_c00216{letter-spacing:-0.003888px;}
.ls10_c00216{letter-spacing:0.000000px;}
.ls6_c00216{letter-spacing:0.007200px;}
.lsa_c00216{letter-spacing:0.014364px;}
.lsd_c00216{letter-spacing:0.019152px;}
.ls19_c00216{letter-spacing:0.021600px;}
.lsf_c00216{letter-spacing:0.023940px;}
.lse_c00216{letter-spacing:0.028728px;}
.ls8_c00216{letter-spacing:0.028800px;}
.ls9_c00216{letter-spacing:0.033516px;}
.ls0_c00216{letter-spacing:0.048096px;}
.ls4_c00216{letter-spacing:0.054756px;}
.lsc_c00216{letter-spacing:0.057456px;}
.ls17_c00216{letter-spacing:0.093600px;}
.ls7_c00216{letter-spacing:0.136080px;}
.lsb_c00216{letter-spacing:0.378720px;}
.ls3_c00216{letter-spacing:5.760000px;}
.ls2_c00216{letter-spacing:44.784000px;}
.ls5_c00216{letter-spacing:45.504000px;}
.ls1_c00216{letter-spacing:1212.120000px;}
.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:-17.964000px;}
.ws3_c00216{word-spacing:-10.804752px;}
.ws1_c00216{word-spacing:-10.584756px;}
.ws2_c00216{word-spacing:-9.856080px;}
.ws18_c00216{word-spacing:-0.228456px;}
.ws26_c00216{word-spacing:-0.038304px;}
.ws24_c00216{word-spacing:-0.014364px;}
.ws27_c00216{word-spacing:-0.009576px;}
.ws16_c00216{word-spacing:-0.007200px;}
.ws28_c00216{word-spacing:-0.004788px;}
.ws5_c00216{word-spacing:0.000000px;}
.ws25_c00216{word-spacing:0.004788px;}
.ws14_c00216{word-spacing:0.028800px;}
.ws4_c00216{word-spacing:0.042084px;}
.ws13_c00216{word-spacing:0.072000px;}
.ws19_c00216{word-spacing:0.108216px;}
.ws1c_c00216{word-spacing:0.114228px;}
.ws17_c00216{word-spacing:0.120240px;}
.ws1b_c00216{word-spacing:0.138276px;}
.ws1a_c00216{word-spacing:0.150300px;}
.ws23_c00216{word-spacing:0.381600px;}
.ws22_c00216{word-spacing:0.388800px;}
.ws21_c00216{word-spacing:0.460800px;}
.ws29_c00216{word-spacing:1.067724px;}
.ws6_c00216{word-spacing:1.461600px;}
.ws1f_c00216{word-spacing:1.468800px;}
.ws20_c00216{word-spacing:1.497600px;}
.wsc_c00216{word-spacing:2.476800px;}
.ws9_c00216{word-spacing:2.534400px;}
.wsd_c00216{word-spacing:2.541600px;}
.ws12_c00216{word-spacing:2.548800px;}
.wsb_c00216{word-spacing:3.247200px;}
.wsa_c00216{word-spacing:5.428800px;}
.ws7_c00216{word-spacing:5.767200px;}
.ws8_c00216{word-spacing:5.824800px;}
.ws1e_c00216{word-spacing:8.344800px;}
.ws1d_c00216{word-spacing:8.359200px;}
.ws15_c00216{word-spacing:9.374400px;}
.wse_c00216{word-spacing:14.068800px;}
.wsf_c00216{word-spacing:14.112000px;}
.ws11_c00216{word-spacing:24.818400px;}
.ws10_c00216{word-spacing:24.847200px;}
._0_c00216{margin-left:-1.322640px;}
._1_c00216{width:1.224000px;}
._2_c00216{width:160.560000px;}
._6_c00216{width:317.854440px;}
._3_c00216{width:348.120000px;}
._4_c00216{width:357.473520px;}
._7_c00216{width:413.565480px;}
._5_c00216{width:607.242060px;}
.fc0_c00216{color:rgb(0,0,0);}
.fs4_c00216{font-size:38.880000px;}
.fs3_c00216{font-size:42.120000px;}
.fs5_c00216{font-size:47.880000px;}
.fs1_c00216{font-size:54.000000px;}
.fs0_c00216{font-size:60.120000px;}
.fs2_c00216{font-size:72.000000px;}
.y0_c00216{bottom:0.000000px;}
.y3_c00216{bottom:57.450450px;}
.y23_c00216{bottom:113.704920px;}
.y22_c00216{bottom:127.566180px;}
.y21_c00216{bottom:145.832400px;}
.y20_c00216{bottom:164.098620px;}
.y1f_c00216{bottom:182.464230px;}
.y1e_c00216{bottom:200.730450px;}
.y1d_c00216{bottom:215.940450px;}
.y1c_c00216{bottom:236.640450px;}
.y1b_c00216{bottom:257.340450px;}
.y1a_c00216{bottom:346.530450px;}
.y19_c00216{bottom:380.910450px;}
.y18_c00216{bottom:415.380450px;}
.y17_c00216{bottom:455.700600px;}
.y16_c00216{bottom:487.380450px;}
.y15_c00216{bottom:518.970450px;}
.y14_c00216{bottom:554.788380px;}
.y13_c00216{bottom:563.340450px;}
.y12_c00216{bottom:613.470450px;}
.y11_c00216{bottom:657.660450px;}
.y10_c00216{bottom:692.040450px;}
.yf_c00216{bottom:735.510450px;}
.ye_c00216{bottom:769.890450px;}
.yd_c00216{bottom:804.360450px;}
.yc_c00216{bottom:838.740450px;}
.yb_c00216{bottom:873.210450px;}
.ya_c00216{bottom:925.590450px;}
.y9_c00216{bottom:960.060450px;}
.y8_c00216{bottom:994.440450px;}
.y7_c00216{bottom:1037.910450px;}
.y6_c00216{bottom:1072.290450px;}
.y5_c00216{bottom:1106.760450px;}
.y4_c00216{bottom:1141.140450px;}
.y2_c00216{bottom:1177.860450px;}
.y1_c00216{bottom:1196.850450px;}
.hb_c00216{height:47.988281px;}
.hc_c00216{height:49.937344px;}
.h1_c00216{height:50.315273px;}
.h2_c00216{height:56.320312px;}
.h6_c00216{height:60.257812px;}
.h8_c00216{height:60.328125px;}
.h5_c00216{height:60.890625px;}
.h7_c00216{height:65.130820px;}
.ha_c00216{height:65.131420px;}
.h3_c00216{height:72.160312px;}
.h4_c00216{height:75.093750px;}
.h9_c00216{height:83.802113px;}
.h0_c00216{height:1263.000000px;}
.w1_c00216{width:892.500000px;}
.w0_c00216{width:892.830000px;}
.x0_c00216{left:0.000000px;}
.x1_c00216{left:127.620000px;}
.x9_c00216{left:154.450350px;}
.x4_c00216{left:168.030000px;}
.x6_c00216{left:171.990000px;}
.x5_c00216{left:186.930000px;}
.x2_c00216{left:208.620000px;}
.x3_c00216{left:235.620000px;}
.x8_c00216{left:260.100000px;}
.x7_c00216{left:536.482530px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.v1_c00216{vertical-align:14.080000pt;}
.v2_c00216{vertical-align:26.560000pt;}
.v3_c00216{vertical-align:29.766080pt;}
.ls11_c00216{letter-spacing:-0.134400pt;}
.ls14_c00216{letter-spacing:-0.057600pt;}
.ls1d_c00216{letter-spacing:-0.053440pt;}
.ls1e_c00216{letter-spacing:-0.042752pt;}
.ls1b_c00216{letter-spacing:-0.037408pt;}
.ls16_c00216{letter-spacing:-0.032000pt;}
.ls1a_c00216{letter-spacing:-0.026720pt;}
.ls18_c00216{letter-spacing:-0.025600pt;}
.ls1f_c00216{letter-spacing:-0.021376pt;}
.ls12_c00216{letter-spacing:-0.019200pt;}
.ls1c_c00216{letter-spacing:-0.016032pt;}
.ls15_c00216{letter-spacing:-0.012800pt;}
.ls13_c00216{letter-spacing:-0.006400pt;}
.ls20_c00216{letter-spacing:-0.003456pt;}
.ls10_c00216{letter-spacing:0.000000pt;}
.ls6_c00216{letter-spacing:0.006400pt;}
.lsa_c00216{letter-spacing:0.012768pt;}
.lsd_c00216{letter-spacing:0.017024pt;}
.ls19_c00216{letter-spacing:0.019200pt;}
.lsf_c00216{letter-spacing:0.021280pt;}
.lse_c00216{letter-spacing:0.025536pt;}
.ls8_c00216{letter-spacing:0.025600pt;}
.ls9_c00216{letter-spacing:0.029792pt;}
.ls0_c00216{letter-spacing:0.042752pt;}
.ls4_c00216{letter-spacing:0.048672pt;}
.lsc_c00216{letter-spacing:0.051072pt;}
.ls17_c00216{letter-spacing:0.083200pt;}
.ls7_c00216{letter-spacing:0.120960pt;}
.lsb_c00216{letter-spacing:0.336640pt;}
.ls3_c00216{letter-spacing:5.120000pt;}
.ls2_c00216{letter-spacing:39.808000pt;}
.ls5_c00216{letter-spacing:40.448000pt;}
.ls1_c00216{letter-spacing:1077.440000pt;}
.ws0_c00216{word-spacing:-15.968000pt;}
.ws3_c00216{word-spacing:-9.604224pt;}
.ws1_c00216{word-spacing:-9.408672pt;}
.ws2_c00216{word-spacing:-8.760960pt;}
.ws18_c00216{word-spacing:-0.203072pt;}
.ws26_c00216{word-spacing:-0.034048pt;}
.ws24_c00216{word-spacing:-0.012768pt;}
.ws27_c00216{word-spacing:-0.008512pt;}
.ws16_c00216{word-spacing:-0.006400pt;}
.ws28_c00216{word-spacing:-0.004256pt;}
.ws5_c00216{word-spacing:0.000000pt;}
.ws25_c00216{word-spacing:0.004256pt;}
.ws14_c00216{word-spacing:0.025600pt;}
.ws4_c00216{word-spacing:0.037408pt;}
.ws13_c00216{word-spacing:0.064000pt;}
.ws19_c00216{word-spacing:0.096192pt;}
.ws1c_c00216{word-spacing:0.101536pt;}
.ws17_c00216{word-spacing:0.106880pt;}
.ws1b_c00216{word-spacing:0.122912pt;}
.ws1a_c00216{word-spacing:0.133600pt;}
.ws23_c00216{word-spacing:0.339200pt;}
.ws22_c00216{word-spacing:0.345600pt;}
.ws21_c00216{word-spacing:0.409600pt;}
.ws29_c00216{word-spacing:0.949088pt;}
.ws6_c00216{word-spacing:1.299200pt;}
.ws1f_c00216{word-spacing:1.305600pt;}
.ws20_c00216{word-spacing:1.331200pt;}
.wsc_c00216{word-spacing:2.201600pt;}
.ws9_c00216{word-spacing:2.252800pt;}
.wsd_c00216{word-spacing:2.259200pt;}
.ws12_c00216{word-spacing:2.265600pt;}
.wsb_c00216{word-spacing:2.886400pt;}
.wsa_c00216{word-spacing:4.825600pt;}
.ws7_c00216{word-spacing:5.126400pt;}
.ws8_c00216{word-spacing:5.177600pt;}
.ws1e_c00216{word-spacing:7.417600pt;}
.ws1d_c00216{word-spacing:7.430400pt;}
.ws15_c00216{word-spacing:8.332800pt;}
.wse_c00216{word-spacing:12.505600pt;}
.wsf_c00216{word-spacing:12.544000pt;}
.ws11_c00216{word-spacing:22.060800pt;}
.ws10_c00216{word-spacing:22.086400pt;}
._0_c00216{margin-left:-1.175680pt;}
._1_c00216{width:1.088000pt;}
._2_c00216{width:142.720000pt;}
._6_c00216{width:282.537280pt;}
._3_c00216{width:309.440000pt;}
._4_c00216{width:317.754240pt;}
._7_c00216{width:367.613760pt;}
._5_c00216{width:539.770720pt;}
.fs4_c00216{font-size:34.560000pt;}
.fs3_c00216{font-size:37.440000pt;}
.fs5_c00216{font-size:42.560000pt;}
.fs1_c00216{font-size:48.000000pt;}
.fs0_c00216{font-size:53.440000pt;}
.fs2_c00216{font-size:64.000000pt;}
.y0_c00216{bottom:0.000000pt;}
.y3_c00216{bottom:51.067067pt;}
.y23_c00216{bottom:101.071040pt;}
.y22_c00216{bottom:113.392160pt;}
.y21_c00216{bottom:129.628800pt;}
.y20_c00216{bottom:145.865440pt;}
.y1f_c00216{bottom:162.190427pt;}
.y1e_c00216{bottom:178.427067pt;}
.y1d_c00216{bottom:191.947067pt;}
.y1c_c00216{bottom:210.347067pt;}
.y1b_c00216{bottom:228.747067pt;}
.y1a_c00216{bottom:308.027067pt;}
.y19_c00216{bottom:338.587067pt;}
.y18_c00216{bottom:369.227067pt;}
.y17_c00216{bottom:405.067200pt;}
.y16_c00216{bottom:433.227067pt;}
.y15_c00216{bottom:461.307067pt;}
.y14_c00216{bottom:493.145227pt;}
.y13_c00216{bottom:500.747067pt;}
.y12_c00216{bottom:545.307067pt;}
.y11_c00216{bottom:584.587067pt;}
.y10_c00216{bottom:615.147067pt;}
.yf_c00216{bottom:653.787067pt;}
.ye_c00216{bottom:684.347067pt;}
.yd_c00216{bottom:714.987067pt;}
.yc_c00216{bottom:745.547067pt;}
.yb_c00216{bottom:776.187067pt;}
.ya_c00216{bottom:822.747067pt;}
.y9_c00216{bottom:853.387067pt;}
.y8_c00216{bottom:883.947067pt;}
.y7_c00216{bottom:922.587067pt;}
.y6_c00216{bottom:953.147067pt;}
.y5_c00216{bottom:983.787067pt;}
.y4_c00216{bottom:1014.347067pt;}
.y2_c00216{bottom:1046.987067pt;}
.y1_c00216{bottom:1063.867067pt;}
.hb_c00216{height:42.656250pt;}
.hc_c00216{height:44.388750pt;}
.h1_c00216{height:44.724687pt;}
.h2_c00216{height:50.062500pt;}
.h6_c00216{height:53.562500pt;}
.h8_c00216{height:53.625000pt;}
.h5_c00216{height:54.125000pt;}
.h7_c00216{height:57.894063pt;}
.ha_c00216{height:57.894596pt;}
.h3_c00216{height:64.142500pt;}
.h4_c00216{height:66.750000pt;}
.h9_c00216{height:74.490768pt;}
.h0_c00216{height:1122.666667pt;}
.w1_c00216{width:793.333333pt;}
.w0_c00216{width:793.626667pt;}
.x0_c00216{left:0.000000pt;}
.x1_c00216{left:113.440000pt;}
.x9_c00216{left:137.289200pt;}
.x4_c00216{left:149.360000pt;}
.x6_c00216{left:152.880000pt;}
.x5_c00216{left:166.160000pt;}
.x2_c00216{left:185.440000pt;}
.x3_c00216{left:209.440000pt;}
.x8_c00216{left:231.200000pt;}
.x7_c00216{left:476.873360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_862da14679e8589df4d6abce.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00217;src:url('chunks/assets/font_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00217;src:url('chunks/assets/font_f3f2dfc9156e8d84b91bcb50.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00217;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00217{font-family:ff5_c00217;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_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.v1_c00217{vertical-align:29.880000px;}
.lsf_c00217{letter-spacing:-0.226548px;}
.ls8_c00217{letter-spacing:-0.151200px;}
.ls12_c00217{letter-spacing:-0.043200px;}
.ls11_c00217{letter-spacing:-0.036000px;}
.lsc_c00217{letter-spacing:-0.028800px;}
.lse_c00217{letter-spacing:-0.023436px;}
.lsb_c00217{letter-spacing:-0.021600px;}
.lsd_c00217{letter-spacing:-0.014400px;}
.ls9_c00217{letter-spacing:-0.007200px;}
.ls7_c00217{letter-spacing:0.000000px;}
.ls2_c00217{letter-spacing:0.007200px;}
.ls10_c00217{letter-spacing:0.014400px;}
.ls5_c00217{letter-spacing:0.019152px;}
.ls4_c00217{letter-spacing:0.023940px;}
.ls6_c00217{letter-spacing:0.028728px;}
.ls13_c00217{letter-spacing:0.036000px;}
.ls0_c00217{letter-spacing:0.036072px;}
.ls1_c00217{letter-spacing:0.054756px;}
.lsa_c00217{letter-spacing:0.093600px;}
.ls3_c00217{letter-spacing:51.012360px;}
.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;}
}
.ws2_c00217{word-spacing:-19.506564px;}
.ws1_c00217{word-spacing:-18.007200px;}
.ws0_c00217{word-spacing:-10.584756px;}
.ws3_c00217{word-spacing:-0.306612px;}
.ws8_c00217{word-spacing:-0.093600px;}
.wsf_c00217{word-spacing:-0.086400px;}
.ws27_c00217{word-spacing:-0.009576px;}
.ws1e_c00217{word-spacing:-0.007200px;}
.ws26_c00217{word-spacing:-0.004788px;}
.ws4_c00217{word-spacing:0.000000px;}
.ws7_c00217{word-spacing:0.007200px;}
.wse_c00217{word-spacing:0.014400px;}
.ws10_c00217{word-spacing:0.132804px;}
.ws25_c00217{word-spacing:1.044000px;}
.ws24_c00217{word-spacing:1.065600px;}
.ws12_c00217{word-spacing:2.505600px;}
.ws19_c00217{word-spacing:2.548800px;}
.ws18_c00217{word-spacing:2.577600px;}
.ws11_c00217{word-spacing:2.584800px;}
.ws21_c00217{word-spacing:3.132000px;}
.ws22_c00217{word-spacing:3.268800px;}
.ws23_c00217{word-spacing:3.283200px;}
.ws9_c00217{word-spacing:4.327200px;}
.ws17_c00217{word-spacing:4.356000px;}
.wsa_c00217{word-spacing:5.810400px;}
.ws1d_c00217{word-spacing:6.076800px;}
.ws1c_c00217{word-spacing:6.112800px;}
.wsc_c00217{word-spacing:6.163200px;}
.wsb_c00217{word-spacing:6.199200px;}
.ws1b_c00217{word-spacing:7.927200px;}
.ws1a_c00217{word-spacing:8.985600px;}
.ws1f_c00217{word-spacing:11.520000px;}
.ws20_c00217{word-spacing:11.527200px;}
.wsd_c00217{word-spacing:12.988800px;}
.ws5_c00217{word-spacing:14.760000px;}
.ws6_c00217{word-spacing:14.767200px;}
.ws13_c00217{word-spacing:20.887200px;}
.ws14_c00217{word-spacing:20.937600px;}
.ws15_c00217{word-spacing:25.574400px;}
.ws16_c00217{word-spacing:25.596000px;}
._0_c00217{margin-left:-1.022040px;}
._1_c00217{width:1.224000px;}
.fc0_c00217{color:rgb(0,0,0);}
.fs3_c00217{font-size:42.120000px;}
.fs5_c00217{font-size:47.880000px;}
.fs2_c00217{font-size:54.000000px;}
.fs0_c00217{font-size:60.120000px;}
.fs1_c00217{font-size:72.000000px;}
.fs4_c00217{font-size:78.120000px;}
.y0_c00217{bottom:0.000000px;}
.y3_c00217{bottom:57.450450px;}
.y4_c00217{bottom:61.410450px;}
.y23_c00217{bottom:113.711610px;}
.y22_c00217{bottom:132.073590px;}
.y21_c00217{bottom:150.339810px;}
.y20_c00217{bottom:168.606030px;}
.y1f_c00217{bottom:186.968010px;}
.y1e_c00217{bottom:205.234230px;}
.y1d_c00217{bottom:223.500450px;}
.y1c_c00217{bottom:238.710450px;}
.y1b_c00217{bottom:259.410450px;}
.y1a_c00217{bottom:280.110450px;}
.y19_c00217{bottom:395.760450px;}
.y18_c00217{bottom:430.230450px;}
.y17_c00217{bottom:464.610450px;}
.y16_c00217{bottom:508.080450px;}
.y15_c00217{bottom:542.460450px;}
.y14_c00217{bottom:576.930450px;}
.y13_c00217{bottom:611.310450px;}
.y12_c00217{bottom:645.780450px;}
.y11_c00217{bottom:689.160450px;}
.y10_c00217{bottom:723.630450px;}
.yf_c00217{bottom:758.010600px;}
.ye_c00217{bottom:792.480600px;}
.yd_c00217{bottom:826.860600px;}
.yc_c00217{bottom:871.950450px;}
.yb_c00217{bottom:925.590450px;}
.ya_c00217{bottom:960.060450px;}
.y9_c00217{bottom:994.440450px;}
.y8_c00217{bottom:1028.910450px;}
.y7_c00217{bottom:1063.290450px;}
.y6_c00217{bottom:1106.760450px;}
.y5_c00217{bottom:1141.140450px;}
.y2_c00217{bottom:1173.810450px;}
.y1_c00217{bottom:1196.850450px;}
.h2_c00217{height:47.988281px;}
.h9_c00217{height:49.937344px;}
.h1_c00217{height:50.315273px;}
.h3_c00217{height:56.320312px;}
.h4_c00217{height:60.257812px;}
.h7_c00217{height:65.130220px;}
.h5_c00217{height:65.130820px;}
.h8_c00217{height:65.131420px;}
.h6_c00217{height:81.476719px;}
.h0_c00217{height:1263.000000px;}
.w1_c00217{width:892.500000px;}
.w0_c00217{width:892.830000px;}
.x0_c00217{left:0.000000px;}
.x2_c00217{left:127.620000px;}
.x6_c00217{left:154.620000px;}
.x5_c00217{left:168.030000px;}
.x7_c00217{left:180.720000px;}
.x4_c00217{left:435.240000px;}
.x3_c00217{left:446.490000px;}
.x1_c00217{left:490.770000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.v1_c00217{vertical-align:26.560000pt;}
.lsf_c00217{letter-spacing:-0.201376pt;}
.ls8_c00217{letter-spacing:-0.134400pt;}
.ls12_c00217{letter-spacing:-0.038400pt;}
.ls11_c00217{letter-spacing:-0.032000pt;}
.lsc_c00217{letter-spacing:-0.025600pt;}
.lse_c00217{letter-spacing:-0.020832pt;}
.lsb_c00217{letter-spacing:-0.019200pt;}
.lsd_c00217{letter-spacing:-0.012800pt;}
.ls9_c00217{letter-spacing:-0.006400pt;}
.ls7_c00217{letter-spacing:0.000000pt;}
.ls2_c00217{letter-spacing:0.006400pt;}
.ls10_c00217{letter-spacing:0.012800pt;}
.ls5_c00217{letter-spacing:0.017024pt;}
.ls4_c00217{letter-spacing:0.021280pt;}
.ls6_c00217{letter-spacing:0.025536pt;}
.ls13_c00217{letter-spacing:0.032000pt;}
.ls0_c00217{letter-spacing:0.032064pt;}
.ls1_c00217{letter-spacing:0.048672pt;}
.lsa_c00217{letter-spacing:0.083200pt;}
.ls3_c00217{letter-spacing:45.344320pt;}
.ws2_c00217{word-spacing:-17.339168pt;}
.ws1_c00217{word-spacing:-16.006400pt;}
.ws0_c00217{word-spacing:-9.408672pt;}
.ws3_c00217{word-spacing:-0.272544pt;}
.ws8_c00217{word-spacing:-0.083200pt;}
.wsf_c00217{word-spacing:-0.076800pt;}
.ws27_c00217{word-spacing:-0.008512pt;}
.ws1e_c00217{word-spacing:-0.006400pt;}
.ws26_c00217{word-spacing:-0.004256pt;}
.ws4_c00217{word-spacing:0.000000pt;}
.ws7_c00217{word-spacing:0.006400pt;}
.wse_c00217{word-spacing:0.012800pt;}
.ws10_c00217{word-spacing:0.118048pt;}
.ws25_c00217{word-spacing:0.928000pt;}
.ws24_c00217{word-spacing:0.947200pt;}
.ws12_c00217{word-spacing:2.227200pt;}
.ws19_c00217{word-spacing:2.265600pt;}
.ws18_c00217{word-spacing:2.291200pt;}
.ws11_c00217{word-spacing:2.297600pt;}
.ws21_c00217{word-spacing:2.784000pt;}
.ws22_c00217{word-spacing:2.905600pt;}
.ws23_c00217{word-spacing:2.918400pt;}
.ws9_c00217{word-spacing:3.846400pt;}
.ws17_c00217{word-spacing:3.872000pt;}
.wsa_c00217{word-spacing:5.164800pt;}
.ws1d_c00217{word-spacing:5.401600pt;}
.ws1c_c00217{word-spacing:5.433600pt;}
.wsc_c00217{word-spacing:5.478400pt;}
.wsb_c00217{word-spacing:5.510400pt;}
.ws1b_c00217{word-spacing:7.046400pt;}
.ws1a_c00217{word-spacing:7.987200pt;}
.ws1f_c00217{word-spacing:10.240000pt;}
.ws20_c00217{word-spacing:10.246400pt;}
.wsd_c00217{word-spacing:11.545600pt;}
.ws5_c00217{word-spacing:13.120000pt;}
.ws6_c00217{word-spacing:13.126400pt;}
.ws13_c00217{word-spacing:18.566400pt;}
.ws14_c00217{word-spacing:18.611200pt;}
.ws15_c00217{word-spacing:22.732800pt;}
.ws16_c00217{word-spacing:22.752000pt;}
._0_c00217{margin-left:-0.908480pt;}
._1_c00217{width:1.088000pt;}
.fs3_c00217{font-size:37.440000pt;}
.fs5_c00217{font-size:42.560000pt;}
.fs2_c00217{font-size:48.000000pt;}
.fs0_c00217{font-size:53.440000pt;}
.fs1_c00217{font-size:64.000000pt;}
.fs4_c00217{font-size:69.440000pt;}
.y0_c00217{bottom:0.000000pt;}
.y3_c00217{bottom:51.067067pt;}
.y4_c00217{bottom:54.587067pt;}
.y23_c00217{bottom:101.076987pt;}
.y22_c00217{bottom:117.398747pt;}
.y21_c00217{bottom:133.635387pt;}
.y20_c00217{bottom:149.872027pt;}
.y1f_c00217{bottom:166.193787pt;}
.y1e_c00217{bottom:182.430427pt;}
.y1d_c00217{bottom:198.667067pt;}
.y1c_c00217{bottom:212.187067pt;}
.y1b_c00217{bottom:230.587067pt;}
.y1a_c00217{bottom:248.987067pt;}
.y19_c00217{bottom:351.787067pt;}
.y18_c00217{bottom:382.427067pt;}
.y17_c00217{bottom:412.987067pt;}
.y16_c00217{bottom:451.627067pt;}
.y15_c00217{bottom:482.187067pt;}
.y14_c00217{bottom:512.827067pt;}
.y13_c00217{bottom:543.387067pt;}
.y12_c00217{bottom:574.027067pt;}
.y11_c00217{bottom:612.587067pt;}
.y10_c00217{bottom:643.227067pt;}
.yf_c00217{bottom:673.787200pt;}
.ye_c00217{bottom:704.427200pt;}
.yd_c00217{bottom:734.987200pt;}
.yc_c00217{bottom:775.067067pt;}
.yb_c00217{bottom:822.747067pt;}
.ya_c00217{bottom:853.387067pt;}
.y9_c00217{bottom:883.947067pt;}
.y8_c00217{bottom:914.587067pt;}
.y7_c00217{bottom:945.147067pt;}
.y6_c00217{bottom:983.787067pt;}
.y5_c00217{bottom:1014.347067pt;}
.y2_c00217{bottom:1043.387067pt;}
.y1_c00217{bottom:1063.867067pt;}
.h2_c00217{height:42.656250pt;}
.h9_c00217{height:44.388750pt;}
.h1_c00217{height:44.724687pt;}
.h3_c00217{height:50.062500pt;}
.h4_c00217{height:53.562500pt;}
.h7_c00217{height:57.893529pt;}
.h5_c00217{height:57.894063pt;}
.h8_c00217{height:57.894596pt;}
.h6_c00217{height:72.423750pt;}
.h0_c00217{height:1122.666667pt;}
.w1_c00217{width:793.333333pt;}
.w0_c00217{width:793.626667pt;}
.x0_c00217{left:0.000000pt;}
.x2_c00217{left:113.440000pt;}
.x6_c00217{left:137.440000pt;}
.x5_c00217{left:149.360000pt;}
.x7_c00217{left:160.640000pt;}
.x4_c00217{left:386.880000pt;}
.x3_c00217{left:396.880000pt;}
.x1_c00217{left:436.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_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_a2f84ae278fceabc2b3b2d3b.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.100098;font-style:normal;font-weight:normal;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_d9e7aea4e8c0ee894c4e09ef.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00218{vertical-align:15.840000px;}
.v2_c00218{vertical-align:29.880000px;}
.lsb_c00218{letter-spacing:-0.151200px;}
.ls10_c00218{letter-spacing:-0.043200px;}
.lse_c00218{letter-spacing:-0.021600px;}
.lsd_c00218{letter-spacing:-0.014400px;}
.lsc_c00218{letter-spacing:-0.007200px;}
.lsa_c00218{letter-spacing:0.000000px;}
.ls3_c00218{letter-spacing:0.007200px;}
.ls4_c00218{letter-spacing:0.014400px;}
.ls8_c00218{letter-spacing:0.019152px;}
.ls7_c00218{letter-spacing:0.023940px;}
.ls9_c00218{letter-spacing:0.028728px;}
.ls6_c00218{letter-spacing:0.033516px;}
.ls5_c00218{letter-spacing:0.036000px;}
.ls0_c00218{letter-spacing:0.048096px;}
.ls2_c00218{letter-spacing:0.054756px;}
.lsf_c00218{letter-spacing:0.093600px;}
.ls1_c00218{letter-spacing:1212.120000px;}
.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:-17.985600px;}
.ws3_c00218{word-spacing:-17.978400px;}
.ws2_c00218{word-spacing:-17.956800px;}
.ws0_c00218{word-spacing:-10.584756px;}
.ws14_c00218{word-spacing:-0.093600px;}
.wsb_c00218{word-spacing:-0.086400px;}
.ws20_c00218{word-spacing:-0.014400px;}
.ws25_c00218{word-spacing:-0.014364px;}
.ws27_c00218{word-spacing:-0.009576px;}
.ws26_c00218{word-spacing:-0.004788px;}
.ws5_c00218{word-spacing:0.000000px;}
.ws21_c00218{word-spacing:0.007200px;}
.ws7_c00218{word-spacing:0.014400px;}
.ws10_c00218{word-spacing:0.021600px;}
.ws4_c00218{word-spacing:0.042084px;}
.ws11_c00218{word-spacing:1.094400px;}
.ws6_c00218{word-spacing:1.447200px;}
.ws15_c00218{word-spacing:4.327200px;}
.ws16_c00218{word-spacing:4.428000px;}
.wsd_c00218{word-spacing:4.687200px;}
.wse_c00218{word-spacing:4.716000px;}
.wsc_c00218{word-spacing:5.421600px;}
.wsf_c00218{word-spacing:7.581600px;}
.ws8_c00218{word-spacing:8.352000px;}
.ws9_c00218{word-spacing:8.373600px;}
.ws17_c00218{word-spacing:10.461600px;}
.ws24_c00218{word-spacing:12.924000px;}
.ws23_c00218{word-spacing:12.960000px;}
.ws1d_c00218{word-spacing:14.421600px;}
.ws1c_c00218{word-spacing:14.479200px;}
.ws1b_c00218{word-spacing:15.804000px;}
.ws13_c00218{word-spacing:15.832800px;}
.ws12_c00218{word-spacing:15.890400px;}
.ws1a_c00218{word-spacing:15.991200px;}
.ws22_c00218{word-spacing:18.050400px;}
.ws1e_c00218{word-spacing:18.741600px;}
.ws1f_c00218{word-spacing:18.892800px;}
.wsa_c00218{word-spacing:19.101600px;}
.ws19_c00218{word-spacing:24.465600px;}
.ws18_c00218{word-spacing:24.487200px;}
._0_c00218{margin-left:-1.322640px;}
._1_c00218{width:1.296000px;}
.fc0_c00218{color:rgb(0,0,0);}
.fs3_c00218{font-size:42.120000px;}
.fs4_c00218{font-size:47.880000px;}
.fs1_c00218{font-size:54.000000px;}
.fs0_c00218{font-size:60.120000px;}
.fs2_c00218{font-size:72.000000px;}
.y0_c00218{bottom:0.000000px;}
.y3_c00218{bottom:57.450450px;}
.y26_c00218{bottom:113.715210px;}
.y25_c00218{bottom:132.077190px;}
.y24_c00218{bottom:150.343410px;}
.y23_c00218{bottom:168.609630px;}
.y22_c00218{bottom:186.971610px;}
.y21_c00218{bottom:205.237830px;}
.y20_c00218{bottom:223.504050px;}
.y1f_c00218{bottom:241.866030px;}
.y1e_c00218{bottom:260.132250px;}
.y1d_c00218{bottom:278.398470px;}
.y1c_c00218{bottom:296.760450px;}
.y1b_c00218{bottom:311.970450px;}
.y1a_c00218{bottom:332.580450px;}
.y19_c00218{bottom:353.280450px;}
.y18_c00218{bottom:407.640450px;}
.y17_c00218{bottom:442.110450px;}
.y16_c00218{bottom:485.490450px;}
.y15_c00218{bottom:519.960450px;}
.y14_c00218{bottom:554.340450px;}
.y13_c00218{bottom:588.810450px;}
.y12_c00218{bottom:623.190450px;}
.y11_c00218{bottom:657.660450px;}
.y10_c00218{bottom:692.040450px;}
.yf_c00218{bottom:735.510450px;}
.ye_c00218{bottom:769.890450px;}
.yd_c00218{bottom:804.360450px;}
.yc_c00218{bottom:847.740450px;}
.yb_c00218{bottom:882.210450px;}
.ya_c00218{bottom:916.590450px;}
.y9_c00218{bottom:951.060450px;}
.y8_c00218{bottom:994.440450px;}
.y7_c00218{bottom:1028.910450px;}
.y6_c00218{bottom:1063.290450px;}
.y5_c00218{bottom:1106.760450px;}
.y4_c00218{bottom:1141.140450px;}
.y2_c00218{bottom:1177.860450px;}
.y1_c00218{bottom:1196.850450px;}
.h7_c00218{height:47.988281px;}
.h8_c00218{height:49.937344px;}
.h1_c00218{height:50.315273px;}
.h2_c00218{height:56.320312px;}
.h4_c00218{height:60.257812px;}
.h5_c00218{height:65.130820px;}
.h6_c00218{height:65.131420px;}
.h3_c00218{height:72.160312px;}
.h0_c00218{height:1263.000000px;}
.w1_c00218{width:892.500000px;}
.w0_c00218{width:892.830000px;}
.x0_c00218{left:0.000000px;}
.x1_c00218{left:127.620000px;}
.x2_c00218{left:180.810000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.v1_c00218{vertical-align:14.080000pt;}
.v2_c00218{vertical-align:26.560000pt;}
.lsb_c00218{letter-spacing:-0.134400pt;}
.ls10_c00218{letter-spacing:-0.038400pt;}
.lse_c00218{letter-spacing:-0.019200pt;}
.lsd_c00218{letter-spacing:-0.012800pt;}
.lsc_c00218{letter-spacing:-0.006400pt;}
.lsa_c00218{letter-spacing:0.000000pt;}
.ls3_c00218{letter-spacing:0.006400pt;}
.ls4_c00218{letter-spacing:0.012800pt;}
.ls8_c00218{letter-spacing:0.017024pt;}
.ls7_c00218{letter-spacing:0.021280pt;}
.ls9_c00218{letter-spacing:0.025536pt;}
.ls6_c00218{letter-spacing:0.029792pt;}
.ls5_c00218{letter-spacing:0.032000pt;}
.ls0_c00218{letter-spacing:0.042752pt;}
.ls2_c00218{letter-spacing:0.048672pt;}
.lsf_c00218{letter-spacing:0.083200pt;}
.ls1_c00218{letter-spacing:1077.440000pt;}
.ws1_c00218{word-spacing:-15.987200pt;}
.ws3_c00218{word-spacing:-15.980800pt;}
.ws2_c00218{word-spacing:-15.961600pt;}
.ws0_c00218{word-spacing:-9.408672pt;}
.ws14_c00218{word-spacing:-0.083200pt;}
.wsb_c00218{word-spacing:-0.076800pt;}
.ws20_c00218{word-spacing:-0.012800pt;}
.ws25_c00218{word-spacing:-0.012768pt;}
.ws27_c00218{word-spacing:-0.008512pt;}
.ws26_c00218{word-spacing:-0.004256pt;}
.ws5_c00218{word-spacing:0.000000pt;}
.ws21_c00218{word-spacing:0.006400pt;}
.ws7_c00218{word-spacing:0.012800pt;}
.ws10_c00218{word-spacing:0.019200pt;}
.ws4_c00218{word-spacing:0.037408pt;}
.ws11_c00218{word-spacing:0.972800pt;}
.ws6_c00218{word-spacing:1.286400pt;}
.ws15_c00218{word-spacing:3.846400pt;}
.ws16_c00218{word-spacing:3.936000pt;}
.wsd_c00218{word-spacing:4.166400pt;}
.wse_c00218{word-spacing:4.192000pt;}
.wsc_c00218{word-spacing:4.819200pt;}
.wsf_c00218{word-spacing:6.739200pt;}
.ws8_c00218{word-spacing:7.424000pt;}
.ws9_c00218{word-spacing:7.443200pt;}
.ws17_c00218{word-spacing:9.299200pt;}
.ws24_c00218{word-spacing:11.488000pt;}
.ws23_c00218{word-spacing:11.520000pt;}
.ws1d_c00218{word-spacing:12.819200pt;}
.ws1c_c00218{word-spacing:12.870400pt;}
.ws1b_c00218{word-spacing:14.048000pt;}
.ws13_c00218{word-spacing:14.073600pt;}
.ws12_c00218{word-spacing:14.124800pt;}
.ws1a_c00218{word-spacing:14.214400pt;}
.ws22_c00218{word-spacing:16.044800pt;}
.ws1e_c00218{word-spacing:16.659200pt;}
.ws1f_c00218{word-spacing:16.793600pt;}
.wsa_c00218{word-spacing:16.979200pt;}
.ws19_c00218{word-spacing:21.747200pt;}
.ws18_c00218{word-spacing:21.766400pt;}
._0_c00218{margin-left:-1.175680pt;}
._1_c00218{width:1.152000pt;}
.fs3_c00218{font-size:37.440000pt;}
.fs4_c00218{font-size:42.560000pt;}
.fs1_c00218{font-size:48.000000pt;}
.fs0_c00218{font-size:53.440000pt;}
.fs2_c00218{font-size:64.000000pt;}
.y0_c00218{bottom:0.000000pt;}
.y3_c00218{bottom:51.067067pt;}
.y26_c00218{bottom:101.080187pt;}
.y25_c00218{bottom:117.401947pt;}
.y24_c00218{bottom:133.638587pt;}
.y23_c00218{bottom:149.875227pt;}
.y22_c00218{bottom:166.196987pt;}
.y21_c00218{bottom:182.433627pt;}
.y20_c00218{bottom:198.670267pt;}
.y1f_c00218{bottom:214.992027pt;}
.y1e_c00218{bottom:231.228667pt;}
.y1d_c00218{bottom:247.465307pt;}
.y1c_c00218{bottom:263.787067pt;}
.y1b_c00218{bottom:277.307067pt;}
.y1a_c00218{bottom:295.627067pt;}
.y19_c00218{bottom:314.027067pt;}
.y18_c00218{bottom:362.347067pt;}
.y17_c00218{bottom:392.987067pt;}
.y16_c00218{bottom:431.547067pt;}
.y15_c00218{bottom:462.187067pt;}
.y14_c00218{bottom:492.747067pt;}
.y13_c00218{bottom:523.387067pt;}
.y12_c00218{bottom:553.947067pt;}
.y11_c00218{bottom:584.587067pt;}
.y10_c00218{bottom:615.147067pt;}
.yf_c00218{bottom:653.787067pt;}
.ye_c00218{bottom:684.347067pt;}
.yd_c00218{bottom:714.987067pt;}
.yc_c00218{bottom:753.547067pt;}
.yb_c00218{bottom:784.187067pt;}
.ya_c00218{bottom:814.747067pt;}
.y9_c00218{bottom:845.387067pt;}
.y8_c00218{bottom:883.947067pt;}
.y7_c00218{bottom:914.587067pt;}
.y6_c00218{bottom:945.147067pt;}
.y5_c00218{bottom:983.787067pt;}
.y4_c00218{bottom:1014.347067pt;}
.y2_c00218{bottom:1046.987067pt;}
.y1_c00218{bottom:1063.867067pt;}
.h7_c00218{height:42.656250pt;}
.h8_c00218{height:44.388750pt;}
.h1_c00218{height:44.724687pt;}
.h2_c00218{height:50.062500pt;}
.h4_c00218{height:53.562500pt;}
.h5_c00218{height:57.894063pt;}
.h6_c00218{height:57.894596pt;}
.h3_c00218{height:64.142500pt;}
.h0_c00218{height:1122.666667pt;}
.w1_c00218{width:793.333333pt;}
.w0_c00218{width:793.626667pt;}
.x0_c00218{left:0.000000pt;}
.x1_c00218{left:113.440000pt;}
.x2_c00218{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_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_47c3af49ce95cac5d7a28051.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00219;src:url('chunks/assets/font_bdd6300901b0b7d520adcb90.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00219;src:url('chunks/assets/font_0ec7d6d809b5b0b5c1fde310.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.v1_c00219{vertical-align:29.880000px;}
.v2_c00219{vertical-align:33.847560px;}
.lsd_c00219{letter-spacing:-0.151200px;}
.ls1d_c00219{letter-spacing:-0.102204px;}
.ls16_c00219{letter-spacing:-0.054108px;}
.ls19_c00219{letter-spacing:-0.048096px;}
.ls14_c00219{letter-spacing:-0.042084px;}
.ls18_c00219{letter-spacing:-0.036072px;}
.ls13_c00219{letter-spacing:-0.036000px;}
.ls1b_c00219{letter-spacing:-0.030060px;}
.ls17_c00219{letter-spacing:-0.024048px;}
.ls10_c00219{letter-spacing:-0.021600px;}
.ls1c_c00219{letter-spacing:-0.018036px;}
.ls12_c00219{letter-spacing:-0.014400px;}
.ls15_c00219{letter-spacing:-0.012024px;}
.lse_c00219{letter-spacing:-0.007200px;}
.ls1a_c00219{letter-spacing:-0.006012px;}
.lsc_c00219{letter-spacing:0.000000px;}
.ls3_c00219{letter-spacing:0.007200px;}
.ls9_c00219{letter-spacing:0.012024px;}
.ls1_c00219{letter-spacing:0.014400px;}
.lsa_c00219{letter-spacing:0.023940px;}
.ls6_c00219{letter-spacing:0.028800px;}
.lsb_c00219{letter-spacing:0.033516px;}
.ls0_c00219{letter-spacing:0.036072px;}
.lsf_c00219{letter-spacing:0.043200px;}
.ls2_c00219{letter-spacing:0.054756px;}
.ls7_c00219{letter-spacing:0.066132px;}
.ls11_c00219{letter-spacing:0.093600px;}
.ls4_c00219{letter-spacing:0.144000px;}
.ls5_c00219{letter-spacing:65.304000px;}
.ls8_c00219{letter-spacing:208.556280px;}
.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;}
}
.ws1_c00219{word-spacing:-17.985600px;}
.ws0_c00219{word-spacing:-10.584756px;}
.ws2_c00219{word-spacing:-0.306612px;}
.ws21_c00219{word-spacing:-0.246492px;}
.ws1b_c00219{word-spacing:-0.234468px;}
.ws25_c00219{word-spacing:-0.228456px;}
.wsa_c00219{word-spacing:-0.093600px;}
.ws19_c00219{word-spacing:-0.014400px;}
.ws28_c00219{word-spacing:-0.014364px;}
.ws27_c00219{word-spacing:-0.004788px;}
.ws3_c00219{word-spacing:0.000000px;}
.ws9_c00219{word-spacing:0.007200px;}
.ws14_c00219{word-spacing:0.014400px;}
.ws15_c00219{word-spacing:0.021600px;}
.ws1f_c00219{word-spacing:0.024048px;}
.ws18_c00219{word-spacing:0.064800px;}
.ws26_c00219{word-spacing:0.078156px;}
.ws20_c00219{word-spacing:0.096192px;}
.ws1c_c00219{word-spacing:0.102204px;}
.ws24_c00219{word-spacing:0.108216px;}
.ws1d_c00219{word-spacing:0.114228px;}
.ws23_c00219{word-spacing:0.120240px;}
.ws1e_c00219{word-spacing:0.126252px;}
.ws1a_c00219{word-spacing:0.132264px;}
.ws22_c00219{word-spacing:0.138276px;}
.ws17_c00219{word-spacing:0.331200px;}
.ws16_c00219{word-spacing:0.352800px;}
.ws6_c00219{word-spacing:0.676800px;}
.ws5_c00219{word-spacing:0.705600px;}
.ws4_c00219{word-spacing:0.784800px;}
.wsb_c00219{word-spacing:1.094400px;}
.ws12_c00219{word-spacing:1.382400px;}
.ws13_c00219{word-spacing:1.519200px;}
.ws7_c00219{word-spacing:3.981600px;}
.ws8_c00219{word-spacing:4.010400px;}
.wsd_c00219{word-spacing:7.905600px;}
.wsc_c00219{word-spacing:7.941600px;}
.ws11_c00219{word-spacing:21.146400px;}
.ws10_c00219{word-spacing:21.261600px;}
.wse_c00219{word-spacing:21.967200px;}
.wsf_c00219{word-spacing:22.082400px;}
._0_c00219{margin-left:-1.022040px;}
._1_c00219{width:1.008000px;}
._4_c00219{width:55.400580px;}
._8_c00219{width:101.542680px;}
._f_c00219{width:109.959480px;}
._c_c00219{width:117.113760px;}
._a_c00219{width:160.099560px;}
._2_c00219{width:179.784000px;}
._7_c00219{width:230.439960px;}
._9_c00219{width:234.359784px;}
._12_c00219{width:246.924864px;}
._13_c00219{width:267.666264px;}
._d_c00219{width:277.976844px;}
._b_c00219{width:291.365568px;}
._e_c00219{width:338.385420px;}
._3_c00219{width:348.120000px;}
._5_c00219{width:357.112800px;}
._11_c00219{width:439.158564px;}
._6_c00219{width:487.705464px;}
._10_c00219{width:607.482540px;}
.fc0_c00219{color:rgb(0,0,0);}
.fs3_c00219{font-size:42.120000px;}
.fs4_c00219{font-size:47.880000px;}
.fs2_c00219{font-size:54.000000px;}
.fs0_c00219{font-size:60.120000px;}
.fs1_c00219{font-size:72.000000px;}
.y0_c00219{bottom:0.000000px;}
.y3_c00219{bottom:57.450450px;}
.y4_c00219{bottom:61.410450px;}
.y28_c00219{bottom:113.702250px;}
.y27_c00219{bottom:132.064230px;}
.y26_c00219{bottom:150.330450px;}
.y25_c00219{bottom:165.540450px;}
.y24_c00219{bottom:186.240450px;}
.y23_c00219{bottom:206.940450px;}
.y22_c00219{bottom:235.378560px;}
.y21_c00219{bottom:243.840450px;}
.y20_c00219{bottom:278.848560px;}
.y1f_c00219{bottom:287.310450px;}
.y1e_c00219{bottom:322.318380px;}
.y1d_c00219{bottom:330.870450px;}
.y1c_c00219{bottom:365.878560px;}
.y1b_c00219{bottom:374.340450px;}
.y1a_c00219{bottom:409.350450px;}
.y19_c00219{bottom:435.990450px;}
.y18_c00219{bottom:462.628710px;}
.y17_c00219{bottom:471.090600px;}
.y16_c00219{bottom:506.097000px;}
.y15_c00219{bottom:522.930600px;}
.y14_c00219{bottom:554.070450px;}
.y13_c00219{bottom:595.470450px;}
.y12_c00219{bottom:648.660450px;}
.y11_c00219{bottom:683.040450px;}
.y10_c00219{bottom:726.510450px;}
.yf_c00219{bottom:769.890450px;}
.ye_c00219{bottom:813.360450px;}
.yd_c00219{bottom:856.740450px;}
.yc_c00219{bottom:891.210450px;}
.yb_c00219{bottom:925.590450px;}
.ya_c00219{bottom:960.060450px;}
.y9_c00219{bottom:994.440450px;}
.y8_c00219{bottom:1028.910450px;}
.y7_c00219{bottom:1072.290450px;}
.y6_c00219{bottom:1106.760450px;}
.y5_c00219{bottom:1141.140450px;}
.y2_c00219{bottom:1173.810450px;}
.y1_c00219{bottom:1196.850450px;}
.h2_c00219{height:47.988281px;}
.hb_c00219{height:49.937344px;}
.h1_c00219{height:50.315273px;}
.h3_c00219{height:56.320312px;}
.h5_c00219{height:60.257812px;}
.h7_c00219{height:60.328125px;}
.h4_c00219{height:65.130820px;}
.h6_c00219{height:75.093750px;}
.h9_c00219{height:83.802113px;}
.h8_c00219{height:84.162833px;}
.ha_c00219{height:84.523553px;}
.h0_c00219{height:1263.000000px;}
.w1_c00219{width:892.500000px;}
.w0_c00219{width:892.830000px;}
.x0_c00219{left:0.000000px;}
.x2_c00219{left:127.620000px;}
.x6_c00219{left:154.620000px;}
.x8_c00219{left:171.990000px;}
.x5_c00219{left:180.720000px;}
.x7_c00219{left:191.610000px;}
.xa_c00219{left:352.800900px;}
.x4_c00219{left:435.240000px;}
.x3_c00219{left:446.490000px;}
.x1_c00219{left:490.770000px;}
.x9_c00219{left:536.482530px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.v1_c00219{vertical-align:26.560000pt;}
.v2_c00219{vertical-align:30.086720pt;}
.lsd_c00219{letter-spacing:-0.134400pt;}
.ls1d_c00219{letter-spacing:-0.090848pt;}
.ls16_c00219{letter-spacing:-0.048096pt;}
.ls19_c00219{letter-spacing:-0.042752pt;}
.ls14_c00219{letter-spacing:-0.037408pt;}
.ls18_c00219{letter-spacing:-0.032064pt;}
.ls13_c00219{letter-spacing:-0.032000pt;}
.ls1b_c00219{letter-spacing:-0.026720pt;}
.ls17_c00219{letter-spacing:-0.021376pt;}
.ls10_c00219{letter-spacing:-0.019200pt;}
.ls1c_c00219{letter-spacing:-0.016032pt;}
.ls12_c00219{letter-spacing:-0.012800pt;}
.ls15_c00219{letter-spacing:-0.010688pt;}
.lse_c00219{letter-spacing:-0.006400pt;}
.ls1a_c00219{letter-spacing:-0.005344pt;}
.lsc_c00219{letter-spacing:0.000000pt;}
.ls3_c00219{letter-spacing:0.006400pt;}
.ls9_c00219{letter-spacing:0.010688pt;}
.ls1_c00219{letter-spacing:0.012800pt;}
.lsa_c00219{letter-spacing:0.021280pt;}
.ls6_c00219{letter-spacing:0.025600pt;}
.lsb_c00219{letter-spacing:0.029792pt;}
.ls0_c00219{letter-spacing:0.032064pt;}
.lsf_c00219{letter-spacing:0.038400pt;}
.ls2_c00219{letter-spacing:0.048672pt;}
.ls7_c00219{letter-spacing:0.058784pt;}
.ls11_c00219{letter-spacing:0.083200pt;}
.ls4_c00219{letter-spacing:0.128000pt;}
.ls5_c00219{letter-spacing:58.048000pt;}
.ls8_c00219{letter-spacing:185.383360pt;}
.ws1_c00219{word-spacing:-15.987200pt;}
.ws0_c00219{word-spacing:-9.408672pt;}
.ws2_c00219{word-spacing:-0.272544pt;}
.ws21_c00219{word-spacing:-0.219104pt;}
.ws1b_c00219{word-spacing:-0.208416pt;}
.ws25_c00219{word-spacing:-0.203072pt;}
.wsa_c00219{word-spacing:-0.083200pt;}
.ws19_c00219{word-spacing:-0.012800pt;}
.ws28_c00219{word-spacing:-0.012768pt;}
.ws27_c00219{word-spacing:-0.004256pt;}
.ws3_c00219{word-spacing:0.000000pt;}
.ws9_c00219{word-spacing:0.006400pt;}
.ws14_c00219{word-spacing:0.012800pt;}
.ws15_c00219{word-spacing:0.019200pt;}
.ws1f_c00219{word-spacing:0.021376pt;}
.ws18_c00219{word-spacing:0.057600pt;}
.ws26_c00219{word-spacing:0.069472pt;}
.ws20_c00219{word-spacing:0.085504pt;}
.ws1c_c00219{word-spacing:0.090848pt;}
.ws24_c00219{word-spacing:0.096192pt;}
.ws1d_c00219{word-spacing:0.101536pt;}
.ws23_c00219{word-spacing:0.106880pt;}
.ws1e_c00219{word-spacing:0.112224pt;}
.ws1a_c00219{word-spacing:0.117568pt;}
.ws22_c00219{word-spacing:0.122912pt;}
.ws17_c00219{word-spacing:0.294400pt;}
.ws16_c00219{word-spacing:0.313600pt;}
.ws6_c00219{word-spacing:0.601600pt;}
.ws5_c00219{word-spacing:0.627200pt;}
.ws4_c00219{word-spacing:0.697600pt;}
.wsb_c00219{word-spacing:0.972800pt;}
.ws12_c00219{word-spacing:1.228800pt;}
.ws13_c00219{word-spacing:1.350400pt;}
.ws7_c00219{word-spacing:3.539200pt;}
.ws8_c00219{word-spacing:3.564800pt;}
.wsd_c00219{word-spacing:7.027200pt;}
.wsc_c00219{word-spacing:7.059200pt;}
.ws11_c00219{word-spacing:18.796800pt;}
.ws10_c00219{word-spacing:18.899200pt;}
.wse_c00219{word-spacing:19.526400pt;}
.wsf_c00219{word-spacing:19.628800pt;}
._0_c00219{margin-left:-0.908480pt;}
._1_c00219{width:0.896000pt;}
._4_c00219{width:49.244960pt;}
._8_c00219{width:90.260160pt;}
._f_c00219{width:97.741760pt;}
._c_c00219{width:104.101120pt;}
._a_c00219{width:142.310720pt;}
._2_c00219{width:159.808000pt;}
._7_c00219{width:204.835520pt;}
._9_c00219{width:208.319808pt;}
._12_c00219{width:219.488768pt;}
._13_c00219{width:237.925568pt;}
._d_c00219{width:247.090528pt;}
._b_c00219{width:258.991616pt;}
._e_c00219{width:300.787040pt;}
._3_c00219{width:309.440000pt;}
._5_c00219{width:317.433600pt;}
._11_c00219{width:390.363168pt;}
._6_c00219{width:433.515968pt;}
._10_c00219{width:539.984480pt;}
.fs3_c00219{font-size:37.440000pt;}
.fs4_c00219{font-size:42.560000pt;}
.fs2_c00219{font-size:48.000000pt;}
.fs0_c00219{font-size:53.440000pt;}
.fs1_c00219{font-size:64.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y3_c00219{bottom:51.067067pt;}
.y4_c00219{bottom:54.587067pt;}
.y28_c00219{bottom:101.068667pt;}
.y27_c00219{bottom:117.390427pt;}
.y26_c00219{bottom:133.627067pt;}
.y25_c00219{bottom:147.147067pt;}
.y24_c00219{bottom:165.547067pt;}
.y23_c00219{bottom:183.947067pt;}
.y22_c00219{bottom:209.225387pt;}
.y21_c00219{bottom:216.747067pt;}
.y20_c00219{bottom:247.865387pt;}
.y1f_c00219{bottom:255.387067pt;}
.y1e_c00219{bottom:286.505227pt;}
.y1d_c00219{bottom:294.107067pt;}
.y1c_c00219{bottom:325.225387pt;}
.y1b_c00219{bottom:332.747067pt;}
.y1a_c00219{bottom:363.867067pt;}
.y19_c00219{bottom:387.547067pt;}
.y18_c00219{bottom:411.225520pt;}
.y17_c00219{bottom:418.747200pt;}
.y16_c00219{bottom:449.864000pt;}
.y15_c00219{bottom:464.827200pt;}
.y14_c00219{bottom:492.507067pt;}
.y13_c00219{bottom:529.307067pt;}
.y12_c00219{bottom:576.587067pt;}
.y11_c00219{bottom:607.147067pt;}
.y10_c00219{bottom:645.787067pt;}
.yf_c00219{bottom:684.347067pt;}
.ye_c00219{bottom:722.987067pt;}
.yd_c00219{bottom:761.547067pt;}
.yc_c00219{bottom:792.187067pt;}
.yb_c00219{bottom:822.747067pt;}
.ya_c00219{bottom:853.387067pt;}
.y9_c00219{bottom:883.947067pt;}
.y8_c00219{bottom:914.587067pt;}
.y7_c00219{bottom:953.147067pt;}
.y6_c00219{bottom:983.787067pt;}
.y5_c00219{bottom:1014.347067pt;}
.y2_c00219{bottom:1043.387067pt;}
.y1_c00219{bottom:1063.867067pt;}
.h2_c00219{height:42.656250pt;}
.hb_c00219{height:44.388750pt;}
.h1_c00219{height:44.724687pt;}
.h3_c00219{height:50.062500pt;}
.h5_c00219{height:53.562500pt;}
.h7_c00219{height:53.625000pt;}
.h4_c00219{height:57.894063pt;}
.h6_c00219{height:66.750000pt;}
.h9_c00219{height:74.490768pt;}
.h8_c00219{height:74.811408pt;}
.ha_c00219{height:75.132048pt;}
.h0_c00219{height:1122.666667pt;}
.w1_c00219{width:793.333333pt;}
.w0_c00219{width:793.626667pt;}
.x0_c00219{left:0.000000pt;}
.x2_c00219{left:113.440000pt;}
.x6_c00219{left:137.440000pt;}
.x8_c00219{left:152.880000pt;}
.x5_c00219{left:160.640000pt;}
.x7_c00219{left:170.320000pt;}
.xa_c00219{left:313.600800pt;}
.x4_c00219{left:386.880000pt;}
.x3_c00219{left:396.880000pt;}
.x1_c00219{left:436.240000pt;}
.x9_c00219{left:476.873360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_77acf1facf0a61fdac54a5a4.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.100098;font-style:normal;font-weight:normal;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_728d345eab047f2ad2cc4209.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;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_c00220;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00220;src:url('chunks/assets/font_d5ea093e9b86a1b1de4188c7.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00220;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;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_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00220{vertical-align:-23.386680px;}
.v0_c00220{vertical-align:0.000000px;}
.v1_c00220{vertical-align:15.840000px;}
.v3_c00220{vertical-align:29.880000px;}
.lse_c00220{letter-spacing:-0.151200px;}
.ls12_c00220{letter-spacing:-0.042084px;}
.ls10_c00220{letter-spacing:-0.036072px;}
.ls1c_c00220{letter-spacing:-0.036000px;}
.ls18_c00220{letter-spacing:-0.030060px;}
.ls15_c00220{letter-spacing:-0.028800px;}
.ls1a_c00220{letter-spacing:-0.024048px;}
.ls13_c00220{letter-spacing:-0.023436px;}
.ls1d_c00220{letter-spacing:-0.021600px;}
.lsf_c00220{letter-spacing:-0.018036px;}
.ls14_c00220{letter-spacing:-0.015624px;}
.ls16_c00220{letter-spacing:-0.014400px;}
.ls11_c00220{letter-spacing:-0.012024px;}
.ls17_c00220{letter-spacing:-0.007200px;}
.ls19_c00220{letter-spacing:-0.006012px;}
.lsd_c00220{letter-spacing:0.000000px;}
.ls2_c00220{letter-spacing:0.006012px;}
.lsb_c00220{letter-spacing:0.007200px;}
.ls9_c00220{letter-spacing:0.012024px;}
.ls5_c00220{letter-spacing:0.014400px;}
.ls8_c00220{letter-spacing:0.018036px;}
.ls6_c00220{letter-spacing:0.021600px;}
.lsc_c00220{letter-spacing:0.028728px;}
.ls0_c00220{letter-spacing:0.048096px;}
.ls7_c00220{letter-spacing:0.054756px;}
.ls3_c00220{letter-spacing:0.108864px;}
.lsa_c00220{letter-spacing:0.136080px;}
.ls1b_c00220{letter-spacing:0.168336px;}
.ls4_c00220{letter-spacing:51.012360px;}
.ls1_c00220{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00220{word-spacing:-19.506564px;}
.ws2_c00220{word-spacing:-10.584756px;}
.ws3_c00220{word-spacing:-9.856080px;}
.ws0_c00220{word-spacing:-9.828864px;}
.ws8_c00220{word-spacing:-0.234468px;}
.wsc_c00220{word-spacing:-0.132804px;}
.ws2c_c00220{word-spacing:-0.009576px;}
.ws5_c00220{word-spacing:0.000000px;}
.ws15_c00220{word-spacing:0.007200px;}
.ws2b_c00220{word-spacing:0.014400px;}
.ws4_c00220{word-spacing:0.042084px;}
.ws24_c00220{word-spacing:0.043200px;}
.ws1d_c00220{word-spacing:0.072144px;}
.ws20_c00220{word-spacing:0.078156px;}
.wsb_c00220{word-spacing:0.084168px;}
.ws1c_c00220{word-spacing:0.096192px;}
.ws9_c00220{word-spacing:0.102204px;}
.ws6_c00220{word-spacing:0.108216px;}
.ws1b_c00220{word-spacing:0.120240px;}
.ws7_c00220{word-spacing:0.126252px;}
.wsa_c00220{word-spacing:0.132264px;}
.ws21_c00220{word-spacing:0.756000px;}
.ws22_c00220{word-spacing:0.813600px;}
.ws23_c00220{word-spacing:1.101600px;}
.ws19_c00220{word-spacing:1.166328px;}
.ws18_c00220{word-spacing:1.539072px;}
.ws12_c00220{word-spacing:1.814400px;}
.ws11_c00220{word-spacing:1.828800px;}
.ws1e_c00220{word-spacing:4.406796px;}
.ws1f_c00220{word-spacing:4.436856px;}
.ws1a_c00220{word-spacing:4.749480px;}
.ws27_c00220{word-spacing:5.414400px;}
.ws28_c00220{word-spacing:5.472000px;}
.wsd_c00220{word-spacing:7.545600px;}
.wse_c00220{word-spacing:7.596000px;}
.ws16_c00220{word-spacing:7.920000px;}
.ws17_c00220{word-spacing:7.934400px;}
.ws2a_c00220{word-spacing:10.432800px;}
.ws29_c00220{word-spacing:10.519200px;}
.ws10_c00220{word-spacing:10.540800px;}
.wsf_c00220{word-spacing:10.569600px;}
.ws14_c00220{word-spacing:10.807200px;}
.ws13_c00220{word-spacing:10.857600px;}
.ws26_c00220{word-spacing:12.657600px;}
.ws25_c00220{word-spacing:12.679200px;}
._0_c00220{margin-left:-1.322640px;}
._7_c00220{width:1.051200px;}
._5_c00220{width:165.209760px;}
._4_c00220{width:226.033164px;}
._2_c00220{width:233.283636px;}
._3_c00220{width:271.802520px;}
._6_c00220{width:305.926632px;}
._1_c00220{width:403.675740px;}
.fc0_c00220{color:rgb(0,0,0);}
.fs3_c00220{font-size:38.880000px;}
.fs5_c00220{font-size:42.120000px;}
.fs6_c00220{font-size:47.880000px;}
.fs1_c00220{font-size:54.000000px;}
.fs0_c00220{font-size:60.120000px;}
.fs2_c00220{font-size:72.000000px;}
.fs4_c00220{font-size:78.120000px;}
.y0_c00220{bottom:0.000000px;}
.y3_c00220{bottom:57.450450px;}
.y22_c00220{bottom:113.702250px;}
.y21_c00220{bottom:132.064230px;}
.y20_c00220{bottom:150.330450px;}
.y1f_c00220{bottom:165.540450px;}
.y1e_c00220{bottom:186.240450px;}
.y1d_c00220{bottom:206.940450px;}
.y1c_c00220{bottom:323.130450px;}
.y1b_c00220{bottom:357.600450px;}
.y1a_c00220{bottom:391.980450px;}
.y19_c00220{bottom:426.450450px;}
.y18_c00220{bottom:469.830450px;}
.y17_c00220{bottom:504.300450px;}
.y16_c00220{bottom:538.680450px;}
.y15_c00220{bottom:576.201180px;}
.y14_c00220{bottom:593.034780px;}
.y13_c00220{bottom:618.946500px;}
.y12_c00220{bottom:635.780100px;}
.y11_c00220{bottom:652.703880px;}
.y10_c00220{bottom:678.540450px;}
.yf_c00220{bottom:719.400450px;}
.ye_c00220{bottom:753.780450px;}
.yd_c00220{bottom:797.250450px;}
.yc_c00220{bottom:831.630450px;}
.yb_c00220{bottom:866.100450px;}
.ya_c00220{bottom:900.480450px;}
.y9_c00220{bottom:934.950450px;}
.y8_c00220{bottom:979.950450px;}
.y7_c00220{bottom:1030.530450px;}
.y6_c00220{bottom:1073.460450px;}
.y5_c00220{bottom:1111.980450px;}
.y4_c00220{bottom:1138.530450px;}
.y2_c00220{bottom:1177.860450px;}
.y1_c00220{bottom:1196.850450px;}
.h8_c00220{height:47.988281px;}
.h9_c00220{height:49.937344px;}
.h1_c00220{height:50.315273px;}
.h7_c00220{height:50.352353px;}
.h2_c00220{height:56.320312px;}
.h5_c00220{height:60.257812px;}
.h6_c00220{height:65.130820px;}
.h3_c00220{height:72.160312px;}
.h4_c00220{height:81.476719px;}
.h0_c00220{height:1263.000000px;}
.w1_c00220{width:892.500000px;}
.w0_c00220{width:892.830000px;}
.x0_c00220{left:0.000000px;}
.x1_c00220{left:127.620000px;}
.x5_c00220{left:154.620000px;}
.x2_c00220{left:171.990000px;}
.x4_c00220{left:180.720000px;}
.x3_c00220{left:265.320000px;}
@media print{
.v2_c00220{vertical-align:-20.788160pt;}
.v0_c00220{vertical-align:0.000000pt;}
.v1_c00220{vertical-align:14.080000pt;}
.v3_c00220{vertical-align:26.560000pt;}
.lse_c00220{letter-spacing:-0.134400pt;}
.ls12_c00220{letter-spacing:-0.037408pt;}
.ls10_c00220{letter-spacing:-0.032064pt;}
.ls1c_c00220{letter-spacing:-0.032000pt;}
.ls18_c00220{letter-spacing:-0.026720pt;}
.ls15_c00220{letter-spacing:-0.025600pt;}
.ls1a_c00220{letter-spacing:-0.021376pt;}
.ls13_c00220{letter-spacing:-0.020832pt;}
.ls1d_c00220{letter-spacing:-0.019200pt;}
.lsf_c00220{letter-spacing:-0.016032pt;}
.ls14_c00220{letter-spacing:-0.013888pt;}
.ls16_c00220{letter-spacing:-0.012800pt;}
.ls11_c00220{letter-spacing:-0.010688pt;}
.ls17_c00220{letter-spacing:-0.006400pt;}
.ls19_c00220{letter-spacing:-0.005344pt;}
.lsd_c00220{letter-spacing:0.000000pt;}
.ls2_c00220{letter-spacing:0.005344pt;}
.lsb_c00220{letter-spacing:0.006400pt;}
.ls9_c00220{letter-spacing:0.010688pt;}
.ls5_c00220{letter-spacing:0.012800pt;}
.ls8_c00220{letter-spacing:0.016032pt;}
.ls6_c00220{letter-spacing:0.019200pt;}
.lsc_c00220{letter-spacing:0.025536pt;}
.ls0_c00220{letter-spacing:0.042752pt;}
.ls7_c00220{letter-spacing:0.048672pt;}
.ls3_c00220{letter-spacing:0.096768pt;}
.lsa_c00220{letter-spacing:0.120960pt;}
.ls1b_c00220{letter-spacing:0.149632pt;}
.ls4_c00220{letter-spacing:45.344320pt;}
.ls1_c00220{letter-spacing:1077.440000pt;}
.ws1_c00220{word-spacing:-17.339168pt;}
.ws2_c00220{word-spacing:-9.408672pt;}
.ws3_c00220{word-spacing:-8.760960pt;}
.ws0_c00220{word-spacing:-8.736768pt;}
.ws8_c00220{word-spacing:-0.208416pt;}
.wsc_c00220{word-spacing:-0.118048pt;}
.ws2c_c00220{word-spacing:-0.008512pt;}
.ws5_c00220{word-spacing:0.000000pt;}
.ws15_c00220{word-spacing:0.006400pt;}
.ws2b_c00220{word-spacing:0.012800pt;}
.ws4_c00220{word-spacing:0.037408pt;}
.ws24_c00220{word-spacing:0.038400pt;}
.ws1d_c00220{word-spacing:0.064128pt;}
.ws20_c00220{word-spacing:0.069472pt;}
.wsb_c00220{word-spacing:0.074816pt;}
.ws1c_c00220{word-spacing:0.085504pt;}
.ws9_c00220{word-spacing:0.090848pt;}
.ws6_c00220{word-spacing:0.096192pt;}
.ws1b_c00220{word-spacing:0.106880pt;}
.ws7_c00220{word-spacing:0.112224pt;}
.wsa_c00220{word-spacing:0.117568pt;}
.ws21_c00220{word-spacing:0.672000pt;}
.ws22_c00220{word-spacing:0.723200pt;}
.ws23_c00220{word-spacing:0.979200pt;}
.ws19_c00220{word-spacing:1.036736pt;}
.ws18_c00220{word-spacing:1.368064pt;}
.ws12_c00220{word-spacing:1.612800pt;}
.ws11_c00220{word-spacing:1.625600pt;}
.ws1e_c00220{word-spacing:3.917152pt;}
.ws1f_c00220{word-spacing:3.943872pt;}
.ws1a_c00220{word-spacing:4.221760pt;}
.ws27_c00220{word-spacing:4.812800pt;}
.ws28_c00220{word-spacing:4.864000pt;}
.wsd_c00220{word-spacing:6.707200pt;}
.wse_c00220{word-spacing:6.752000pt;}
.ws16_c00220{word-spacing:7.040000pt;}
.ws17_c00220{word-spacing:7.052800pt;}
.ws2a_c00220{word-spacing:9.273600pt;}
.ws29_c00220{word-spacing:9.350400pt;}
.ws10_c00220{word-spacing:9.369600pt;}
.wsf_c00220{word-spacing:9.395200pt;}
.ws14_c00220{word-spacing:9.606400pt;}
.ws13_c00220{word-spacing:9.651200pt;}
.ws26_c00220{word-spacing:11.251200pt;}
.ws25_c00220{word-spacing:11.270400pt;}
._0_c00220{margin-left:-1.175680pt;}
._7_c00220{width:0.934400pt;}
._5_c00220{width:146.853120pt;}
._4_c00220{width:200.918368pt;}
._2_c00220{width:207.363232pt;}
._3_c00220{width:241.602240pt;}
._6_c00220{width:271.934784pt;}
._1_c00220{width:358.822880pt;}
.fs3_c00220{font-size:34.560000pt;}
.fs5_c00220{font-size:37.440000pt;}
.fs6_c00220{font-size:42.560000pt;}
.fs1_c00220{font-size:48.000000pt;}
.fs0_c00220{font-size:53.440000pt;}
.fs2_c00220{font-size:64.000000pt;}
.fs4_c00220{font-size:69.440000pt;}
.y0_c00220{bottom:0.000000pt;}
.y3_c00220{bottom:51.067067pt;}
.y22_c00220{bottom:101.068667pt;}
.y21_c00220{bottom:117.390427pt;}
.y20_c00220{bottom:133.627067pt;}
.y1f_c00220{bottom:147.147067pt;}
.y1e_c00220{bottom:165.547067pt;}
.y1d_c00220{bottom:183.947067pt;}
.y1c_c00220{bottom:287.227067pt;}
.y1b_c00220{bottom:317.867067pt;}
.y1a_c00220{bottom:348.427067pt;}
.y19_c00220{bottom:379.067067pt;}
.y18_c00220{bottom:417.627067pt;}
.y17_c00220{bottom:448.267067pt;}
.y16_c00220{bottom:478.827067pt;}
.y15_c00220{bottom:512.178827pt;}
.y14_c00220{bottom:527.142027pt;}
.y13_c00220{bottom:550.174667pt;}
.y12_c00220{bottom:565.137867pt;}
.y11_c00220{bottom:580.181227pt;}
.y10_c00220{bottom:603.147067pt;}
.yf_c00220{bottom:639.467067pt;}
.ye_c00220{bottom:670.027067pt;}
.yd_c00220{bottom:708.667067pt;}
.yc_c00220{bottom:739.227067pt;}
.yb_c00220{bottom:769.867067pt;}
.ya_c00220{bottom:800.427067pt;}
.y9_c00220{bottom:831.067067pt;}
.y8_c00220{bottom:871.067067pt;}
.y7_c00220{bottom:916.027067pt;}
.y6_c00220{bottom:954.187067pt;}
.y5_c00220{bottom:988.427067pt;}
.y4_c00220{bottom:1012.027067pt;}
.y2_c00220{bottom:1046.987067pt;}
.y1_c00220{bottom:1063.867067pt;}
.h8_c00220{height:42.656250pt;}
.h9_c00220{height:44.388750pt;}
.h1_c00220{height:44.724687pt;}
.h7_c00220{height:44.757648pt;}
.h2_c00220{height:50.062500pt;}
.h5_c00220{height:53.562500pt;}
.h6_c00220{height:57.894063pt;}
.h3_c00220{height:64.142500pt;}
.h4_c00220{height:72.423750pt;}
.h0_c00220{height:1122.666667pt;}
.w1_c00220{width:793.333333pt;}
.w0_c00220{width:793.626667pt;}
.x0_c00220{left:0.000000pt;}
.x1_c00220{left:113.440000pt;}
.x5_c00220{left:137.440000pt;}
.x2_c00220{left:152.880000pt;}
.x4_c00220{left:160.640000pt;}
.x3_c00220{left:235.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_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_1790705cc7ca8bd7a56c3e4c.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_0df383b8906a32365a9ee72d.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00221;src:url('chunks/assets/font_43e86ab2d866290d474a4083.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00221;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00221{vertical-align:29.880000px;}
.ls12_c00221{letter-spacing:-0.151200px;}
.ls18_c00221{letter-spacing:-0.064800px;}
.ls14_c00221{letter-spacing:-0.062496px;}
.ls19_c00221{letter-spacing:-0.057600px;}
.ls1c_c00221{letter-spacing:-0.046872px;}
.ls1a_c00221{letter-spacing:-0.036000px;}
.ls1b_c00221{letter-spacing:-0.031248px;}
.ls16_c00221{letter-spacing:-0.028800px;}
.ls17_c00221{letter-spacing:-0.021600px;}
.ls1d_c00221{letter-spacing:-0.014400px;}
.ls13_c00221{letter-spacing:-0.007812px;}
.ls15_c00221{letter-spacing:-0.007200px;}
.ls1e_c00221{letter-spacing:-0.004788px;}
.ls11_c00221{letter-spacing:0.000000px;}
.ls3_c00221{letter-spacing:0.007200px;}
.ls4_c00221{letter-spacing:0.014400px;}
.lsc_c00221{letter-spacing:0.023940px;}
.lsd_c00221{letter-spacing:0.028728px;}
.ls7_c00221{letter-spacing:0.028800px;}
.lsb_c00221{letter-spacing:0.033516px;}
.ls0_c00221{letter-spacing:0.036072px;}
.lsf_c00221{letter-spacing:0.038304px;}
.ls5_c00221{letter-spacing:0.043200px;}
.lse_c00221{letter-spacing:0.047880px;}
.ls8_c00221{letter-spacing:0.050400px;}
.ls10_c00221{letter-spacing:0.052668px;}
.ls2_c00221{letter-spacing:0.054756px;}
.lsa_c00221{letter-spacing:0.064800px;}
.ls6_c00221{letter-spacing:0.072000px;}
.ls1_c00221{letter-spacing:11.796120px;}
.ls9_c00221{letter-spacing:51.012360px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00221{word-spacing:-19.522188px;}
.ws2_c00221{word-spacing:-19.498752px;}
.ws1_c00221{word-spacing:-10.584756px;}
.ws3_c00221{word-spacing:-0.306612px;}
.ws28_c00221{word-spacing:-0.072000px;}
.ws22_c00221{word-spacing:-0.046872px;}
.ws30_c00221{word-spacing:-0.033516px;}
.ws5_c00221{word-spacing:-0.031248px;}
.ws29_c00221{word-spacing:-0.014364px;}
.ws2b_c00221{word-spacing:-0.009576px;}
.ws2a_c00221{word-spacing:-0.004788px;}
.ws4_c00221{word-spacing:0.000000px;}
.ws1d_c00221{word-spacing:0.007200px;}
.ws2f_c00221{word-spacing:0.023940px;}
.wsa_c00221{word-spacing:0.079200px;}
.ws10_c00221{word-spacing:0.093600px;}
.ws1f_c00221{word-spacing:0.288000px;}
.ws11_c00221{word-spacing:0.352800px;}
.ws21_c00221{word-spacing:0.381600px;}
.ws20_c00221{word-spacing:0.403200px;}
.ws12_c00221{word-spacing:0.424800px;}
.ws2d_c00221{word-spacing:2.130660px;}
.ws2e_c00221{word-spacing:2.140236px;}
.ws2c_c00221{word-spacing:2.145024px;}
.ws19_c00221{word-spacing:3.916800px;}
.ws18_c00221{word-spacing:3.952800px;}
.ws1a_c00221{word-spacing:4.132800px;}
.ws16_c00221{word-spacing:4.327200px;}
.ws17_c00221{word-spacing:4.377600px;}
.wsc_c00221{word-spacing:5.392800px;}
.ws1e_c00221{word-spacing:5.421600px;}
.wsd_c00221{word-spacing:5.508000px;}
.ws27_c00221{word-spacing:6.134400px;}
.ws26_c00221{word-spacing:6.199200px;}
.ws6_c00221{word-spacing:8.690400px;}
.ws7_c00221{word-spacing:8.697600px;}
.ws15_c00221{word-spacing:9.727200px;}
.ws14_c00221{word-spacing:9.784800px;}
.ws13_c00221{word-spacing:9.828000px;}
.ws23_c00221{word-spacing:10.015200px;}
.ws24_c00221{word-spacing:10.159200px;}
.ws25_c00221{word-spacing:10.188000px;}
.wsb_c00221{word-spacing:10.432800px;}
.ws1b_c00221{word-spacing:26.287200px;}
.ws1c_c00221{word-spacing:26.316000px;}
.wsf_c00221{word-spacing:29.505600px;}
.wse_c00221{word-spacing:29.628000px;}
.ws8_c00221{word-spacing:39.124800px;}
.ws9_c00221{word-spacing:39.268800px;}
._2_c00221{margin-left:-2.563560px;}
._0_c00221{margin-left:-1.022040px;}
._1_c00221{width:1.180800px;}
.fc0_c00221{color:rgb(0,0,0);}
.fs4_c00221{font-size:42.120000px;}
.fs5_c00221{font-size:47.880000px;}
.fs2_c00221{font-size:54.000000px;}
.fs0_c00221{font-size:60.120000px;}
.fs1_c00221{font-size:72.000000px;}
.fs3_c00221{font-size:78.120000px;}
.y0_c00221{bottom:0.000000px;}
.y3_c00221{bottom:57.450450px;}
.y4_c00221{bottom:61.410450px;}
.y21_c00221{bottom:113.704920px;}
.y20_c00221{bottom:127.566180px;}
.y1f_c00221{bottom:145.832400px;}
.y1e_c00221{bottom:164.098620px;}
.y1d_c00221{bottom:182.460600px;}
.y1c_c00221{bottom:197.670450px;}
.y1b_c00221{bottom:218.370450px;}
.y1a_c00221{bottom:239.070450px;}
.y19_c00221{bottom:383.970450px;}
.y18_c00221{bottom:418.350450px;}
.y17_c00221{bottom:452.820450px;}
.y16_c00221{bottom:497.820450px;}
.y15_c00221{bottom:551.460450px;}
.y14_c00221{bottom:585.930450px;}
.y13_c00221{bottom:620.310450px;}
.y12_c00221{bottom:663.780450px;}
.y11_c00221{bottom:698.160450px;}
.y10_c00221{bottom:732.630450px;}
.yf_c00221{bottom:767.010450px;}
.ye_c00221{bottom:801.480450px;}
.yd_c00221{bottom:835.860450px;}
.yc_c00221{bottom:879.330450px;}
.yb_c00221{bottom:913.710450px;}
.ya_c00221{bottom:948.180450px;}
.y9_c00221{bottom:982.560450px;}
.y8_c00221{bottom:1026.030450px;}
.y7_c00221{bottom:1060.410450px;}
.y6_c00221{bottom:1094.880450px;}
.y5_c00221{bottom:1139.880450px;}
.y2_c00221{bottom:1173.810450px;}
.y1_c00221{bottom:1196.850450px;}
.h2_c00221{height:47.988281px;}
.h8_c00221{height:49.937344px;}
.h1_c00221{height:50.315273px;}
.h3_c00221{height:56.320312px;}
.h5_c00221{height:60.257812px;}
.h6_c00221{height:65.130820px;}
.h7_c00221{height:65.131420px;}
.h4_c00221{height:81.476719px;}
.h0_c00221{height:1263.000000px;}
.w1_c00221{width:892.500000px;}
.w0_c00221{width:892.830000px;}
.x0_c00221{left:0.000000px;}
.x2_c00221{left:127.620000px;}
.x6_c00221{left:154.432800px;}
.x5_c00221{left:180.720000px;}
.x4_c00221{left:435.240000px;}
.x3_c00221{left:446.490000px;}
.x1_c00221{left:490.770000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.v1_c00221{vertical-align:26.560000pt;}
.ls12_c00221{letter-spacing:-0.134400pt;}
.ls18_c00221{letter-spacing:-0.057600pt;}
.ls14_c00221{letter-spacing:-0.055552pt;}
.ls19_c00221{letter-spacing:-0.051200pt;}
.ls1c_c00221{letter-spacing:-0.041664pt;}
.ls1a_c00221{letter-spacing:-0.032000pt;}
.ls1b_c00221{letter-spacing:-0.027776pt;}
.ls16_c00221{letter-spacing:-0.025600pt;}
.ls17_c00221{letter-spacing:-0.019200pt;}
.ls1d_c00221{letter-spacing:-0.012800pt;}
.ls13_c00221{letter-spacing:-0.006944pt;}
.ls15_c00221{letter-spacing:-0.006400pt;}
.ls1e_c00221{letter-spacing:-0.004256pt;}
.ls11_c00221{letter-spacing:0.000000pt;}
.ls3_c00221{letter-spacing:0.006400pt;}
.ls4_c00221{letter-spacing:0.012800pt;}
.lsc_c00221{letter-spacing:0.021280pt;}
.lsd_c00221{letter-spacing:0.025536pt;}
.ls7_c00221{letter-spacing:0.025600pt;}
.lsb_c00221{letter-spacing:0.029792pt;}
.ls0_c00221{letter-spacing:0.032064pt;}
.lsf_c00221{letter-spacing:0.034048pt;}
.ls5_c00221{letter-spacing:0.038400pt;}
.lse_c00221{letter-spacing:0.042560pt;}
.ls8_c00221{letter-spacing:0.044800pt;}
.ls10_c00221{letter-spacing:0.046816pt;}
.ls2_c00221{letter-spacing:0.048672pt;}
.lsa_c00221{letter-spacing:0.057600pt;}
.ls6_c00221{letter-spacing:0.064000pt;}
.ls1_c00221{letter-spacing:10.485440pt;}
.ls9_c00221{letter-spacing:45.344320pt;}
.ws0_c00221{word-spacing:-17.353056pt;}
.ws2_c00221{word-spacing:-17.332224pt;}
.ws1_c00221{word-spacing:-9.408672pt;}
.ws3_c00221{word-spacing:-0.272544pt;}
.ws28_c00221{word-spacing:-0.064000pt;}
.ws22_c00221{word-spacing:-0.041664pt;}
.ws30_c00221{word-spacing:-0.029792pt;}
.ws5_c00221{word-spacing:-0.027776pt;}
.ws29_c00221{word-spacing:-0.012768pt;}
.ws2b_c00221{word-spacing:-0.008512pt;}
.ws2a_c00221{word-spacing:-0.004256pt;}
.ws4_c00221{word-spacing:0.000000pt;}
.ws1d_c00221{word-spacing:0.006400pt;}
.ws2f_c00221{word-spacing:0.021280pt;}
.wsa_c00221{word-spacing:0.070400pt;}
.ws10_c00221{word-spacing:0.083200pt;}
.ws1f_c00221{word-spacing:0.256000pt;}
.ws11_c00221{word-spacing:0.313600pt;}
.ws21_c00221{word-spacing:0.339200pt;}
.ws20_c00221{word-spacing:0.358400pt;}
.ws12_c00221{word-spacing:0.377600pt;}
.ws2d_c00221{word-spacing:1.893920pt;}
.ws2e_c00221{word-spacing:1.902432pt;}
.ws2c_c00221{word-spacing:1.906688pt;}
.ws19_c00221{word-spacing:3.481600pt;}
.ws18_c00221{word-spacing:3.513600pt;}
.ws1a_c00221{word-spacing:3.673600pt;}
.ws16_c00221{word-spacing:3.846400pt;}
.ws17_c00221{word-spacing:3.891200pt;}
.wsc_c00221{word-spacing:4.793600pt;}
.ws1e_c00221{word-spacing:4.819200pt;}
.wsd_c00221{word-spacing:4.896000pt;}
.ws27_c00221{word-spacing:5.452800pt;}
.ws26_c00221{word-spacing:5.510400pt;}
.ws6_c00221{word-spacing:7.724800pt;}
.ws7_c00221{word-spacing:7.731200pt;}
.ws15_c00221{word-spacing:8.646400pt;}
.ws14_c00221{word-spacing:8.697600pt;}
.ws13_c00221{word-spacing:8.736000pt;}
.ws23_c00221{word-spacing:8.902400pt;}
.ws24_c00221{word-spacing:9.030400pt;}
.ws25_c00221{word-spacing:9.056000pt;}
.wsb_c00221{word-spacing:9.273600pt;}
.ws1b_c00221{word-spacing:23.366400pt;}
.ws1c_c00221{word-spacing:23.392000pt;}
.wsf_c00221{word-spacing:26.227200pt;}
.wse_c00221{word-spacing:26.336000pt;}
.ws8_c00221{word-spacing:34.777600pt;}
.ws9_c00221{word-spacing:34.905600pt;}
._2_c00221{margin-left:-2.278720pt;}
._0_c00221{margin-left:-0.908480pt;}
._1_c00221{width:1.049600pt;}
.fs4_c00221{font-size:37.440000pt;}
.fs5_c00221{font-size:42.560000pt;}
.fs2_c00221{font-size:48.000000pt;}
.fs0_c00221{font-size:53.440000pt;}
.fs1_c00221{font-size:64.000000pt;}
.fs3_c00221{font-size:69.440000pt;}
.y0_c00221{bottom:0.000000pt;}
.y3_c00221{bottom:51.067067pt;}
.y4_c00221{bottom:54.587067pt;}
.y21_c00221{bottom:101.071040pt;}
.y20_c00221{bottom:113.392160pt;}
.y1f_c00221{bottom:129.628800pt;}
.y1e_c00221{bottom:145.865440pt;}
.y1d_c00221{bottom:162.187200pt;}
.y1c_c00221{bottom:175.707067pt;}
.y1b_c00221{bottom:194.107067pt;}
.y1a_c00221{bottom:212.507067pt;}
.y19_c00221{bottom:341.307067pt;}
.y18_c00221{bottom:371.867067pt;}
.y17_c00221{bottom:402.507067pt;}
.y16_c00221{bottom:442.507067pt;}
.y15_c00221{bottom:490.187067pt;}
.y14_c00221{bottom:520.827067pt;}
.y13_c00221{bottom:551.387067pt;}
.y12_c00221{bottom:590.027067pt;}
.y11_c00221{bottom:620.587067pt;}
.y10_c00221{bottom:651.227067pt;}
.yf_c00221{bottom:681.787067pt;}
.ye_c00221{bottom:712.427067pt;}
.yd_c00221{bottom:742.987067pt;}
.yc_c00221{bottom:781.627067pt;}
.yb_c00221{bottom:812.187067pt;}
.ya_c00221{bottom:842.827067pt;}
.y9_c00221{bottom:873.387067pt;}
.y8_c00221{bottom:912.027067pt;}
.y7_c00221{bottom:942.587067pt;}
.y6_c00221{bottom:973.227067pt;}
.y5_c00221{bottom:1013.227067pt;}
.y2_c00221{bottom:1043.387067pt;}
.y1_c00221{bottom:1063.867067pt;}
.h2_c00221{height:42.656250pt;}
.h8_c00221{height:44.388750pt;}
.h1_c00221{height:44.724687pt;}
.h3_c00221{height:50.062500pt;}
.h5_c00221{height:53.562500pt;}
.h6_c00221{height:57.894063pt;}
.h7_c00221{height:57.894596pt;}
.h4_c00221{height:72.423750pt;}
.h0_c00221{height:1122.666667pt;}
.w1_c00221{width:793.333333pt;}
.w0_c00221{width:793.626667pt;}
.x0_c00221{left:0.000000pt;}
.x2_c00221{left:113.440000pt;}
.x6_c00221{left:137.273600pt;}
.x5_c00221{left:160.640000pt;}
.x4_c00221{left:386.880000pt;}
.x3_c00221{left:396.880000pt;}
.x1_c00221{left:436.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_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_e13130dd37f9a37274495409.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.100098;font-style:normal;font-weight:normal;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_5647db74eeea98f96569bf14.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;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_c00222;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00222{transform:matrix(0.000000,-0.260527,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.260527,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.260527,0.250000,0.000000,0,0);}
.m0_c00222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00222{transform:matrix(0.260527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260527,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.v1_c00222{vertical-align:15.840000px;}
.v2_c00222{vertical-align:29.880000px;}
.lsf_c00222{letter-spacing:-0.847932px;}
.ls14_c00222{letter-spacing:-0.812230px;}
.ls15_c00222{letter-spacing:-0.671651px;}
.ls13_c00222{letter-spacing:-0.328016px;}
.lsd_c00222{letter-spacing:-0.319090px;}
.lsa_c00222{letter-spacing:-0.151200px;}
.ls12_c00222{letter-spacing:-0.102644px;}
.ls18_c00222{letter-spacing:-0.078156px;}
.ls16_c00222{letter-spacing:-0.048096px;}
.ls1d_c00222{letter-spacing:-0.036000px;}
.ls1b_c00222{letter-spacing:-0.028800px;}
.ls17_c00222{letter-spacing:-0.024048px;}
.ls1c_c00222{letter-spacing:-0.021600px;}
.ls1a_c00222{letter-spacing:-0.014400px;}
.ls1e_c00222{letter-spacing:-0.007200px;}
.ls9_c00222{letter-spacing:0.000000px;}
.ls6_c00222{letter-spacing:0.007200px;}
.ls5_c00222{letter-spacing:0.014400px;}
.ls3_c00222{letter-spacing:0.022314px;}
.ls2_c00222{letter-spacing:0.026777px;}
.ls8_c00222{letter-spacing:0.033516px;}
.ls0_c00222{letter-spacing:0.048096px;}
.ls7_c00222{letter-spacing:0.054756px;}
.ls1f_c00222{letter-spacing:0.093600px;}
.ls4_c00222{letter-spacing:0.136080px;}
.ls19_c00222{letter-spacing:0.168336px;}
.lsb_c00222{letter-spacing:0.372644px;}
.ls10_c00222{letter-spacing:0.569007px;}
.ls11_c00222{letter-spacing:0.615866px;}
.lse_c00222{letter-spacing:0.662726px;}
.lsc_c00222{letter-spacing:19.716650px;}
.ls1_c00222{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00222{word-spacing:-25.919942px;}
.wsb_c00222{word-spacing:-10.584756px;}
.wsa_c00222{word-spacing:-9.856080px;}
.ws6_c00222{word-spacing:-6.819158px;}
.ws2_c00222{word-spacing:-6.230069px;}
.ws7_c00222{word-spacing:-6.203292px;}
.ws8_c00222{word-spacing:-5.875276px;}
.ws9_c00222{word-spacing:-5.391062px;}
.ws4_c00222{word-spacing:-5.355360px;}
.wsf_c00222{word-spacing:-1.044295px;}
.wse_c00222{word-spacing:-0.698428px;}
.ws10_c00222{word-spacing:-0.569007px;}
.ws26_c00222{word-spacing:-0.086400px;}
.ws2d_c00222{word-spacing:-0.014364px;}
.ws2e_c00222{word-spacing:-0.009576px;}
.wsd_c00222{word-spacing:0.000000px;}
.ws19_c00222{word-spacing:0.021600px;}
.wsc_c00222{word-spacing:0.042084px;}
.ws12_c00222{word-spacing:0.114228px;}
.ws1f_c00222{word-spacing:0.129600px;}
.ws11_c00222{word-spacing:0.138276px;}
.ws13_c00222{word-spacing:0.168336px;}
.ws2c_c00222{word-spacing:0.734400px;}
.ws2b_c00222{word-spacing:0.792000px;}
.ws28_c00222{word-spacing:1.800000px;}
.ws16_c00222{word-spacing:2.491200px;}
.ws15_c00222{word-spacing:2.548800px;}
.ws1b_c00222{word-spacing:2.908800px;}
.ws1a_c00222{word-spacing:2.916000px;}
.ws27_c00222{word-spacing:4.694400px;}
.ws18_c00222{word-spacing:5.695200px;}
.ws17_c00222{word-spacing:5.760000px;}
.ws21_c00222{word-spacing:5.846400px;}
.ws20_c00222{word-spacing:5.868000px;}
.ws1c_c00222{word-spacing:6.501600px;}
.ws22_c00222{word-spacing:11.872800px;}
.ws23_c00222{word-spacing:13.291200px;}
.ws24_c00222{word-spacing:13.305600px;}
.ws0_c00222{word-spacing:13.450879px;}
.ws1e_c00222{word-spacing:14.421600px;}
.ws1d_c00222{word-spacing:14.428800px;}
.ws14_c00222{word-spacing:16.574400px;}
.ws2a_c00222{word-spacing:21.592800px;}
.ws25_c00222{word-spacing:21.607200px;}
.ws29_c00222{word-spacing:21.621600px;}
.ws5_c00222{word-spacing:1095.600275px;}
.ws3_c00222{word-spacing:1151.380812px;}
._4_c00222{margin-left:-20.296814px;}
._3_c00222{margin-left:-18.730372px;}
._5_c00222{margin-left:-2.436198px;}
._0_c00222{margin-left:-1.322640px;}
._1_c00222{width:1.004130px;}
._2_c00222{width:18.297480px;}
._7_c00222{width:393.218213px;}
._6_c00222{width:978.991193px;}
.fc1_c00222{color:transparent;}
.fc0_c00222{color:rgb(0,0,0);}
.fs5_c00222{font-size:18.000000px;}
.fs3_c00222{font-size:22.314000px;}
.fs6_c00222{font-size:38.880000px;}
.fs7_c00222{font-size:42.120000px;}
.fs8_c00222{font-size:47.880000px;}
.fs1_c00222{font-size:54.000000px;}
.fs0_c00222{font-size:60.120000px;}
.fs2_c00222{font-size:72.000000px;}
.fs4_c00222{font-size:78.120000px;}
.y0_c00222{bottom:0.000000px;}
.y3_c00222{bottom:57.450450px;}
.y35_c00222{bottom:113.698470px;}
.y34_c00222{bottom:132.060450px;}
.y33_c00222{bottom:147.270450px;}
.y32_c00222{bottom:167.970450px;}
.y31_c00222{bottom:188.670450px;}
.y30_c00222{bottom:235.020450px;}
.y2f_c00222{bottom:269.400450px;}
.y2e_c00222{bottom:303.870450px;}
.y2d_c00222{bottom:338.250450px;}
.y2c_c00222{bottom:381.720450px;}
.y2b_c00222{bottom:416.100450px;}
.y2a_c00222{bottom:450.570450px;}
.y29_c00222{bottom:484.950450px;}
.y28_c00222{bottom:519.420450px;}
.y27_c00222{bottom:562.800450px;}
.y26_c00222{bottom:597.270450px;}
.y25_c00222{bottom:631.650450px;}
.y24_c00222{bottom:666.120450px;}
.y23_c00222{bottom:709.500450px;}
.y22_c00222{bottom:743.970450px;}
.y21_c00222{bottom:778.350450px;}
.y20_c00222{bottom:812.820450px;}
.y1f_c00222{bottom:850.260450px;}
.y1e_c00222{bottom:864.390450px;}
.y1d_c00222{bottom:868.260450px;}
.y1c_c00222{bottom:871.680600px;}
.y1b_c00222{bottom:876.900450px;}
.y1a_c00222{bottom:882.120450px;}
.y19_c00222{bottom:887.340450px;}
.y18_c00222{bottom:892.560450px;}
.y16_c00222{bottom:893.625236px;}
.y15_c00222{bottom:900.642989px;}
.y4_c00222{bottom:908.670450px;}
.y5_c00222{bottom:923.609673px;}
.y6_c00222{bottom:938.638152px;}
.y7_c00222{bottom:953.577375px;}
.y8_c00222{bottom:968.605854px;}
.y9_c00222{bottom:983.634333px;}
.ya_c00222{bottom:998.573556px;}
.y17_c00222{bottom:1013.070450px;}
.yb_c00222{bottom:1013.602035px;}
.yc_c00222{bottom:1028.541258px;}
.yd_c00222{bottom:1043.569737px;}
.ye_c00222{bottom:1058.598216px;}
.yf_c00222{bottom:1073.537439px;}
.y10_c00222{bottom:1088.565918px;}
.y11_c00222{bottom:1103.505141px;}
.y12_c00222{bottom:1118.533620px;}
.y13_c00222{bottom:1133.562099px;}
.y14_c00222{bottom:1148.501322px;}
.y2_c00222{bottom:1177.860450px;}
.y1_c00222{bottom:1196.850450px;}
.h6_c00222{height:15.064453px;}
.h4_c00222{height:23.272805px;}
.h9_c00222{height:47.988281px;}
.ha_c00222{height:49.937344px;}
.h1_c00222{height:50.315273px;}
.h2_c00222{height:56.320312px;}
.h7_c00222{height:60.257812px;}
.h8_c00222{height:65.130820px;}
.h5_c00222{height:65.379727px;}
.h3_c00222{height:72.160312px;}
.h0_c00222{height:1263.000000px;}
.w1_c00222{width:892.500000px;}
.w0_c00222{width:892.830000px;}
.x0_c00222{left:0.000000px;}
.x6_c00222{left:117.360000px;}
.x3_c00222{left:120.868922px;}
.x2_c00222{left:124.200000px;}
.x4_c00222{left:125.635910px;}
.x1_c00222{left:127.620000px;}
.x9_c00222{left:176.220000px;}
.xa_c00222{left:180.720000px;}
.x7_c00222{left:209.520000px;}
.x5_c00222{left:760.401056px;}
.x8_c00222{left:783.720000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.v1_c00222{vertical-align:14.080000pt;}
.v2_c00222{vertical-align:26.560000pt;}
.lsf_c00222{letter-spacing:-0.753717pt;}
.ls14_c00222{letter-spacing:-0.721982pt;}
.ls15_c00222{letter-spacing:-0.597023pt;}
.ls13_c00222{letter-spacing:-0.291570pt;}
.lsd_c00222{letter-spacing:-0.283636pt;}
.lsa_c00222{letter-spacing:-0.134400pt;}
.ls12_c00222{letter-spacing:-0.091239pt;}
.ls18_c00222{letter-spacing:-0.069472pt;}
.ls16_c00222{letter-spacing:-0.042752pt;}
.ls1d_c00222{letter-spacing:-0.032000pt;}
.ls1b_c00222{letter-spacing:-0.025600pt;}
.ls17_c00222{letter-spacing:-0.021376pt;}
.ls1c_c00222{letter-spacing:-0.019200pt;}
.ls1a_c00222{letter-spacing:-0.012800pt;}
.ls1e_c00222{letter-spacing:-0.006400pt;}
.ls9_c00222{letter-spacing:0.000000pt;}
.ls6_c00222{letter-spacing:0.006400pt;}
.ls5_c00222{letter-spacing:0.012800pt;}
.ls3_c00222{letter-spacing:0.019835pt;}
.ls2_c00222{letter-spacing:0.023802pt;}
.ls8_c00222{letter-spacing:0.029792pt;}
.ls0_c00222{letter-spacing:0.042752pt;}
.ls7_c00222{letter-spacing:0.048672pt;}
.ls1f_c00222{letter-spacing:0.083200pt;}
.ls4_c00222{letter-spacing:0.120960pt;}
.ls19_c00222{letter-spacing:0.149632pt;}
.lsb_c00222{letter-spacing:0.331239pt;}
.ls10_c00222{letter-spacing:0.505784pt;}
.ls11_c00222{letter-spacing:0.547437pt;}
.lse_c00222{letter-spacing:0.589090pt;}
.lsc_c00222{letter-spacing:17.525911pt;}
.ls1_c00222{letter-spacing:1077.440000pt;}
.ws1_c00222{word-spacing:-23.039949pt;}
.wsb_c00222{word-spacing:-9.408672pt;}
.wsa_c00222{word-spacing:-8.760960pt;}
.ws6_c00222{word-spacing:-6.061474pt;}
.ws2_c00222{word-spacing:-5.537839pt;}
.ws7_c00222{word-spacing:-5.514037pt;}
.ws8_c00222{word-spacing:-5.222468pt;}
.ws9_c00222{word-spacing:-4.792055pt;}
.ws4_c00222{word-spacing:-4.760320pt;}
.wsf_c00222{word-spacing:-0.928262pt;}
.wse_c00222{word-spacing:-0.620825pt;}
.ws10_c00222{word-spacing:-0.505784pt;}
.ws26_c00222{word-spacing:-0.076800pt;}
.ws2d_c00222{word-spacing:-0.012768pt;}
.ws2e_c00222{word-spacing:-0.008512pt;}
.wsd_c00222{word-spacing:0.000000pt;}
.ws19_c00222{word-spacing:0.019200pt;}
.wsc_c00222{word-spacing:0.037408pt;}
.ws12_c00222{word-spacing:0.101536pt;}
.ws1f_c00222{word-spacing:0.115200pt;}
.ws11_c00222{word-spacing:0.122912pt;}
.ws13_c00222{word-spacing:0.149632pt;}
.ws2c_c00222{word-spacing:0.652800pt;}
.ws2b_c00222{word-spacing:0.704000pt;}
.ws28_c00222{word-spacing:1.600000pt;}
.ws16_c00222{word-spacing:2.214400pt;}
.ws15_c00222{word-spacing:2.265600pt;}
.ws1b_c00222{word-spacing:2.585600pt;}
.ws1a_c00222{word-spacing:2.592000pt;}
.ws27_c00222{word-spacing:4.172800pt;}
.ws18_c00222{word-spacing:5.062400pt;}
.ws17_c00222{word-spacing:5.120000pt;}
.ws21_c00222{word-spacing:5.196800pt;}
.ws20_c00222{word-spacing:5.216000pt;}
.ws1c_c00222{word-spacing:5.779200pt;}
.ws22_c00222{word-spacing:10.553600pt;}
.ws23_c00222{word-spacing:11.814400pt;}
.ws24_c00222{word-spacing:11.827200pt;}
.ws0_c00222{word-spacing:11.956337pt;}
.ws1e_c00222{word-spacing:12.819200pt;}
.ws1d_c00222{word-spacing:12.825600pt;}
.ws14_c00222{word-spacing:14.732800pt;}
.ws2a_c00222{word-spacing:19.193600pt;}
.ws25_c00222{word-spacing:19.206400pt;}
.ws29_c00222{word-spacing:19.219200pt;}
.ws5_c00222{word-spacing:973.866911pt;}
.ws3_c00222{word-spacing:1023.449611pt;}
._4_c00222{margin-left:-18.041613pt;}
._3_c00222{margin-left:-16.649219pt;}
._5_c00222{margin-left:-2.165509pt;}
._0_c00222{margin-left:-1.175680pt;}
._1_c00222{width:0.892560pt;}
._2_c00222{width:16.264427pt;}
._7_c00222{width:349.527300pt;}
._6_c00222{width:870.214394pt;}
.fs5_c00222{font-size:16.000000pt;}
.fs3_c00222{font-size:19.834667pt;}
.fs6_c00222{font-size:34.560000pt;}
.fs7_c00222{font-size:37.440000pt;}
.fs8_c00222{font-size:42.560000pt;}
.fs1_c00222{font-size:48.000000pt;}
.fs0_c00222{font-size:53.440000pt;}
.fs2_c00222{font-size:64.000000pt;}
.fs4_c00222{font-size:69.440000pt;}
.y0_c00222{bottom:0.000000pt;}
.y3_c00222{bottom:51.067067pt;}
.y35_c00222{bottom:101.065307pt;}
.y34_c00222{bottom:117.387067pt;}
.y33_c00222{bottom:130.907067pt;}
.y32_c00222{bottom:149.307067pt;}
.y31_c00222{bottom:167.707067pt;}
.y30_c00222{bottom:208.907067pt;}
.y2f_c00222{bottom:239.467067pt;}
.y2e_c00222{bottom:270.107067pt;}
.y2d_c00222{bottom:300.667067pt;}
.y2c_c00222{bottom:339.307067pt;}
.y2b_c00222{bottom:369.867067pt;}
.y2a_c00222{bottom:400.507067pt;}
.y29_c00222{bottom:431.067067pt;}
.y28_c00222{bottom:461.707067pt;}
.y27_c00222{bottom:500.267067pt;}
.y26_c00222{bottom:530.907067pt;}
.y25_c00222{bottom:561.467067pt;}
.y24_c00222{bottom:592.107067pt;}
.y23_c00222{bottom:630.667067pt;}
.y22_c00222{bottom:661.307067pt;}
.y21_c00222{bottom:691.867067pt;}
.y20_c00222{bottom:722.507067pt;}
.y1f_c00222{bottom:755.787067pt;}
.y1e_c00222{bottom:768.347067pt;}
.y1d_c00222{bottom:771.787067pt;}
.y1c_c00222{bottom:774.827200pt;}
.y1b_c00222{bottom:779.467067pt;}
.y1a_c00222{bottom:784.107067pt;}
.y19_c00222{bottom:788.747067pt;}
.y18_c00222{bottom:793.387067pt;}
.y16_c00222{bottom:794.333543pt;}
.y15_c00222{bottom:800.571545pt;}
.y4_c00222{bottom:807.707067pt;}
.y5_c00222{bottom:820.986376pt;}
.y6_c00222{bottom:834.345024pt;}
.y7_c00222{bottom:847.624333pt;}
.y8_c00222{bottom:860.982981pt;}
.y9_c00222{bottom:874.341629pt;}
.ya_c00222{bottom:887.620939pt;}
.y17_c00222{bottom:900.507067pt;}
.yb_c00222{bottom:900.979587pt;}
.yc_c00222{bottom:914.258896pt;}
.yd_c00222{bottom:927.617544pt;}
.ye_c00222{bottom:940.976192pt;}
.yf_c00222{bottom:954.255501pt;}
.y10_c00222{bottom:967.614149pt;}
.y11_c00222{bottom:980.893459pt;}
.y12_c00222{bottom:994.252107pt;}
.y13_c00222{bottom:1007.610755pt;}
.y14_c00222{bottom:1020.890064pt;}
.y2_c00222{bottom:1046.987067pt;}
.y1_c00222{bottom:1063.867067pt;}
.h6_c00222{height:13.390625pt;}
.h4_c00222{height:20.686937pt;}
.h9_c00222{height:42.656250pt;}
.ha_c00222{height:44.388750pt;}
.h1_c00222{height:44.724687pt;}
.h2_c00222{height:50.062500pt;}
.h7_c00222{height:53.562500pt;}
.h8_c00222{height:57.894062pt;}
.h5_c00222{height:58.115313pt;}
.h3_c00222{height:64.142500pt;}
.h0_c00222{height:1122.666667pt;}
.w1_c00222{width:793.333333pt;}
.w0_c00222{width:793.626667pt;}
.x0_c00222{left:0.000000pt;}
.x6_c00222{left:104.320000pt;}
.x3_c00222{left:107.439042pt;}
.x2_c00222{left:110.400000pt;}
.x4_c00222{left:111.676364pt;}
.x1_c00222{left:113.440000pt;}
.x9_c00222{left:156.640000pt;}
.xa_c00222{left:160.640000pt;}
.x7_c00222{left:186.240000pt;}
.x5_c00222{left:675.912050pt;}
.x8_c00222{left:696.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_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_acd4180db29fe5999306c962.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_ede70c2aa06140df1c25fef1.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00223;src:url('chunks/assets/font_2989cf4a31e6033875a286dd.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00223;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;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_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;}
.v1_c00223{vertical-align:29.880000px;}
.lsb_c00223{letter-spacing:-0.151200px;}
.lsf_c00223{letter-spacing:-0.043200px;}
.lsc_c00223{letter-spacing:-0.036000px;}
.ls11_c00223{letter-spacing:-0.028800px;}
.ls10_c00223{letter-spacing:-0.021600px;}
.ls14_c00223{letter-spacing:-0.015624px;}
.lsd_c00223{letter-spacing:-0.014400px;}
.ls15_c00223{letter-spacing:-0.007812px;}
.lse_c00223{letter-spacing:-0.007200px;}
.lsa_c00223{letter-spacing:0.000000px;}
.ls4_c00223{letter-spacing:0.007200px;}
.ls2_c00223{letter-spacing:0.014400px;}
.ls3_c00223{letter-spacing:0.021600px;}
.ls9_c00223{letter-spacing:0.028728px;}
.ls12_c00223{letter-spacing:0.036000px;}
.ls0_c00223{letter-spacing:0.036072px;}
.ls1_c00223{letter-spacing:0.043200px;}
.ls5_c00223{letter-spacing:0.054756px;}
.ls13_c00223{letter-spacing:0.093600px;}
.ls7_c00223{letter-spacing:0.144000px;}
.ls6_c00223{letter-spacing:45.231480px;}
.ls8_c00223{letter-spacing:66.024000px;}
.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:-19.514376px;}
.ws0_c00223{word-spacing:-10.584756px;}
.ws2_c00223{word-spacing:-0.306612px;}
.ws1e_c00223{word-spacing:-0.187488px;}
.ws29_c00223{word-spacing:-0.009576px;}
.ws21_c00223{word-spacing:-0.007200px;}
.ws3_c00223{word-spacing:0.000000px;}
.ws7_c00223{word-spacing:0.007200px;}
.ws19_c00223{word-spacing:0.014400px;}
.wsa_c00223{word-spacing:0.021600px;}
.wse_c00223{word-spacing:0.028800px;}
.ws20_c00223{word-spacing:0.064800px;}
.ws1d_c00223{word-spacing:0.086400px;}
.ws8_c00223{word-spacing:0.122400px;}
.ws17_c00223{word-spacing:0.316800px;}
.ws16_c00223{word-spacing:0.410400px;}
.ws18_c00223{word-spacing:0.504000px;}
.ws10_c00223{word-spacing:0.734400px;}
.ws11_c00223{word-spacing:0.813600px;}
.ws15_c00223{word-spacing:2.541600px;}
.ws14_c00223{word-spacing:2.606400px;}
.wsb_c00223{word-spacing:4.327200px;}
.ws23_c00223{word-spacing:5.047200px;}
.ws24_c00223{word-spacing:5.054400px;}
.ws28_c00223{word-spacing:6.040800px;}
.ws27_c00223{word-spacing:6.062400px;}
.ws5_c00223{word-spacing:10.036800px;}
.ws4_c00223{word-spacing:10.202400px;}
.ws6_c00223{word-spacing:10.454400px;}
.wsc_c00223{word-spacing:12.297600px;}
.wsd_c00223{word-spacing:12.333600px;}
.ws26_c00223{word-spacing:13.665600px;}
.ws25_c00223{word-spacing:13.766400px;}
.ws1f_c00223{word-spacing:14.018400px;}
.ws9_c00223{word-spacing:18.043200px;}
.ws1c_c00223{word-spacing:18.727200px;}
.ws1a_c00223{word-spacing:20.894400px;}
.ws1b_c00223{word-spacing:20.959200px;}
.wsf_c00223{word-spacing:21.240000px;}
.ws22_c00223{word-spacing:24.170400px;}
.ws13_c00223{word-spacing:28.404000px;}
.ws12_c00223{word-spacing:28.440000px;}
._0_c00223{margin-left:-1.022040px;}
._1_c00223{width:1.080000px;}
.fc0_c00223{color:rgb(0,0,0);}
.fs3_c00223{font-size:42.120000px;}
.fs5_c00223{font-size:47.880000px;}
.fs2_c00223{font-size:54.000000px;}
.fs0_c00223{font-size:60.120000px;}
.fs1_c00223{font-size:72.000000px;}
.fs4_c00223{font-size:78.120000px;}
.y0_c00223{bottom:0.000000px;}
.y3_c00223{bottom:57.450450px;}
.y4_c00223{bottom:61.410450px;}
.y22_c00223{bottom:113.700450px;}
.y21_c00223{bottom:128.910450px;}
.y20_c00223{bottom:149.610450px;}
.y1f_c00223{bottom:170.310600px;}
.y1e_c00223{bottom:205.680600px;}
.y1d_c00223{bottom:240.060600px;}
.y1c_c00223{bottom:283.530600px;}
.y1b_c00223{bottom:317.910600px;}
.y1a_c00223{bottom:352.380600px;}
.y19_c00223{bottom:386.760600px;}
.y18_c00223{bottom:430.230600px;}
.y17_c00223{bottom:464.610600px;}
.y16_c00223{bottom:509.700600px;}
.y15_c00223{bottom:563.340450px;}
.y14_c00223{bottom:597.810450px;}
.y13_c00223{bottom:632.190450px;}
.y12_c00223{bottom:675.660450px;}
.y11_c00223{bottom:710.040450px;}
.y10_c00223{bottom:744.510450px;}
.yf_c00223{bottom:778.890450px;}
.ye_c00223{bottom:813.360450px;}
.yd_c00223{bottom:847.740450px;}
.yc_c00223{bottom:891.210450px;}
.yb_c00223{bottom:925.590450px;}
.ya_c00223{bottom:960.060450px;}
.y9_c00223{bottom:1003.440450px;}
.y8_c00223{bottom:1037.910450px;}
.y7_c00223{bottom:1072.290450px;}
.y6_c00223{bottom:1106.760450px;}
.y5_c00223{bottom:1141.140450px;}
.y2_c00223{bottom:1173.810450px;}
.y1_c00223{bottom:1196.850450px;}
.h2_c00223{height:47.988281px;}
.h8_c00223{height:49.937344px;}
.h1_c00223{height:50.315273px;}
.h3_c00223{height:56.320312px;}
.h4_c00223{height:60.257812px;}
.h5_c00223{height:65.130820px;}
.h7_c00223{height:75.093750px;}
.h6_c00223{height:81.476719px;}
.h0_c00223{height:1263.000000px;}
.w1_c00223{width:892.500000px;}
.w0_c00223{width:892.830000px;}
.x0_c00223{left:0.000000px;}
.x2_c00223{left:127.620000px;}
.x6_c00223{left:154.440000px;}
.x5_c00223{left:180.720000px;}
.x4_c00223{left:435.240000px;}
.x3_c00223{left:446.490000px;}
.x1_c00223{left:490.770000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.v1_c00223{vertical-align:26.560000pt;}
.lsb_c00223{letter-spacing:-0.134400pt;}
.lsf_c00223{letter-spacing:-0.038400pt;}
.lsc_c00223{letter-spacing:-0.032000pt;}
.ls11_c00223{letter-spacing:-0.025600pt;}
.ls10_c00223{letter-spacing:-0.019200pt;}
.ls14_c00223{letter-spacing:-0.013888pt;}
.lsd_c00223{letter-spacing:-0.012800pt;}
.ls15_c00223{letter-spacing:-0.006944pt;}
.lse_c00223{letter-spacing:-0.006400pt;}
.lsa_c00223{letter-spacing:0.000000pt;}
.ls4_c00223{letter-spacing:0.006400pt;}
.ls2_c00223{letter-spacing:0.012800pt;}
.ls3_c00223{letter-spacing:0.019200pt;}
.ls9_c00223{letter-spacing:0.025536pt;}
.ls12_c00223{letter-spacing:0.032000pt;}
.ls0_c00223{letter-spacing:0.032064pt;}
.ls1_c00223{letter-spacing:0.038400pt;}
.ls5_c00223{letter-spacing:0.048672pt;}
.ls13_c00223{letter-spacing:0.083200pt;}
.ls7_c00223{letter-spacing:0.128000pt;}
.ls6_c00223{letter-spacing:40.205760pt;}
.ls8_c00223{letter-spacing:58.688000pt;}
.ws1_c00223{word-spacing:-17.346112pt;}
.ws0_c00223{word-spacing:-9.408672pt;}
.ws2_c00223{word-spacing:-0.272544pt;}
.ws1e_c00223{word-spacing:-0.166656pt;}
.ws29_c00223{word-spacing:-0.008512pt;}
.ws21_c00223{word-spacing:-0.006400pt;}
.ws3_c00223{word-spacing:0.000000pt;}
.ws7_c00223{word-spacing:0.006400pt;}
.ws19_c00223{word-spacing:0.012800pt;}
.wsa_c00223{word-spacing:0.019200pt;}
.wse_c00223{word-spacing:0.025600pt;}
.ws20_c00223{word-spacing:0.057600pt;}
.ws1d_c00223{word-spacing:0.076800pt;}
.ws8_c00223{word-spacing:0.108800pt;}
.ws17_c00223{word-spacing:0.281600pt;}
.ws16_c00223{word-spacing:0.364800pt;}
.ws18_c00223{word-spacing:0.448000pt;}
.ws10_c00223{word-spacing:0.652800pt;}
.ws11_c00223{word-spacing:0.723200pt;}
.ws15_c00223{word-spacing:2.259200pt;}
.ws14_c00223{word-spacing:2.316800pt;}
.wsb_c00223{word-spacing:3.846400pt;}
.ws23_c00223{word-spacing:4.486400pt;}
.ws24_c00223{word-spacing:4.492800pt;}
.ws28_c00223{word-spacing:5.369600pt;}
.ws27_c00223{word-spacing:5.388800pt;}
.ws5_c00223{word-spacing:8.921600pt;}
.ws4_c00223{word-spacing:9.068800pt;}
.ws6_c00223{word-spacing:9.292800pt;}
.wsc_c00223{word-spacing:10.931200pt;}
.wsd_c00223{word-spacing:10.963200pt;}
.ws26_c00223{word-spacing:12.147200pt;}
.ws25_c00223{word-spacing:12.236800pt;}
.ws1f_c00223{word-spacing:12.460800pt;}
.ws9_c00223{word-spacing:16.038400pt;}
.ws1c_c00223{word-spacing:16.646400pt;}
.ws1a_c00223{word-spacing:18.572800pt;}
.ws1b_c00223{word-spacing:18.630400pt;}
.wsf_c00223{word-spacing:18.880000pt;}
.ws22_c00223{word-spacing:21.484800pt;}
.ws13_c00223{word-spacing:25.248000pt;}
.ws12_c00223{word-spacing:25.280000pt;}
._0_c00223{margin-left:-0.908480pt;}
._1_c00223{width:0.960000pt;}
.fs3_c00223{font-size:37.440000pt;}
.fs5_c00223{font-size:42.560000pt;}
.fs2_c00223{font-size:48.000000pt;}
.fs0_c00223{font-size:53.440000pt;}
.fs1_c00223{font-size:64.000000pt;}
.fs4_c00223{font-size:69.440000pt;}
.y0_c00223{bottom:0.000000pt;}
.y3_c00223{bottom:51.067067pt;}
.y4_c00223{bottom:54.587067pt;}
.y22_c00223{bottom:101.067067pt;}
.y21_c00223{bottom:114.587067pt;}
.y20_c00223{bottom:132.987067pt;}
.y1f_c00223{bottom:151.387200pt;}
.y1e_c00223{bottom:182.827200pt;}
.y1d_c00223{bottom:213.387200pt;}
.y1c_c00223{bottom:252.027200pt;}
.y1b_c00223{bottom:282.587200pt;}
.y1a_c00223{bottom:313.227200pt;}
.y19_c00223{bottom:343.787200pt;}
.y18_c00223{bottom:382.427200pt;}
.y17_c00223{bottom:412.987200pt;}
.y16_c00223{bottom:453.067200pt;}
.y15_c00223{bottom:500.747067pt;}
.y14_c00223{bottom:531.387067pt;}
.y13_c00223{bottom:561.947067pt;}
.y12_c00223{bottom:600.587067pt;}
.y11_c00223{bottom:631.147067pt;}
.y10_c00223{bottom:661.787067pt;}
.yf_c00223{bottom:692.347067pt;}
.ye_c00223{bottom:722.987067pt;}
.yd_c00223{bottom:753.547067pt;}
.yc_c00223{bottom:792.187067pt;}
.yb_c00223{bottom:822.747067pt;}
.ya_c00223{bottom:853.387067pt;}
.y9_c00223{bottom:891.947067pt;}
.y8_c00223{bottom:922.587067pt;}
.y7_c00223{bottom:953.147067pt;}
.y6_c00223{bottom:983.787067pt;}
.y5_c00223{bottom:1014.347067pt;}
.y2_c00223{bottom:1043.387067pt;}
.y1_c00223{bottom:1063.867067pt;}
.h2_c00223{height:42.656250pt;}
.h8_c00223{height:44.388750pt;}
.h1_c00223{height:44.724687pt;}
.h3_c00223{height:50.062500pt;}
.h4_c00223{height:53.562500pt;}
.h5_c00223{height:57.894062pt;}
.h7_c00223{height:66.750000pt;}
.h6_c00223{height:72.423750pt;}
.h0_c00223{height:1122.666667pt;}
.w1_c00223{width:793.333333pt;}
.w0_c00223{width:793.626667pt;}
.x0_c00223{left:0.000000pt;}
.x2_c00223{left:113.440000pt;}
.x6_c00223{left:137.280000pt;}
.x5_c00223{left:160.640000pt;}
.x4_c00223{left:386.880000pt;}
.x3_c00223{left:396.880000pt;}
.x1_c00223{left:436.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_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_daef4535b5d6616910e37df4.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.100098;font-style:normal;font-weight:normal;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_bc64841ed172139ee24c21b6.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;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_c00224;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00224;src:url('chunks/assets/font_30772873fb1c1ab00a0f8e04.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00224{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m0_c00224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.v1_c00224{vertical-align:15.840000px;}
.v2_c00224{vertical-align:29.880000px;}
.lsc_c00224{letter-spacing:-0.151200px;}
.ls15_c00224{letter-spacing:-0.036000px;}
.lse_c00224{letter-spacing:-0.028800px;}
.ls10_c00224{letter-spacing:-0.021600px;}
.lsf_c00224{letter-spacing:-0.014400px;}
.lsd_c00224{letter-spacing:-0.007200px;}
.lsb_c00224{letter-spacing:0.000000px;}
.ls5_c00224{letter-spacing:0.007200px;}
.ls9_c00224{letter-spacing:0.014400px;}
.lsa_c00224{letter-spacing:0.033516px;}
.ls0_c00224{letter-spacing:0.048096px;}
.ls4_c00224{letter-spacing:0.054756px;}
.ls8_c00224{letter-spacing:0.136080px;}
.ls2_c00224{letter-spacing:0.144000px;}
.ls14_c00224{letter-spacing:0.222447px;}
.ls7_c00224{letter-spacing:0.251621px;}
.ls12_c00224{letter-spacing:0.255268px;}
.ls11_c00224{letter-spacing:0.262561px;}
.ls13_c00224{letter-spacing:0.277148px;}
.ls6_c00224{letter-spacing:6.120000px;}
.ls3_c00224{letter-spacing:66.024000px;}
.ls1_c00224{letter-spacing:1212.120000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00224{word-spacing:-10.584756px;}
.ws1_c00224{word-spacing:-9.856080px;}
.ws11_c00224{word-spacing:-1.385738px;}
.ws12_c00224{word-spacing:-1.378445px;}
.ws15_c00224{word-spacing:-1.374798px;}
.ws14_c00224{word-spacing:-1.345625px;}
.ws13_c00224{word-spacing:-1.039304px;}
.wsb_c00224{word-spacing:-0.014400px;}
.ws27_c00224{word-spacing:-0.014364px;}
.ws3_c00224{word-spacing:0.000000px;}
.ws8_c00224{word-spacing:0.014400px;}
.ws10_c00224{word-spacing:0.021600px;}
.ws1d_c00224{word-spacing:0.028800px;}
.ws2_c00224{word-spacing:0.042084px;}
.ws1e_c00224{word-spacing:0.050400px;}
.ws1c_c00224{word-spacing:0.388800px;}
.ws1b_c00224{word-spacing:0.482400px;}
.ws9_c00224{word-spacing:1.339200px;}
.wsa_c00224{word-spacing:1.396800px;}
.wsd_c00224{word-spacing:2.160000px;}
.wsc_c00224{word-spacing:2.174400px;}
.ws7_c00224{word-spacing:2.952000px;}
.ws6_c00224{word-spacing:2.959200px;}
.ws23_c00224{word-spacing:3.960000px;}
.ws22_c00224{word-spacing:4.068000px;}
.ws17_c00224{word-spacing:5.652000px;}
.ws5_c00224{word-spacing:5.788800px;}
.ws16_c00224{word-spacing:5.796000px;}
.ws4_c00224{word-spacing:5.817600px;}
.wse_c00224{word-spacing:6.112800px;}
.wsf_c00224{word-spacing:6.220800px;}
.ws21_c00224{word-spacing:13.334400px;}
.ws19_c00224{word-spacing:15.033600px;}
.ws18_c00224{word-spacing:15.048000px;}
.ws1a_c00224{word-spacing:15.156000px;}
.ws20_c00224{word-spacing:23.047200px;}
.ws1f_c00224{word-spacing:23.112000px;}
.ws24_c00224{word-spacing:24.141600px;}
.ws25_c00224{word-spacing:24.256800px;}
.ws26_c00224{word-spacing:29.181600px;}
._2_c00224{margin-left:-3.792547px;}
._1_c00224{margin-left:-2.516209px;}
._0_c00224{margin-left:-1.322640px;}
._3_c00224{width:1.087043px;}
.fc0_c00224{color:rgb(0,0,0);}
.fs4_c00224{font-size:36.466800px;}
.fs5_c00224{font-size:38.880000px;}
.fs3_c00224{font-size:42.120000px;}
.fs6_c00224{font-size:47.880000px;}
.fs1_c00224{font-size:54.000000px;}
.fs0_c00224{font-size:60.120000px;}
.fs2_c00224{font-size:72.000000px;}
.y0_c00224{bottom:0.000000px;}
.y3_c00224{bottom:57.450450px;}
.y27_c00224{bottom:113.698470px;}
.y26_c00224{bottom:132.060450px;}
.y25_c00224{bottom:147.270450px;}
.y24_c00224{bottom:167.970450px;}
.y23_c00224{bottom:188.670450px;}
.y22_c00224{bottom:215.130450px;}
.y21_c00224{bottom:249.510450px;}
.y20_c00224{bottom:283.980450px;}
.y1f_c00224{bottom:318.360450px;}
.y1e_c00224{bottom:361.830450px;}
.y1d_c00224{bottom:396.210450px;}
.y1c_c00224{bottom:439.680450px;}
.y1b_c00224{bottom:474.060450px;}
.y1a_c00224{bottom:508.530450px;}
.y19_c00224{bottom:542.910450px;}
.y18_c00224{bottom:592.230450px;}
.y17_c00224{bottom:605.190450px;}
.ye_c00224{bottom:644.613419px;}
.y16_c00224{bottom:653.160450px;}
.yf_c00224{bottom:654.331821px;}
.y15_c00224{bottom:679.980450px;}
.y14_c00224{bottom:707.250450px;}
.y13_c00224{bottom:734.070450px;}
.y12_c00224{bottom:760.890450px;}
.y10_c00224{bottom:775.647748px;}
.yd_c00224{bottom:780.780450px;}
.y11_c00224{bottom:792.203675px;}
.yc_c00224{bottom:829.740450px;}
.yb_c00224{bottom:864.210450px;}
.ya_c00224{bottom:898.590450px;}
.y9_c00224{bottom:951.060450px;}
.y8_c00224{bottom:985.440450px;}
.y7_c00224{bottom:1028.910450px;}
.y6_c00224{bottom:1063.290450px;}
.y5_c00224{bottom:1106.760450px;}
.y4_c00224{bottom:1141.140450px;}
.y2_c00224{bottom:1177.860450px;}
.y1_c00224{bottom:1196.850450px;}
.h7_c00224{height:38.033733px;}
.h8_c00224{height:47.988281px;}
.h9_c00224{height:49.937344px;}
.h1_c00224{height:50.315273px;}
.h2_c00224{height:56.320312px;}
.h5_c00224{height:60.257812px;}
.h6_c00224{height:60.328125px;}
.h3_c00224{height:72.160312px;}
.h4_c00224{height:75.093750px;}
.h0_c00224{height:1263.000000px;}
.w1_c00224{width:892.500000px;}
.w0_c00224{width:892.830000px;}
.x0_c00224{left:0.000000px;}
.x1_c00224{left:127.620000px;}
.x2_c00224{left:154.440000px;}
.x3_c00224{left:181.170000px;}
.x6_c00224{left:217.358022px;}
.xb_c00224{left:223.200000px;}
.x7_c00224{left:245.260338px;}
.x8_c00224{left:297.640926px;}
.x4_c00224{left:361.350000px;}
.x5_c00224{left:393.841992px;}
.x9_c00224{left:444.510000px;}
.xa_c00224{left:666.540000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.v1_c00224{vertical-align:14.080000pt;}
.v2_c00224{vertical-align:26.560000pt;}
.lsc_c00224{letter-spacing:-0.134400pt;}
.ls15_c00224{letter-spacing:-0.032000pt;}
.lse_c00224{letter-spacing:-0.025600pt;}
.ls10_c00224{letter-spacing:-0.019200pt;}
.lsf_c00224{letter-spacing:-0.012800pt;}
.lsd_c00224{letter-spacing:-0.006400pt;}
.lsb_c00224{letter-spacing:0.000000pt;}
.ls5_c00224{letter-spacing:0.006400pt;}
.ls9_c00224{letter-spacing:0.012800pt;}
.lsa_c00224{letter-spacing:0.029792pt;}
.ls0_c00224{letter-spacing:0.042752pt;}
.ls4_c00224{letter-spacing:0.048672pt;}
.ls8_c00224{letter-spacing:0.120960pt;}
.ls2_c00224{letter-spacing:0.128000pt;}
.ls14_c00224{letter-spacing:0.197731pt;}
.ls7_c00224{letter-spacing:0.223663pt;}
.ls12_c00224{letter-spacing:0.226905pt;}
.ls11_c00224{letter-spacing:0.233388pt;}
.ls13_c00224{letter-spacing:0.246353pt;}
.ls6_c00224{letter-spacing:5.440000pt;}
.ls3_c00224{letter-spacing:58.688000pt;}
.ls1_c00224{letter-spacing:1077.440000pt;}
.ws0_c00224{word-spacing:-9.408672pt;}
.ws1_c00224{word-spacing:-8.760960pt;}
.ws11_c00224{word-spacing:-1.231767pt;}
.ws12_c00224{word-spacing:-1.225284pt;}
.ws15_c00224{word-spacing:-1.222043pt;}
.ws14_c00224{word-spacing:-1.196111pt;}
.ws13_c00224{word-spacing:-0.923826pt;}
.wsb_c00224{word-spacing:-0.012800pt;}
.ws27_c00224{word-spacing:-0.012768pt;}
.ws3_c00224{word-spacing:0.000000pt;}
.ws8_c00224{word-spacing:0.012800pt;}
.ws10_c00224{word-spacing:0.019200pt;}
.ws1d_c00224{word-spacing:0.025600pt;}
.ws2_c00224{word-spacing:0.037408pt;}
.ws1e_c00224{word-spacing:0.044800pt;}
.ws1c_c00224{word-spacing:0.345600pt;}
.ws1b_c00224{word-spacing:0.428800pt;}
.ws9_c00224{word-spacing:1.190400pt;}
.wsa_c00224{word-spacing:1.241600pt;}
.wsd_c00224{word-spacing:1.920000pt;}
.wsc_c00224{word-spacing:1.932800pt;}
.ws7_c00224{word-spacing:2.624000pt;}
.ws6_c00224{word-spacing:2.630400pt;}
.ws23_c00224{word-spacing:3.520000pt;}
.ws22_c00224{word-spacing:3.616000pt;}
.ws17_c00224{word-spacing:5.024000pt;}
.ws5_c00224{word-spacing:5.145600pt;}
.ws16_c00224{word-spacing:5.152000pt;}
.ws4_c00224{word-spacing:5.171200pt;}
.wse_c00224{word-spacing:5.433600pt;}
.wsf_c00224{word-spacing:5.529600pt;}
.ws21_c00224{word-spacing:11.852800pt;}
.ws19_c00224{word-spacing:13.363200pt;}
.ws18_c00224{word-spacing:13.376000pt;}
.ws1a_c00224{word-spacing:13.472000pt;}
.ws20_c00224{word-spacing:20.486400pt;}
.ws1f_c00224{word-spacing:20.544000pt;}
.ws24_c00224{word-spacing:21.459200pt;}
.ws25_c00224{word-spacing:21.561600pt;}
.ws26_c00224{word-spacing:25.939200pt;}
._2_c00224{margin-left:-3.371153pt;}
._1_c00224{margin-left:-2.236630pt;}
._0_c00224{margin-left:-1.175680pt;}
._3_c00224{width:0.966260pt;}
.fs4_c00224{font-size:32.414933pt;}
.fs5_c00224{font-size:34.560000pt;}
.fs3_c00224{font-size:37.440000pt;}
.fs6_c00224{font-size:42.560000pt;}
.fs1_c00224{font-size:48.000000pt;}
.fs0_c00224{font-size:53.440000pt;}
.fs2_c00224{font-size:64.000000pt;}
.y0_c00224{bottom:0.000000pt;}
.y3_c00224{bottom:51.067067pt;}
.y27_c00224{bottom:101.065307pt;}
.y26_c00224{bottom:117.387067pt;}
.y25_c00224{bottom:130.907067pt;}
.y24_c00224{bottom:149.307067pt;}
.y23_c00224{bottom:167.707067pt;}
.y22_c00224{bottom:191.227067pt;}
.y21_c00224{bottom:221.787067pt;}
.y20_c00224{bottom:252.427067pt;}
.y1f_c00224{bottom:282.987067pt;}
.y1e_c00224{bottom:321.627067pt;}
.y1d_c00224{bottom:352.187067pt;}
.y1c_c00224{bottom:390.827067pt;}
.y1b_c00224{bottom:421.387067pt;}
.y1a_c00224{bottom:452.027067pt;}
.y19_c00224{bottom:482.587067pt;}
.y18_c00224{bottom:526.427067pt;}
.y17_c00224{bottom:537.947067pt;}
.ye_c00224{bottom:572.989706pt;}
.y16_c00224{bottom:580.587067pt;}
.yf_c00224{bottom:581.628285pt;}
.y15_c00224{bottom:604.427067pt;}
.y14_c00224{bottom:628.667067pt;}
.y13_c00224{bottom:652.507067pt;}
.y12_c00224{bottom:676.347067pt;}
.y10_c00224{bottom:689.464665pt;}
.yd_c00224{bottom:694.027067pt;}
.y11_c00224{bottom:704.181045pt;}
.yc_c00224{bottom:737.547067pt;}
.yb_c00224{bottom:768.187067pt;}
.ya_c00224{bottom:798.747067pt;}
.y9_c00224{bottom:845.387067pt;}
.y8_c00224{bottom:875.947067pt;}
.y7_c00224{bottom:914.587067pt;}
.y6_c00224{bottom:945.147067pt;}
.y5_c00224{bottom:983.787067pt;}
.y4_c00224{bottom:1014.347067pt;}
.y2_c00224{bottom:1046.987067pt;}
.y1_c00224{bottom:1063.867067pt;}
.h7_c00224{height:33.807762pt;}
.h8_c00224{height:42.656250pt;}
.h9_c00224{height:44.388750pt;}
.h1_c00224{height:44.724687pt;}
.h2_c00224{height:50.062500pt;}
.h5_c00224{height:53.562500pt;}
.h6_c00224{height:53.625000pt;}
.h3_c00224{height:64.142500pt;}
.h4_c00224{height:66.750000pt;}
.h0_c00224{height:1122.666667pt;}
.w1_c00224{width:793.333333pt;}
.w0_c00224{width:793.626667pt;}
.x0_c00224{left:0.000000pt;}
.x1_c00224{left:113.440000pt;}
.x2_c00224{left:137.280000pt;}
.x3_c00224{left:161.040000pt;}
.x6_c00224{left:193.207131pt;}
.xb_c00224{left:198.400000pt;}
.x7_c00224{left:218.009189pt;}
.x8_c00224{left:264.569712pt;}
.x4_c00224{left:321.200000pt;}
.x5_c00224{left:350.081771pt;}
.x9_c00224{left:395.120000pt;}
.xa_c00224{left:592.480000pt;}
}





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

.ir_c00225:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00225;src:url('chunks/assets/font_935839408a98d2bd7b967adc.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00225;src:url('chunks/assets/font_d9e7aea4e8c0ee894c4e09ef.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00225{vertical-align:-29.880000px;}
.v0_c00225{vertical-align:0.000000px;}
.v1_c00225{vertical-align:29.880000px;}
.lsd_c00225{letter-spacing:-0.151200px;}
.ls12_c00225{letter-spacing:-0.043200px;}
.ls11_c00225{letter-spacing:-0.028800px;}
.lsf_c00225{letter-spacing:-0.021600px;}
.lse_c00225{letter-spacing:-0.014400px;}
.ls10_c00225{letter-spacing:-0.007200px;}
.lsc_c00225{letter-spacing:0.000000px;}
.ls1_c00225{letter-spacing:0.007200px;}
.ls4_c00225{letter-spacing:0.014400px;}
.ls2_c00225{letter-spacing:0.021600px;}
.lsa_c00225{letter-spacing:0.023940px;}
.lsb_c00225{letter-spacing:0.028728px;}
.ls5_c00225{letter-spacing:0.028800px;}
.ls7_c00225{letter-spacing:0.036000px;}
.ls0_c00225{letter-spacing:0.036072px;}
.ls3_c00225{letter-spacing:0.054756px;}
.ls6_c00225{letter-spacing:0.093600px;}
.ls13_c00225{letter-spacing:0.108000px;}
.ls8_c00225{letter-spacing:0.144000px;}
.ls9_c00225{letter-spacing:66.024000px;}
.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;}
}
.ws1_c00225{word-spacing:-18.093600px;}
.ws0_c00225{word-spacing:-10.584756px;}
.ws2_c00225{word-spacing:-0.306612px;}
.ws12_c00225{word-spacing:-0.093600px;}
.ws27_c00225{word-spacing:-0.009576px;}
.ws26_c00225{word-spacing:-0.004788px;}
.ws3_c00225{word-spacing:0.000000px;}
.ws9_c00225{word-spacing:0.007200px;}
.ws11_c00225{word-spacing:0.021600px;}
.ws8_c00225{word-spacing:0.028800px;}
.ws7_c00225{word-spacing:0.079200px;}
.ws22_c00225{word-spacing:0.252000px;}
.ws20_c00225{word-spacing:0.655200px;}
.ws1d_c00225{word-spacing:0.741600px;}
.ws21_c00225{word-spacing:0.748800px;}
.ws13_c00225{word-spacing:2.217600px;}
.ws1b_c00225{word-spacing:5.090400px;}
.ws1c_c00225{word-spacing:5.760000px;}
.ws16_c00225{word-spacing:5.781600px;}
.ws15_c00225{word-spacing:5.817600px;}
.wsd_c00225{word-spacing:9.626400px;}
.wsc_c00225{word-spacing:9.691200px;}
.wsb_c00225{word-spacing:9.705600px;}
.wsa_c00225{word-spacing:10.447200px;}
.ws4_c00225{word-spacing:11.570400px;}
.ws6_c00225{word-spacing:11.872800px;}
.ws5_c00225{word-spacing:11.952000px;}
.ws18_c00225{word-spacing:12.254400px;}
.ws10_c00225{word-spacing:12.564000px;}
.wse_c00225{word-spacing:12.571200px;}
.wsf_c00225{word-spacing:12.657600px;}
.ws14_c00225{word-spacing:14.781600px;}
.ws1f_c00225{word-spacing:14.932800px;}
.ws1e_c00225{word-spacing:14.976000px;}
.ws17_c00225{word-spacing:16.948800px;}
.ws1a_c00225{word-spacing:20.124000px;}
.ws19_c00225{word-spacing:20.203200px;}
.ws25_c00225{word-spacing:20.887200px;}
.ws24_c00225{word-spacing:24.573600px;}
.ws23_c00225{word-spacing:24.602400px;}
._0_c00225{margin-left:-1.022040px;}
._1_c00225{width:1.152000px;}
.fc0_c00225{color:rgb(0,0,0);}
.fs3_c00225{font-size:42.120000px;}
.fs4_c00225{font-size:47.880000px;}
.fs2_c00225{font-size:54.000000px;}
.fs0_c00225{font-size:60.120000px;}
.fs1_c00225{font-size:72.000000px;}
.y0_c00225{bottom:0.000000px;}
.y3_c00225{bottom:57.450450px;}
.y4_c00225{bottom:61.410450px;}
.y27_c00225{bottom:113.713410px;}
.y26_c00225{bottom:132.075390px;}
.y25_c00225{bottom:150.341610px;}
.y24_c00225{bottom:168.607830px;}
.y23_c00225{bottom:186.969810px;}
.y22_c00225{bottom:205.236030px;}
.y21_c00225{bottom:223.502250px;}
.y20_c00225{bottom:241.864230px;}
.y1f_c00225{bottom:260.130450px;}
.y1e_c00225{bottom:275.340450px;}
.y1d_c00225{bottom:296.040450px;}
.y1c_c00225{bottom:316.740450px;}
.y1b_c00225{bottom:347.790450px;}
.y1a_c00225{bottom:382.260450px;}
.y19_c00225{bottom:425.640450px;}
.y18_c00225{bottom:460.110450px;}
.y17_c00225{bottom:494.490450px;}
.y16_c00225{bottom:537.960450px;}
.y15_c00225{bottom:572.340450px;}
.y14_c00225{bottom:606.810450px;}
.y13_c00225{bottom:641.190450px;}
.y12_c00225{bottom:675.660450px;}
.y11_c00225{bottom:710.040450px;}
.y10_c00225{bottom:744.510450px;}
.yf_c00225{bottom:778.890450px;}
.ye_c00225{bottom:813.360450px;}
.yd_c00225{bottom:847.740450px;}
.yc_c00225{bottom:891.210450px;}
.yb_c00225{bottom:925.590450px;}
.ya_c00225{bottom:960.060450px;}
.y9_c00225{bottom:994.440450px;}
.y8_c00225{bottom:1037.910450px;}
.y7_c00225{bottom:1072.290450px;}
.y6_c00225{bottom:1106.760450px;}
.y5_c00225{bottom:1141.140450px;}
.y2_c00225{bottom:1173.810450px;}
.y1_c00225{bottom:1196.850450px;}
.h2_c00225{height:47.988281px;}
.h8_c00225{height:49.937344px;}
.h1_c00225{height:50.315273px;}
.h3_c00225{height:56.320312px;}
.h4_c00225{height:60.257812px;}
.h5_c00225{height:65.130820px;}
.h7_c00225{height:65.131420px;}
.h6_c00225{height:75.093750px;}
.h0_c00225{height:1263.000000px;}
.w1_c00225{width:892.500000px;}
.w0_c00225{width:892.830000px;}
.x0_c00225{left:0.000000px;}
.x2_c00225{left:127.620000px;}
.x7_c00225{left:154.440000px;}
.x5_c00225{left:181.170000px;}
.x6_c00225{left:208.620000px;}
.x4_c00225{left:435.240000px;}
.x3_c00225{left:446.490000px;}
.x1_c00225{left:490.770000px;}
@media print{
.v2_c00225{vertical-align:-26.560000pt;}
.v0_c00225{vertical-align:0.000000pt;}
.v1_c00225{vertical-align:26.560000pt;}
.lsd_c00225{letter-spacing:-0.134400pt;}
.ls12_c00225{letter-spacing:-0.038400pt;}
.ls11_c00225{letter-spacing:-0.025600pt;}
.lsf_c00225{letter-spacing:-0.019200pt;}
.lse_c00225{letter-spacing:-0.012800pt;}
.ls10_c00225{letter-spacing:-0.006400pt;}
.lsc_c00225{letter-spacing:0.000000pt;}
.ls1_c00225{letter-spacing:0.006400pt;}
.ls4_c00225{letter-spacing:0.012800pt;}
.ls2_c00225{letter-spacing:0.019200pt;}
.lsa_c00225{letter-spacing:0.021280pt;}
.lsb_c00225{letter-spacing:0.025536pt;}
.ls5_c00225{letter-spacing:0.025600pt;}
.ls7_c00225{letter-spacing:0.032000pt;}
.ls0_c00225{letter-spacing:0.032064pt;}
.ls3_c00225{letter-spacing:0.048672pt;}
.ls6_c00225{letter-spacing:0.083200pt;}
.ls13_c00225{letter-spacing:0.096000pt;}
.ls8_c00225{letter-spacing:0.128000pt;}
.ls9_c00225{letter-spacing:58.688000pt;}
.ws1_c00225{word-spacing:-16.083200pt;}
.ws0_c00225{word-spacing:-9.408672pt;}
.ws2_c00225{word-spacing:-0.272544pt;}
.ws12_c00225{word-spacing:-0.083200pt;}
.ws27_c00225{word-spacing:-0.008512pt;}
.ws26_c00225{word-spacing:-0.004256pt;}
.ws3_c00225{word-spacing:0.000000pt;}
.ws9_c00225{word-spacing:0.006400pt;}
.ws11_c00225{word-spacing:0.019200pt;}
.ws8_c00225{word-spacing:0.025600pt;}
.ws7_c00225{word-spacing:0.070400pt;}
.ws22_c00225{word-spacing:0.224000pt;}
.ws20_c00225{word-spacing:0.582400pt;}
.ws1d_c00225{word-spacing:0.659200pt;}
.ws21_c00225{word-spacing:0.665600pt;}
.ws13_c00225{word-spacing:1.971200pt;}
.ws1b_c00225{word-spacing:4.524800pt;}
.ws1c_c00225{word-spacing:5.120000pt;}
.ws16_c00225{word-spacing:5.139200pt;}
.ws15_c00225{word-spacing:5.171200pt;}
.wsd_c00225{word-spacing:8.556800pt;}
.wsc_c00225{word-spacing:8.614400pt;}
.wsb_c00225{word-spacing:8.627200pt;}
.wsa_c00225{word-spacing:9.286400pt;}
.ws4_c00225{word-spacing:10.284800pt;}
.ws6_c00225{word-spacing:10.553600pt;}
.ws5_c00225{word-spacing:10.624000pt;}
.ws18_c00225{word-spacing:10.892800pt;}
.ws10_c00225{word-spacing:11.168000pt;}
.wse_c00225{word-spacing:11.174400pt;}
.wsf_c00225{word-spacing:11.251200pt;}
.ws14_c00225{word-spacing:13.139200pt;}
.ws1f_c00225{word-spacing:13.273600pt;}
.ws1e_c00225{word-spacing:13.312000pt;}
.ws17_c00225{word-spacing:15.065600pt;}
.ws1a_c00225{word-spacing:17.888000pt;}
.ws19_c00225{word-spacing:17.958400pt;}
.ws25_c00225{word-spacing:18.566400pt;}
.ws24_c00225{word-spacing:21.843200pt;}
.ws23_c00225{word-spacing:21.868800pt;}
._0_c00225{margin-left:-0.908480pt;}
._1_c00225{width:1.024000pt;}
.fs3_c00225{font-size:37.440000pt;}
.fs4_c00225{font-size:42.560000pt;}
.fs2_c00225{font-size:48.000000pt;}
.fs0_c00225{font-size:53.440000pt;}
.fs1_c00225{font-size:64.000000pt;}
.y0_c00225{bottom:0.000000pt;}
.y3_c00225{bottom:51.067067pt;}
.y4_c00225{bottom:54.587067pt;}
.y27_c00225{bottom:101.078587pt;}
.y26_c00225{bottom:117.400347pt;}
.y25_c00225{bottom:133.636987pt;}
.y24_c00225{bottom:149.873627pt;}
.y23_c00225{bottom:166.195387pt;}
.y22_c00225{bottom:182.432027pt;}
.y21_c00225{bottom:198.668667pt;}
.y20_c00225{bottom:214.990427pt;}
.y1f_c00225{bottom:231.227067pt;}
.y1e_c00225{bottom:244.747067pt;}
.y1d_c00225{bottom:263.147067pt;}
.y1c_c00225{bottom:281.547067pt;}
.y1b_c00225{bottom:309.147067pt;}
.y1a_c00225{bottom:339.787067pt;}
.y19_c00225{bottom:378.347067pt;}
.y18_c00225{bottom:408.987067pt;}
.y17_c00225{bottom:439.547067pt;}
.y16_c00225{bottom:478.187067pt;}
.y15_c00225{bottom:508.747067pt;}
.y14_c00225{bottom:539.387067pt;}
.y13_c00225{bottom:569.947067pt;}
.y12_c00225{bottom:600.587067pt;}
.y11_c00225{bottom:631.147067pt;}
.y10_c00225{bottom:661.787067pt;}
.yf_c00225{bottom:692.347067pt;}
.ye_c00225{bottom:722.987067pt;}
.yd_c00225{bottom:753.547067pt;}
.yc_c00225{bottom:792.187067pt;}
.yb_c00225{bottom:822.747067pt;}
.ya_c00225{bottom:853.387067pt;}
.y9_c00225{bottom:883.947067pt;}
.y8_c00225{bottom:922.587067pt;}
.y7_c00225{bottom:953.147067pt;}
.y6_c00225{bottom:983.787067pt;}
.y5_c00225{bottom:1014.347067pt;}
.y2_c00225{bottom:1043.387067pt;}
.y1_c00225{bottom:1063.867067pt;}
.h2_c00225{height:42.656250pt;}
.h8_c00225{height:44.388750pt;}
.h1_c00225{height:44.724687pt;}
.h3_c00225{height:50.062500pt;}
.h4_c00225{height:53.562500pt;}
.h5_c00225{height:57.894062pt;}
.h7_c00225{height:57.894596pt;}
.h6_c00225{height:66.750000pt;}
.h0_c00225{height:1122.666667pt;}
.w1_c00225{width:793.333333pt;}
.w0_c00225{width:793.626667pt;}
.x0_c00225{left:0.000000pt;}
.x2_c00225{left:113.440000pt;}
.x7_c00225{left:137.280000pt;}
.x5_c00225{left:161.040000pt;}
.x6_c00225{left:185.440000pt;}
.x4_c00225{left:386.880000pt;}
.x3_c00225{left:396.880000pt;}
.x1_c00225{left:436.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_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_46b57a5ca93c609928940275.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.100098;font-style:normal;font-weight:normal;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_d9e7aea4e8c0ee894c4e09ef.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;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_c00226;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c00226{vertical-align:-29.880000px;}
.v0_c00226{vertical-align:0.000000px;}
.v1_c00226{vertical-align:15.840000px;}
.v2_c00226{vertical-align:29.880000px;}
.ls12_c00226{letter-spacing:-0.266400px;}
.lse_c00226{letter-spacing:-0.151200px;}
.ls11_c00226{letter-spacing:-0.043200px;}
.ls15_c00226{letter-spacing:-0.036000px;}
.ls10_c00226{letter-spacing:-0.028800px;}
.ls13_c00226{letter-spacing:-0.021600px;}
.ls14_c00226{letter-spacing:-0.014400px;}
.lsf_c00226{letter-spacing:-0.007200px;}
.lsd_c00226{letter-spacing:0.000000px;}
.ls6_c00226{letter-spacing:0.007200px;}
.ls5_c00226{letter-spacing:0.014400px;}
.lsa_c00226{letter-spacing:0.021600px;}
.lsb_c00226{letter-spacing:0.023940px;}
.lsc_c00226{letter-spacing:0.028728px;}
.ls7_c00226{letter-spacing:0.028800px;}
.ls4_c00226{letter-spacing:0.036000px;}
.ls0_c00226{letter-spacing:0.048096px;}
.ls3_c00226{letter-spacing:0.054756px;}
.ls2_c00226{letter-spacing:0.093600px;}
.ls8_c00226{letter-spacing:0.144000px;}
.ls9_c00226{letter-spacing:66.024000px;}
.ls1_c00226{letter-spacing:1212.120000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00226{word-spacing:-18.093600px;}
.ws1_c00226{word-spacing:-10.584756px;}
.ws15_c00226{word-spacing:-0.036000px;}
.ws24_c00226{word-spacing:-0.014364px;}
.ws23_c00226{word-spacing:-0.009576px;}
.ws19_c00226{word-spacing:-0.007200px;}
.ws22_c00226{word-spacing:-0.004788px;}
.ws3_c00226{word-spacing:0.000000px;}
.ws1b_c00226{word-spacing:0.007200px;}
.ws2_c00226{word-spacing:0.042084px;}
.wsc_c00226{word-spacing:0.165600px;}
.ws4_c00226{word-spacing:0.324000px;}
.ws5_c00226{word-spacing:0.352800px;}
.ws6_c00226{word-spacing:0.367200px;}
.ws7_c00226{word-spacing:0.504000px;}
.ws8_c00226{word-spacing:0.640800px;}
.ws1d_c00226{word-spacing:1.785600px;}
.ws1c_c00226{word-spacing:1.800000px;}
.ws12_c00226{word-spacing:3.600000px;}
.ws11_c00226{word-spacing:3.679200px;}
.wsb_c00226{word-spacing:4.651200px;}
.ws9_c00226{word-spacing:4.665600px;}
.wsa_c00226{word-spacing:4.672800px;}
.wsd_c00226{word-spacing:6.487200px;}
.ws20_c00226{word-spacing:7.552800px;}
.ws21_c00226{word-spacing:7.596000px;}
.ws1a_c00226{word-spacing:7.920000px;}
.ws1f_c00226{word-spacing:10.044000px;}
.ws18_c00226{word-spacing:10.101600px;}
.ws1e_c00226{word-spacing:10.173600px;}
.ws16_c00226{word-spacing:10.778400px;}
.ws17_c00226{word-spacing:10.821600px;}
.wsf_c00226{word-spacing:19.022400px;}
.ws14_c00226{word-spacing:19.044000px;}
.ws10_c00226{word-spacing:19.108800px;}
.wse_c00226{word-spacing:19.123200px;}
.ws13_c00226{word-spacing:19.166400px;}
._0_c00226{margin-left:-1.322640px;}
._1_c00226{width:1.008000px;}
.fc0_c00226{color:rgb(0,0,0);}
.fs3_c00226{font-size:42.120000px;}
.fs4_c00226{font-size:47.880000px;}
.fs1_c00226{font-size:54.000000px;}
.fs0_c00226{font-size:60.120000px;}
.fs2_c00226{font-size:72.000000px;}
.y0_c00226{bottom:0.000000px;}
.y3_c00226{bottom:57.450450px;}
.y28_c00226{bottom:113.728500px;}
.y27_c00226{bottom:132.090480px;}
.y26_c00226{bottom:150.356700px;}
.y25_c00226{bottom:168.622920px;}
.y24_c00226{bottom:186.984900px;}
.y23_c00226{bottom:205.251120px;}
.y22_c00226{bottom:223.517340px;}
.y21_c00226{bottom:241.879320px;}
.y20_c00226{bottom:260.145540px;}
.y1f_c00226{bottom:278.411760px;}
.y1e_c00226{bottom:296.773740px;}
.y1d_c00226{bottom:315.039960px;}
.y1c_c00226{bottom:333.306180px;}
.y1b_c00226{bottom:351.572400px;}
.y1a_c00226{bottom:369.934380px;}
.y19_c00226{bottom:388.200600px;}
.y18_c00226{bottom:403.410450px;}
.y17_c00226{bottom:424.110450px;}
.y16_c00226{bottom:444.810600px;}
.y15_c00226{bottom:519.960450px;}
.y14_c00226{bottom:554.340450px;}
.y13_c00226{bottom:588.810450px;}
.y12_c00226{bottom:623.190450px;}
.y11_c00226{bottom:666.660600px;}
.y10_c00226{bottom:701.040600px;}
.yf_c00226{bottom:744.510600px;}
.ye_c00226{bottom:778.890600px;}
.yd_c00226{bottom:813.360450px;}
.yc_c00226{bottom:856.740450px;}
.yb_c00226{bottom:891.210450px;}
.ya_c00226{bottom:925.590450px;}
.y9_c00226{bottom:960.060450px;}
.y8_c00226{bottom:994.440450px;}
.y7_c00226{bottom:1037.910450px;}
.y6_c00226{bottom:1072.290450px;}
.y5_c00226{bottom:1106.760450px;}
.y4_c00226{bottom:1141.140450px;}
.y2_c00226{bottom:1177.860450px;}
.y1_c00226{bottom:1196.850450px;}
.h8_c00226{height:47.988281px;}
.h9_c00226{height:49.937344px;}
.h1_c00226{height:50.315273px;}
.h2_c00226{height:56.320312px;}
.h6_c00226{height:60.257812px;}
.h7_c00226{height:65.130220px;}
.h4_c00226{height:65.130820px;}
.h3_c00226{height:72.160312px;}
.h5_c00226{height:75.093750px;}
.h0_c00226{height:1263.000000px;}
.w1_c00226{width:892.500000px;}
.w0_c00226{width:892.830000px;}
.x0_c00226{left:0.000000px;}
.x1_c00226{left:127.620000px;}
.x3_c00226{left:154.440000px;}
.x2_c00226{left:180.720000px;}
.x4_c00226{left:206.910000px;}
@media print{
.v3_c00226{vertical-align:-26.560000pt;}
.v0_c00226{vertical-align:0.000000pt;}
.v1_c00226{vertical-align:14.080000pt;}
.v2_c00226{vertical-align:26.560000pt;}
.ls12_c00226{letter-spacing:-0.236800pt;}
.lse_c00226{letter-spacing:-0.134400pt;}
.ls11_c00226{letter-spacing:-0.038400pt;}
.ls15_c00226{letter-spacing:-0.032000pt;}
.ls10_c00226{letter-spacing:-0.025600pt;}
.ls13_c00226{letter-spacing:-0.019200pt;}
.ls14_c00226{letter-spacing:-0.012800pt;}
.lsf_c00226{letter-spacing:-0.006400pt;}
.lsd_c00226{letter-spacing:0.000000pt;}
.ls6_c00226{letter-spacing:0.006400pt;}
.ls5_c00226{letter-spacing:0.012800pt;}
.lsa_c00226{letter-spacing:0.019200pt;}
.lsb_c00226{letter-spacing:0.021280pt;}
.lsc_c00226{letter-spacing:0.025536pt;}
.ls7_c00226{letter-spacing:0.025600pt;}
.ls4_c00226{letter-spacing:0.032000pt;}
.ls0_c00226{letter-spacing:0.042752pt;}
.ls3_c00226{letter-spacing:0.048672pt;}
.ls2_c00226{letter-spacing:0.083200pt;}
.ls8_c00226{letter-spacing:0.128000pt;}
.ls9_c00226{letter-spacing:58.688000pt;}
.ls1_c00226{letter-spacing:1077.440000pt;}
.ws0_c00226{word-spacing:-16.083200pt;}
.ws1_c00226{word-spacing:-9.408672pt;}
.ws15_c00226{word-spacing:-0.032000pt;}
.ws24_c00226{word-spacing:-0.012768pt;}
.ws23_c00226{word-spacing:-0.008512pt;}
.ws19_c00226{word-spacing:-0.006400pt;}
.ws22_c00226{word-spacing:-0.004256pt;}
.ws3_c00226{word-spacing:0.000000pt;}
.ws1b_c00226{word-spacing:0.006400pt;}
.ws2_c00226{word-spacing:0.037408pt;}
.wsc_c00226{word-spacing:0.147200pt;}
.ws4_c00226{word-spacing:0.288000pt;}
.ws5_c00226{word-spacing:0.313600pt;}
.ws6_c00226{word-spacing:0.326400pt;}
.ws7_c00226{word-spacing:0.448000pt;}
.ws8_c00226{word-spacing:0.569600pt;}
.ws1d_c00226{word-spacing:1.587200pt;}
.ws1c_c00226{word-spacing:1.600000pt;}
.ws12_c00226{word-spacing:3.200000pt;}
.ws11_c00226{word-spacing:3.270400pt;}
.wsb_c00226{word-spacing:4.134400pt;}
.ws9_c00226{word-spacing:4.147200pt;}
.wsa_c00226{word-spacing:4.153600pt;}
.wsd_c00226{word-spacing:5.766400pt;}
.ws20_c00226{word-spacing:6.713600pt;}
.ws21_c00226{word-spacing:6.752000pt;}
.ws1a_c00226{word-spacing:7.040000pt;}
.ws1f_c00226{word-spacing:8.928000pt;}
.ws18_c00226{word-spacing:8.979200pt;}
.ws1e_c00226{word-spacing:9.043200pt;}
.ws16_c00226{word-spacing:9.580800pt;}
.ws17_c00226{word-spacing:9.619200pt;}
.wsf_c00226{word-spacing:16.908800pt;}
.ws14_c00226{word-spacing:16.928000pt;}
.ws10_c00226{word-spacing:16.985600pt;}
.wse_c00226{word-spacing:16.998400pt;}
.ws13_c00226{word-spacing:17.036800pt;}
._0_c00226{margin-left:-1.175680pt;}
._1_c00226{width:0.896000pt;}
.fs3_c00226{font-size:37.440000pt;}
.fs4_c00226{font-size:42.560000pt;}
.fs1_c00226{font-size:48.000000pt;}
.fs0_c00226{font-size:53.440000pt;}
.fs2_c00226{font-size:64.000000pt;}
.y0_c00226{bottom:0.000000pt;}
.y3_c00226{bottom:51.067067pt;}
.y28_c00226{bottom:101.092000pt;}
.y27_c00226{bottom:117.413760pt;}
.y26_c00226{bottom:133.650400pt;}
.y25_c00226{bottom:149.887040pt;}
.y24_c00226{bottom:166.208800pt;}
.y23_c00226{bottom:182.445440pt;}
.y22_c00226{bottom:198.682080pt;}
.y21_c00226{bottom:215.003840pt;}
.y20_c00226{bottom:231.240480pt;}
.y1f_c00226{bottom:247.477120pt;}
.y1e_c00226{bottom:263.798880pt;}
.y1d_c00226{bottom:280.035520pt;}
.y1c_c00226{bottom:296.272160pt;}
.y1b_c00226{bottom:312.508800pt;}
.y1a_c00226{bottom:328.830560pt;}
.y19_c00226{bottom:345.067200pt;}
.y18_c00226{bottom:358.587067pt;}
.y17_c00226{bottom:376.987067pt;}
.y16_c00226{bottom:395.387200pt;}
.y15_c00226{bottom:462.187067pt;}
.y14_c00226{bottom:492.747067pt;}
.y13_c00226{bottom:523.387067pt;}
.y12_c00226{bottom:553.947067pt;}
.y11_c00226{bottom:592.587200pt;}
.y10_c00226{bottom:623.147200pt;}
.yf_c00226{bottom:661.787200pt;}
.ye_c00226{bottom:692.347200pt;}
.yd_c00226{bottom:722.987067pt;}
.yc_c00226{bottom:761.547067pt;}
.yb_c00226{bottom:792.187067pt;}
.ya_c00226{bottom:822.747067pt;}
.y9_c00226{bottom:853.387067pt;}
.y8_c00226{bottom:883.947067pt;}
.y7_c00226{bottom:922.587067pt;}
.y6_c00226{bottom:953.147067pt;}
.y5_c00226{bottom:983.787067pt;}
.y4_c00226{bottom:1014.347067pt;}
.y2_c00226{bottom:1046.987067pt;}
.y1_c00226{bottom:1063.867067pt;}
.h8_c00226{height:42.656250pt;}
.h9_c00226{height:44.388750pt;}
.h1_c00226{height:44.724687pt;}
.h2_c00226{height:50.062500pt;}
.h6_c00226{height:53.562500pt;}
.h7_c00226{height:57.893529pt;}
.h4_c00226{height:57.894063pt;}
.h3_c00226{height:64.142500pt;}
.h5_c00226{height:66.750000pt;}
.h0_c00226{height:1122.666667pt;}
.w1_c00226{width:793.333333pt;}
.w0_c00226{width:793.626667pt;}
.x0_c00226{left:0.000000pt;}
.x1_c00226{left:113.440000pt;}
.x3_c00226{left:137.280000pt;}
.x2_c00226{left:160.640000pt;}
.x4_c00226{left:183.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_001c9f375b0d6b32d86891e5.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00227;src:url('chunks/assets/font_fcbef09452479e279329dd3b.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;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;}
.m1_c00227{transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);}
.m2_c00227{transform:matrix(0.249021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249021,0.000000,0.000000,0.250000,0,0);}
.m0_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00227{vertical-align:-15.120000px;}
.v0_c00227{vertical-align:0.000000px;}
.v2_c00227{vertical-align:15.120000px;}
.v1_c00227{vertical-align:29.880000px;}
.ls18_c00227{letter-spacing:-1.344117px;}
.ls17_c00227{letter-spacing:-1.066608px;}
.ls16_c00227{letter-spacing:-0.701591px;}
.ls10_c00227{letter-spacing:-0.151200px;}
.ls13_c00227{letter-spacing:-0.021600px;}
.ls15_c00227{letter-spacing:-0.014400px;}
.ls1e_c00227{letter-spacing:-0.012024px;}
.ls11_c00227{letter-spacing:-0.007200px;}
.lsf_c00227{letter-spacing:0.000000px;}
.lsc_c00227{letter-spacing:0.004788px;}
.ls4_c00227{letter-spacing:0.007200px;}
.ls12_c00227{letter-spacing:0.014400px;}
.ls6_c00227{letter-spacing:0.021060px;}
.ls5_c00227{letter-spacing:0.021600px;}
.ls9_c00227{letter-spacing:0.028728px;}
.lse_c00227{letter-spacing:0.033516px;}
.ls0_c00227{letter-spacing:0.036072px;}
.lsb_c00227{letter-spacing:0.038304px;}
.lsa_c00227{letter-spacing:0.047880px;}
.lsd_c00227{letter-spacing:0.052668px;}
.ls3_c00227{letter-spacing:0.054756px;}
.ls14_c00227{letter-spacing:0.093600px;}
.ls8_c00227{letter-spacing:0.136080px;}
.ls1_c00227{letter-spacing:0.144000px;}
.ls1b_c00227{letter-spacing:1.545042px;}
.ls1d_c00227{letter-spacing:1.628183px;}
.ls1a_c00227{letter-spacing:1.648969px;}
.ls7_c00227{letter-spacing:1.662826px;}
.ls19_c00227{letter-spacing:1.711325px;}
.ls1c_c00227{letter-spacing:1.745967px;}
.ls2_c00227{letter-spacing:66.024000px;}
.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;}
}
.ws2_c00227{word-spacing:-12.476943px;}
.ws1_c00227{word-spacing:-12.111926px;}
.ws0_c00227{word-spacing:-10.584756px;}
.ws3_c00227{word-spacing:-9.856080px;}
.ws22_c00227{word-spacing:-2.923802px;}
.ws1f_c00227{word-spacing:-2.889159px;}
.ws1e_c00227{word-spacing:-2.840660px;}
.ws23_c00227{word-spacing:-2.806018px;}
.ws21_c00227{word-spacing:-2.722877px;}
.ws20_c00227{word-spacing:-2.466525px;}
.ws4_c00227{word-spacing:-0.306612px;}
.ws25_c00227{word-spacing:-0.258516px;}
.ws1c_c00227{word-spacing:-0.109512px;}
.wsd_c00227{word-spacing:-0.093600px;}
.ws2d_c00227{word-spacing:-0.033516px;}
.ws2e_c00227{word-spacing:-0.014364px;}
.ws28_c00227{word-spacing:-0.009576px;}
.ws5_c00227{word-spacing:0.000000px;}
.wsc_c00227{word-spacing:0.007200px;}
.ws2c_c00227{word-spacing:0.014364px;}
.ws1b_c00227{word-spacing:0.086400px;}
.ws24_c00227{word-spacing:0.090180px;}
.ws1d_c00227{word-spacing:0.526561px;}
.wsa_c00227{word-spacing:0.727200px;}
.wsb_c00227{word-spacing:0.828000px;}
.ws26_c00227{word-spacing:1.389600px;}
.ws27_c00227{word-spacing:1.447200px;}
.ws2a_c00227{word-spacing:2.130660px;}
.ws2b_c00227{word-spacing:2.140236px;}
.ws29_c00227{word-spacing:2.145024px;}
.wse_c00227{word-spacing:2.455200px;}
.wsf_c00227{word-spacing:2.541600px;}
.ws9_c00227{word-spacing:3.996000px;}
.ws8_c00227{word-spacing:4.017600px;}
.ws15_c00227{word-spacing:5.738400px;}
.ws14_c00227{word-spacing:5.752800px;}
.ws10_c00227{word-spacing:6.760800px;}
.ws11_c00227{word-spacing:6.861600px;}
.ws16_c00227{word-spacing:7.142400px;}
.ws17_c00227{word-spacing:7.221600px;}
.ws13_c00227{word-spacing:11.160000px;}
.ws12_c00227{word-spacing:13.312800px;}
.ws18_c00227{word-spacing:15.818400px;}
.ws19_c00227{word-spacing:15.825600px;}
.ws6_c00227{word-spacing:16.920000px;}
.ws7_c00227{word-spacing:16.992000px;}
.ws1a_c00227{word-spacing:29.908800px;}
._2_c00227{margin-left:-402.485714px;}
._6_c00227{margin-left:-4.269798px;}
._4_c00227{margin-left:-3.256367px;}
._5_c00227{margin-left:-2.217101px;}
._0_c00227{margin-left:-1.022040px;}
._1_c00227{width:1.152000px;}
._3_c00227{width:2.494238px;}
.fc0_c00227{color:rgb(0,0,0);}
.fs6_c00227{font-size:38.880000px;}
.fs3_c00227{font-size:42.120000px;}
.fs4_c00227{font-size:47.404800px;}
.fs7_c00227{font-size:47.880000px;}
.fs2_c00227{font-size:54.000000px;}
.fs0_c00227{font-size:60.120000px;}
.fs5_c00227{font-size:69.284400px;}
.fs1_c00227{font-size:72.000000px;}
.y0_c00227{bottom:0.000000px;}
.y3_c00227{bottom:57.450450px;}
.y4_c00227{bottom:61.410450px;}
.y29_c00227{bottom:113.706750px;}
.y28_c00227{bottom:132.068730px;}
.y27_c00227{bottom:145.834230px;}
.y26_c00227{bottom:164.100450px;}
.y25_c00227{bottom:179.310600px;}
.y24_c00227{bottom:200.010600px;}
.y23_c00227{bottom:220.710450px;}
.y22_c00227{bottom:298.380450px;}
.y21_c00227{bottom:332.850450px;}
.y20_c00227{bottom:382.080600px;}
.y1f_c00227{bottom:395.040600px;}
.y1e_c00227{bottom:421.500600px;}
.y15_c00227{bottom:422.751522px;}
.y16_c00227{bottom:459.205813px;}
.y1d_c00227{bottom:459.750450px;}
.y14_c00227{bottom:477.385554px;}
.y1c_c00227{bottom:498.090600px;}
.y1b_c00227{bottom:535.440450px;}
.y13_c00227{bottom:545.790680px;}
.y1a_c00227{bottom:573.780450px;}
.y19_c00227{bottom:612.030450px;}
.y17_c00227{bottom:614.183956px;}
.y12_c00227{bottom:644.250450px;}
.y18_c00227{bottom:650.370450px;}
.y11_c00227{bottom:710.040450px;}
.y10_c00227{bottom:744.510450px;}
.yf_c00227{bottom:778.890450px;}
.ye_c00227{bottom:813.360450px;}
.yd_c00227{bottom:847.740450px;}
.yc_c00227{bottom:882.210450px;}
.yb_c00227{bottom:916.590450px;}
.ya_c00227{bottom:951.060450px;}
.y9_c00227{bottom:985.440450px;}
.y8_c00227{bottom:1037.910450px;}
.y7_c00227{bottom:1072.290450px;}
.y6_c00227{bottom:1106.760450px;}
.y5_c00227{bottom:1141.140450px;}
.y2_c00227{bottom:1173.810450px;}
.y1_c00227{bottom:1196.850450px;}
.h2_c00227{height:47.988281px;}
.h9_c00227{height:47.988881px;}
.h7_c00227{height:49.441725px;}
.ha_c00227{height:49.937344px;}
.h1_c00227{height:50.315273px;}
.h3_c00227{height:56.320312px;}
.h5_c00227{height:60.257812px;}
.h6_c00227{height:65.130820px;}
.h8_c00227{height:72.261464px;}
.h4_c00227{height:75.093750px;}
.h0_c00227{height:1263.000000px;}
.w1_c00227{width:892.500000px;}
.w0_c00227{width:892.830000px;}
.x0_c00227{left:0.000000px;}
.x2_c00227{left:127.620000px;}
.xc_c00227{left:144.815019px;}
.x5_c00227{left:154.440000px;}
.xb_c00227{left:162.994257px;}
.x6_c00227{left:181.170000px;}
.xf_c00227{left:266.940000px;}
.xa_c00227{left:304.650657px;}
.x7_c00227{left:348.210000px;}
.x9_c00227{left:370.084109px;}
.x8_c00227{left:388.168909px;}
.x4_c00227{left:435.240000px;}
.x3_c00227{left:446.490000px;}
.x1_c00227{left:490.770000px;}
.xd_c00227{left:512.640000px;}
.xe_c00227{left:829.440000px;}
@media print{
.v3_c00227{vertical-align:-13.440000pt;}
.v0_c00227{vertical-align:0.000000pt;}
.v2_c00227{vertical-align:13.440000pt;}
.v1_c00227{vertical-align:26.560000pt;}
.ls18_c00227{letter-spacing:-1.194771pt;}
.ls17_c00227{letter-spacing:-0.948096pt;}
.ls16_c00227{letter-spacing:-0.623636pt;}
.ls10_c00227{letter-spacing:-0.134400pt;}
.ls13_c00227{letter-spacing:-0.019200pt;}
.ls15_c00227{letter-spacing:-0.012800pt;}
.ls1e_c00227{letter-spacing:-0.010688pt;}
.ls11_c00227{letter-spacing:-0.006400pt;}
.lsf_c00227{letter-spacing:0.000000pt;}
.lsc_c00227{letter-spacing:0.004256pt;}
.ls4_c00227{letter-spacing:0.006400pt;}
.ls12_c00227{letter-spacing:0.012800pt;}
.ls6_c00227{letter-spacing:0.018720pt;}
.ls5_c00227{letter-spacing:0.019200pt;}
.ls9_c00227{letter-spacing:0.025536pt;}
.lse_c00227{letter-spacing:0.029792pt;}
.ls0_c00227{letter-spacing:0.032064pt;}
.lsb_c00227{letter-spacing:0.034048pt;}
.lsa_c00227{letter-spacing:0.042560pt;}
.lsd_c00227{letter-spacing:0.046816pt;}
.ls3_c00227{letter-spacing:0.048672pt;}
.ls14_c00227{letter-spacing:0.083200pt;}
.ls8_c00227{letter-spacing:0.120960pt;}
.ls1_c00227{letter-spacing:0.128000pt;}
.ls1b_c00227{letter-spacing:1.373371pt;}
.ls1d_c00227{letter-spacing:1.447274pt;}
.ls1a_c00227{letter-spacing:1.465750pt;}
.ls7_c00227{letter-spacing:1.478067pt;}
.ls19_c00227{letter-spacing:1.521177pt;}
.ls1c_c00227{letter-spacing:1.551971pt;}
.ls2_c00227{letter-spacing:58.688000pt;}
.ws2_c00227{word-spacing:-11.090616pt;}
.ws1_c00227{word-spacing:-10.766157pt;}
.ws0_c00227{word-spacing:-9.408672pt;}
.ws3_c00227{word-spacing:-8.760960pt;}
.ws22_c00227{word-spacing:-2.598935pt;}
.ws1f_c00227{word-spacing:-2.568142pt;}
.ws1e_c00227{word-spacing:-2.525031pt;}
.ws23_c00227{word-spacing:-2.494238pt;}
.ws21_c00227{word-spacing:-2.420335pt;}
.ws20_c00227{word-spacing:-2.192466pt;}
.ws4_c00227{word-spacing:-0.272544pt;}
.ws25_c00227{word-spacing:-0.229792pt;}
.ws1c_c00227{word-spacing:-0.097344pt;}
.wsd_c00227{word-spacing:-0.083200pt;}
.ws2d_c00227{word-spacing:-0.029792pt;}
.ws2e_c00227{word-spacing:-0.012768pt;}
.ws28_c00227{word-spacing:-0.008512pt;}
.ws5_c00227{word-spacing:0.000000pt;}
.wsc_c00227{word-spacing:0.006400pt;}
.ws2c_c00227{word-spacing:0.012768pt;}
.ws1b_c00227{word-spacing:0.076800pt;}
.ws24_c00227{word-spacing:0.080160pt;}
.ws1d_c00227{word-spacing:0.468055pt;}
.wsa_c00227{word-spacing:0.646400pt;}
.wsb_c00227{word-spacing:0.736000pt;}
.ws26_c00227{word-spacing:1.235200pt;}
.ws27_c00227{word-spacing:1.286400pt;}
.ws2a_c00227{word-spacing:1.893920pt;}
.ws2b_c00227{word-spacing:1.902432pt;}
.ws29_c00227{word-spacing:1.906688pt;}
.wse_c00227{word-spacing:2.182400pt;}
.wsf_c00227{word-spacing:2.259200pt;}
.ws9_c00227{word-spacing:3.552000pt;}
.ws8_c00227{word-spacing:3.571200pt;}
.ws15_c00227{word-spacing:5.100800pt;}
.ws14_c00227{word-spacing:5.113600pt;}
.ws10_c00227{word-spacing:6.009600pt;}
.ws11_c00227{word-spacing:6.099200pt;}
.ws16_c00227{word-spacing:6.348800pt;}
.ws17_c00227{word-spacing:6.419200pt;}
.ws13_c00227{word-spacing:9.920000pt;}
.ws12_c00227{word-spacing:11.833600pt;}
.ws18_c00227{word-spacing:14.060800pt;}
.ws19_c00227{word-spacing:14.067200pt;}
.ws6_c00227{word-spacing:15.040000pt;}
.ws7_c00227{word-spacing:15.104000pt;}
.ws1a_c00227{word-spacing:26.585600pt;}
._2_c00227{margin-left:-357.765079pt;}
._6_c00227{margin-left:-3.795376pt;}
._4_c00227{margin-left:-2.894548pt;}
._5_c00227{margin-left:-1.970756pt;}
._0_c00227{margin-left:-0.908480pt;}
._1_c00227{width:1.024000pt;}
._3_c00227{width:2.217101pt;}
.fs6_c00227{font-size:34.560000pt;}
.fs3_c00227{font-size:37.440000pt;}
.fs4_c00227{font-size:42.137600pt;}
.fs7_c00227{font-size:42.560000pt;}
.fs2_c00227{font-size:48.000000pt;}
.fs0_c00227{font-size:53.440000pt;}
.fs5_c00227{font-size:61.586133pt;}
.fs1_c00227{font-size:64.000000pt;}
.y0_c00227{bottom:0.000000pt;}
.y3_c00227{bottom:51.067067pt;}
.y4_c00227{bottom:54.587067pt;}
.y29_c00227{bottom:101.072667pt;}
.y28_c00227{bottom:117.394427pt;}
.y27_c00227{bottom:129.630427pt;}
.y26_c00227{bottom:145.867067pt;}
.y25_c00227{bottom:159.387200pt;}
.y24_c00227{bottom:177.787200pt;}
.y23_c00227{bottom:196.187067pt;}
.y22_c00227{bottom:265.227067pt;}
.y21_c00227{bottom:295.867067pt;}
.y20_c00227{bottom:339.627200pt;}
.y1f_c00227{bottom:351.147200pt;}
.y1e_c00227{bottom:374.667200pt;}
.y15_c00227{bottom:375.779131pt;}
.y16_c00227{bottom:408.182945pt;}
.y1d_c00227{bottom:408.667067pt;}
.y14_c00227{bottom:424.342715pt;}
.y1c_c00227{bottom:442.747200pt;}
.y1b_c00227{bottom:475.947067pt;}
.y13_c00227{bottom:485.147271pt;}
.y1a_c00227{bottom:510.027067pt;}
.y19_c00227{bottom:544.027067pt;}
.y17_c00227{bottom:545.941294pt;}
.y12_c00227{bottom:572.667067pt;}
.y18_c00227{bottom:578.107067pt;}
.y11_c00227{bottom:631.147067pt;}
.y10_c00227{bottom:661.787067pt;}
.yf_c00227{bottom:692.347067pt;}
.ye_c00227{bottom:722.987067pt;}
.yd_c00227{bottom:753.547067pt;}
.yc_c00227{bottom:784.187067pt;}
.yb_c00227{bottom:814.747067pt;}
.ya_c00227{bottom:845.387067pt;}
.y9_c00227{bottom:875.947067pt;}
.y8_c00227{bottom:922.587067pt;}
.y7_c00227{bottom:953.147067pt;}
.y6_c00227{bottom:983.787067pt;}
.y5_c00227{bottom:1014.347067pt;}
.y2_c00227{bottom:1043.387067pt;}
.y1_c00227{bottom:1063.867067pt;}
.h2_c00227{height:42.656250pt;}
.h9_c00227{height:42.656783pt;}
.h7_c00227{height:43.948200pt;}
.ha_c00227{height:44.388750pt;}
.h1_c00227{height:44.724687pt;}
.h3_c00227{height:50.062500pt;}
.h5_c00227{height:53.562500pt;}
.h6_c00227{height:57.894063pt;}
.h8_c00227{height:64.232413pt;}
.h4_c00227{height:66.750000pt;}
.h0_c00227{height:1122.666667pt;}
.w1_c00227{width:793.333333pt;}
.w0_c00227{width:793.626667pt;}
.x0_c00227{left:0.000000pt;}
.x2_c00227{left:113.440000pt;}
.xc_c00227{left:128.724461pt;}
.x5_c00227{left:137.280000pt;}
.xb_c00227{left:144.883784pt;}
.x6_c00227{left:161.040000pt;}
.xf_c00227{left:237.280000pt;}
.xa_c00227{left:270.800584pt;}
.x7_c00227{left:309.520000pt;}
.x9_c00227{left:328.963653pt;}
.x8_c00227{left:345.039031pt;}
.x4_c00227{left:386.880000pt;}
.x3_c00227{left:396.880000pt;}
.x1_c00227{left:436.240000pt;}
.xd_c00227{left:455.680000pt;}
.xe_c00227{left:737.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_9fd05ba182aba28426cf4e5e.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.100098;font-style:normal;font-weight:normal;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_8ddb71e16b816ef31481271f.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;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_c00228;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c00228{vertical-align:-29.880000px;}
.v0_c00228{vertical-align:0.000000px;}
.v1_c00228{vertical-align:15.840000px;}
.v2_c00228{vertical-align:29.880000px;}
.lsd_c00228{letter-spacing:-0.151200px;}
.ls14_c00228{letter-spacing:-0.057600px;}
.ls11_c00228{letter-spacing:-0.036000px;}
.lsf_c00228{letter-spacing:-0.028800px;}
.ls10_c00228{letter-spacing:-0.021600px;}
.ls12_c00228{letter-spacing:-0.014400px;}
.lse_c00228{letter-spacing:-0.007200px;}
.lsc_c00228{letter-spacing:0.000000px;}
.ls4_c00228{letter-spacing:0.007200px;}
.ls5_c00228{letter-spacing:0.014400px;}
.lsb_c00228{letter-spacing:0.019152px;}
.ls6_c00228{letter-spacing:0.021600px;}
.lsa_c00228{letter-spacing:0.023940px;}
.ls9_c00228{letter-spacing:0.028728px;}
.ls8_c00228{letter-spacing:0.028800px;}
.ls0_c00228{letter-spacing:0.048096px;}
.ls7_c00228{letter-spacing:0.054756px;}
.ls13_c00228{letter-spacing:0.093600px;}
.ls2_c00228{letter-spacing:0.144000px;}
.ls3_c00228{letter-spacing:66.024000px;}
.ls1_c00228{letter-spacing:1212.120000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00228{word-spacing:-10.584756px;}
.wsf_c00228{word-spacing:-0.072000px;}
.ws1b_c00228{word-spacing:-0.028800px;}
.ws5_c00228{word-spacing:-0.021600px;}
.wsa_c00228{word-spacing:-0.014400px;}
.ws22_c00228{word-spacing:-0.009576px;}
.wsb_c00228{word-spacing:-0.007200px;}
.ws23_c00228{word-spacing:-0.004788px;}
.ws2_c00228{word-spacing:0.000000px;}
.ws1c_c00228{word-spacing:0.007200px;}
.ws1_c00228{word-spacing:0.042084px;}
.ws13_c00228{word-spacing:0.050400px;}
.wse_c00228{word-spacing:0.115200px;}
.ws1d_c00228{word-spacing:0.360000px;}
.ws20_c00228{word-spacing:3.571200px;}
.ws21_c00228{word-spacing:3.657600px;}
.ws1f_c00228{word-spacing:3.686400px;}
.ws14_c00228{word-spacing:4.341600px;}
.ws1a_c00228{word-spacing:6.091200px;}
.ws19_c00228{word-spacing:6.098400px;}
.ws17_c00228{word-spacing:6.105600px;}
.ws18_c00228{word-spacing:6.127200px;}
.ws15_c00228{word-spacing:6.876000px;}
.ws7_c00228{word-spacing:13.312800px;}
.ws6_c00228{word-spacing:13.327200px;}
.wsd_c00228{word-spacing:14.356800px;}
.wsc_c00228{word-spacing:14.428800px;}
.ws3_c00228{word-spacing:15.408000px;}
.ws4_c00228{word-spacing:15.480000px;}
.ws10_c00228{word-spacing:15.840000px;}
.ws11_c00228{word-spacing:15.883200px;}
.ws9_c00228{word-spacing:16.207200px;}
.ws8_c00228{word-spacing:16.228800px;}
.ws12_c00228{word-spacing:17.719200px;}
.ws16_c00228{word-spacing:19.094400px;}
.ws1e_c00228{word-spacing:26.668800px;}
._0_c00228{margin-left:-1.322640px;}
._1_c00228{width:1.281600px;}
.fc0_c00228{color:rgb(0,0,0);}
.fs3_c00228{font-size:42.120000px;}
.fs4_c00228{font-size:47.880000px;}
.fs1_c00228{font-size:54.000000px;}
.fs0_c00228{font-size:60.120000px;}
.fs2_c00228{font-size:72.000000px;}
.y0_c00228{bottom:0.000000px;}
.y3_c00228{bottom:57.450450px;}
.y24_c00228{bottom:113.713410px;}
.y23_c00228{bottom:132.075390px;}
.y22_c00228{bottom:150.341610px;}
.y21_c00228{bottom:168.607830px;}
.y20_c00228{bottom:186.969810px;}
.y1f_c00228{bottom:205.236030px;}
.y1e_c00228{bottom:223.502250px;}
.y1d_c00228{bottom:241.864230px;}
.y1c_c00228{bottom:260.130450px;}
.y1b_c00228{bottom:275.340450px;}
.y1a_c00228{bottom:296.040450px;}
.y19_c00228{bottom:316.740450px;}
.y18_c00228{bottom:398.640600px;}
.y17_c00228{bottom:433.110600px;}
.y16_c00228{bottom:467.490600px;}
.y15_c00228{bottom:510.960450px;}
.y14_c00228{bottom:545.340450px;}
.y13_c00228{bottom:579.810450px;}
.y12_c00228{bottom:623.190450px;}
.y11_c00228{bottom:657.660450px;}
.y10_c00228{bottom:692.040450px;}
.yf_c00228{bottom:735.510450px;}
.ye_c00228{bottom:769.890450px;}
.yd_c00228{bottom:804.360450px;}
.yc_c00228{bottom:847.740450px;}
.yb_c00228{bottom:882.210450px;}
.ya_c00228{bottom:916.590450px;}
.y9_c00228{bottom:951.060450px;}
.y8_c00228{bottom:994.440450px;}
.y7_c00228{bottom:1028.910450px;}
.y6_c00228{bottom:1063.290450px;}
.y5_c00228{bottom:1106.760450px;}
.y4_c00228{bottom:1141.140450px;}
.y2_c00228{bottom:1177.860450px;}
.y1_c00228{bottom:1196.850450px;}
.h8_c00228{height:47.988281px;}
.h9_c00228{height:49.937344px;}
.h1_c00228{height:50.315273px;}
.h2_c00228{height:56.320312px;}
.h5_c00228{height:60.257812px;}
.h6_c00228{height:65.130820px;}
.h7_c00228{height:65.131420px;}
.h3_c00228{height:72.160312px;}
.h4_c00228{height:75.093750px;}
.h0_c00228{height:1263.000000px;}
.w1_c00228{width:892.500000px;}
.w0_c00228{width:892.830000px;}
.x0_c00228{left:0.000000px;}
.x1_c00228{left:127.620000px;}
.x2_c00228{left:154.440000px;}
.x3_c00228{left:181.170000px;}
@media print{
.v3_c00228{vertical-align:-26.560000pt;}
.v0_c00228{vertical-align:0.000000pt;}
.v1_c00228{vertical-align:14.080000pt;}
.v2_c00228{vertical-align:26.560000pt;}
.lsd_c00228{letter-spacing:-0.134400pt;}
.ls14_c00228{letter-spacing:-0.051200pt;}
.ls11_c00228{letter-spacing:-0.032000pt;}
.lsf_c00228{letter-spacing:-0.025600pt;}
.ls10_c00228{letter-spacing:-0.019200pt;}
.ls12_c00228{letter-spacing:-0.012800pt;}
.lse_c00228{letter-spacing:-0.006400pt;}
.lsc_c00228{letter-spacing:0.000000pt;}
.ls4_c00228{letter-spacing:0.006400pt;}
.ls5_c00228{letter-spacing:0.012800pt;}
.lsb_c00228{letter-spacing:0.017024pt;}
.ls6_c00228{letter-spacing:0.019200pt;}
.lsa_c00228{letter-spacing:0.021280pt;}
.ls9_c00228{letter-spacing:0.025536pt;}
.ls8_c00228{letter-spacing:0.025600pt;}
.ls0_c00228{letter-spacing:0.042752pt;}
.ls7_c00228{letter-spacing:0.048672pt;}
.ls13_c00228{letter-spacing:0.083200pt;}
.ls2_c00228{letter-spacing:0.128000pt;}
.ls3_c00228{letter-spacing:58.688000pt;}
.ls1_c00228{letter-spacing:1077.440000pt;}
.ws0_c00228{word-spacing:-9.408672pt;}
.wsf_c00228{word-spacing:-0.064000pt;}
.ws1b_c00228{word-spacing:-0.025600pt;}
.ws5_c00228{word-spacing:-0.019200pt;}
.wsa_c00228{word-spacing:-0.012800pt;}
.ws22_c00228{word-spacing:-0.008512pt;}
.wsb_c00228{word-spacing:-0.006400pt;}
.ws23_c00228{word-spacing:-0.004256pt;}
.ws2_c00228{word-spacing:0.000000pt;}
.ws1c_c00228{word-spacing:0.006400pt;}
.ws1_c00228{word-spacing:0.037408pt;}
.ws13_c00228{word-spacing:0.044800pt;}
.wse_c00228{word-spacing:0.102400pt;}
.ws1d_c00228{word-spacing:0.320000pt;}
.ws20_c00228{word-spacing:3.174400pt;}
.ws21_c00228{word-spacing:3.251200pt;}
.ws1f_c00228{word-spacing:3.276800pt;}
.ws14_c00228{word-spacing:3.859200pt;}
.ws1a_c00228{word-spacing:5.414400pt;}
.ws19_c00228{word-spacing:5.420800pt;}
.ws17_c00228{word-spacing:5.427200pt;}
.ws18_c00228{word-spacing:5.446400pt;}
.ws15_c00228{word-spacing:6.112000pt;}
.ws7_c00228{word-spacing:11.833600pt;}
.ws6_c00228{word-spacing:11.846400pt;}
.wsd_c00228{word-spacing:12.761600pt;}
.wsc_c00228{word-spacing:12.825600pt;}
.ws3_c00228{word-spacing:13.696000pt;}
.ws4_c00228{word-spacing:13.760000pt;}
.ws10_c00228{word-spacing:14.080000pt;}
.ws11_c00228{word-spacing:14.118400pt;}
.ws9_c00228{word-spacing:14.406400pt;}
.ws8_c00228{word-spacing:14.425600pt;}
.ws12_c00228{word-spacing:15.750400pt;}
.ws16_c00228{word-spacing:16.972800pt;}
.ws1e_c00228{word-spacing:23.705600pt;}
._0_c00228{margin-left:-1.175680pt;}
._1_c00228{width:1.139200pt;}
.fs3_c00228{font-size:37.440000pt;}
.fs4_c00228{font-size:42.560000pt;}
.fs1_c00228{font-size:48.000000pt;}
.fs0_c00228{font-size:53.440000pt;}
.fs2_c00228{font-size:64.000000pt;}
.y0_c00228{bottom:0.000000pt;}
.y3_c00228{bottom:51.067067pt;}
.y24_c00228{bottom:101.078587pt;}
.y23_c00228{bottom:117.400347pt;}
.y22_c00228{bottom:133.636987pt;}
.y21_c00228{bottom:149.873627pt;}
.y20_c00228{bottom:166.195387pt;}
.y1f_c00228{bottom:182.432027pt;}
.y1e_c00228{bottom:198.668667pt;}
.y1d_c00228{bottom:214.990427pt;}
.y1c_c00228{bottom:231.227067pt;}
.y1b_c00228{bottom:244.747067pt;}
.y1a_c00228{bottom:263.147067pt;}
.y19_c00228{bottom:281.547067pt;}
.y18_c00228{bottom:354.347200pt;}
.y17_c00228{bottom:384.987200pt;}
.y16_c00228{bottom:415.547200pt;}
.y15_c00228{bottom:454.187067pt;}
.y14_c00228{bottom:484.747067pt;}
.y13_c00228{bottom:515.387067pt;}
.y12_c00228{bottom:553.947067pt;}
.y11_c00228{bottom:584.587067pt;}
.y10_c00228{bottom:615.147067pt;}
.yf_c00228{bottom:653.787067pt;}
.ye_c00228{bottom:684.347067pt;}
.yd_c00228{bottom:714.987067pt;}
.yc_c00228{bottom:753.547067pt;}
.yb_c00228{bottom:784.187067pt;}
.ya_c00228{bottom:814.747067pt;}
.y9_c00228{bottom:845.387067pt;}
.y8_c00228{bottom:883.947067pt;}
.y7_c00228{bottom:914.587067pt;}
.y6_c00228{bottom:945.147067pt;}
.y5_c00228{bottom:983.787067pt;}
.y4_c00228{bottom:1014.347067pt;}
.y2_c00228{bottom:1046.987067pt;}
.y1_c00228{bottom:1063.867067pt;}
.h8_c00228{height:42.656250pt;}
.h9_c00228{height:44.388750pt;}
.h1_c00228{height:44.724687pt;}
.h2_c00228{height:50.062500pt;}
.h5_c00228{height:53.562500pt;}
.h6_c00228{height:57.894063pt;}
.h7_c00228{height:57.894596pt;}
.h3_c00228{height:64.142500pt;}
.h4_c00228{height:66.750000pt;}
.h0_c00228{height:1122.666667pt;}
.w1_c00228{width:793.333333pt;}
.w0_c00228{width:793.626667pt;}
.x0_c00228{left:0.000000pt;}
.x1_c00228{left:113.440000pt;}
.x2_c00228{left:137.280000pt;}
.x3_c00228{left:161.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_139e7426cb23b2d681e1b8a2.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00229;src:url('chunks/assets/font_26753de4b6eb63fa31d4950b.woff2')format("woff");}.ff3_c00229{font-family:ff3_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);}
.v0_c00229{vertical-align:0.000000px;}
.v1_c00229{vertical-align:29.880000px;}
.lsa_c00229{letter-spacing:-0.151200px;}
.ls13_c00229{letter-spacing:-0.057600px;}
.lsc_c00229{letter-spacing:-0.043200px;}
.lsd_c00229{letter-spacing:-0.036000px;}
.lsb_c00229{letter-spacing:-0.028800px;}
.ls10_c00229{letter-spacing:-0.021600px;}
.lse_c00229{letter-spacing:-0.014400px;}
.ls11_c00229{letter-spacing:-0.007200px;}
.ls9_c00229{letter-spacing:0.000000px;}
.ls1_c00229{letter-spacing:0.007200px;}
.ls5_c00229{letter-spacing:0.014400px;}
.ls8_c00229{letter-spacing:0.019152px;}
.ls12_c00229{letter-spacing:0.021600px;}
.ls6_c00229{letter-spacing:0.023940px;}
.ls7_c00229{letter-spacing:0.028728px;}
.ls0_c00229{letter-spacing:0.036072px;}
.ls2_c00229{letter-spacing:0.054756px;}
.lsf_c00229{letter-spacing:0.093600px;}
.ls3_c00229{letter-spacing:0.144000px;}
.ls4_c00229{letter-spacing:66.024000px;}
.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:-17.992800px;}
.ws2_c00229{word-spacing:-17.942400px;}
.ws0_c00229{word-spacing:-10.584756px;}
.ws3_c00229{word-spacing:-0.306612px;}
.ws20_c00229{word-spacing:-0.014364px;}
.ws1f_c00229{word-spacing:-0.009576px;}
.ws1e_c00229{word-spacing:-0.004788px;}
.ws4_c00229{word-spacing:0.000000px;}
.wsb_c00229{word-spacing:0.014400px;}
.ws16_c00229{word-spacing:0.050400px;}
.ws12_c00229{word-spacing:0.338400px;}
.ws13_c00229{word-spacing:0.381600px;}
.ws1d_c00229{word-spacing:1.476000px;}
.ws18_c00229{word-spacing:2.160000px;}
.wsf_c00229{word-spacing:3.592800px;}
.wse_c00229{word-spacing:3.614400px;}
.ws6_c00229{word-spacing:3.888000px;}
.ws5_c00229{word-spacing:3.952800px;}
.ws7_c00229{word-spacing:5.320800px;}
.ws9_c00229{word-spacing:5.400000px;}
.ws17_c00229{word-spacing:5.414400px;}
.wsc_c00229{word-spacing:5.436000px;}
.ws8_c00229{word-spacing:5.443200px;}
.wsa_c00229{word-spacing:5.472000px;}
.ws11_c00229{word-spacing:5.781600px;}
.ws10_c00229{word-spacing:5.788800px;}
.ws19_c00229{word-spacing:5.839200px;}
.ws1a_c00229{word-spacing:5.882400px;}
.wsd_c00229{word-spacing:10.785600px;}
.ws15_c00229{word-spacing:12.607200px;}
.ws14_c00229{word-spacing:12.657600px;}
.ws1c_c00229{word-spacing:13.744800px;}
.ws1b_c00229{word-spacing:13.780800px;}
._0_c00229{margin-left:-1.022040px;}
._1_c00229{width:1.195200px;}
.fc0_c00229{color:rgb(0,0,0);}
.fs3_c00229{font-size:42.120000px;}
.fs4_c00229{font-size:47.880000px;}
.fs2_c00229{font-size:54.000000px;}
.fs0_c00229{font-size:60.120000px;}
.fs1_c00229{font-size:72.000000px;}
.y0_c00229{bottom:0.000000px;}
.y3_c00229{bottom:57.450450px;}
.y4_c00229{bottom:61.410450px;}
.y27_c00229{bottom:113.718990px;}
.y26_c00229{bottom:132.080970px;}
.y25_c00229{bottom:150.347190px;}
.y24_c00229{bottom:168.613410px;}
.y23_c00229{bottom:186.975390px;}
.y22_c00229{bottom:205.241610px;}
.y21_c00229{bottom:223.507830px;}
.y20_c00229{bottom:241.869810px;}
.y1f_c00229{bottom:260.136030px;}
.y1e_c00229{bottom:278.402250px;}
.y1d_c00229{bottom:296.764230px;}
.y1c_c00229{bottom:315.030450px;}
.y1b_c00229{bottom:330.240450px;}
.y1a_c00229{bottom:350.940450px;}
.y19_c00229{bottom:371.640600px;}
.y18_c00229{bottom:451.110450px;}
.y17_c00229{bottom:485.490450px;}
.y16_c00229{bottom:519.960450px;}
.y15_c00229{bottom:554.340450px;}
.y14_c00229{bottom:597.810450px;}
.y13_c00229{bottom:632.190450px;}
.y12_c00229{bottom:666.660450px;}
.y11_c00229{bottom:710.040450px;}
.y10_c00229{bottom:744.510450px;}
.yf_c00229{bottom:778.890450px;}
.ye_c00229{bottom:813.360450px;}
.yd_c00229{bottom:856.740450px;}
.yc_c00229{bottom:891.210450px;}
.yb_c00229{bottom:925.590450px;}
.ya_c00229{bottom:960.060450px;}
.y9_c00229{bottom:994.440450px;}
.y8_c00229{bottom:1037.910450px;}
.y7_c00229{bottom:1072.290450px;}
.y6_c00229{bottom:1106.760450px;}
.y5_c00229{bottom:1141.140450px;}
.y2_c00229{bottom:1173.810450px;}
.y1_c00229{bottom:1196.850450px;}
.h2_c00229{height:47.988281px;}
.h8_c00229{height:49.937344px;}
.h1_c00229{height:50.315273px;}
.h3_c00229{height:56.320312px;}
.h6_c00229{height:60.257812px;}
.h4_c00229{height:65.130820px;}
.h7_c00229{height:65.131420px;}
.h5_c00229{height:75.093750px;}
.h0_c00229{height:1263.000000px;}
.w1_c00229{width:892.500000px;}
.w0_c00229{width:892.830000px;}
.x0_c00229{left:0.000000px;}
.x2_c00229{left:127.620000px;}
.x6_c00229{left:154.440000px;}
.x5_c00229{left:181.170000px;}
.x4_c00229{left:435.240000px;}
.x3_c00229{left:446.490000px;}
.x1_c00229{left:490.770000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.v1_c00229{vertical-align:26.560000pt;}
.lsa_c00229{letter-spacing:-0.134400pt;}
.ls13_c00229{letter-spacing:-0.051200pt;}
.lsc_c00229{letter-spacing:-0.038400pt;}
.lsd_c00229{letter-spacing:-0.032000pt;}
.lsb_c00229{letter-spacing:-0.025600pt;}
.ls10_c00229{letter-spacing:-0.019200pt;}
.lse_c00229{letter-spacing:-0.012800pt;}
.ls11_c00229{letter-spacing:-0.006400pt;}
.ls9_c00229{letter-spacing:0.000000pt;}
.ls1_c00229{letter-spacing:0.006400pt;}
.ls5_c00229{letter-spacing:0.012800pt;}
.ls8_c00229{letter-spacing:0.017024pt;}
.ls12_c00229{letter-spacing:0.019200pt;}
.ls6_c00229{letter-spacing:0.021280pt;}
.ls7_c00229{letter-spacing:0.025536pt;}
.ls0_c00229{letter-spacing:0.032064pt;}
.ls2_c00229{letter-spacing:0.048672pt;}
.lsf_c00229{letter-spacing:0.083200pt;}
.ls3_c00229{letter-spacing:0.128000pt;}
.ls4_c00229{letter-spacing:58.688000pt;}
.ws1_c00229{word-spacing:-15.993600pt;}
.ws2_c00229{word-spacing:-15.948800pt;}
.ws0_c00229{word-spacing:-9.408672pt;}
.ws3_c00229{word-spacing:-0.272544pt;}
.ws20_c00229{word-spacing:-0.012768pt;}
.ws1f_c00229{word-spacing:-0.008512pt;}
.ws1e_c00229{word-spacing:-0.004256pt;}
.ws4_c00229{word-spacing:0.000000pt;}
.wsb_c00229{word-spacing:0.012800pt;}
.ws16_c00229{word-spacing:0.044800pt;}
.ws12_c00229{word-spacing:0.300800pt;}
.ws13_c00229{word-spacing:0.339200pt;}
.ws1d_c00229{word-spacing:1.312000pt;}
.ws18_c00229{word-spacing:1.920000pt;}
.wsf_c00229{word-spacing:3.193600pt;}
.wse_c00229{word-spacing:3.212800pt;}
.ws6_c00229{word-spacing:3.456000pt;}
.ws5_c00229{word-spacing:3.513600pt;}
.ws7_c00229{word-spacing:4.729600pt;}
.ws9_c00229{word-spacing:4.800000pt;}
.ws17_c00229{word-spacing:4.812800pt;}
.wsc_c00229{word-spacing:4.832000pt;}
.ws8_c00229{word-spacing:4.838400pt;}
.wsa_c00229{word-spacing:4.864000pt;}
.ws11_c00229{word-spacing:5.139200pt;}
.ws10_c00229{word-spacing:5.145600pt;}
.ws19_c00229{word-spacing:5.190400pt;}
.ws1a_c00229{word-spacing:5.228800pt;}
.wsd_c00229{word-spacing:9.587200pt;}
.ws15_c00229{word-spacing:11.206400pt;}
.ws14_c00229{word-spacing:11.251200pt;}
.ws1c_c00229{word-spacing:12.217600pt;}
.ws1b_c00229{word-spacing:12.249600pt;}
._0_c00229{margin-left:-0.908480pt;}
._1_c00229{width:1.062400pt;}
.fs3_c00229{font-size:37.440000pt;}
.fs4_c00229{font-size:42.560000pt;}
.fs2_c00229{font-size:48.000000pt;}
.fs0_c00229{font-size:53.440000pt;}
.fs1_c00229{font-size:64.000000pt;}
.y0_c00229{bottom:0.000000pt;}
.y3_c00229{bottom:51.067067pt;}
.y4_c00229{bottom:54.587067pt;}
.y27_c00229{bottom:101.083547pt;}
.y26_c00229{bottom:117.405307pt;}
.y25_c00229{bottom:133.641947pt;}
.y24_c00229{bottom:149.878587pt;}
.y23_c00229{bottom:166.200347pt;}
.y22_c00229{bottom:182.436987pt;}
.y21_c00229{bottom:198.673627pt;}
.y20_c00229{bottom:214.995387pt;}
.y1f_c00229{bottom:231.232027pt;}
.y1e_c00229{bottom:247.468667pt;}
.y1d_c00229{bottom:263.790427pt;}
.y1c_c00229{bottom:280.027067pt;}
.y1b_c00229{bottom:293.547067pt;}
.y1a_c00229{bottom:311.947067pt;}
.y19_c00229{bottom:330.347200pt;}
.y18_c00229{bottom:400.987067pt;}
.y17_c00229{bottom:431.547067pt;}
.y16_c00229{bottom:462.187067pt;}
.y15_c00229{bottom:492.747067pt;}
.y14_c00229{bottom:531.387067pt;}
.y13_c00229{bottom:561.947067pt;}
.y12_c00229{bottom:592.587067pt;}
.y11_c00229{bottom:631.147067pt;}
.y10_c00229{bottom:661.787067pt;}
.yf_c00229{bottom:692.347067pt;}
.ye_c00229{bottom:722.987067pt;}
.yd_c00229{bottom:761.547067pt;}
.yc_c00229{bottom:792.187067pt;}
.yb_c00229{bottom:822.747067pt;}
.ya_c00229{bottom:853.387067pt;}
.y9_c00229{bottom:883.947067pt;}
.y8_c00229{bottom:922.587067pt;}
.y7_c00229{bottom:953.147067pt;}
.y6_c00229{bottom:983.787067pt;}
.y5_c00229{bottom:1014.347067pt;}
.y2_c00229{bottom:1043.387067pt;}
.y1_c00229{bottom:1063.867067pt;}
.h2_c00229{height:42.656250pt;}
.h8_c00229{height:44.388750pt;}
.h1_c00229{height:44.724687pt;}
.h3_c00229{height:50.062500pt;}
.h6_c00229{height:53.562500pt;}
.h4_c00229{height:57.894063pt;}
.h7_c00229{height:57.894596pt;}
.h5_c00229{height:66.750000pt;}
.h0_c00229{height:1122.666667pt;}
.w1_c00229{width:793.333333pt;}
.w0_c00229{width:793.626667pt;}
.x0_c00229{left:0.000000pt;}
.x2_c00229{left:113.440000pt;}
.x6_c00229{left:137.280000pt;}
.x5_c00229{left:161.040000pt;}
.x4_c00229{left:386.880000pt;}
.x3_c00229{left:396.880000pt;}
.x1_c00229{left:436.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_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_15f85c914efe37343683dadf.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.100098;font-style:normal;font-weight:normal;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_26c2fa5aef2423aa546dabcb.woff2')format("woff");}.ff2_c00230{font-family:ff2_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:ff3_c00230;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00230;src:url('chunks/assets/font_8416f663790c7dc697971821.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00230;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.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;}
.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);}
.v3_c00230{vertical-align:-29.880000px;}
.v0_c00230{vertical-align:0.000000px;}
.v1_c00230{vertical-align:15.840000px;}
.v2_c00230{vertical-align:29.880000px;}
.ls13_c00230{letter-spacing:-0.266400px;}
.ls10_c00230{letter-spacing:-0.151200px;}
.ls18_c00230{letter-spacing:-0.046872px;}
.ls16_c00230{letter-spacing:-0.043200px;}
.ls15_c00230{letter-spacing:-0.028800px;}
.ls17_c00230{letter-spacing:-0.021600px;}
.ls11_c00230{letter-spacing:-0.014400px;}
.ls12_c00230{letter-spacing:-0.007200px;}
.lsf_c00230{letter-spacing:0.000000px;}
.ls5_c00230{letter-spacing:0.007200px;}
.ls9_c00230{letter-spacing:0.014400px;}
.lsd_c00230{letter-spacing:0.023940px;}
.lsc_c00230{letter-spacing:0.028728px;}
.ls7_c00230{letter-spacing:0.028800px;}
.lsb_c00230{letter-spacing:0.036000px;}
.lse_c00230{letter-spacing:0.043092px;}
.ls6_c00230{letter-spacing:0.043200px;}
.ls0_c00230{letter-spacing:0.048096px;}
.ls4_c00230{letter-spacing:0.054756px;}
.ls8_c00230{letter-spacing:0.057600px;}
.ls14_c00230{letter-spacing:0.093600px;}
.ls19_c00230{letter-spacing:0.136800px;}
.ls2_c00230{letter-spacing:0.144000px;}
.lsa_c00230{letter-spacing:34.450920px;}
.ls3_c00230{letter-spacing:66.024000px;}
.ls1_c00230{letter-spacing:1212.120000px;}
.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:-19.530000px;}
.ws0_c00230{word-spacing:-10.584756px;}
.ws20_c00230{word-spacing:-0.046872px;}
.ws2e_c00230{word-spacing:-0.023940px;}
.ws13_c00230{word-spacing:-0.014400px;}
.ws2a_c00230{word-spacing:-0.009576px;}
.ws25_c00230{word-spacing:-0.007200px;}
.ws2b_c00230{word-spacing:-0.004788px;}
.ws3_c00230{word-spacing:0.000000px;}
.ws2_c00230{word-spacing:0.042084px;}
.wsc_c00230{word-spacing:0.057600px;}
.ws1f_c00230{word-spacing:0.064800px;}
.ws28_c00230{word-spacing:0.223200px;}
.ws27_c00230{word-spacing:0.302400px;}
.ws26_c00230{word-spacing:0.324000px;}
.ws2c_c00230{word-spacing:0.694260px;}
.ws2d_c00230{word-spacing:0.737352px;}
.ws9_c00230{word-spacing:1.526400px;}
.ws8_c00230{word-spacing:1.540800px;}
.wsd_c00230{word-spacing:1.771200px;}
.ws15_c00230{word-spacing:2.124000px;}
.ws14_c00230{word-spacing:2.188800px;}
.ws12_c00230{word-spacing:2.340000px;}
.ws10_c00230{word-spacing:2.476800px;}
.ws11_c00230{word-spacing:2.491200px;}
.wse_c00230{word-spacing:2.512800px;}
.wsf_c00230{word-spacing:2.563200px;}
.ws5_c00230{word-spacing:2.577600px;}
.ws4_c00230{word-spacing:2.584800px;}
.ws24_c00230{word-spacing:3.621600px;}
.ws1d_c00230{word-spacing:3.952800px;}
.ws21_c00230{word-spacing:3.967200px;}
.ws1e_c00230{word-spacing:3.996000px;}
.ws1b_c00230{word-spacing:4.046400px;}
.ws1c_c00230{word-spacing:4.161600px;}
.ws1a_c00230{word-spacing:4.687200px;}
.ws22_c00230{word-spacing:10.432800px;}
.ws23_c00230{word-spacing:10.461600px;}
.ws29_c00230{word-spacing:12.240000px;}
.ws16_c00230{word-spacing:14.047200px;}
.ws17_c00230{word-spacing:14.126400px;}
.ws7_c00230{word-spacing:14.457600px;}
.ws6_c00230{word-spacing:14.515200px;}
.ws19_c00230{word-spacing:15.112800px;}
.ws18_c00230{word-spacing:15.127200px;}
.wsb_c00230{word-spacing:19.353600px;}
.wsa_c00230{word-spacing:19.454400px;}
._0_c00230{margin-left:-1.322640px;}
._1_c00230{width:1.080000px;}
.fc0_c00230{color:rgb(0,0,0);}
.fs3_c00230{font-size:42.120000px;}
.fs5_c00230{font-size:47.880000px;}
.fs1_c00230{font-size:54.000000px;}
.fs0_c00230{font-size:60.120000px;}
.fs2_c00230{font-size:72.000000px;}
.fs4_c00230{font-size:78.120000px;}
.y0_c00230{bottom:0.000000px;}
.y3_c00230{bottom:57.450450px;}
.y25_c00230{bottom:113.710350px;}
.y24_c00230{bottom:132.072330px;}
.y23_c00230{bottom:150.338550px;}
.y22_c00230{bottom:168.604770px;}
.y21_c00230{bottom:182.466030px;}
.y20_c00230{bottom:200.732250px;}
.y1f_c00230{bottom:218.998470px;}
.y1e_c00230{bottom:237.360450px;}
.y1d_c00230{bottom:252.570450px;}
.y1c_c00230{bottom:273.270450px;}
.y1b_c00230{bottom:293.970450px;}
.y1a_c00230{bottom:326.910450px;}
.y19_c00230{bottom:361.380450px;}
.y18_c00230{bottom:404.760450px;}
.y17_c00230{bottom:439.230450px;}
.y16_c00230{bottom:473.610450px;}
.y15_c00230{bottom:508.080450px;}
.y14_c00230{bottom:553.080450px;}
.y13_c00230{bottom:606.810450px;}
.y12_c00230{bottom:641.190450px;}
.y11_c00230{bottom:675.660450px;}
.y10_c00230{bottom:710.040450px;}
.yf_c00230{bottom:744.510450px;}
.ye_c00230{bottom:778.890450px;}
.yd_c00230{bottom:813.360450px;}
.yc_c00230{bottom:856.740450px;}
.yb_c00230{bottom:891.210450px;}
.ya_c00230{bottom:925.590450px;}
.y9_c00230{bottom:960.060450px;}
.y8_c00230{bottom:1003.440450px;}
.y7_c00230{bottom:1037.910450px;}
.y6_c00230{bottom:1072.290450px;}
.y5_c00230{bottom:1106.760450px;}
.y4_c00230{bottom:1141.140450px;}
.y2_c00230{bottom:1177.860450px;}
.y1_c00230{bottom:1196.850450px;}
.h8_c00230{height:47.988281px;}
.h9_c00230{height:49.937344px;}
.h1_c00230{height:50.315273px;}
.h2_c00230{height:56.320312px;}
.h6_c00230{height:60.257812px;}
.h5_c00230{height:65.130820px;}
.h3_c00230{height:72.160312px;}
.h4_c00230{height:75.093750px;}
.h7_c00230{height:81.476719px;}
.h0_c00230{height:1263.000000px;}
.w1_c00230{width:892.500000px;}
.w0_c00230{width:892.830000px;}
.x0_c00230{left:0.000000px;}
.x1_c00230{left:127.620000px;}
.x2_c00230{left:154.440000px;}
.x3_c00230{left:181.170000px;}
@media print{
.v3_c00230{vertical-align:-26.560000pt;}
.v0_c00230{vertical-align:0.000000pt;}
.v1_c00230{vertical-align:14.080000pt;}
.v2_c00230{vertical-align:26.560000pt;}
.ls13_c00230{letter-spacing:-0.236800pt;}
.ls10_c00230{letter-spacing:-0.134400pt;}
.ls18_c00230{letter-spacing:-0.041664pt;}
.ls16_c00230{letter-spacing:-0.038400pt;}
.ls15_c00230{letter-spacing:-0.025600pt;}
.ls17_c00230{letter-spacing:-0.019200pt;}
.ls11_c00230{letter-spacing:-0.012800pt;}
.ls12_c00230{letter-spacing:-0.006400pt;}
.lsf_c00230{letter-spacing:0.000000pt;}
.ls5_c00230{letter-spacing:0.006400pt;}
.ls9_c00230{letter-spacing:0.012800pt;}
.lsd_c00230{letter-spacing:0.021280pt;}
.lsc_c00230{letter-spacing:0.025536pt;}
.ls7_c00230{letter-spacing:0.025600pt;}
.lsb_c00230{letter-spacing:0.032000pt;}
.lse_c00230{letter-spacing:0.038304pt;}
.ls6_c00230{letter-spacing:0.038400pt;}
.ls0_c00230{letter-spacing:0.042752pt;}
.ls4_c00230{letter-spacing:0.048672pt;}
.ls8_c00230{letter-spacing:0.051200pt;}
.ls14_c00230{letter-spacing:0.083200pt;}
.ls19_c00230{letter-spacing:0.121600pt;}
.ls2_c00230{letter-spacing:0.128000pt;}
.lsa_c00230{letter-spacing:30.623040pt;}
.ls3_c00230{letter-spacing:58.688000pt;}
.ls1_c00230{letter-spacing:1077.440000pt;}
.ws1_c00230{word-spacing:-17.360000pt;}
.ws0_c00230{word-spacing:-9.408672pt;}
.ws20_c00230{word-spacing:-0.041664pt;}
.ws2e_c00230{word-spacing:-0.021280pt;}
.ws13_c00230{word-spacing:-0.012800pt;}
.ws2a_c00230{word-spacing:-0.008512pt;}
.ws25_c00230{word-spacing:-0.006400pt;}
.ws2b_c00230{word-spacing:-0.004256pt;}
.ws3_c00230{word-spacing:0.000000pt;}
.ws2_c00230{word-spacing:0.037408pt;}
.wsc_c00230{word-spacing:0.051200pt;}
.ws1f_c00230{word-spacing:0.057600pt;}
.ws28_c00230{word-spacing:0.198400pt;}
.ws27_c00230{word-spacing:0.268800pt;}
.ws26_c00230{word-spacing:0.288000pt;}
.ws2c_c00230{word-spacing:0.617120pt;}
.ws2d_c00230{word-spacing:0.655424pt;}
.ws9_c00230{word-spacing:1.356800pt;}
.ws8_c00230{word-spacing:1.369600pt;}
.wsd_c00230{word-spacing:1.574400pt;}
.ws15_c00230{word-spacing:1.888000pt;}
.ws14_c00230{word-spacing:1.945600pt;}
.ws12_c00230{word-spacing:2.080000pt;}
.ws10_c00230{word-spacing:2.201600pt;}
.ws11_c00230{word-spacing:2.214400pt;}
.wse_c00230{word-spacing:2.233600pt;}
.wsf_c00230{word-spacing:2.278400pt;}
.ws5_c00230{word-spacing:2.291200pt;}
.ws4_c00230{word-spacing:2.297600pt;}
.ws24_c00230{word-spacing:3.219200pt;}
.ws1d_c00230{word-spacing:3.513600pt;}
.ws21_c00230{word-spacing:3.526400pt;}
.ws1e_c00230{word-spacing:3.552000pt;}
.ws1b_c00230{word-spacing:3.596800pt;}
.ws1c_c00230{word-spacing:3.699200pt;}
.ws1a_c00230{word-spacing:4.166400pt;}
.ws22_c00230{word-spacing:9.273600pt;}
.ws23_c00230{word-spacing:9.299200pt;}
.ws29_c00230{word-spacing:10.880000pt;}
.ws16_c00230{word-spacing:12.486400pt;}
.ws17_c00230{word-spacing:12.556800pt;}
.ws7_c00230{word-spacing:12.851200pt;}
.ws6_c00230{word-spacing:12.902400pt;}
.ws19_c00230{word-spacing:13.433600pt;}
.ws18_c00230{word-spacing:13.446400pt;}
.wsb_c00230{word-spacing:17.203200pt;}
.wsa_c00230{word-spacing:17.292800pt;}
._0_c00230{margin-left:-1.175680pt;}
._1_c00230{width:0.960000pt;}
.fs3_c00230{font-size:37.440000pt;}
.fs5_c00230{font-size:42.560000pt;}
.fs1_c00230{font-size:48.000000pt;}
.fs0_c00230{font-size:53.440000pt;}
.fs2_c00230{font-size:64.000000pt;}
.fs4_c00230{font-size:69.440000pt;}
.y0_c00230{bottom:0.000000pt;}
.y3_c00230{bottom:51.067067pt;}
.y25_c00230{bottom:101.075867pt;}
.y24_c00230{bottom:117.397627pt;}
.y23_c00230{bottom:133.634267pt;}
.y22_c00230{bottom:149.870907pt;}
.y21_c00230{bottom:162.192027pt;}
.y20_c00230{bottom:178.428667pt;}
.y1f_c00230{bottom:194.665307pt;}
.y1e_c00230{bottom:210.987067pt;}
.y1d_c00230{bottom:224.507067pt;}
.y1c_c00230{bottom:242.907067pt;}
.y1b_c00230{bottom:261.307067pt;}
.y1a_c00230{bottom:290.587067pt;}
.y19_c00230{bottom:321.227067pt;}
.y18_c00230{bottom:359.787067pt;}
.y17_c00230{bottom:390.427067pt;}
.y16_c00230{bottom:420.987067pt;}
.y15_c00230{bottom:451.627067pt;}
.y14_c00230{bottom:491.627067pt;}
.y13_c00230{bottom:539.387067pt;}
.y12_c00230{bottom:569.947067pt;}
.y11_c00230{bottom:600.587067pt;}
.y10_c00230{bottom:631.147067pt;}
.yf_c00230{bottom:661.787067pt;}
.ye_c00230{bottom:692.347067pt;}
.yd_c00230{bottom:722.987067pt;}
.yc_c00230{bottom:761.547067pt;}
.yb_c00230{bottom:792.187067pt;}
.ya_c00230{bottom:822.747067pt;}
.y9_c00230{bottom:853.387067pt;}
.y8_c00230{bottom:891.947067pt;}
.y7_c00230{bottom:922.587067pt;}
.y6_c00230{bottom:953.147067pt;}
.y5_c00230{bottom:983.787067pt;}
.y4_c00230{bottom:1014.347067pt;}
.y2_c00230{bottom:1046.987067pt;}
.y1_c00230{bottom:1063.867067pt;}
.h8_c00230{height:42.656250pt;}
.h9_c00230{height:44.388750pt;}
.h1_c00230{height:44.724687pt;}
.h2_c00230{height:50.062500pt;}
.h6_c00230{height:53.562500pt;}
.h5_c00230{height:57.894063pt;}
.h3_c00230{height:64.142500pt;}
.h4_c00230{height:66.750000pt;}
.h7_c00230{height:72.423750pt;}
.h0_c00230{height:1122.666667pt;}
.w1_c00230{width:793.333333pt;}
.w0_c00230{width:793.626667pt;}
.x0_c00230{left:0.000000pt;}
.x1_c00230{left:113.440000pt;}
.x2_c00230{left:137.280000pt;}
.x3_c00230{left:161.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_acc6ce47bc5317c72d3fe3da.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_2cfc5f2b73ebd00e3336bccc.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00231;src:url('chunks/assets/font_30772873fb1c1ab00a0f8e04.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00231{transform:matrix(0.000000,-0.249318,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249318,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249318,0.250000,0.000000,0,0);}
.m3_c00231{transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);}
.m0_c00231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.v2_c00231{vertical-align:15.102720px;}
.v1_c00231{vertical-align:29.880000px;}
.ls1a_c00231{letter-spacing:-0.830326px;}
.ls19_c00231{letter-spacing:-0.702745px;}
.ls18_c00231{letter-spacing:-0.341261px;}
.ls1c_c00231{letter-spacing:-0.174348px;}
.lse_c00231{letter-spacing:-0.151200px;}
.lsf_c00231{letter-spacing:-0.043200px;}
.ls1d_c00231{letter-spacing:-0.042084px;}
.ls15_c00231{letter-spacing:-0.036000px;}
.ls11_c00231{letter-spacing:-0.028800px;}
.ls14_c00231{letter-spacing:-0.021600px;}
.ls12_c00231{letter-spacing:-0.014400px;}
.ls10_c00231{letter-spacing:-0.007200px;}
.ls1e_c00231{letter-spacing:-0.004788px;}
.lsd_c00231{letter-spacing:0.000000px;}
.ls17_c00231{letter-spacing:0.014400px;}
.ls8_c00231{letter-spacing:0.019152px;}
.ls1_c00231{letter-spacing:0.021600px;}
.ls7_c00231{letter-spacing:0.028728px;}
.lsc_c00231{letter-spacing:0.033516px;}
.ls0_c00231{letter-spacing:0.036072px;}
.lsa_c00231{letter-spacing:0.038304px;}
.ls9_c00231{letter-spacing:0.047880px;}
.ls16_c00231{letter-spacing:0.050400px;}
.lsb_c00231{letter-spacing:0.052668px;}
.ls2_c00231{letter-spacing:0.054756px;}
.ls3_c00231{letter-spacing:0.072000px;}
.ls4_c00231{letter-spacing:0.079200px;}
.ls13_c00231{letter-spacing:0.093600px;}
.ls6_c00231{letter-spacing:0.108864px;}
.ls5_c00231{letter-spacing:0.381133px;}
.ls1b_c00231{letter-spacing:0.721431px;}
.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;}
}
.ws1_c00231{word-spacing:-17.978400px;}
.ws0_c00231{word-spacing:-10.584756px;}
.ws3_c00231{word-spacing:-6.324706px;}
.ws7_c00231{word-spacing:-0.306612px;}
.ws23_c00231{word-spacing:-0.228456px;}
.ws24_c00231{word-spacing:-0.108864px;}
.ws12_c00231{word-spacing:-0.093600px;}
.ws2f_c00231{word-spacing:-0.033516px;}
.ws1f_c00231{word-spacing:-0.014400px;}
.ws30_c00231{word-spacing:-0.014364px;}
.ws2a_c00231{word-spacing:-0.009576px;}
.ws21_c00231{word-spacing:-0.002722px;}
.ws8_c00231{word-spacing:0.000000px;}
.ws1e_c00231{word-spacing:0.007200px;}
.ws2e_c00231{word-spacing:0.023940px;}
.ws11_c00231{word-spacing:0.064800px;}
.ws19_c00231{word-spacing:0.100800px;}
.ws22_c00231{word-spacing:0.264528px;}
.wsb_c00231{word-spacing:0.360000px;}
.wsc_c00231{word-spacing:0.396000px;}
.ws29_c00231{word-spacing:0.756000px;}
.ws20_c00231{word-spacing:0.899918px;}
.ws1d_c00231{word-spacing:1.461600px;}
.ws1c_c00231{word-spacing:1.576800px;}
.ws2c_c00231{word-spacing:2.130660px;}
.wse_c00231{word-spacing:2.138400px;}
.ws2d_c00231{word-spacing:2.140236px;}
.ws2b_c00231{word-spacing:2.145024px;}
.wsf_c00231{word-spacing:2.196000px;}
.wsd_c00231{word-spacing:2.282400px;}
.ws10_c00231{word-spacing:2.304000px;}
.ws18_c00231{word-spacing:3.636000px;}
.ws17_c00231{word-spacing:3.686400px;}
.ws16_c00231{word-spacing:3.780000px;}
.ws25_c00231{word-spacing:4.003200px;}
.ws26_c00231{word-spacing:4.032000px;}
.ws15_c00231{word-spacing:8.978400px;}
.ws14_c00231{word-spacing:8.992800px;}
.ws1a_c00231{word-spacing:11.800800px;}
.ws1b_c00231{word-spacing:11.901600px;}
.ws13_c00231{word-spacing:14.061600px;}
.ws2_c00231{word-spacing:14.598391px;}
.wsa_c00231{word-spacing:16.545600px;}
.ws9_c00231{word-spacing:16.603200px;}
.ws27_c00231{word-spacing:24.069600px;}
.ws28_c00231{word-spacing:24.141600px;}
.ws6_c00231{word-spacing:140.599972px;}
.ws5_c00231{word-spacing:141.900188px;}
.ws4_c00231{word-spacing:144.077148px;}
._5_c00231{margin-left:-2.197325px;}
._0_c00231{margin-left:-1.022040px;}
._1_c00231{width:1.224000px;}
._4_c00231{width:2.275074px;}
._3_c00231{width:20.222880px;}
._2_c00231{width:23.064979px;}
._6_c00231{width:149.945351px;}
.fc0_c00231{color:rgb(0,0,0);}
.fs4_c00231{font-size:25.278600px;}
.fs5_c00231{font-size:27.223800px;}
.fs6_c00231{font-size:38.880000px;}
.fs3_c00231{font-size:42.120000px;}
.fs7_c00231{font-size:47.880000px;}
.fs2_c00231{font-size:54.000000px;}
.fs0_c00231{font-size:60.120000px;}
.fs1_c00231{font-size:72.000000px;}
.y0_c00231{bottom:0.000000px;}
.y3_c00231{bottom:57.450450px;}
.y4_c00231{bottom:61.410450px;}
.y33_c00231{bottom:113.708550px;}
.y32_c00231{bottom:132.070530px;}
.y31_c00231{bottom:145.836030px;}
.y30_c00231{bottom:164.102250px;}
.y2f_c00231{bottom:182.464230px;}
.y2e_c00231{bottom:200.730450px;}
.y2d_c00231{bottom:215.940450px;}
.y2c_c00231{bottom:236.640450px;}
.y2b_c00231{bottom:257.340600px;}
.y2a_c00231{bottom:372.270600px;}
.y29_c00231{bottom:406.740600px;}
.y28_c00231{bottom:441.120600px;}
.y27_c00231{bottom:478.654920px;}
.y26_c00231{bottom:491.520600px;}
.y25_c00231{bottom:501.150450px;}
.y23_c00231{bottom:513.287498px;}
.y22_c00231{bottom:520.125359px;}
.y11_c00231{bottom:529.320450px;}
.y12_c00231{bottom:541.018122px;}
.y13_c00231{bottom:552.715794px;}
.y14_c00231{bottom:564.324991px;}
.y15_c00231{bottom:576.022664px;}
.y16_c00231{bottom:588.175350px;}
.y17_c00231{bottom:599.873023px;}
.y24_c00231{bottom:604.560450px;}
.y18_c00231{bottom:611.482220px;}
.y19_c00231{bottom:623.179892px;}
.y1a_c00231{bottom:634.789089px;}
.y1b_c00231{bottom:646.486761px;}
.y1c_c00231{bottom:658.184433px;}
.y1d_c00231{bottom:669.793630px;}
.y1e_c00231{bottom:681.946317px;}
.y1f_c00231{bottom:693.643989px;}
.y20_c00231{bottom:705.341661px;}
.y21_c00231{bottom:716.950858px;}
.y10_c00231{bottom:744.510600px;}
.yf_c00231{bottom:778.890600px;}
.ye_c00231{bottom:813.360600px;}
.yd_c00231{bottom:856.740450px;}
.yc_c00231{bottom:891.210450px;}
.yb_c00231{bottom:925.590450px;}
.ya_c00231{bottom:960.060450px;}
.y9_c00231{bottom:1003.440450px;}
.y8_c00231{bottom:1037.910450px;}
.y7_c00231{bottom:1072.290450px;}
.y6_c00231{bottom:1106.760450px;}
.y5_c00231{bottom:1141.140450px;}
.y2_c00231{bottom:1173.810450px;}
.y1_c00231{bottom:1196.850450px;}
.h7_c00231{height:26.364790px;}
.h8_c00231{height:28.393573px;}
.h2_c00231{height:47.988281px;}
.ha_c00231{height:49.937344px;}
.h1_c00231{height:50.315273px;}
.h9_c00231{height:50.373984px;}
.h3_c00231{height:56.320312px;}
.h4_c00231{height:60.257812px;}
.h6_c00231{height:65.130220px;}
.h5_c00231{height:65.130820px;}
.h0_c00231{height:1263.000000px;}
.w1_c00231{width:892.500000px;}
.w0_c00231{width:892.830000px;}
.x0_c00231{left:0.000000px;}
.xa_c00231{left:94.950000px;}
.x7_c00231{left:99.807797px;}
.x6_c00231{left:103.230000px;}
.x8_c00231{left:104.666947px;}
.x2_c00231{left:127.620000px;}
.xd_c00231{left:154.432800px;}
.x5_c00231{left:180.720000px;}
.xb_c00231{left:187.110000px;}
.x4_c00231{left:435.240000px;}
.x3_c00231{left:446.490000px;}
.x1_c00231{left:490.770000px;}
.x9_c00231{left:763.551355px;}
.xc_c00231{left:794.159850px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.v2_c00231{vertical-align:13.424640pt;}
.v1_c00231{vertical-align:26.560000pt;}
.ls1a_c00231{letter-spacing:-0.738067pt;}
.ls19_c00231{letter-spacing:-0.624662pt;}
.ls18_c00231{letter-spacing:-0.303343pt;}
.ls1c_c00231{letter-spacing:-0.154976pt;}
.lse_c00231{letter-spacing:-0.134400pt;}
.lsf_c00231{letter-spacing:-0.038400pt;}
.ls1d_c00231{letter-spacing:-0.037408pt;}
.ls15_c00231{letter-spacing:-0.032000pt;}
.ls11_c00231{letter-spacing:-0.025600pt;}
.ls14_c00231{letter-spacing:-0.019200pt;}
.ls12_c00231{letter-spacing:-0.012800pt;}
.ls10_c00231{letter-spacing:-0.006400pt;}
.ls1e_c00231{letter-spacing:-0.004256pt;}
.lsd_c00231{letter-spacing:0.000000pt;}
.ls17_c00231{letter-spacing:0.012800pt;}
.ls8_c00231{letter-spacing:0.017024pt;}
.ls1_c00231{letter-spacing:0.019200pt;}
.ls7_c00231{letter-spacing:0.025536pt;}
.lsc_c00231{letter-spacing:0.029792pt;}
.ls0_c00231{letter-spacing:0.032064pt;}
.lsa_c00231{letter-spacing:0.034048pt;}
.ls9_c00231{letter-spacing:0.042560pt;}
.ls16_c00231{letter-spacing:0.044800pt;}
.lsb_c00231{letter-spacing:0.046816pt;}
.ls2_c00231{letter-spacing:0.048672pt;}
.ls3_c00231{letter-spacing:0.064000pt;}
.ls4_c00231{letter-spacing:0.070400pt;}
.ls13_c00231{letter-spacing:0.083200pt;}
.ls6_c00231{letter-spacing:0.096768pt;}
.ls5_c00231{letter-spacing:0.338785pt;}
.ls1b_c00231{letter-spacing:0.641272pt;}
.ws1_c00231{word-spacing:-15.980800pt;}
.ws0_c00231{word-spacing:-9.408672pt;}
.ws3_c00231{word-spacing:-5.621961pt;}
.ws7_c00231{word-spacing:-0.272544pt;}
.ws23_c00231{word-spacing:-0.203072pt;}
.ws24_c00231{word-spacing:-0.096768pt;}
.ws12_c00231{word-spacing:-0.083200pt;}
.ws2f_c00231{word-spacing:-0.029792pt;}
.ws1f_c00231{word-spacing:-0.012800pt;}
.ws30_c00231{word-spacing:-0.012768pt;}
.ws2a_c00231{word-spacing:-0.008512pt;}
.ws21_c00231{word-spacing:-0.002420pt;}
.ws8_c00231{word-spacing:0.000000pt;}
.ws1e_c00231{word-spacing:0.006400pt;}
.ws2e_c00231{word-spacing:0.021280pt;}
.ws11_c00231{word-spacing:0.057600pt;}
.ws19_c00231{word-spacing:0.089600pt;}
.ws22_c00231{word-spacing:0.235136pt;}
.wsb_c00231{word-spacing:0.320000pt;}
.wsc_c00231{word-spacing:0.352000pt;}
.ws29_c00231{word-spacing:0.672000pt;}
.ws20_c00231{word-spacing:0.799927pt;}
.ws1d_c00231{word-spacing:1.299200pt;}
.ws1c_c00231{word-spacing:1.401600pt;}
.ws2c_c00231{word-spacing:1.893920pt;}
.wse_c00231{word-spacing:1.900800pt;}
.ws2d_c00231{word-spacing:1.902432pt;}
.ws2b_c00231{word-spacing:1.906688pt;}
.wsf_c00231{word-spacing:1.952000pt;}
.wsd_c00231{word-spacing:2.028800pt;}
.ws10_c00231{word-spacing:2.048000pt;}
.ws18_c00231{word-spacing:3.232000pt;}
.ws17_c00231{word-spacing:3.276800pt;}
.ws16_c00231{word-spacing:3.360000pt;}
.ws25_c00231{word-spacing:3.558400pt;}
.ws26_c00231{word-spacing:3.584000pt;}
.ws15_c00231{word-spacing:7.980800pt;}
.ws14_c00231{word-spacing:7.993600pt;}
.ws1a_c00231{word-spacing:10.489600pt;}
.ws1b_c00231{word-spacing:10.579200pt;}
.ws13_c00231{word-spacing:12.499200pt;}
.ws2_c00231{word-spacing:12.976348pt;}
.wsa_c00231{word-spacing:14.707200pt;}
.ws9_c00231{word-spacing:14.758400pt;}
.ws27_c00231{word-spacing:21.395200pt;}
.ws28_c00231{word-spacing:21.459200pt;}
.ws6_c00231{word-spacing:124.977753pt;}
.ws5_c00231{word-spacing:126.133500pt;}
.ws4_c00231{word-spacing:128.068576pt;}
._5_c00231{margin-left:-1.953178pt;}
._0_c00231{margin-left:-0.908480pt;}
._1_c00231{width:1.088000pt;}
._4_c00231{width:2.022288pt;}
._3_c00231{width:17.975893pt;}
._2_c00231{width:20.502204pt;}
._6_c00231{width:133.284757pt;}
.fs4_c00231{font-size:22.469867pt;}
.fs5_c00231{font-size:24.198933pt;}
.fs6_c00231{font-size:34.560000pt;}
.fs3_c00231{font-size:37.440000pt;}
.fs7_c00231{font-size:42.560000pt;}
.fs2_c00231{font-size:48.000000pt;}
.fs0_c00231{font-size:53.440000pt;}
.fs1_c00231{font-size:64.000000pt;}
.y0_c00231{bottom:0.000000pt;}
.y3_c00231{bottom:51.067067pt;}
.y4_c00231{bottom:54.587067pt;}
.y33_c00231{bottom:101.074267pt;}
.y32_c00231{bottom:117.396027pt;}
.y31_c00231{bottom:129.632027pt;}
.y30_c00231{bottom:145.868667pt;}
.y2f_c00231{bottom:162.190427pt;}
.y2e_c00231{bottom:178.427067pt;}
.y2d_c00231{bottom:191.947067pt;}
.y2c_c00231{bottom:210.347067pt;}
.y2b_c00231{bottom:228.747200pt;}
.y2a_c00231{bottom:330.907200pt;}
.y29_c00231{bottom:361.547200pt;}
.y28_c00231{bottom:392.107200pt;}
.y27_c00231{bottom:425.471040pt;}
.y26_c00231{bottom:436.907200pt;}
.y25_c00231{bottom:445.467067pt;}
.y23_c00231{bottom:456.255554pt;}
.y22_c00231{bottom:462.333653pt;}
.y11_c00231{bottom:470.507067pt;}
.y12_c00231{bottom:480.904997pt;}
.y13_c00231{bottom:491.302928pt;}
.y14_c00231{bottom:501.622215pt;}
.y15_c00231{bottom:512.020145pt;}
.y16_c00231{bottom:522.822534pt;}
.y17_c00231{bottom:533.220465pt;}
.y24_c00231{bottom:537.387067pt;}
.y18_c00231{bottom:543.539751pt;}
.y19_c00231{bottom:553.937682pt;}
.y1a_c00231{bottom:564.256968pt;}
.y1b_c00231{bottom:574.654899pt;}
.y1c_c00231{bottom:585.052829pt;}
.y1d_c00231{bottom:595.372116pt;}
.y1e_c00231{bottom:606.174504pt;}
.y1f_c00231{bottom:616.572435pt;}
.y20_c00231{bottom:626.970366pt;}
.y21_c00231{bottom:637.289652pt;}
.y10_c00231{bottom:661.787200pt;}
.yf_c00231{bottom:692.347200pt;}
.ye_c00231{bottom:722.987200pt;}
.yd_c00231{bottom:761.547067pt;}
.yc_c00231{bottom:792.187067pt;}
.yb_c00231{bottom:822.747067pt;}
.ya_c00231{bottom:853.387067pt;}
.y9_c00231{bottom:891.947067pt;}
.y8_c00231{bottom:922.587067pt;}
.y7_c00231{bottom:953.147067pt;}
.y6_c00231{bottom:983.787067pt;}
.y5_c00231{bottom:1014.347067pt;}
.y2_c00231{bottom:1043.387067pt;}
.y1_c00231{bottom:1063.867067pt;}
.h7_c00231{height:23.435369pt;}
.h8_c00231{height:25.238731pt;}
.h2_c00231{height:42.656250pt;}
.ha_c00231{height:44.388750pt;}
.h1_c00231{height:44.724687pt;}
.h9_c00231{height:44.776875pt;}
.h3_c00231{height:50.062500pt;}
.h4_c00231{height:53.562500pt;}
.h6_c00231{height:57.893529pt;}
.h5_c00231{height:57.894062pt;}
.h0_c00231{height:1122.666667pt;}
.w1_c00231{width:793.333333pt;}
.w0_c00231{width:793.626667pt;}
.x0_c00231{left:0.000000pt;}
.xa_c00231{left:84.400000pt;}
.x7_c00231{left:88.718042pt;}
.x6_c00231{left:91.760000pt;}
.x8_c00231{left:93.037286pt;}
.x2_c00231{left:113.440000pt;}
.xd_c00231{left:137.273600pt;}
.x5_c00231{left:160.640000pt;}
.xb_c00231{left:166.320000pt;}
.x4_c00231{left:386.880000pt;}
.x3_c00231{left:396.880000pt;}
.x1_c00231{left:436.240000pt;}
.x9_c00231{left:678.712316pt;}
.xc_c00231{left:705.919867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5ff439808dc0dc34c72b84d1.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.100098;font-style:normal;font-weight:normal;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_1a188f604ca3848385c335b8.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;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_c00232;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00232;src:url('chunks/assets/font_960cff53a6c6ee5aa7b2d74b.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v3_c00232{vertical-align:-15.120000px;}
.v0_c00232{vertical-align:0.000000px;}
.v1_c00232{vertical-align:15.840000px;}
.v2_c00232{vertical-align:29.880000px;}
.lsa_c00232{letter-spacing:-0.151200px;}
.ls1a_c00232{letter-spacing:-0.078156px;}
.ls12_c00232{letter-spacing:-0.072144px;}
.ls18_c00232{letter-spacing:-0.066132px;}
.ls11_c00232{letter-spacing:-0.054108px;}
.ls13_c00232{letter-spacing:-0.048096px;}
.ls10_c00232{letter-spacing:-0.042084px;}
.ls14_c00232{letter-spacing:-0.036072px;}
.ls19_c00232{letter-spacing:-0.030060px;}
.lsf_c00232{letter-spacing:-0.028800px;}
.lsb_c00232{letter-spacing:-0.021600px;}
.ls16_c00232{letter-spacing:-0.018036px;}
.lsc_c00232{letter-spacing:-0.014400px;}
.ls15_c00232{letter-spacing:-0.012024px;}
.lsd_c00232{letter-spacing:-0.007200px;}
.ls17_c00232{letter-spacing:-0.006012px;}
.ls9_c00232{letter-spacing:0.000000px;}
.ls5_c00232{letter-spacing:0.006012px;}
.ls4_c00232{letter-spacing:0.012024px;}
.lse_c00232{letter-spacing:0.014400px;}
.ls7_c00232{letter-spacing:0.019152px;}
.ls3_c00232{letter-spacing:0.021600px;}
.ls8_c00232{letter-spacing:0.028728px;}
.ls0_c00232{letter-spacing:0.048096px;}
.ls2_c00232{letter-spacing:0.054756px;}
.ls6_c00232{letter-spacing:0.136080px;}
.ls1_c00232{letter-spacing:1212.120000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00232{word-spacing:-10.584756px;}
.ws1_c00232{word-spacing:-9.856080px;}
.ws18_c00232{word-spacing:-0.276552px;}
.ws17_c00232{word-spacing:-0.270540px;}
.ws1d_c00232{word-spacing:-0.252504px;}
.ws1a_c00232{word-spacing:-0.246492px;}
.ws16_c00232{word-spacing:-0.234468px;}
.ws1f_c00232{word-spacing:-0.192384px;}
.wsd_c00232{word-spacing:-0.086400px;}
.ws21_c00232{word-spacing:-0.009576px;}
.ws3_c00232{word-spacing:0.000000px;}
.ws6_c00232{word-spacing:0.007200px;}
.ws2_c00232{word-spacing:0.042084px;}
.ws15_c00232{word-spacing:0.078156px;}
.wsf_c00232{word-spacing:0.090180px;}
.ws1b_c00232{word-spacing:0.096192px;}
.ws14_c00232{word-spacing:0.102204px;}
.ws19_c00232{word-spacing:0.108216px;}
.ws20_c00232{word-spacing:0.114228px;}
.ws1e_c00232{word-spacing:0.120240px;}
.ws13_c00232{word-spacing:0.126252px;}
.wse_c00232{word-spacing:0.132264px;}
.ws12_c00232{word-spacing:0.138276px;}
.ws10_c00232{word-spacing:0.144288px;}
.ws1c_c00232{word-spacing:0.156312px;}
.ws11_c00232{word-spacing:0.162324px;}
.wsc_c00232{word-spacing:2.541600px;}
.wsb_c00232{word-spacing:2.577600px;}
.ws4_c00232{word-spacing:3.621600px;}
.ws5_c00232{word-spacing:3.679200px;}
.ws7_c00232{word-spacing:4.320000px;}
.ws8_c00232{word-spacing:4.341600px;}
.ws9_c00232{word-spacing:9.252000px;}
.wsa_c00232{word-spacing:9.388800px;}
._0_c00232{margin-left:-1.322640px;}
._1_c00232{width:1.247292px;}
._15_c00232{width:50.681160px;}
._23_c00232{width:53.386560px;}
._16_c00232{width:55.466712px;}
._28_c00232{width:64.875492px;}
._25_c00232{width:66.192120px;}
._e_c00232{width:70.761240px;}
._27_c00232{width:97.695000px;}
._10_c00232{width:108.793152px;}
._22_c00232{width:125.049600px;}
._8_c00232{width:162.324000px;}
._6_c00232{width:169.658640px;}
._3_c00232{width:190.440000px;}
._24_c00232{width:192.624480px;}
._19_c00232{width:206.121420px;}
._1c_c00232{width:207.293760px;}
._c_c00232{width:209.097360px;}
._4_c00232{width:214.868880px;}
._5_c00232{width:222.504120px;}
._11_c00232{width:223.586280px;}
._20_c00232{width:230.019120px;}
._7_c00232{width:237.474000px;}
._2a_c00232{width:251.181360px;}
._1e_c00232{width:254.668320px;}
._1a_c00232{width:265.189320px;}
._21_c00232{width:266.578092px;}
._1d_c00232{width:269.097120px;}
._a_c00232{width:270.720360px;}
._29_c00232{width:278.055000px;}
._17_c00232{width:282.443760px;}
._1f_c00232{width:283.646160px;}
._18_c00232{width:287.914680px;}
._b_c00232{width:294.828480px;}
._12_c00232{width:318.227184px;}
._14_c00232{width:333.371412px;}
._f_c00232{width:336.894444px;}
._1b_c00232{width:338.403456px;}
._13_c00232{width:343.327284px;}
._d_c00232{width:363.948444px;}
._2_c00232{width:383.040000px;}
._26_c00232{width:403.880148px;}
._2b_c00232{width:419.060448px;}
._9_c00232{width:537.460776px;}
.fc0_c00232{color:rgb(0,0,0);}
.fs4_c00232{font-size:38.880000px;}
.fs3_c00232{font-size:42.120000px;}
.fs5_c00232{font-size:47.880000px;}
.fs1_c00232{font-size:54.000000px;}
.fs0_c00232{font-size:60.120000px;}
.fs2_c00232{font-size:72.000000px;}
.y0_c00232{bottom:0.000000px;}
.y3_c00232{bottom:57.450450px;}
.y2f_c00232{bottom:113.698470px;}
.y2e_c00232{bottom:132.060450px;}
.y2d_c00232{bottom:147.270450px;}
.y2c_c00232{bottom:167.970450px;}
.y2b_c00232{bottom:188.670450px;}
.y2a_c00232{bottom:258.150450px;}
.y29_c00232{bottom:284.790450px;}
.y28_c00232{bottom:302.430450px;}
.y27_c00232{bottom:319.980450px;}
.y26_c00232{bottom:339.600450px;}
.y25_c00232{bottom:359.220450px;}
.y24_c00232{bottom:378.120450px;}
.y23_c00232{bottom:398.550450px;}
.y22_c00232{bottom:417.720450px;}
.y21_c00232{bottom:435.360600px;}
.y20_c00232{bottom:453.540600px;}
.y1f_c00232{bottom:471.720450px;}
.y1e_c00232{bottom:491.880450px;}
.y1d_c00232{bottom:512.220450px;}
.y1c_c00232{bottom:529.950450px;}
.y1b_c00232{bottom:549.120450px;}
.y1a_c00232{bottom:568.290450px;}
.y19_c00232{bottom:585.930450px;}
.y18_c00232{bottom:604.650450px;}
.y17_c00232{bottom:623.280450px;}
.y16_c00232{bottom:643.530450px;}
.y15_c00232{bottom:664.410450px;}
.y14_c00232{bottom:682.680450px;}
.y13_c00232{bottom:701.760450px;}
.y12_c00232{bottom:720.840450px;}
.y11_c00232{bottom:741.810450px;}
.y10_c00232{bottom:763.410450px;}
.yf_c00232{bottom:781.500450px;}
.ye_c00232{bottom:801.030450px;}
.yd_c00232{bottom:820.380450px;}
.yc_c00232{bottom:842.250450px;}
.yb_c00232{bottom:868.620450px;}
.ya_c00232{bottom:916.590450px;}
.y9_c00232{bottom:951.060450px;}
.y8_c00232{bottom:994.440450px;}
.y7_c00232{bottom:1028.910450px;}
.y6_c00232{bottom:1063.290450px;}
.y5_c00232{bottom:1106.760450px;}
.y4_c00232{bottom:1141.140450px;}
.y2_c00232{bottom:1177.860450px;}
.y1_c00232{bottom:1196.850450px;}
.h7_c00232{height:47.988281px;}
.h8_c00232{height:49.937344px;}
.h1_c00232{height:50.315273px;}
.h2_c00232{height:56.320312px;}
.h5_c00232{height:60.257812px;}
.h6_c00232{height:60.328125px;}
.h4_c00232{height:65.130820px;}
.h3_c00232{height:72.160312px;}
.h0_c00232{height:1263.000000px;}
.w1_c00232{width:892.500000px;}
.w0_c00232{width:892.830000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:127.620000px;}
.x2_c00232{left:180.720000px;}
.x4_c00232{left:201.690000px;}
.x3_c00232{left:262.260000px;}
.x5_c00232{left:324.990000px;}
@media print{
.v3_c00232{vertical-align:-13.440000pt;}
.v0_c00232{vertical-align:0.000000pt;}
.v1_c00232{vertical-align:14.080000pt;}
.v2_c00232{vertical-align:26.560000pt;}
.lsa_c00232{letter-spacing:-0.134400pt;}
.ls1a_c00232{letter-spacing:-0.069472pt;}
.ls12_c00232{letter-spacing:-0.064128pt;}
.ls18_c00232{letter-spacing:-0.058784pt;}
.ls11_c00232{letter-spacing:-0.048096pt;}
.ls13_c00232{letter-spacing:-0.042752pt;}
.ls10_c00232{letter-spacing:-0.037408pt;}
.ls14_c00232{letter-spacing:-0.032064pt;}
.ls19_c00232{letter-spacing:-0.026720pt;}
.lsf_c00232{letter-spacing:-0.025600pt;}
.lsb_c00232{letter-spacing:-0.019200pt;}
.ls16_c00232{letter-spacing:-0.016032pt;}
.lsc_c00232{letter-spacing:-0.012800pt;}
.ls15_c00232{letter-spacing:-0.010688pt;}
.lsd_c00232{letter-spacing:-0.006400pt;}
.ls17_c00232{letter-spacing:-0.005344pt;}
.ls9_c00232{letter-spacing:0.000000pt;}
.ls5_c00232{letter-spacing:0.005344pt;}
.ls4_c00232{letter-spacing:0.010688pt;}
.lse_c00232{letter-spacing:0.012800pt;}
.ls7_c00232{letter-spacing:0.017024pt;}
.ls3_c00232{letter-spacing:0.019200pt;}
.ls8_c00232{letter-spacing:0.025536pt;}
.ls0_c00232{letter-spacing:0.042752pt;}
.ls2_c00232{letter-spacing:0.048672pt;}
.ls6_c00232{letter-spacing:0.120960pt;}
.ls1_c00232{letter-spacing:1077.440000pt;}
.ws0_c00232{word-spacing:-9.408672pt;}
.ws1_c00232{word-spacing:-8.760960pt;}
.ws18_c00232{word-spacing:-0.245824pt;}
.ws17_c00232{word-spacing:-0.240480pt;}
.ws1d_c00232{word-spacing:-0.224448pt;}
.ws1a_c00232{word-spacing:-0.219104pt;}
.ws16_c00232{word-spacing:-0.208416pt;}
.ws1f_c00232{word-spacing:-0.171008pt;}
.wsd_c00232{word-spacing:-0.076800pt;}
.ws21_c00232{word-spacing:-0.008512pt;}
.ws3_c00232{word-spacing:0.000000pt;}
.ws6_c00232{word-spacing:0.006400pt;}
.ws2_c00232{word-spacing:0.037408pt;}
.ws15_c00232{word-spacing:0.069472pt;}
.wsf_c00232{word-spacing:0.080160pt;}
.ws1b_c00232{word-spacing:0.085504pt;}
.ws14_c00232{word-spacing:0.090848pt;}
.ws19_c00232{word-spacing:0.096192pt;}
.ws20_c00232{word-spacing:0.101536pt;}
.ws1e_c00232{word-spacing:0.106880pt;}
.ws13_c00232{word-spacing:0.112224pt;}
.wse_c00232{word-spacing:0.117568pt;}
.ws12_c00232{word-spacing:0.122912pt;}
.ws10_c00232{word-spacing:0.128256pt;}
.ws1c_c00232{word-spacing:0.138944pt;}
.ws11_c00232{word-spacing:0.144288pt;}
.wsc_c00232{word-spacing:2.259200pt;}
.wsb_c00232{word-spacing:2.291200pt;}
.ws4_c00232{word-spacing:3.219200pt;}
.ws5_c00232{word-spacing:3.270400pt;}
.ws7_c00232{word-spacing:3.840000pt;}
.ws8_c00232{word-spacing:3.859200pt;}
.ws9_c00232{word-spacing:8.224000pt;}
.wsa_c00232{word-spacing:8.345600pt;}
._0_c00232{margin-left:-1.175680pt;}
._1_c00232{width:1.108704pt;}
._15_c00232{width:45.049920pt;}
._23_c00232{width:47.454720pt;}
._16_c00232{width:49.303744pt;}
._28_c00232{width:57.667104pt;}
._25_c00232{width:58.837440pt;}
._e_c00232{width:62.898880pt;}
._27_c00232{width:86.840000pt;}
._10_c00232{width:96.705024pt;}
._22_c00232{width:111.155200pt;}
._8_c00232{width:144.288000pt;}
._6_c00232{width:150.807680pt;}
._3_c00232{width:169.280000pt;}
._24_c00232{width:171.221760pt;}
._19_c00232{width:183.219040pt;}
._1c_c00232{width:184.261120pt;}
._c_c00232{width:185.864320pt;}
._4_c00232{width:190.994560pt;}
._5_c00232{width:197.781440pt;}
._11_c00232{width:198.743360pt;}
._20_c00232{width:204.461440pt;}
._7_c00232{width:211.088000pt;}
._2a_c00232{width:223.272320pt;}
._1e_c00232{width:226.371840pt;}
._1a_c00232{width:235.723840pt;}
._21_c00232{width:236.958304pt;}
._1d_c00232{width:239.197440pt;}
._a_c00232{width:240.640320pt;}
._29_c00232{width:247.160000pt;}
._17_c00232{width:251.061120pt;}
._1f_c00232{width:252.129920pt;}
._18_c00232{width:255.924160pt;}
._b_c00232{width:262.069760pt;}
._12_c00232{width:282.868608pt;}
._14_c00232{width:296.330144pt;}
._f_c00232{width:299.461728pt;}
._1b_c00232{width:300.803072pt;}
._13_c00232{width:305.179808pt;}
._d_c00232{width:323.509728pt;}
._2_c00232{width:340.480000pt;}
._26_c00232{width:359.004576pt;}
._2b_c00232{width:372.498176pt;}
._9_c00232{width:477.742912pt;}
.fs4_c00232{font-size:34.560000pt;}
.fs3_c00232{font-size:37.440000pt;}
.fs5_c00232{font-size:42.560000pt;}
.fs1_c00232{font-size:48.000000pt;}
.fs0_c00232{font-size:53.440000pt;}
.fs2_c00232{font-size:64.000000pt;}
.y0_c00232{bottom:0.000000pt;}
.y3_c00232{bottom:51.067067pt;}
.y2f_c00232{bottom:101.065307pt;}
.y2e_c00232{bottom:117.387067pt;}
.y2d_c00232{bottom:130.907067pt;}
.y2c_c00232{bottom:149.307067pt;}
.y2b_c00232{bottom:167.707067pt;}
.y2a_c00232{bottom:229.467067pt;}
.y29_c00232{bottom:253.147067pt;}
.y28_c00232{bottom:268.827067pt;}
.y27_c00232{bottom:284.427067pt;}
.y26_c00232{bottom:301.867067pt;}
.y25_c00232{bottom:319.307067pt;}
.y24_c00232{bottom:336.107067pt;}
.y23_c00232{bottom:354.267067pt;}
.y22_c00232{bottom:371.307067pt;}
.y21_c00232{bottom:386.987200pt;}
.y20_c00232{bottom:403.147200pt;}
.y1f_c00232{bottom:419.307067pt;}
.y1e_c00232{bottom:437.227067pt;}
.y1d_c00232{bottom:455.307067pt;}
.y1c_c00232{bottom:471.067067pt;}
.y1b_c00232{bottom:488.107067pt;}
.y1a_c00232{bottom:505.147067pt;}
.y19_c00232{bottom:520.827067pt;}
.y18_c00232{bottom:537.467067pt;}
.y17_c00232{bottom:554.027067pt;}
.y16_c00232{bottom:572.027067pt;}
.y15_c00232{bottom:590.587067pt;}
.y14_c00232{bottom:606.827067pt;}
.y13_c00232{bottom:623.787067pt;}
.y12_c00232{bottom:640.747067pt;}
.y11_c00232{bottom:659.387067pt;}
.y10_c00232{bottom:678.587067pt;}
.yf_c00232{bottom:694.667067pt;}
.ye_c00232{bottom:712.027067pt;}
.yd_c00232{bottom:729.227067pt;}
.yc_c00232{bottom:748.667067pt;}
.yb_c00232{bottom:772.107067pt;}
.ya_c00232{bottom:814.747067pt;}
.y9_c00232{bottom:845.387067pt;}
.y8_c00232{bottom:883.947067pt;}
.y7_c00232{bottom:914.587067pt;}
.y6_c00232{bottom:945.147067pt;}
.y5_c00232{bottom:983.787067pt;}
.y4_c00232{bottom:1014.347067pt;}
.y2_c00232{bottom:1046.987067pt;}
.y1_c00232{bottom:1063.867067pt;}
.h7_c00232{height:42.656250pt;}
.h8_c00232{height:44.388750pt;}
.h1_c00232{height:44.724687pt;}
.h2_c00232{height:50.062500pt;}
.h5_c00232{height:53.562500pt;}
.h6_c00232{height:53.625000pt;}
.h4_c00232{height:57.894063pt;}
.h3_c00232{height:64.142500pt;}
.h0_c00232{height:1122.666667pt;}
.w1_c00232{width:793.333333pt;}
.w0_c00232{width:793.626667pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:113.440000pt;}
.x2_c00232{left:160.640000pt;}
.x4_c00232{left:179.280000pt;}
.x3_c00232{left:233.120000pt;}
.x5_c00232{left:288.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_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_3dfc6ebe396ae8997426906d.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_0ead19815bc43a610f16d2a8.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00233;src:url('chunks/assets/font_c29433284e19b9d3abf3e97e.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00233;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;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_c00233;src:url('chunks/assets/font_f5bcd51d24b986241a4758cf.woff2')format("woff");}.ff6_c00233{font-family:ff6_c00233;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_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;}
.v1_c00233{vertical-align:29.880000px;}
.ls10_c00233{letter-spacing:-0.151200px;}
.ls1c_c00233{letter-spacing:-0.078120px;}
.ls12_c00233{letter-spacing:-0.054684px;}
.ls14_c00233{letter-spacing:-0.050400px;}
.ls15_c00233{letter-spacing:-0.036000px;}
.ls11_c00233{letter-spacing:-0.031248px;}
.ls13_c00233{letter-spacing:-0.021600px;}
.ls21_c00233{letter-spacing:-0.019440px;}
.ls19_c00233{letter-spacing:-0.014400px;}
.ls20_c00233{letter-spacing:-0.011664px;}
.ls1b_c00233{letter-spacing:-0.007812px;}
.ls1d_c00233{letter-spacing:-0.007776px;}
.ls16_c00233{letter-spacing:-0.007200px;}
.ls23_c00233{letter-spacing:-0.004788px;}
.ls1e_c00233{letter-spacing:-0.003888px;}
.lsf_c00233{letter-spacing:0.000000px;}
.ls2_c00233{letter-spacing:0.007200px;}
.ls22_c00233{letter-spacing:0.009576px;}
.ls7_c00233{letter-spacing:0.014364px;}
.ls4_c00233{letter-spacing:0.014400px;}
.lsa_c00233{letter-spacing:0.019152px;}
.ls5_c00233{letter-spacing:0.021600px;}
.lsb_c00233{letter-spacing:0.028728px;}
.ls18_c00233{letter-spacing:0.028800px;}
.lse_c00233{letter-spacing:0.033516px;}
.ls0_c00233{letter-spacing:0.036072px;}
.lsd_c00233{letter-spacing:0.038304px;}
.ls17_c00233{letter-spacing:0.043200px;}
.ls3_c00233{letter-spacing:0.054756px;}
.ls1a_c00233{letter-spacing:0.093600px;}
.lsc_c00233{letter-spacing:0.104040px;}
.ls8_c00233{letter-spacing:0.189360px;}
.ls9_c00233{letter-spacing:0.351360px;}
.ls1f_c00233{letter-spacing:0.353808px;}
.ls6_c00233{letter-spacing:11.796120px;}
.ls1_c00233{letter-spacing:17.498880px;}
.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;}
}
.ws3_c00233{word-spacing:-19.522188px;}
.ws0_c00233{word-spacing:-19.498752px;}
.ws2_c00233{word-spacing:-17.978400px;}
.ws4_c00233{word-spacing:-13.310640px;}
.ws5_c00233{word-spacing:-11.162448px;}
.ws6_c00233{word-spacing:-10.789200px;}
.ws1_c00233{word-spacing:-10.584756px;}
.ws7_c00233{word-spacing:-0.306612px;}
.ws9_c00233{word-spacing:-0.109368px;}
.ws2d_c00233{word-spacing:-0.019152px;}
.ws24_c00233{word-spacing:-0.015624px;}
.ws2f_c00233{word-spacing:-0.014364px;}
.ws2b_c00233{word-spacing:-0.009576px;}
.ws8_c00233{word-spacing:0.000000px;}
.ws2a_c00233{word-spacing:0.004788px;}
.ws2c_c00233{word-spacing:0.009576px;}
.ws2e_c00233{word-spacing:0.023940px;}
.ws23_c00233{word-spacing:0.043200px;}
.ws12_c00233{word-spacing:0.072000px;}
.ws1c_c00233{word-spacing:0.158400px;}
.ws28_c00233{word-spacing:0.669600px;}
.ws22_c00233{word-spacing:0.727200px;}
.ws14_c00233{word-spacing:1.087200px;}
.ws13_c00233{word-spacing:1.130400px;}
.ws1b_c00233{word-spacing:1.454400px;}
.ws1d_c00233{word-spacing:2.520000px;}
.ws11_c00233{word-spacing:3.931200px;}
.ws10_c00233{word-spacing:3.952800px;}
.wsc_c00233{word-spacing:3.996000px;}
.wsb_c00233{word-spacing:4.010400px;}
.ws25_c00233{word-spacing:6.516000px;}
.ws17_c00233{word-spacing:6.840000px;}
.ws19_c00233{word-spacing:6.854400px;}
.ws18_c00233{word-spacing:6.919200px;}
.ws1a_c00233{word-spacing:6.926400px;}
.ws29_c00233{word-spacing:9.043200px;}
.ws1e_c00233{word-spacing:10.461600px;}
.ws1f_c00233{word-spacing:10.519200px;}
.ws27_c00233{word-spacing:17.308800px;}
.ws26_c00233{word-spacing:17.359200px;}
.ws20_c00233{word-spacing:20.548800px;}
.wse_c00233{word-spacing:22.687200px;}
.wsd_c00233{word-spacing:22.730400px;}
.wsf_c00233{word-spacing:22.816800px;}
.wsa_c00233{word-spacing:23.421600px;}
.ws21_c00233{word-spacing:25.624800px;}
.ws16_c00233{word-spacing:28.418400px;}
.ws15_c00233{word-spacing:28.425600px;}
._0_c00233{margin-left:-1.022040px;}
._1_c00233{width:1.175292px;}
.fc0_c00233{color:rgb(0,0,0);}
.fs6_c00233{font-size:38.880000px;}
.fs4_c00233{font-size:42.120000px;}
.fs5_c00233{font-size:47.880000px;}
.fs2_c00233{font-size:54.000000px;}
.fs0_c00233{font-size:60.120000px;}
.fs1_c00233{font-size:72.000000px;}
.fs3_c00233{font-size:78.120000px;}
.y0_c00233{bottom:0.000000px;}
.y3_c00233{bottom:57.450450px;}
.y4_c00233{bottom:61.410450px;}
.y23_c00233{bottom:113.698470px;}
.y22_c00233{bottom:132.064230px;}
.y21_c00233{bottom:150.334230px;}
.y20_c00233{bottom:168.600450px;}
.y1f_c00233{bottom:183.810600px;}
.y1e_c00233{bottom:204.510600px;}
.y1d_c00233{bottom:225.210450px;}
.y1c_c00233{bottom:280.650450px;}
.y1b_c00233{bottom:315.120450px;}
.y1a_c00233{bottom:358.500450px;}
.y19_c00233{bottom:392.970450px;}
.y18_c00233{bottom:427.350450px;}
.y17_c00233{bottom:472.350450px;}
.y16_c00233{bottom:526.080450px;}
.y15_c00233{bottom:560.460450px;}
.y14_c00233{bottom:594.930450px;}
.y13_c00233{bottom:629.310450px;}
.y12_c00233{bottom:663.780450px;}
.y11_c00233{bottom:698.160450px;}
.y10_c00233{bottom:741.630450px;}
.yf_c00233{bottom:776.010450px;}
.ye_c00233{bottom:810.480450px;}
.yd_c00233{bottom:844.860450px;}
.yc_c00233{bottom:879.330450px;}
.yb_c00233{bottom:913.710450px;}
.ya_c00233{bottom:957.180450px;}
.y9_c00233{bottom:991.560450px;}
.y8_c00233{bottom:1026.030450px;}
.y7_c00233{bottom:1060.410450px;}
.y6_c00233{bottom:1094.880450px;}
.y5_c00233{bottom:1139.880450px;}
.y2_c00233{bottom:1173.810450px;}
.y1_c00233{bottom:1196.850450px;}
.h2_c00233{height:47.988281px;}
.h7_c00233{height:47.988881px;}
.h8_c00233{height:49.937344px;}
.h1_c00233{height:50.315273px;}
.h3_c00233{height:56.320312px;}
.h5_c00233{height:60.257812px;}
.h6_c00233{height:65.130820px;}
.h4_c00233{height:81.476719px;}
.h0_c00233{height:1263.000000px;}
.w1_c00233{width:892.500000px;}
.w0_c00233{width:892.830000px;}
.x0_c00233{left:0.000000px;}
.x2_c00233{left:127.620000px;}
.x5_c00233{left:180.720000px;}
.x4_c00233{left:435.240000px;}
.x3_c00233{left:446.490000px;}
.x1_c00233{left:490.770000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.v1_c00233{vertical-align:26.560000pt;}
.ls10_c00233{letter-spacing:-0.134400pt;}
.ls1c_c00233{letter-spacing:-0.069440pt;}
.ls12_c00233{letter-spacing:-0.048608pt;}
.ls14_c00233{letter-spacing:-0.044800pt;}
.ls15_c00233{letter-spacing:-0.032000pt;}
.ls11_c00233{letter-spacing:-0.027776pt;}
.ls13_c00233{letter-spacing:-0.019200pt;}
.ls21_c00233{letter-spacing:-0.017280pt;}
.ls19_c00233{letter-spacing:-0.012800pt;}
.ls20_c00233{letter-spacing:-0.010368pt;}
.ls1b_c00233{letter-spacing:-0.006944pt;}
.ls1d_c00233{letter-spacing:-0.006912pt;}
.ls16_c00233{letter-spacing:-0.006400pt;}
.ls23_c00233{letter-spacing:-0.004256pt;}
.ls1e_c00233{letter-spacing:-0.003456pt;}
.lsf_c00233{letter-spacing:0.000000pt;}
.ls2_c00233{letter-spacing:0.006400pt;}
.ls22_c00233{letter-spacing:0.008512pt;}
.ls7_c00233{letter-spacing:0.012768pt;}
.ls4_c00233{letter-spacing:0.012800pt;}
.lsa_c00233{letter-spacing:0.017024pt;}
.ls5_c00233{letter-spacing:0.019200pt;}
.lsb_c00233{letter-spacing:0.025536pt;}
.ls18_c00233{letter-spacing:0.025600pt;}
.lse_c00233{letter-spacing:0.029792pt;}
.ls0_c00233{letter-spacing:0.032064pt;}
.lsd_c00233{letter-spacing:0.034048pt;}
.ls17_c00233{letter-spacing:0.038400pt;}
.ls3_c00233{letter-spacing:0.048672pt;}
.ls1a_c00233{letter-spacing:0.083200pt;}
.lsc_c00233{letter-spacing:0.092480pt;}
.ls8_c00233{letter-spacing:0.168320pt;}
.ls9_c00233{letter-spacing:0.312320pt;}
.ls1f_c00233{letter-spacing:0.314496pt;}
.ls6_c00233{letter-spacing:10.485440pt;}
.ls1_c00233{letter-spacing:15.554560pt;}
.ws3_c00233{word-spacing:-17.353056pt;}
.ws0_c00233{word-spacing:-17.332224pt;}
.ws2_c00233{word-spacing:-15.980800pt;}
.ws4_c00233{word-spacing:-11.831680pt;}
.ws5_c00233{word-spacing:-9.922176pt;}
.ws6_c00233{word-spacing:-9.590400pt;}
.ws1_c00233{word-spacing:-9.408672pt;}
.ws7_c00233{word-spacing:-0.272544pt;}
.ws9_c00233{word-spacing:-0.097216pt;}
.ws2d_c00233{word-spacing:-0.017024pt;}
.ws24_c00233{word-spacing:-0.013888pt;}
.ws2f_c00233{word-spacing:-0.012768pt;}
.ws2b_c00233{word-spacing:-0.008512pt;}
.ws8_c00233{word-spacing:0.000000pt;}
.ws2a_c00233{word-spacing:0.004256pt;}
.ws2c_c00233{word-spacing:0.008512pt;}
.ws2e_c00233{word-spacing:0.021280pt;}
.ws23_c00233{word-spacing:0.038400pt;}
.ws12_c00233{word-spacing:0.064000pt;}
.ws1c_c00233{word-spacing:0.140800pt;}
.ws28_c00233{word-spacing:0.595200pt;}
.ws22_c00233{word-spacing:0.646400pt;}
.ws14_c00233{word-spacing:0.966400pt;}
.ws13_c00233{word-spacing:1.004800pt;}
.ws1b_c00233{word-spacing:1.292800pt;}
.ws1d_c00233{word-spacing:2.240000pt;}
.ws11_c00233{word-spacing:3.494400pt;}
.ws10_c00233{word-spacing:3.513600pt;}
.wsc_c00233{word-spacing:3.552000pt;}
.wsb_c00233{word-spacing:3.564800pt;}
.ws25_c00233{word-spacing:5.792000pt;}
.ws17_c00233{word-spacing:6.080000pt;}
.ws19_c00233{word-spacing:6.092800pt;}
.ws18_c00233{word-spacing:6.150400pt;}
.ws1a_c00233{word-spacing:6.156800pt;}
.ws29_c00233{word-spacing:8.038400pt;}
.ws1e_c00233{word-spacing:9.299200pt;}
.ws1f_c00233{word-spacing:9.350400pt;}
.ws27_c00233{word-spacing:15.385600pt;}
.ws26_c00233{word-spacing:15.430400pt;}
.ws20_c00233{word-spacing:18.265600pt;}
.wse_c00233{word-spacing:20.166400pt;}
.wsd_c00233{word-spacing:20.204800pt;}
.wsf_c00233{word-spacing:20.281600pt;}
.wsa_c00233{word-spacing:20.819200pt;}
.ws21_c00233{word-spacing:22.777600pt;}
.ws16_c00233{word-spacing:25.260800pt;}
.ws15_c00233{word-spacing:25.267200pt;}
._0_c00233{margin-left:-0.908480pt;}
._1_c00233{width:1.044704pt;}
.fs6_c00233{font-size:34.560000pt;}
.fs4_c00233{font-size:37.440000pt;}
.fs5_c00233{font-size:42.560000pt;}
.fs2_c00233{font-size:48.000000pt;}
.fs0_c00233{font-size:53.440000pt;}
.fs1_c00233{font-size:64.000000pt;}
.fs3_c00233{font-size:69.440000pt;}
.y0_c00233{bottom:0.000000pt;}
.y3_c00233{bottom:51.067067pt;}
.y4_c00233{bottom:54.587067pt;}
.y23_c00233{bottom:101.065307pt;}
.y22_c00233{bottom:117.390427pt;}
.y21_c00233{bottom:133.630427pt;}
.y20_c00233{bottom:149.867067pt;}
.y1f_c00233{bottom:163.387200pt;}
.y1e_c00233{bottom:181.787200pt;}
.y1d_c00233{bottom:200.187067pt;}
.y1c_c00233{bottom:249.467067pt;}
.y1b_c00233{bottom:280.107067pt;}
.y1a_c00233{bottom:318.667067pt;}
.y19_c00233{bottom:349.307067pt;}
.y18_c00233{bottom:379.867067pt;}
.y17_c00233{bottom:419.867067pt;}
.y16_c00233{bottom:467.627067pt;}
.y15_c00233{bottom:498.187067pt;}
.y14_c00233{bottom:528.827067pt;}
.y13_c00233{bottom:559.387067pt;}
.y12_c00233{bottom:590.027067pt;}
.y11_c00233{bottom:620.587067pt;}
.y10_c00233{bottom:659.227067pt;}
.yf_c00233{bottom:689.787067pt;}
.ye_c00233{bottom:720.427067pt;}
.yd_c00233{bottom:750.987067pt;}
.yc_c00233{bottom:781.627067pt;}
.yb_c00233{bottom:812.187067pt;}
.ya_c00233{bottom:850.827067pt;}
.y9_c00233{bottom:881.387067pt;}
.y8_c00233{bottom:912.027067pt;}
.y7_c00233{bottom:942.587067pt;}
.y6_c00233{bottom:973.227067pt;}
.y5_c00233{bottom:1013.227067pt;}
.y2_c00233{bottom:1043.387067pt;}
.y1_c00233{bottom:1063.867067pt;}
.h2_c00233{height:42.656250pt;}
.h7_c00233{height:42.656783pt;}
.h8_c00233{height:44.388750pt;}
.h1_c00233{height:44.724687pt;}
.h3_c00233{height:50.062500pt;}
.h5_c00233{height:53.562500pt;}
.h6_c00233{height:57.894062pt;}
.h4_c00233{height:72.423750pt;}
.h0_c00233{height:1122.666667pt;}
.w1_c00233{width:793.333333pt;}
.w0_c00233{width:793.626667pt;}
.x0_c00233{left:0.000000pt;}
.x2_c00233{left:113.440000pt;}
.x5_c00233{left:160.640000pt;}
.x4_c00233{left:386.880000pt;}
.x3_c00233{left:396.880000pt;}
.x1_c00233{left:436.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_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_4656b617f162a5a8ec192d0a.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.100098;font-style:normal;font-weight:normal;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_55c62e9061f8d1c20acb6f95.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;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_c00234;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00234;src:url('chunks/assets/font_fe6640424842bedf98bfa51b.woff2')format("woff");}.ff4_c00234{font-family:ff4_c00234;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_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;}
.v1_c00234{vertical-align:15.840000px;}
.v2_c00234{vertical-align:29.880000px;}
.lsf_c00234{letter-spacing:-0.151200px;}
.ls13_c00234{letter-spacing:-0.072000px;}
.ls12_c00234{letter-spacing:-0.036000px;}
.ls16_c00234{letter-spacing:-0.028800px;}
.ls14_c00234{letter-spacing:-0.021600px;}
.ls10_c00234{letter-spacing:-0.014400px;}
.ls17_c00234{letter-spacing:-0.007776px;}
.ls15_c00234{letter-spacing:-0.007200px;}
.ls18_c00234{letter-spacing:-0.003888px;}
.lse_c00234{letter-spacing:0.000000px;}
.ls5_c00234{letter-spacing:0.007200px;}
.lsa_c00234{letter-spacing:0.014364px;}
.ls2_c00234{letter-spacing:0.014400px;}
.lsd_c00234{letter-spacing:0.019152px;}
.ls7_c00234{letter-spacing:0.023940px;}
.ls6_c00234{letter-spacing:0.028728px;}
.ls8_c00234{letter-spacing:0.033516px;}
.ls4_c00234{letter-spacing:0.036000px;}
.ls0_c00234{letter-spacing:0.048096px;}
.ls3_c00234{letter-spacing:0.054756px;}
.ls9_c00234{letter-spacing:0.086184px;}
.ls11_c00234{letter-spacing:0.093600px;}
.lsb_c00234{letter-spacing:0.189360px;}
.lsc_c00234{letter-spacing:0.351360px;}
.ls19_c00234{letter-spacing:0.353808px;}
.ls1_c00234{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00234{word-spacing:-18.036000px;}
.ws2_c00234{word-spacing:-13.310640px;}
.ws3_c00234{word-spacing:-11.162448px;}
.ws0_c00234{word-spacing:-10.584756px;}
.ws9_c00234{word-spacing:-0.086400px;}
.ws2b_c00234{word-spacing:-0.067032px;}
.ws27_c00234{word-spacing:-0.009576px;}
.ws28_c00234{word-spacing:-0.004788px;}
.ws5_c00234{word-spacing:0.000000px;}
.ws2c_c00234{word-spacing:0.004788px;}
.ws16_c00234{word-spacing:0.014400px;}
.ws4_c00234{word-spacing:0.042084px;}
.ws26_c00234{word-spacing:0.108000px;}
.ws2a_c00234{word-spacing:0.344736px;}
.ws29_c00234{word-spacing:0.354312px;}
.ws18_c00234{word-spacing:0.374400px;}
.ws21_c00234{word-spacing:1.116000px;}
.ws20_c00234{word-spacing:1.180800px;}
.wse_c00234{word-spacing:1.821600px;}
.wsd_c00234{word-spacing:1.836000px;}
.ws25_c00234{word-spacing:2.160000px;}
.ws24_c00234{word-spacing:2.196000px;}
.ws11_c00234{word-spacing:2.505600px;}
.ws10_c00234{word-spacing:4.687200px;}
.wsf_c00234{word-spacing:4.766400px;}
.ws1a_c00234{word-spacing:5.709600px;}
.ws19_c00234{word-spacing:5.716800px;}
.ws22_c00234{word-spacing:6.120000px;}
.ws23_c00234{word-spacing:6.199200px;}
.ws1f_c00234{word-spacing:7.545600px;}
.ws1e_c00234{word-spacing:7.552800px;}
.ws17_c00234{word-spacing:7.574400px;}
.wsb_c00234{word-spacing:8.316000px;}
.ws1d_c00234{word-spacing:8.323200px;}
.wsc_c00234{word-spacing:8.352000px;}
.ws1c_c00234{word-spacing:8.474400px;}
.ws6_c00234{word-spacing:9.345600px;}
.ws7_c00234{word-spacing:9.374400px;}
.ws8_c00234{word-spacing:9.446400px;}
.wsa_c00234{word-spacing:10.101600px;}
.ws12_c00234{word-spacing:13.312800px;}
.ws13_c00234{word-spacing:13.392000px;}
.ws15_c00234{word-spacing:14.025600px;}
.ws14_c00234{word-spacing:14.097600px;}
.ws1b_c00234{word-spacing:17.640000px;}
._0_c00234{margin-left:-1.322640px;}
._1_c00234{width:1.008000px;}
.fc0_c00234{color:rgb(0,0,0);}
.fs5_c00234{font-size:38.880000px;}
.fs3_c00234{font-size:42.120000px;}
.fs4_c00234{font-size:47.880000px;}
.fs1_c00234{font-size:54.000000px;}
.fs0_c00234{font-size:60.120000px;}
.fs2_c00234{font-size:72.000000px;}
.y0_c00234{bottom:0.000000px;}
.y3_c00234{bottom:57.450450px;}
.y24_c00234{bottom:113.708550px;}
.y23_c00234{bottom:132.070530px;}
.y22_c00234{bottom:150.336750px;}
.y21_c00234{bottom:164.102250px;}
.y20_c00234{bottom:182.464230px;}
.y1f_c00234{bottom:200.730450px;}
.y1e_c00234{bottom:215.940450px;}
.y1d_c00234{bottom:236.640450px;}
.y1c_c00234{bottom:257.340450px;}
.y1b_c00234{bottom:295.410450px;}
.y1a_c00234{bottom:338.790450px;}
.y19_c00234{bottom:382.260450px;}
.y18_c00234{bottom:416.640450px;}
.y17_c00234{bottom:451.110450px;}
.y16_c00234{bottom:485.490450px;}
.y15_c00234{bottom:528.960450px;}
.y14_c00234{bottom:563.340450px;}
.y13_c00234{bottom:597.810450px;}
.y12_c00234{bottom:632.190450px;}
.y11_c00234{bottom:675.660600px;}
.y10_c00234{bottom:710.040600px;}
.yf_c00234{bottom:744.510600px;}
.ye_c00234{bottom:778.890600px;}
.yd_c00234{bottom:822.360450px;}
.yc_c00234{bottom:856.740450px;}
.yb_c00234{bottom:891.210450px;}
.ya_c00234{bottom:925.590450px;}
.y9_c00234{bottom:960.060450px;}
.y8_c00234{bottom:994.440450px;}
.y7_c00234{bottom:1028.910450px;}
.y6_c00234{bottom:1063.290450px;}
.y5_c00234{bottom:1106.760450px;}
.y4_c00234{bottom:1141.140450px;}
.y2_c00234{bottom:1177.860450px;}
.y1_c00234{bottom:1196.850450px;}
.h7_c00234{height:47.988281px;}
.h8_c00234{height:49.937344px;}
.h1_c00234{height:50.315273px;}
.h2_c00234{height:56.320312px;}
.h5_c00234{height:60.257812px;}
.h6_c00234{height:65.130220px;}
.h4_c00234{height:65.130820px;}
.h3_c00234{height:72.160312px;}
.h0_c00234{height:1263.000000px;}
.w1_c00234{width:892.500000px;}
.w0_c00234{width:892.830000px;}
.x0_c00234{left:0.000000px;}
.x1_c00234{left:127.620000px;}
.x3_c00234{left:154.444770px;}
.x2_c00234{left:180.720000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.v1_c00234{vertical-align:14.080000pt;}
.v2_c00234{vertical-align:26.560000pt;}
.lsf_c00234{letter-spacing:-0.134400pt;}
.ls13_c00234{letter-spacing:-0.064000pt;}
.ls12_c00234{letter-spacing:-0.032000pt;}
.ls16_c00234{letter-spacing:-0.025600pt;}
.ls14_c00234{letter-spacing:-0.019200pt;}
.ls10_c00234{letter-spacing:-0.012800pt;}
.ls17_c00234{letter-spacing:-0.006912pt;}
.ls15_c00234{letter-spacing:-0.006400pt;}
.ls18_c00234{letter-spacing:-0.003456pt;}
.lse_c00234{letter-spacing:0.000000pt;}
.ls5_c00234{letter-spacing:0.006400pt;}
.lsa_c00234{letter-spacing:0.012768pt;}
.ls2_c00234{letter-spacing:0.012800pt;}
.lsd_c00234{letter-spacing:0.017024pt;}
.ls7_c00234{letter-spacing:0.021280pt;}
.ls6_c00234{letter-spacing:0.025536pt;}
.ls8_c00234{letter-spacing:0.029792pt;}
.ls4_c00234{letter-spacing:0.032000pt;}
.ls0_c00234{letter-spacing:0.042752pt;}
.ls3_c00234{letter-spacing:0.048672pt;}
.ls9_c00234{letter-spacing:0.076608pt;}
.ls11_c00234{letter-spacing:0.083200pt;}
.lsb_c00234{letter-spacing:0.168320pt;}
.lsc_c00234{letter-spacing:0.312320pt;}
.ls19_c00234{letter-spacing:0.314496pt;}
.ls1_c00234{letter-spacing:1077.440000pt;}
.ws1_c00234{word-spacing:-16.032000pt;}
.ws2_c00234{word-spacing:-11.831680pt;}
.ws3_c00234{word-spacing:-9.922176pt;}
.ws0_c00234{word-spacing:-9.408672pt;}
.ws9_c00234{word-spacing:-0.076800pt;}
.ws2b_c00234{word-spacing:-0.059584pt;}
.ws27_c00234{word-spacing:-0.008512pt;}
.ws28_c00234{word-spacing:-0.004256pt;}
.ws5_c00234{word-spacing:0.000000pt;}
.ws2c_c00234{word-spacing:0.004256pt;}
.ws16_c00234{word-spacing:0.012800pt;}
.ws4_c00234{word-spacing:0.037408pt;}
.ws26_c00234{word-spacing:0.096000pt;}
.ws2a_c00234{word-spacing:0.306432pt;}
.ws29_c00234{word-spacing:0.314944pt;}
.ws18_c00234{word-spacing:0.332800pt;}
.ws21_c00234{word-spacing:0.992000pt;}
.ws20_c00234{word-spacing:1.049600pt;}
.wse_c00234{word-spacing:1.619200pt;}
.wsd_c00234{word-spacing:1.632000pt;}
.ws25_c00234{word-spacing:1.920000pt;}
.ws24_c00234{word-spacing:1.952000pt;}
.ws11_c00234{word-spacing:2.227200pt;}
.ws10_c00234{word-spacing:4.166400pt;}
.wsf_c00234{word-spacing:4.236800pt;}
.ws1a_c00234{word-spacing:5.075200pt;}
.ws19_c00234{word-spacing:5.081600pt;}
.ws22_c00234{word-spacing:5.440000pt;}
.ws23_c00234{word-spacing:5.510400pt;}
.ws1f_c00234{word-spacing:6.707200pt;}
.ws1e_c00234{word-spacing:6.713600pt;}
.ws17_c00234{word-spacing:6.732800pt;}
.wsb_c00234{word-spacing:7.392000pt;}
.ws1d_c00234{word-spacing:7.398400pt;}
.wsc_c00234{word-spacing:7.424000pt;}
.ws1c_c00234{word-spacing:7.532800pt;}
.ws6_c00234{word-spacing:8.307200pt;}
.ws7_c00234{word-spacing:8.332800pt;}
.ws8_c00234{word-spacing:8.396800pt;}
.wsa_c00234{word-spacing:8.979200pt;}
.ws12_c00234{word-spacing:11.833600pt;}
.ws13_c00234{word-spacing:11.904000pt;}
.ws15_c00234{word-spacing:12.467200pt;}
.ws14_c00234{word-spacing:12.531200pt;}
.ws1b_c00234{word-spacing:15.680000pt;}
._0_c00234{margin-left:-1.175680pt;}
._1_c00234{width:0.896000pt;}
.fs5_c00234{font-size:34.560000pt;}
.fs3_c00234{font-size:37.440000pt;}
.fs4_c00234{font-size:42.560000pt;}
.fs1_c00234{font-size:48.000000pt;}
.fs0_c00234{font-size:53.440000pt;}
.fs2_c00234{font-size:64.000000pt;}
.y0_c00234{bottom:0.000000pt;}
.y3_c00234{bottom:51.067067pt;}
.y24_c00234{bottom:101.074267pt;}
.y23_c00234{bottom:117.396027pt;}
.y22_c00234{bottom:133.632667pt;}
.y21_c00234{bottom:145.868667pt;}
.y20_c00234{bottom:162.190427pt;}
.y1f_c00234{bottom:178.427067pt;}
.y1e_c00234{bottom:191.947067pt;}
.y1d_c00234{bottom:210.347067pt;}
.y1c_c00234{bottom:228.747067pt;}
.y1b_c00234{bottom:262.587067pt;}
.y1a_c00234{bottom:301.147067pt;}
.y19_c00234{bottom:339.787067pt;}
.y18_c00234{bottom:370.347067pt;}
.y17_c00234{bottom:400.987067pt;}
.y16_c00234{bottom:431.547067pt;}
.y15_c00234{bottom:470.187067pt;}
.y14_c00234{bottom:500.747067pt;}
.y13_c00234{bottom:531.387067pt;}
.y12_c00234{bottom:561.947067pt;}
.y11_c00234{bottom:600.587200pt;}
.y10_c00234{bottom:631.147200pt;}
.yf_c00234{bottom:661.787200pt;}
.ye_c00234{bottom:692.347200pt;}
.yd_c00234{bottom:730.987067pt;}
.yc_c00234{bottom:761.547067pt;}
.yb_c00234{bottom:792.187067pt;}
.ya_c00234{bottom:822.747067pt;}
.y9_c00234{bottom:853.387067pt;}
.y8_c00234{bottom:883.947067pt;}
.y7_c00234{bottom:914.587067pt;}
.y6_c00234{bottom:945.147067pt;}
.y5_c00234{bottom:983.787067pt;}
.y4_c00234{bottom:1014.347067pt;}
.y2_c00234{bottom:1046.987067pt;}
.y1_c00234{bottom:1063.867067pt;}
.h7_c00234{height:42.656250pt;}
.h8_c00234{height:44.388750pt;}
.h1_c00234{height:44.724687pt;}
.h2_c00234{height:50.062500pt;}
.h5_c00234{height:53.562500pt;}
.h6_c00234{height:57.893529pt;}
.h4_c00234{height:57.894063pt;}
.h3_c00234{height:64.142500pt;}
.h0_c00234{height:1122.666667pt;}
.w1_c00234{width:793.333333pt;}
.w0_c00234{width:793.626667pt;}
.x0_c00234{left:0.000000pt;}
.x1_c00234{left:113.440000pt;}
.x3_c00234{left:137.284240pt;}
.x2_c00234{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_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_93a54f72e88cd9fcc6b14d47.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_d2e43fc65695051afb395cad.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00235{vertical-align:15.163920px;}
.v2_c00235{vertical-align:29.880000px;}
.lse_c00235{letter-spacing:-0.151200px;}
.ls10_c00235{letter-spacing:-0.084168px;}
.ls19_c00235{letter-spacing:-0.057600px;}
.ls17_c00235{letter-spacing:-0.036000px;}
.ls12_c00235{letter-spacing:-0.028800px;}
.ls14_c00235{letter-spacing:-0.021600px;}
.ls13_c00235{letter-spacing:-0.014400px;}
.ls15_c00235{letter-spacing:-0.007200px;}
.lsf_c00235{letter-spacing:-0.006012px;}
.lsd_c00235{letter-spacing:0.000000px;}
.ls6_c00235{letter-spacing:0.007200px;}
.ls18_c00235{letter-spacing:0.014400px;}
.ls3_c00235{letter-spacing:0.018036px;}
.lsa_c00235{letter-spacing:0.019152px;}
.ls8_c00235{letter-spacing:0.021600px;}
.ls9_c00235{letter-spacing:0.023940px;}
.lsb_c00235{letter-spacing:0.028728px;}
.lsc_c00235{letter-spacing:0.033516px;}
.ls7_c00235{letter-spacing:0.036000px;}
.ls0_c00235{letter-spacing:0.036072px;}
.ls1_c00235{letter-spacing:0.048096px;}
.ls5_c00235{letter-spacing:0.054756px;}
.ls2_c00235{letter-spacing:0.072144px;}
.ls16_c00235{letter-spacing:0.093600px;}
.ls4_c00235{letter-spacing:0.136080px;}
.ls11_c00235{letter-spacing:0.168336px;}
.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;}
}
.ws1_c00235{word-spacing:-18.000000px;}
.ws3_c00235{word-spacing:-17.985600px;}
.ws2_c00235{word-spacing:-10.584756px;}
.ws0_c00235{word-spacing:-9.856080px;}
.ws4_c00235{word-spacing:-0.306612px;}
.ws14_c00235{word-spacing:-0.086400px;}
.ws2e_c00235{word-spacing:-0.014364px;}
.ws2b_c00235{word-spacing:-0.009576px;}
.ws2a_c00235{word-spacing:-0.004788px;}
.ws5_c00235{word-spacing:0.000000px;}
.ws13_c00235{word-spacing:0.007200px;}
.ws1c_c00235{word-spacing:0.014400px;}
.ws15_c00235{word-spacing:0.036000px;}
.ws8_c00235{word-spacing:0.042084px;}
.ws21_c00235{word-spacing:0.050400px;}
.ws6_c00235{word-spacing:0.054108px;}
.ws16_c00235{word-spacing:0.079200px;}
.ws7_c00235{word-spacing:0.090180px;}
.wsc_c00235{word-spacing:0.174348px;}
.ws1a_c00235{word-spacing:0.705600px;}
.ws19_c00235{word-spacing:0.720000px;}
.ws2d_c00235{word-spacing:1.062936px;}
.ws26_c00235{word-spacing:1.778400px;}
.ws25_c00235{word-spacing:1.814400px;}
.ws2c_c00235{word-spacing:2.872800px;}
.ws22_c00235{word-spacing:2.887200px;}
.wse_c00235{word-spacing:3.715200px;}
.ws11_c00235{word-spacing:3.960000px;}
.ws29_c00235{word-spacing:3.967200px;}
.ws27_c00235{word-spacing:3.988800px;}
.ws12_c00235{word-spacing:4.010400px;}
.ws28_c00235{word-spacing:4.053600px;}
.wsd_c00235{word-spacing:4.708800px;}
.ws1b_c00235{word-spacing:6.148800px;}
.ws20_c00235{word-spacing:6.444000px;}
.ws1e_c00235{word-spacing:6.516000px;}
.ws1f_c00235{word-spacing:6.523200px;}
.ws1d_c00235{word-spacing:6.588000px;}
.ws10_c00235{word-spacing:8.964000px;}
.wsf_c00235{word-spacing:9.021600px;}
.ws9_c00235{word-spacing:11.537028px;}
.wsb_c00235{word-spacing:11.591136px;}
.wsa_c00235{word-spacing:11.615184px;}
.ws24_c00235{word-spacing:15.861600px;}
.ws23_c00235{word-spacing:15.876000px;}
.ws18_c00235{word-spacing:21.952800px;}
.ws17_c00235{word-spacing:22.046400px;}
._0_c00235{margin-left:-1.022040px;}
._1_c00235{width:1.152000px;}
._2_c00235{width:649.396440px;}
.fc0_c00235{color:rgb(0,0,0);}
.fs3_c00235{font-size:38.880000px;}
.fs4_c00235{font-size:42.120000px;}
.fs5_c00235{font-size:47.880000px;}
.fs2_c00235{font-size:54.000000px;}
.fs0_c00235{font-size:60.120000px;}
.fs1_c00235{font-size:72.000000px;}
.y0_c00235{bottom:0.000000px;}
.y3_c00235{bottom:57.450450px;}
.y4_c00235{bottom:61.410450px;}
.y28_c00235{bottom:113.718630px;}
.y27_c00235{bottom:132.080610px;}
.y26_c00235{bottom:145.846110px;}
.y25_c00235{bottom:159.611610px;}
.y24_c00235{bottom:177.973590px;}
.y23_c00235{bottom:196.239810px;}
.y22_c00235{bottom:214.506030px;}
.y21_c00235{bottom:232.868010px;}
.y20_c00235{bottom:251.134230px;}
.y1f_c00235{bottom:269.400450px;}
.y1e_c00235{bottom:284.610450px;}
.y1d_c00235{bottom:305.310450px;}
.y1c_c00235{bottom:326.010450px;}
.y1b_c00235{bottom:390.990600px;}
.y1a_c00235{bottom:425.460600px;}
.y19_c00235{bottom:468.840450px;}
.y18_c00235{bottom:503.310450px;}
.y17_c00235{bottom:537.690450px;}
.y16_c00235{bottom:581.160450px;}
.y15_c00235{bottom:615.540450px;}
.y14_c00235{bottom:650.010450px;}
.y13_c00235{bottom:693.390450px;}
.y12_c00235{bottom:727.860450px;}
.y11_c00235{bottom:771.240450px;}
.y10_c00235{bottom:805.710450px;}
.yf_c00235{bottom:840.090450px;}
.ye_c00235{bottom:874.560450px;}
.yd_c00235{bottom:917.940600px;}
.yc_c00235{bottom:952.410600px;}
.yb_c00235{bottom:986.790450px;}
.ya_c00235{bottom:1021.260450px;}
.y9_c00235{bottom:1055.640450px;}
.y8_c00235{bottom:1093.159470px;}
.y7_c00235{bottom:1109.993070px;}
.y6_c00235{bottom:1126.916850px;}
.y5_c00235{bottom:1143.750450px;}
.y2_c00235{bottom:1173.810450px;}
.y1_c00235{bottom:1196.850450px;}
.h2_c00235{height:47.988281px;}
.h8_c00235{height:49.937344px;}
.h1_c00235{height:50.315273px;}
.h4_c00235{height:50.359193px;}
.h3_c00235{height:56.320312px;}
.h5_c00235{height:60.257812px;}
.h7_c00235{height:65.130220px;}
.h6_c00235{height:65.130820px;}
.h0_c00235{height:1263.000000px;}
.w1_c00235{width:892.500000px;}
.w0_c00235{width:892.830000px;}
.x0_c00235{left:0.000000px;}
.x2_c00235{left:127.620000px;}
.x7_c00235{left:154.444770px;}
.x6_c00235{left:180.720000px;}
.x5_c00235{left:208.620000px;}
.x4_c00235{left:435.240000px;}
.x3_c00235{left:446.490000px;}
.x1_c00235{left:490.770000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.v1_c00235{vertical-align:13.479040pt;}
.v2_c00235{vertical-align:26.560000pt;}
.lse_c00235{letter-spacing:-0.134400pt;}
.ls10_c00235{letter-spacing:-0.074816pt;}
.ls19_c00235{letter-spacing:-0.051200pt;}
.ls17_c00235{letter-spacing:-0.032000pt;}
.ls12_c00235{letter-spacing:-0.025600pt;}
.ls14_c00235{letter-spacing:-0.019200pt;}
.ls13_c00235{letter-spacing:-0.012800pt;}
.ls15_c00235{letter-spacing:-0.006400pt;}
.lsf_c00235{letter-spacing:-0.005344pt;}
.lsd_c00235{letter-spacing:0.000000pt;}
.ls6_c00235{letter-spacing:0.006400pt;}
.ls18_c00235{letter-spacing:0.012800pt;}
.ls3_c00235{letter-spacing:0.016032pt;}
.lsa_c00235{letter-spacing:0.017024pt;}
.ls8_c00235{letter-spacing:0.019200pt;}
.ls9_c00235{letter-spacing:0.021280pt;}
.lsb_c00235{letter-spacing:0.025536pt;}
.lsc_c00235{letter-spacing:0.029792pt;}
.ls7_c00235{letter-spacing:0.032000pt;}
.ls0_c00235{letter-spacing:0.032064pt;}
.ls1_c00235{letter-spacing:0.042752pt;}
.ls5_c00235{letter-spacing:0.048672pt;}
.ls2_c00235{letter-spacing:0.064128pt;}
.ls16_c00235{letter-spacing:0.083200pt;}
.ls4_c00235{letter-spacing:0.120960pt;}
.ls11_c00235{letter-spacing:0.149632pt;}
.ws1_c00235{word-spacing:-16.000000pt;}
.ws3_c00235{word-spacing:-15.987200pt;}
.ws2_c00235{word-spacing:-9.408672pt;}
.ws0_c00235{word-spacing:-8.760960pt;}
.ws4_c00235{word-spacing:-0.272544pt;}
.ws14_c00235{word-spacing:-0.076800pt;}
.ws2e_c00235{word-spacing:-0.012768pt;}
.ws2b_c00235{word-spacing:-0.008512pt;}
.ws2a_c00235{word-spacing:-0.004256pt;}
.ws5_c00235{word-spacing:0.000000pt;}
.ws13_c00235{word-spacing:0.006400pt;}
.ws1c_c00235{word-spacing:0.012800pt;}
.ws15_c00235{word-spacing:0.032000pt;}
.ws8_c00235{word-spacing:0.037408pt;}
.ws21_c00235{word-spacing:0.044800pt;}
.ws6_c00235{word-spacing:0.048096pt;}
.ws16_c00235{word-spacing:0.070400pt;}
.ws7_c00235{word-spacing:0.080160pt;}
.wsc_c00235{word-spacing:0.154976pt;}
.ws1a_c00235{word-spacing:0.627200pt;}
.ws19_c00235{word-spacing:0.640000pt;}
.ws2d_c00235{word-spacing:0.944832pt;}
.ws26_c00235{word-spacing:1.580800pt;}
.ws25_c00235{word-spacing:1.612800pt;}
.ws2c_c00235{word-spacing:2.553600pt;}
.ws22_c00235{word-spacing:2.566400pt;}
.wse_c00235{word-spacing:3.302400pt;}
.ws11_c00235{word-spacing:3.520000pt;}
.ws29_c00235{word-spacing:3.526400pt;}
.ws27_c00235{word-spacing:3.545600pt;}
.ws12_c00235{word-spacing:3.564800pt;}
.ws28_c00235{word-spacing:3.603200pt;}
.wsd_c00235{word-spacing:4.185600pt;}
.ws1b_c00235{word-spacing:5.465600pt;}
.ws20_c00235{word-spacing:5.728000pt;}
.ws1e_c00235{word-spacing:5.792000pt;}
.ws1f_c00235{word-spacing:5.798400pt;}
.ws1d_c00235{word-spacing:5.856000pt;}
.ws10_c00235{word-spacing:7.968000pt;}
.wsf_c00235{word-spacing:8.019200pt;}
.ws9_c00235{word-spacing:10.255136pt;}
.wsb_c00235{word-spacing:10.303232pt;}
.wsa_c00235{word-spacing:10.324608pt;}
.ws24_c00235{word-spacing:14.099200pt;}
.ws23_c00235{word-spacing:14.112000pt;}
.ws18_c00235{word-spacing:19.513600pt;}
.ws17_c00235{word-spacing:19.596800pt;}
._0_c00235{margin-left:-0.908480pt;}
._1_c00235{width:1.024000pt;}
._2_c00235{width:577.241280pt;}
.fs3_c00235{font-size:34.560000pt;}
.fs4_c00235{font-size:37.440000pt;}
.fs5_c00235{font-size:42.560000pt;}
.fs2_c00235{font-size:48.000000pt;}
.fs0_c00235{font-size:53.440000pt;}
.fs1_c00235{font-size:64.000000pt;}
.y0_c00235{bottom:0.000000pt;}
.y3_c00235{bottom:51.067067pt;}
.y4_c00235{bottom:54.587067pt;}
.y28_c00235{bottom:101.083227pt;}
.y27_c00235{bottom:117.404987pt;}
.y26_c00235{bottom:129.640987pt;}
.y25_c00235{bottom:141.876987pt;}
.y24_c00235{bottom:158.198747pt;}
.y23_c00235{bottom:174.435387pt;}
.y22_c00235{bottom:190.672027pt;}
.y21_c00235{bottom:206.993787pt;}
.y20_c00235{bottom:223.230427pt;}
.y1f_c00235{bottom:239.467067pt;}
.y1e_c00235{bottom:252.987067pt;}
.y1d_c00235{bottom:271.387067pt;}
.y1c_c00235{bottom:289.787067pt;}
.y1b_c00235{bottom:347.547200pt;}
.y1a_c00235{bottom:378.187200pt;}
.y19_c00235{bottom:416.747067pt;}
.y18_c00235{bottom:447.387067pt;}
.y17_c00235{bottom:477.947067pt;}
.y16_c00235{bottom:516.587067pt;}
.y15_c00235{bottom:547.147067pt;}
.y14_c00235{bottom:577.787067pt;}
.y13_c00235{bottom:616.347067pt;}
.y12_c00235{bottom:646.987067pt;}
.y11_c00235{bottom:685.547067pt;}
.y10_c00235{bottom:716.187067pt;}
.yf_c00235{bottom:746.747067pt;}
.ye_c00235{bottom:777.387067pt;}
.yd_c00235{bottom:815.947200pt;}
.yc_c00235{bottom:846.587200pt;}
.yb_c00235{bottom:877.147067pt;}
.ya_c00235{bottom:907.787067pt;}
.y9_c00235{bottom:938.347067pt;}
.y8_c00235{bottom:971.697307pt;}
.y7_c00235{bottom:986.660507pt;}
.y6_c00235{bottom:1001.703867pt;}
.y5_c00235{bottom:1016.667067pt;}
.y2_c00235{bottom:1043.387067pt;}
.y1_c00235{bottom:1063.867067pt;}
.h2_c00235{height:42.656250pt;}
.h8_c00235{height:44.388750pt;}
.h1_c00235{height:44.724687pt;}
.h4_c00235{height:44.763728pt;}
.h3_c00235{height:50.062500pt;}
.h5_c00235{height:53.562500pt;}
.h7_c00235{height:57.893529pt;}
.h6_c00235{height:57.894063pt;}
.h0_c00235{height:1122.666667pt;}
.w1_c00235{width:793.333333pt;}
.w0_c00235{width:793.626667pt;}
.x0_c00235{left:0.000000pt;}
.x2_c00235{left:113.440000pt;}
.x7_c00235{left:137.284240pt;}
.x6_c00235{left:160.640000pt;}
.x5_c00235{left:185.440000pt;}
.x4_c00235{left:386.880000pt;}
.x3_c00235{left:396.880000pt;}
.x1_c00235{left:436.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_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_c34b8f4c8ed65ed1a3839910.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.100098;font-style:normal;font-weight:normal;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_7c01c1baa77b77faf6f4fbf7.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;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_c00236;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_c414f5cfa2645e57d13a5ef4.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;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_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;}
.v1_c00236{vertical-align:15.840000px;}
.v3_c00236{vertical-align:24.120000px;}
.v2_c00236{vertical-align:29.880000px;}
.ls1f_c00236{letter-spacing:-0.192384px;}
.ls17_c00236{letter-spacing:-0.151200px;}
.ls1c_c00236{letter-spacing:-0.088452px;}
.ls27_c00236{letter-spacing:-0.047880px;}
.ls18_c00236{letter-spacing:-0.043200px;}
.ls20_c00236{letter-spacing:-0.036000px;}
.ls19_c00236{letter-spacing:-0.028800px;}
.ls1b_c00236{letter-spacing:-0.021600px;}
.ls26_c00236{letter-spacing:-0.019152px;}
.ls23_c00236{letter-spacing:-0.015552px;}
.ls22_c00236{letter-spacing:-0.014400px;}
.ls25_c00236{letter-spacing:-0.007776px;}
.ls1d_c00236{letter-spacing:-0.007200px;}
.ls16_c00236{letter-spacing:0.000000px;}
.ls14_c00236{letter-spacing:0.004788px;}
.ls6_c00236{letter-spacing:0.006012px;}
.lsa_c00236{letter-spacing:0.007200px;}
.ls1e_c00236{letter-spacing:0.012024px;}
.ls3_c00236{letter-spacing:0.014400px;}
.ls7_c00236{letter-spacing:0.018036px;}
.ls13_c00236{letter-spacing:0.019152px;}
.lsb_c00236{letter-spacing:0.021600px;}
.ls12_c00236{letter-spacing:0.023940px;}
.ls15_c00236{letter-spacing:0.028728px;}
.ls4_c00236{letter-spacing:0.028800px;}
.lsc_c00236{letter-spacing:0.036000px;}
.lsd_c00236{letter-spacing:0.038304px;}
.ls0_c00236{letter-spacing:0.048096px;}
.ls10_c00236{letter-spacing:0.052668px;}
.ls2_c00236{letter-spacing:0.054756px;}
.ls21_c00236{letter-spacing:0.057600px;}
.ls8_c00236{letter-spacing:0.060120px;}
.lse_c00236{letter-spacing:0.062244px;}
.ls5_c00236{letter-spacing:0.072000px;}
.ls1a_c00236{letter-spacing:0.093600px;}
.lsf_c00236{letter-spacing:0.104040px;}
.ls9_c00236{letter-spacing:0.136080px;}
.ls11_c00236{letter-spacing:0.307320px;}
.ls24_c00236{letter-spacing:0.361584px;}
.ls1_c00236{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00236{word-spacing:-10.800864px;}
.ws0_c00236{word-spacing:-10.584756px;}
.ws1_c00236{word-spacing:-9.856080px;}
.ws8_c00236{word-spacing:-0.086400px;}
.ws2f_c00236{word-spacing:-0.019152px;}
.ws31_c00236{word-spacing:-0.009576px;}
.ws1f_c00236{word-spacing:-0.007200px;}
.ws2d_c00236{word-spacing:-0.004788px;}
.ws4_c00236{word-spacing:0.000000px;}
.ws30_c00236{word-spacing:0.014364px;}
.ws26_c00236{word-spacing:0.014400px;}
.ws7_c00236{word-spacing:0.028800px;}
.ws6_c00236{word-spacing:0.036000px;}
.ws3_c00236{word-spacing:0.042084px;}
.ws20_c00236{word-spacing:0.064800px;}
.ws1c_c00236{word-spacing:0.072144px;}
.ws5_c00236{word-spacing:0.086400px;}
.ws2e_c00236{word-spacing:0.718200px;}
.ws23_c00236{word-spacing:1.058400px;}
.ws22_c00236{word-spacing:1.087200px;}
.ws2b_c00236{word-spacing:1.402884px;}
.ws29_c00236{word-spacing:1.417248px;}
.ws2a_c00236{word-spacing:1.474704px;}
.ws10_c00236{word-spacing:1.771200px;}
.ws11_c00236{word-spacing:1.800000px;}
.wsf_c00236{word-spacing:1.828800px;}
.ws2c_c00236{word-spacing:1.867320px;}
.ws13_c00236{word-spacing:3.225600px;}
.ws12_c00236{word-spacing:3.261600px;}
.ws14_c00236{word-spacing:3.268800px;}
.ws15_c00236{word-spacing:3.283200px;}
.ws18_c00236{word-spacing:3.909600px;}
.ws17_c00236{word-spacing:3.938400px;}
.wsa_c00236{word-spacing:4.291200px;}
.wsb_c00236{word-spacing:4.305600px;}
.wse_c00236{word-spacing:4.320000px;}
.ws1b_c00236{word-spacing:4.352688px;}
.wsc_c00236{word-spacing:4.651200px;}
.wsd_c00236{word-spacing:4.680000px;}
.ws16_c00236{word-spacing:5.047200px;}
.ws1e_c00236{word-spacing:7.567200px;}
.ws1d_c00236{word-spacing:7.617600px;}
.ws1a_c00236{word-spacing:9.793548px;}
.ws19_c00236{word-spacing:9.805572px;}
.ws28_c00236{word-spacing:10.394748px;}
.ws27_c00236{word-spacing:10.418688px;}
.ws9_c00236{word-spacing:10.828800px;}
.ws21_c00236{word-spacing:14.436000px;}
.ws25_c00236{word-spacing:20.462400px;}
.ws24_c00236{word-spacing:20.527200px;}
._2_c00236{margin-left:-28.440000px;}
._3_c00236{margin-left:-7.632000px;}
._4_c00236{margin-left:-4.680000px;}
._0_c00236{margin-left:-1.322640px;}
._1_c00236{width:1.080000px;}
._5_c00236{width:649.396440px;}
.fc0_c00236{color:rgb(0,0,0);}
.fs6_c00236{font-size:29.880000px;}
.fs4_c00236{font-size:38.880000px;}
.fs3_c00236{font-size:42.120000px;}
.fs5_c00236{font-size:47.880000px;}
.fs1_c00236{font-size:54.000000px;}
.fs0_c00236{font-size:60.120000px;}
.fs2_c00236{font-size:72.000000px;}
.y0_c00236{bottom:0.000000px;}
.y3_c00236{bottom:57.450450px;}
.y27_c00236{bottom:113.714850px;}
.y26_c00236{bottom:132.076830px;}
.y25_c00236{bottom:150.343050px;}
.y24_c00236{bottom:168.609270px;}
.y23_c00236{bottom:186.971250px;}
.y22_c00236{bottom:205.237470px;}
.y21_c00236{bottom:219.002970px;}
.y20_c00236{bottom:237.364950px;}
.y1f_c00236{bottom:251.134950px;}
.y1e_c00236{bottom:264.900450px;}
.y1d_c00236{bottom:280.110450px;}
.y1c_c00236{bottom:300.810450px;}
.y1b_c00236{bottom:321.510450px;}
.y1a_c00236{bottom:390.990450px;}
.y19_c00236{bottom:425.460450px;}
.y18_c00236{bottom:459.840450px;}
.y17_c00236{bottom:494.310450px;}
.y16_c00236{bottom:537.690450px;}
.y15_c00236{bottom:572.160450px;}
.y14_c00236{bottom:609.586320px;}
.y13_c00236{bottom:626.510100px;}
.y12_c00236{bottom:643.343700px;}
.y11_c00236{bottom:669.270450px;}
.y10_c00236{bottom:710.040450px;}
.yf_c00236{bottom:744.510450px;}
.ye_c00236{bottom:778.890450px;}
.yd_c00236{bottom:822.360450px;}
.yc_c00236{bottom:856.740450px;}
.yb_c00236{bottom:891.210450px;}
.ya_c00236{bottom:925.590450px;}
.y9_c00236{bottom:960.060450px;}
.y8_c00236{bottom:994.440450px;}
.y7_c00236{bottom:1028.910450px;}
.y6_c00236{bottom:1063.290450px;}
.y5_c00236{bottom:1106.760450px;}
.y4_c00236{bottom:1141.140450px;}
.y2_c00236{bottom:1177.860450px;}
.y1_c00236{bottom:1196.850450px;}
.h7_c00236{height:47.988281px;}
.h8_c00236{height:49.937344px;}
.h1_c00236{height:50.315273px;}
.h6_c00236{height:50.371793px;}
.h9_c00236{height:55.265906px;}
.h2_c00236{height:56.320312px;}
.h5_c00236{height:60.257812px;}
.h4_c00236{height:65.130820px;}
.h3_c00236{height:72.160312px;}
.h0_c00236{height:1263.000000px;}
.w1_c00236{width:892.500000px;}
.w0_c00236{width:892.830000px;}
.x0_c00236{left:0.000000px;}
.x1_c00236{left:127.620000px;}
.x3_c00236{left:154.620000px;}
.x2_c00236{left:180.720000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.v1_c00236{vertical-align:14.080000pt;}
.v3_c00236{vertical-align:21.440000pt;}
.v2_c00236{vertical-align:26.560000pt;}
.ls1f_c00236{letter-spacing:-0.171008pt;}
.ls17_c00236{letter-spacing:-0.134400pt;}
.ls1c_c00236{letter-spacing:-0.078624pt;}
.ls27_c00236{letter-spacing:-0.042560pt;}
.ls18_c00236{letter-spacing:-0.038400pt;}
.ls20_c00236{letter-spacing:-0.032000pt;}
.ls19_c00236{letter-spacing:-0.025600pt;}
.ls1b_c00236{letter-spacing:-0.019200pt;}
.ls26_c00236{letter-spacing:-0.017024pt;}
.ls23_c00236{letter-spacing:-0.013824pt;}
.ls22_c00236{letter-spacing:-0.012800pt;}
.ls25_c00236{letter-spacing:-0.006912pt;}
.ls1d_c00236{letter-spacing:-0.006400pt;}
.ls16_c00236{letter-spacing:0.000000pt;}
.ls14_c00236{letter-spacing:0.004256pt;}
.ls6_c00236{letter-spacing:0.005344pt;}
.lsa_c00236{letter-spacing:0.006400pt;}
.ls1e_c00236{letter-spacing:0.010688pt;}
.ls3_c00236{letter-spacing:0.012800pt;}
.ls7_c00236{letter-spacing:0.016032pt;}
.ls13_c00236{letter-spacing:0.017024pt;}
.lsb_c00236{letter-spacing:0.019200pt;}
.ls12_c00236{letter-spacing:0.021280pt;}
.ls15_c00236{letter-spacing:0.025536pt;}
.ls4_c00236{letter-spacing:0.025600pt;}
.lsc_c00236{letter-spacing:0.032000pt;}
.lsd_c00236{letter-spacing:0.034048pt;}
.ls0_c00236{letter-spacing:0.042752pt;}
.ls10_c00236{letter-spacing:0.046816pt;}
.ls2_c00236{letter-spacing:0.048672pt;}
.ls21_c00236{letter-spacing:0.051200pt;}
.ls8_c00236{letter-spacing:0.053440pt;}
.lse_c00236{letter-spacing:0.055328pt;}
.ls5_c00236{letter-spacing:0.064000pt;}
.ls1a_c00236{letter-spacing:0.083200pt;}
.lsf_c00236{letter-spacing:0.092480pt;}
.ls9_c00236{letter-spacing:0.120960pt;}
.ls11_c00236{letter-spacing:0.273173pt;}
.ls24_c00236{letter-spacing:0.321408pt;}
.ls1_c00236{letter-spacing:1077.440000pt;}
.ws2_c00236{word-spacing:-9.600768pt;}
.ws0_c00236{word-spacing:-9.408672pt;}
.ws1_c00236{word-spacing:-8.760960pt;}
.ws8_c00236{word-spacing:-0.076800pt;}
.ws2f_c00236{word-spacing:-0.017024pt;}
.ws31_c00236{word-spacing:-0.008512pt;}
.ws1f_c00236{word-spacing:-0.006400pt;}
.ws2d_c00236{word-spacing:-0.004256pt;}
.ws4_c00236{word-spacing:0.000000pt;}
.ws30_c00236{word-spacing:0.012768pt;}
.ws26_c00236{word-spacing:0.012800pt;}
.ws7_c00236{word-spacing:0.025600pt;}
.ws6_c00236{word-spacing:0.032000pt;}
.ws3_c00236{word-spacing:0.037408pt;}
.ws20_c00236{word-spacing:0.057600pt;}
.ws1c_c00236{word-spacing:0.064128pt;}
.ws5_c00236{word-spacing:0.076800pt;}
.ws2e_c00236{word-spacing:0.638400pt;}
.ws23_c00236{word-spacing:0.940800pt;}
.ws22_c00236{word-spacing:0.966400pt;}
.ws2b_c00236{word-spacing:1.247008pt;}
.ws29_c00236{word-spacing:1.259776pt;}
.ws2a_c00236{word-spacing:1.310848pt;}
.ws10_c00236{word-spacing:1.574400pt;}
.ws11_c00236{word-spacing:1.600000pt;}
.wsf_c00236{word-spacing:1.625600pt;}
.ws2c_c00236{word-spacing:1.659840pt;}
.ws13_c00236{word-spacing:2.867200pt;}
.ws12_c00236{word-spacing:2.899200pt;}
.ws14_c00236{word-spacing:2.905600pt;}
.ws15_c00236{word-spacing:2.918400pt;}
.ws18_c00236{word-spacing:3.475200pt;}
.ws17_c00236{word-spacing:3.500800pt;}
.wsa_c00236{word-spacing:3.814400pt;}
.wsb_c00236{word-spacing:3.827200pt;}
.wse_c00236{word-spacing:3.840000pt;}
.ws1b_c00236{word-spacing:3.869056pt;}
.wsc_c00236{word-spacing:4.134400pt;}
.wsd_c00236{word-spacing:4.160000pt;}
.ws16_c00236{word-spacing:4.486400pt;}
.ws1e_c00236{word-spacing:6.726400pt;}
.ws1d_c00236{word-spacing:6.771200pt;}
.ws1a_c00236{word-spacing:8.705376pt;}
.ws19_c00236{word-spacing:8.716064pt;}
.ws28_c00236{word-spacing:9.239776pt;}
.ws27_c00236{word-spacing:9.261056pt;}
.ws9_c00236{word-spacing:9.625600pt;}
.ws21_c00236{word-spacing:12.832000pt;}
.ws25_c00236{word-spacing:18.188800pt;}
.ws24_c00236{word-spacing:18.246400pt;}
._2_c00236{margin-left:-25.280000pt;}
._3_c00236{margin-left:-6.784000pt;}
._4_c00236{margin-left:-4.160000pt;}
._0_c00236{margin-left:-1.175680pt;}
._1_c00236{width:0.960000pt;}
._5_c00236{width:577.241280pt;}
.fs6_c00236{font-size:26.560000pt;}
.fs4_c00236{font-size:34.560000pt;}
.fs3_c00236{font-size:37.440000pt;}
.fs5_c00236{font-size:42.560000pt;}
.fs1_c00236{font-size:48.000000pt;}
.fs0_c00236{font-size:53.440000pt;}
.fs2_c00236{font-size:64.000000pt;}
.y0_c00236{bottom:0.000000pt;}
.y3_c00236{bottom:51.067067pt;}
.y27_c00236{bottom:101.079867pt;}
.y26_c00236{bottom:117.401627pt;}
.y25_c00236{bottom:133.638267pt;}
.y24_c00236{bottom:149.874907pt;}
.y23_c00236{bottom:166.196667pt;}
.y22_c00236{bottom:182.433307pt;}
.y21_c00236{bottom:194.669307pt;}
.y20_c00236{bottom:210.991067pt;}
.y1f_c00236{bottom:223.231067pt;}
.y1e_c00236{bottom:235.467067pt;}
.y1d_c00236{bottom:248.987067pt;}
.y1c_c00236{bottom:267.387067pt;}
.y1b_c00236{bottom:285.787067pt;}
.y1a_c00236{bottom:347.547067pt;}
.y19_c00236{bottom:378.187067pt;}
.y18_c00236{bottom:408.747067pt;}
.y17_c00236{bottom:439.387067pt;}
.y16_c00236{bottom:477.947067pt;}
.y15_c00236{bottom:508.587067pt;}
.y14_c00236{bottom:541.854507pt;}
.y13_c00236{bottom:556.897867pt;}
.y12_c00236{bottom:571.861067pt;}
.y11_c00236{bottom:594.907067pt;}
.y10_c00236{bottom:631.147067pt;}
.yf_c00236{bottom:661.787067pt;}
.ye_c00236{bottom:692.347067pt;}
.yd_c00236{bottom:730.987067pt;}
.yc_c00236{bottom:761.547067pt;}
.yb_c00236{bottom:792.187067pt;}
.ya_c00236{bottom:822.747067pt;}
.y9_c00236{bottom:853.387067pt;}
.y8_c00236{bottom:883.947067pt;}
.y7_c00236{bottom:914.587067pt;}
.y6_c00236{bottom:945.147067pt;}
.y5_c00236{bottom:983.787067pt;}
.y4_c00236{bottom:1014.347067pt;}
.y2_c00236{bottom:1046.987067pt;}
.y1_c00236{bottom:1063.867067pt;}
.h7_c00236{height:42.656250pt;}
.h8_c00236{height:44.388750pt;}
.h1_c00236{height:44.724687pt;}
.h6_c00236{height:44.774927pt;}
.h9_c00236{height:49.125250pt;}
.h2_c00236{height:50.062500pt;}
.h5_c00236{height:53.562500pt;}
.h4_c00236{height:57.894063pt;}
.h3_c00236{height:64.142500pt;}
.h0_c00236{height:1122.666667pt;}
.w1_c00236{width:793.333333pt;}
.w0_c00236{width:793.626667pt;}
.x0_c00236{left:0.000000pt;}
.x1_c00236{left:113.440000pt;}
.x3_c00236{left:137.440000pt;}
.x2_c00236{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_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_2caf284d1b7e134e21bd8052.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00237;src:url('chunks/assets/font_cb6e128c07038b6f385118a7.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00237;src:url('chunks/assets/font_2c11f5da564901e26cf6dfcd.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00237;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00237{font-family:ff5_c00237;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00237{vertical-align:15.190920px;}
.ls10_c00237{letter-spacing:-0.151200px;}
.ls12_c00237{letter-spacing:-0.070308px;}
.ls17_c00237{letter-spacing:-0.054108px;}
.ls15_c00237{letter-spacing:-0.039060px;}
.ls1a_c00237{letter-spacing:-0.036000px;}
.ls11_c00237{letter-spacing:-0.031248px;}
.ls14_c00237{letter-spacing:-0.028800px;}
.ls1b_c00237{letter-spacing:-0.024048px;}
.ls16_c00237{letter-spacing:-0.021600px;}
.ls18_c00237{letter-spacing:-0.018036px;}
.ls13_c00237{letter-spacing:-0.014400px;}
.ls19_c00237{letter-spacing:-0.007200px;}
.lsf_c00237{letter-spacing:0.000000px;}
.ls9_c00237{letter-spacing:0.006012px;}
.ls2_c00237{letter-spacing:0.007200px;}
.ls3_c00237{letter-spacing:0.014400px;}
.lsd_c00237{letter-spacing:0.018036px;}
.lse_c00237{letter-spacing:0.023940px;}
.ls6_c00237{letter-spacing:0.030060px;}
.ls0_c00237{letter-spacing:0.036072px;}
.lsa_c00237{letter-spacing:0.042084px;}
.lsb_c00237{letter-spacing:0.054108px;}
.ls5_c00237{letter-spacing:0.084168px;}
.lsc_c00237{letter-spacing:0.090180px;}
.ls7_c00237{letter-spacing:0.136080px;}
.ls8_c00237{letter-spacing:0.153720px;}
.ls4_c00237{letter-spacing:43.122240px;}
.ls1_c00237{letter-spacing:51.012360px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00237{word-spacing:-19.498752px;}
.ws1_c00237{word-spacing:-19.490940px;}
.ws2_c00237{word-spacing:-9.856080px;}
.ws3_c00237{word-spacing:-0.306612px;}
.ws29_c00237{word-spacing:-0.252504px;}
.wsb_c00237{word-spacing:-0.062496px;}
.wsa_c00237{word-spacing:-0.057600px;}
.ws5_c00237{word-spacing:-0.023436px;}
.wsf_c00237{word-spacing:-0.007200px;}
.ws2d_c00237{word-spacing:-0.004788px;}
.ws4_c00237{word-spacing:0.000000px;}
.ws1f_c00237{word-spacing:0.006012px;}
.ws1c_c00237{word-spacing:0.028800px;}
.ws28_c00237{word-spacing:0.060120px;}
.ws2b_c00237{word-spacing:0.072144px;}
.ws15_c00237{word-spacing:0.090180px;}
.ws2a_c00237{word-spacing:0.108216px;}
.ws26_c00237{word-spacing:0.360720px;}
.ws27_c00237{word-spacing:0.414828px;}
.ws14_c00237{word-spacing:1.496988px;}
.ws13_c00237{word-spacing:1.905804px;}
.ws12_c00237{word-spacing:1.941876px;}
.ws8_c00237{word-spacing:3.254400px;}
.ws9_c00237{word-spacing:3.268800px;}
.ws1b_c00237{word-spacing:3.276000px;}
.ws18_c00237{word-spacing:3.607200px;}
.wse_c00237{word-spacing:3.621600px;}
.ws11_c00237{word-spacing:3.649284px;}
.ws17_c00237{word-spacing:3.664800px;}
.ws25_c00237{word-spacing:3.997980px;}
.wsc_c00237{word-spacing:4.644000px;}
.wsd_c00237{word-spacing:4.680000px;}
.ws19_c00237{word-spacing:5.760000px;}
.ws1a_c00237{word-spacing:5.817600px;}
.ws10_c00237{word-spacing:6.174324px;}
.ws1e_c00237{word-spacing:7.574400px;}
.ws6_c00237{word-spacing:8.992800px;}
.ws20_c00237{word-spacing:9.060084px;}
.ws21_c00237{word-spacing:9.084132px;}
.ws22_c00237{word-spacing:9.114192px;}
.ws1d_c00237{word-spacing:11.527200px;}
.ws2c_c00237{word-spacing:11.567088px;}
.ws7_c00237{word-spacing:14.400000px;}
.ws23_c00237{word-spacing:15.168276px;}
.ws16_c00237{word-spacing:15.501600px;}
.ws24_c00237{word-spacing:15.528996px;}
._3_c00237{margin-left:-2.104200px;}
._0_c00237{margin-left:-1.022040px;}
._2_c00237{width:1.080000px;}
._1_c00237{width:185.760000px;}
.fc0_c00237{color:rgb(0,0,0);}
.fs4_c00237{font-size:38.880000px;}
.fs5_c00237{font-size:47.880000px;}
.fs2_c00237{font-size:54.000000px;}
.fs0_c00237{font-size:60.120000px;}
.fs1_c00237{font-size:72.000000px;}
.fs3_c00237{font-size:78.120000px;}
.y0_c00237{bottom:0.000000px;}
.y3_c00237{bottom:57.450450px;}
.y4_c00237{bottom:61.410450px;}
.y27_c00237{bottom:113.700450px;}
.y26_c00237{bottom:128.910450px;}
.y25_c00237{bottom:149.610450px;}
.y24_c00237{bottom:170.310450px;}
.y23_c00237{bottom:225.444990px;}
.y22_c00237{bottom:242.278590px;}
.y21_c00237{bottom:259.202370px;}
.y20_c00237{bottom:285.038940px;}
.y1f_c00237{bottom:301.962720px;}
.y1e_c00237{bottom:318.796320px;}
.y1d_c00237{bottom:335.720100px;}
.y1c_c00237{bottom:352.553700px;}
.y1b_c00237{bottom:378.480450px;}
.y1a_c00237{bottom:419.250450px;}
.y19_c00237{bottom:453.720450px;}
.y18_c00237{bottom:488.100450px;}
.y17_c00237{bottom:531.570450px;}
.y16_c00237{bottom:565.950450px;}
.y15_c00237{bottom:600.420450px;}
.y14_c00237{bottom:634.800450px;}
.y13_c00237{bottom:669.270450px;}
.y12_c00237{bottom:706.692720px;}
.y11_c00237{bottom:723.616500px;}
.y10_c00237{bottom:740.450100px;}
.yf_c00237{bottom:757.373880px;}
.ye_c00237{bottom:783.210450px;}
.yd_c00237{bottom:824.070450px;}
.yc_c00237{bottom:858.450450px;}
.yb_c00237{bottom:892.920450px;}
.ya_c00237{bottom:937.920450px;}
.y9_c00237{bottom:991.560450px;}
.y8_c00237{bottom:1026.030450px;}
.y7_c00237{bottom:1060.410450px;}
.y6_c00237{bottom:1094.880450px;}
.y5_c00237{bottom:1139.880450px;}
.y2_c00237{bottom:1173.810450px;}
.y1_c00237{bottom:1196.850450px;}
.h2_c00237{height:47.988281px;}
.h7_c00237{height:49.937344px;}
.h1_c00237{height:50.315273px;}
.h3_c00237{height:56.320312px;}
.h5_c00237{height:60.257812px;}
.h6_c00237{height:60.328733px;}
.h4_c00237{height:81.476719px;}
.h0_c00237{height:1263.000000px;}
.w1_c00237{width:892.500000px;}
.w0_c00237{width:892.830000px;}
.x0_c00237{left:0.000000px;}
.x2_c00237{left:127.620000px;}
.x6_c00237{left:154.620000px;}
.x5_c00237{left:180.720000px;}
.x4_c00237{left:435.240000px;}
.x3_c00237{left:446.490000px;}
.x1_c00237{left:490.770000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.v1_c00237{vertical-align:13.503040pt;}
.ls10_c00237{letter-spacing:-0.134400pt;}
.ls12_c00237{letter-spacing:-0.062496pt;}
.ls17_c00237{letter-spacing:-0.048096pt;}
.ls15_c00237{letter-spacing:-0.034720pt;}
.ls1a_c00237{letter-spacing:-0.032000pt;}
.ls11_c00237{letter-spacing:-0.027776pt;}
.ls14_c00237{letter-spacing:-0.025600pt;}
.ls1b_c00237{letter-spacing:-0.021376pt;}
.ls16_c00237{letter-spacing:-0.019200pt;}
.ls18_c00237{letter-spacing:-0.016032pt;}
.ls13_c00237{letter-spacing:-0.012800pt;}
.ls19_c00237{letter-spacing:-0.006400pt;}
.lsf_c00237{letter-spacing:0.000000pt;}
.ls9_c00237{letter-spacing:0.005344pt;}
.ls2_c00237{letter-spacing:0.006400pt;}
.ls3_c00237{letter-spacing:0.012800pt;}
.lsd_c00237{letter-spacing:0.016032pt;}
.lse_c00237{letter-spacing:0.021280pt;}
.ls6_c00237{letter-spacing:0.026720pt;}
.ls0_c00237{letter-spacing:0.032064pt;}
.lsa_c00237{letter-spacing:0.037408pt;}
.lsb_c00237{letter-spacing:0.048096pt;}
.ls5_c00237{letter-spacing:0.074816pt;}
.lsc_c00237{letter-spacing:0.080160pt;}
.ls7_c00237{letter-spacing:0.120960pt;}
.ls8_c00237{letter-spacing:0.136640pt;}
.ls4_c00237{letter-spacing:38.330880pt;}
.ls1_c00237{letter-spacing:45.344320pt;}
.ws0_c00237{word-spacing:-17.332224pt;}
.ws1_c00237{word-spacing:-17.325280pt;}
.ws2_c00237{word-spacing:-8.760960pt;}
.ws3_c00237{word-spacing:-0.272544pt;}
.ws29_c00237{word-spacing:-0.224448pt;}
.wsb_c00237{word-spacing:-0.055552pt;}
.wsa_c00237{word-spacing:-0.051200pt;}
.ws5_c00237{word-spacing:-0.020832pt;}
.wsf_c00237{word-spacing:-0.006400pt;}
.ws2d_c00237{word-spacing:-0.004256pt;}
.ws4_c00237{word-spacing:0.000000pt;}
.ws1f_c00237{word-spacing:0.005344pt;}
.ws1c_c00237{word-spacing:0.025600pt;}
.ws28_c00237{word-spacing:0.053440pt;}
.ws2b_c00237{word-spacing:0.064128pt;}
.ws15_c00237{word-spacing:0.080160pt;}
.ws2a_c00237{word-spacing:0.096192pt;}
.ws26_c00237{word-spacing:0.320640pt;}
.ws27_c00237{word-spacing:0.368736pt;}
.ws14_c00237{word-spacing:1.330656pt;}
.ws13_c00237{word-spacing:1.694048pt;}
.ws12_c00237{word-spacing:1.726112pt;}
.ws8_c00237{word-spacing:2.892800pt;}
.ws9_c00237{word-spacing:2.905600pt;}
.ws1b_c00237{word-spacing:2.912000pt;}
.ws18_c00237{word-spacing:3.206400pt;}
.wse_c00237{word-spacing:3.219200pt;}
.ws11_c00237{word-spacing:3.243808pt;}
.ws17_c00237{word-spacing:3.257600pt;}
.ws25_c00237{word-spacing:3.553760pt;}
.wsc_c00237{word-spacing:4.128000pt;}
.wsd_c00237{word-spacing:4.160000pt;}
.ws19_c00237{word-spacing:5.120000pt;}
.ws1a_c00237{word-spacing:5.171200pt;}
.ws10_c00237{word-spacing:5.488288pt;}
.ws1e_c00237{word-spacing:6.732800pt;}
.ws6_c00237{word-spacing:7.993600pt;}
.ws20_c00237{word-spacing:8.053408pt;}
.ws21_c00237{word-spacing:8.074784pt;}
.ws22_c00237{word-spacing:8.101504pt;}
.ws1d_c00237{word-spacing:10.246400pt;}
.ws2c_c00237{word-spacing:10.281856pt;}
.ws7_c00237{word-spacing:12.800000pt;}
.ws23_c00237{word-spacing:13.482912pt;}
.ws16_c00237{word-spacing:13.779200pt;}
.ws24_c00237{word-spacing:13.803552pt;}
._3_c00237{margin-left:-1.870400pt;}
._0_c00237{margin-left:-0.908480pt;}
._2_c00237{width:0.960000pt;}
._1_c00237{width:165.120000pt;}
.fs4_c00237{font-size:34.560000pt;}
.fs5_c00237{font-size:42.560000pt;}
.fs2_c00237{font-size:48.000000pt;}
.fs0_c00237{font-size:53.440000pt;}
.fs1_c00237{font-size:64.000000pt;}
.fs3_c00237{font-size:69.440000pt;}
.y0_c00237{bottom:0.000000pt;}
.y3_c00237{bottom:51.067067pt;}
.y4_c00237{bottom:54.587067pt;}
.y27_c00237{bottom:101.067067pt;}
.y26_c00237{bottom:114.587067pt;}
.y25_c00237{bottom:132.987067pt;}
.y24_c00237{bottom:151.387067pt;}
.y23_c00237{bottom:200.395547pt;}
.y22_c00237{bottom:215.358747pt;}
.y21_c00237{bottom:230.402107pt;}
.y20_c00237{bottom:253.367947pt;}
.y1f_c00237{bottom:268.411307pt;}
.y1e_c00237{bottom:283.374507pt;}
.y1d_c00237{bottom:298.417867pt;}
.y1c_c00237{bottom:313.381067pt;}
.y1b_c00237{bottom:336.427067pt;}
.y1a_c00237{bottom:372.667067pt;}
.y19_c00237{bottom:403.307067pt;}
.y18_c00237{bottom:433.867067pt;}
.y17_c00237{bottom:472.507067pt;}
.y16_c00237{bottom:503.067067pt;}
.y15_c00237{bottom:533.707067pt;}
.y14_c00237{bottom:564.267067pt;}
.y13_c00237{bottom:594.907067pt;}
.y12_c00237{bottom:628.171307pt;}
.y11_c00237{bottom:643.214667pt;}
.y10_c00237{bottom:658.177867pt;}
.yf_c00237{bottom:673.221227pt;}
.ye_c00237{bottom:696.187067pt;}
.yd_c00237{bottom:732.507067pt;}
.yc_c00237{bottom:763.067067pt;}
.yb_c00237{bottom:793.707067pt;}
.ya_c00237{bottom:833.707067pt;}
.y9_c00237{bottom:881.387067pt;}
.y8_c00237{bottom:912.027067pt;}
.y7_c00237{bottom:942.587067pt;}
.y6_c00237{bottom:973.227067pt;}
.y5_c00237{bottom:1013.227067pt;}
.y2_c00237{bottom:1043.387067pt;}
.y1_c00237{bottom:1063.867067pt;}
.h2_c00237{height:42.656250pt;}
.h7_c00237{height:44.388750pt;}
.h1_c00237{height:44.724687pt;}
.h3_c00237{height:50.062500pt;}
.h5_c00237{height:53.562500pt;}
.h6_c00237{height:53.625540pt;}
.h4_c00237{height:72.423750pt;}
.h0_c00237{height:1122.666667pt;}
.w1_c00237{width:793.333333pt;}
.w0_c00237{width:793.626667pt;}
.x0_c00237{left:0.000000pt;}
.x2_c00237{left:113.440000pt;}
.x6_c00237{left:137.440000pt;}
.x5_c00237{left:160.640000pt;}
.x4_c00237{left:386.880000pt;}
.x3_c00237{left:396.880000pt;}
.x1_c00237{left:436.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_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_2bd7302d5503c0a997c6bc7f.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.100098;font-style:normal;font-weight:normal;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_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;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_c00238;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00238{vertical-align:15.840000px;}
.v2_c00238{vertical-align:29.880000px;}
.ls15_c00238{letter-spacing:-0.273600px;}
.ls9_c00238{letter-spacing:-0.151200px;}
.ls11_c00238{letter-spacing:-0.043200px;}
.ls14_c00238{letter-spacing:-0.036000px;}
.ls12_c00238{letter-spacing:-0.028800px;}
.lsa_c00238{letter-spacing:-0.024048px;}
.ls16_c00238{letter-spacing:-0.021600px;}
.lse_c00238{letter-spacing:-0.014400px;}
.lsb_c00238{letter-spacing:-0.012024px;}
.ls10_c00238{letter-spacing:-0.007200px;}
.lsc_c00238{letter-spacing:-0.006012px;}
.ls8_c00238{letter-spacing:0.000000px;}
.ls5_c00238{letter-spacing:0.007200px;}
.ls17_c00238{letter-spacing:0.014400px;}
.ls4_c00238{letter-spacing:0.021600px;}
.ls6_c00238{letter-spacing:0.023940px;}
.ls7_c00238{letter-spacing:0.028728px;}
.lsf_c00238{letter-spacing:0.036000px;}
.ls0_c00238{letter-spacing:0.048096px;}
.ls3_c00238{letter-spacing:0.054756px;}
.ls13_c00238{letter-spacing:0.093600px;}
.ls2_c00238{letter-spacing:0.136080px;}
.lsd_c00238{letter-spacing:0.168336px;}
.ls1_c00238{letter-spacing:1212.120000px;}
.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:-10.584756px;}
.ws0_c00238{word-spacing:-9.856080px;}
.ws11_c00238{word-spacing:-0.093600px;}
.ws20_c00238{word-spacing:-0.086400px;}
.ws2e_c00238{word-spacing:-0.009576px;}
.ws2d_c00238{word-spacing:-0.004788px;}
.ws3_c00238{word-spacing:0.000000px;}
.ws28_c00238{word-spacing:0.014400px;}
.ws1f_c00238{word-spacing:0.036000px;}
.ws2_c00238{word-spacing:0.042084px;}
.ws17_c00238{word-spacing:0.086400px;}
.ws6_c00238{word-spacing:0.096192px;}
.ws16_c00238{word-spacing:0.100800px;}
.ws7_c00238{word-spacing:0.102204px;}
.ws1c_c00238{word-spacing:0.705600px;}
.ws1b_c00238{word-spacing:0.727200px;}
.ws18_c00238{word-spacing:2.109600px;}
.ws1d_c00238{word-spacing:2.116800px;}
.ws1e_c00238{word-spacing:2.181600px;}
.ws2c_c00238{word-spacing:2.520000px;}
.ws2b_c00238{word-spacing:2.584800px;}
.ws24_c00238{word-spacing:3.304800px;}
.ws25_c00238{word-spacing:3.384000px;}
.ws15_c00238{word-spacing:3.621600px;}
.ws12_c00238{word-spacing:3.664800px;}
.ws27_c00238{word-spacing:4.608000px;}
.ws23_c00238{word-spacing:4.644000px;}
.ws26_c00238{word-spacing:4.716000px;}
.ws22_c00238{word-spacing:4.730400px;}
.ws29_c00238{word-spacing:6.112800px;}
.ws2a_c00238{word-spacing:6.242400px;}
.wsa_c00238{word-spacing:9.813600px;}
.wsb_c00238{word-spacing:9.828000px;}
.wsc_c00238{word-spacing:9.907200px;}
.wse_c00238{word-spacing:11.188800px;}
.wsd_c00238{word-spacing:11.203200px;}
.ws19_c00238{word-spacing:11.887200px;}
.ws1a_c00238{word-spacing:11.952000px;}
.ws5_c00238{word-spacing:13.424796px;}
.ws4_c00238{word-spacing:13.436820px;}
.wsf_c00238{word-spacing:14.040000px;}
.ws10_c00238{word-spacing:14.054400px;}
.ws9_c00238{word-spacing:16.524000px;}
.ws21_c00238{word-spacing:16.538400px;}
.ws8_c00238{word-spacing:16.689600px;}
.ws14_c00238{word-spacing:19.404000px;}
.ws13_c00238{word-spacing:19.483200px;}
._0_c00238{margin-left:-1.322640px;}
._1_c00238{width:1.108800px;}
.fc0_c00238{color:rgb(0,0,0);}
.fs3_c00238{font-size:38.880000px;}
.fs4_c00238{font-size:42.120000px;}
.fs5_c00238{font-size:47.880000px;}
.fs1_c00238{font-size:54.000000px;}
.fs0_c00238{font-size:60.120000px;}
.fs2_c00238{font-size:72.000000px;}
.y0_c00238{bottom:0.000000px;}
.y3_c00238{bottom:57.450450px;}
.y23_c00238{bottom:113.706030px;}
.y22_c00238{bottom:132.068010px;}
.y21_c00238{bottom:150.334230px;}
.y20_c00238{bottom:168.600450px;}
.y1f_c00238{bottom:183.810600px;}
.y1e_c00238{bottom:204.510600px;}
.y1d_c00238{bottom:225.210450px;}
.y1c_c00238{bottom:287.040450px;}
.y1b_c00238{bottom:321.510450px;}
.y1a_c00238{bottom:355.890450px;}
.y19_c00238{bottom:399.360450px;}
.y18_c00238{bottom:433.740450px;}
.y17_c00238{bottom:468.210450px;}
.y16_c00238{bottom:502.590450px;}
.y15_c00238{bottom:537.060450px;}
.y14_c00238{bottom:580.440450px;}
.y13_c00238{bottom:614.910450px;}
.y12_c00238{bottom:649.290450px;}
.y11_c00238{bottom:683.760450px;}
.y10_c00238{bottom:718.140450px;}
.yf_c00238{bottom:761.610450px;}
.ye_c00238{bottom:795.990450px;}
.yd_c00238{bottom:839.460450px;}
.yc_c00238{bottom:873.840450px;}
.yb_c00238{bottom:908.310450px;}
.ya_c00238{bottom:951.690450px;}
.y9_c00238{bottom:986.160450px;}
.y8_c00238{bottom:1020.540450px;}
.y7_c00238{bottom:1055.010450px;}
.y6_c00238{bottom:1089.390450px;}
.y5_c00238{bottom:1126.916850px;}
.y4_c00238{bottom:1143.750450px;}
.y2_c00238{bottom:1177.860450px;}
.y1_c00238{bottom:1196.850450px;}
.h8_c00238{height:47.988281px;}
.h7_c00238{height:47.988881px;}
.h9_c00238{height:49.937344px;}
.h1_c00238{height:50.315273px;}
.h4_c00238{height:50.329673px;}
.h2_c00238{height:56.320312px;}
.h5_c00238{height:60.257812px;}
.h6_c00238{height:65.130820px;}
.h3_c00238{height:72.160312px;}
.h0_c00238{height:1263.000000px;}
.w1_c00238{width:892.500000px;}
.w0_c00238{width:892.830000px;}
.x0_c00238{left:0.000000px;}
.x1_c00238{left:127.620000px;}
.x2_c00238{left:180.810000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.v1_c00238{vertical-align:14.080000pt;}
.v2_c00238{vertical-align:26.560000pt;}
.ls15_c00238{letter-spacing:-0.243200pt;}
.ls9_c00238{letter-spacing:-0.134400pt;}
.ls11_c00238{letter-spacing:-0.038400pt;}
.ls14_c00238{letter-spacing:-0.032000pt;}
.ls12_c00238{letter-spacing:-0.025600pt;}
.lsa_c00238{letter-spacing:-0.021376pt;}
.ls16_c00238{letter-spacing:-0.019200pt;}
.lse_c00238{letter-spacing:-0.012800pt;}
.lsb_c00238{letter-spacing:-0.010688pt;}
.ls10_c00238{letter-spacing:-0.006400pt;}
.lsc_c00238{letter-spacing:-0.005344pt;}
.ls8_c00238{letter-spacing:0.000000pt;}
.ls5_c00238{letter-spacing:0.006400pt;}
.ls17_c00238{letter-spacing:0.012800pt;}
.ls4_c00238{letter-spacing:0.019200pt;}
.ls6_c00238{letter-spacing:0.021280pt;}
.ls7_c00238{letter-spacing:0.025536pt;}
.lsf_c00238{letter-spacing:0.032000pt;}
.ls0_c00238{letter-spacing:0.042752pt;}
.ls3_c00238{letter-spacing:0.048672pt;}
.ls13_c00238{letter-spacing:0.083200pt;}
.ls2_c00238{letter-spacing:0.120960pt;}
.lsd_c00238{letter-spacing:0.149632pt;}
.ls1_c00238{letter-spacing:1077.440000pt;}
.ws1_c00238{word-spacing:-9.408672pt;}
.ws0_c00238{word-spacing:-8.760960pt;}
.ws11_c00238{word-spacing:-0.083200pt;}
.ws20_c00238{word-spacing:-0.076800pt;}
.ws2e_c00238{word-spacing:-0.008512pt;}
.ws2d_c00238{word-spacing:-0.004256pt;}
.ws3_c00238{word-spacing:0.000000pt;}
.ws28_c00238{word-spacing:0.012800pt;}
.ws1f_c00238{word-spacing:0.032000pt;}
.ws2_c00238{word-spacing:0.037408pt;}
.ws17_c00238{word-spacing:0.076800pt;}
.ws6_c00238{word-spacing:0.085504pt;}
.ws16_c00238{word-spacing:0.089600pt;}
.ws7_c00238{word-spacing:0.090848pt;}
.ws1c_c00238{word-spacing:0.627200pt;}
.ws1b_c00238{word-spacing:0.646400pt;}
.ws18_c00238{word-spacing:1.875200pt;}
.ws1d_c00238{word-spacing:1.881600pt;}
.ws1e_c00238{word-spacing:1.939200pt;}
.ws2c_c00238{word-spacing:2.240000pt;}
.ws2b_c00238{word-spacing:2.297600pt;}
.ws24_c00238{word-spacing:2.937600pt;}
.ws25_c00238{word-spacing:3.008000pt;}
.ws15_c00238{word-spacing:3.219200pt;}
.ws12_c00238{word-spacing:3.257600pt;}
.ws27_c00238{word-spacing:4.096000pt;}
.ws23_c00238{word-spacing:4.128000pt;}
.ws26_c00238{word-spacing:4.192000pt;}
.ws22_c00238{word-spacing:4.204800pt;}
.ws29_c00238{word-spacing:5.433600pt;}
.ws2a_c00238{word-spacing:5.548800pt;}
.wsa_c00238{word-spacing:8.723200pt;}
.wsb_c00238{word-spacing:8.736000pt;}
.wsc_c00238{word-spacing:8.806400pt;}
.wse_c00238{word-spacing:9.945600pt;}
.wsd_c00238{word-spacing:9.958400pt;}
.ws19_c00238{word-spacing:10.566400pt;}
.ws1a_c00238{word-spacing:10.624000pt;}
.ws5_c00238{word-spacing:11.933152pt;}
.ws4_c00238{word-spacing:11.943840pt;}
.wsf_c00238{word-spacing:12.480000pt;}
.ws10_c00238{word-spacing:12.492800pt;}
.ws9_c00238{word-spacing:14.688000pt;}
.ws21_c00238{word-spacing:14.700800pt;}
.ws8_c00238{word-spacing:14.835200pt;}
.ws14_c00238{word-spacing:17.248000pt;}
.ws13_c00238{word-spacing:17.318400pt;}
._0_c00238{margin-left:-1.175680pt;}
._1_c00238{width:0.985600pt;}
.fs3_c00238{font-size:34.560000pt;}
.fs4_c00238{font-size:37.440000pt;}
.fs5_c00238{font-size:42.560000pt;}
.fs1_c00238{font-size:48.000000pt;}
.fs0_c00238{font-size:53.440000pt;}
.fs2_c00238{font-size:64.000000pt;}
.y0_c00238{bottom:0.000000pt;}
.y3_c00238{bottom:51.067067pt;}
.y23_c00238{bottom:101.072027pt;}
.y22_c00238{bottom:117.393787pt;}
.y21_c00238{bottom:133.630427pt;}
.y20_c00238{bottom:149.867067pt;}
.y1f_c00238{bottom:163.387200pt;}
.y1e_c00238{bottom:181.787200pt;}
.y1d_c00238{bottom:200.187067pt;}
.y1c_c00238{bottom:255.147067pt;}
.y1b_c00238{bottom:285.787067pt;}
.y1a_c00238{bottom:316.347067pt;}
.y19_c00238{bottom:354.987067pt;}
.y18_c00238{bottom:385.547067pt;}
.y17_c00238{bottom:416.187067pt;}
.y16_c00238{bottom:446.747067pt;}
.y15_c00238{bottom:477.387067pt;}
.y14_c00238{bottom:515.947067pt;}
.y13_c00238{bottom:546.587067pt;}
.y12_c00238{bottom:577.147067pt;}
.y11_c00238{bottom:607.787067pt;}
.y10_c00238{bottom:638.347067pt;}
.yf_c00238{bottom:676.987067pt;}
.ye_c00238{bottom:707.547067pt;}
.yd_c00238{bottom:746.187067pt;}
.yc_c00238{bottom:776.747067pt;}
.yb_c00238{bottom:807.387067pt;}
.ya_c00238{bottom:845.947067pt;}
.y9_c00238{bottom:876.587067pt;}
.y8_c00238{bottom:907.147067pt;}
.y7_c00238{bottom:937.787067pt;}
.y6_c00238{bottom:968.347067pt;}
.y5_c00238{bottom:1001.703867pt;}
.y4_c00238{bottom:1016.667067pt;}
.y2_c00238{bottom:1046.987067pt;}
.y1_c00238{bottom:1063.867067pt;}
.h8_c00238{height:42.656250pt;}
.h7_c00238{height:42.656783pt;}
.h9_c00238{height:44.388750pt;}
.h1_c00238{height:44.724687pt;}
.h4_c00238{height:44.737488pt;}
.h2_c00238{height:50.062500pt;}
.h5_c00238{height:53.562500pt;}
.h6_c00238{height:57.894062pt;}
.h3_c00238{height:64.142500pt;}
.h0_c00238{height:1122.666667pt;}
.w1_c00238{width:793.333333pt;}
.w0_c00238{width:793.626667pt;}
.x0_c00238{left:0.000000pt;}
.x1_c00238{left:113.440000pt;}
.x2_c00238{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_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_c44f4d8b5a51587e89716737.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00239;src:url('chunks/assets/font_d9e7aea4e8c0ee894c4e09ef.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00239{vertical-align:29.880000px;}
.ls9_c00239{letter-spacing:-0.151200px;}
.lsf_c00239{letter-spacing:-0.064800px;}
.lse_c00239{letter-spacing:-0.036000px;}
.lsc_c00239{letter-spacing:-0.028800px;}
.lsd_c00239{letter-spacing:-0.021600px;}
.lsa_c00239{letter-spacing:-0.014400px;}
.lsb_c00239{letter-spacing:-0.007200px;}
.ls8_c00239{letter-spacing:0.000000px;}
.ls2_c00239{letter-spacing:0.007200px;}
.ls5_c00239{letter-spacing:0.014400px;}
.ls3_c00239{letter-spacing:0.021600px;}
.ls6_c00239{letter-spacing:0.023940px;}
.ls7_c00239{letter-spacing:0.033516px;}
.ls4_c00239{letter-spacing:0.036000px;}
.ls0_c00239{letter-spacing:0.036072px;}
.ls1_c00239{letter-spacing:0.054756px;}
.ls10_c00239{letter-spacing:0.093600px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00239{word-spacing:-10.584756px;}
.ws1_c00239{word-spacing:-0.306612px;}
.ws22_c00239{word-spacing:-0.093600px;}
.ws1c_c00239{word-spacing:-0.086400px;}
.ws2e_c00239{word-spacing:-0.014364px;}
.ws2f_c00239{word-spacing:-0.009576px;}
.wsf_c00239{word-spacing:-0.007200px;}
.ws2d_c00239{word-spacing:-0.004788px;}
.ws2_c00239{word-spacing:0.000000px;}
.ws21_c00239{word-spacing:0.014400px;}
.ws2c_c00239{word-spacing:0.021600px;}
.ws1b_c00239{word-spacing:0.043200px;}
.wse_c00239{word-spacing:0.079200px;}
.wsb_c00239{word-spacing:0.720000px;}
.wsa_c00239{word-spacing:0.727200px;}
.ws11_c00239{word-spacing:2.469600px;}
.ws10_c00239{word-spacing:2.534400px;}
.ws1f_c00239{word-spacing:2.563200px;}
.ws20_c00239{word-spacing:2.599200px;}
.ws1a_c00239{word-spacing:3.607200px;}
.ws19_c00239{word-spacing:3.679200px;}
.ws2a_c00239{word-spacing:3.967200px;}
.ws29_c00239{word-spacing:4.284000px;}
.ws28_c00239{word-spacing:4.334400px;}
.ws27_c00239{word-spacing:4.348800px;}
.ws1e_c00239{word-spacing:4.579200px;}
.ws1d_c00239{word-spacing:4.651200px;}
.ws13_c00239{word-spacing:6.120000px;}
.ws12_c00239{word-spacing:6.156000px;}
.ws14_c00239{word-spacing:7.207200px;}
.ws15_c00239{word-spacing:7.264800px;}
.ws23_c00239{word-spacing:8.625600px;}
.ws24_c00239{word-spacing:8.683200px;}
.ws8_c00239{word-spacing:10.461600px;}
.ws9_c00239{word-spacing:10.476000px;}
.ws17_c00239{word-spacing:10.850400px;}
.ws18_c00239{word-spacing:10.929600px;}
.ws7_c00239{word-spacing:11.527200px;}
.ws6_c00239{word-spacing:11.606400px;}
.ws16_c00239{word-spacing:12.247200px;}
.ws26_c00239{word-spacing:13.680000px;}
.ws25_c00239{word-spacing:13.687200px;}
.wsd_c00239{word-spacing:14.536800px;}
.wsc_c00239{word-spacing:14.558400px;}
.ws3_c00239{word-spacing:15.134400px;}
.ws4_c00239{word-spacing:15.487200px;}
.ws5_c00239{word-spacing:15.494400px;}
.ws2b_c00239{word-spacing:21.261600px;}
._0_c00239{margin-left:-1.022040px;}
._1_c00239{width:1.008000px;}
.fc0_c00239{color:rgb(0,0,0);}
.fs3_c00239{font-size:42.120000px;}
.fs4_c00239{font-size:47.880000px;}
.fs2_c00239{font-size:54.000000px;}
.fs0_c00239{font-size:60.120000px;}
.fs1_c00239{font-size:72.000000px;}
.y0_c00239{bottom:0.000000px;}
.y3_c00239{bottom:57.450450px;}
.y4_c00239{bottom:61.410450px;}
.y27_c00239{bottom:109.303410px;}
.y26_c00239{bottom:127.665390px;}
.y25_c00239{bottom:145.931610px;}
.y24_c00239{bottom:164.197830px;}
.y23_c00239{bottom:182.559810px;}
.y22_c00239{bottom:200.826030px;}
.y21_c00239{bottom:219.092250px;}
.y20_c00239{bottom:237.454230px;}
.y1f_c00239{bottom:255.720450px;}
.y1e_c00239{bottom:270.930450px;}
.y1d_c00239{bottom:291.630450px;}
.y1c_c00239{bottom:312.330600px;}
.y1b_c00239{bottom:356.790600px;}
.y1a_c00239{bottom:391.260600px;}
.y19_c00239{bottom:425.640600px;}
.y18_c00239{bottom:460.110450px;}
.y17_c00239{bottom:494.490450px;}
.y16_c00239{bottom:528.960450px;}
.y15_c00239{bottom:572.340450px;}
.y14_c00239{bottom:606.810450px;}
.y13_c00239{bottom:641.190450px;}
.y12_c00239{bottom:684.660600px;}
.y11_c00239{bottom:719.040600px;}
.y10_c00239{bottom:753.510600px;}
.yf_c00239{bottom:787.890600px;}
.ye_c00239{bottom:822.360450px;}
.yd_c00239{bottom:856.740450px;}
.yc_c00239{bottom:891.210450px;}
.yb_c00239{bottom:934.590450px;}
.ya_c00239{bottom:969.060450px;}
.y9_c00239{bottom:1003.440450px;}
.y8_c00239{bottom:1037.910450px;}
.y7_c00239{bottom:1072.290450px;}
.y6_c00239{bottom:1106.760450px;}
.y5_c00239{bottom:1141.140450px;}
.y2_c00239{bottom:1173.810450px;}
.y1_c00239{bottom:1196.850450px;}
.h2_c00239{height:47.988281px;}
.h8_c00239{height:49.937344px;}
.h1_c00239{height:50.315273px;}
.h3_c00239{height:56.320312px;}
.h4_c00239{height:60.257812px;}
.h6_c00239{height:65.130220px;}
.h5_c00239{height:65.130820px;}
.h7_c00239{height:65.131420px;}
.h0_c00239{height:1263.000000px;}
.w1_c00239{width:892.500000px;}
.w0_c00239{width:892.830000px;}
.x0_c00239{left:0.000000px;}
.x2_c00239{left:127.620000px;}
.x5_c00239{left:180.720000px;}
.x4_c00239{left:435.240000px;}
.x3_c00239{left:446.490000px;}
.x1_c00239{left:490.770000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.v1_c00239{vertical-align:26.560000pt;}
.ls9_c00239{letter-spacing:-0.134400pt;}
.lsf_c00239{letter-spacing:-0.057600pt;}
.lse_c00239{letter-spacing:-0.032000pt;}
.lsc_c00239{letter-spacing:-0.025600pt;}
.lsd_c00239{letter-spacing:-0.019200pt;}
.lsa_c00239{letter-spacing:-0.012800pt;}
.lsb_c00239{letter-spacing:-0.006400pt;}
.ls8_c00239{letter-spacing:0.000000pt;}
.ls2_c00239{letter-spacing:0.006400pt;}
.ls5_c00239{letter-spacing:0.012800pt;}
.ls3_c00239{letter-spacing:0.019200pt;}
.ls6_c00239{letter-spacing:0.021280pt;}
.ls7_c00239{letter-spacing:0.029792pt;}
.ls4_c00239{letter-spacing:0.032000pt;}
.ls0_c00239{letter-spacing:0.032064pt;}
.ls1_c00239{letter-spacing:0.048672pt;}
.ls10_c00239{letter-spacing:0.083200pt;}
.ws0_c00239{word-spacing:-9.408672pt;}
.ws1_c00239{word-spacing:-0.272544pt;}
.ws22_c00239{word-spacing:-0.083200pt;}
.ws1c_c00239{word-spacing:-0.076800pt;}
.ws2e_c00239{word-spacing:-0.012768pt;}
.ws2f_c00239{word-spacing:-0.008512pt;}
.wsf_c00239{word-spacing:-0.006400pt;}
.ws2d_c00239{word-spacing:-0.004256pt;}
.ws2_c00239{word-spacing:0.000000pt;}
.ws21_c00239{word-spacing:0.012800pt;}
.ws2c_c00239{word-spacing:0.019200pt;}
.ws1b_c00239{word-spacing:0.038400pt;}
.wse_c00239{word-spacing:0.070400pt;}
.wsb_c00239{word-spacing:0.640000pt;}
.wsa_c00239{word-spacing:0.646400pt;}
.ws11_c00239{word-spacing:2.195200pt;}
.ws10_c00239{word-spacing:2.252800pt;}
.ws1f_c00239{word-spacing:2.278400pt;}
.ws20_c00239{word-spacing:2.310400pt;}
.ws1a_c00239{word-spacing:3.206400pt;}
.ws19_c00239{word-spacing:3.270400pt;}
.ws2a_c00239{word-spacing:3.526400pt;}
.ws29_c00239{word-spacing:3.808000pt;}
.ws28_c00239{word-spacing:3.852800pt;}
.ws27_c00239{word-spacing:3.865600pt;}
.ws1e_c00239{word-spacing:4.070400pt;}
.ws1d_c00239{word-spacing:4.134400pt;}
.ws13_c00239{word-spacing:5.440000pt;}
.ws12_c00239{word-spacing:5.472000pt;}
.ws14_c00239{word-spacing:6.406400pt;}
.ws15_c00239{word-spacing:6.457600pt;}
.ws23_c00239{word-spacing:7.667200pt;}
.ws24_c00239{word-spacing:7.718400pt;}
.ws8_c00239{word-spacing:9.299200pt;}
.ws9_c00239{word-spacing:9.312000pt;}
.ws17_c00239{word-spacing:9.644800pt;}
.ws18_c00239{word-spacing:9.715200pt;}
.ws7_c00239{word-spacing:10.246400pt;}
.ws6_c00239{word-spacing:10.316800pt;}
.ws16_c00239{word-spacing:10.886400pt;}
.ws26_c00239{word-spacing:12.160000pt;}
.ws25_c00239{word-spacing:12.166400pt;}
.wsd_c00239{word-spacing:12.921600pt;}
.wsc_c00239{word-spacing:12.940800pt;}
.ws3_c00239{word-spacing:13.452800pt;}
.ws4_c00239{word-spacing:13.766400pt;}
.ws5_c00239{word-spacing:13.772800pt;}
.ws2b_c00239{word-spacing:18.899200pt;}
._0_c00239{margin-left:-0.908480pt;}
._1_c00239{width:0.896000pt;}
.fs3_c00239{font-size:37.440000pt;}
.fs4_c00239{font-size:42.560000pt;}
.fs2_c00239{font-size:48.000000pt;}
.fs0_c00239{font-size:53.440000pt;}
.fs1_c00239{font-size:64.000000pt;}
.y0_c00239{bottom:0.000000pt;}
.y3_c00239{bottom:51.067067pt;}
.y4_c00239{bottom:54.587067pt;}
.y27_c00239{bottom:97.158587pt;}
.y26_c00239{bottom:113.480347pt;}
.y25_c00239{bottom:129.716987pt;}
.y24_c00239{bottom:145.953627pt;}
.y23_c00239{bottom:162.275387pt;}
.y22_c00239{bottom:178.512027pt;}
.y21_c00239{bottom:194.748667pt;}
.y20_c00239{bottom:211.070427pt;}
.y1f_c00239{bottom:227.307067pt;}
.y1e_c00239{bottom:240.827067pt;}
.y1d_c00239{bottom:259.227067pt;}
.y1c_c00239{bottom:277.627200pt;}
.y1b_c00239{bottom:317.147200pt;}
.y1a_c00239{bottom:347.787200pt;}
.y19_c00239{bottom:378.347200pt;}
.y18_c00239{bottom:408.987067pt;}
.y17_c00239{bottom:439.547067pt;}
.y16_c00239{bottom:470.187067pt;}
.y15_c00239{bottom:508.747067pt;}
.y14_c00239{bottom:539.387067pt;}
.y13_c00239{bottom:569.947067pt;}
.y12_c00239{bottom:608.587200pt;}
.y11_c00239{bottom:639.147200pt;}
.y10_c00239{bottom:669.787200pt;}
.yf_c00239{bottom:700.347200pt;}
.ye_c00239{bottom:730.987067pt;}
.yd_c00239{bottom:761.547067pt;}
.yc_c00239{bottom:792.187067pt;}
.yb_c00239{bottom:830.747067pt;}
.ya_c00239{bottom:861.387067pt;}
.y9_c00239{bottom:891.947067pt;}
.y8_c00239{bottom:922.587067pt;}
.y7_c00239{bottom:953.147067pt;}
.y6_c00239{bottom:983.787067pt;}
.y5_c00239{bottom:1014.347067pt;}
.y2_c00239{bottom:1043.387067pt;}
.y1_c00239{bottom:1063.867067pt;}
.h2_c00239{height:42.656250pt;}
.h8_c00239{height:44.388750pt;}
.h1_c00239{height:44.724687pt;}
.h3_c00239{height:50.062500pt;}
.h4_c00239{height:53.562500pt;}
.h6_c00239{height:57.893529pt;}
.h5_c00239{height:57.894063pt;}
.h7_c00239{height:57.894596pt;}
.h0_c00239{height:1122.666667pt;}
.w1_c00239{width:793.333333pt;}
.w0_c00239{width:793.626667pt;}
.x0_c00239{left:0.000000pt;}
.x2_c00239{left:113.440000pt;}
.x5_c00239{left:160.640000pt;}
.x4_c00239{left:386.880000pt;}
.x3_c00239{left:396.880000pt;}
.x1_c00239{left:436.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_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_33b0e44d9b68337cda1a28cb.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.100098;font-style:normal;font-weight:normal;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_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;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_c00240;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c00240{vertical-align:-15.120000px;}
.v0_c00240{vertical-align:0.000000px;}
.v1_c00240{vertical-align:15.840000px;}
.v2_c00240{vertical-align:29.880000px;}
.ls17_c00240{letter-spacing:-0.266400px;}
.lse_c00240{letter-spacing:-0.151200px;}
.ls19_c00240{letter-spacing:-0.036000px;}
.ls16_c00240{letter-spacing:-0.028800px;}
.ls12_c00240{letter-spacing:-0.024048px;}
.ls14_c00240{letter-spacing:-0.021600px;}
.ls10_c00240{letter-spacing:-0.014400px;}
.lsf_c00240{letter-spacing:-0.007200px;}
.lsd_c00240{letter-spacing:0.000000px;}
.ls5_c00240{letter-spacing:0.006012px;}
.ls9_c00240{letter-spacing:0.007200px;}
.ls18_c00240{letter-spacing:0.014400px;}
.ls8_c00240{letter-spacing:0.021600px;}
.lsb_c00240{letter-spacing:0.023940px;}
.ls3_c00240{letter-spacing:0.024048px;}
.lsc_c00240{letter-spacing:0.028728px;}
.lsa_c00240{letter-spacing:0.033516px;}
.ls4_c00240{letter-spacing:0.042084px;}
.ls0_c00240{letter-spacing:0.048096px;}
.ls15_c00240{letter-spacing:0.050400px;}
.ls6_c00240{letter-spacing:0.054108px;}
.ls2_c00240{letter-spacing:0.054756px;}
.ls11_c00240{letter-spacing:0.093600px;}
.ls7_c00240{letter-spacing:0.136080px;}
.ls13_c00240{letter-spacing:0.168336px;}
.ls1_c00240{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00240{word-spacing:-10.584756px;}
.ws1_c00240{word-spacing:-9.856080px;}
.ws27_c00240{word-spacing:-0.014364px;}
.ws29_c00240{word-spacing:-0.009576px;}
.ws28_c00240{word-spacing:-0.004788px;}
.ws3_c00240{word-spacing:0.000000px;}
.wse_c00240{word-spacing:0.007200px;}
.ws25_c00240{word-spacing:0.014400px;}
.ws1c_c00240{word-spacing:0.021600px;}
.wsc_c00240{word-spacing:0.036072px;}
.ws2_c00240{word-spacing:0.042084px;}
.ws6_c00240{word-spacing:0.057600px;}
.ws5_c00240{word-spacing:0.072000px;}
.ws18_c00240{word-spacing:0.734400px;}
.ws1f_c00240{word-spacing:1.058400px;}
.ws24_c00240{word-spacing:2.188800px;}
.ws11_c00240{word-spacing:2.239200px;}
.ws13_c00240{word-spacing:2.275200px;}
.ws12_c00240{word-spacing:2.340000px;}
.ws9_c00240{word-spacing:3.288564px;}
.ws10_c00240{word-spacing:3.909600px;}
.wsf_c00240{word-spacing:4.161600px;}
.ws15_c00240{word-spacing:4.305600px;}
.ws14_c00240{word-spacing:4.384800px;}
.ws17_c00240{word-spacing:4.694400px;}
.wsd_c00240{word-spacing:5.032800px;}
.ws16_c00240{word-spacing:5.774400px;}
.ws8_c00240{word-spacing:8.007984px;}
.ws20_c00240{word-spacing:8.265600px;}
.ws21_c00240{word-spacing:8.287200px;}
.ws7_c00240{word-spacing:8.344656px;}
.ws4_c00240{word-spacing:9.338400px;}
.ws1b_c00240{word-spacing:9.748800px;}
.ws1a_c00240{word-spacing:9.806400px;}
.wsa_c00240{word-spacing:14.843628px;}
.wsb_c00240{word-spacing:14.873688px;}
.ws19_c00240{word-spacing:15.501600px;}
.ws1d_c00240{word-spacing:17.258400px;}
.ws1e_c00240{word-spacing:17.316000px;}
.ws23_c00240{word-spacing:21.974400px;}
.ws22_c00240{word-spacing:21.988800px;}
.ws26_c00240{word-spacing:34.243200px;}
._0_c00240{margin-left:-1.322640px;}
._1_c00240{width:1.080000px;}
.fc0_c00240{color:rgb(0,0,0);}
.fs4_c00240{font-size:38.880000px;}
.fs3_c00240{font-size:42.120000px;}
.fs5_c00240{font-size:47.880000px;}
.fs1_c00240{font-size:54.000000px;}
.fs0_c00240{font-size:60.120000px;}
.fs2_c00240{font-size:72.000000px;}
.y0_c00240{bottom:0.000000px;}
.y3_c00240{bottom:57.450450px;}
.y24_c00240{bottom:113.704200px;}
.y23_c00240{bottom:132.066180px;}
.y22_c00240{bottom:150.332400px;}
.y21_c00240{bottom:168.598620px;}
.y20_c00240{bottom:186.960600px;}
.y1f_c00240{bottom:202.170450px;}
.y1e_c00240{bottom:222.870450px;}
.y1d_c00240{bottom:243.570600px;}
.y1c_c00240{bottom:331.140600px;}
.y1b_c00240{bottom:365.610600px;}
.y1a_c00240{bottom:408.990600px;}
.y19_c00240{bottom:443.460600px;}
.y18_c00240{bottom:477.840450px;}
.y17_c00240{bottom:512.310450px;}
.y16_c00240{bottom:546.690450px;}
.y15_c00240{bottom:581.160450px;}
.y14_c00240{bottom:624.540450px;}
.y13_c00240{bottom:659.010450px;}
.y12_c00240{bottom:693.390450px;}
.y11_c00240{bottom:727.860450px;}
.y10_c00240{bottom:762.240450px;}
.yf_c00240{bottom:796.710450px;}
.ye_c00240{bottom:831.090450px;}
.yd_c00240{bottom:865.560600px;}
.yc_c00240{bottom:899.940600px;}
.yb_c00240{bottom:943.410600px;}
.ya_c00240{bottom:977.790600px;}
.y9_c00240{bottom:1015.309470px;}
.y8_c00240{bottom:1032.143070px;}
.y7_c00240{bottom:1049.066850px;}
.y6_c00240{bottom:1065.900450px;}
.y5_c00240{bottom:1106.760450px;}
.y4_c00240{bottom:1141.140450px;}
.y2_c00240{bottom:1177.860450px;}
.y1_c00240{bottom:1196.850450px;}
.h8_c00240{height:47.988281px;}
.h9_c00240{height:49.937344px;}
.h1_c00240{height:50.315273px;}
.h6_c00240{height:50.359193px;}
.h2_c00240{height:56.320312px;}
.h4_c00240{height:60.257812px;}
.h7_c00240{height:65.130220px;}
.h5_c00240{height:65.130820px;}
.h3_c00240{height:72.160312px;}
.h0_c00240{height:1263.000000px;}
.w1_c00240{width:892.500000px;}
.w0_c00240{width:892.830000px;}
.x0_c00240{left:0.000000px;}
.x1_c00240{left:127.620000px;}
.x2_c00240{left:180.720000px;}
@media print{
.v3_c00240{vertical-align:-13.440000pt;}
.v0_c00240{vertical-align:0.000000pt;}
.v1_c00240{vertical-align:14.080000pt;}
.v2_c00240{vertical-align:26.560000pt;}
.ls17_c00240{letter-spacing:-0.236800pt;}
.lse_c00240{letter-spacing:-0.134400pt;}
.ls19_c00240{letter-spacing:-0.032000pt;}
.ls16_c00240{letter-spacing:-0.025600pt;}
.ls12_c00240{letter-spacing:-0.021376pt;}
.ls14_c00240{letter-spacing:-0.019200pt;}
.ls10_c00240{letter-spacing:-0.012800pt;}
.lsf_c00240{letter-spacing:-0.006400pt;}
.lsd_c00240{letter-spacing:0.000000pt;}
.ls5_c00240{letter-spacing:0.005344pt;}
.ls9_c00240{letter-spacing:0.006400pt;}
.ls18_c00240{letter-spacing:0.012800pt;}
.ls8_c00240{letter-spacing:0.019200pt;}
.lsb_c00240{letter-spacing:0.021280pt;}
.ls3_c00240{letter-spacing:0.021376pt;}
.lsc_c00240{letter-spacing:0.025536pt;}
.lsa_c00240{letter-spacing:0.029792pt;}
.ls4_c00240{letter-spacing:0.037408pt;}
.ls0_c00240{letter-spacing:0.042752pt;}
.ls15_c00240{letter-spacing:0.044800pt;}
.ls6_c00240{letter-spacing:0.048096pt;}
.ls2_c00240{letter-spacing:0.048672pt;}
.ls11_c00240{letter-spacing:0.083200pt;}
.ls7_c00240{letter-spacing:0.120960pt;}
.ls13_c00240{letter-spacing:0.149632pt;}
.ls1_c00240{letter-spacing:1077.440000pt;}
.ws0_c00240{word-spacing:-9.408672pt;}
.ws1_c00240{word-spacing:-8.760960pt;}
.ws27_c00240{word-spacing:-0.012768pt;}
.ws29_c00240{word-spacing:-0.008512pt;}
.ws28_c00240{word-spacing:-0.004256pt;}
.ws3_c00240{word-spacing:0.000000pt;}
.wse_c00240{word-spacing:0.006400pt;}
.ws25_c00240{word-spacing:0.012800pt;}
.ws1c_c00240{word-spacing:0.019200pt;}
.wsc_c00240{word-spacing:0.032064pt;}
.ws2_c00240{word-spacing:0.037408pt;}
.ws6_c00240{word-spacing:0.051200pt;}
.ws5_c00240{word-spacing:0.064000pt;}
.ws18_c00240{word-spacing:0.652800pt;}
.ws1f_c00240{word-spacing:0.940800pt;}
.ws24_c00240{word-spacing:1.945600pt;}
.ws11_c00240{word-spacing:1.990400pt;}
.ws13_c00240{word-spacing:2.022400pt;}
.ws12_c00240{word-spacing:2.080000pt;}
.ws9_c00240{word-spacing:2.923168pt;}
.ws10_c00240{word-spacing:3.475200pt;}
.wsf_c00240{word-spacing:3.699200pt;}
.ws15_c00240{word-spacing:3.827200pt;}
.ws14_c00240{word-spacing:3.897600pt;}
.ws17_c00240{word-spacing:4.172800pt;}
.wsd_c00240{word-spacing:4.473600pt;}
.ws16_c00240{word-spacing:5.132800pt;}
.ws8_c00240{word-spacing:7.118208pt;}
.ws20_c00240{word-spacing:7.347200pt;}
.ws21_c00240{word-spacing:7.366400pt;}
.ws7_c00240{word-spacing:7.417472pt;}
.ws4_c00240{word-spacing:8.300800pt;}
.ws1b_c00240{word-spacing:8.665600pt;}
.ws1a_c00240{word-spacing:8.716800pt;}
.wsa_c00240{word-spacing:13.194336pt;}
.wsb_c00240{word-spacing:13.221056pt;}
.ws19_c00240{word-spacing:13.779200pt;}
.ws1d_c00240{word-spacing:15.340800pt;}
.ws1e_c00240{word-spacing:15.392000pt;}
.ws23_c00240{word-spacing:19.532800pt;}
.ws22_c00240{word-spacing:19.545600pt;}
.ws26_c00240{word-spacing:30.438400pt;}
._0_c00240{margin-left:-1.175680pt;}
._1_c00240{width:0.960000pt;}
.fs4_c00240{font-size:34.560000pt;}
.fs3_c00240{font-size:37.440000pt;}
.fs5_c00240{font-size:42.560000pt;}
.fs1_c00240{font-size:48.000000pt;}
.fs0_c00240{font-size:53.440000pt;}
.fs2_c00240{font-size:64.000000pt;}
.y0_c00240{bottom:0.000000pt;}
.y3_c00240{bottom:51.067067pt;}
.y24_c00240{bottom:101.070400pt;}
.y23_c00240{bottom:117.392160pt;}
.y22_c00240{bottom:133.628800pt;}
.y21_c00240{bottom:149.865440pt;}
.y20_c00240{bottom:166.187200pt;}
.y1f_c00240{bottom:179.707067pt;}
.y1e_c00240{bottom:198.107067pt;}
.y1d_c00240{bottom:216.507200pt;}
.y1c_c00240{bottom:294.347200pt;}
.y1b_c00240{bottom:324.987200pt;}
.y1a_c00240{bottom:363.547200pt;}
.y19_c00240{bottom:394.187200pt;}
.y18_c00240{bottom:424.747067pt;}
.y17_c00240{bottom:455.387067pt;}
.y16_c00240{bottom:485.947067pt;}
.y15_c00240{bottom:516.587067pt;}
.y14_c00240{bottom:555.147067pt;}
.y13_c00240{bottom:585.787067pt;}
.y12_c00240{bottom:616.347067pt;}
.y11_c00240{bottom:646.987067pt;}
.y10_c00240{bottom:677.547067pt;}
.yf_c00240{bottom:708.187067pt;}
.ye_c00240{bottom:738.747067pt;}
.yd_c00240{bottom:769.387200pt;}
.yc_c00240{bottom:799.947200pt;}
.yb_c00240{bottom:838.587200pt;}
.ya_c00240{bottom:869.147200pt;}
.y9_c00240{bottom:902.497307pt;}
.y8_c00240{bottom:917.460507pt;}
.y7_c00240{bottom:932.503867pt;}
.y6_c00240{bottom:947.467067pt;}
.y5_c00240{bottom:983.787067pt;}
.y4_c00240{bottom:1014.347067pt;}
.y2_c00240{bottom:1046.987067pt;}
.y1_c00240{bottom:1063.867067pt;}
.h8_c00240{height:42.656250pt;}
.h9_c00240{height:44.388750pt;}
.h1_c00240{height:44.724687pt;}
.h6_c00240{height:44.763728pt;}
.h2_c00240{height:50.062500pt;}
.h4_c00240{height:53.562500pt;}
.h7_c00240{height:57.893529pt;}
.h5_c00240{height:57.894063pt;}
.h3_c00240{height:64.142500pt;}
.h0_c00240{height:1122.666667pt;}
.w1_c00240{width:793.333333pt;}
.w0_c00240{width:793.626667pt;}
.x0_c00240{left:0.000000pt;}
.x1_c00240{left:113.440000pt;}
.x2_c00240{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_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_17a7c5664a8a9d9e2766d51e.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00241;src:url('chunks/assets/font_d2e43fc65695051afb395cad.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00241;src:url('chunks/assets/font_43b43aec3f5f762300cdfc46.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00241;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00241{font-family:ff5_c00241;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.v1_c00241{vertical-align:29.880000px;}
.lsb_c00241{letter-spacing:-0.151200px;}
.ls16_c00241{letter-spacing:-0.057600px;}
.ls13_c00241{letter-spacing:-0.054684px;}
.lsd_c00241{letter-spacing:-0.050400px;}
.ls14_c00241{letter-spacing:-0.036000px;}
.ls10_c00241{letter-spacing:-0.028800px;}
.ls12_c00241{letter-spacing:-0.023436px;}
.ls15_c00241{letter-spacing:-0.021600px;}
.ls11_c00241{letter-spacing:-0.014400px;}
.lsc_c00241{letter-spacing:-0.007200px;}
.lsa_c00241{letter-spacing:0.000000px;}
.ls5_c00241{letter-spacing:0.007200px;}
.ls6_c00241{letter-spacing:0.014400px;}
.ls8_c00241{letter-spacing:0.023940px;}
.ls7_c00241{letter-spacing:0.028728px;}
.ls9_c00241{letter-spacing:0.033516px;}
.ls0_c00241{letter-spacing:0.036072px;}
.ls3_c00241{letter-spacing:0.054756px;}
.lse_c00241{letter-spacing:0.093600px;}
.ls1_c00241{letter-spacing:0.144000px;}
.lsf_c00241{letter-spacing:1.080000px;}
.ls4_c00241{letter-spacing:37.341360px;}
.ls2_c00241{letter-spacing:65.304000px;}
.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;}
}
.ws2_c00241{word-spacing:-19.506564px;}
.ws1_c00241{word-spacing:-17.949600px;}
.ws0_c00241{word-spacing:-10.584756px;}
.ws3_c00241{word-spacing:-0.306612px;}
.ws22_c00241{word-spacing:-0.093600px;}
.wsd_c00241{word-spacing:-0.039060px;}
.ws25_c00241{word-spacing:-0.014364px;}
.ws23_c00241{word-spacing:-0.009576px;}
.ws26_c00241{word-spacing:-0.004788px;}
.ws4_c00241{word-spacing:0.000000px;}
.ws21_c00241{word-spacing:0.014400px;}
.ws19_c00241{word-spacing:0.021600px;}
.wsc_c00241{word-spacing:0.086400px;}
.wsa_c00241{word-spacing:0.115200px;}
.ws11_c00241{word-spacing:0.396000px;}
.ws1b_c00241{word-spacing:0.403200px;}
.ws1c_c00241{word-spacing:0.417600px;}
.ws12_c00241{word-spacing:0.424800px;}
.ws9_c00241{word-spacing:1.116000px;}
.ws5_c00241{word-spacing:1.411200px;}
.ws6_c00241{word-spacing:1.490400px;}
.ws24_c00241{word-spacing:2.508912px;}
.wse_c00241{word-spacing:3.247200px;}
.ws18_c00241{word-spacing:3.945600px;}
.ws17_c00241{word-spacing:4.032000px;}
.ws20_c00241{word-spacing:4.658400px;}
.ws1f_c00241{word-spacing:4.730400px;}
.ws1d_c00241{word-spacing:5.040000px;}
.wsb_c00241{word-spacing:8.640000px;}
.ws7_c00241{word-spacing:9.316800px;}
.ws8_c00241{word-spacing:9.360000px;}
.ws1a_c00241{word-spacing:12.607200px;}
.ws16_c00241{word-spacing:12.650400px;}
.ws15_c00241{word-spacing:12.715200px;}
.ws1e_c00241{word-spacing:13.341600px;}
.ws14_c00241{word-spacing:13.651200px;}
.ws13_c00241{word-spacing:13.687200px;}
.wsf_c00241{word-spacing:17.272800px;}
.ws10_c00241{word-spacing:17.373600px;}
._1_c00241{margin-left:-2.081160px;}
._0_c00241{margin-left:-1.022040px;}
._2_c00241{width:1.196892px;}
._3_c00241{width:173.325708px;}
._4_c00241{width:241.094952px;}
.fc0_c00241{color:rgb(0,0,0);}
.fs3_c00241{font-size:42.120000px;}
.fs5_c00241{font-size:47.880000px;}
.fs2_c00241{font-size:54.000000px;}
.fs0_c00241{font-size:60.120000px;}
.fs1_c00241{font-size:72.000000px;}
.fs4_c00241{font-size:78.120000px;}
.y0_c00241{bottom:0.000000px;}
.y3_c00241{bottom:57.450450px;}
.y4_c00241{bottom:61.410450px;}
.y26_c00241{bottom:113.717910px;}
.y25_c00241{bottom:132.079890px;}
.y24_c00241{bottom:150.346110px;}
.y23_c00241{bottom:168.612330px;}
.y22_c00241{bottom:186.974310px;}
.y21_c00241{bottom:205.240530px;}
.y20_c00241{bottom:223.506750px;}
.y1f_c00241{bottom:241.868730px;}
.y1e_c00241{bottom:255.634230px;}
.y1d_c00241{bottom:273.900450px;}
.y1c_c00241{bottom:289.110450px;}
.y1b_c00241{bottom:309.810450px;}
.y1a_c00241{bottom:330.510450px;}
.y19_c00241{bottom:395.760450px;}
.y18_c00241{bottom:430.230450px;}
.y17_c00241{bottom:464.610450px;}
.y16_c00241{bottom:499.080450px;}
.y15_c00241{bottom:533.460450px;}
.y14_c00241{bottom:567.930450px;}
.y13_c00241{bottom:611.310450px;}
.y12_c00241{bottom:645.780450px;}
.y11_c00241{bottom:680.160450px;}
.y10_c00241{bottom:714.630450px;}
.yf_c00241{bottom:749.010600px;}
.ye_c00241{bottom:783.480600px;}
.yd_c00241{bottom:817.860600px;}
.yc_c00241{bottom:862.950450px;}
.yb_c00241{bottom:916.590450px;}
.ya_c00241{bottom:951.060450px;}
.y9_c00241{bottom:994.440450px;}
.y8_c00241{bottom:1028.910450px;}
.y7_c00241{bottom:1072.290450px;}
.y6_c00241{bottom:1106.760450px;}
.y5_c00241{bottom:1141.140450px;}
.y2_c00241{bottom:1173.810450px;}
.y1_c00241{bottom:1196.850450px;}
.h2_c00241{height:47.988281px;}
.h9_c00241{height:49.937344px;}
.h1_c00241{height:50.315273px;}
.h3_c00241{height:56.320312px;}
.h5_c00241{height:60.257812px;}
.h8_c00241{height:65.130220px;}
.h6_c00241{height:65.130820px;}
.h4_c00241{height:75.093750px;}
.h7_c00241{height:81.476719px;}
.h0_c00241{height:1263.000000px;}
.w1_c00241{width:892.500000px;}
.w0_c00241{width:892.830000px;}
.x0_c00241{left:0.000000px;}
.x2_c00241{left:127.620000px;}
.x5_c00241{left:154.620000px;}
.x6_c00241{left:181.620000px;}
.x4_c00241{left:435.240000px;}
.x3_c00241{left:446.490000px;}
.x1_c00241{left:490.770000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.v1_c00241{vertical-align:26.560000pt;}
.lsb_c00241{letter-spacing:-0.134400pt;}
.ls16_c00241{letter-spacing:-0.051200pt;}
.ls13_c00241{letter-spacing:-0.048608pt;}
.lsd_c00241{letter-spacing:-0.044800pt;}
.ls14_c00241{letter-spacing:-0.032000pt;}
.ls10_c00241{letter-spacing:-0.025600pt;}
.ls12_c00241{letter-spacing:-0.020832pt;}
.ls15_c00241{letter-spacing:-0.019200pt;}
.ls11_c00241{letter-spacing:-0.012800pt;}
.lsc_c00241{letter-spacing:-0.006400pt;}
.lsa_c00241{letter-spacing:0.000000pt;}
.ls5_c00241{letter-spacing:0.006400pt;}
.ls6_c00241{letter-spacing:0.012800pt;}
.ls8_c00241{letter-spacing:0.021280pt;}
.ls7_c00241{letter-spacing:0.025536pt;}
.ls9_c00241{letter-spacing:0.029792pt;}
.ls0_c00241{letter-spacing:0.032064pt;}
.ls3_c00241{letter-spacing:0.048672pt;}
.lse_c00241{letter-spacing:0.083200pt;}
.ls1_c00241{letter-spacing:0.128000pt;}
.lsf_c00241{letter-spacing:0.960000pt;}
.ls4_c00241{letter-spacing:33.192320pt;}
.ls2_c00241{letter-spacing:58.048000pt;}
.ws2_c00241{word-spacing:-17.339168pt;}
.ws1_c00241{word-spacing:-15.955200pt;}
.ws0_c00241{word-spacing:-9.408672pt;}
.ws3_c00241{word-spacing:-0.272544pt;}
.ws22_c00241{word-spacing:-0.083200pt;}
.wsd_c00241{word-spacing:-0.034720pt;}
.ws25_c00241{word-spacing:-0.012768pt;}
.ws23_c00241{word-spacing:-0.008512pt;}
.ws26_c00241{word-spacing:-0.004256pt;}
.ws4_c00241{word-spacing:0.000000pt;}
.ws21_c00241{word-spacing:0.012800pt;}
.ws19_c00241{word-spacing:0.019200pt;}
.wsc_c00241{word-spacing:0.076800pt;}
.wsa_c00241{word-spacing:0.102400pt;}
.ws11_c00241{word-spacing:0.352000pt;}
.ws1b_c00241{word-spacing:0.358400pt;}
.ws1c_c00241{word-spacing:0.371200pt;}
.ws12_c00241{word-spacing:0.377600pt;}
.ws9_c00241{word-spacing:0.992000pt;}
.ws5_c00241{word-spacing:1.254400pt;}
.ws6_c00241{word-spacing:1.324800pt;}
.ws24_c00241{word-spacing:2.230144pt;}
.wse_c00241{word-spacing:2.886400pt;}
.ws18_c00241{word-spacing:3.507200pt;}
.ws17_c00241{word-spacing:3.584000pt;}
.ws20_c00241{word-spacing:4.140800pt;}
.ws1f_c00241{word-spacing:4.204800pt;}
.ws1d_c00241{word-spacing:4.480000pt;}
.wsb_c00241{word-spacing:7.680000pt;}
.ws7_c00241{word-spacing:8.281600pt;}
.ws8_c00241{word-spacing:8.320000pt;}
.ws1a_c00241{word-spacing:11.206400pt;}
.ws16_c00241{word-spacing:11.244800pt;}
.ws15_c00241{word-spacing:11.302400pt;}
.ws1e_c00241{word-spacing:11.859200pt;}
.ws14_c00241{word-spacing:12.134400pt;}
.ws13_c00241{word-spacing:12.166400pt;}
.wsf_c00241{word-spacing:15.353600pt;}
.ws10_c00241{word-spacing:15.443200pt;}
._1_c00241{margin-left:-1.849920pt;}
._0_c00241{margin-left:-0.908480pt;}
._2_c00241{width:1.063904pt;}
._3_c00241{width:154.067296pt;}
._4_c00241{width:214.306624pt;}
.fs3_c00241{font-size:37.440000pt;}
.fs5_c00241{font-size:42.560000pt;}
.fs2_c00241{font-size:48.000000pt;}
.fs0_c00241{font-size:53.440000pt;}
.fs1_c00241{font-size:64.000000pt;}
.fs4_c00241{font-size:69.440000pt;}
.y0_c00241{bottom:0.000000pt;}
.y3_c00241{bottom:51.067067pt;}
.y4_c00241{bottom:54.587067pt;}
.y26_c00241{bottom:101.082587pt;}
.y25_c00241{bottom:117.404347pt;}
.y24_c00241{bottom:133.640987pt;}
.y23_c00241{bottom:149.877627pt;}
.y22_c00241{bottom:166.199387pt;}
.y21_c00241{bottom:182.436027pt;}
.y20_c00241{bottom:198.672667pt;}
.y1f_c00241{bottom:214.994427pt;}
.y1e_c00241{bottom:227.230427pt;}
.y1d_c00241{bottom:243.467067pt;}
.y1c_c00241{bottom:256.987067pt;}
.y1b_c00241{bottom:275.387067pt;}
.y1a_c00241{bottom:293.787067pt;}
.y19_c00241{bottom:351.787067pt;}
.y18_c00241{bottom:382.427067pt;}
.y17_c00241{bottom:412.987067pt;}
.y16_c00241{bottom:443.627067pt;}
.y15_c00241{bottom:474.187067pt;}
.y14_c00241{bottom:504.827067pt;}
.y13_c00241{bottom:543.387067pt;}
.y12_c00241{bottom:574.027067pt;}
.y11_c00241{bottom:604.587067pt;}
.y10_c00241{bottom:635.227067pt;}
.yf_c00241{bottom:665.787200pt;}
.ye_c00241{bottom:696.427200pt;}
.yd_c00241{bottom:726.987200pt;}
.yc_c00241{bottom:767.067067pt;}
.yb_c00241{bottom:814.747067pt;}
.ya_c00241{bottom:845.387067pt;}
.y9_c00241{bottom:883.947067pt;}
.y8_c00241{bottom:914.587067pt;}
.y7_c00241{bottom:953.147067pt;}
.y6_c00241{bottom:983.787067pt;}
.y5_c00241{bottom:1014.347067pt;}
.y2_c00241{bottom:1043.387067pt;}
.y1_c00241{bottom:1063.867067pt;}
.h2_c00241{height:42.656250pt;}
.h9_c00241{height:44.388750pt;}
.h1_c00241{height:44.724687pt;}
.h3_c00241{height:50.062500pt;}
.h5_c00241{height:53.562500pt;}
.h8_c00241{height:57.893529pt;}
.h6_c00241{height:57.894062pt;}
.h4_c00241{height:66.750000pt;}
.h7_c00241{height:72.423750pt;}
.h0_c00241{height:1122.666667pt;}
.w1_c00241{width:793.333333pt;}
.w0_c00241{width:793.626667pt;}
.x0_c00241{left:0.000000pt;}
.x2_c00241{left:113.440000pt;}
.x5_c00241{left:137.440000pt;}
.x6_c00241{left:161.440000pt;}
.x4_c00241{left:386.880000pt;}
.x3_c00241{left:396.880000pt;}
.x1_c00241{left:436.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_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_4d23e21e73221d7c99cf7adc.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.100098;font-style:normal;font-weight:normal;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_d2e43fc65695051afb395cad.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;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_c00242;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00242;src:url('chunks/assets/font_8493eb8114740347031cdc62.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00242;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;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_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.v1_c00242{vertical-align:15.840000px;}
.v2_c00242{vertical-align:29.880000px;}
.lsc_c00242{letter-spacing:-0.151200px;}
.lsf_c00242{letter-spacing:-0.050400px;}
.ls15_c00242{letter-spacing:-0.046872px;}
.ls10_c00242{letter-spacing:-0.036000px;}
.lse_c00242{letter-spacing:-0.028800px;}
.ls11_c00242{letter-spacing:-0.021600px;}
.ls14_c00242{letter-spacing:-0.015624px;}
.ls12_c00242{letter-spacing:-0.014400px;}
.lsd_c00242{letter-spacing:-0.007200px;}
.lsb_c00242{letter-spacing:0.000000px;}
.ls8_c00242{letter-spacing:0.007200px;}
.ls5_c00242{letter-spacing:0.014400px;}
.ls4_c00242{letter-spacing:0.021600px;}
.lsa_c00242{letter-spacing:0.028728px;}
.ls2_c00242{letter-spacing:0.028800px;}
.ls9_c00242{letter-spacing:0.036000px;}
.ls3_c00242{letter-spacing:0.043200px;}
.ls0_c00242{letter-spacing:0.048096px;}
.ls6_c00242{letter-spacing:0.054756px;}
.ls13_c00242{letter-spacing:0.093600px;}
.ls7_c00242{letter-spacing:45.231480px;}
.ls1_c00242{letter-spacing:1212.120000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00242{word-spacing:-19.514376px;}
.ws0_c00242{word-spacing:-10.584756px;}
.ws14_c00242{word-spacing:-0.086400px;}
.ws15_c00242{word-spacing:-0.046872px;}
.ws28_c00242{word-spacing:-0.009576px;}
.ws22_c00242{word-spacing:-0.007200px;}
.ws3_c00242{word-spacing:0.000000px;}
.ws27_c00242{word-spacing:0.007200px;}
.ws23_c00242{word-spacing:0.014400px;}
.wsd_c00242{word-spacing:0.036000px;}
.ws2_c00242{word-spacing:0.042084px;}
.ws13_c00242{word-spacing:0.086400px;}
.ws1c_c00242{word-spacing:0.093600px;}
.wse_c00242{word-spacing:0.324000px;}
.ws1d_c00242{word-spacing:0.374400px;}
.ws8_c00242{word-spacing:0.712800px;}
.wsc_c00242{word-spacing:1.094400px;}
.wsb_c00242{word-spacing:1.123200px;}
.ws1b_c00242{word-spacing:1.454400px;}
.ws1a_c00242{word-spacing:1.461600px;}
.wsa_c00242{word-spacing:1.504800px;}
.ws9_c00242{word-spacing:1.526400px;}
.ws4_c00242{word-spacing:1.857600px;}
.ws5_c00242{word-spacing:1.922400px;}
.ws10_c00242{word-spacing:3.938400px;}
.wsf_c00242{word-spacing:3.967200px;}
.ws16_c00242{word-spacing:9.021600px;}
.ws17_c00242{word-spacing:9.144000px;}
.ws24_c00242{word-spacing:9.374400px;}
.ws25_c00242{word-spacing:10.468800px;}
.ws26_c00242{word-spacing:10.562400px;}
.ws1f_c00242{word-spacing:12.204000px;}
.ws1e_c00242{word-spacing:12.225600px;}
.ws7_c00242{word-spacing:12.981600px;}
.ws6_c00242{word-spacing:13.039200px;}
.ws20_c00242{word-spacing:13.320000px;}
.ws21_c00242{word-spacing:13.334400px;}
.ws19_c00242{word-spacing:15.480000px;}
.ws18_c00242{word-spacing:15.501600px;}
.ws11_c00242{word-spacing:17.265600px;}
.ws12_c00242{word-spacing:17.337600px;}
._0_c00242{margin-left:-1.322640px;}
._1_c00242{width:1.238400px;}
._2_c00242{width:173.284200px;}
.fc0_c00242{color:rgb(0,0,0);}
.fs3_c00242{font-size:42.120000px;}
.fs5_c00242{font-size:47.880000px;}
.fs1_c00242{font-size:54.000000px;}
.fs0_c00242{font-size:60.120000px;}
.fs2_c00242{font-size:72.000000px;}
.fs4_c00242{font-size:78.120000px;}
.y0_c00242{bottom:0.000000px;}
.y3_c00242{bottom:57.450450px;}
.y22_c00242{bottom:113.704200px;}
.y21_c00242{bottom:132.066180px;}
.y20_c00242{bottom:150.332400px;}
.y1f_c00242{bottom:168.598620px;}
.y1e_c00242{bottom:186.960600px;}
.y1d_c00242{bottom:202.170450px;}
.y1c_c00242{bottom:222.870450px;}
.y1b_c00242{bottom:243.570450px;}
.y1a_c00242{bottom:326.910450px;}
.y19_c00242{bottom:361.380450px;}
.y18_c00242{bottom:395.760450px;}
.y17_c00242{bottom:439.230450px;}
.y16_c00242{bottom:473.610450px;}
.y15_c00242{bottom:508.080450px;}
.y14_c00242{bottom:542.460450px;}
.y13_c00242{bottom:576.930450px;}
.y12_c00242{bottom:620.310450px;}
.y11_c00242{bottom:654.780450px;}
.y10_c00242{bottom:689.160450px;}
.yf_c00242{bottom:723.630450px;}
.ye_c00242{bottom:768.630450px;}
.yd_c00242{bottom:822.360450px;}
.yc_c00242{bottom:856.740450px;}
.yb_c00242{bottom:891.210450px;}
.ya_c00242{bottom:925.590450px;}
.y9_c00242{bottom:969.060450px;}
.y8_c00242{bottom:1003.440450px;}
.y7_c00242{bottom:1037.910450px;}
.y6_c00242{bottom:1072.290450px;}
.y5_c00242{bottom:1106.760450px;}
.y4_c00242{bottom:1141.140450px;}
.y2_c00242{bottom:1177.860450px;}
.y1_c00242{bottom:1196.850450px;}
.h8_c00242{height:47.988281px;}
.h9_c00242{height:49.937344px;}
.h1_c00242{height:50.315273px;}
.h2_c00242{height:56.320312px;}
.h4_c00242{height:60.257812px;}
.h5_c00242{height:65.130820px;}
.h7_c00242{height:65.131420px;}
.h3_c00242{height:72.160312px;}
.h6_c00242{height:81.476719px;}
.h0_c00242{height:1263.000000px;}
.w1_c00242{width:892.500000px;}
.w0_c00242{width:892.830000px;}
.x0_c00242{left:0.000000px;}
.x1_c00242{left:127.620000px;}
.x2_c00242{left:180.720000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.v1_c00242{vertical-align:14.080000pt;}
.v2_c00242{vertical-align:26.560000pt;}
.lsc_c00242{letter-spacing:-0.134400pt;}
.lsf_c00242{letter-spacing:-0.044800pt;}
.ls15_c00242{letter-spacing:-0.041664pt;}
.ls10_c00242{letter-spacing:-0.032000pt;}
.lse_c00242{letter-spacing:-0.025600pt;}
.ls11_c00242{letter-spacing:-0.019200pt;}
.ls14_c00242{letter-spacing:-0.013888pt;}
.ls12_c00242{letter-spacing:-0.012800pt;}
.lsd_c00242{letter-spacing:-0.006400pt;}
.lsb_c00242{letter-spacing:0.000000pt;}
.ls8_c00242{letter-spacing:0.006400pt;}
.ls5_c00242{letter-spacing:0.012800pt;}
.ls4_c00242{letter-spacing:0.019200pt;}
.lsa_c00242{letter-spacing:0.025536pt;}
.ls2_c00242{letter-spacing:0.025600pt;}
.ls9_c00242{letter-spacing:0.032000pt;}
.ls3_c00242{letter-spacing:0.038400pt;}
.ls0_c00242{letter-spacing:0.042752pt;}
.ls6_c00242{letter-spacing:0.048672pt;}
.ls13_c00242{letter-spacing:0.083200pt;}
.ls7_c00242{letter-spacing:40.205760pt;}
.ls1_c00242{letter-spacing:1077.440000pt;}
.ws1_c00242{word-spacing:-17.346112pt;}
.ws0_c00242{word-spacing:-9.408672pt;}
.ws14_c00242{word-spacing:-0.076800pt;}
.ws15_c00242{word-spacing:-0.041664pt;}
.ws28_c00242{word-spacing:-0.008512pt;}
.ws22_c00242{word-spacing:-0.006400pt;}
.ws3_c00242{word-spacing:0.000000pt;}
.ws27_c00242{word-spacing:0.006400pt;}
.ws23_c00242{word-spacing:0.012800pt;}
.wsd_c00242{word-spacing:0.032000pt;}
.ws2_c00242{word-spacing:0.037408pt;}
.ws13_c00242{word-spacing:0.076800pt;}
.ws1c_c00242{word-spacing:0.083200pt;}
.wse_c00242{word-spacing:0.288000pt;}
.ws1d_c00242{word-spacing:0.332800pt;}
.ws8_c00242{word-spacing:0.633600pt;}
.wsc_c00242{word-spacing:0.972800pt;}
.wsb_c00242{word-spacing:0.998400pt;}
.ws1b_c00242{word-spacing:1.292800pt;}
.ws1a_c00242{word-spacing:1.299200pt;}
.wsa_c00242{word-spacing:1.337600pt;}
.ws9_c00242{word-spacing:1.356800pt;}
.ws4_c00242{word-spacing:1.651200pt;}
.ws5_c00242{word-spacing:1.708800pt;}
.ws10_c00242{word-spacing:3.500800pt;}
.wsf_c00242{word-spacing:3.526400pt;}
.ws16_c00242{word-spacing:8.019200pt;}
.ws17_c00242{word-spacing:8.128000pt;}
.ws24_c00242{word-spacing:8.332800pt;}
.ws25_c00242{word-spacing:9.305600pt;}
.ws26_c00242{word-spacing:9.388800pt;}
.ws1f_c00242{word-spacing:10.848000pt;}
.ws1e_c00242{word-spacing:10.867200pt;}
.ws7_c00242{word-spacing:11.539200pt;}
.ws6_c00242{word-spacing:11.590400pt;}
.ws20_c00242{word-spacing:11.840000pt;}
.ws21_c00242{word-spacing:11.852800pt;}
.ws19_c00242{word-spacing:13.760000pt;}
.ws18_c00242{word-spacing:13.779200pt;}
.ws11_c00242{word-spacing:15.347200pt;}
.ws12_c00242{word-spacing:15.411200pt;}
._0_c00242{margin-left:-1.175680pt;}
._1_c00242{width:1.100800pt;}
._2_c00242{width:154.030400pt;}
.fs3_c00242{font-size:37.440000pt;}
.fs5_c00242{font-size:42.560000pt;}
.fs1_c00242{font-size:48.000000pt;}
.fs0_c00242{font-size:53.440000pt;}
.fs2_c00242{font-size:64.000000pt;}
.fs4_c00242{font-size:69.440000pt;}
.y0_c00242{bottom:0.000000pt;}
.y3_c00242{bottom:51.067067pt;}
.y22_c00242{bottom:101.070400pt;}
.y21_c00242{bottom:117.392160pt;}
.y20_c00242{bottom:133.628800pt;}
.y1f_c00242{bottom:149.865440pt;}
.y1e_c00242{bottom:166.187200pt;}
.y1d_c00242{bottom:179.707067pt;}
.y1c_c00242{bottom:198.107067pt;}
.y1b_c00242{bottom:216.507067pt;}
.y1a_c00242{bottom:290.587067pt;}
.y19_c00242{bottom:321.227067pt;}
.y18_c00242{bottom:351.787067pt;}
.y17_c00242{bottom:390.427067pt;}
.y16_c00242{bottom:420.987067pt;}
.y15_c00242{bottom:451.627067pt;}
.y14_c00242{bottom:482.187067pt;}
.y13_c00242{bottom:512.827067pt;}
.y12_c00242{bottom:551.387067pt;}
.y11_c00242{bottom:582.027067pt;}
.y10_c00242{bottom:612.587067pt;}
.yf_c00242{bottom:643.227067pt;}
.ye_c00242{bottom:683.227067pt;}
.yd_c00242{bottom:730.987067pt;}
.yc_c00242{bottom:761.547067pt;}
.yb_c00242{bottom:792.187067pt;}
.ya_c00242{bottom:822.747067pt;}
.y9_c00242{bottom:861.387067pt;}
.y8_c00242{bottom:891.947067pt;}
.y7_c00242{bottom:922.587067pt;}
.y6_c00242{bottom:953.147067pt;}
.y5_c00242{bottom:983.787067pt;}
.y4_c00242{bottom:1014.347067pt;}
.y2_c00242{bottom:1046.987067pt;}
.y1_c00242{bottom:1063.867067pt;}
.h8_c00242{height:42.656250pt;}
.h9_c00242{height:44.388750pt;}
.h1_c00242{height:44.724687pt;}
.h2_c00242{height:50.062500pt;}
.h4_c00242{height:53.562500pt;}
.h5_c00242{height:57.894063pt;}
.h7_c00242{height:57.894596pt;}
.h3_c00242{height:64.142500pt;}
.h6_c00242{height:72.423750pt;}
.h0_c00242{height:1122.666667pt;}
.w1_c00242{width:793.333333pt;}
.w0_c00242{width:793.626667pt;}
.x0_c00242{left:0.000000pt;}
.x1_c00242{left:113.440000pt;}
.x2_c00242{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_c00243 {
    display:none;
  }
  .loading-indicator_c00243.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00243 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00243 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00243" -> "#page-container .classname_c00243")
 */
.pf_c00243 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00243 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00243 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00243 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00243 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00243 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00243 {overflow:visible;}
  }
}
.c_c00243 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00243 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00243:after { /* webkit #35443 */
  content: '';
}
.t_c00243:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00243 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00243 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00243 { /* info for Javascript */
  display:none;
}
.l_c00243 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00243 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00243 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00243:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00243;src:url('chunks/assets/font_afa3c8e869075da2e5040a40.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00243;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00243;src:url('chunks/assets/font_b1fbfa1c139e64d4625fa09d.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00243;src:url('chunks/assets/font_841bf24c0c6cddcc56b31b35.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00243;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00243{font-family:ff5_c00243;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_c00243;src:url('chunks/assets/font_c414f5cfa2645e57d13a5ef4.woff2')format("woff");}.ff6_c00243{font-family:ff6_c00243;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_c00243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.v2_c00243{vertical-align:24.102000px;}
.v1_c00243{vertical-align:29.880000px;}
.ls1a_c00243{letter-spacing:-0.266400px;}
.lsf_c00243{letter-spacing:-0.151200px;}
.ls19_c00243{letter-spacing:-0.062496px;}
.ls22_c00243{letter-spacing:-0.047880px;}
.ls14_c00243{letter-spacing:-0.028800px;}
.ls1e_c00243{letter-spacing:-0.023940px;}
.ls13_c00243{letter-spacing:-0.021600px;}
.ls18_c00243{letter-spacing:-0.015624px;}
.ls1b_c00243{letter-spacing:-0.015552px;}
.ls11_c00243{letter-spacing:-0.014400px;}
.ls1d_c00243{letter-spacing:-0.014364px;}
.ls1f_c00243{letter-spacing:-0.011664px;}
.ls21_c00243{letter-spacing:-0.009576px;}
.ls1c_c00243{letter-spacing:-0.007776px;}
.ls17_c00243{letter-spacing:-0.007200px;}
.ls20_c00243{letter-spacing:-0.003888px;}
.lse_c00243{letter-spacing:0.000000px;}
.ls1_c00243{letter-spacing:0.007200px;}
.lsb_c00243{letter-spacing:0.014364px;}
.ls12_c00243{letter-spacing:0.014400px;}
.ls5_c00243{letter-spacing:0.019152px;}
.ls16_c00243{letter-spacing:0.021600px;}
.lsa_c00243{letter-spacing:0.023940px;}
.ls4_c00243{letter-spacing:0.028728px;}
.ls10_c00243{letter-spacing:0.028800px;}
.ls0_c00243{letter-spacing:0.036072px;}
.lsc_c00243{letter-spacing:0.047880px;}
.ls9_c00243{letter-spacing:0.052668px;}
.ls2_c00243{letter-spacing:0.054756px;}
.lsd_c00243{letter-spacing:0.057456px;}
.ls8_c00243{letter-spacing:0.071820px;}
.ls15_c00243{letter-spacing:0.093600px;}
.ls7_c00243{letter-spacing:0.104040px;}
.ls6_c00243{letter-spacing:0.464040px;}
.ls3_c00243{letter-spacing:45.231480px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00243{word-spacing:-19.514376px;}
.ws2_c00243{word-spacing:-10.800864px;}
.ws0_c00243{word-spacing:-10.584756px;}
.ws3_c00243{word-spacing:-8.306640px;}
.ws4_c00243{word-spacing:-0.306612px;}
.ws1d_c00243{word-spacing:-0.093600px;}
.ws28_c00243{word-spacing:-0.033516px;}
.ws1e_c00243{word-spacing:-0.031248px;}
.ws25_c00243{word-spacing:-0.009576px;}
.ws2a_c00243{word-spacing:-0.004788px;}
.ws5_c00243{word-spacing:0.000000px;}
.ws12_c00243{word-spacing:0.007200px;}
.ws1c_c00243{word-spacing:0.021600px;}
.ws29_c00243{word-spacing:0.043092px;}
.wse_c00243{word-spacing:0.100800px;}
.ws27_c00243{word-spacing:0.306432px;}
.ws26_c00243{word-spacing:0.392616px;}
.ws1a_c00243{word-spacing:2.160000px;}
.ws19_c00243{word-spacing:2.260800px;}
.ws1b_c00243{word-spacing:2.275200px;}
.ws20_c00243{word-spacing:3.600000px;}
.ws21_c00243{word-spacing:3.693600px;}
.wsa_c00243{word-spacing:4.269600px;}
.wsb_c00243{word-spacing:4.341600px;}
.ws9_c00243{word-spacing:4.348800px;}
.ws8_c00243{word-spacing:4.392000px;}
.ws23_c00243{word-spacing:4.672800px;}
.ws22_c00243{word-spacing:4.744800px;}
.ws15_c00243{word-spacing:5.392800px;}
.ws1f_c00243{word-spacing:6.134400px;}
.ws7_c00243{word-spacing:6.753600px;}
.ws6_c00243{word-spacing:6.832800px;}
.wsc_c00243{word-spacing:7.214400px;}
.wsd_c00243{word-spacing:7.250400px;}
.ws11_c00243{word-spacing:7.538400px;}
.ws10_c00243{word-spacing:7.581600px;}
.ws2c_c00243{word-spacing:8.608824px;}
.ws2b_c00243{word-spacing:8.642340px;}
.ws18_c00243{word-spacing:10.843200px;}
.ws16_c00243{word-spacing:11.239200px;}
.ws17_c00243{word-spacing:11.289600px;}
.wsf_c00243{word-spacing:12.232800px;}
.ws24_c00243{word-spacing:16.207200px;}
.ws14_c00243{word-spacing:20.829600px;}
.ws13_c00243{word-spacing:20.901600px;}
.ws30_c00243{word-spacing:43.159032px;}
.ws2d_c00243{word-spacing:43.163820px;}
.ws2e_c00243{word-spacing:43.226064px;}
.ws2f_c00243{word-spacing:43.264368px;}
._0_c00243{margin-left:-1.022040px;}
._1_c00243{width:1.224000px;}
._3_c00243{width:43.540596px;}
._2_c00243{width:542.815560px;}
.fc0_c00243{color:rgb(0,0,0);}
.fs7_c00243{font-size:29.880000px;}
.fs6_c00243{font-size:38.880000px;}
.fs3_c00243{font-size:42.120000px;}
.fs5_c00243{font-size:47.880000px;}
.fs2_c00243{font-size:54.000000px;}
.fs0_c00243{font-size:60.120000px;}
.fs1_c00243{font-size:72.000000px;}
.fs4_c00243{font-size:78.120000px;}
.y0_c00243{bottom:0.000000px;}
.y3_c00243{bottom:57.450450px;}
.y4_c00243{bottom:61.410450px;}
.y25_c00243{bottom:113.699190px;}
.y24_c00243{bottom:127.572330px;}
.y23_c00243{bottom:141.337830px;}
.y22_c00243{bottom:159.604050px;}
.y21_c00243{bottom:177.966030px;}
.y20_c00243{bottom:196.232250px;}
.y1f_c00243{bottom:214.498470px;}
.y1e_c00243{bottom:232.864950px;}
.y1d_c00243{bottom:246.630450px;}
.y1c_c00243{bottom:261.840450px;}
.y1b_c00243{bottom:282.540450px;}
.y1a_c00243{bottom:303.240450px;}
.y19_c00243{bottom:395.760600px;}
.y18_c00243{bottom:430.230600px;}
.y17_c00243{bottom:473.610450px;}
.y16_c00243{bottom:508.080450px;}
.y15_c00243{bottom:542.460450px;}
.y14_c00243{bottom:576.930450px;}
.y13_c00243{bottom:621.930450px;}
.y12_c00243{bottom:675.660450px;}
.y11_c00243{bottom:710.040450px;}
.y10_c00243{bottom:744.510450px;}
.yf_c00243{bottom:778.890450px;}
.ye_c00243{bottom:813.360450px;}
.yd_c00243{bottom:847.740450px;}
.yc_c00243{bottom:891.210450px;}
.yb_c00243{bottom:925.590450px;}
.ya_c00243{bottom:960.060450px;}
.y9_c00243{bottom:1003.440450px;}
.y8_c00243{bottom:1037.910450px;}
.y7_c00243{bottom:1072.290450px;}
.y6_c00243{bottom:1106.760450px;}
.y5_c00243{bottom:1141.140450px;}
.y2_c00243{bottom:1173.810450px;}
.y1_c00243{bottom:1196.850450px;}
.h2_c00243{height:47.988281px;}
.h8_c00243{height:49.937344px;}
.h1_c00243{height:50.315273px;}
.ha_c00243{height:55.236386px;}
.h9_c00243{height:55.265906px;}
.h3_c00243{height:56.320312px;}
.h4_c00243{height:60.257812px;}
.h7_c00243{height:65.130220px;}
.h5_c00243{height:65.130820px;}
.h6_c00243{height:81.476719px;}
.h0_c00243{height:1263.000000px;}
.w1_c00243{width:892.500000px;}
.w0_c00243{width:892.830000px;}
.x0_c00243{left:0.000000px;}
.x2_c00243{left:127.620000px;}
.x6_c00243{left:154.441620px;}
.x5_c00243{left:180.720000px;}
.x4_c00243{left:435.240000px;}
.x3_c00243{left:446.490000px;}
.x1_c00243{left:490.770000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.v2_c00243{vertical-align:21.424000pt;}
.v1_c00243{vertical-align:26.560000pt;}
.ls1a_c00243{letter-spacing:-0.236800pt;}
.lsf_c00243{letter-spacing:-0.134400pt;}
.ls19_c00243{letter-spacing:-0.055552pt;}
.ls22_c00243{letter-spacing:-0.042560pt;}
.ls14_c00243{letter-spacing:-0.025600pt;}
.ls1e_c00243{letter-spacing:-0.021280pt;}
.ls13_c00243{letter-spacing:-0.019200pt;}
.ls18_c00243{letter-spacing:-0.013888pt;}
.ls1b_c00243{letter-spacing:-0.013824pt;}
.ls11_c00243{letter-spacing:-0.012800pt;}
.ls1d_c00243{letter-spacing:-0.012768pt;}
.ls1f_c00243{letter-spacing:-0.010368pt;}
.ls21_c00243{letter-spacing:-0.008512pt;}
.ls1c_c00243{letter-spacing:-0.006912pt;}
.ls17_c00243{letter-spacing:-0.006400pt;}
.ls20_c00243{letter-spacing:-0.003456pt;}
.lse_c00243{letter-spacing:0.000000pt;}
.ls1_c00243{letter-spacing:0.006400pt;}
.lsb_c00243{letter-spacing:0.012768pt;}
.ls12_c00243{letter-spacing:0.012800pt;}
.ls5_c00243{letter-spacing:0.017024pt;}
.ls16_c00243{letter-spacing:0.019200pt;}
.lsa_c00243{letter-spacing:0.021280pt;}
.ls4_c00243{letter-spacing:0.025536pt;}
.ls10_c00243{letter-spacing:0.025600pt;}
.ls0_c00243{letter-spacing:0.032064pt;}
.lsc_c00243{letter-spacing:0.042560pt;}
.ls9_c00243{letter-spacing:0.046816pt;}
.ls2_c00243{letter-spacing:0.048672pt;}
.lsd_c00243{letter-spacing:0.051072pt;}
.ls8_c00243{letter-spacing:0.063840pt;}
.ls15_c00243{letter-spacing:0.083200pt;}
.ls7_c00243{letter-spacing:0.092480pt;}
.ls6_c00243{letter-spacing:0.412480pt;}
.ls3_c00243{letter-spacing:40.205760pt;}
.ws1_c00243{word-spacing:-17.346112pt;}
.ws2_c00243{word-spacing:-9.600768pt;}
.ws0_c00243{word-spacing:-9.408672pt;}
.ws3_c00243{word-spacing:-7.383680pt;}
.ws4_c00243{word-spacing:-0.272544pt;}
.ws1d_c00243{word-spacing:-0.083200pt;}
.ws28_c00243{word-spacing:-0.029792pt;}
.ws1e_c00243{word-spacing:-0.027776pt;}
.ws25_c00243{word-spacing:-0.008512pt;}
.ws2a_c00243{word-spacing:-0.004256pt;}
.ws5_c00243{word-spacing:0.000000pt;}
.ws12_c00243{word-spacing:0.006400pt;}
.ws1c_c00243{word-spacing:0.019200pt;}
.ws29_c00243{word-spacing:0.038304pt;}
.wse_c00243{word-spacing:0.089600pt;}
.ws27_c00243{word-spacing:0.272384pt;}
.ws26_c00243{word-spacing:0.348992pt;}
.ws1a_c00243{word-spacing:1.920000pt;}
.ws19_c00243{word-spacing:2.009600pt;}
.ws1b_c00243{word-spacing:2.022400pt;}
.ws20_c00243{word-spacing:3.200000pt;}
.ws21_c00243{word-spacing:3.283200pt;}
.wsa_c00243{word-spacing:3.795200pt;}
.wsb_c00243{word-spacing:3.859200pt;}
.ws9_c00243{word-spacing:3.865600pt;}
.ws8_c00243{word-spacing:3.904000pt;}
.ws23_c00243{word-spacing:4.153600pt;}
.ws22_c00243{word-spacing:4.217600pt;}
.ws15_c00243{word-spacing:4.793600pt;}
.ws1f_c00243{word-spacing:5.452800pt;}
.ws7_c00243{word-spacing:6.003200pt;}
.ws6_c00243{word-spacing:6.073600pt;}
.wsc_c00243{word-spacing:6.412800pt;}
.wsd_c00243{word-spacing:6.444800pt;}
.ws11_c00243{word-spacing:6.700800pt;}
.ws10_c00243{word-spacing:6.739200pt;}
.ws2c_c00243{word-spacing:7.652288pt;}
.ws2b_c00243{word-spacing:7.682080pt;}
.ws18_c00243{word-spacing:9.638400pt;}
.ws16_c00243{word-spacing:9.990400pt;}
.ws17_c00243{word-spacing:10.035200pt;}
.wsf_c00243{word-spacing:10.873600pt;}
.ws24_c00243{word-spacing:14.406400pt;}
.ws14_c00243{word-spacing:18.515200pt;}
.ws13_c00243{word-spacing:18.579200pt;}
.ws30_c00243{word-spacing:38.363584pt;}
.ws2d_c00243{word-spacing:38.367840pt;}
.ws2e_c00243{word-spacing:38.423168pt;}
.ws2f_c00243{word-spacing:38.457216pt;}
._0_c00243{margin-left:-0.908480pt;}
._1_c00243{width:1.088000pt;}
._3_c00243{width:38.702752pt;}
._2_c00243{width:482.502720pt;}
.fs7_c00243{font-size:26.560000pt;}
.fs6_c00243{font-size:34.560000pt;}
.fs3_c00243{font-size:37.440000pt;}
.fs5_c00243{font-size:42.560000pt;}
.fs2_c00243{font-size:48.000000pt;}
.fs0_c00243{font-size:53.440000pt;}
.fs1_c00243{font-size:64.000000pt;}
.fs4_c00243{font-size:69.440000pt;}
.y0_c00243{bottom:0.000000pt;}
.y3_c00243{bottom:51.067067pt;}
.y4_c00243{bottom:54.587067pt;}
.y25_c00243{bottom:101.065947pt;}
.y24_c00243{bottom:113.397627pt;}
.y23_c00243{bottom:125.633627pt;}
.y22_c00243{bottom:141.870267pt;}
.y21_c00243{bottom:158.192027pt;}
.y20_c00243{bottom:174.428667pt;}
.y1f_c00243{bottom:190.665307pt;}
.y1e_c00243{bottom:206.991067pt;}
.y1d_c00243{bottom:219.227067pt;}
.y1c_c00243{bottom:232.747067pt;}
.y1b_c00243{bottom:251.147067pt;}
.y1a_c00243{bottom:269.547067pt;}
.y19_c00243{bottom:351.787200pt;}
.y18_c00243{bottom:382.427200pt;}
.y17_c00243{bottom:420.987067pt;}
.y16_c00243{bottom:451.627067pt;}
.y15_c00243{bottom:482.187067pt;}
.y14_c00243{bottom:512.827067pt;}
.y13_c00243{bottom:552.827067pt;}
.y12_c00243{bottom:600.587067pt;}
.y11_c00243{bottom:631.147067pt;}
.y10_c00243{bottom:661.787067pt;}
.yf_c00243{bottom:692.347067pt;}
.ye_c00243{bottom:722.987067pt;}
.yd_c00243{bottom:753.547067pt;}
.yc_c00243{bottom:792.187067pt;}
.yb_c00243{bottom:822.747067pt;}
.ya_c00243{bottom:853.387067pt;}
.y9_c00243{bottom:891.947067pt;}
.y8_c00243{bottom:922.587067pt;}
.y7_c00243{bottom:953.147067pt;}
.y6_c00243{bottom:983.787067pt;}
.y5_c00243{bottom:1014.347067pt;}
.y2_c00243{bottom:1043.387067pt;}
.y1_c00243{bottom:1063.867067pt;}
.h2_c00243{height:42.656250pt;}
.h8_c00243{height:44.388750pt;}
.h1_c00243{height:44.724687pt;}
.ha_c00243{height:49.099010pt;}
.h9_c00243{height:49.125250pt;}
.h3_c00243{height:50.062500pt;}
.h4_c00243{height:53.562500pt;}
.h7_c00243{height:57.893529pt;}
.h5_c00243{height:57.894063pt;}
.h6_c00243{height:72.423750pt;}
.h0_c00243{height:1122.666667pt;}
.w1_c00243{width:793.333333pt;}
.w0_c00243{width:793.626667pt;}
.x0_c00243{left:0.000000pt;}
.x2_c00243{left:113.440000pt;}
.x6_c00243{left:137.281440pt;}
.x5_c00243{left:160.640000pt;}
.x4_c00243{left:386.880000pt;}
.x3_c00243{left:396.880000pt;}
.x1_c00243{left:436.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_c00244 {
    display:none;
  }
  .loading-indicator_c00244.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00244 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00244 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00244" -> "#page-container .classname_c00244")
 */
.pf_c00244 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00244 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00244 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00244 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00244 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00244 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00244 {overflow:visible;}
  }
}
.c_c00244 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00244 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00244:after { /* webkit #35443 */
  content: '';
}
.t_c00244:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00244 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00244 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00244 { /* info for Javascript */
  display:none;
}
.l_c00244 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00244 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00244 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00244:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00244;src:url('chunks/assets/font_15c3b29c052f14091281f3df.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00244;src:url('chunks/assets/font_d493837fa11b726d4c045c9f.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;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_c00244;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_6f1858ae37d9803db7de0172.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00244;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00244{font-family:ff5_c00244;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_c00244;src:url('chunks/assets/font_16234d0a8ecb7ba3a292247c.woff2')format("woff");}.ff6_c00244{font-family:ff6_c00244;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00244;src:url('chunks/assets/font_7306fafc3939e04b9a38494a.woff2')format("woff");}.ff7_c00244{font-family:ff7_c00244;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_c00244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.v1_c00244{vertical-align:15.840000px;}
.v3_c00244{vertical-align:24.102000px;}
.v2_c00244{vertical-align:29.880000px;}
.ls12_c00244{letter-spacing:-0.151200px;}
.ls1b_c00244{letter-spacing:-0.062496px;}
.ls15_c00244{letter-spacing:-0.043200px;}
.ls1c_c00244{letter-spacing:-0.036000px;}
.ls13_c00244{letter-spacing:-0.028800px;}
.ls21_c00244{letter-spacing:-0.023940px;}
.ls18_c00244{letter-spacing:-0.021600px;}
.ls26_c00244{letter-spacing:-0.019440px;}
.ls20_c00244{letter-spacing:-0.019152px;}
.ls22_c00244{letter-spacing:-0.015552px;}
.ls14_c00244{letter-spacing:-0.014400px;}
.ls1e_c00244{letter-spacing:-0.011664px;}
.ls24_c00244{letter-spacing:-0.009576px;}
.ls1a_c00244{letter-spacing:-0.007812px;}
.ls17_c00244{letter-spacing:-0.007200px;}
.ls23_c00244{letter-spacing:-0.003888px;}
.ls11_c00244{letter-spacing:0.000000px;}
.ls4_c00244{letter-spacing:0.007200px;}
.ls27_c00244{letter-spacing:0.009576px;}
.lsf_c00244{letter-spacing:0.014364px;}
.ls3_c00244{letter-spacing:0.014400px;}
.ls6_c00244{letter-spacing:0.019152px;}
.ls19_c00244{letter-spacing:0.021600px;}
.lsb_c00244{letter-spacing:0.023940px;}
.lsc_c00244{letter-spacing:0.028728px;}
.ls10_c00244{letter-spacing:0.033516px;}
.ls7_c00244{letter-spacing:0.038304px;}
.ls8_c00244{letter-spacing:0.043092px;}
.lsa_c00244{letter-spacing:0.047880px;}
.ls0_c00244{letter-spacing:0.048096px;}
.lse_c00244{letter-spacing:0.052668px;}
.ls2_c00244{letter-spacing:0.054756px;}
.ls25_c00244{letter-spacing:0.057456px;}
.ls16_c00244{letter-spacing:0.093600px;}
.ls9_c00244{letter-spacing:0.104040px;}
.ls1d_c00244{letter-spacing:0.346032px;}
.ls1f_c00244{letter-spacing:0.378252px;}
.lsd_c00244{letter-spacing:0.464040px;}
.ls5_c00244{letter-spacing:11.796120px;}
.ls1_c00244{letter-spacing:1212.120000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00244{word-spacing:-19.522188px;}
.ws2_c00244{word-spacing:-18.000000px;}
.ws0_c00244{word-spacing:-17.956800px;}
.ws6_c00244{word-spacing:-10.804752px;}
.ws4_c00244{word-spacing:-10.796976px;}
.ws7_c00244{word-spacing:-10.789200px;}
.ws1_c00244{word-spacing:-10.584756px;}
.ws5_c00244{word-spacing:-8.306640px;}
.ws1a_c00244{word-spacing:-0.093600px;}
.ws32_c00244{word-spacing:-0.033516px;}
.ws1b_c00244{word-spacing:-0.031248px;}
.ws2c_c00244{word-spacing:-0.028728px;}
.ws36_c00244{word-spacing:-0.019152px;}
.ws3d_c00244{word-spacing:-0.014364px;}
.ws33_c00244{word-spacing:-0.009576px;}
.ws2e_c00244{word-spacing:-0.004788px;}
.ws9_c00244{word-spacing:0.000000px;}
.ws34_c00244{word-spacing:0.004788px;}
.ws16_c00244{word-spacing:0.007200px;}
.ws35_c00244{word-spacing:0.009576px;}
.ws12_c00244{word-spacing:0.028800px;}
.ws8_c00244{word-spacing:0.042084px;}
.ws2d_c00244{word-spacing:0.043092px;}
.ws2b_c00244{word-spacing:0.339948px;}
.ws31_c00244{word-spacing:1.398096px;}
.ws2f_c00244{word-spacing:1.426824px;}
.ws30_c00244{word-spacing:1.465128px;}
.ws22_c00244{word-spacing:2.512800px;}
.wsf_c00244{word-spacing:2.541600px;}
.ws23_c00244{word-spacing:2.599200px;}
.ws24_c00244{word-spacing:2.700000px;}
.ws10_c00244{word-spacing:3.225600px;}
.ws11_c00244{word-spacing:3.268800px;}
.ws1e_c00244{word-spacing:3.556800px;}
.wse_c00244{word-spacing:3.585600px;}
.wsd_c00244{word-spacing:3.607200px;}
.ws1f_c00244{word-spacing:3.700800px;}
.ws2a_c00244{word-spacing:4.219200px;}
.ws29_c00244{word-spacing:4.348800px;}
.ws21_c00244{word-spacing:5.032800px;}
.ws20_c00244{word-spacing:5.104800px;}
.wsc_c00244{word-spacing:5.774400px;}
.ws13_c00244{word-spacing:6.847200px;}
.ws3c_c00244{word-spacing:7.531524px;}
.ws3b_c00244{word-spacing:7.536312px;}
.ws3a_c00244{word-spacing:8.254512px;}
.ws38_c00244{word-spacing:8.277552px;}
.ws37_c00244{word-spacing:8.283240px;}
.ws14_c00244{word-spacing:8.316000px;}
.ws15_c00244{word-spacing:8.330400px;}
.ws17_c00244{word-spacing:8.640000px;}
.ws39_c00244{word-spacing:8.642340px;}
.ws19_c00244{word-spacing:8.661600px;}
.ws18_c00244{word-spacing:8.676000px;}
.wsb_c00244{word-spacing:10.051200px;}
.wsa_c00244{word-spacing:10.108800px;}
.ws1c_c00244{word-spacing:10.800000px;}
.ws1d_c00244{word-spacing:10.857600px;}
.ws27_c00244{word-spacing:13.341600px;}
.ws28_c00244{word-spacing:13.428000px;}
.ws26_c00244{word-spacing:16.617600px;}
.ws25_c00244{word-spacing:16.675200px;}
._0_c00244{margin-left:-1.322640px;}
._1_c00244{width:1.080000px;}
._2_c00244{width:173.442600px;}
.fc0_c00244{color:rgb(0,0,0);}
.fs7_c00244{font-size:29.880000px;}
.fs6_c00244{font-size:38.880000px;}
.fs3_c00244{font-size:42.120000px;}
.fs5_c00244{font-size:47.880000px;}
.fs1_c00244{font-size:54.000000px;}
.fs0_c00244{font-size:60.120000px;}
.fs2_c00244{font-size:72.000000px;}
.fs4_c00244{font-size:78.120000px;}
.y0_c00244{bottom:0.000000px;}
.y3_c00244{bottom:57.450450px;}
.y28_c00244{bottom:113.703690px;}
.y27_c00244{bottom:127.469190px;}
.y26_c00244{bottom:141.334230px;}
.y25_c00244{bottom:159.607830px;}
.y24_c00244{bottom:177.969810px;}
.y23_c00244{bottom:196.236030px;}
.y22_c00244{bottom:214.502250px;}
.y21_c00244{bottom:232.864230px;}
.y20_c00244{bottom:251.134950px;}
.y1f_c00244{bottom:264.898470px;}
.y1e_c00244{bottom:283.264950px;}
.y1d_c00244{bottom:297.034230px;}
.y1c_c00244{bottom:315.300450px;}
.y1b_c00244{bottom:330.510450px;}
.y1a_c00244{bottom:351.210450px;}
.y19_c00244{bottom:371.910450px;}
.y18_c00244{bottom:395.760450px;}
.y17_c00244{bottom:430.230450px;}
.y16_c00244{bottom:464.610450px;}
.y15_c00244{bottom:499.080450px;}
.y14_c00244{bottom:533.460450px;}
.y13_c00244{bottom:567.930450px;}
.y12_c00244{bottom:602.310450px;}
.y11_c00244{bottom:647.400450px;}
.y10_c00244{bottom:701.040600px;}
.yf_c00244{bottom:735.510600px;}
.ye_c00244{bottom:769.890600px;}
.yd_c00244{bottom:813.360450px;}
.yc_c00244{bottom:847.740450px;}
.yb_c00244{bottom:882.210450px;}
.ya_c00244{bottom:925.590450px;}
.y9_c00244{bottom:960.060450px;}
.y8_c00244{bottom:994.440450px;}
.y7_c00244{bottom:1028.910450px;}
.y6_c00244{bottom:1063.290450px;}
.y5_c00244{bottom:1106.760450px;}
.y4_c00244{bottom:1141.140450px;}
.y2_c00244{bottom:1177.860450px;}
.y1_c00244{bottom:1196.850450px;}
.ha_c00244{height:47.988281px;}
.hb_c00244{height:49.937344px;}
.hd_c00244{height:49.945264px;}
.h1_c00244{height:50.315273px;}
.hc_c00244{height:55.265906px;}
.h2_c00244{height:56.320312px;}
.h4_c00244{height:60.257812px;}
.h8_c00244{height:60.890625px;}
.h6_c00244{height:65.130220px;}
.h5_c00244{height:65.130820px;}
.h9_c00244{height:65.131420px;}
.h3_c00244{height:72.160312px;}
.h7_c00244{height:81.476719px;}
.h0_c00244{height:1263.000000px;}
.w1_c00244{width:892.500000px;}
.w0_c00244{width:892.830000px;}
.x0_c00244{left:0.000000px;}
.x1_c00244{left:127.620000px;}
.x3_c00244{left:154.444770px;}
.x2_c00244{left:180.720000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.v1_c00244{vertical-align:14.080000pt;}
.v3_c00244{vertical-align:21.424000pt;}
.v2_c00244{vertical-align:26.560000pt;}
.ls12_c00244{letter-spacing:-0.134400pt;}
.ls1b_c00244{letter-spacing:-0.055552pt;}
.ls15_c00244{letter-spacing:-0.038400pt;}
.ls1c_c00244{letter-spacing:-0.032000pt;}
.ls13_c00244{letter-spacing:-0.025600pt;}
.ls21_c00244{letter-spacing:-0.021280pt;}
.ls18_c00244{letter-spacing:-0.019200pt;}
.ls26_c00244{letter-spacing:-0.017280pt;}
.ls20_c00244{letter-spacing:-0.017024pt;}
.ls22_c00244{letter-spacing:-0.013824pt;}
.ls14_c00244{letter-spacing:-0.012800pt;}
.ls1e_c00244{letter-spacing:-0.010368pt;}
.ls24_c00244{letter-spacing:-0.008512pt;}
.ls1a_c00244{letter-spacing:-0.006944pt;}
.ls17_c00244{letter-spacing:-0.006400pt;}
.ls23_c00244{letter-spacing:-0.003456pt;}
.ls11_c00244{letter-spacing:0.000000pt;}
.ls4_c00244{letter-spacing:0.006400pt;}
.ls27_c00244{letter-spacing:0.008512pt;}
.lsf_c00244{letter-spacing:0.012768pt;}
.ls3_c00244{letter-spacing:0.012800pt;}
.ls6_c00244{letter-spacing:0.017024pt;}
.ls19_c00244{letter-spacing:0.019200pt;}
.lsb_c00244{letter-spacing:0.021280pt;}
.lsc_c00244{letter-spacing:0.025536pt;}
.ls10_c00244{letter-spacing:0.029792pt;}
.ls7_c00244{letter-spacing:0.034048pt;}
.ls8_c00244{letter-spacing:0.038304pt;}
.lsa_c00244{letter-spacing:0.042560pt;}
.ls0_c00244{letter-spacing:0.042752pt;}
.lse_c00244{letter-spacing:0.046816pt;}
.ls2_c00244{letter-spacing:0.048672pt;}
.ls25_c00244{letter-spacing:0.051072pt;}
.ls16_c00244{letter-spacing:0.083200pt;}
.ls9_c00244{letter-spacing:0.092480pt;}
.ls1d_c00244{letter-spacing:0.307584pt;}
.ls1f_c00244{letter-spacing:0.336224pt;}
.lsd_c00244{letter-spacing:0.412480pt;}
.ls5_c00244{letter-spacing:10.485440pt;}
.ls1_c00244{letter-spacing:1077.440000pt;}
.ws3_c00244{word-spacing:-17.353056pt;}
.ws2_c00244{word-spacing:-16.000000pt;}
.ws0_c00244{word-spacing:-15.961600pt;}
.ws6_c00244{word-spacing:-9.604224pt;}
.ws4_c00244{word-spacing:-9.597312pt;}
.ws7_c00244{word-spacing:-9.590400pt;}
.ws1_c00244{word-spacing:-9.408672pt;}
.ws5_c00244{word-spacing:-7.383680pt;}
.ws1a_c00244{word-spacing:-0.083200pt;}
.ws32_c00244{word-spacing:-0.029792pt;}
.ws1b_c00244{word-spacing:-0.027776pt;}
.ws2c_c00244{word-spacing:-0.025536pt;}
.ws36_c00244{word-spacing:-0.017024pt;}
.ws3d_c00244{word-spacing:-0.012768pt;}
.ws33_c00244{word-spacing:-0.008512pt;}
.ws2e_c00244{word-spacing:-0.004256pt;}
.ws9_c00244{word-spacing:0.000000pt;}
.ws34_c00244{word-spacing:0.004256pt;}
.ws16_c00244{word-spacing:0.006400pt;}
.ws35_c00244{word-spacing:0.008512pt;}
.ws12_c00244{word-spacing:0.025600pt;}
.ws8_c00244{word-spacing:0.037408pt;}
.ws2d_c00244{word-spacing:0.038304pt;}
.ws2b_c00244{word-spacing:0.302176pt;}
.ws31_c00244{word-spacing:1.242752pt;}
.ws2f_c00244{word-spacing:1.268288pt;}
.ws30_c00244{word-spacing:1.302336pt;}
.ws22_c00244{word-spacing:2.233600pt;}
.wsf_c00244{word-spacing:2.259200pt;}
.ws23_c00244{word-spacing:2.310400pt;}
.ws24_c00244{word-spacing:2.400000pt;}
.ws10_c00244{word-spacing:2.867200pt;}
.ws11_c00244{word-spacing:2.905600pt;}
.ws1e_c00244{word-spacing:3.161600pt;}
.wse_c00244{word-spacing:3.187200pt;}
.wsd_c00244{word-spacing:3.206400pt;}
.ws1f_c00244{word-spacing:3.289600pt;}
.ws2a_c00244{word-spacing:3.750400pt;}
.ws29_c00244{word-spacing:3.865600pt;}
.ws21_c00244{word-spacing:4.473600pt;}
.ws20_c00244{word-spacing:4.537600pt;}
.wsc_c00244{word-spacing:5.132800pt;}
.ws13_c00244{word-spacing:6.086400pt;}
.ws3c_c00244{word-spacing:6.694688pt;}
.ws3b_c00244{word-spacing:6.698944pt;}
.ws3a_c00244{word-spacing:7.337344pt;}
.ws38_c00244{word-spacing:7.357824pt;}
.ws37_c00244{word-spacing:7.362880pt;}
.ws14_c00244{word-spacing:7.392000pt;}
.ws15_c00244{word-spacing:7.404800pt;}
.ws17_c00244{word-spacing:7.680000pt;}
.ws39_c00244{word-spacing:7.682080pt;}
.ws19_c00244{word-spacing:7.699200pt;}
.ws18_c00244{word-spacing:7.712000pt;}
.wsb_c00244{word-spacing:8.934400pt;}
.wsa_c00244{word-spacing:8.985600pt;}
.ws1c_c00244{word-spacing:9.600000pt;}
.ws1d_c00244{word-spacing:9.651200pt;}
.ws27_c00244{word-spacing:11.859200pt;}
.ws28_c00244{word-spacing:11.936000pt;}
.ws26_c00244{word-spacing:14.771200pt;}
.ws25_c00244{word-spacing:14.822400pt;}
._0_c00244{margin-left:-1.175680pt;}
._1_c00244{width:0.960000pt;}
._2_c00244{width:154.171200pt;}
.fs7_c00244{font-size:26.560000pt;}
.fs6_c00244{font-size:34.560000pt;}
.fs3_c00244{font-size:37.440000pt;}
.fs5_c00244{font-size:42.560000pt;}
.fs1_c00244{font-size:48.000000pt;}
.fs0_c00244{font-size:53.440000pt;}
.fs2_c00244{font-size:64.000000pt;}
.fs4_c00244{font-size:69.440000pt;}
.y0_c00244{bottom:0.000000pt;}
.y3_c00244{bottom:51.067067pt;}
.y28_c00244{bottom:101.069947pt;}
.y27_c00244{bottom:113.305947pt;}
.y26_c00244{bottom:125.630427pt;}
.y25_c00244{bottom:141.873627pt;}
.y24_c00244{bottom:158.195387pt;}
.y23_c00244{bottom:174.432027pt;}
.y22_c00244{bottom:190.668667pt;}
.y21_c00244{bottom:206.990427pt;}
.y20_c00244{bottom:223.231067pt;}
.y1f_c00244{bottom:235.465307pt;}
.y1e_c00244{bottom:251.791067pt;}
.y1d_c00244{bottom:264.030427pt;}
.y1c_c00244{bottom:280.267067pt;}
.y1b_c00244{bottom:293.787067pt;}
.y1a_c00244{bottom:312.187067pt;}
.y19_c00244{bottom:330.587067pt;}
.y18_c00244{bottom:351.787067pt;}
.y17_c00244{bottom:382.427067pt;}
.y16_c00244{bottom:412.987067pt;}
.y15_c00244{bottom:443.627067pt;}
.y14_c00244{bottom:474.187067pt;}
.y13_c00244{bottom:504.827067pt;}
.y12_c00244{bottom:535.387067pt;}
.y11_c00244{bottom:575.467067pt;}
.y10_c00244{bottom:623.147200pt;}
.yf_c00244{bottom:653.787200pt;}
.ye_c00244{bottom:684.347200pt;}
.yd_c00244{bottom:722.987067pt;}
.yc_c00244{bottom:753.547067pt;}
.yb_c00244{bottom:784.187067pt;}
.ya_c00244{bottom:822.747067pt;}
.y9_c00244{bottom:853.387067pt;}
.y8_c00244{bottom:883.947067pt;}
.y7_c00244{bottom:914.587067pt;}
.y6_c00244{bottom:945.147067pt;}
.y5_c00244{bottom:983.787067pt;}
.y4_c00244{bottom:1014.347067pt;}
.y2_c00244{bottom:1046.987067pt;}
.y1_c00244{bottom:1063.867067pt;}
.ha_c00244{height:42.656250pt;}
.hb_c00244{height:44.388750pt;}
.hd_c00244{height:44.395790pt;}
.h1_c00244{height:44.724687pt;}
.hc_c00244{height:49.125250pt;}
.h2_c00244{height:50.062500pt;}
.h4_c00244{height:53.562500pt;}
.h8_c00244{height:54.125000pt;}
.h6_c00244{height:57.893529pt;}
.h5_c00244{height:57.894063pt;}
.h9_c00244{height:57.894596pt;}
.h3_c00244{height:64.142500pt;}
.h7_c00244{height:72.423750pt;}
.h0_c00244{height:1122.666667pt;}
.w1_c00244{width:793.333333pt;}
.w0_c00244{width:793.626667pt;}
.x0_c00244{left:0.000000pt;}
.x1_c00244{left:113.440000pt;}
.x3_c00244{left:137.284240pt;}
.x2_c00244{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_c00245 {
    display:none;
  }
  .loading-indicator_c00245.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00245 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00245 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00245" -> "#page-container .classname_c00245")
 */
.pf_c00245 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00245 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00245 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00245 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00245 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00245 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00245 {overflow:visible;}
  }
}
.c_c00245 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00245 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00245:after { /* webkit #35443 */
  content: '';
}
.t_c00245:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00245 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00245 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00245 { /* info for Javascript */
  display:none;
}
.l_c00245 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00245 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00245 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00245:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00245;src:url('chunks/assets/font_c308d6ff074666b96e417b31.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00245;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00245;src:url('chunks/assets/font_cc91b846ad629161f9b0e332.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00245;src:url('chunks/assets/font_06cac1634ca35fae7c6f1750.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00245;src:url('chunks/assets/font_d8098da11e85a0d2bb9ccdb5.woff2')format("woff");}.ff5_c00245{font-family:ff5_c00245;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00245;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00245{font-family:ff6_c00245;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00245;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff7_c00245{font-family:ff7_c00245;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_c00245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.v1_c00245{vertical-align:29.880000px;}
.lsd_c00245{letter-spacing:-0.151200px;}
.ls1b_c00245{letter-spacing:-0.054684px;}
.ls10_c00245{letter-spacing:-0.050400px;}
.ls18_c00245{letter-spacing:-0.043200px;}
.ls1a_c00245{letter-spacing:-0.039060px;}
.ls11_c00245{letter-spacing:-0.036000px;}
.ls13_c00245{letter-spacing:-0.021600px;}
.lse_c00245{letter-spacing:-0.014400px;}
.lsf_c00245{letter-spacing:-0.007200px;}
.ls1d_c00245{letter-spacing:-0.004788px;}
.ls1c_c00245{letter-spacing:-0.003888px;}
.lsc_c00245{letter-spacing:0.000000px;}
.ls4_c00245{letter-spacing:0.007200px;}
.ls9_c00245{letter-spacing:0.014364px;}
.ls17_c00245{letter-spacing:0.014400px;}
.ls5_c00245{letter-spacing:0.021600px;}
.ls12_c00245{letter-spacing:0.028800px;}
.ls8_c00245{letter-spacing:0.033516px;}
.ls1_c00245{letter-spacing:0.036000px;}
.ls0_c00245{letter-spacing:0.036072px;}
.lsb_c00245{letter-spacing:0.047880px;}
.ls16_c00245{letter-spacing:0.050400px;}
.ls6_c00245{letter-spacing:0.054756px;}
.ls14_c00245{letter-spacing:0.064800px;}
.ls15_c00245{letter-spacing:0.086400px;}
.ls19_c00245{letter-spacing:0.093600px;}
.ls2_c00245{letter-spacing:0.144000px;}
.lsa_c00245{letter-spacing:0.464040px;}
.ls7_c00245{letter-spacing:34.450920px;}
.ls3_c00245{letter-spacing:65.304000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00245{word-spacing:-19.530000px;}
.ws1_c00245{word-spacing:-18.000000px;}
.ws3_c00245{word-spacing:-10.804752px;}
.ws0_c00245{word-spacing:-10.584756px;}
.ws4_c00245{word-spacing:-0.306612px;}
.ws23_c00245{word-spacing:-0.086400px;}
.ws24_c00245{word-spacing:-0.054684px;}
.ws25_c00245{word-spacing:-0.039060px;}
.ws2d_c00245{word-spacing:-0.028728px;}
.ws2a_c00245{word-spacing:-0.014364px;}
.ws8_c00245{word-spacing:-0.007200px;}
.ws5_c00245{word-spacing:0.000000px;}
.ws2b_c00245{word-spacing:0.004788px;}
.ws7_c00245{word-spacing:0.007200px;}
.ws6_c00245{word-spacing:0.014400px;}
.ws13_c00245{word-spacing:0.021600px;}
.ws2e_c00245{word-spacing:0.023940px;}
.ws1f_c00245{word-spacing:0.036000px;}
.ws1e_c00245{word-spacing:0.043200px;}
.wsc_c00245{word-spacing:0.194400px;}
.ws12_c00245{word-spacing:0.331200px;}
.ws10_c00245{word-spacing:0.352800px;}
.ws2c_c00245{word-spacing:0.363888px;}
.ws11_c00245{word-spacing:0.367200px;}
.ws16_c00245{word-spacing:0.381600px;}
.ws28_c00245{word-spacing:1.058400px;}
.ws27_c00245{word-spacing:1.087200px;}
.ws29_c00245{word-spacing:1.814400px;}
.ws1b_c00245{word-spacing:2.469600px;}
.ws1a_c00245{word-spacing:2.606400px;}
.wse_c00245{word-spacing:2.858400px;}
.wsd_c00245{word-spacing:2.901600px;}
.ws1c_c00245{word-spacing:4.694400px;}
.wsf_c00245{word-spacing:4.716000px;}
.ws1d_c00245{word-spacing:4.737600px;}
.ws26_c00245{word-spacing:10.814400px;}
.ws21_c00245{word-spacing:12.196800px;}
.ws22_c00245{word-spacing:12.240000px;}
.ws9_c00245{word-spacing:12.924000px;}
.wsb_c00245{word-spacing:12.974400px;}
.wsa_c00245{word-spacing:13.096800px;}
.ws17_c00245{word-spacing:13.320000px;}
.ws14_c00245{word-spacing:13.672800px;}
.ws15_c00245{word-spacing:13.752000px;}
.ws19_c00245{word-spacing:15.494400px;}
.ws18_c00245{word-spacing:15.537600px;}
.ws20_c00245{word-spacing:20.923200px;}
._0_c00245{margin-left:-1.022040px;}
._1_c00245{width:1.108800px;}
.fc0_c00245{color:rgb(0,0,0);}
.fs6_c00245{font-size:38.880000px;}
.fs3_c00245{font-size:42.120000px;}
.fs5_c00245{font-size:47.880000px;}
.fs2_c00245{font-size:54.000000px;}
.fs0_c00245{font-size:60.120000px;}
.fs1_c00245{font-size:72.000000px;}
.fs4_c00245{font-size:78.120000px;}
.y0_c00245{bottom:0.000000px;}
.y3_c00245{bottom:57.450450px;}
.y4_c00245{bottom:61.410450px;}
.y22_c00245{bottom:113.698470px;}
.y21_c00245{bottom:132.064230px;}
.y20_c00245{bottom:150.330450px;}
.y1f_c00245{bottom:165.540450px;}
.y1e_c00245{bottom:186.240450px;}
.y1d_c00245{bottom:206.940450px;}
.y1c_c00245{bottom:283.530450px;}
.y1b_c00245{bottom:317.910450px;}
.y1a_c00245{bottom:352.380450px;}
.y19_c00245{bottom:386.760450px;}
.y18_c00245{bottom:422.850450px;}
.y17_c00245{bottom:476.490450px;}
.y16_c00245{bottom:510.960450px;}
.y15_c00245{bottom:545.340450px;}
.y14_c00245{bottom:588.810600px;}
.y13_c00245{bottom:623.190600px;}
.y12_c00245{bottom:657.660600px;}
.y11_c00245{bottom:692.040600px;}
.y10_c00245{bottom:735.510600px;}
.yf_c00245{bottom:769.890600px;}
.ye_c00245{bottom:804.360450px;}
.yd_c00245{bottom:838.740450px;}
.yc_c00245{bottom:882.210450px;}
.yb_c00245{bottom:916.590450px;}
.ya_c00245{bottom:951.060450px;}
.y9_c00245{bottom:985.440450px;}
.y8_c00245{bottom:1028.910450px;}
.y7_c00245{bottom:1063.290450px;}
.y6_c00245{bottom:1106.760450px;}
.y5_c00245{bottom:1141.140450px;}
.y2_c00245{bottom:1173.810450px;}
.y1_c00245{bottom:1196.850450px;}
.h2_c00245{height:47.988281px;}
.hb_c00245{height:49.937344px;}
.h1_c00245{height:50.315273px;}
.h3_c00245{height:56.320312px;}
.h4_c00245{height:60.257812px;}
.h5_c00245{height:60.890625px;}
.h8_c00245{height:65.130220px;}
.h7_c00245{height:65.130820px;}
.h9_c00245{height:65.131420px;}
.h6_c00245{height:75.093750px;}
.ha_c00245{height:81.476719px;}
.h0_c00245{height:1263.000000px;}
.w1_c00245{width:892.500000px;}
.w0_c00245{width:892.830000px;}
.x0_c00245{left:0.000000px;}
.x2_c00245{left:127.620000px;}
.x6_c00245{left:154.620000px;}
.x5_c00245{left:180.720000px;}
.x4_c00245{left:435.240000px;}
.x3_c00245{left:446.490000px;}
.x1_c00245{left:490.770000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.v1_c00245{vertical-align:26.560000pt;}
.lsd_c00245{letter-spacing:-0.134400pt;}
.ls1b_c00245{letter-spacing:-0.048608pt;}
.ls10_c00245{letter-spacing:-0.044800pt;}
.ls18_c00245{letter-spacing:-0.038400pt;}
.ls1a_c00245{letter-spacing:-0.034720pt;}
.ls11_c00245{letter-spacing:-0.032000pt;}
.ls13_c00245{letter-spacing:-0.019200pt;}
.lse_c00245{letter-spacing:-0.012800pt;}
.lsf_c00245{letter-spacing:-0.006400pt;}
.ls1d_c00245{letter-spacing:-0.004256pt;}
.ls1c_c00245{letter-spacing:-0.003456pt;}
.lsc_c00245{letter-spacing:0.000000pt;}
.ls4_c00245{letter-spacing:0.006400pt;}
.ls9_c00245{letter-spacing:0.012768pt;}
.ls17_c00245{letter-spacing:0.012800pt;}
.ls5_c00245{letter-spacing:0.019200pt;}
.ls12_c00245{letter-spacing:0.025600pt;}
.ls8_c00245{letter-spacing:0.029792pt;}
.ls1_c00245{letter-spacing:0.032000pt;}
.ls0_c00245{letter-spacing:0.032064pt;}
.lsb_c00245{letter-spacing:0.042560pt;}
.ls16_c00245{letter-spacing:0.044800pt;}
.ls6_c00245{letter-spacing:0.048672pt;}
.ls14_c00245{letter-spacing:0.057600pt;}
.ls15_c00245{letter-spacing:0.076800pt;}
.ls19_c00245{letter-spacing:0.083200pt;}
.ls2_c00245{letter-spacing:0.128000pt;}
.lsa_c00245{letter-spacing:0.412480pt;}
.ls7_c00245{letter-spacing:30.623040pt;}
.ls3_c00245{letter-spacing:58.048000pt;}
.ws2_c00245{word-spacing:-17.360000pt;}
.ws1_c00245{word-spacing:-16.000000pt;}
.ws3_c00245{word-spacing:-9.604224pt;}
.ws0_c00245{word-spacing:-9.408672pt;}
.ws4_c00245{word-spacing:-0.272544pt;}
.ws23_c00245{word-spacing:-0.076800pt;}
.ws24_c00245{word-spacing:-0.048608pt;}
.ws25_c00245{word-spacing:-0.034720pt;}
.ws2d_c00245{word-spacing:-0.025536pt;}
.ws2a_c00245{word-spacing:-0.012768pt;}
.ws8_c00245{word-spacing:-0.006400pt;}
.ws5_c00245{word-spacing:0.000000pt;}
.ws2b_c00245{word-spacing:0.004256pt;}
.ws7_c00245{word-spacing:0.006400pt;}
.ws6_c00245{word-spacing:0.012800pt;}
.ws13_c00245{word-spacing:0.019200pt;}
.ws2e_c00245{word-spacing:0.021280pt;}
.ws1f_c00245{word-spacing:0.032000pt;}
.ws1e_c00245{word-spacing:0.038400pt;}
.wsc_c00245{word-spacing:0.172800pt;}
.ws12_c00245{word-spacing:0.294400pt;}
.ws10_c00245{word-spacing:0.313600pt;}
.ws2c_c00245{word-spacing:0.323456pt;}
.ws11_c00245{word-spacing:0.326400pt;}
.ws16_c00245{word-spacing:0.339200pt;}
.ws28_c00245{word-spacing:0.940800pt;}
.ws27_c00245{word-spacing:0.966400pt;}
.ws29_c00245{word-spacing:1.612800pt;}
.ws1b_c00245{word-spacing:2.195200pt;}
.ws1a_c00245{word-spacing:2.316800pt;}
.wse_c00245{word-spacing:2.540800pt;}
.wsd_c00245{word-spacing:2.579200pt;}
.ws1c_c00245{word-spacing:4.172800pt;}
.wsf_c00245{word-spacing:4.192000pt;}
.ws1d_c00245{word-spacing:4.211200pt;}
.ws26_c00245{word-spacing:9.612800pt;}
.ws21_c00245{word-spacing:10.841600pt;}
.ws22_c00245{word-spacing:10.880000pt;}
.ws9_c00245{word-spacing:11.488000pt;}
.wsb_c00245{word-spacing:11.532800pt;}
.wsa_c00245{word-spacing:11.641600pt;}
.ws17_c00245{word-spacing:11.840000pt;}
.ws14_c00245{word-spacing:12.153600pt;}
.ws15_c00245{word-spacing:12.224000pt;}
.ws19_c00245{word-spacing:13.772800pt;}
.ws18_c00245{word-spacing:13.811200pt;}
.ws20_c00245{word-spacing:18.598400pt;}
._0_c00245{margin-left:-0.908480pt;}
._1_c00245{width:0.985600pt;}
.fs6_c00245{font-size:34.560000pt;}
.fs3_c00245{font-size:37.440000pt;}
.fs5_c00245{font-size:42.560000pt;}
.fs2_c00245{font-size:48.000000pt;}
.fs0_c00245{font-size:53.440000pt;}
.fs1_c00245{font-size:64.000000pt;}
.fs4_c00245{font-size:69.440000pt;}
.y0_c00245{bottom:0.000000pt;}
.y3_c00245{bottom:51.067067pt;}
.y4_c00245{bottom:54.587067pt;}
.y22_c00245{bottom:101.065307pt;}
.y21_c00245{bottom:117.390427pt;}
.y20_c00245{bottom:133.627067pt;}
.y1f_c00245{bottom:147.147067pt;}
.y1e_c00245{bottom:165.547067pt;}
.y1d_c00245{bottom:183.947067pt;}
.y1c_c00245{bottom:252.027067pt;}
.y1b_c00245{bottom:282.587067pt;}
.y1a_c00245{bottom:313.227067pt;}
.y19_c00245{bottom:343.787067pt;}
.y18_c00245{bottom:375.867067pt;}
.y17_c00245{bottom:423.547067pt;}
.y16_c00245{bottom:454.187067pt;}
.y15_c00245{bottom:484.747067pt;}
.y14_c00245{bottom:523.387200pt;}
.y13_c00245{bottom:553.947200pt;}
.y12_c00245{bottom:584.587200pt;}
.y11_c00245{bottom:615.147200pt;}
.y10_c00245{bottom:653.787200pt;}
.yf_c00245{bottom:684.347200pt;}
.ye_c00245{bottom:714.987067pt;}
.yd_c00245{bottom:745.547067pt;}
.yc_c00245{bottom:784.187067pt;}
.yb_c00245{bottom:814.747067pt;}
.ya_c00245{bottom:845.387067pt;}
.y9_c00245{bottom:875.947067pt;}
.y8_c00245{bottom:914.587067pt;}
.y7_c00245{bottom:945.147067pt;}
.y6_c00245{bottom:983.787067pt;}
.y5_c00245{bottom:1014.347067pt;}
.y2_c00245{bottom:1043.387067pt;}
.y1_c00245{bottom:1063.867067pt;}
.h2_c00245{height:42.656250pt;}
.hb_c00245{height:44.388750pt;}
.h1_c00245{height:44.724687pt;}
.h3_c00245{height:50.062500pt;}
.h4_c00245{height:53.562500pt;}
.h5_c00245{height:54.125000pt;}
.h8_c00245{height:57.893529pt;}
.h7_c00245{height:57.894063pt;}
.h9_c00245{height:57.894596pt;}
.h6_c00245{height:66.750000pt;}
.ha_c00245{height:72.423750pt;}
.h0_c00245{height:1122.666667pt;}
.w1_c00245{width:793.333333pt;}
.w0_c00245{width:793.626667pt;}
.x0_c00245{left:0.000000pt;}
.x2_c00245{left:113.440000pt;}
.x6_c00245{left:137.440000pt;}
.x5_c00245{left:160.640000pt;}
.x4_c00245{left:386.880000pt;}
.x3_c00245{left:396.880000pt;}
.x1_c00245{left:436.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_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_f73ad62c706590b458995dd3.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.100098;font-style:normal;font-weight:normal;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_d9e7aea4e8c0ee894c4e09ef.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00246;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00246;src:url('chunks/assets/font_2fd64569e567785c8de63572.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00246;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00246{font-family:ff5_c00246;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.v1_c00246{vertical-align:15.840000px;}
.v2_c00246{vertical-align:29.880000px;}
.ls15_c00246{letter-spacing:-0.288000px;}
.lse_c00246{letter-spacing:-0.151200px;}
.ls17_c00246{letter-spacing:-0.075492px;}
.ls10_c00246{letter-spacing:-0.043200px;}
.ls13_c00246{letter-spacing:-0.036000px;}
.ls12_c00246{letter-spacing:-0.028800px;}
.ls14_c00246{letter-spacing:-0.021600px;}
.ls11_c00246{letter-spacing:-0.014400px;}
.lsf_c00246{letter-spacing:-0.007200px;}
.lsd_c00246{letter-spacing:0.000000px;}
.ls2_c00246{letter-spacing:0.007200px;}
.lsa_c00246{letter-spacing:0.014364px;}
.ls5_c00246{letter-spacing:0.014400px;}
.ls3_c00246{letter-spacing:0.021600px;}
.lsc_c00246{letter-spacing:0.023940px;}
.lsb_c00246{letter-spacing:0.028728px;}
.ls9_c00246{letter-spacing:0.033516px;}
.ls16_c00246{letter-spacing:0.036000px;}
.ls7_c00246{letter-spacing:0.041940px;}
.ls0_c00246{letter-spacing:0.048096px;}
.ls8_c00246{letter-spacing:0.050328px;}
.ls18_c00246{letter-spacing:0.052668px;}
.ls4_c00246{letter-spacing:0.054756px;}
.ls6_c00246{letter-spacing:17.363160px;}
.ls1_c00246{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00246{word-spacing:-20.894508px;}
.ws1_c00246{word-spacing:-17.956800px;}
.ws0_c00246{word-spacing:-10.584756px;}
.ws2a_c00246{word-spacing:-0.142596px;}
.ws30_c00246{word-spacing:-0.033516px;}
.ws29_c00246{word-spacing:-0.016776px;}
.ws17_c00246{word-spacing:-0.014400px;}
.ws35_c00246{word-spacing:-0.014364px;}
.ws31_c00246{word-spacing:-0.009576px;}
.ws32_c00246{word-spacing:-0.004788px;}
.ws4_c00246{word-spacing:0.000000px;}
.ws28_c00246{word-spacing:0.007200px;}
.wsb_c00246{word-spacing:0.014400px;}
.ws27_c00246{word-spacing:0.021600px;}
.ws3_c00246{word-spacing:0.042084px;}
.ws2c_c00246{word-spacing:0.050400px;}
.wsc_c00246{word-spacing:0.064800px;}
.ws2d_c00246{word-spacing:0.115200px;}
.ws2e_c00246{word-spacing:0.703836px;}
.ws2f_c00246{word-spacing:0.722988px;}
.ws6_c00246{word-spacing:1.072800px;}
.ws5_c00246{word-spacing:1.202400px;}
.ws33_c00246{word-spacing:1.790712px;}
.ws34_c00246{word-spacing:1.795500px;}
.ws16_c00246{word-spacing:2.534400px;}
.ws15_c00246{word-spacing:2.541600px;}
.ws1b_c00246{word-spacing:3.276000px;}
.ws1a_c00246{word-spacing:3.369600px;}
.ws8_c00246{word-spacing:4.010400px;}
.ws7_c00246{word-spacing:4.060800px;}
.ws26_c00246{word-spacing:4.284000px;}
.ws24_c00246{word-spacing:4.298400px;}
.ws22_c00246{word-spacing:4.341600px;}
.ws25_c00246{word-spacing:4.442400px;}
.ws23_c00246{word-spacing:4.608000px;}
.ws18_c00246{word-spacing:5.371200px;}
.ws19_c00246{word-spacing:5.392800px;}
.ws1c_c00246{word-spacing:6.494400px;}
.ws1d_c00246{word-spacing:7.581600px;}
.ws1e_c00246{word-spacing:7.639200px;}
.ws20_c00246{word-spacing:8.625600px;}
.ws1f_c00246{word-spacing:8.712000px;}
.ws21_c00246{word-spacing:8.805600px;}
.ws2b_c00246{word-spacing:11.923200px;}
.ws11_c00246{word-spacing:12.967200px;}
.ws10_c00246{word-spacing:13.017600px;}
.wsf_c00246{word-spacing:13.320000px;}
.ws12_c00246{word-spacing:13.377600px;}
.wse_c00246{word-spacing:14.752800px;}
.wsd_c00246{word-spacing:14.774400px;}
.ws13_c00246{word-spacing:16.560000px;}
.ws14_c00246{word-spacing:16.610400px;}
.wsa_c00246{word-spacing:25.538400px;}
.ws9_c00246{word-spacing:25.552800px;}
._0_c00246{margin-left:-1.322640px;}
._1_c00246{width:1.224000px;}
.fc0_c00246{color:rgb(0,0,0);}
.fs3_c00246{font-size:42.120000px;}
.fs5_c00246{font-size:47.880000px;}
.fs1_c00246{font-size:54.000000px;}
.fs0_c00246{font-size:60.120000px;}
.fs2_c00246{font-size:72.000000px;}
.fs4_c00246{font-size:83.880000px;}
.y0_c00246{bottom:0.000000px;}
.y3_c00246{bottom:57.450450px;}
.y24_c00246{bottom:113.711070px;}
.y23_c00246{bottom:127.572330px;}
.y22_c00246{bottom:145.838550px;}
.y21_c00246{bottom:164.104770px;}
.y20_c00246{bottom:182.466750px;}
.y1f_c00246{bottom:200.732970px;}
.y1e_c00246{bottom:218.999190px;}
.y1d_c00246{bottom:232.860450px;}
.y1c_c00246{bottom:248.070450px;}
.y1b_c00246{bottom:268.770450px;}
.y1a_c00246{bottom:289.470450px;}
.y19_c00246{bottom:385.500450px;}
.y18_c00246{bottom:419.970450px;}
.y17_c00246{bottom:466.500600px;}
.y16_c00246{bottom:521.490450px;}
.y15_c00246{bottom:555.960450px;}
.y14_c00246{bottom:590.340450px;}
.y13_c00246{bottom:624.810450px;}
.y12_c00246{bottom:659.190450px;}
.y11_c00246{bottom:693.660450px;}
.y10_c00246{bottom:728.040450px;}
.yf_c00246{bottom:762.510450px;}
.ye_c00246{bottom:796.890450px;}
.yd_c00246{bottom:831.360450px;}
.yc_c00246{bottom:865.740450px;}
.yb_c00246{bottom:900.210450px;}
.ya_c00246{bottom:934.590450px;}
.y9_c00246{bottom:969.060450px;}
.y8_c00246{bottom:1003.440450px;}
.y7_c00246{bottom:1037.910450px;}
.y6_c00246{bottom:1072.290450px;}
.y5_c00246{bottom:1106.760450px;}
.y4_c00246{bottom:1141.140450px;}
.y2_c00246{bottom:1177.860450px;}
.y1_c00246{bottom:1196.850450px;}
.h8_c00246{height:47.988281px;}
.h9_c00246{height:49.937344px;}
.h1_c00246{height:50.315273px;}
.h2_c00246{height:56.320312px;}
.h4_c00246{height:60.257812px;}
.h5_c00246{height:65.130820px;}
.h6_c00246{height:65.131420px;}
.h3_c00246{height:72.160312px;}
.h7_c00246{height:87.484219px;}
.h0_c00246{height:1263.000000px;}
.w1_c00246{width:892.500000px;}
.w0_c00246{width:892.830000px;}
.x0_c00246{left:0.000000px;}
.x1_c00246{left:127.620000px;}
.x3_c00246{left:154.432800px;}
.x2_c00246{left:180.720000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.v1_c00246{vertical-align:14.080000pt;}
.v2_c00246{vertical-align:26.560000pt;}
.ls15_c00246{letter-spacing:-0.256000pt;}
.lse_c00246{letter-spacing:-0.134400pt;}
.ls17_c00246{letter-spacing:-0.067104pt;}
.ls10_c00246{letter-spacing:-0.038400pt;}
.ls13_c00246{letter-spacing:-0.032000pt;}
.ls12_c00246{letter-spacing:-0.025600pt;}
.ls14_c00246{letter-spacing:-0.019200pt;}
.ls11_c00246{letter-spacing:-0.012800pt;}
.lsf_c00246{letter-spacing:-0.006400pt;}
.lsd_c00246{letter-spacing:0.000000pt;}
.ls2_c00246{letter-spacing:0.006400pt;}
.lsa_c00246{letter-spacing:0.012768pt;}
.ls5_c00246{letter-spacing:0.012800pt;}
.ls3_c00246{letter-spacing:0.019200pt;}
.lsc_c00246{letter-spacing:0.021280pt;}
.lsb_c00246{letter-spacing:0.025536pt;}
.ls9_c00246{letter-spacing:0.029792pt;}
.ls16_c00246{letter-spacing:0.032000pt;}
.ls7_c00246{letter-spacing:0.037280pt;}
.ls0_c00246{letter-spacing:0.042752pt;}
.ls8_c00246{letter-spacing:0.044736pt;}
.ls18_c00246{letter-spacing:0.046816pt;}
.ls4_c00246{letter-spacing:0.048672pt;}
.ls6_c00246{letter-spacing:15.433920pt;}
.ls1_c00246{letter-spacing:1077.440000pt;}
.ws2_c00246{word-spacing:-18.572896pt;}
.ws1_c00246{word-spacing:-15.961600pt;}
.ws0_c00246{word-spacing:-9.408672pt;}
.ws2a_c00246{word-spacing:-0.126752pt;}
.ws30_c00246{word-spacing:-0.029792pt;}
.ws29_c00246{word-spacing:-0.014912pt;}
.ws17_c00246{word-spacing:-0.012800pt;}
.ws35_c00246{word-spacing:-0.012768pt;}
.ws31_c00246{word-spacing:-0.008512pt;}
.ws32_c00246{word-spacing:-0.004256pt;}
.ws4_c00246{word-spacing:0.000000pt;}
.ws28_c00246{word-spacing:0.006400pt;}
.wsb_c00246{word-spacing:0.012800pt;}
.ws27_c00246{word-spacing:0.019200pt;}
.ws3_c00246{word-spacing:0.037408pt;}
.ws2c_c00246{word-spacing:0.044800pt;}
.wsc_c00246{word-spacing:0.057600pt;}
.ws2d_c00246{word-spacing:0.102400pt;}
.ws2e_c00246{word-spacing:0.625632pt;}
.ws2f_c00246{word-spacing:0.642656pt;}
.ws6_c00246{word-spacing:0.953600pt;}
.ws5_c00246{word-spacing:1.068800pt;}
.ws33_c00246{word-spacing:1.591744pt;}
.ws34_c00246{word-spacing:1.596000pt;}
.ws16_c00246{word-spacing:2.252800pt;}
.ws15_c00246{word-spacing:2.259200pt;}
.ws1b_c00246{word-spacing:2.912000pt;}
.ws1a_c00246{word-spacing:2.995200pt;}
.ws8_c00246{word-spacing:3.564800pt;}
.ws7_c00246{word-spacing:3.609600pt;}
.ws26_c00246{word-spacing:3.808000pt;}
.ws24_c00246{word-spacing:3.820800pt;}
.ws22_c00246{word-spacing:3.859200pt;}
.ws25_c00246{word-spacing:3.948800pt;}
.ws23_c00246{word-spacing:4.096000pt;}
.ws18_c00246{word-spacing:4.774400pt;}
.ws19_c00246{word-spacing:4.793600pt;}
.ws1c_c00246{word-spacing:5.772800pt;}
.ws1d_c00246{word-spacing:6.739200pt;}
.ws1e_c00246{word-spacing:6.790400pt;}
.ws20_c00246{word-spacing:7.667200pt;}
.ws1f_c00246{word-spacing:7.744000pt;}
.ws21_c00246{word-spacing:7.827200pt;}
.ws2b_c00246{word-spacing:10.598400pt;}
.ws11_c00246{word-spacing:11.526400pt;}
.ws10_c00246{word-spacing:11.571200pt;}
.wsf_c00246{word-spacing:11.840000pt;}
.ws12_c00246{word-spacing:11.891200pt;}
.wse_c00246{word-spacing:13.113600pt;}
.wsd_c00246{word-spacing:13.132800pt;}
.ws13_c00246{word-spacing:14.720000pt;}
.ws14_c00246{word-spacing:14.764800pt;}
.wsa_c00246{word-spacing:22.700800pt;}
.ws9_c00246{word-spacing:22.713600pt;}
._0_c00246{margin-left:-1.175680pt;}
._1_c00246{width:1.088000pt;}
.fs3_c00246{font-size:37.440000pt;}
.fs5_c00246{font-size:42.560000pt;}
.fs1_c00246{font-size:48.000000pt;}
.fs0_c00246{font-size:53.440000pt;}
.fs2_c00246{font-size:64.000000pt;}
.fs4_c00246{font-size:74.560000pt;}
.y0_c00246{bottom:0.000000pt;}
.y3_c00246{bottom:51.067067pt;}
.y24_c00246{bottom:101.076507pt;}
.y23_c00246{bottom:113.397627pt;}
.y22_c00246{bottom:129.634267pt;}
.y21_c00246{bottom:145.870907pt;}
.y20_c00246{bottom:162.192667pt;}
.y1f_c00246{bottom:178.429307pt;}
.y1e_c00246{bottom:194.665947pt;}
.y1d_c00246{bottom:206.987067pt;}
.y1c_c00246{bottom:220.507067pt;}
.y1b_c00246{bottom:238.907067pt;}
.y1a_c00246{bottom:257.307067pt;}
.y19_c00246{bottom:342.667067pt;}
.y18_c00246{bottom:373.307067pt;}
.y17_c00246{bottom:414.667200pt;}
.y16_c00246{bottom:463.547067pt;}
.y15_c00246{bottom:494.187067pt;}
.y14_c00246{bottom:524.747067pt;}
.y13_c00246{bottom:555.387067pt;}
.y12_c00246{bottom:585.947067pt;}
.y11_c00246{bottom:616.587067pt;}
.y10_c00246{bottom:647.147067pt;}
.yf_c00246{bottom:677.787067pt;}
.ye_c00246{bottom:708.347067pt;}
.yd_c00246{bottom:738.987067pt;}
.yc_c00246{bottom:769.547067pt;}
.yb_c00246{bottom:800.187067pt;}
.ya_c00246{bottom:830.747067pt;}
.y9_c00246{bottom:861.387067pt;}
.y8_c00246{bottom:891.947067pt;}
.y7_c00246{bottom:922.587067pt;}
.y6_c00246{bottom:953.147067pt;}
.y5_c00246{bottom:983.787067pt;}
.y4_c00246{bottom:1014.347067pt;}
.y2_c00246{bottom:1046.987067pt;}
.y1_c00246{bottom:1063.867067pt;}
.h8_c00246{height:42.656250pt;}
.h9_c00246{height:44.388750pt;}
.h1_c00246{height:44.724687pt;}
.h2_c00246{height:50.062500pt;}
.h4_c00246{height:53.562500pt;}
.h5_c00246{height:57.894063pt;}
.h6_c00246{height:57.894596pt;}
.h3_c00246{height:64.142500pt;}
.h7_c00246{height:77.763750pt;}
.h0_c00246{height:1122.666667pt;}
.w1_c00246{width:793.333333pt;}
.w0_c00246{width:793.626667pt;}
.x0_c00246{left:0.000000pt;}
.x1_c00246{left:113.440000pt;}
.x3_c00246{left:137.273600pt;}
.x2_c00246{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_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_c934ecec84c38b0c9efd345a.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00247;src:url('chunks/assets/font_34db21a5fd015867f0b86ce6.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_9e85229e0aea481ee14ccbc8.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00247;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00247{font-family:ff5_c00247;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00247;src:url('chunks/assets/font_2779a907ee8dde064e5896e9.woff2')format("woff");}.ff6_c00247{font-family:ff6_c00247;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.v1_c00247{vertical-align:29.880600px;}
.lsa_c00247{letter-spacing:-0.151200px;}
.lsf_c00247{letter-spacing:-0.046872px;}
.lsd_c00247{letter-spacing:-0.043200px;}
.ls12_c00247{letter-spacing:-0.028800px;}
.lsb_c00247{letter-spacing:-0.021600px;}
.ls10_c00247{letter-spacing:-0.014400px;}
.lse_c00247{letter-spacing:-0.007812px;}
.lsc_c00247{letter-spacing:-0.007200px;}
.ls9_c00247{letter-spacing:0.000000px;}
.ls6_c00247{letter-spacing:0.003888px;}
.ls2_c00247{letter-spacing:0.007200px;}
.ls5_c00247{letter-spacing:0.014364px;}
.ls11_c00247{letter-spacing:0.014400px;}
.ls7_c00247{letter-spacing:0.019152px;}
.ls3_c00247{letter-spacing:0.021600px;}
.ls8_c00247{letter-spacing:0.023940px;}
.ls0_c00247{letter-spacing:0.036072px;}
.ls13_c00247{letter-spacing:0.038304px;}
.ls4_c00247{letter-spacing:0.054756px;}
.ls1_c00247{letter-spacing:83.041560px;}
.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:-19.522188px;}
.ws2_c00247{word-spacing:-13.310640px;}
.ws3_c00247{word-spacing:-10.812528px;}
.ws1_c00247{word-spacing:-10.584756px;}
.ws4_c00247{word-spacing:-0.306612px;}
.ws10_c00247{word-spacing:-0.046872px;}
.ws32_c00247{word-spacing:-0.019152px;}
.ws33_c00247{word-spacing:-0.004788px;}
.ws5_c00247{word-spacing:0.000000px;}
.ws31_c00247{word-spacing:0.004788px;}
.wsf_c00247{word-spacing:0.007200px;}
.ws1c_c00247{word-spacing:0.014400px;}
.ws2a_c00247{word-spacing:0.050400px;}
.ws17_c00247{word-spacing:0.151200px;}
.ws20_c00247{word-spacing:1.108800px;}
.ws21_c00247{word-spacing:1.152000px;}
.ws2b_c00247{word-spacing:1.396800px;}
.ws2c_c00247{word-spacing:1.461600px;}
.ws28_c00247{word-spacing:1.504800px;}
.ws29_c00247{word-spacing:1.533600px;}
.ws8_c00247{word-spacing:1.807200px;}
.ws1a_c00247{word-spacing:1.814400px;}
.ws7_c00247{word-spacing:1.821600px;}
.ws1b_c00247{word-spacing:1.843200px;}
.ws23_c00247{word-spacing:2.484000px;}
.ws22_c00247{word-spacing:2.548800px;}
.wse_c00247{word-spacing:3.261600px;}
.wsd_c00247{word-spacing:3.362400px;}
.ws6_c00247{word-spacing:3.621600px;}
.ws13_c00247{word-spacing:3.664800px;}
.ws14_c00247{word-spacing:3.722400px;}
.ws12_c00247{word-spacing:4.658400px;}
.ws30_c00247{word-spacing:4.708800px;}
.ws11_c00247{word-spacing:4.744800px;}
.ws2f_c00247{word-spacing:4.766400px;}
.ws24_c00247{word-spacing:5.356800px;}
.ws25_c00247{word-spacing:5.414400px;}
.ws1e_c00247{word-spacing:5.810400px;}
.ws1d_c00247{word-spacing:5.832000px;}
.wsa_c00247{word-spacing:6.480000px;}
.ws9_c00247{word-spacing:6.559200px;}
.ws2d_c00247{word-spacing:8.992800px;}
.ws2e_c00247{word-spacing:9.043200px;}
.wsc_c00247{word-spacing:9.727200px;}
.wsb_c00247{word-spacing:9.777600px;}
.ws1f_c00247{word-spacing:10.094400px;}
.ws19_c00247{word-spacing:10.360800px;}
.ws18_c00247{word-spacing:10.540800px;}
.ws26_c00247{word-spacing:12.312000px;}
.ws27_c00247{word-spacing:12.376800px;}
.ws16_c00247{word-spacing:21.283200px;}
.ws15_c00247{word-spacing:21.326400px;}
._0_c00247{margin-left:-1.022040px;}
._1_c00247{width:1.080000px;}
.fc0_c00247{color:rgb(0,0,0);}
.fs6_c00247{font-size:38.880000px;}
.fs4_c00247{font-size:42.120000px;}
.fs5_c00247{font-size:47.880000px;}
.fs2_c00247{font-size:54.000000px;}
.fs0_c00247{font-size:60.120000px;}
.fs1_c00247{font-size:72.000000px;}
.fs3_c00247{font-size:78.120000px;}
.y0_c00247{bottom:0.000000px;}
.y3_c00247{bottom:57.450450px;}
.y4_c00247{bottom:61.410450px;}
.y23_c00247{bottom:113.698470px;}
.y22_c00247{bottom:132.060450px;}
.y21_c00247{bottom:147.270450px;}
.y20_c00247{bottom:167.970450px;}
.y1f_c00247{bottom:188.670450px;}
.y1e_c00247{bottom:250.680450px;}
.y1d_c00247{bottom:285.060450px;}
.y1c_c00247{bottom:319.530450px;}
.y1b_c00247{bottom:353.910450px;}
.y1a_c00247{bottom:388.380450px;}
.y19_c00247{bottom:422.760450px;}
.y18_c00247{bottom:457.230450px;}
.y17_c00247{bottom:491.610450px;}
.y16_c00247{bottom:526.080450px;}
.y15_c00247{bottom:560.460450px;}
.y14_c00247{bottom:594.930450px;}
.y13_c00247{bottom:629.310450px;}
.y12_c00247{bottom:663.780450px;}
.y11_c00247{bottom:698.160450px;}
.y10_c00247{bottom:732.630450px;}
.yf_c00247{bottom:767.010450px;}
.ye_c00247{bottom:801.480450px;}
.yd_c00247{bottom:835.860450px;}
.yc_c00247{bottom:870.330450px;}
.yb_c00247{bottom:915.330450px;}
.ya_c00247{bottom:969.060450px;}
.y9_c00247{bottom:1003.440450px;}
.y8_c00247{bottom:1037.910450px;}
.y7_c00247{bottom:1072.290450px;}
.y6_c00247{bottom:1106.760450px;}
.y5_c00247{bottom:1141.140450px;}
.y2_c00247{bottom:1173.810450px;}
.y1_c00247{bottom:1196.850450px;}
.h2_c00247{height:47.988281px;}
.h8_c00247{height:49.937344px;}
.h1_c00247{height:50.315273px;}
.h3_c00247{height:56.320312px;}
.h4_c00247{height:60.257812px;}
.h7_c00247{height:65.130820px;}
.h6_c00247{height:65.131420px;}
.h5_c00247{height:81.476719px;}
.h0_c00247{height:1263.000000px;}
.w1_c00247{width:892.500000px;}
.w0_c00247{width:892.830000px;}
.x0_c00247{left:0.000000px;}
.x2_c00247{left:127.620000px;}
.x5_c00247{left:180.720000px;}
.x4_c00247{left:435.240000px;}
.x3_c00247{left:446.490000px;}
.x1_c00247{left:490.770000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.v1_c00247{vertical-align:26.560533pt;}
.lsa_c00247{letter-spacing:-0.134400pt;}
.lsf_c00247{letter-spacing:-0.041664pt;}
.lsd_c00247{letter-spacing:-0.038400pt;}
.ls12_c00247{letter-spacing:-0.025600pt;}
.lsb_c00247{letter-spacing:-0.019200pt;}
.ls10_c00247{letter-spacing:-0.012800pt;}
.lse_c00247{letter-spacing:-0.006944pt;}
.lsc_c00247{letter-spacing:-0.006400pt;}
.ls9_c00247{letter-spacing:0.000000pt;}
.ls6_c00247{letter-spacing:0.003456pt;}
.ls2_c00247{letter-spacing:0.006400pt;}
.ls5_c00247{letter-spacing:0.012768pt;}
.ls11_c00247{letter-spacing:0.012800pt;}
.ls7_c00247{letter-spacing:0.017024pt;}
.ls3_c00247{letter-spacing:0.019200pt;}
.ls8_c00247{letter-spacing:0.021280pt;}
.ls0_c00247{letter-spacing:0.032064pt;}
.ls13_c00247{letter-spacing:0.034048pt;}
.ls4_c00247{letter-spacing:0.048672pt;}
.ls1_c00247{letter-spacing:73.814720pt;}
.ws0_c00247{word-spacing:-17.353056pt;}
.ws2_c00247{word-spacing:-11.831680pt;}
.ws3_c00247{word-spacing:-9.611136pt;}
.ws1_c00247{word-spacing:-9.408672pt;}
.ws4_c00247{word-spacing:-0.272544pt;}
.ws10_c00247{word-spacing:-0.041664pt;}
.ws32_c00247{word-spacing:-0.017024pt;}
.ws33_c00247{word-spacing:-0.004256pt;}
.ws5_c00247{word-spacing:0.000000pt;}
.ws31_c00247{word-spacing:0.004256pt;}
.wsf_c00247{word-spacing:0.006400pt;}
.ws1c_c00247{word-spacing:0.012800pt;}
.ws2a_c00247{word-spacing:0.044800pt;}
.ws17_c00247{word-spacing:0.134400pt;}
.ws20_c00247{word-spacing:0.985600pt;}
.ws21_c00247{word-spacing:1.024000pt;}
.ws2b_c00247{word-spacing:1.241600pt;}
.ws2c_c00247{word-spacing:1.299200pt;}
.ws28_c00247{word-spacing:1.337600pt;}
.ws29_c00247{word-spacing:1.363200pt;}
.ws8_c00247{word-spacing:1.606400pt;}
.ws1a_c00247{word-spacing:1.612800pt;}
.ws7_c00247{word-spacing:1.619200pt;}
.ws1b_c00247{word-spacing:1.638400pt;}
.ws23_c00247{word-spacing:2.208000pt;}
.ws22_c00247{word-spacing:2.265600pt;}
.wse_c00247{word-spacing:2.899200pt;}
.wsd_c00247{word-spacing:2.988800pt;}
.ws6_c00247{word-spacing:3.219200pt;}
.ws13_c00247{word-spacing:3.257600pt;}
.ws14_c00247{word-spacing:3.308800pt;}
.ws12_c00247{word-spacing:4.140800pt;}
.ws30_c00247{word-spacing:4.185600pt;}
.ws11_c00247{word-spacing:4.217600pt;}
.ws2f_c00247{word-spacing:4.236800pt;}
.ws24_c00247{word-spacing:4.761600pt;}
.ws25_c00247{word-spacing:4.812800pt;}
.ws1e_c00247{word-spacing:5.164800pt;}
.ws1d_c00247{word-spacing:5.184000pt;}
.wsa_c00247{word-spacing:5.760000pt;}
.ws9_c00247{word-spacing:5.830400pt;}
.ws2d_c00247{word-spacing:7.993600pt;}
.ws2e_c00247{word-spacing:8.038400pt;}
.wsc_c00247{word-spacing:8.646400pt;}
.wsb_c00247{word-spacing:8.691200pt;}
.ws1f_c00247{word-spacing:8.972800pt;}
.ws19_c00247{word-spacing:9.209600pt;}
.ws18_c00247{word-spacing:9.369600pt;}
.ws26_c00247{word-spacing:10.944000pt;}
.ws27_c00247{word-spacing:11.001600pt;}
.ws16_c00247{word-spacing:18.918400pt;}
.ws15_c00247{word-spacing:18.956800pt;}
._0_c00247{margin-left:-0.908480pt;}
._1_c00247{width:0.960000pt;}
.fs6_c00247{font-size:34.560000pt;}
.fs4_c00247{font-size:37.440000pt;}
.fs5_c00247{font-size:42.560000pt;}
.fs2_c00247{font-size:48.000000pt;}
.fs0_c00247{font-size:53.440000pt;}
.fs1_c00247{font-size:64.000000pt;}
.fs3_c00247{font-size:69.440000pt;}
.y0_c00247{bottom:0.000000pt;}
.y3_c00247{bottom:51.067067pt;}
.y4_c00247{bottom:54.587067pt;}
.y23_c00247{bottom:101.065307pt;}
.y22_c00247{bottom:117.387067pt;}
.y21_c00247{bottom:130.907067pt;}
.y20_c00247{bottom:149.307067pt;}
.y1f_c00247{bottom:167.707067pt;}
.y1e_c00247{bottom:222.827067pt;}
.y1d_c00247{bottom:253.387067pt;}
.y1c_c00247{bottom:284.027067pt;}
.y1b_c00247{bottom:314.587067pt;}
.y1a_c00247{bottom:345.227067pt;}
.y19_c00247{bottom:375.787067pt;}
.y18_c00247{bottom:406.427067pt;}
.y17_c00247{bottom:436.987067pt;}
.y16_c00247{bottom:467.627067pt;}
.y15_c00247{bottom:498.187067pt;}
.y14_c00247{bottom:528.827067pt;}
.y13_c00247{bottom:559.387067pt;}
.y12_c00247{bottom:590.027067pt;}
.y11_c00247{bottom:620.587067pt;}
.y10_c00247{bottom:651.227067pt;}
.yf_c00247{bottom:681.787067pt;}
.ye_c00247{bottom:712.427067pt;}
.yd_c00247{bottom:742.987067pt;}
.yc_c00247{bottom:773.627067pt;}
.yb_c00247{bottom:813.627067pt;}
.ya_c00247{bottom:861.387067pt;}
.y9_c00247{bottom:891.947067pt;}
.y8_c00247{bottom:922.587067pt;}
.y7_c00247{bottom:953.147067pt;}
.y6_c00247{bottom:983.787067pt;}
.y5_c00247{bottom:1014.347067pt;}
.y2_c00247{bottom:1043.387067pt;}
.y1_c00247{bottom:1063.867067pt;}
.h2_c00247{height:42.656250pt;}
.h8_c00247{height:44.388750pt;}
.h1_c00247{height:44.724687pt;}
.h3_c00247{height:50.062500pt;}
.h4_c00247{height:53.562500pt;}
.h7_c00247{height:57.894062pt;}
.h6_c00247{height:57.894596pt;}
.h5_c00247{height:72.423750pt;}
.h0_c00247{height:1122.666667pt;}
.w1_c00247{width:793.333333pt;}
.w0_c00247{width:793.626667pt;}
.x0_c00247{left:0.000000pt;}
.x2_c00247{left:113.440000pt;}
.x5_c00247{left:160.640000pt;}
.x4_c00247{left:386.880000pt;}
.x3_c00247{left:396.880000pt;}
.x1_c00247{left:436.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_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_b910d6003d4be70de89ce4df.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.100098;font-style:normal;font-weight:normal;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_accd0a4dcdc7f0ec7a6a634e.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;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_c00248;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00248;src:url('chunks/assets/font_b13d2c882ecd1bfa42e226e3.woff2')format("woff");}.ff4_c00248{font-family:ff4_c00248;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00248;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00248{font-family:ff5_c00248;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_c00248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.v1_c00248{vertical-align:15.840000px;}
.v2_c00248{vertical-align:29.880000px;}
.lsc_c00248{letter-spacing:-0.151200px;}
.lsd_c00248{letter-spacing:-0.031248px;}
.ls13_c00248{letter-spacing:-0.028800px;}
.lse_c00248{letter-spacing:-0.021600px;}
.ls11_c00248{letter-spacing:-0.014400px;}
.lsf_c00248{letter-spacing:-0.007200px;}
.lsb_c00248{letter-spacing:0.000000px;}
.ls12_c00248{letter-spacing:0.007200px;}
.ls3_c00248{letter-spacing:0.014400px;}
.ls5_c00248{letter-spacing:0.021600px;}
.lsa_c00248{letter-spacing:0.023940px;}
.ls9_c00248{letter-spacing:0.033516px;}
.ls10_c00248{letter-spacing:0.036000px;}
.ls0_c00248{letter-spacing:0.048096px;}
.ls4_c00248{letter-spacing:0.050400px;}
.ls14_c00248{letter-spacing:0.052668px;}
.ls8_c00248{letter-spacing:0.054756px;}
.ls6_c00248{letter-spacing:0.144000px;}
.ls2_c00248{letter-spacing:40.231800px;}
.ls7_c00248{letter-spacing:66.024000px;}
.ls1_c00248{letter-spacing:1212.120000px;}
.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:-19.498752px;}
.ws1_c00248{word-spacing:-10.584756px;}
.ws4_c00248{word-spacing:-0.093744px;}
.ws23_c00248{word-spacing:-0.033516px;}
.ws21_c00248{word-spacing:-0.014364px;}
.wsf_c00248{word-spacing:-0.007200px;}
.ws22_c00248{word-spacing:-0.004788px;}
.ws3_c00248{word-spacing:0.000000px;}
.ws20_c00248{word-spacing:0.007200px;}
.wsd_c00248{word-spacing:0.014400px;}
.ws14_c00248{word-spacing:0.021600px;}
.ws2_c00248{word-spacing:0.042084px;}
.ws17_c00248{word-spacing:0.050400px;}
.ws12_c00248{word-spacing:0.381600px;}
.ws13_c00248{word-spacing:0.388800px;}
.ws6_c00248{word-spacing:1.468800px;}
.ws15_c00248{word-spacing:1.778400px;}
.ws1d_c00248{word-spacing:3.182400px;}
.ws1e_c00248{word-spacing:3.268800px;}
.ws1f_c00248{word-spacing:3.340800px;}
.wsb_c00248{word-spacing:3.578400px;}
.ws1c_c00248{word-spacing:4.341600px;}
.ws9_c00248{word-spacing:4.629600px;}
.wsa_c00248{word-spacing:4.644000px;}
.ws8_c00248{word-spacing:4.687200px;}
.ws7_c00248{word-spacing:4.737600px;}
.ws1a_c00248{word-spacing:5.716800px;}
.ws1b_c00248{word-spacing:5.752800px;}
.wsc_c00248{word-spacing:6.148800px;}
.ws5_c00248{word-spacing:6.501600px;}
.ws18_c00248{word-spacing:7.574400px;}
.ws19_c00248{word-spacing:7.632000px;}
.ws10_c00248{word-spacing:10.821600px;}
.ws11_c00248{word-spacing:10.828800px;}
.ws16_c00248{word-spacing:15.480000px;}
.wse_c00248{word-spacing:19.821600px;}
._0_c00248{margin-left:-1.322640px;}
._1_c00248{width:1.296000px;}
.fc0_c00248{color:rgb(0,0,0);}
.fs4_c00248{font-size:42.120000px;}
.fs5_c00248{font-size:47.880000px;}
.fs1_c00248{font-size:54.000000px;}
.fs0_c00248{font-size:60.120000px;}
.fs2_c00248{font-size:72.000000px;}
.fs3_c00248{font-size:78.120000px;}
.y0_c00248{bottom:0.000000px;}
.y3_c00248{bottom:57.450450px;}
.y20_c00248{bottom:113.702250px;}
.y1f_c00248{bottom:132.064230px;}
.y1e_c00248{bottom:150.330450px;}
.y1d_c00248{bottom:165.540450px;}
.y1c_c00248{bottom:186.240450px;}
.y1b_c00248{bottom:206.940450px;}
.y1a_c00248{bottom:317.910450px;}
.y19_c00248{bottom:352.380450px;}
.y18_c00248{bottom:386.760450px;}
.y17_c00248{bottom:421.230450px;}
.y16_c00248{bottom:455.610450px;}
.y15_c00248{bottom:499.080450px;}
.y14_c00248{bottom:533.460450px;}
.y13_c00248{bottom:576.930450px;}
.y12_c00248{bottom:611.310450px;}
.y11_c00248{bottom:654.780450px;}
.y10_c00248{bottom:689.160450px;}
.yf_c00248{bottom:723.630450px;}
.ye_c00248{bottom:758.010450px;}
.yd_c00248{bottom:801.480450px;}
.yc_c00248{bottom:835.860450px;}
.yb_c00248{bottom:879.330450px;}
.ya_c00248{bottom:913.710450px;}
.y9_c00248{bottom:957.180450px;}
.y8_c00248{bottom:991.560450px;}
.y7_c00248{bottom:1026.030450px;}
.y6_c00248{bottom:1060.410450px;}
.y5_c00248{bottom:1094.880450px;}
.y4_c00248{bottom:1139.880450px;}
.y2_c00248{bottom:1177.860450px;}
.y1_c00248{bottom:1196.850450px;}
.h8_c00248{height:47.988281px;}
.h9_c00248{height:49.937344px;}
.h1_c00248{height:50.315273px;}
.h2_c00248{height:56.320312px;}
.h5_c00248{height:60.257812px;}
.h7_c00248{height:65.130820px;}
.h3_c00248{height:72.160312px;}
.h6_c00248{height:75.093750px;}
.h4_c00248{height:81.476719px;}
.h0_c00248{height:1263.000000px;}
.w1_c00248{width:892.500000px;}
.w0_c00248{width:892.830000px;}
.x0_c00248{left:0.000000px;}
.x1_c00248{left:127.620000px;}
.x3_c00248{left:154.440000px;}
.x2_c00248{left:180.720000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.v1_c00248{vertical-align:14.080000pt;}
.v2_c00248{vertical-align:26.560000pt;}
.lsc_c00248{letter-spacing:-0.134400pt;}
.lsd_c00248{letter-spacing:-0.027776pt;}
.ls13_c00248{letter-spacing:-0.025600pt;}
.lse_c00248{letter-spacing:-0.019200pt;}
.ls11_c00248{letter-spacing:-0.012800pt;}
.lsf_c00248{letter-spacing:-0.006400pt;}
.lsb_c00248{letter-spacing:0.000000pt;}
.ls12_c00248{letter-spacing:0.006400pt;}
.ls3_c00248{letter-spacing:0.012800pt;}
.ls5_c00248{letter-spacing:0.019200pt;}
.lsa_c00248{letter-spacing:0.021280pt;}
.ls9_c00248{letter-spacing:0.029792pt;}
.ls10_c00248{letter-spacing:0.032000pt;}
.ls0_c00248{letter-spacing:0.042752pt;}
.ls4_c00248{letter-spacing:0.044800pt;}
.ls14_c00248{letter-spacing:0.046816pt;}
.ls8_c00248{letter-spacing:0.048672pt;}
.ls6_c00248{letter-spacing:0.128000pt;}
.ls2_c00248{letter-spacing:35.761600pt;}
.ls7_c00248{letter-spacing:58.688000pt;}
.ls1_c00248{letter-spacing:1077.440000pt;}
.ws0_c00248{word-spacing:-17.332224pt;}
.ws1_c00248{word-spacing:-9.408672pt;}
.ws4_c00248{word-spacing:-0.083328pt;}
.ws23_c00248{word-spacing:-0.029792pt;}
.ws21_c00248{word-spacing:-0.012768pt;}
.wsf_c00248{word-spacing:-0.006400pt;}
.ws22_c00248{word-spacing:-0.004256pt;}
.ws3_c00248{word-spacing:0.000000pt;}
.ws20_c00248{word-spacing:0.006400pt;}
.wsd_c00248{word-spacing:0.012800pt;}
.ws14_c00248{word-spacing:0.019200pt;}
.ws2_c00248{word-spacing:0.037408pt;}
.ws17_c00248{word-spacing:0.044800pt;}
.ws12_c00248{word-spacing:0.339200pt;}
.ws13_c00248{word-spacing:0.345600pt;}
.ws6_c00248{word-spacing:1.305600pt;}
.ws15_c00248{word-spacing:1.580800pt;}
.ws1d_c00248{word-spacing:2.828800pt;}
.ws1e_c00248{word-spacing:2.905600pt;}
.ws1f_c00248{word-spacing:2.969600pt;}
.wsb_c00248{word-spacing:3.180800pt;}
.ws1c_c00248{word-spacing:3.859200pt;}
.ws9_c00248{word-spacing:4.115200pt;}
.wsa_c00248{word-spacing:4.128000pt;}
.ws8_c00248{word-spacing:4.166400pt;}
.ws7_c00248{word-spacing:4.211200pt;}
.ws1a_c00248{word-spacing:5.081600pt;}
.ws1b_c00248{word-spacing:5.113600pt;}
.wsc_c00248{word-spacing:5.465600pt;}
.ws5_c00248{word-spacing:5.779200pt;}
.ws18_c00248{word-spacing:6.732800pt;}
.ws19_c00248{word-spacing:6.784000pt;}
.ws10_c00248{word-spacing:9.619200pt;}
.ws11_c00248{word-spacing:9.625600pt;}
.ws16_c00248{word-spacing:13.760000pt;}
.wse_c00248{word-spacing:17.619200pt;}
._0_c00248{margin-left:-1.175680pt;}
._1_c00248{width:1.152000pt;}
.fs4_c00248{font-size:37.440000pt;}
.fs5_c00248{font-size:42.560000pt;}
.fs1_c00248{font-size:48.000000pt;}
.fs0_c00248{font-size:53.440000pt;}
.fs2_c00248{font-size:64.000000pt;}
.fs3_c00248{font-size:69.440000pt;}
.y0_c00248{bottom:0.000000pt;}
.y3_c00248{bottom:51.067067pt;}
.y20_c00248{bottom:101.068667pt;}
.y1f_c00248{bottom:117.390427pt;}
.y1e_c00248{bottom:133.627067pt;}
.y1d_c00248{bottom:147.147067pt;}
.y1c_c00248{bottom:165.547067pt;}
.y1b_c00248{bottom:183.947067pt;}
.y1a_c00248{bottom:282.587067pt;}
.y19_c00248{bottom:313.227067pt;}
.y18_c00248{bottom:343.787067pt;}
.y17_c00248{bottom:374.427067pt;}
.y16_c00248{bottom:404.987067pt;}
.y15_c00248{bottom:443.627067pt;}
.y14_c00248{bottom:474.187067pt;}
.y13_c00248{bottom:512.827067pt;}
.y12_c00248{bottom:543.387067pt;}
.y11_c00248{bottom:582.027067pt;}
.y10_c00248{bottom:612.587067pt;}
.yf_c00248{bottom:643.227067pt;}
.ye_c00248{bottom:673.787067pt;}
.yd_c00248{bottom:712.427067pt;}
.yc_c00248{bottom:742.987067pt;}
.yb_c00248{bottom:781.627067pt;}
.ya_c00248{bottom:812.187067pt;}
.y9_c00248{bottom:850.827067pt;}
.y8_c00248{bottom:881.387067pt;}
.y7_c00248{bottom:912.027067pt;}
.y6_c00248{bottom:942.587067pt;}
.y5_c00248{bottom:973.227067pt;}
.y4_c00248{bottom:1013.227067pt;}
.y2_c00248{bottom:1046.987067pt;}
.y1_c00248{bottom:1063.867067pt;}
.h8_c00248{height:42.656250pt;}
.h9_c00248{height:44.388750pt;}
.h1_c00248{height:44.724687pt;}
.h2_c00248{height:50.062500pt;}
.h5_c00248{height:53.562500pt;}
.h7_c00248{height:57.894062pt;}
.h3_c00248{height:64.142500pt;}
.h6_c00248{height:66.750000pt;}
.h4_c00248{height:72.423750pt;}
.h0_c00248{height:1122.666667pt;}
.w1_c00248{width:793.333333pt;}
.w0_c00248{width:793.626667pt;}
.x0_c00248{left:0.000000pt;}
.x1_c00248{left:113.440000pt;}
.x3_c00248{left:137.280000pt;}
.x2_c00248{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_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_c7f0c1a2c1210a48cb8065b1.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_25501daa1c3fc99e75e1defd.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_17110731eeac5cf7757051bf.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00249;src:url('chunks/assets/font_0e83486b558aae6dcb729181.woff2')format("woff");}.ff5_c00249{font-family:ff5_c00249;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_c00249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.v1_c00249{vertical-align:29.880000px;}
.ls11_c00249{letter-spacing:-0.151200px;}
.ls15_c00249{letter-spacing:-0.064800px;}
.ls16_c00249{letter-spacing:-0.043200px;}
.ls19_c00249{letter-spacing:-0.036000px;}
.ls18_c00249{letter-spacing:-0.028800px;}
.ls12_c00249{letter-spacing:-0.021600px;}
.ls1d_c00249{letter-spacing:-0.015552px;}
.ls13_c00249{letter-spacing:-0.014400px;}
.ls1a_c00249{letter-spacing:-0.007776px;}
.ls17_c00249{letter-spacing:-0.007200px;}
.ls1f_c00249{letter-spacing:-0.004788px;}
.ls1b_c00249{letter-spacing:-0.003888px;}
.ls10_c00249{letter-spacing:0.000000px;}
.ls7_c00249{letter-spacing:0.007200px;}
.ls9_c00249{letter-spacing:0.014364px;}
.ls2_c00249{letter-spacing:0.014400px;}
.lsc_c00249{letter-spacing:0.019152px;}
.ls8_c00249{letter-spacing:0.028728px;}
.lsf_c00249{letter-spacing:0.033516px;}
.ls0_c00249{letter-spacing:0.036072px;}
.lse_c00249{letter-spacing:0.052668px;}
.ls1_c00249{letter-spacing:0.054756px;}
.lsd_c00249{letter-spacing:0.075960px;}
.ls14_c00249{letter-spacing:0.093600px;}
.ls4_c00249{letter-spacing:0.144000px;}
.lsa_c00249{letter-spacing:0.189360px;}
.lsb_c00249{letter-spacing:0.351360px;}
.ls1c_c00249{letter-spacing:0.353808px;}
.ls1e_c00249{letter-spacing:0.357696px;}
.ls5_c00249{letter-spacing:65.304000px;}
.ls6_c00249{letter-spacing:66.024000px;}
.ls3_c00249{letter-spacing:72.589320px;}
.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;}
}
.ws1_c00249{word-spacing:-15.030000px;}
.ws2_c00249{word-spacing:-13.310640px;}
.ws5_c00249{word-spacing:-11.166336px;}
.ws3_c00249{word-spacing:-11.162448px;}
.ws4_c00249{word-spacing:-10.793088px;}
.ws0_c00249{word-spacing:-10.584756px;}
.ws6_c00249{word-spacing:-0.306612px;}
.ws22_c00249{word-spacing:-0.086400px;}
.ws2c_c00249{word-spacing:-0.033516px;}
.ws13_c00249{word-spacing:-0.014400px;}
.ws2a_c00249{word-spacing:-0.014364px;}
.ws28_c00249{word-spacing:-0.009576px;}
.ws7_c00249{word-spacing:0.000000px;}
.ws29_c00249{word-spacing:0.004788px;}
.ws1d_c00249{word-spacing:0.007200px;}
.ws2d_c00249{word-spacing:0.019152px;}
.ws2f_c00249{word-spacing:0.023940px;}
.ws21_c00249{word-spacing:0.028800px;}
.ws16_c00249{word-spacing:0.036000px;}
.ws19_c00249{word-spacing:0.064800px;}
.ws1a_c00249{word-spacing:0.079200px;}
.ws1e_c00249{word-spacing:0.100800px;}
.ws25_c00249{word-spacing:0.108000px;}
.ws2b_c00249{word-spacing:0.325584px;}
.ws2e_c00249{word-spacing:0.363888px;}
.wse_c00249{word-spacing:1.065600px;}
.wsf_c00249{word-spacing:1.144800px;}
.ws1b_c00249{word-spacing:1.476000px;}
.ws1c_c00249{word-spacing:1.800000px;}
.ws14_c00249{word-spacing:2.534400px;}
.ws23_c00249{word-spacing:3.945600px;}
.ws24_c00249{word-spacing:3.974400px;}
.ws1f_c00249{word-spacing:4.212000px;}
.ws20_c00249{word-spacing:4.341600px;}
.ws8_c00249{word-spacing:6.789600px;}
.ws9_c00249{word-spacing:6.861600px;}
.ws17_c00249{word-spacing:7.207200px;}
.ws18_c00249{word-spacing:7.308000px;}
.wsc_c00249{word-spacing:13.780800px;}
.wsd_c00249{word-spacing:13.795200px;}
.ws15_c00249{word-spacing:14.414400px;}
.ws11_c00249{word-spacing:15.120000px;}
.ws10_c00249{word-spacing:15.141600px;}
.ws12_c00249{word-spacing:17.294400px;}
.wsa_c00249{word-spacing:18.705600px;}
.wsb_c00249{word-spacing:18.756000px;}
.ws26_c00249{word-spacing:22.312800px;}
.ws27_c00249{word-spacing:22.464000px;}
._0_c00249{margin-left:-1.022040px;}
._1_c00249{width:1.080000px;}
.fc0_c00249{color:rgb(0,0,0);}
.fs5_c00249{font-size:38.880000px;}
.fs3_c00249{font-size:42.120000px;}
.fs4_c00249{font-size:47.880000px;}
.fs2_c00249{font-size:54.000000px;}
.fs0_c00249{font-size:60.120000px;}
.fs1_c00249{font-size:72.000000px;}
.y0_c00249{bottom:0.000000px;}
.y3_c00249{bottom:57.450450px;}
.y4_c00249{bottom:61.410450px;}
.y22_c00249{bottom:113.698470px;}
.y21_c00249{bottom:132.064230px;}
.y20_c00249{bottom:150.334230px;}
.y1f_c00249{bottom:168.598620px;}
.y1e_c00249{bottom:186.960600px;}
.y1d_c00249{bottom:202.170450px;}
.y1c_c00249{bottom:222.870450px;}
.y1b_c00249{bottom:243.570450px;}
.y1a_c00249{bottom:346.260450px;}
.y19_c00249{bottom:380.640450px;}
.y18_c00249{bottom:415.110450px;}
.y17_c00249{bottom:458.490450px;}
.y16_c00249{bottom:492.960450px;}
.y15_c00249{bottom:545.340450px;}
.y14_c00249{bottom:588.810450px;}
.y13_c00249{bottom:623.190450px;}
.y12_c00249{bottom:657.660450px;}
.y11_c00249{bottom:701.040450px;}
.y10_c00249{bottom:735.510450px;}
.yf_c00249{bottom:778.890450px;}
.ye_c00249{bottom:813.360450px;}
.yd_c00249{bottom:847.740450px;}
.yc_c00249{bottom:891.210450px;}
.yb_c00249{bottom:925.590450px;}
.ya_c00249{bottom:960.060450px;}
.y9_c00249{bottom:994.440450px;}
.y8_c00249{bottom:1037.910450px;}
.y7_c00249{bottom:1072.290450px;}
.y6_c00249{bottom:1106.760450px;}
.y5_c00249{bottom:1141.140450px;}
.y2_c00249{bottom:1173.810450px;}
.y1_c00249{bottom:1196.850450px;}
.h2_c00249{height:47.988281px;}
.ha_c00249{height:49.937344px;}
.hb_c00249{height:49.944664px;}
.h1_c00249{height:50.315273px;}
.h3_c00249{height:56.320312px;}
.h5_c00249{height:60.257812px;}
.h6_c00249{height:60.890625px;}
.h7_c00249{height:62.703281px;}
.h4_c00249{height:65.130820px;}
.h9_c00249{height:65.131420px;}
.h8_c00249{height:75.093750px;}
.h0_c00249{height:1263.000000px;}
.w1_c00249{width:892.500000px;}
.w0_c00249{width:892.830000px;}
.x0_c00249{left:0.000000px;}
.x2_c00249{left:127.620000px;}
.x7_c00249{left:154.620000px;}
.x6_c00249{left:180.810000px;}
.x5_c00249{left:234.000000px;}
.x4_c00249{left:435.240000px;}
.x3_c00249{left:446.490000px;}
.x1_c00249{left:490.770000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.v1_c00249{vertical-align:26.560000pt;}
.ls11_c00249{letter-spacing:-0.134400pt;}
.ls15_c00249{letter-spacing:-0.057600pt;}
.ls16_c00249{letter-spacing:-0.038400pt;}
.ls19_c00249{letter-spacing:-0.032000pt;}
.ls18_c00249{letter-spacing:-0.025600pt;}
.ls12_c00249{letter-spacing:-0.019200pt;}
.ls1d_c00249{letter-spacing:-0.013824pt;}
.ls13_c00249{letter-spacing:-0.012800pt;}
.ls1a_c00249{letter-spacing:-0.006912pt;}
.ls17_c00249{letter-spacing:-0.006400pt;}
.ls1f_c00249{letter-spacing:-0.004256pt;}
.ls1b_c00249{letter-spacing:-0.003456pt;}
.ls10_c00249{letter-spacing:0.000000pt;}
.ls7_c00249{letter-spacing:0.006400pt;}
.ls9_c00249{letter-spacing:0.012768pt;}
.ls2_c00249{letter-spacing:0.012800pt;}
.lsc_c00249{letter-spacing:0.017024pt;}
.ls8_c00249{letter-spacing:0.025536pt;}
.lsf_c00249{letter-spacing:0.029792pt;}
.ls0_c00249{letter-spacing:0.032064pt;}
.lse_c00249{letter-spacing:0.046816pt;}
.ls1_c00249{letter-spacing:0.048672pt;}
.lsd_c00249{letter-spacing:0.067520pt;}
.ls14_c00249{letter-spacing:0.083200pt;}
.ls4_c00249{letter-spacing:0.128000pt;}
.lsa_c00249{letter-spacing:0.168320pt;}
.lsb_c00249{letter-spacing:0.312320pt;}
.ls1c_c00249{letter-spacing:0.314496pt;}
.ls1e_c00249{letter-spacing:0.317952pt;}
.ls5_c00249{letter-spacing:58.048000pt;}
.ls6_c00249{letter-spacing:58.688000pt;}
.ls3_c00249{letter-spacing:64.523840pt;}
.ws1_c00249{word-spacing:-13.360000pt;}
.ws2_c00249{word-spacing:-11.831680pt;}
.ws5_c00249{word-spacing:-9.925632pt;}
.ws3_c00249{word-spacing:-9.922176pt;}
.ws4_c00249{word-spacing:-9.593856pt;}
.ws0_c00249{word-spacing:-9.408672pt;}
.ws6_c00249{word-spacing:-0.272544pt;}
.ws22_c00249{word-spacing:-0.076800pt;}
.ws2c_c00249{word-spacing:-0.029792pt;}
.ws13_c00249{word-spacing:-0.012800pt;}
.ws2a_c00249{word-spacing:-0.012768pt;}
.ws28_c00249{word-spacing:-0.008512pt;}
.ws7_c00249{word-spacing:0.000000pt;}
.ws29_c00249{word-spacing:0.004256pt;}
.ws1d_c00249{word-spacing:0.006400pt;}
.ws2d_c00249{word-spacing:0.017024pt;}
.ws2f_c00249{word-spacing:0.021280pt;}
.ws21_c00249{word-spacing:0.025600pt;}
.ws16_c00249{word-spacing:0.032000pt;}
.ws19_c00249{word-spacing:0.057600pt;}
.ws1a_c00249{word-spacing:0.070400pt;}
.ws1e_c00249{word-spacing:0.089600pt;}
.ws25_c00249{word-spacing:0.096000pt;}
.ws2b_c00249{word-spacing:0.289408pt;}
.ws2e_c00249{word-spacing:0.323456pt;}
.wse_c00249{word-spacing:0.947200pt;}
.wsf_c00249{word-spacing:1.017600pt;}
.ws1b_c00249{word-spacing:1.312000pt;}
.ws1c_c00249{word-spacing:1.600000pt;}
.ws14_c00249{word-spacing:2.252800pt;}
.ws23_c00249{word-spacing:3.507200pt;}
.ws24_c00249{word-spacing:3.532800pt;}
.ws1f_c00249{word-spacing:3.744000pt;}
.ws20_c00249{word-spacing:3.859200pt;}
.ws8_c00249{word-spacing:6.035200pt;}
.ws9_c00249{word-spacing:6.099200pt;}
.ws17_c00249{word-spacing:6.406400pt;}
.ws18_c00249{word-spacing:6.496000pt;}
.wsc_c00249{word-spacing:12.249600pt;}
.wsd_c00249{word-spacing:12.262400pt;}
.ws15_c00249{word-spacing:12.812800pt;}
.ws11_c00249{word-spacing:13.440000pt;}
.ws10_c00249{word-spacing:13.459200pt;}
.ws12_c00249{word-spacing:15.372800pt;}
.wsa_c00249{word-spacing:16.627200pt;}
.wsb_c00249{word-spacing:16.672000pt;}
.ws26_c00249{word-spacing:19.833600pt;}
.ws27_c00249{word-spacing:19.968000pt;}
._0_c00249{margin-left:-0.908480pt;}
._1_c00249{width:0.960000pt;}
.fs5_c00249{font-size:34.560000pt;}
.fs3_c00249{font-size:37.440000pt;}
.fs4_c00249{font-size:42.560000pt;}
.fs2_c00249{font-size:48.000000pt;}
.fs0_c00249{font-size:53.440000pt;}
.fs1_c00249{font-size:64.000000pt;}
.y0_c00249{bottom:0.000000pt;}
.y3_c00249{bottom:51.067067pt;}
.y4_c00249{bottom:54.587067pt;}
.y22_c00249{bottom:101.065307pt;}
.y21_c00249{bottom:117.390427pt;}
.y20_c00249{bottom:133.630427pt;}
.y1f_c00249{bottom:149.865440pt;}
.y1e_c00249{bottom:166.187200pt;}
.y1d_c00249{bottom:179.707067pt;}
.y1c_c00249{bottom:198.107067pt;}
.y1b_c00249{bottom:216.507067pt;}
.y1a_c00249{bottom:307.787067pt;}
.y19_c00249{bottom:338.347067pt;}
.y18_c00249{bottom:368.987067pt;}
.y17_c00249{bottom:407.547067pt;}
.y16_c00249{bottom:438.187067pt;}
.y15_c00249{bottom:484.747067pt;}
.y14_c00249{bottom:523.387067pt;}
.y13_c00249{bottom:553.947067pt;}
.y12_c00249{bottom:584.587067pt;}
.y11_c00249{bottom:623.147067pt;}
.y10_c00249{bottom:653.787067pt;}
.yf_c00249{bottom:692.347067pt;}
.ye_c00249{bottom:722.987067pt;}
.yd_c00249{bottom:753.547067pt;}
.yc_c00249{bottom:792.187067pt;}
.yb_c00249{bottom:822.747067pt;}
.ya_c00249{bottom:853.387067pt;}
.y9_c00249{bottom:883.947067pt;}
.y8_c00249{bottom:922.587067pt;}
.y7_c00249{bottom:953.147067pt;}
.y6_c00249{bottom:983.787067pt;}
.y5_c00249{bottom:1014.347067pt;}
.y2_c00249{bottom:1043.387067pt;}
.y1_c00249{bottom:1063.867067pt;}
.h2_c00249{height:42.656250pt;}
.ha_c00249{height:44.388750pt;}
.hb_c00249{height:44.395257pt;}
.h1_c00249{height:44.724687pt;}
.h3_c00249{height:50.062500pt;}
.h5_c00249{height:53.562500pt;}
.h6_c00249{height:54.125000pt;}
.h7_c00249{height:55.736250pt;}
.h4_c00249{height:57.894063pt;}
.h9_c00249{height:57.894596pt;}
.h8_c00249{height:66.750000pt;}
.h0_c00249{height:1122.666667pt;}
.w1_c00249{width:793.333333pt;}
.w0_c00249{width:793.626667pt;}
.x0_c00249{left:0.000000pt;}
.x2_c00249{left:113.440000pt;}
.x7_c00249{left:137.440000pt;}
.x6_c00249{left:160.720000pt;}
.x5_c00249{left:208.000000pt;}
.x4_c00249{left:386.880000pt;}
.x3_c00249{left:396.880000pt;}
.x1_c00249{left:436.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_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_64dcce885cedcf68dc4279b7.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.100098;font-style:normal;font-weight:normal;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_3090482eb2e7c2f95adb6b80.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;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_c00250;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00250;src:url('chunks/assets/font_fe6640424842bedf98bfa51b.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;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_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;}
.v1_c00250{vertical-align:15.840000px;}
.v2_c00250{vertical-align:29.880000px;}
.lsf_c00250{letter-spacing:-0.151200px;}
.ls17_c00250{letter-spacing:-0.108000px;}
.ls16_c00250{letter-spacing:-0.079200px;}
.ls18_c00250{letter-spacing:-0.050400px;}
.ls15_c00250{letter-spacing:-0.028800px;}
.ls10_c00250{letter-spacing:-0.021600px;}
.ls13_c00250{letter-spacing:-0.014400px;}
.ls19_c00250{letter-spacing:-0.007776px;}
.ls11_c00250{letter-spacing:-0.007200px;}
.ls1a_c00250{letter-spacing:-0.003888px;}
.lse_c00250{letter-spacing:0.000000px;}
.ls5_c00250{letter-spacing:0.007200px;}
.ls7_c00250{letter-spacing:0.014364px;}
.ls3_c00250{letter-spacing:0.014400px;}
.lsa_c00250{letter-spacing:0.019152px;}
.lsd_c00250{letter-spacing:0.023940px;}
.ls6_c00250{letter-spacing:0.028728px;}
.ls4_c00250{letter-spacing:0.028800px;}
.lsc_c00250{letter-spacing:0.033516px;}
.lsb_c00250{letter-spacing:0.038304px;}
.ls14_c00250{letter-spacing:0.043200px;}
.ls0_c00250{letter-spacing:0.048096px;}
.ls2_c00250{letter-spacing:0.054756px;}
.ls12_c00250{letter-spacing:0.093600px;}
.ls8_c00250{letter-spacing:0.189360px;}
.ls9_c00250{letter-spacing:0.351360px;}
.ls1b_c00250{letter-spacing:0.353808px;}
.ls1_c00250{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00250{word-spacing:-13.310640px;}
.ws2_c00250{word-spacing:-11.162448px;}
.ws0_c00250{word-spacing:-10.584756px;}
.ws7_c00250{word-spacing:-0.086400px;}
.ws25_c00250{word-spacing:-0.009576px;}
.ws24_c00250{word-spacing:-0.007200px;}
.ws2b_c00250{word-spacing:-0.004788px;}
.ws4_c00250{word-spacing:0.000000px;}
.ws26_c00250{word-spacing:0.004788px;}
.ws6_c00250{word-spacing:0.007200px;}
.ws3_c00250{word-spacing:0.042084px;}
.ws21_c00250{word-spacing:0.050400px;}
.ws16_c00250{word-spacing:0.072000px;}
.wse_c00250{word-spacing:0.115200px;}
.ws2c_c00250{word-spacing:1.062936px;}
.ws1e_c00250{word-spacing:1.792800px;}
.ws27_c00250{word-spacing:2.145024px;}
.ws28_c00250{word-spacing:2.149812px;}
.ws5_c00250{word-spacing:2.181600px;}
.ws29_c00250{word-spacing:3.217536px;}
.ws2a_c00250{word-spacing:3.227112px;}
.ws10_c00250{word-spacing:3.931200px;}
.wsf_c00250{word-spacing:4.003200px;}
.ws11_c00250{word-spacing:4.039200px;}
.ws15_c00250{word-spacing:5.443200px;}
.ws12_c00250{word-spacing:6.076800px;}
.ws13_c00250{word-spacing:6.134400px;}
.ws14_c00250{word-spacing:6.228000px;}
.ws22_c00250{word-spacing:6.408000px;}
.ws23_c00250{word-spacing:6.487200px;}
.ws1a_c00250{word-spacing:6.861600px;}
.ws1b_c00250{word-spacing:6.940800px;}
.ws1f_c00250{word-spacing:11.188800px;}
.ws20_c00250{word-spacing:11.289600px;}
.wsc_c00250{word-spacing:13.996800px;}
.wsb_c00250{word-spacing:14.025600px;}
.ws18_c00250{word-spacing:14.047200px;}
.wsa_c00250{word-spacing:14.140800px;}
.ws19_c00250{word-spacing:14.176800px;}
.ws8_c00250{word-spacing:15.076800px;}
.ws9_c00250{word-spacing:15.127200px;}
.ws1c_c00250{word-spacing:15.141600px;}
.ws17_c00250{word-spacing:17.661600px;}
.ws1d_c00250{word-spacing:19.468800px;}
.wsd_c00250{word-spacing:21.254400px;}
._0_c00250{margin-left:-1.322640px;}
._1_c00250{width:1.152000px;}
.fc0_c00250{color:rgb(0,0,0);}
.fs5_c00250{font-size:38.880000px;}
.fs3_c00250{font-size:42.120000px;}
.fs4_c00250{font-size:47.880000px;}
.fs1_c00250{font-size:54.000000px;}
.fs0_c00250{font-size:60.120000px;}
.fs2_c00250{font-size:72.000000px;}
.y0_c00250{bottom:0.000000px;}
.y3_c00250{bottom:57.450450px;}
.y26_c00250{bottom:113.715570px;}
.y25_c00250{bottom:132.077550px;}
.y24_c00250{bottom:150.343770px;}
.y23_c00250{bottom:164.109270px;}
.y22_c00250{bottom:182.471250px;}
.y21_c00250{bottom:196.236750px;}
.y20_c00250{bottom:210.002250px;}
.y1f_c00250{bottom:228.364230px;}
.y1e_c00250{bottom:246.634230px;}
.y1d_c00250{bottom:264.900450px;}
.y1c_c00250{bottom:280.110450px;}
.y1b_c00250{bottom:300.810450px;}
.y1a_c00250{bottom:321.510450px;}
.y19_c00250{bottom:364.260450px;}
.y18_c00250{bottom:407.640450px;}
.y17_c00250{bottom:442.110450px;}
.y16_c00250{bottom:485.490600px;}
.y15_c00250{bottom:519.960600px;}
.y14_c00250{bottom:554.340600px;}
.y13_c00250{bottom:588.810600px;}
.y12_c00250{bottom:623.190600px;}
.y11_c00250{bottom:666.660600px;}
.y10_c00250{bottom:701.040600px;}
.yf_c00250{bottom:735.510600px;}
.ye_c00250{bottom:769.890600px;}
.yd_c00250{bottom:813.360450px;}
.yc_c00250{bottom:847.740450px;}
.yb_c00250{bottom:882.210450px;}
.ya_c00250{bottom:916.590450px;}
.y9_c00250{bottom:960.060450px;}
.y8_c00250{bottom:994.440450px;}
.y7_c00250{bottom:1028.910450px;}
.y6_c00250{bottom:1063.290450px;}
.y5_c00250{bottom:1106.760450px;}
.y4_c00250{bottom:1141.140450px;}
.y2_c00250{bottom:1177.860450px;}
.y1_c00250{bottom:1196.850450px;}
.h7_c00250{height:47.988281px;}
.h8_c00250{height:49.937344px;}
.h1_c00250{height:50.315273px;}
.h2_c00250{height:56.320312px;}
.h4_c00250{height:60.257812px;}
.h5_c00250{height:65.130820px;}
.h6_c00250{height:65.131420px;}
.h3_c00250{height:72.160312px;}
.h0_c00250{height:1263.000000px;}
.w1_c00250{width:892.500000px;}
.w0_c00250{width:892.830000px;}
.x0_c00250{left:0.000000px;}
.x1_c00250{left:127.620000px;}
.x3_c00250{left:154.440900px;}
.x2_c00250{left:180.720000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.v1_c00250{vertical-align:14.080000pt;}
.v2_c00250{vertical-align:26.560000pt;}
.lsf_c00250{letter-spacing:-0.134400pt;}
.ls17_c00250{letter-spacing:-0.096000pt;}
.ls16_c00250{letter-spacing:-0.070400pt;}
.ls18_c00250{letter-spacing:-0.044800pt;}
.ls15_c00250{letter-spacing:-0.025600pt;}
.ls10_c00250{letter-spacing:-0.019200pt;}
.ls13_c00250{letter-spacing:-0.012800pt;}
.ls19_c00250{letter-spacing:-0.006912pt;}
.ls11_c00250{letter-spacing:-0.006400pt;}
.ls1a_c00250{letter-spacing:-0.003456pt;}
.lse_c00250{letter-spacing:0.000000pt;}
.ls5_c00250{letter-spacing:0.006400pt;}
.ls7_c00250{letter-spacing:0.012768pt;}
.ls3_c00250{letter-spacing:0.012800pt;}
.lsa_c00250{letter-spacing:0.017024pt;}
.lsd_c00250{letter-spacing:0.021280pt;}
.ls6_c00250{letter-spacing:0.025536pt;}
.ls4_c00250{letter-spacing:0.025600pt;}
.lsc_c00250{letter-spacing:0.029792pt;}
.lsb_c00250{letter-spacing:0.034048pt;}
.ls14_c00250{letter-spacing:0.038400pt;}
.ls0_c00250{letter-spacing:0.042752pt;}
.ls2_c00250{letter-spacing:0.048672pt;}
.ls12_c00250{letter-spacing:0.083200pt;}
.ls8_c00250{letter-spacing:0.168320pt;}
.ls9_c00250{letter-spacing:0.312320pt;}
.ls1b_c00250{letter-spacing:0.314496pt;}
.ls1_c00250{letter-spacing:1077.440000pt;}
.ws1_c00250{word-spacing:-11.831680pt;}
.ws2_c00250{word-spacing:-9.922176pt;}
.ws0_c00250{word-spacing:-9.408672pt;}
.ws7_c00250{word-spacing:-0.076800pt;}
.ws25_c00250{word-spacing:-0.008512pt;}
.ws24_c00250{word-spacing:-0.006400pt;}
.ws2b_c00250{word-spacing:-0.004256pt;}
.ws4_c00250{word-spacing:0.000000pt;}
.ws26_c00250{word-spacing:0.004256pt;}
.ws6_c00250{word-spacing:0.006400pt;}
.ws3_c00250{word-spacing:0.037408pt;}
.ws21_c00250{word-spacing:0.044800pt;}
.ws16_c00250{word-spacing:0.064000pt;}
.wse_c00250{word-spacing:0.102400pt;}
.ws2c_c00250{word-spacing:0.944832pt;}
.ws1e_c00250{word-spacing:1.593600pt;}
.ws27_c00250{word-spacing:1.906688pt;}
.ws28_c00250{word-spacing:1.910944pt;}
.ws5_c00250{word-spacing:1.939200pt;}
.ws29_c00250{word-spacing:2.860032pt;}
.ws2a_c00250{word-spacing:2.868544pt;}
.ws10_c00250{word-spacing:3.494400pt;}
.wsf_c00250{word-spacing:3.558400pt;}
.ws11_c00250{word-spacing:3.590400pt;}
.ws15_c00250{word-spacing:4.838400pt;}
.ws12_c00250{word-spacing:5.401600pt;}
.ws13_c00250{word-spacing:5.452800pt;}
.ws14_c00250{word-spacing:5.536000pt;}
.ws22_c00250{word-spacing:5.696000pt;}
.ws23_c00250{word-spacing:5.766400pt;}
.ws1a_c00250{word-spacing:6.099200pt;}
.ws1b_c00250{word-spacing:6.169600pt;}
.ws1f_c00250{word-spacing:9.945600pt;}
.ws20_c00250{word-spacing:10.035200pt;}
.wsc_c00250{word-spacing:12.441600pt;}
.wsb_c00250{word-spacing:12.467200pt;}
.ws18_c00250{word-spacing:12.486400pt;}
.wsa_c00250{word-spacing:12.569600pt;}
.ws19_c00250{word-spacing:12.601600pt;}
.ws8_c00250{word-spacing:13.401600pt;}
.ws9_c00250{word-spacing:13.446400pt;}
.ws1c_c00250{word-spacing:13.459200pt;}
.ws17_c00250{word-spacing:15.699200pt;}
.ws1d_c00250{word-spacing:17.305600pt;}
.wsd_c00250{word-spacing:18.892800pt;}
._0_c00250{margin-left:-1.175680pt;}
._1_c00250{width:1.024000pt;}
.fs5_c00250{font-size:34.560000pt;}
.fs3_c00250{font-size:37.440000pt;}
.fs4_c00250{font-size:42.560000pt;}
.fs1_c00250{font-size:48.000000pt;}
.fs0_c00250{font-size:53.440000pt;}
.fs2_c00250{font-size:64.000000pt;}
.y0_c00250{bottom:0.000000pt;}
.y3_c00250{bottom:51.067067pt;}
.y26_c00250{bottom:101.080507pt;}
.y25_c00250{bottom:117.402267pt;}
.y24_c00250{bottom:133.638907pt;}
.y23_c00250{bottom:145.874907pt;}
.y22_c00250{bottom:162.196667pt;}
.y21_c00250{bottom:174.432667pt;}
.y20_c00250{bottom:186.668667pt;}
.y1f_c00250{bottom:202.990427pt;}
.y1e_c00250{bottom:219.230427pt;}
.y1d_c00250{bottom:235.467067pt;}
.y1c_c00250{bottom:248.987067pt;}
.y1b_c00250{bottom:267.387067pt;}
.y1a_c00250{bottom:285.787067pt;}
.y19_c00250{bottom:323.787067pt;}
.y18_c00250{bottom:362.347067pt;}
.y17_c00250{bottom:392.987067pt;}
.y16_c00250{bottom:431.547200pt;}
.y15_c00250{bottom:462.187200pt;}
.y14_c00250{bottom:492.747200pt;}
.y13_c00250{bottom:523.387200pt;}
.y12_c00250{bottom:553.947200pt;}
.y11_c00250{bottom:592.587200pt;}
.y10_c00250{bottom:623.147200pt;}
.yf_c00250{bottom:653.787200pt;}
.ye_c00250{bottom:684.347200pt;}
.yd_c00250{bottom:722.987067pt;}
.yc_c00250{bottom:753.547067pt;}
.yb_c00250{bottom:784.187067pt;}
.ya_c00250{bottom:814.747067pt;}
.y9_c00250{bottom:853.387067pt;}
.y8_c00250{bottom:883.947067pt;}
.y7_c00250{bottom:914.587067pt;}
.y6_c00250{bottom:945.147067pt;}
.y5_c00250{bottom:983.787067pt;}
.y4_c00250{bottom:1014.347067pt;}
.y2_c00250{bottom:1046.987067pt;}
.y1_c00250{bottom:1063.867067pt;}
.h7_c00250{height:42.656250pt;}
.h8_c00250{height:44.388750pt;}
.h1_c00250{height:44.724687pt;}
.h2_c00250{height:50.062500pt;}
.h4_c00250{height:53.562500pt;}
.h5_c00250{height:57.894063pt;}
.h6_c00250{height:57.894596pt;}
.h3_c00250{height:64.142500pt;}
.h0_c00250{height:1122.666667pt;}
.w1_c00250{width:793.333333pt;}
.w0_c00250{width:793.626667pt;}
.x0_c00250{left:0.000000pt;}
.x1_c00250{left:113.440000pt;}
.x3_c00250{left:137.280800pt;}
.x2_c00250{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_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_68c5834ba5b154193b70f4f3.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_39fc39f543e46332b384f00d.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00251;src:url('chunks/assets/font_dd5ffa598f784c6099f17994.woff2')format("woff");}.ff4_c00251{font-family:ff4_c00251;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00251;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00251{font-family:ff5_c00251;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_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;}
.v3_c00251{vertical-align:15.120000px;}
.v4_c00251{vertical-align:29.880000px;}
.v1_c00251{vertical-align:33.486840px;}
.v2_c00251{vertical-align:67.334400px;}
.ls17_c00251{letter-spacing:-0.273600px;}
.lse_c00251{letter-spacing:-0.151200px;}
.ls10_c00251{letter-spacing:-0.102204px;}
.ls15_c00251{letter-spacing:-0.043200px;}
.ls13_c00251{letter-spacing:-0.042084px;}
.ls11_c00251{letter-spacing:-0.036072px;}
.ls1c_c00251{letter-spacing:-0.036000px;}
.ls1a_c00251{letter-spacing:-0.028800px;}
.ls12_c00251{letter-spacing:-0.024048px;}
.ls14_c00251{letter-spacing:-0.023436px;}
.ls16_c00251{letter-spacing:-0.021600px;}
.ls19_c00251{letter-spacing:-0.014400px;}
.lsf_c00251{letter-spacing:-0.007200px;}
.lsd_c00251{letter-spacing:0.000000px;}
.ls18_c00251{letter-spacing:0.007200px;}
.ls6_c00251{letter-spacing:0.021600px;}
.lsa_c00251{letter-spacing:0.023940px;}
.ls3_c00251{letter-spacing:0.024048px;}
.ls9_c00251{letter-spacing:0.028728px;}
.ls8_c00251{letter-spacing:0.028800px;}
.ls1_c00251{letter-spacing:0.030060px;}
.lsb_c00251{letter-spacing:0.033516px;}
.ls0_c00251{letter-spacing:0.036072px;}
.lsc_c00251{letter-spacing:0.038304px;}
.ls7_c00251{letter-spacing:0.054756px;}
.ls2_c00251{letter-spacing:0.060120px;}
.ls1d_c00251{letter-spacing:0.093600px;}
.ls4_c00251{letter-spacing:0.136080px;}
.ls1b_c00251{letter-spacing:11.880000px;}
.ls5_c00251{letter-spacing:34.450920px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00251{word-spacing:-19.530000px;}
.ws2_c00251{word-spacing:-10.584756px;}
.ws0_c00251{word-spacing:-9.856080px;}
.ws7_c00251{word-spacing:-0.330660px;}
.ws3_c00251{word-spacing:-0.306612px;}
.wsc_c00251{word-spacing:-0.187488px;}
.ws1e_c00251{word-spacing:-0.093600px;}
.ws21_c00251{word-spacing:-0.009576px;}
.ws22_c00251{word-spacing:-0.004788px;}
.ws4_c00251{word-spacing:0.000000px;}
.ws5_c00251{word-spacing:0.007200px;}
.ws18_c00251{word-spacing:0.021600px;}
.ws20_c00251{word-spacing:0.036000px;}
.ws6_c00251{word-spacing:0.060120px;}
.wsb_c00251{word-spacing:0.066132px;}
.ws1d_c00251{word-spacing:0.072000px;}
.wsa_c00251{word-spacing:0.114228px;}
.ws8_c00251{word-spacing:0.126252px;}
.ws9_c00251{word-spacing:0.132264px;}
.ws10_c00251{word-spacing:1.483200px;}
.ws23_c00251{word-spacing:2.145024px;}
.ws24_c00251{word-spacing:2.149812px;}
.ws25_c00251{word-spacing:3.217536px;}
.ws26_c00251{word-spacing:3.227112px;}
.ws1c_c00251{word-spacing:3.261600px;}
.wsf_c00251{word-spacing:3.621600px;}
.ws1b_c00251{word-spacing:6.487200px;}
.ws1a_c00251{word-spacing:6.494400px;}
.ws13_c00251{word-spacing:7.192800px;}
.ws15_c00251{word-spacing:7.221600px;}
.ws14_c00251{word-spacing:7.257600px;}
.ws12_c00251{word-spacing:7.272000px;}
.wsd_c00251{word-spacing:8.323200px;}
.ws17_c00251{word-spacing:11.484000px;}
.ws16_c00251{word-spacing:11.541600px;}
.ws19_c00251{word-spacing:11.851200px;}
.ws11_c00251{word-spacing:12.628800px;}
.ws1f_c00251{word-spacing:14.796000px;}
.wse_c00251{word-spacing:19.778400px;}
._9_c00251{margin-left:-12.715200px;}
._8_c00251{margin-left:-11.649600px;}
._0_c00251{margin-left:-1.022040px;}
._7_c00251{width:1.080000px;}
._3_c00251{width:259.117200px;}
._5_c00251{width:292.423680px;}
._1_c00251{width:326.520000px;}
._2_c00251{width:348.120000px;}
._6_c00251{width:403.224840px;}
._4_c00251{width:607.482540px;}
.fc0_c00251{color:rgb(0,0,0);}
.fs3_c00251{font-size:38.880000px;}
.fs5_c00251{font-size:42.120000px;}
.fs6_c00251{font-size:47.880000px;}
.fs2_c00251{font-size:54.000000px;}
.fs0_c00251{font-size:60.120000px;}
.fs1_c00251{font-size:72.000000px;}
.fs4_c00251{font-size:78.120000px;}
.y0_c00251{bottom:0.000000px;}
.y3_c00251{bottom:57.450450px;}
.y4_c00251{bottom:61.410450px;}
.y26_c00251{bottom:113.709270px;}
.y25_c00251{bottom:127.570530px;}
.y24_c00251{bottom:141.336030px;}
.y23_c00251{bottom:159.602250px;}
.y22_c00251{bottom:177.964230px;}
.y21_c00251{bottom:196.230450px;}
.y20_c00251{bottom:211.440450px;}
.y1f_c00251{bottom:232.140450px;}
.y1e_c00251{bottom:252.840450px;}
.y1d_c00251{bottom:313.680450px;}
.y1c_c00251{bottom:348.150450px;}
.y1b_c00251{bottom:391.530450px;}
.y1a_c00251{bottom:426.000450px;}
.y19_c00251{bottom:460.380450px;}
.y18_c00251{bottom:494.850450px;}
.y17_c00251{bottom:538.230450px;}
.y16_c00251{bottom:572.700450px;}
.y15_c00251{bottom:607.080450px;}
.y14_c00251{bottom:641.550450px;}
.y13_c00251{bottom:684.930450px;}
.y12_c00251{bottom:719.400450px;}
.y11_c00251{bottom:753.780450px;}
.y10_c00251{bottom:788.250450px;}
.yf_c00251{bottom:822.630450px;}
.ye_c00251{bottom:857.100450px;}
.yd_c00251{bottom:902.100450px;}
.yc_c00251{bottom:952.680450px;}
.yb_c00251{bottom:989.396850px;}
.ya_c00251{bottom:1006.230450px;}
.y9_c00251{bottom:1043.126850px;}
.y8_c00251{bottom:1059.960450px;}
.y7_c00251{bottom:1092.176850px;}
.y6_c00251{bottom:1109.010450px;}
.y5_c00251{bottom:1136.550450px;}
.y2_c00251{bottom:1173.810450px;}
.y1_c00251{bottom:1196.850450px;}
.h2_c00251{height:47.988281px;}
.hc_c00251{height:49.937344px;}
.h1_c00251{height:50.315273px;}
.h3_c00251{height:56.320312px;}
.h9_c00251{height:60.257812px;}
.h4_c00251{height:60.328125px;}
.ha_c00251{height:65.130820px;}
.hb_c00251{height:65.131420px;}
.h8_c00251{height:81.476719px;}
.h7_c00251{height:83.802113px;}
.h6_c00251{height:84.162833px;}
.h5_c00251{height:117.649673px;}
.h0_c00251{height:1263.000000px;}
.w1_c00251{width:892.500000px;}
.w0_c00251{width:892.830000px;}
.x0_c00251{left:0.000000px;}
.x2_c00251{left:127.620000px;}
.xa_c00251{left:154.444770px;}
.x6_c00251{left:171.990000px;}
.x9_c00251{left:180.720000px;}
.x5_c00251{left:228.420000px;}
.x8_c00251{left:306.720000px;}
.x4_c00251{left:435.240000px;}
.x3_c00251{left:446.490000px;}
.x1_c00251{left:490.770000px;}
.x7_c00251{left:536.497560px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.v3_c00251{vertical-align:13.440000pt;}
.v4_c00251{vertical-align:26.560000pt;}
.v1_c00251{vertical-align:29.766080pt;}
.v2_c00251{vertical-align:59.852800pt;}
.ls17_c00251{letter-spacing:-0.243200pt;}
.lse_c00251{letter-spacing:-0.134400pt;}
.ls10_c00251{letter-spacing:-0.090848pt;}
.ls15_c00251{letter-spacing:-0.038400pt;}
.ls13_c00251{letter-spacing:-0.037408pt;}
.ls11_c00251{letter-spacing:-0.032064pt;}
.ls1c_c00251{letter-spacing:-0.032000pt;}
.ls1a_c00251{letter-spacing:-0.025600pt;}
.ls12_c00251{letter-spacing:-0.021376pt;}
.ls14_c00251{letter-spacing:-0.020832pt;}
.ls16_c00251{letter-spacing:-0.019200pt;}
.ls19_c00251{letter-spacing:-0.012800pt;}
.lsf_c00251{letter-spacing:-0.006400pt;}
.lsd_c00251{letter-spacing:0.000000pt;}
.ls18_c00251{letter-spacing:0.006400pt;}
.ls6_c00251{letter-spacing:0.019200pt;}
.lsa_c00251{letter-spacing:0.021280pt;}
.ls3_c00251{letter-spacing:0.021376pt;}
.ls9_c00251{letter-spacing:0.025536pt;}
.ls8_c00251{letter-spacing:0.025600pt;}
.ls1_c00251{letter-spacing:0.026720pt;}
.lsb_c00251{letter-spacing:0.029792pt;}
.ls0_c00251{letter-spacing:0.032064pt;}
.lsc_c00251{letter-spacing:0.034048pt;}
.ls7_c00251{letter-spacing:0.048672pt;}
.ls2_c00251{letter-spacing:0.053440pt;}
.ls1d_c00251{letter-spacing:0.083200pt;}
.ls4_c00251{letter-spacing:0.120960pt;}
.ls1b_c00251{letter-spacing:10.560000pt;}
.ls5_c00251{letter-spacing:30.623040pt;}
.ws1_c00251{word-spacing:-17.360000pt;}
.ws2_c00251{word-spacing:-9.408672pt;}
.ws0_c00251{word-spacing:-8.760960pt;}
.ws7_c00251{word-spacing:-0.293920pt;}
.ws3_c00251{word-spacing:-0.272544pt;}
.wsc_c00251{word-spacing:-0.166656pt;}
.ws1e_c00251{word-spacing:-0.083200pt;}
.ws21_c00251{word-spacing:-0.008512pt;}
.ws22_c00251{word-spacing:-0.004256pt;}
.ws4_c00251{word-spacing:0.000000pt;}
.ws5_c00251{word-spacing:0.006400pt;}
.ws18_c00251{word-spacing:0.019200pt;}
.ws20_c00251{word-spacing:0.032000pt;}
.ws6_c00251{word-spacing:0.053440pt;}
.wsb_c00251{word-spacing:0.058784pt;}
.ws1d_c00251{word-spacing:0.064000pt;}
.wsa_c00251{word-spacing:0.101536pt;}
.ws8_c00251{word-spacing:0.112224pt;}
.ws9_c00251{word-spacing:0.117568pt;}
.ws10_c00251{word-spacing:1.318400pt;}
.ws23_c00251{word-spacing:1.906688pt;}
.ws24_c00251{word-spacing:1.910944pt;}
.ws25_c00251{word-spacing:2.860032pt;}
.ws26_c00251{word-spacing:2.868544pt;}
.ws1c_c00251{word-spacing:2.899200pt;}
.wsf_c00251{word-spacing:3.219200pt;}
.ws1b_c00251{word-spacing:5.766400pt;}
.ws1a_c00251{word-spacing:5.772800pt;}
.ws13_c00251{word-spacing:6.393600pt;}
.ws15_c00251{word-spacing:6.419200pt;}
.ws14_c00251{word-spacing:6.451200pt;}
.ws12_c00251{word-spacing:6.464000pt;}
.wsd_c00251{word-spacing:7.398400pt;}
.ws17_c00251{word-spacing:10.208000pt;}
.ws16_c00251{word-spacing:10.259200pt;}
.ws19_c00251{word-spacing:10.534400pt;}
.ws11_c00251{word-spacing:11.225600pt;}
.ws1f_c00251{word-spacing:13.152000pt;}
.wse_c00251{word-spacing:17.580800pt;}
._9_c00251{margin-left:-11.302400pt;}
._8_c00251{margin-left:-10.355200pt;}
._0_c00251{margin-left:-0.908480pt;}
._7_c00251{width:0.960000pt;}
._3_c00251{width:230.326400pt;}
._5_c00251{width:259.932160pt;}
._1_c00251{width:290.240000pt;}
._2_c00251{width:309.440000pt;}
._6_c00251{width:358.422080pt;}
._4_c00251{width:539.984480pt;}
.fs3_c00251{font-size:34.560000pt;}
.fs5_c00251{font-size:37.440000pt;}
.fs6_c00251{font-size:42.560000pt;}
.fs2_c00251{font-size:48.000000pt;}
.fs0_c00251{font-size:53.440000pt;}
.fs1_c00251{font-size:64.000000pt;}
.fs4_c00251{font-size:69.440000pt;}
.y0_c00251{bottom:0.000000pt;}
.y3_c00251{bottom:51.067067pt;}
.y4_c00251{bottom:54.587067pt;}
.y26_c00251{bottom:101.074907pt;}
.y25_c00251{bottom:113.396027pt;}
.y24_c00251{bottom:125.632027pt;}
.y23_c00251{bottom:141.868667pt;}
.y22_c00251{bottom:158.190427pt;}
.y21_c00251{bottom:174.427067pt;}
.y20_c00251{bottom:187.947067pt;}
.y1f_c00251{bottom:206.347067pt;}
.y1e_c00251{bottom:224.747067pt;}
.y1d_c00251{bottom:278.827067pt;}
.y1c_c00251{bottom:309.467067pt;}
.y1b_c00251{bottom:348.027067pt;}
.y1a_c00251{bottom:378.667067pt;}
.y19_c00251{bottom:409.227067pt;}
.y18_c00251{bottom:439.867067pt;}
.y17_c00251{bottom:478.427067pt;}
.y16_c00251{bottom:509.067067pt;}
.y15_c00251{bottom:539.627067pt;}
.y14_c00251{bottom:570.267067pt;}
.y13_c00251{bottom:608.827067pt;}
.y12_c00251{bottom:639.467067pt;}
.y11_c00251{bottom:670.027067pt;}
.y10_c00251{bottom:700.667067pt;}
.yf_c00251{bottom:731.227067pt;}
.ye_c00251{bottom:761.867067pt;}
.yd_c00251{bottom:801.867067pt;}
.yc_c00251{bottom:846.827067pt;}
.yb_c00251{bottom:879.463867pt;}
.ya_c00251{bottom:894.427067pt;}
.y9_c00251{bottom:927.223867pt;}
.y8_c00251{bottom:942.187067pt;}
.y7_c00251{bottom:970.823867pt;}
.y6_c00251{bottom:985.787067pt;}
.y5_c00251{bottom:1010.267067pt;}
.y2_c00251{bottom:1043.387067pt;}
.y1_c00251{bottom:1063.867067pt;}
.h2_c00251{height:42.656250pt;}
.hc_c00251{height:44.388750pt;}
.h1_c00251{height:44.724687pt;}
.h3_c00251{height:50.062500pt;}
.h9_c00251{height:53.562500pt;}
.h4_c00251{height:53.625000pt;}
.ha_c00251{height:57.894062pt;}
.hb_c00251{height:57.894596pt;}
.h8_c00251{height:72.423750pt;}
.h7_c00251{height:74.490768pt;}
.h6_c00251{height:74.811408pt;}
.h5_c00251{height:104.577487pt;}
.h0_c00251{height:1122.666667pt;}
.w1_c00251{width:793.333333pt;}
.w0_c00251{width:793.626667pt;}
.x0_c00251{left:0.000000pt;}
.x2_c00251{left:113.440000pt;}
.xa_c00251{left:137.284240pt;}
.x6_c00251{left:152.880000pt;}
.x9_c00251{left:160.640000pt;}
.x5_c00251{left:203.040000pt;}
.x8_c00251{left:272.640000pt;}
.x4_c00251{left:386.880000pt;}
.x3_c00251{left:396.880000pt;}
.x1_c00251{left:436.240000pt;}
.x7_c00251{left:476.886720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a51d7c4ee354308ea45970b1.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.100098;font-style:normal;font-weight:normal;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_196a4b79fdc29ffe5966be29.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;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_c00252;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_2bda9e56a6b6e6d82d47bc19.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00252;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00252{font-family:ff5_c00252;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_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;}
.v1_c00252{vertical-align:15.840000px;}
.v3_c00252{vertical-align:28.436760px;}
.v2_c00252{vertical-align:33.486840px;}
.lsb_c00252{letter-spacing:-0.151200px;}
.ls13_c00252{letter-spacing:-0.102204px;}
.ls16_c00252{letter-spacing:-0.060120px;}
.lse_c00252{letter-spacing:-0.054108px;}
.ls17_c00252{letter-spacing:-0.048096px;}
.lsd_c00252{letter-spacing:-0.042084px;}
.ls18_c00252{letter-spacing:-0.039060px;}
.lsf_c00252{letter-spacing:-0.036072px;}
.ls11_c00252{letter-spacing:-0.030060px;}
.ls10_c00252{letter-spacing:-0.024048px;}
.ls1a_c00252{letter-spacing:-0.021600px;}
.ls12_c00252{letter-spacing:-0.018036px;}
.ls19_c00252{letter-spacing:-0.014400px;}
.ls14_c00252{letter-spacing:-0.012024px;}
.lsc_c00252{letter-spacing:-0.007200px;}
.ls15_c00252{letter-spacing:-0.006012px;}
.lsa_c00252{letter-spacing:0.000000px;}
.ls6_c00252{letter-spacing:0.012024px;}
.ls3_c00252{letter-spacing:0.024048px;}
.ls9_c00252{letter-spacing:0.028728px;}
.ls5_c00252{letter-spacing:0.036072px;}
.ls0_c00252{letter-spacing:0.048096px;}
.ls2_c00252{letter-spacing:0.054108px;}
.ls4_c00252{letter-spacing:0.060120px;}
.ls7_c00252{letter-spacing:0.136080px;}
.ls8_c00252{letter-spacing:34.450920px;}
.ls1_c00252{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00252{word-spacing:-19.530000px;}
.ws0_c00252{word-spacing:-9.856080px;}
.ws16_c00252{word-spacing:-0.306612px;}
.ws11_c00252{word-spacing:-0.294588px;}
.wsd_c00252{word-spacing:-0.264528px;}
.ws10_c00252{word-spacing:-0.258516px;}
.ws9_c00252{word-spacing:-0.240480px;}
.ws7_c00252{word-spacing:-0.234468px;}
.ws19_c00252{word-spacing:-0.054684px;}
.ws1e_c00252{word-spacing:-0.009576px;}
.ws3_c00252{word-spacing:0.000000px;}
.ws4_c00252{word-spacing:0.007200px;}
.ws14_c00252{word-spacing:0.030060px;}
.ws2_c00252{word-spacing:0.042084px;}
.wse_c00252{word-spacing:0.066132px;}
.ws18_c00252{word-spacing:0.078156px;}
.ws17_c00252{word-spacing:0.090180px;}
.ws15_c00252{word-spacing:0.096192px;}
.wsb_c00252{word-spacing:0.102204px;}
.wsa_c00252{word-spacing:0.108216px;}
.ws8_c00252{word-spacing:0.114228px;}
.wsc_c00252{word-spacing:0.120240px;}
.wsf_c00252{word-spacing:0.126252px;}
.ws5_c00252{word-spacing:0.132264px;}
.ws13_c00252{word-spacing:0.138276px;}
.ws6_c00252{word-spacing:0.144288px;}
.ws12_c00252{word-spacing:0.150300px;}
.ws1d_c00252{word-spacing:1.159200px;}
.ws1c_c00252{word-spacing:1.195200px;}
.ws1a_c00252{word-spacing:3.614400px;}
.ws1b_c00252{word-spacing:18.014400px;}
._0_c00252{margin-left:-1.322640px;}
._6_c00252{width:1.052100px;}
._e_c00252{width:91.953540px;}
._15_c00252{width:139.057560px;}
._11_c00252{width:155.891160px;}
._1e_c00252{width:167.915160px;}
._14_c00252{width:180.360000px;}
._18_c00252{width:186.131520px;}
._10_c00252{width:189.738720px;}
._13_c00252{width:195.810840px;}
._8_c00252{width:203.025240px;}
._9_c00252{width:233.445960px;}
._17_c00252{width:238.153356px;}
._d_c00252{width:249.846696px;}
._19_c00252{width:254.325636px;}
._5_c00252{width:263.806560px;}
._1_c00252{width:270.648000px;}
._1a_c00252{width:271.862640px;}
._f_c00252{width:277.634160px;}
._7_c00252{width:278.956800px;}
._16_c00252{width:304.357500px;}
._c_c00252{width:308.686140px;}
._1c_c00252{width:322.549812px;}
._1b_c00252{width:328.134960px;}
._3_c00252{width:368.619768px;}
._1d_c00252{width:375.671844px;}
._4_c00252{width:386.523504px;}
._12_c00252{width:397.284984px;}
._b_c00252{width:403.080552px;}
._1f_c00252{width:414.347040px;}
._a_c00252{width:487.705464px;}
._2_c00252{width:491.716800px;}
.fc0_c00252{color:rgb(0,0,0);}
.fs3_c00252{font-size:38.880000px;}
.fs5_c00252{font-size:47.880000px;}
.fs1_c00252{font-size:54.000000px;}
.fs0_c00252{font-size:60.120000px;}
.fs2_c00252{font-size:72.000000px;}
.fs4_c00252{font-size:78.120000px;}
.y0_c00252{bottom:0.000000px;}
.y3_c00252{bottom:57.450450px;}
.y27_c00252{bottom:113.700450px;}
.y26_c00252{bottom:128.910450px;}
.y25_c00252{bottom:149.610450px;}
.y24_c00252{bottom:170.310450px;}
.y23_c00252{bottom:206.850450px;}
.y22_c00252{bottom:241.230450px;}
.y21_c00252{bottom:275.700450px;}
.y20_c00252{bottom:320.700450px;}
.y1f_c00252{bottom:371.280450px;}
.y1e_c00252{bottom:406.920450px;}
.y1d_c00252{bottom:442.560450px;}
.y1c_c00252{bottom:478.200600px;}
.y1b_c00252{bottom:513.838560px;}
.y1a_c00252{bottom:522.300450px;}
.y19_c00252{bottom:566.310450px;}
.y18_c00252{bottom:601.950450px;}
.y17_c00252{bottom:637.590450px;}
.y16_c00252{bottom:673.230450px;}
.y15_c00252{bottom:708.780450px;}
.y14_c00252{bottom:744.418380px;}
.y13_c00252{bottom:752.970450px;}
.y12_c00252{bottom:796.980450px;}
.y11_c00252{bottom:832.530450px;}
.yf_c00252{bottom:868.154880px;}
.ye_c00252{bottom:885.078660px;}
.y10_c00252{bottom:893.540550px;}
.yd_c00252{bottom:901.912260px;}
.yc_c00252{bottom:911.726850px;}
.yb_c00252{bottom:928.560450px;}
.ya_c00252{bottom:954.478560px;}
.y9_c00252{bottom:962.940450px;}
.y8_c00252{bottom:1006.950450px;}
.y7_c00252{bottom:1042.590450px;}
.y6_c00252{bottom:1078.228560px;}
.y5_c00252{bottom:1086.690450px;}
.y4_c00252{bottom:1131.420450px;}
.y2_c00252{bottom:1177.860450px;}
.y1_c00252{bottom:1196.850450px;}
.h9_c00252{height:47.988281px;}
.ha_c00252{height:49.937344px;}
.h1_c00252{height:50.315273px;}
.h2_c00252{height:56.320312px;}
.h8_c00252{height:60.257812px;}
.h4_c00252{height:60.328125px;}
.h3_c00252{height:72.160312px;}
.h6_c00252{height:78.752033px;}
.h7_c00252{height:81.476719px;}
.h5_c00252{height:83.802113px;}
.h0_c00252{height:1263.000000px;}
.w1_c00252{width:892.500000px;}
.w0_c00252{width:892.830000px;}
.x0_c00252{left:0.000000px;}
.x1_c00252{left:127.620000px;}
.x3_c00252{left:171.990000px;}
.x2_c00252{left:178.380000px;}
.x7_c00252{left:180.720000px;}
.x6_c00252{left:278.280000px;}
.x5_c00252{left:352.800000px;}
.x4_c00252{left:536.482530px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.v1_c00252{vertical-align:14.080000pt;}
.v3_c00252{vertical-align:25.277120pt;}
.v2_c00252{vertical-align:29.766080pt;}
.lsb_c00252{letter-spacing:-0.134400pt;}
.ls13_c00252{letter-spacing:-0.090848pt;}
.ls16_c00252{letter-spacing:-0.053440pt;}
.lse_c00252{letter-spacing:-0.048096pt;}
.ls17_c00252{letter-spacing:-0.042752pt;}
.lsd_c00252{letter-spacing:-0.037408pt;}
.ls18_c00252{letter-spacing:-0.034720pt;}
.lsf_c00252{letter-spacing:-0.032064pt;}
.ls11_c00252{letter-spacing:-0.026720pt;}
.ls10_c00252{letter-spacing:-0.021376pt;}
.ls1a_c00252{letter-spacing:-0.019200pt;}
.ls12_c00252{letter-spacing:-0.016032pt;}
.ls19_c00252{letter-spacing:-0.012800pt;}
.ls14_c00252{letter-spacing:-0.010688pt;}
.lsc_c00252{letter-spacing:-0.006400pt;}
.ls15_c00252{letter-spacing:-0.005344pt;}
.lsa_c00252{letter-spacing:0.000000pt;}
.ls6_c00252{letter-spacing:0.010688pt;}
.ls3_c00252{letter-spacing:0.021376pt;}
.ls9_c00252{letter-spacing:0.025536pt;}
.ls5_c00252{letter-spacing:0.032064pt;}
.ls0_c00252{letter-spacing:0.042752pt;}
.ls2_c00252{letter-spacing:0.048096pt;}
.ls4_c00252{letter-spacing:0.053440pt;}
.ls7_c00252{letter-spacing:0.120960pt;}
.ls8_c00252{letter-spacing:30.623040pt;}
.ls1_c00252{letter-spacing:1077.440000pt;}
.ws1_c00252{word-spacing:-17.360000pt;}
.ws0_c00252{word-spacing:-8.760960pt;}
.ws16_c00252{word-spacing:-0.272544pt;}
.ws11_c00252{word-spacing:-0.261856pt;}
.wsd_c00252{word-spacing:-0.235136pt;}
.ws10_c00252{word-spacing:-0.229792pt;}
.ws9_c00252{word-spacing:-0.213760pt;}
.ws7_c00252{word-spacing:-0.208416pt;}
.ws19_c00252{word-spacing:-0.048608pt;}
.ws1e_c00252{word-spacing:-0.008512pt;}
.ws3_c00252{word-spacing:0.000000pt;}
.ws4_c00252{word-spacing:0.006400pt;}
.ws14_c00252{word-spacing:0.026720pt;}
.ws2_c00252{word-spacing:0.037408pt;}
.wse_c00252{word-spacing:0.058784pt;}
.ws18_c00252{word-spacing:0.069472pt;}
.ws17_c00252{word-spacing:0.080160pt;}
.ws15_c00252{word-spacing:0.085504pt;}
.wsb_c00252{word-spacing:0.090848pt;}
.wsa_c00252{word-spacing:0.096192pt;}
.ws8_c00252{word-spacing:0.101536pt;}
.wsc_c00252{word-spacing:0.106880pt;}
.wsf_c00252{word-spacing:0.112224pt;}
.ws5_c00252{word-spacing:0.117568pt;}
.ws13_c00252{word-spacing:0.122912pt;}
.ws6_c00252{word-spacing:0.128256pt;}
.ws12_c00252{word-spacing:0.133600pt;}
.ws1d_c00252{word-spacing:1.030400pt;}
.ws1c_c00252{word-spacing:1.062400pt;}
.ws1a_c00252{word-spacing:3.212800pt;}
.ws1b_c00252{word-spacing:16.012800pt;}
._0_c00252{margin-left:-1.175680pt;}
._6_c00252{width:0.935200pt;}
._e_c00252{width:81.736480pt;}
._15_c00252{width:123.606720pt;}
._11_c00252{width:138.569920pt;}
._1e_c00252{width:149.257920pt;}
._14_c00252{width:160.320000pt;}
._18_c00252{width:165.450240pt;}
._10_c00252{width:168.656640pt;}
._13_c00252{width:174.054080pt;}
._8_c00252{width:180.466880pt;}
._9_c00252{width:207.507520pt;}
._17_c00252{width:211.691872pt;}
._d_c00252{width:222.085952pt;}
._19_c00252{width:226.067232pt;}
._5_c00252{width:234.494720pt;}
._1_c00252{width:240.576000pt;}
._1a_c00252{width:241.655680pt;}
._f_c00252{width:246.785920pt;}
._7_c00252{width:247.961600pt;}
._16_c00252{width:270.540000pt;}
._c_c00252{width:274.387680pt;}
._1c_c00252{width:286.710944pt;}
._1b_c00252{width:291.675520pt;}
._3_c00252{width:327.662016pt;}
._1d_c00252{width:333.930528pt;}
._4_c00252{width:343.576448pt;}
._12_c00252{width:353.142208pt;}
._b_c00252{width:358.293824pt;}
._1f_c00252{width:368.308480pt;}
._a_c00252{width:433.515968pt;}
._2_c00252{width:437.081600pt;}
.fs3_c00252{font-size:34.560000pt;}
.fs5_c00252{font-size:42.560000pt;}
.fs1_c00252{font-size:48.000000pt;}
.fs0_c00252{font-size:53.440000pt;}
.fs2_c00252{font-size:64.000000pt;}
.fs4_c00252{font-size:69.440000pt;}
.y0_c00252{bottom:0.000000pt;}
.y3_c00252{bottom:51.067067pt;}
.y27_c00252{bottom:101.067067pt;}
.y26_c00252{bottom:114.587067pt;}
.y25_c00252{bottom:132.987067pt;}
.y24_c00252{bottom:151.387067pt;}
.y23_c00252{bottom:183.867067pt;}
.y22_c00252{bottom:214.427067pt;}
.y21_c00252{bottom:245.067067pt;}
.y20_c00252{bottom:285.067067pt;}
.y1f_c00252{bottom:330.027067pt;}
.y1e_c00252{bottom:361.707067pt;}
.y1d_c00252{bottom:393.387067pt;}
.y1c_c00252{bottom:425.067200pt;}
.y1b_c00252{bottom:456.745387pt;}
.y1a_c00252{bottom:464.267067pt;}
.y19_c00252{bottom:503.387067pt;}
.y18_c00252{bottom:535.067067pt;}
.y17_c00252{bottom:566.747067pt;}
.y16_c00252{bottom:598.427067pt;}
.y15_c00252{bottom:630.027067pt;}
.y14_c00252{bottom:661.705227pt;}
.y13_c00252{bottom:669.307067pt;}
.y12_c00252{bottom:708.427067pt;}
.y11_c00252{bottom:740.027067pt;}
.yf_c00252{bottom:771.693227pt;}
.ye_c00252{bottom:786.736587pt;}
.y10_c00252{bottom:794.258267pt;}
.yd_c00252{bottom:801.699787pt;}
.yc_c00252{bottom:810.423867pt;}
.yb_c00252{bottom:825.387067pt;}
.ya_c00252{bottom:848.425387pt;}
.y9_c00252{bottom:855.947067pt;}
.y8_c00252{bottom:895.067067pt;}
.y7_c00252{bottom:926.747067pt;}
.y6_c00252{bottom:958.425387pt;}
.y5_c00252{bottom:965.947067pt;}
.y4_c00252{bottom:1005.707067pt;}
.y2_c00252{bottom:1046.987067pt;}
.y1_c00252{bottom:1063.867067pt;}
.h9_c00252{height:42.656250pt;}
.ha_c00252{height:44.388750pt;}
.h1_c00252{height:44.724687pt;}
.h2_c00252{height:50.062500pt;}
.h8_c00252{height:53.562500pt;}
.h4_c00252{height:53.625000pt;}
.h3_c00252{height:64.142500pt;}
.h6_c00252{height:70.001808pt;}
.h7_c00252{height:72.423750pt;}
.h5_c00252{height:74.490767pt;}
.h0_c00252{height:1122.666667pt;}
.w1_c00252{width:793.333333pt;}
.w0_c00252{width:793.626667pt;}
.x0_c00252{left:0.000000pt;}
.x1_c00252{left:113.440000pt;}
.x3_c00252{left:152.880000pt;}
.x2_c00252{left:158.560000pt;}
.x7_c00252{left:160.640000pt;}
.x6_c00252{left:247.360000pt;}
.x5_c00252{left:313.600000pt;}
.x4_c00252{left:476.873360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_71fbaad01290bfcd89065b30.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00253;src:url('chunks/assets/font_06515b94bc0489deeb88c931.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00253;src:url('chunks/assets/font_119a7d148a2afb336083a7c5.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00253;src:url('chunks/assets/font_1b74171a28616155f1d0f9f2.woff2')format("woff");}.ff5_c00253{font-family:ff5_c00253;line-height:1.102051;font-style:normal;font-weight:normal;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_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff6_c00253{font-family:ff6_c00253;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00253;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff7_c00253{font-family:ff7_c00253;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_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.v1_c00253{vertical-align:29.880600px;}
.ls13_c00253{letter-spacing:-0.151200px;}
.ls16_c00253{letter-spacing:-0.086400px;}
.ls1d_c00253{letter-spacing:-0.054108px;}
.ls19_c00253{letter-spacing:-0.043200px;}
.ls1b_c00253{letter-spacing:-0.036072px;}
.ls18_c00253{letter-spacing:-0.028800px;}
.ls15_c00253{letter-spacing:-0.021600px;}
.ls14_c00253{letter-spacing:-0.014400px;}
.ls1c_c00253{letter-spacing:-0.012024px;}
.ls17_c00253{letter-spacing:-0.007200px;}
.ls1e_c00253{letter-spacing:-0.006012px;}
.ls20_c00253{letter-spacing:-0.003888px;}
.ls12_c00253{letter-spacing:0.000000px;}
.ls1f_c00253{letter-spacing:0.007200px;}
.lsa_c00253{letter-spacing:0.012024px;}
.lsf_c00253{letter-spacing:0.014364px;}
.lsc_c00253{letter-spacing:0.014400px;}
.ls8_c00253{letter-spacing:0.018036px;}
.ls3_c00253{letter-spacing:0.021600px;}
.ls6_c00253{letter-spacing:0.024048px;}
.lse_c00253{letter-spacing:0.033516px;}
.ls0_c00253{letter-spacing:0.036072px;}
.ls9_c00253{letter-spacing:0.042084px;}
.ls11_c00253{letter-spacing:0.047880px;}
.lsb_c00253{letter-spacing:0.048096px;}
.ls7_c00253{letter-spacing:0.054108px;}
.ls4_c00253{letter-spacing:0.054756px;}
.ls1_c00253{letter-spacing:0.144000px;}
.ls10_c00253{letter-spacing:0.464040px;}
.ls1a_c00253{letter-spacing:1.172340px;}
.ls5_c00253{letter-spacing:17.280000px;}
.lsd_c00253{letter-spacing:44.784000px;}
.ls2_c00253{letter-spacing:65.304000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00253{word-spacing:-17.913600px;}
.ws2_c00253{word-spacing:-10.804752px;}
.ws1_c00253{word-spacing:-10.584756px;}
.ws1e_c00253{word-spacing:-0.318636px;}
.ws3_c00253{word-spacing:-0.306612px;}
.ws1b_c00253{word-spacing:-0.264528px;}
.ws2b_c00253{word-spacing:-0.028728px;}
.ws28_c00253{word-spacing:-0.014364px;}
.ws4_c00253{word-spacing:0.000000px;}
.ws29_c00253{word-spacing:0.004788px;}
.ws26_c00253{word-spacing:0.007200px;}
.ws27_c00253{word-spacing:0.014400px;}
.ws8_c00253{word-spacing:0.021600px;}
.ws16_c00253{word-spacing:0.036072px;}
.ws6_c00253{word-spacing:0.050400px;}
.ws12_c00253{word-spacing:0.064800px;}
.ws22_c00253{word-spacing:0.079200px;}
.ws25_c00253{word-spacing:0.093600px;}
.ws15_c00253{word-spacing:0.102204px;}
.ws14_c00253{word-spacing:0.126252px;}
.ws2a_c00253{word-spacing:0.363888px;}
.wsc_c00253{word-spacing:0.720000px;}
.wsd_c00253{word-spacing:0.777600px;}
.ws1c_c00253{word-spacing:1.130256px;}
.ws13_c00253{word-spacing:1.148292px;}
.ws1d_c00253{word-spacing:1.160316px;}
.ws9_c00253{word-spacing:1.778400px;}
.wsa_c00253{word-spacing:1.814400px;}
.ws10_c00253{word-spacing:2.203200px;}
.ws11_c00253{word-spacing:2.224800px;}
.ws18_c00253{word-spacing:2.260512px;}
.ws17_c00253{word-spacing:2.302596px;}
.ws23_c00253{word-spacing:2.865600px;}
.ws24_c00253{word-spacing:2.887200px;}
.wsb_c00253{word-spacing:5.788800px;}
.ws19_c00253{word-spacing:11.230416px;}
.ws1a_c00253{word-spacing:11.260476px;}
.ws21_c00253{word-spacing:15.840000px;}
.wsf_c00253{word-spacing:17.215200px;}
.wse_c00253{word-spacing:17.308800px;}
.ws7_c00253{word-spacing:18.741600px;}
.ws5_c00253{word-spacing:20.894400px;}
.ws20_c00253{word-spacing:27.460800px;}
.ws1f_c00253{word-spacing:36.000000px;}
._3_c00253{margin-left:-2.128248px;}
._0_c00253{margin-left:-1.022040px;}
._1_c00253{width:1.080000px;}
._2_c00253{width:2.203200px;}
._4_c00253{width:96.492600px;}
.fc0_c00253{color:rgb(0,0,0);}
.fs5_c00253{font-size:38.880000px;}
.fs3_c00253{font-size:42.120000px;}
.fs4_c00253{font-size:47.880000px;}
.fs2_c00253{font-size:54.000000px;}
.fs0_c00253{font-size:60.120000px;}
.fs1_c00253{font-size:72.000000px;}
.y0_c00253{bottom:0.000000px;}
.y3_c00253{bottom:57.450450px;}
.y4_c00253{bottom:61.410450px;}
.y25_c00253{bottom:113.698470px;}
.y24_c00253{bottom:132.060450px;}
.y23_c00253{bottom:147.270450px;}
.y22_c00253{bottom:167.970450px;}
.y21_c00253{bottom:188.670450px;}
.y20_c00253{bottom:235.110450px;}
.y1f_c00253{bottom:278.490450px;}
.y1e_c00253{bottom:321.960450px;}
.y1d_c00253{bottom:365.340450px;}
.y1c_c00253{bottom:399.810450px;}
.y1b_c00253{bottom:443.190450px;}
.y1a_c00253{bottom:477.660450px;}
.y19_c00253{bottom:512.040450px;}
.y18_c00253{bottom:546.510450px;}
.y17_c00253{bottom:583.915620px;}
.y16_c00253{bottom:600.839400px;}
.y15_c00253{bottom:626.675970px;}
.y14_c00253{bottom:643.599750px;}
.y13_c00253{bottom:660.433350px;}
.y12_c00253{bottom:686.360100px;}
.y11_c00253{bottom:712.196670px;}
.y10_c00253{bottom:729.120450px;}
.yf_c00253{bottom:769.890600px;}
.ye_c00253{bottom:804.360450px;}
.yd_c00253{bottom:847.740450px;}
.yc_c00253{bottom:882.210450px;}
.yb_c00253{bottom:916.590450px;}
.ya_c00253{bottom:951.060450px;}
.y9_c00253{bottom:985.440450px;}
.y8_c00253{bottom:1028.910450px;}
.y7_c00253{bottom:1063.290450px;}
.y6_c00253{bottom:1106.760450px;}
.y5_c00253{bottom:1141.140450px;}
.y2_c00253{bottom:1173.810450px;}
.y1_c00253{bottom:1196.850450px;}
.h2_c00253{height:47.988281px;}
.h8_c00253{height:49.937344px;}
.h9_c00253{height:49.945264px;}
.h1_c00253{height:50.315273px;}
.h3_c00253{height:56.320312px;}
.h4_c00253{height:60.257812px;}
.h7_c00253{height:65.130820px;}
.h6_c00253{height:65.131420px;}
.h5_c00253{height:75.093750px;}
.h0_c00253{height:1263.000000px;}
.w1_c00253{width:892.500000px;}
.w0_c00253{width:892.830000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:127.620000px;}
.x6_c00253{left:154.620000px;}
.x5_c00253{left:180.720000px;}
.x8_c00253{left:207.539640px;}
.x7_c00253{left:208.620000px;}
.x4_c00253{left:435.240000px;}
.x3_c00253{left:446.490000px;}
.x1_c00253{left:490.770000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.v1_c00253{vertical-align:26.560533pt;}
.ls13_c00253{letter-spacing:-0.134400pt;}
.ls16_c00253{letter-spacing:-0.076800pt;}
.ls1d_c00253{letter-spacing:-0.048096pt;}
.ls19_c00253{letter-spacing:-0.038400pt;}
.ls1b_c00253{letter-spacing:-0.032064pt;}
.ls18_c00253{letter-spacing:-0.025600pt;}
.ls15_c00253{letter-spacing:-0.019200pt;}
.ls14_c00253{letter-spacing:-0.012800pt;}
.ls1c_c00253{letter-spacing:-0.010688pt;}
.ls17_c00253{letter-spacing:-0.006400pt;}
.ls1e_c00253{letter-spacing:-0.005344pt;}
.ls20_c00253{letter-spacing:-0.003456pt;}
.ls12_c00253{letter-spacing:0.000000pt;}
.ls1f_c00253{letter-spacing:0.006400pt;}
.lsa_c00253{letter-spacing:0.010688pt;}
.lsf_c00253{letter-spacing:0.012768pt;}
.lsc_c00253{letter-spacing:0.012800pt;}
.ls8_c00253{letter-spacing:0.016032pt;}
.ls3_c00253{letter-spacing:0.019200pt;}
.ls6_c00253{letter-spacing:0.021376pt;}
.lse_c00253{letter-spacing:0.029792pt;}
.ls0_c00253{letter-spacing:0.032064pt;}
.ls9_c00253{letter-spacing:0.037408pt;}
.ls11_c00253{letter-spacing:0.042560pt;}
.lsb_c00253{letter-spacing:0.042752pt;}
.ls7_c00253{letter-spacing:0.048096pt;}
.ls4_c00253{letter-spacing:0.048672pt;}
.ls1_c00253{letter-spacing:0.128000pt;}
.ls10_c00253{letter-spacing:0.412480pt;}
.ls1a_c00253{letter-spacing:1.042080pt;}
.ls5_c00253{letter-spacing:15.360000pt;}
.lsd_c00253{letter-spacing:39.808000pt;}
.ls2_c00253{letter-spacing:58.048000pt;}
.ws0_c00253{word-spacing:-15.923200pt;}
.ws2_c00253{word-spacing:-9.604224pt;}
.ws1_c00253{word-spacing:-9.408672pt;}
.ws1e_c00253{word-spacing:-0.283232pt;}
.ws3_c00253{word-spacing:-0.272544pt;}
.ws1b_c00253{word-spacing:-0.235136pt;}
.ws2b_c00253{word-spacing:-0.025536pt;}
.ws28_c00253{word-spacing:-0.012768pt;}
.ws4_c00253{word-spacing:0.000000pt;}
.ws29_c00253{word-spacing:0.004256pt;}
.ws26_c00253{word-spacing:0.006400pt;}
.ws27_c00253{word-spacing:0.012800pt;}
.ws8_c00253{word-spacing:0.019200pt;}
.ws16_c00253{word-spacing:0.032064pt;}
.ws6_c00253{word-spacing:0.044800pt;}
.ws12_c00253{word-spacing:0.057600pt;}
.ws22_c00253{word-spacing:0.070400pt;}
.ws25_c00253{word-spacing:0.083200pt;}
.ws15_c00253{word-spacing:0.090848pt;}
.ws14_c00253{word-spacing:0.112224pt;}
.ws2a_c00253{word-spacing:0.323456pt;}
.wsc_c00253{word-spacing:0.640000pt;}
.wsd_c00253{word-spacing:0.691200pt;}
.ws1c_c00253{word-spacing:1.004672pt;}
.ws13_c00253{word-spacing:1.020704pt;}
.ws1d_c00253{word-spacing:1.031392pt;}
.ws9_c00253{word-spacing:1.580800pt;}
.wsa_c00253{word-spacing:1.612800pt;}
.ws10_c00253{word-spacing:1.958400pt;}
.ws11_c00253{word-spacing:1.977600pt;}
.ws18_c00253{word-spacing:2.009344pt;}
.ws17_c00253{word-spacing:2.046752pt;}
.ws23_c00253{word-spacing:2.547200pt;}
.ws24_c00253{word-spacing:2.566400pt;}
.wsb_c00253{word-spacing:5.145600pt;}
.ws19_c00253{word-spacing:9.982592pt;}
.ws1a_c00253{word-spacing:10.009312pt;}
.ws21_c00253{word-spacing:14.080000pt;}
.wsf_c00253{word-spacing:15.302400pt;}
.wse_c00253{word-spacing:15.385600pt;}
.ws7_c00253{word-spacing:16.659200pt;}
.ws5_c00253{word-spacing:18.572800pt;}
.ws20_c00253{word-spacing:24.409600pt;}
.ws1f_c00253{word-spacing:32.000000pt;}
._3_c00253{margin-left:-1.891776pt;}
._0_c00253{margin-left:-0.908480pt;}
._1_c00253{width:0.960000pt;}
._2_c00253{width:1.958400pt;}
._4_c00253{width:85.771200pt;}
.fs5_c00253{font-size:34.560000pt;}
.fs3_c00253{font-size:37.440000pt;}
.fs4_c00253{font-size:42.560000pt;}
.fs2_c00253{font-size:48.000000pt;}
.fs0_c00253{font-size:53.440000pt;}
.fs1_c00253{font-size:64.000000pt;}
.y0_c00253{bottom:0.000000pt;}
.y3_c00253{bottom:51.067067pt;}
.y4_c00253{bottom:54.587067pt;}
.y25_c00253{bottom:101.065307pt;}
.y24_c00253{bottom:117.387067pt;}
.y23_c00253{bottom:130.907067pt;}
.y22_c00253{bottom:149.307067pt;}
.y21_c00253{bottom:167.707067pt;}
.y20_c00253{bottom:208.987067pt;}
.y1f_c00253{bottom:247.547067pt;}
.y1e_c00253{bottom:286.187067pt;}
.y1d_c00253{bottom:324.747067pt;}
.y1c_c00253{bottom:355.387067pt;}
.y1b_c00253{bottom:393.947067pt;}
.y1a_c00253{bottom:424.587067pt;}
.y19_c00253{bottom:455.147067pt;}
.y18_c00253{bottom:485.787067pt;}
.y17_c00253{bottom:519.036107pt;}
.y16_c00253{bottom:534.079467pt;}
.y15_c00253{bottom:557.045307pt;}
.y14_c00253{bottom:572.088667pt;}
.y13_c00253{bottom:587.051867pt;}
.y12_c00253{bottom:610.097867pt;}
.y11_c00253{bottom:633.063707pt;}
.y10_c00253{bottom:648.107067pt;}
.yf_c00253{bottom:684.347200pt;}
.ye_c00253{bottom:714.987067pt;}
.yd_c00253{bottom:753.547067pt;}
.yc_c00253{bottom:784.187067pt;}
.yb_c00253{bottom:814.747067pt;}
.ya_c00253{bottom:845.387067pt;}
.y9_c00253{bottom:875.947067pt;}
.y8_c00253{bottom:914.587067pt;}
.y7_c00253{bottom:945.147067pt;}
.y6_c00253{bottom:983.787067pt;}
.y5_c00253{bottom:1014.347067pt;}
.y2_c00253{bottom:1043.387067pt;}
.y1_c00253{bottom:1063.867067pt;}
.h2_c00253{height:42.656250pt;}
.h8_c00253{height:44.388750pt;}
.h9_c00253{height:44.395790pt;}
.h1_c00253{height:44.724687pt;}
.h3_c00253{height:50.062500pt;}
.h4_c00253{height:53.562500pt;}
.h7_c00253{height:57.894063pt;}
.h6_c00253{height:57.894596pt;}
.h5_c00253{height:66.750000pt;}
.h0_c00253{height:1122.666667pt;}
.w1_c00253{width:793.333333pt;}
.w0_c00253{width:793.626667pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:113.440000pt;}
.x6_c00253{left:137.440000pt;}
.x5_c00253{left:160.640000pt;}
.x8_c00253{left:184.479680pt;}
.x7_c00253{left:185.440000pt;}
.x4_c00253{left:386.880000pt;}
.x3_c00253{left:396.880000pt;}
.x1_c00253{left:436.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_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_3db4f5e9e142cc2871dde213.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.100098;font-style:normal;font-weight:normal;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_5d7bc275f0de14107eb69614.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;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_c00254;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00254;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:1.281250;font-style:normal;font-weight:normal;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_a1a28be657cbb98e375850ed.woff2')format("woff");}.ff5_c00254{font-family:ff5_c00254;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00254;src:url('chunks/assets/font_c47a945170b6feb7fbb2a75e.woff2')format("woff");}.ff6_c00254{font-family:ff6_c00254;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_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.v1_c00254{vertical-align:15.840000px;}
.v2_c00254{vertical-align:29.880000px;}
.ls12_c00254{letter-spacing:-0.151200px;}
.ls1a_c00254{letter-spacing:-0.079200px;}
.ls18_c00254{letter-spacing:-0.043200px;}
.ls17_c00254{letter-spacing:-0.036000px;}
.ls14_c00254{letter-spacing:-0.028800px;}
.ls1b_c00254{letter-spacing:-0.021600px;}
.ls19_c00254{letter-spacing:-0.014400px;}
.ls1d_c00254{letter-spacing:-0.011664px;}
.ls1c_c00254{letter-spacing:-0.007776px;}
.ls13_c00254{letter-spacing:-0.007200px;}
.ls1e_c00254{letter-spacing:-0.003888px;}
.ls11_c00254{letter-spacing:0.000000px;}
.ls3_c00254{letter-spacing:0.007200px;}
.lse_c00254{letter-spacing:0.014364px;}
.ls4_c00254{letter-spacing:0.014400px;}
.lsd_c00254{letter-spacing:0.018720px;}
.ls9_c00254{letter-spacing:0.019152px;}
.ls16_c00254{letter-spacing:0.021600px;}
.ls10_c00254{letter-spacing:0.028728px;}
.lsa_c00254{letter-spacing:0.038304px;}
.ls0_c00254{letter-spacing:0.048096px;}
.lsc_c00254{letter-spacing:0.052668px;}
.ls5_c00254{letter-spacing:0.054756px;}
.lsf_c00254{letter-spacing:0.062244px;}
.ls8_c00254{letter-spacing:0.072000px;}
.ls15_c00254{letter-spacing:0.093600px;}
.ls6_c00254{letter-spacing:0.144000px;}
.ls1f_c00254{letter-spacing:0.346032px;}
.lsb_c00254{letter-spacing:10.791360px;}
.ls2_c00254{letter-spacing:44.784000px;}
.ls7_c00254{letter-spacing:66.024000px;}
.ls1_c00254{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00254{word-spacing:-17.920800px;}
.ws4_c00254{word-spacing:-13.329792px;}
.ws2_c00254{word-spacing:-13.310640px;}
.ws5_c00254{word-spacing:-11.154672px;}
.ws3_c00254{word-spacing:-10.796976px;}
.ws0_c00254{word-spacing:-10.584756px;}
.ws1e_c00254{word-spacing:-0.043092px;}
.ws20_c00254{word-spacing:-0.014364px;}
.ws1f_c00254{word-spacing:-0.009576px;}
.ws7_c00254{word-spacing:0.000000px;}
.ws1d_c00254{word-spacing:0.004788px;}
.wsa_c00254{word-spacing:0.007200px;}
.ws18_c00254{word-spacing:0.014400px;}
.ws17_c00254{word-spacing:0.021600px;}
.ws6_c00254{word-spacing:0.042084px;}
.ws13_c00254{word-spacing:0.720000px;}
.ws12_c00254{word-spacing:0.734400px;}
.wsd_c00254{word-spacing:1.404000px;}
.wsf_c00254{word-spacing:4.327200px;}
.wse_c00254{word-spacing:5.040000px;}
.ws8_c00254{word-spacing:5.047200px;}
.ws9_c00254{word-spacing:5.140800px;}
.ws16_c00254{word-spacing:7.560000px;}
.ws1c_c00254{word-spacing:10.763424px;}
.ws1a_c00254{word-spacing:10.777788px;}
.ws1b_c00254{word-spacing:10.796940px;}
.ws15_c00254{word-spacing:13.305600px;}
.ws14_c00254{word-spacing:13.406400px;}
.wsc_c00254{word-spacing:17.625600px;}
.wsb_c00254{word-spacing:17.632800px;}
.ws10_c00254{word-spacing:17.726400px;}
.ws11_c00254{word-spacing:17.740800px;}
.ws19_c00254{word-spacing:33.868800px;}
._0_c00254{margin-left:-1.322640px;}
._1_c00254{width:1.461600px;}
.fc0_c00254{color:rgb(0,0,0);}
.fs5_c00254{font-size:38.880000px;}
.fs3_c00254{font-size:42.120000px;}
.fs4_c00254{font-size:47.880000px;}
.fs1_c00254{font-size:54.000000px;}
.fs0_c00254{font-size:60.120000px;}
.fs2_c00254{font-size:72.000000px;}
.y0_c00254{bottom:0.000000px;}
.y3_c00254{bottom:57.450450px;}
.y20_c00254{bottom:113.698470px;}
.y1f_c00254{bottom:132.064950px;}
.y1e_c00254{bottom:145.834230px;}
.y1d_c00254{bottom:164.100450px;}
.y1c_c00254{bottom:179.310600px;}
.y1b_c00254{bottom:200.010600px;}
.y1a_c00254{bottom:220.710600px;}
.y19_c00254{bottom:310.260600px;}
.y18_c00254{bottom:344.640600px;}
.y17_c00254{bottom:388.110600px;}
.y16_c00254{bottom:431.490600px;}
.y15_c00254{bottom:474.960600px;}
.y14_c00254{bottom:509.340450px;}
.y13_c00254{bottom:543.810450px;}
.y12_c00254{bottom:578.190450px;}
.y11_c00254{bottom:630.660450px;}
.y10_c00254{bottom:665.040450px;}
.yf_c00254{bottom:699.510450px;}
.ye_c00254{bottom:733.890450px;}
.yd_c00254{bottom:768.360450px;}
.yc_c00254{bottom:811.740450px;}
.yb_c00254{bottom:855.210450px;}
.ya_c00254{bottom:898.590450px;}
.y9_c00254{bottom:942.060450px;}
.y8_c00254{bottom:985.440450px;}
.y7_c00254{bottom:1028.910450px;}
.y6_c00254{bottom:1063.290450px;}
.y5_c00254{bottom:1106.760450px;}
.y4_c00254{bottom:1141.140450px;}
.y2_c00254{bottom:1177.860450px;}
.y1_c00254{bottom:1196.850450px;}
.h7_c00254{height:47.988281px;}
.h8_c00254{height:49.937344px;}
.h1_c00254{height:50.315273px;}
.h2_c00254{height:56.320312px;}
.h5_c00254{height:60.257812px;}
.h6_c00254{height:65.130820px;}
.h3_c00254{height:72.160312px;}
.h4_c00254{height:75.093750px;}
.h0_c00254{height:1263.000000px;}
.w1_c00254{width:892.500000px;}
.w0_c00254{width:892.830000px;}
.x0_c00254{left:0.000000px;}
.x1_c00254{left:127.620000px;}
.x4_c00254{left:154.440000px;}
.x5_c00254{left:181.170000px;}
.x2_c00254{left:208.620000px;}
.x3_c00254{left:235.620000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.v1_c00254{vertical-align:14.080000pt;}
.v2_c00254{vertical-align:26.560000pt;}
.ls12_c00254{letter-spacing:-0.134400pt;}
.ls1a_c00254{letter-spacing:-0.070400pt;}
.ls18_c00254{letter-spacing:-0.038400pt;}
.ls17_c00254{letter-spacing:-0.032000pt;}
.ls14_c00254{letter-spacing:-0.025600pt;}
.ls1b_c00254{letter-spacing:-0.019200pt;}
.ls19_c00254{letter-spacing:-0.012800pt;}
.ls1d_c00254{letter-spacing:-0.010368pt;}
.ls1c_c00254{letter-spacing:-0.006912pt;}
.ls13_c00254{letter-spacing:-0.006400pt;}
.ls1e_c00254{letter-spacing:-0.003456pt;}
.ls11_c00254{letter-spacing:0.000000pt;}
.ls3_c00254{letter-spacing:0.006400pt;}
.lse_c00254{letter-spacing:0.012768pt;}
.ls4_c00254{letter-spacing:0.012800pt;}
.lsd_c00254{letter-spacing:0.016640pt;}
.ls9_c00254{letter-spacing:0.017024pt;}
.ls16_c00254{letter-spacing:0.019200pt;}
.ls10_c00254{letter-spacing:0.025536pt;}
.lsa_c00254{letter-spacing:0.034048pt;}
.ls0_c00254{letter-spacing:0.042752pt;}
.lsc_c00254{letter-spacing:0.046816pt;}
.ls5_c00254{letter-spacing:0.048672pt;}
.lsf_c00254{letter-spacing:0.055328pt;}
.ls8_c00254{letter-spacing:0.064000pt;}
.ls15_c00254{letter-spacing:0.083200pt;}
.ls6_c00254{letter-spacing:0.128000pt;}
.ls1f_c00254{letter-spacing:0.307584pt;}
.lsb_c00254{letter-spacing:9.592320pt;}
.ls2_c00254{letter-spacing:39.808000pt;}
.ls7_c00254{letter-spacing:58.688000pt;}
.ls1_c00254{letter-spacing:1077.440000pt;}
.ws1_c00254{word-spacing:-15.929600pt;}
.ws4_c00254{word-spacing:-11.848704pt;}
.ws2_c00254{word-spacing:-11.831680pt;}
.ws5_c00254{word-spacing:-9.915264pt;}
.ws3_c00254{word-spacing:-9.597312pt;}
.ws0_c00254{word-spacing:-9.408672pt;}
.ws1e_c00254{word-spacing:-0.038304pt;}
.ws20_c00254{word-spacing:-0.012768pt;}
.ws1f_c00254{word-spacing:-0.008512pt;}
.ws7_c00254{word-spacing:0.000000pt;}
.ws1d_c00254{word-spacing:0.004256pt;}
.wsa_c00254{word-spacing:0.006400pt;}
.ws18_c00254{word-spacing:0.012800pt;}
.ws17_c00254{word-spacing:0.019200pt;}
.ws6_c00254{word-spacing:0.037408pt;}
.ws13_c00254{word-spacing:0.640000pt;}
.ws12_c00254{word-spacing:0.652800pt;}
.wsd_c00254{word-spacing:1.248000pt;}
.wsf_c00254{word-spacing:3.846400pt;}
.wse_c00254{word-spacing:4.480000pt;}
.ws8_c00254{word-spacing:4.486400pt;}
.ws9_c00254{word-spacing:4.569600pt;}
.ws16_c00254{word-spacing:6.720000pt;}
.ws1c_c00254{word-spacing:9.567488pt;}
.ws1a_c00254{word-spacing:9.580256pt;}
.ws1b_c00254{word-spacing:9.597280pt;}
.ws15_c00254{word-spacing:11.827200pt;}
.ws14_c00254{word-spacing:11.916800pt;}
.wsc_c00254{word-spacing:15.667200pt;}
.wsb_c00254{word-spacing:15.673600pt;}
.ws10_c00254{word-spacing:15.756800pt;}
.ws11_c00254{word-spacing:15.769600pt;}
.ws19_c00254{word-spacing:30.105600pt;}
._0_c00254{margin-left:-1.175680pt;}
._1_c00254{width:1.299200pt;}
.fs5_c00254{font-size:34.560000pt;}
.fs3_c00254{font-size:37.440000pt;}
.fs4_c00254{font-size:42.560000pt;}
.fs1_c00254{font-size:48.000000pt;}
.fs0_c00254{font-size:53.440000pt;}
.fs2_c00254{font-size:64.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y3_c00254{bottom:51.067067pt;}
.y20_c00254{bottom:101.065307pt;}
.y1f_c00254{bottom:117.391067pt;}
.y1e_c00254{bottom:129.630427pt;}
.y1d_c00254{bottom:145.867067pt;}
.y1c_c00254{bottom:159.387200pt;}
.y1b_c00254{bottom:177.787200pt;}
.y1a_c00254{bottom:196.187200pt;}
.y19_c00254{bottom:275.787200pt;}
.y18_c00254{bottom:306.347200pt;}
.y17_c00254{bottom:344.987200pt;}
.y16_c00254{bottom:383.547200pt;}
.y15_c00254{bottom:422.187200pt;}
.y14_c00254{bottom:452.747067pt;}
.y13_c00254{bottom:483.387067pt;}
.y12_c00254{bottom:513.947067pt;}
.y11_c00254{bottom:560.587067pt;}
.y10_c00254{bottom:591.147067pt;}
.yf_c00254{bottom:621.787067pt;}
.ye_c00254{bottom:652.347067pt;}
.yd_c00254{bottom:682.987067pt;}
.yc_c00254{bottom:721.547067pt;}
.yb_c00254{bottom:760.187067pt;}
.ya_c00254{bottom:798.747067pt;}
.y9_c00254{bottom:837.387067pt;}
.y8_c00254{bottom:875.947067pt;}
.y7_c00254{bottom:914.587067pt;}
.y6_c00254{bottom:945.147067pt;}
.y5_c00254{bottom:983.787067pt;}
.y4_c00254{bottom:1014.347067pt;}
.y2_c00254{bottom:1046.987067pt;}
.y1_c00254{bottom:1063.867067pt;}
.h7_c00254{height:42.656250pt;}
.h8_c00254{height:44.388750pt;}
.h1_c00254{height:44.724687pt;}
.h2_c00254{height:50.062500pt;}
.h5_c00254{height:53.562500pt;}
.h6_c00254{height:57.894062pt;}
.h3_c00254{height:64.142500pt;}
.h4_c00254{height:66.750000pt;}
.h0_c00254{height:1122.666667pt;}
.w1_c00254{width:793.333333pt;}
.w0_c00254{width:793.626667pt;}
.x0_c00254{left:0.000000pt;}
.x1_c00254{left:113.440000pt;}
.x4_c00254{left:137.280000pt;}
.x5_c00254{left:161.040000pt;}
.x2_c00254{left:185.440000pt;}
.x3_c00254{left:209.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_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_80d6cd3381e0bede6f83ec85.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00255;src:url('chunks/assets/font_21ef8167666ca395fd07f6b6.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00255;src:url('chunks/assets/font_5f90696c1fd7896b567b4c44.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00255;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00255{font-family:ff5_c00255;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_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.v1_c00255{vertical-align:29.880000px;}
.ls9_c00255{letter-spacing:-0.151200px;}
.lsb_c00255{letter-spacing:-0.050400px;}
.ls11_c00255{letter-spacing:-0.036000px;}
.lse_c00255{letter-spacing:-0.028800px;}
.ls12_c00255{letter-spacing:-0.021600px;}
.ls10_c00255{letter-spacing:-0.014400px;}
.lsa_c00255{letter-spacing:-0.007200px;}
.ls8_c00255{letter-spacing:0.000000px;}
.lsc_c00255{letter-spacing:0.007200px;}
.lsd_c00255{letter-spacing:0.014400px;}
.ls7_c00255{letter-spacing:0.019152px;}
.ls6_c00255{letter-spacing:0.036000px;}
.ls0_c00255{letter-spacing:0.036072px;}
.ls4_c00255{letter-spacing:0.054756px;}
.lsf_c00255{letter-spacing:0.093600px;}
.ls1_c00255{letter-spacing:0.144000px;}
.ls5_c00255{letter-spacing:34.450920px;}
.ls3_c00255{letter-spacing:65.304000px;}
.ls2_c00255{letter-spacing:66.024000px;}
.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;}
}
.ws1_c00255{word-spacing:-19.530000px;}
.ws0_c00255{word-spacing:-10.584756px;}
.ws2_c00255{word-spacing:-0.306612px;}
.wsb_c00255{word-spacing:-0.179676px;}
.ws8_c00255{word-spacing:-0.014400px;}
.ws6_c00255{word-spacing:-0.007200px;}
.ws3_c00255{word-spacing:0.000000px;}
.wsa_c00255{word-spacing:0.007200px;}
.ws7_c00255{word-spacing:0.064800px;}
.ws9_c00255{word-spacing:0.086400px;}
.ws12_c00255{word-spacing:1.389600px;}
.ws13_c00255{word-spacing:1.454400px;}
.ws19_c00255{word-spacing:1.468800px;}
.ws15_c00255{word-spacing:2.520000px;}
.ws17_c00255{word-spacing:2.563200px;}
.ws18_c00255{word-spacing:2.577600px;}
.ws14_c00255{word-spacing:2.584800px;}
.wsc_c00255{word-spacing:4.327200px;}
.ws5_c00255{word-spacing:5.400000px;}
.ws11_c00255{word-spacing:5.760000px;}
.ws16_c00255{word-spacing:5.817600px;}
.ws1a_c00255{word-spacing:9.424800px;}
.ws1b_c00255{word-spacing:9.532800px;}
.wse_c00255{word-spacing:15.444000px;}
.wsd_c00255{word-spacing:15.537600px;}
.ws10_c00255{word-spacing:17.193600px;}
.wsf_c00255{word-spacing:17.294400px;}
.ws1c_c00255{word-spacing:27.021600px;}
.ws4_c00255{word-spacing:29.851200px;}
._0_c00255{margin-left:-1.022040px;}
._1_c00255{width:1.152000px;}
.fc0_c00255{color:rgb(0,0,0);}
.fs3_c00255{font-size:42.120000px;}
.fs5_c00255{font-size:47.880000px;}
.fs2_c00255{font-size:54.000000px;}
.fs0_c00255{font-size:60.120000px;}
.fs1_c00255{font-size:72.000000px;}
.fs4_c00255{font-size:78.120000px;}
.y0_c00255{bottom:0.000000px;}
.y3_c00255{bottom:57.450450px;}
.y4_c00255{bottom:61.410450px;}
.y20_c00255{bottom:113.700450px;}
.y1f_c00255{bottom:128.910450px;}
.y1e_c00255{bottom:149.610450px;}
.y1d_c00255{bottom:170.310450px;}
.y1c_c00255{bottom:238.530450px;}
.y1b_c00255{bottom:272.910450px;}
.y1a_c00255{bottom:307.380450px;}
.y19_c00255{bottom:350.760450px;}
.y18_c00255{bottom:385.230450px;}
.y17_c00255{bottom:419.610450px;}
.y16_c00255{bottom:454.080450px;}
.y15_c00255{bottom:497.460450px;}
.y14_c00255{bottom:531.930450px;}
.y13_c00255{bottom:566.310450px;}
.y12_c00255{bottom:609.780450px;}
.y11_c00255{bottom:644.160450px;}
.y10_c00255{bottom:678.630450px;}
.yf_c00255{bottom:713.010450px;}
.ye_c00255{bottom:758.100450px;}
.yd_c00255{bottom:811.740450px;}
.yc_c00255{bottom:855.210450px;}
.yb_c00255{bottom:898.590450px;}
.ya_c00255{bottom:942.060450px;}
.y9_c00255{bottom:985.440450px;}
.y8_c00255{bottom:1028.910450px;}
.y7_c00255{bottom:1063.290450px;}
.y6_c00255{bottom:1106.760450px;}
.y5_c00255{bottom:1141.140450px;}
.y2_c00255{bottom:1173.810450px;}
.y1_c00255{bottom:1196.850450px;}
.h2_c00255{height:47.988281px;}
.h7_c00255{height:49.937344px;}
.h1_c00255{height:50.315273px;}
.h3_c00255{height:56.320312px;}
.h5_c00255{height:60.257812px;}
.h4_c00255{height:75.093750px;}
.h6_c00255{height:81.476719px;}
.h0_c00255{height:1263.000000px;}
.w1_c00255{width:892.500000px;}
.w0_c00255{width:892.830000px;}
.x0_c00255{left:0.000000px;}
.x2_c00255{left:127.620000px;}
.x5_c00255{left:154.440000px;}
.x6_c00255{left:181.170000px;}
.x4_c00255{left:435.240000px;}
.x3_c00255{left:446.490000px;}
.x1_c00255{left:490.770000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.v1_c00255{vertical-align:26.560000pt;}
.ls9_c00255{letter-spacing:-0.134400pt;}
.lsb_c00255{letter-spacing:-0.044800pt;}
.ls11_c00255{letter-spacing:-0.032000pt;}
.lse_c00255{letter-spacing:-0.025600pt;}
.ls12_c00255{letter-spacing:-0.019200pt;}
.ls10_c00255{letter-spacing:-0.012800pt;}
.lsa_c00255{letter-spacing:-0.006400pt;}
.ls8_c00255{letter-spacing:0.000000pt;}
.lsc_c00255{letter-spacing:0.006400pt;}
.lsd_c00255{letter-spacing:0.012800pt;}
.ls7_c00255{letter-spacing:0.017024pt;}
.ls6_c00255{letter-spacing:0.032000pt;}
.ls0_c00255{letter-spacing:0.032064pt;}
.ls4_c00255{letter-spacing:0.048672pt;}
.lsf_c00255{letter-spacing:0.083200pt;}
.ls1_c00255{letter-spacing:0.128000pt;}
.ls5_c00255{letter-spacing:30.623040pt;}
.ls3_c00255{letter-spacing:58.048000pt;}
.ls2_c00255{letter-spacing:58.688000pt;}
.ws1_c00255{word-spacing:-17.360000pt;}
.ws0_c00255{word-spacing:-9.408672pt;}
.ws2_c00255{word-spacing:-0.272544pt;}
.wsb_c00255{word-spacing:-0.159712pt;}
.ws8_c00255{word-spacing:-0.012800pt;}
.ws6_c00255{word-spacing:-0.006400pt;}
.ws3_c00255{word-spacing:0.000000pt;}
.wsa_c00255{word-spacing:0.006400pt;}
.ws7_c00255{word-spacing:0.057600pt;}
.ws9_c00255{word-spacing:0.076800pt;}
.ws12_c00255{word-spacing:1.235200pt;}
.ws13_c00255{word-spacing:1.292800pt;}
.ws19_c00255{word-spacing:1.305600pt;}
.ws15_c00255{word-spacing:2.240000pt;}
.ws17_c00255{word-spacing:2.278400pt;}
.ws18_c00255{word-spacing:2.291200pt;}
.ws14_c00255{word-spacing:2.297600pt;}
.wsc_c00255{word-spacing:3.846400pt;}
.ws5_c00255{word-spacing:4.800000pt;}
.ws11_c00255{word-spacing:5.120000pt;}
.ws16_c00255{word-spacing:5.171200pt;}
.ws1a_c00255{word-spacing:8.377600pt;}
.ws1b_c00255{word-spacing:8.473600pt;}
.wse_c00255{word-spacing:13.728000pt;}
.wsd_c00255{word-spacing:13.811200pt;}
.ws10_c00255{word-spacing:15.283200pt;}
.wsf_c00255{word-spacing:15.372800pt;}
.ws1c_c00255{word-spacing:24.019200pt;}
.ws4_c00255{word-spacing:26.534400pt;}
._0_c00255{margin-left:-0.908480pt;}
._1_c00255{width:1.024000pt;}
.fs3_c00255{font-size:37.440000pt;}
.fs5_c00255{font-size:42.560000pt;}
.fs2_c00255{font-size:48.000000pt;}
.fs0_c00255{font-size:53.440000pt;}
.fs1_c00255{font-size:64.000000pt;}
.fs4_c00255{font-size:69.440000pt;}
.y0_c00255{bottom:0.000000pt;}
.y3_c00255{bottom:51.067067pt;}
.y4_c00255{bottom:54.587067pt;}
.y20_c00255{bottom:101.067067pt;}
.y1f_c00255{bottom:114.587067pt;}
.y1e_c00255{bottom:132.987067pt;}
.y1d_c00255{bottom:151.387067pt;}
.y1c_c00255{bottom:212.027067pt;}
.y1b_c00255{bottom:242.587067pt;}
.y1a_c00255{bottom:273.227067pt;}
.y19_c00255{bottom:311.787067pt;}
.y18_c00255{bottom:342.427067pt;}
.y17_c00255{bottom:372.987067pt;}
.y16_c00255{bottom:403.627067pt;}
.y15_c00255{bottom:442.187067pt;}
.y14_c00255{bottom:472.827067pt;}
.y13_c00255{bottom:503.387067pt;}
.y12_c00255{bottom:542.027067pt;}
.y11_c00255{bottom:572.587067pt;}
.y10_c00255{bottom:603.227067pt;}
.yf_c00255{bottom:633.787067pt;}
.ye_c00255{bottom:673.867067pt;}
.yd_c00255{bottom:721.547067pt;}
.yc_c00255{bottom:760.187067pt;}
.yb_c00255{bottom:798.747067pt;}
.ya_c00255{bottom:837.387067pt;}
.y9_c00255{bottom:875.947067pt;}
.y8_c00255{bottom:914.587067pt;}
.y7_c00255{bottom:945.147067pt;}
.y6_c00255{bottom:983.787067pt;}
.y5_c00255{bottom:1014.347067pt;}
.y2_c00255{bottom:1043.387067pt;}
.y1_c00255{bottom:1063.867067pt;}
.h2_c00255{height:42.656250pt;}
.h7_c00255{height:44.388750pt;}
.h1_c00255{height:44.724687pt;}
.h3_c00255{height:50.062500pt;}
.h5_c00255{height:53.562500pt;}
.h4_c00255{height:66.750000pt;}
.h6_c00255{height:72.423750pt;}
.h0_c00255{height:1122.666667pt;}
.w1_c00255{width:793.333333pt;}
.w0_c00255{width:793.626667pt;}
.x0_c00255{left:0.000000pt;}
.x2_c00255{left:113.440000pt;}
.x5_c00255{left:137.280000pt;}
.x6_c00255{left:161.040000pt;}
.x4_c00255{left:386.880000pt;}
.x3_c00255{left:396.880000pt;}
.x1_c00255{left:436.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_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_4d9188b80e727f3cf81f1c7f.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.100098;font-style:normal;font-weight:normal;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_61a46fbb51e04bbc503efb07.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;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_c00256;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00256;src:url('chunks/assets/font_3945e4377a9df80c0dc8adac.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00256;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00256{font-family:ff5_c00256;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_c00256;src:url('chunks/assets/font_82f89108c37e5efb00b76ee2.woff2')format("woff");}.ff6_c00256{font-family:ff6_c00256;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_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);}
.v3_c00256{vertical-align:-15.120600px;}
.v0_c00256{vertical-align:0.000000px;}
.v1_c00256{vertical-align:15.840000px;}
.v2_c00256{vertical-align:29.880000px;}
.ls24_c00256{letter-spacing:-0.192384px;}
.ls18_c00256{letter-spacing:-0.151200px;}
.ls1c_c00256{letter-spacing:-0.043200px;}
.ls22_c00256{letter-spacing:-0.036072px;}
.ls1d_c00256{letter-spacing:-0.031248px;}
.ls20_c00256{letter-spacing:-0.030060px;}
.ls19_c00256{letter-spacing:-0.028800px;}
.ls1e_c00256{letter-spacing:-0.021600px;}
.ls28_c00256{letter-spacing:-0.019440px;}
.ls21_c00256{letter-spacing:-0.018036px;}
.ls1b_c00256{letter-spacing:-0.014400px;}
.ls23_c00256{letter-spacing:-0.012024px;}
.ls27_c00256{letter-spacing:-0.011664px;}
.ls25_c00256{letter-spacing:-0.007200px;}
.ls1f_c00256{letter-spacing:-0.006012px;}
.ls29_c00256{letter-spacing:-0.003888px;}
.ls17_c00256{letter-spacing:0.000000px;}
.ls4_c00256{letter-spacing:0.007200px;}
.ls15_c00256{letter-spacing:0.009576px;}
.lsf_c00256{letter-spacing:0.014364px;}
.ls6_c00256{letter-spacing:0.021600px;}
.ls2_c00256{letter-spacing:0.028800px;}
.ls16_c00256{letter-spacing:0.033516px;}
.lsb_c00256{letter-spacing:0.036072px;}
.ls11_c00256{letter-spacing:0.038304px;}
.ls9_c00256{letter-spacing:0.042084px;}
.ls12_c00256{letter-spacing:0.043092px;}
.ls0_c00256{letter-spacing:0.048096px;}
.ls26_c00256{letter-spacing:0.050400px;}
.lsa_c00256{letter-spacing:0.054108px;}
.ls3_c00256{letter-spacing:0.054756px;}
.ls14_c00256{letter-spacing:0.057456px;}
.ls8_c00256{letter-spacing:0.060120px;}
.lse_c00256{letter-spacing:0.086400px;}
.ls1a_c00256{letter-spacing:0.093600px;}
.ls10_c00256{letter-spacing:0.104040px;}
.lsc_c00256{letter-spacing:0.136080px;}
.ls13_c00256{letter-spacing:0.378720px;}
.lsd_c00256{letter-spacing:2.430000px;}
.ls5_c00256{letter-spacing:34.450920px;}
.ls7_c00256{letter-spacing:72.204120px;}
.ls1_c00256{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00256{word-spacing:-19.530000px;}
.ws1_c00256{word-spacing:-17.956800px;}
.ws3_c00256{word-spacing:-15.030000px;}
.ws6_c00256{word-spacing:-10.804752px;}
.ws5_c00256{word-spacing:-10.789200px;}
.ws0_c00256{word-spacing:-10.584756px;}
.ws4_c00256{word-spacing:-9.856080px;}
.ws10_c00256{word-spacing:-0.101556px;}
.ws3a_c00256{word-spacing:-0.038304px;}
.wsb_c00256{word-spacing:-0.028800px;}
.ws39_c00256{word-spacing:-0.023940px;}
.ws38_c00256{word-spacing:-0.019152px;}
.ws3b_c00256{word-spacing:-0.014364px;}
.ws35_c00256{word-spacing:-0.007200px;}
.ws8_c00256{word-spacing:0.000000px;}
.ws36_c00256{word-spacing:0.004788px;}
.ws37_c00256{word-spacing:0.009576px;}
.ws1c_c00256{word-spacing:0.030060px;}
.ws23_c00256{word-spacing:0.036072px;}
.ws7_c00256{word-spacing:0.042084px;}
.ws28_c00256{word-spacing:0.054108px;}
.ws1d_c00256{word-spacing:0.096192px;}
.ws1b_c00256{word-spacing:0.194400px;}
.ws32_c00256{word-spacing:0.784800px;}
.ws31_c00256{word-spacing:0.799200px;}
.ws20_c00256{word-spacing:0.817632px;}
.ws21_c00256{word-spacing:0.847692px;}
.ws26_c00256{word-spacing:1.130256px;}
.ws27_c00256{word-spacing:1.208412px;}
.ws2a_c00256{word-spacing:2.433600px;}
.ws29_c00256{word-spacing:2.541600px;}
.ws22_c00256{word-spacing:2.567124px;}
.ws15_c00256{word-spacing:3.240000px;}
.ws16_c00256{word-spacing:3.312000px;}
.ws18_c00256{word-spacing:3.556800px;}
.wsa_c00256{word-spacing:3.571200px;}
.wsc_c00256{word-spacing:3.600000px;}
.ws17_c00256{word-spacing:3.614400px;}
.ws9_c00256{word-spacing:3.628800px;}
.wsd_c00256{word-spacing:3.700800px;}
.ws1f_c00256{word-spacing:4.070124px;}
.ws1e_c00256{word-spacing:4.082148px;}
.ws30_c00256{word-spacing:5.349600px;}
.ws2e_c00256{word-spacing:5.464800px;}
.ws2f_c00256{word-spacing:5.493600px;}
.ws2b_c00256{word-spacing:5.774400px;}
.ws14_c00256{word-spacing:6.148800px;}
.ws13_c00256{word-spacing:6.170400px;}
.ws2d_c00256{word-spacing:8.280000px;}
.ws2c_c00256{word-spacing:8.301600px;}
.wse_c00256{word-spacing:11.512800px;}
.wsf_c00256{word-spacing:11.584800px;}
.ws25_c00256{word-spacing:12.336624px;}
.ws24_c00256{word-spacing:12.342636px;}
.ws19_c00256{word-spacing:14.738400px;}
.ws1a_c00256{word-spacing:14.760000px;}
.ws34_c00256{word-spacing:19.094400px;}
.ws12_c00256{word-spacing:19.101600px;}
.ws33_c00256{word-spacing:19.159200px;}
.ws11_c00256{word-spacing:19.310400px;}
._0_c00256{margin-left:-1.322640px;}
._1_c00256{width:1.303200px;}
.fc0_c00256{color:rgb(0,0,0);}
.fs5_c00256{font-size:38.880000px;}
.fs3_c00256{font-size:42.120000px;}
.fs6_c00256{font-size:47.880000px;}
.fs1_c00256{font-size:54.000000px;}
.fs0_c00256{font-size:60.120000px;}
.fs2_c00256{font-size:72.000000px;}
.fs4_c00256{font-size:78.120000px;}
.y0_c00256{bottom:0.000000px;}
.y3_c00256{bottom:57.450450px;}
.y26_c00256{bottom:112.264230px;}
.y25_c00256{bottom:130.532250px;}
.y24_c00256{bottom:148.798470px;}
.y23_c00256{bottom:167.160450px;}
.y22_c00256{bottom:182.370450px;}
.y21_c00256{bottom:202.980450px;}
.y20_c00256{bottom:223.680600px;}
.y1f_c00256{bottom:268.230600px;}
.y1e_c00256{bottom:302.610600px;}
.y1d_c00256{bottom:337.080600px;}
.y1c_c00256{bottom:371.460600px;}
.y1b_c00256{bottom:405.930600px;}
.y1a_c00256{bottom:440.310600px;}
.y19_c00256{bottom:474.780600px;}
.y18_c00256{bottom:512.206590px;}
.y17_c00256{bottom:529.130370px;}
.y16_c00256{bottom:545.963970px;}
.y15_c00256{bottom:571.875690px;}
.y14_c00256{bottom:588.709290px;}
.y13_c00256{bottom:605.633070px;}
.y12_c00256{bottom:622.466670px;}
.y11_c00256{bottom:639.390450px;}
.y10_c00256{bottom:680.160450px;}
.yf_c00256{bottom:714.630450px;}
.ye_c00256{bottom:749.010450px;}
.yd_c00256{bottom:792.480450px;}
.yc_c00256{bottom:826.860450px;}
.yb_c00256{bottom:861.330450px;}
.ya_c00256{bottom:895.710450px;}
.y9_c00256{bottom:940.800450px;}
.y8_c00256{bottom:994.440450px;}
.y7_c00256{bottom:1028.910450px;}
.y6_c00256{bottom:1063.290450px;}
.y5_c00256{bottom:1106.760450px;}
.y4_c00256{bottom:1141.140450px;}
.y2_c00256{bottom:1177.860450px;}
.y1_c00256{bottom:1196.850450px;}
.ha_c00256{height:47.988281px;}
.hb_c00256{height:49.937344px;}
.h1_c00256{height:50.315273px;}
.h8_c00256{height:50.370713px;}
.h2_c00256{height:56.320312px;}
.h4_c00256{height:60.257812px;}
.h7_c00256{height:62.703281px;}
.h9_c00256{height:65.130220px;}
.h5_c00256{height:65.130820px;}
.h3_c00256{height:72.160312px;}
.h6_c00256{height:81.476719px;}
.h0_c00256{height:1263.000000px;}
.w1_c00256{width:892.500000px;}
.w0_c00256{width:892.830000px;}
.x0_c00256{left:0.000000px;}
.x1_c00256{left:127.620000px;}
.x2_c00256{left:180.810000px;}
.x3_c00256{left:207.533340px;}
@media print{
.v3_c00256{vertical-align:-13.440533pt;}
.v0_c00256{vertical-align:0.000000pt;}
.v1_c00256{vertical-align:14.080000pt;}
.v2_c00256{vertical-align:26.560000pt;}
.ls24_c00256{letter-spacing:-0.171008pt;}
.ls18_c00256{letter-spacing:-0.134400pt;}
.ls1c_c00256{letter-spacing:-0.038400pt;}
.ls22_c00256{letter-spacing:-0.032064pt;}
.ls1d_c00256{letter-spacing:-0.027776pt;}
.ls20_c00256{letter-spacing:-0.026720pt;}
.ls19_c00256{letter-spacing:-0.025600pt;}
.ls1e_c00256{letter-spacing:-0.019200pt;}
.ls28_c00256{letter-spacing:-0.017280pt;}
.ls21_c00256{letter-spacing:-0.016032pt;}
.ls1b_c00256{letter-spacing:-0.012800pt;}
.ls23_c00256{letter-spacing:-0.010688pt;}
.ls27_c00256{letter-spacing:-0.010368pt;}
.ls25_c00256{letter-spacing:-0.006400pt;}
.ls1f_c00256{letter-spacing:-0.005344pt;}
.ls29_c00256{letter-spacing:-0.003456pt;}
.ls17_c00256{letter-spacing:0.000000pt;}
.ls4_c00256{letter-spacing:0.006400pt;}
.ls15_c00256{letter-spacing:0.008512pt;}
.lsf_c00256{letter-spacing:0.012768pt;}
.ls6_c00256{letter-spacing:0.019200pt;}
.ls2_c00256{letter-spacing:0.025600pt;}
.ls16_c00256{letter-spacing:0.029792pt;}
.lsb_c00256{letter-spacing:0.032064pt;}
.ls11_c00256{letter-spacing:0.034048pt;}
.ls9_c00256{letter-spacing:0.037408pt;}
.ls12_c00256{letter-spacing:0.038304pt;}
.ls0_c00256{letter-spacing:0.042752pt;}
.ls26_c00256{letter-spacing:0.044800pt;}
.lsa_c00256{letter-spacing:0.048096pt;}
.ls3_c00256{letter-spacing:0.048672pt;}
.ls14_c00256{letter-spacing:0.051072pt;}
.ls8_c00256{letter-spacing:0.053440pt;}
.lse_c00256{letter-spacing:0.076800pt;}
.ls1a_c00256{letter-spacing:0.083200pt;}
.ls10_c00256{letter-spacing:0.092480pt;}
.lsc_c00256{letter-spacing:0.120960pt;}
.ls13_c00256{letter-spacing:0.336640pt;}
.lsd_c00256{letter-spacing:2.160000pt;}
.ls5_c00256{letter-spacing:30.623040pt;}
.ls7_c00256{letter-spacing:64.181440pt;}
.ls1_c00256{letter-spacing:1077.440000pt;}
.ws2_c00256{word-spacing:-17.360000pt;}
.ws1_c00256{word-spacing:-15.961600pt;}
.ws3_c00256{word-spacing:-13.360000pt;}
.ws6_c00256{word-spacing:-9.604224pt;}
.ws5_c00256{word-spacing:-9.590400pt;}
.ws0_c00256{word-spacing:-9.408672pt;}
.ws4_c00256{word-spacing:-8.760960pt;}
.ws10_c00256{word-spacing:-0.090272pt;}
.ws3a_c00256{word-spacing:-0.034048pt;}
.wsb_c00256{word-spacing:-0.025600pt;}
.ws39_c00256{word-spacing:-0.021280pt;}
.ws38_c00256{word-spacing:-0.017024pt;}
.ws3b_c00256{word-spacing:-0.012768pt;}
.ws35_c00256{word-spacing:-0.006400pt;}
.ws8_c00256{word-spacing:0.000000pt;}
.ws36_c00256{word-spacing:0.004256pt;}
.ws37_c00256{word-spacing:0.008512pt;}
.ws1c_c00256{word-spacing:0.026720pt;}
.ws23_c00256{word-spacing:0.032064pt;}
.ws7_c00256{word-spacing:0.037408pt;}
.ws28_c00256{word-spacing:0.048096pt;}
.ws1d_c00256{word-spacing:0.085504pt;}
.ws1b_c00256{word-spacing:0.172800pt;}
.ws32_c00256{word-spacing:0.697600pt;}
.ws31_c00256{word-spacing:0.710400pt;}
.ws20_c00256{word-spacing:0.726784pt;}
.ws21_c00256{word-spacing:0.753504pt;}
.ws26_c00256{word-spacing:1.004672pt;}
.ws27_c00256{word-spacing:1.074144pt;}
.ws2a_c00256{word-spacing:2.163200pt;}
.ws29_c00256{word-spacing:2.259200pt;}
.ws22_c00256{word-spacing:2.281888pt;}
.ws15_c00256{word-spacing:2.880000pt;}
.ws16_c00256{word-spacing:2.944000pt;}
.ws18_c00256{word-spacing:3.161600pt;}
.wsa_c00256{word-spacing:3.174400pt;}
.wsc_c00256{word-spacing:3.200000pt;}
.ws17_c00256{word-spacing:3.212800pt;}
.ws9_c00256{word-spacing:3.225600pt;}
.wsd_c00256{word-spacing:3.289600pt;}
.ws1f_c00256{word-spacing:3.617888pt;}
.ws1e_c00256{word-spacing:3.628576pt;}
.ws30_c00256{word-spacing:4.755200pt;}
.ws2e_c00256{word-spacing:4.857600pt;}
.ws2f_c00256{word-spacing:4.883200pt;}
.ws2b_c00256{word-spacing:5.132800pt;}
.ws14_c00256{word-spacing:5.465600pt;}
.ws13_c00256{word-spacing:5.484800pt;}
.ws2d_c00256{word-spacing:7.360000pt;}
.ws2c_c00256{word-spacing:7.379200pt;}
.wse_c00256{word-spacing:10.233600pt;}
.wsf_c00256{word-spacing:10.297600pt;}
.ws25_c00256{word-spacing:10.965888pt;}
.ws24_c00256{word-spacing:10.971232pt;}
.ws19_c00256{word-spacing:13.100800pt;}
.ws1a_c00256{word-spacing:13.120000pt;}
.ws34_c00256{word-spacing:16.972800pt;}
.ws12_c00256{word-spacing:16.979200pt;}
.ws33_c00256{word-spacing:17.030400pt;}
.ws11_c00256{word-spacing:17.164800pt;}
._0_c00256{margin-left:-1.175680pt;}
._1_c00256{width:1.158400pt;}
.fs5_c00256{font-size:34.560000pt;}
.fs3_c00256{font-size:37.440000pt;}
.fs6_c00256{font-size:42.560000pt;}
.fs1_c00256{font-size:48.000000pt;}
.fs0_c00256{font-size:53.440000pt;}
.fs2_c00256{font-size:64.000000pt;}
.fs4_c00256{font-size:69.440000pt;}
.y0_c00256{bottom:0.000000pt;}
.y3_c00256{bottom:51.067067pt;}
.y26_c00256{bottom:99.790427pt;}
.y25_c00256{bottom:116.028667pt;}
.y24_c00256{bottom:132.265307pt;}
.y23_c00256{bottom:148.587067pt;}
.y22_c00256{bottom:162.107067pt;}
.y21_c00256{bottom:180.427067pt;}
.y20_c00256{bottom:198.827200pt;}
.y1f_c00256{bottom:238.427200pt;}
.y1e_c00256{bottom:268.987200pt;}
.y1d_c00256{bottom:299.627200pt;}
.y1c_c00256{bottom:330.187200pt;}
.y1b_c00256{bottom:360.827200pt;}
.y1a_c00256{bottom:391.387200pt;}
.y19_c00256{bottom:422.027200pt;}
.y18_c00256{bottom:455.294747pt;}
.y17_c00256{bottom:470.338107pt;}
.y16_c00256{bottom:485.301307pt;}
.y15_c00256{bottom:508.333947pt;}
.y14_c00256{bottom:523.297147pt;}
.y13_c00256{bottom:538.340507pt;}
.y12_c00256{bottom:553.303707pt;}
.y11_c00256{bottom:568.347067pt;}
.y10_c00256{bottom:604.587067pt;}
.yf_c00256{bottom:635.227067pt;}
.ye_c00256{bottom:665.787067pt;}
.yd_c00256{bottom:704.427067pt;}
.yc_c00256{bottom:734.987067pt;}
.yb_c00256{bottom:765.627067pt;}
.ya_c00256{bottom:796.187067pt;}
.y9_c00256{bottom:836.267067pt;}
.y8_c00256{bottom:883.947067pt;}
.y7_c00256{bottom:914.587067pt;}
.y6_c00256{bottom:945.147067pt;}
.y5_c00256{bottom:983.787067pt;}
.y4_c00256{bottom:1014.347067pt;}
.y2_c00256{bottom:1046.987067pt;}
.y1_c00256{bottom:1063.867067pt;}
.ha_c00256{height:42.656250pt;}
.hb_c00256{height:44.388750pt;}
.h1_c00256{height:44.724687pt;}
.h8_c00256{height:44.773967pt;}
.h2_c00256{height:50.062500pt;}
.h4_c00256{height:53.562500pt;}
.h7_c00256{height:55.736250pt;}
.h9_c00256{height:57.893529pt;}
.h5_c00256{height:57.894063pt;}
.h3_c00256{height:64.142500pt;}
.h6_c00256{height:72.423750pt;}
.h0_c00256{height:1122.666667pt;}
.w1_c00256{width:793.333333pt;}
.w0_c00256{width:793.626667pt;}
.x0_c00256{left:0.000000pt;}
.x1_c00256{left:113.440000pt;}
.x2_c00256{left:160.720000pt;}
.x3_c00256{left:184.474080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9bce6aae7dae2d5cd649151a.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;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_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;}
.v1_c00257{vertical-align:29.880000px;}
.lsa_c00257{letter-spacing:-0.151200px;}
.ls10_c00257{letter-spacing:-0.036000px;}
.lsc_c00257{letter-spacing:-0.028800px;}
.lse_c00257{letter-spacing:-0.021600px;}
.lsb_c00257{letter-spacing:-0.014400px;}
.lsd_c00257{letter-spacing:-0.007200px;}
.ls9_c00257{letter-spacing:0.000000px;}
.ls3_c00257{letter-spacing:0.007200px;}
.ls1_c00257{letter-spacing:0.014400px;}
.ls7_c00257{letter-spacing:0.023940px;}
.ls8_c00257{letter-spacing:0.028728px;}
.ls2_c00257{letter-spacing:0.028800px;}
.ls11_c00257{letter-spacing:0.036000px;}
.ls0_c00257{letter-spacing:0.036072px;}
.ls4_c00257{letter-spacing:0.054756px;}
.lsf_c00257{letter-spacing:0.093600px;}
.ls5_c00257{letter-spacing:0.144000px;}
.ls6_c00257{letter-spacing:65.304000px;}
.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;}
}
.ws1_c00257{word-spacing:-18.007200px;}
.ws0_c00257{word-spacing:-10.584756px;}
.ws2_c00257{word-spacing:-0.306612px;}
.wsf_c00257{word-spacing:-0.093600px;}
.ws2a_c00257{word-spacing:-0.009576px;}
.ws6_c00257{word-spacing:-0.007200px;}
.ws29_c00257{word-spacing:-0.004788px;}
.ws3_c00257{word-spacing:0.000000px;}
.wse_c00257{word-spacing:0.007200px;}
.ws19_c00257{word-spacing:0.014400px;}
.ws7_c00257{word-spacing:0.028800px;}
.ws20_c00257{word-spacing:0.360000px;}
.ws27_c00257{word-spacing:0.748800px;}
.ws26_c00257{word-spacing:0.806400px;}
.ws8_c00257{word-spacing:2.152800px;}
.ws24_c00257{word-spacing:2.872800px;}
.ws23_c00257{word-spacing:2.908800px;}
.ws1c_c00257{word-spacing:3.182400px;}
.ws1d_c00257{word-spacing:3.189600px;}
.ws22_c00257{word-spacing:3.261600px;}
.ws21_c00257{word-spacing:3.276000px;}
.ws18_c00257{word-spacing:3.319200px;}
.ws17_c00257{word-spacing:3.348000px;}
.ws1e_c00257{word-spacing:3.643200px;}
.ws1f_c00257{word-spacing:3.888000px;}
.ws5_c00257{word-spacing:3.931200px;}
.ws4_c00257{word-spacing:3.945600px;}
.ws14_c00257{word-spacing:3.960000px;}
.ws9_c00257{word-spacing:3.974400px;}
.ws28_c00257{word-spacing:3.981600px;}
.wsa_c00257{word-spacing:3.988800px;}
.ws13_c00257{word-spacing:3.996000px;}
.ws12_c00257{word-spacing:6.091200px;}
.ws11_c00257{word-spacing:6.148800px;}
.ws25_c00257{word-spacing:6.480000px;}
.ws10_c00257{word-spacing:6.825600px;}
.wsd_c00257{word-spacing:7.243200px;}
.ws1a_c00257{word-spacing:13.312800px;}
.ws1b_c00257{word-spacing:13.341600px;}
.ws16_c00257{word-spacing:19.080000px;}
.ws15_c00257{word-spacing:19.087200px;}
.wsb_c00257{word-spacing:21.247200px;}
.wsc_c00257{word-spacing:21.290400px;}
._0_c00257{margin-left:-1.022040px;}
._1_c00257{width:1.296000px;}
.fc0_c00257{color:rgb(0,0,0);}
.fs3_c00257{font-size:42.120000px;}
.fs4_c00257{font-size:47.880000px;}
.fs2_c00257{font-size:54.000000px;}
.fs0_c00257{font-size:60.120000px;}
.fs1_c00257{font-size:72.000000px;}
.y0_c00257{bottom:0.000000px;}
.y3_c00257{bottom:57.450450px;}
.y4_c00257{bottom:61.410450px;}
.y22_c00257{bottom:113.698470px;}
.y21_c00257{bottom:132.060450px;}
.y20_c00257{bottom:147.270450px;}
.y1f_c00257{bottom:167.970450px;}
.y1e_c00257{bottom:188.670600px;}
.y1d_c00257{bottom:278.940600px;}
.y1c_c00257{bottom:313.410600px;}
.y1b_c00257{bottom:347.790600px;}
.y1a_c00257{bottom:382.260600px;}
.y19_c00257{bottom:416.640600px;}
.y18_c00257{bottom:460.110450px;}
.y17_c00257{bottom:494.490450px;}
.y16_c00257{bottom:528.960450px;}
.y15_c00257{bottom:563.340450px;}
.y14_c00257{bottom:597.810450px;}
.y13_c00257{bottom:641.190450px;}
.y12_c00257{bottom:675.660450px;}
.y11_c00257{bottom:719.040450px;}
.y10_c00257{bottom:753.510450px;}
.yf_c00257{bottom:787.890450px;}
.ye_c00257{bottom:822.360450px;}
.yd_c00257{bottom:856.740450px;}
.yc_c00257{bottom:891.210450px;}
.yb_c00257{bottom:934.590450px;}
.ya_c00257{bottom:969.060450px;}
.y9_c00257{bottom:1003.440450px;}
.y8_c00257{bottom:1037.910450px;}
.y7_c00257{bottom:1072.290450px;}
.y6_c00257{bottom:1106.760450px;}
.y5_c00257{bottom:1141.140450px;}
.y2_c00257{bottom:1173.810450px;}
.y1_c00257{bottom:1196.850450px;}
.h2_c00257{height:47.988281px;}
.h7_c00257{height:49.937344px;}
.h1_c00257{height:50.315273px;}
.h3_c00257{height:56.320312px;}
.h4_c00257{height:60.257812px;}
.h5_c00257{height:65.130820px;}
.h6_c00257{height:75.093750px;}
.h0_c00257{height:1263.000000px;}
.w1_c00257{width:892.500000px;}
.w0_c00257{width:892.830000px;}
.x0_c00257{left:0.000000px;}
.x2_c00257{left:127.620000px;}
.x5_c00257{left:180.720000px;}
.x6_c00257{left:207.720000px;}
.x4_c00257{left:435.240000px;}
.x3_c00257{left:446.490000px;}
.x1_c00257{left:490.770000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.v1_c00257{vertical-align:26.560000pt;}
.lsa_c00257{letter-spacing:-0.134400pt;}
.ls10_c00257{letter-spacing:-0.032000pt;}
.lsc_c00257{letter-spacing:-0.025600pt;}
.lse_c00257{letter-spacing:-0.019200pt;}
.lsb_c00257{letter-spacing:-0.012800pt;}
.lsd_c00257{letter-spacing:-0.006400pt;}
.ls9_c00257{letter-spacing:0.000000pt;}
.ls3_c00257{letter-spacing:0.006400pt;}
.ls1_c00257{letter-spacing:0.012800pt;}
.ls7_c00257{letter-spacing:0.021280pt;}
.ls8_c00257{letter-spacing:0.025536pt;}
.ls2_c00257{letter-spacing:0.025600pt;}
.ls11_c00257{letter-spacing:0.032000pt;}
.ls0_c00257{letter-spacing:0.032064pt;}
.ls4_c00257{letter-spacing:0.048672pt;}
.lsf_c00257{letter-spacing:0.083200pt;}
.ls5_c00257{letter-spacing:0.128000pt;}
.ls6_c00257{letter-spacing:58.048000pt;}
.ws1_c00257{word-spacing:-16.006400pt;}
.ws0_c00257{word-spacing:-9.408672pt;}
.ws2_c00257{word-spacing:-0.272544pt;}
.wsf_c00257{word-spacing:-0.083200pt;}
.ws2a_c00257{word-spacing:-0.008512pt;}
.ws6_c00257{word-spacing:-0.006400pt;}
.ws29_c00257{word-spacing:-0.004256pt;}
.ws3_c00257{word-spacing:0.000000pt;}
.wse_c00257{word-spacing:0.006400pt;}
.ws19_c00257{word-spacing:0.012800pt;}
.ws7_c00257{word-spacing:0.025600pt;}
.ws20_c00257{word-spacing:0.320000pt;}
.ws27_c00257{word-spacing:0.665600pt;}
.ws26_c00257{word-spacing:0.716800pt;}
.ws8_c00257{word-spacing:1.913600pt;}
.ws24_c00257{word-spacing:2.553600pt;}
.ws23_c00257{word-spacing:2.585600pt;}
.ws1c_c00257{word-spacing:2.828800pt;}
.ws1d_c00257{word-spacing:2.835200pt;}
.ws22_c00257{word-spacing:2.899200pt;}
.ws21_c00257{word-spacing:2.912000pt;}
.ws18_c00257{word-spacing:2.950400pt;}
.ws17_c00257{word-spacing:2.976000pt;}
.ws1e_c00257{word-spacing:3.238400pt;}
.ws1f_c00257{word-spacing:3.456000pt;}
.ws5_c00257{word-spacing:3.494400pt;}
.ws4_c00257{word-spacing:3.507200pt;}
.ws14_c00257{word-spacing:3.520000pt;}
.ws9_c00257{word-spacing:3.532800pt;}
.ws28_c00257{word-spacing:3.539200pt;}
.wsa_c00257{word-spacing:3.545600pt;}
.ws13_c00257{word-spacing:3.552000pt;}
.ws12_c00257{word-spacing:5.414400pt;}
.ws11_c00257{word-spacing:5.465600pt;}
.ws25_c00257{word-spacing:5.760000pt;}
.ws10_c00257{word-spacing:6.067200pt;}
.wsd_c00257{word-spacing:6.438400pt;}
.ws1a_c00257{word-spacing:11.833600pt;}
.ws1b_c00257{word-spacing:11.859200pt;}
.ws16_c00257{word-spacing:16.960000pt;}
.ws15_c00257{word-spacing:16.966400pt;}
.wsb_c00257{word-spacing:18.886400pt;}
.wsc_c00257{word-spacing:18.924800pt;}
._0_c00257{margin-left:-0.908480pt;}
._1_c00257{width:1.152000pt;}
.fs3_c00257{font-size:37.440000pt;}
.fs4_c00257{font-size:42.560000pt;}
.fs2_c00257{font-size:48.000000pt;}
.fs0_c00257{font-size:53.440000pt;}
.fs1_c00257{font-size:64.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y3_c00257{bottom:51.067067pt;}
.y4_c00257{bottom:54.587067pt;}
.y22_c00257{bottom:101.065307pt;}
.y21_c00257{bottom:117.387067pt;}
.y20_c00257{bottom:130.907067pt;}
.y1f_c00257{bottom:149.307067pt;}
.y1e_c00257{bottom:167.707200pt;}
.y1d_c00257{bottom:247.947200pt;}
.y1c_c00257{bottom:278.587200pt;}
.y1b_c00257{bottom:309.147200pt;}
.y1a_c00257{bottom:339.787200pt;}
.y19_c00257{bottom:370.347200pt;}
.y18_c00257{bottom:408.987067pt;}
.y17_c00257{bottom:439.547067pt;}
.y16_c00257{bottom:470.187067pt;}
.y15_c00257{bottom:500.747067pt;}
.y14_c00257{bottom:531.387067pt;}
.y13_c00257{bottom:569.947067pt;}
.y12_c00257{bottom:600.587067pt;}
.y11_c00257{bottom:639.147067pt;}
.y10_c00257{bottom:669.787067pt;}
.yf_c00257{bottom:700.347067pt;}
.ye_c00257{bottom:730.987067pt;}
.yd_c00257{bottom:761.547067pt;}
.yc_c00257{bottom:792.187067pt;}
.yb_c00257{bottom:830.747067pt;}
.ya_c00257{bottom:861.387067pt;}
.y9_c00257{bottom:891.947067pt;}
.y8_c00257{bottom:922.587067pt;}
.y7_c00257{bottom:953.147067pt;}
.y6_c00257{bottom:983.787067pt;}
.y5_c00257{bottom:1014.347067pt;}
.y2_c00257{bottom:1043.387067pt;}
.y1_c00257{bottom:1063.867067pt;}
.h2_c00257{height:42.656250pt;}
.h7_c00257{height:44.388750pt;}
.h1_c00257{height:44.724687pt;}
.h3_c00257{height:50.062500pt;}
.h4_c00257{height:53.562500pt;}
.h5_c00257{height:57.894062pt;}
.h6_c00257{height:66.750000pt;}
.h0_c00257{height:1122.666667pt;}
.w1_c00257{width:793.333333pt;}
.w0_c00257{width:793.626667pt;}
.x0_c00257{left:0.000000pt;}
.x2_c00257{left:113.440000pt;}
.x5_c00257{left:160.640000pt;}
.x6_c00257{left:184.640000pt;}
.x4_c00257{left:386.880000pt;}
.x3_c00257{left:396.880000pt;}
.x1_c00257{left:436.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_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_ed9b5a1dd288778400ee7804.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.100098;font-style:normal;font-weight:normal;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_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;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_c00258;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00258;src:url('chunks/assets/font_41fa82f73564ea13bff883aa.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00258;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00258{font-family:ff5_c00258;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_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.v1_c00258{vertical-align:15.840000px;}
.v2_c00258{vertical-align:29.880000px;}
.lsc_c00258{letter-spacing:-0.151200px;}
.ls14_c00258{letter-spacing:-0.054684px;}
.ls11_c00258{letter-spacing:-0.050400px;}
.ls12_c00258{letter-spacing:-0.036000px;}
.ls13_c00258{letter-spacing:-0.028800px;}
.lse_c00258{letter-spacing:-0.021600px;}
.lsd_c00258{letter-spacing:-0.014400px;}
.ls10_c00258{letter-spacing:-0.007200px;}
.lsb_c00258{letter-spacing:0.000000px;}
.ls5_c00258{letter-spacing:0.007200px;}
.lsa_c00258{letter-spacing:0.023940px;}
.ls9_c00258{letter-spacing:0.028728px;}
.ls8_c00258{letter-spacing:0.028800px;}
.ls6_c00258{letter-spacing:0.031248px;}
.ls0_c00258{letter-spacing:0.048096px;}
.ls4_c00258{letter-spacing:0.054756px;}
.lsf_c00258{letter-spacing:0.093600px;}
.ls2_c00258{letter-spacing:0.144000px;}
.ls3_c00258{letter-spacing:65.304000px;}
.ls7_c00258{letter-spacing:77.260680px;}
.ls1_c00258{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00258{word-spacing:-19.561248px;}
.ws0_c00258{word-spacing:-10.584756px;}
.ws24_c00258{word-spacing:-0.086400px;}
.ws13_c00258{word-spacing:-0.039060px;}
.ws25_c00258{word-spacing:-0.009576px;}
.ws26_c00258{word-spacing:-0.004788px;}
.ws3_c00258{word-spacing:0.000000px;}
.ws23_c00258{word-spacing:0.014400px;}
.ws7_c00258{word-spacing:0.021600px;}
.ws2_c00258{word-spacing:0.042084px;}
.ws12_c00258{word-spacing:0.064800px;}
.wsb_c00258{word-spacing:0.108000px;}
.ws1a_c00258{word-spacing:0.381600px;}
.wse_c00258{word-spacing:0.432000px;}
.ws1b_c00258{word-spacing:0.468000px;}
.ws16_c00258{word-spacing:1.742400px;}
.ws17_c00258{word-spacing:1.836000px;}
.wsf_c00258{word-spacing:2.174400px;}
.ws6_c00258{word-spacing:3.614400px;}
.ws19_c00258{word-spacing:6.069600px;}
.ws18_c00258{word-spacing:6.084000px;}
.ws11_c00258{word-spacing:6.112800px;}
.ws10_c00258{word-spacing:6.285600px;}
.ws21_c00258{word-spacing:6.472800px;}
.ws20_c00258{word-spacing:6.573600px;}
.ws1e_c00258{word-spacing:7.509600px;}
.ws1f_c00258{word-spacing:7.516800px;}
.wsa_c00258{word-spacing:9.770400px;}
.ws8_c00258{word-spacing:10.807200px;}
.ws9_c00258{word-spacing:10.872000px;}
.ws22_c00258{word-spacing:14.767200px;}
.wsd_c00258{word-spacing:15.112800px;}
.wsc_c00258{word-spacing:15.141600px;}
.ws1d_c00258{word-spacing:17.251200px;}
.ws1c_c00258{word-spacing:17.280000px;}
.ws14_c00258{word-spacing:17.640000px;}
.ws15_c00258{word-spacing:17.776800px;}
.ws4_c00258{word-spacing:18.374400px;}
.ws5_c00258{word-spacing:18.403200px;}
._0_c00258{margin-left:-1.322640px;}
._1_c00258{width:1.231200px;}
.fc0_c00258{color:rgb(0,0,0);}
.fs3_c00258{font-size:42.120000px;}
.fs5_c00258{font-size:47.880000px;}
.fs1_c00258{font-size:54.000000px;}
.fs0_c00258{font-size:60.120000px;}
.fs2_c00258{font-size:72.000000px;}
.fs4_c00258{font-size:78.120000px;}
.y0_c00258{bottom:0.000000px;}
.y3_c00258{bottom:57.450450px;}
.y21_c00258{bottom:113.706030px;}
.y20_c00258{bottom:132.068010px;}
.y1f_c00258{bottom:150.334230px;}
.y1e_c00258{bottom:168.600450px;}
.y1d_c00258{bottom:183.810600px;}
.y1c_c00258{bottom:204.510600px;}
.y1b_c00258{bottom:225.210450px;}
.y1a_c00258{bottom:317.910450px;}
.y19_c00258{bottom:352.380450px;}
.y18_c00258{bottom:386.760450px;}
.y17_c00258{bottom:430.230450px;}
.y16_c00258{bottom:464.610450px;}
.y15_c00258{bottom:499.080450px;}
.y14_c00258{bottom:533.460450px;}
.y13_c00258{bottom:576.930450px;}
.y12_c00258{bottom:611.310450px;}
.y11_c00258{bottom:645.780450px;}
.y10_c00258{bottom:680.160450px;}
.yf_c00258{bottom:725.250450px;}
.ye_c00258{bottom:778.890450px;}
.yd_c00258{bottom:813.360450px;}
.yc_c00258{bottom:847.740450px;}
.yb_c00258{bottom:882.210450px;}
.ya_c00258{bottom:916.590450px;}
.y9_c00258{bottom:960.060450px;}
.y8_c00258{bottom:994.440450px;}
.y7_c00258{bottom:1028.910450px;}
.y6_c00258{bottom:1072.290450px;}
.y5_c00258{bottom:1106.760450px;}
.y4_c00258{bottom:1141.140450px;}
.y2_c00258{bottom:1177.860450px;}
.y1_c00258{bottom:1196.850450px;}
.ha_c00258{height:47.988281px;}
.h9_c00258{height:47.988881px;}
.hb_c00258{height:49.937344px;}
.h1_c00258{height:50.315273px;}
.h2_c00258{height:56.320312px;}
.h5_c00258{height:60.257812px;}
.h6_c00258{height:65.130820px;}
.h8_c00258{height:65.131420px;}
.h3_c00258{height:72.160312px;}
.h4_c00258{height:75.093750px;}
.h7_c00258{height:81.476719px;}
.h0_c00258{height:1263.000000px;}
.w1_c00258{width:892.500000px;}
.w0_c00258{width:892.830000px;}
.x0_c00258{left:0.000000px;}
.x1_c00258{left:127.620000px;}
.x2_c00258{left:180.720000px;}
.x3_c00258{left:207.720000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.v1_c00258{vertical-align:14.080000pt;}
.v2_c00258{vertical-align:26.560000pt;}
.lsc_c00258{letter-spacing:-0.134400pt;}
.ls14_c00258{letter-spacing:-0.048608pt;}
.ls11_c00258{letter-spacing:-0.044800pt;}
.ls12_c00258{letter-spacing:-0.032000pt;}
.ls13_c00258{letter-spacing:-0.025600pt;}
.lse_c00258{letter-spacing:-0.019200pt;}
.lsd_c00258{letter-spacing:-0.012800pt;}
.ls10_c00258{letter-spacing:-0.006400pt;}
.lsb_c00258{letter-spacing:0.000000pt;}
.ls5_c00258{letter-spacing:0.006400pt;}
.lsa_c00258{letter-spacing:0.021280pt;}
.ls9_c00258{letter-spacing:0.025536pt;}
.ls8_c00258{letter-spacing:0.025600pt;}
.ls6_c00258{letter-spacing:0.027776pt;}
.ls0_c00258{letter-spacing:0.042752pt;}
.ls4_c00258{letter-spacing:0.048672pt;}
.lsf_c00258{letter-spacing:0.083200pt;}
.ls2_c00258{letter-spacing:0.128000pt;}
.ls3_c00258{letter-spacing:58.048000pt;}
.ls7_c00258{letter-spacing:68.676160pt;}
.ls1_c00258{letter-spacing:1077.440000pt;}
.ws1_c00258{word-spacing:-17.387776pt;}
.ws0_c00258{word-spacing:-9.408672pt;}
.ws24_c00258{word-spacing:-0.076800pt;}
.ws13_c00258{word-spacing:-0.034720pt;}
.ws25_c00258{word-spacing:-0.008512pt;}
.ws26_c00258{word-spacing:-0.004256pt;}
.ws3_c00258{word-spacing:0.000000pt;}
.ws23_c00258{word-spacing:0.012800pt;}
.ws7_c00258{word-spacing:0.019200pt;}
.ws2_c00258{word-spacing:0.037408pt;}
.ws12_c00258{word-spacing:0.057600pt;}
.wsb_c00258{word-spacing:0.096000pt;}
.ws1a_c00258{word-spacing:0.339200pt;}
.wse_c00258{word-spacing:0.384000pt;}
.ws1b_c00258{word-spacing:0.416000pt;}
.ws16_c00258{word-spacing:1.548800pt;}
.ws17_c00258{word-spacing:1.632000pt;}
.wsf_c00258{word-spacing:1.932800pt;}
.ws6_c00258{word-spacing:3.212800pt;}
.ws19_c00258{word-spacing:5.395200pt;}
.ws18_c00258{word-spacing:5.408000pt;}
.ws11_c00258{word-spacing:5.433600pt;}
.ws10_c00258{word-spacing:5.587200pt;}
.ws21_c00258{word-spacing:5.753600pt;}
.ws20_c00258{word-spacing:5.843200pt;}
.ws1e_c00258{word-spacing:6.675200pt;}
.ws1f_c00258{word-spacing:6.681600pt;}
.wsa_c00258{word-spacing:8.684800pt;}
.ws8_c00258{word-spacing:9.606400pt;}
.ws9_c00258{word-spacing:9.664000pt;}
.ws22_c00258{word-spacing:13.126400pt;}
.wsd_c00258{word-spacing:13.433600pt;}
.wsc_c00258{word-spacing:13.459200pt;}
.ws1d_c00258{word-spacing:15.334400pt;}
.ws1c_c00258{word-spacing:15.360000pt;}
.ws14_c00258{word-spacing:15.680000pt;}
.ws15_c00258{word-spacing:15.801600pt;}
.ws4_c00258{word-spacing:16.332800pt;}
.ws5_c00258{word-spacing:16.358400pt;}
._0_c00258{margin-left:-1.175680pt;}
._1_c00258{width:1.094400pt;}
.fs3_c00258{font-size:37.440000pt;}
.fs5_c00258{font-size:42.560000pt;}
.fs1_c00258{font-size:48.000000pt;}
.fs0_c00258{font-size:53.440000pt;}
.fs2_c00258{font-size:64.000000pt;}
.fs4_c00258{font-size:69.440000pt;}
.y0_c00258{bottom:0.000000pt;}
.y3_c00258{bottom:51.067067pt;}
.y21_c00258{bottom:101.072027pt;}
.y20_c00258{bottom:117.393787pt;}
.y1f_c00258{bottom:133.630427pt;}
.y1e_c00258{bottom:149.867067pt;}
.y1d_c00258{bottom:163.387200pt;}
.y1c_c00258{bottom:181.787200pt;}
.y1b_c00258{bottom:200.187067pt;}
.y1a_c00258{bottom:282.587067pt;}
.y19_c00258{bottom:313.227067pt;}
.y18_c00258{bottom:343.787067pt;}
.y17_c00258{bottom:382.427067pt;}
.y16_c00258{bottom:412.987067pt;}
.y15_c00258{bottom:443.627067pt;}
.y14_c00258{bottom:474.187067pt;}
.y13_c00258{bottom:512.827067pt;}
.y12_c00258{bottom:543.387067pt;}
.y11_c00258{bottom:574.027067pt;}
.y10_c00258{bottom:604.587067pt;}
.yf_c00258{bottom:644.667067pt;}
.ye_c00258{bottom:692.347067pt;}
.yd_c00258{bottom:722.987067pt;}
.yc_c00258{bottom:753.547067pt;}
.yb_c00258{bottom:784.187067pt;}
.ya_c00258{bottom:814.747067pt;}
.y9_c00258{bottom:853.387067pt;}
.y8_c00258{bottom:883.947067pt;}
.y7_c00258{bottom:914.587067pt;}
.y6_c00258{bottom:953.147067pt;}
.y5_c00258{bottom:983.787067pt;}
.y4_c00258{bottom:1014.347067pt;}
.y2_c00258{bottom:1046.987067pt;}
.y1_c00258{bottom:1063.867067pt;}
.ha_c00258{height:42.656250pt;}
.h9_c00258{height:42.656783pt;}
.hb_c00258{height:44.388750pt;}
.h1_c00258{height:44.724687pt;}
.h2_c00258{height:50.062500pt;}
.h5_c00258{height:53.562500pt;}
.h6_c00258{height:57.894062pt;}
.h8_c00258{height:57.894596pt;}
.h3_c00258{height:64.142500pt;}
.h4_c00258{height:66.750000pt;}
.h7_c00258{height:72.423750pt;}
.h0_c00258{height:1122.666667pt;}
.w1_c00258{width:793.333333pt;}
.w0_c00258{width:793.626667pt;}
.x0_c00258{left:0.000000pt;}
.x1_c00258{left:113.440000pt;}
.x2_c00258{left:160.640000pt;}
.x3_c00258{left:184.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_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_c1c0ffd96faa4f404509213e.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00259;src:url('chunks/assets/font_f3513f29d2f8a0dac58faeb3.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00259;src:url('chunks/assets/font_15abc08c151fec1633bb20bf.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00259;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00259{font-family:ff5_c00259;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_c00259;src:url('chunks/assets/font_fe6640424842bedf98bfa51b.woff2')format("woff");}.ff6_c00259{font-family:ff6_c00259;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_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;}
.v1_c00259{vertical-align:29.880000px;}
.ls12_c00259{letter-spacing:-0.151200px;}
.ls17_c00259{letter-spacing:-0.108000px;}
.ls14_c00259{letter-spacing:-0.036000px;}
.ls19_c00259{letter-spacing:-0.028800px;}
.ls16_c00259{letter-spacing:-0.021600px;}
.ls15_c00259{letter-spacing:-0.014400px;}
.ls1a_c00259{letter-spacing:-0.007776px;}
.ls13_c00259{letter-spacing:-0.007200px;}
.ls1b_c00259{letter-spacing:-0.003888px;}
.ls11_c00259{letter-spacing:0.000000px;}
.ls3_c00259{letter-spacing:0.007200px;}
.lsd_c00259{letter-spacing:0.014364px;}
.ls5_c00259{letter-spacing:0.014400px;}
.ls8_c00259{letter-spacing:0.015624px;}
.lsc_c00259{letter-spacing:0.019152px;}
.ls4_c00259{letter-spacing:0.021600px;}
.ls10_c00259{letter-spacing:0.023940px;}
.lsa_c00259{letter-spacing:0.028728px;}
.ls2_c00259{letter-spacing:0.028800px;}
.ls6_c00259{letter-spacing:0.031248px;}
.ls9_c00259{letter-spacing:0.036000px;}
.ls0_c00259{letter-spacing:0.036072px;}
.lsb_c00259{letter-spacing:0.038304px;}
.ls1_c00259{letter-spacing:0.054756px;}
.ls18_c00259{letter-spacing:0.093600px;}
.lse_c00259{letter-spacing:0.189360px;}
.lsf_c00259{letter-spacing:0.351360px;}
.ls1c_c00259{letter-spacing:0.353808px;}
.ls7_c00259{letter-spacing:77.260680px;}
.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;}
}
.ws1_c00259{word-spacing:-19.561248px;}
.ws2_c00259{word-spacing:-13.310640px;}
.ws3_c00259{word-spacing:-11.162448px;}
.ws0_c00259{word-spacing:-10.584756px;}
.ws4_c00259{word-spacing:-0.306612px;}
.ws18_c00259{word-spacing:-0.109368px;}
.wse_c00259{word-spacing:-0.093600px;}
.ws31_c00259{word-spacing:-0.019152px;}
.ws15_c00259{word-spacing:-0.014400px;}
.ws2f_c00259{word-spacing:-0.009576px;}
.wsd_c00259{word-spacing:-0.007200px;}
.ws33_c00259{word-spacing:-0.004788px;}
.ws5_c00259{word-spacing:0.000000px;}
.ws32_c00259{word-spacing:0.004788px;}
.ws2d_c00259{word-spacing:0.028800px;}
.ws2e_c00259{word-spacing:0.036000px;}
.ws17_c00259{word-spacing:0.072000px;}
.ws16_c00259{word-spacing:0.093600px;}
.ws1e_c00259{word-spacing:0.396000px;}
.ws1d_c00259{word-spacing:0.410400px;}
.ws30_c00259{word-spacing:1.790712px;}
.ws1c_c00259{word-spacing:2.484000px;}
.ws1b_c00259{word-spacing:2.541600px;}
.ws7_c00259{word-spacing:2.556000px;}
.ws8_c00259{word-spacing:2.577600px;}
.ws20_c00259{word-spacing:2.836800px;}
.ws29_c00259{word-spacing:2.844000px;}
.ws1f_c00259{word-spacing:2.887200px;}
.ws28_c00259{word-spacing:2.959200px;}
.ws14_c00259{word-spacing:5.025600px;}
.ws13_c00259{word-spacing:5.140800px;}
.ws2c_c00259{word-spacing:5.400000px;}
.ws6_c00259{word-spacing:6.487200px;}
.ws9_c00259{word-spacing:7.221600px;}
.wsa_c00259{word-spacing:7.308000px;}
.ws10_c00259{word-spacing:8.582400px;}
.ws26_c00259{word-spacing:8.611200px;}
.ws27_c00259{word-spacing:8.625600px;}
.ws25_c00259{word-spacing:8.654400px;}
.wsf_c00259{word-spacing:8.661600px;}
.ws1a_c00259{word-spacing:11.210400px;}
.ws19_c00259{word-spacing:11.239200px;}
.ws12_c00259{word-spacing:11.764800px;}
.ws11_c00259{word-spacing:11.916000px;}
.ws2a_c00259{word-spacing:17.280000px;}
.ws2b_c00259{word-spacing:17.316000px;}
.wsb_c00259{word-spacing:18.331200px;}
.wsc_c00259{word-spacing:18.540000px;}
.ws24_c00259{word-spacing:21.585600px;}
.ws23_c00259{word-spacing:21.614400px;}
.ws22_c00259{word-spacing:25.106400px;}
.ws21_c00259{word-spacing:25.164000px;}
._0_c00259{margin-left:-1.022040px;}
._1_c00259{width:1.180800px;}
.fc0_c00259{color:rgb(0,0,0);}
.fs6_c00259{font-size:38.880000px;}
.fs3_c00259{font-size:42.120000px;}
.fs5_c00259{font-size:47.880000px;}
.fs2_c00259{font-size:54.000000px;}
.fs0_c00259{font-size:60.120000px;}
.fs1_c00259{font-size:72.000000px;}
.fs4_c00259{font-size:78.120000px;}
.y0_c00259{bottom:0.000000px;}
.y3_c00259{bottom:57.450450px;}
.y4_c00259{bottom:61.410450px;}
.y26_c00259{bottom:113.698470px;}
.y25_c00259{bottom:132.064230px;}
.y24_c00259{bottom:150.342330px;}
.y23_c00259{bottom:168.608550px;}
.y22_c00259{bottom:186.970530px;}
.y21_c00259{bottom:205.236750px;}
.y20_c00259{bottom:223.502970px;}
.y1f_c00259{bottom:237.364230px;}
.y1e_c00259{bottom:255.630450px;}
.y1d_c00259{bottom:270.840450px;}
.y1c_c00259{bottom:291.540450px;}
.y1b_c00259{bottom:312.240450px;}
.y1a_c00259{bottom:370.380450px;}
.y19_c00259{bottom:404.760450px;}
.y18_c00259{bottom:439.230450px;}
.y17_c00259{bottom:473.610450px;}
.y16_c00259{bottom:508.080450px;}
.y15_c00259{bottom:542.460450px;}
.y14_c00259{bottom:576.930450px;}
.y13_c00259{bottom:620.310450px;}
.y12_c00259{bottom:654.780450px;}
.y11_c00259{bottom:689.160450px;}
.y10_c00259{bottom:723.630450px;}
.yf_c00259{bottom:758.010450px;}
.ye_c00259{bottom:803.100450px;}
.yd_c00259{bottom:856.740450px;}
.yc_c00259{bottom:891.210450px;}
.yb_c00259{bottom:925.590450px;}
.ya_c00259{bottom:960.060450px;}
.y9_c00259{bottom:1003.440450px;}
.y8_c00259{bottom:1037.910450px;}
.y7_c00259{bottom:1072.290450px;}
.y6_c00259{bottom:1106.760450px;}
.y5_c00259{bottom:1141.140450px;}
.y2_c00259{bottom:1173.810450px;}
.y1_c00259{bottom:1196.850450px;}
.h2_c00259{height:47.988281px;}
.h7_c00259{height:49.937344px;}
.h1_c00259{height:50.315273px;}
.h3_c00259{height:56.320312px;}
.h4_c00259{height:60.257812px;}
.h5_c00259{height:65.130820px;}
.h6_c00259{height:81.476719px;}
.h0_c00259{height:1263.000000px;}
.w1_c00259{width:892.500000px;}
.w0_c00259{width:892.830000px;}
.x0_c00259{left:0.000000px;}
.x2_c00259{left:127.620000px;}
.x6_c00259{left:154.444770px;}
.x5_c00259{left:180.720000px;}
.x4_c00259{left:435.240000px;}
.x3_c00259{left:446.490000px;}
.x1_c00259{left:490.770000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.v1_c00259{vertical-align:26.560000pt;}
.ls12_c00259{letter-spacing:-0.134400pt;}
.ls17_c00259{letter-spacing:-0.096000pt;}
.ls14_c00259{letter-spacing:-0.032000pt;}
.ls19_c00259{letter-spacing:-0.025600pt;}
.ls16_c00259{letter-spacing:-0.019200pt;}
.ls15_c00259{letter-spacing:-0.012800pt;}
.ls1a_c00259{letter-spacing:-0.006912pt;}
.ls13_c00259{letter-spacing:-0.006400pt;}
.ls1b_c00259{letter-spacing:-0.003456pt;}
.ls11_c00259{letter-spacing:0.000000pt;}
.ls3_c00259{letter-spacing:0.006400pt;}
.lsd_c00259{letter-spacing:0.012768pt;}
.ls5_c00259{letter-spacing:0.012800pt;}
.ls8_c00259{letter-spacing:0.013888pt;}
.lsc_c00259{letter-spacing:0.017024pt;}
.ls4_c00259{letter-spacing:0.019200pt;}
.ls10_c00259{letter-spacing:0.021280pt;}
.lsa_c00259{letter-spacing:0.025536pt;}
.ls2_c00259{letter-spacing:0.025600pt;}
.ls6_c00259{letter-spacing:0.027776pt;}
.ls9_c00259{letter-spacing:0.032000pt;}
.ls0_c00259{letter-spacing:0.032064pt;}
.lsb_c00259{letter-spacing:0.034048pt;}
.ls1_c00259{letter-spacing:0.048672pt;}
.ls18_c00259{letter-spacing:0.083200pt;}
.lse_c00259{letter-spacing:0.168320pt;}
.lsf_c00259{letter-spacing:0.312320pt;}
.ls1c_c00259{letter-spacing:0.314496pt;}
.ls7_c00259{letter-spacing:68.676160pt;}
.ws1_c00259{word-spacing:-17.387776pt;}
.ws2_c00259{word-spacing:-11.831680pt;}
.ws3_c00259{word-spacing:-9.922176pt;}
.ws0_c00259{word-spacing:-9.408672pt;}
.ws4_c00259{word-spacing:-0.272544pt;}
.ws18_c00259{word-spacing:-0.097216pt;}
.wse_c00259{word-spacing:-0.083200pt;}
.ws31_c00259{word-spacing:-0.017024pt;}
.ws15_c00259{word-spacing:-0.012800pt;}
.ws2f_c00259{word-spacing:-0.008512pt;}
.wsd_c00259{word-spacing:-0.006400pt;}
.ws33_c00259{word-spacing:-0.004256pt;}
.ws5_c00259{word-spacing:0.000000pt;}
.ws32_c00259{word-spacing:0.004256pt;}
.ws2d_c00259{word-spacing:0.025600pt;}
.ws2e_c00259{word-spacing:0.032000pt;}
.ws17_c00259{word-spacing:0.064000pt;}
.ws16_c00259{word-spacing:0.083200pt;}
.ws1e_c00259{word-spacing:0.352000pt;}
.ws1d_c00259{word-spacing:0.364800pt;}
.ws30_c00259{word-spacing:1.591744pt;}
.ws1c_c00259{word-spacing:2.208000pt;}
.ws1b_c00259{word-spacing:2.259200pt;}
.ws7_c00259{word-spacing:2.272000pt;}
.ws8_c00259{word-spacing:2.291200pt;}
.ws20_c00259{word-spacing:2.521600pt;}
.ws29_c00259{word-spacing:2.528000pt;}
.ws1f_c00259{word-spacing:2.566400pt;}
.ws28_c00259{word-spacing:2.630400pt;}
.ws14_c00259{word-spacing:4.467200pt;}
.ws13_c00259{word-spacing:4.569600pt;}
.ws2c_c00259{word-spacing:4.800000pt;}
.ws6_c00259{word-spacing:5.766400pt;}
.ws9_c00259{word-spacing:6.419200pt;}
.wsa_c00259{word-spacing:6.496000pt;}
.ws10_c00259{word-spacing:7.628800pt;}
.ws26_c00259{word-spacing:7.654400pt;}
.ws27_c00259{word-spacing:7.667200pt;}
.ws25_c00259{word-spacing:7.692800pt;}
.wsf_c00259{word-spacing:7.699200pt;}
.ws1a_c00259{word-spacing:9.964800pt;}
.ws19_c00259{word-spacing:9.990400pt;}
.ws12_c00259{word-spacing:10.457600pt;}
.ws11_c00259{word-spacing:10.592000pt;}
.ws2a_c00259{word-spacing:15.360000pt;}
.ws2b_c00259{word-spacing:15.392000pt;}
.wsb_c00259{word-spacing:16.294400pt;}
.wsc_c00259{word-spacing:16.480000pt;}
.ws24_c00259{word-spacing:19.187200pt;}
.ws23_c00259{word-spacing:19.212800pt;}
.ws22_c00259{word-spacing:22.316800pt;}
.ws21_c00259{word-spacing:22.368000pt;}
._0_c00259{margin-left:-0.908480pt;}
._1_c00259{width:1.049600pt;}
.fs6_c00259{font-size:34.560000pt;}
.fs3_c00259{font-size:37.440000pt;}
.fs5_c00259{font-size:42.560000pt;}
.fs2_c00259{font-size:48.000000pt;}
.fs0_c00259{font-size:53.440000pt;}
.fs1_c00259{font-size:64.000000pt;}
.fs4_c00259{font-size:69.440000pt;}
.y0_c00259{bottom:0.000000pt;}
.y3_c00259{bottom:51.067067pt;}
.y4_c00259{bottom:54.587067pt;}
.y26_c00259{bottom:101.065307pt;}
.y25_c00259{bottom:117.390427pt;}
.y24_c00259{bottom:133.637627pt;}
.y23_c00259{bottom:149.874267pt;}
.y22_c00259{bottom:166.196027pt;}
.y21_c00259{bottom:182.432667pt;}
.y20_c00259{bottom:198.669307pt;}
.y1f_c00259{bottom:210.990427pt;}
.y1e_c00259{bottom:227.227067pt;}
.y1d_c00259{bottom:240.747067pt;}
.y1c_c00259{bottom:259.147067pt;}
.y1b_c00259{bottom:277.547067pt;}
.y1a_c00259{bottom:329.227067pt;}
.y19_c00259{bottom:359.787067pt;}
.y18_c00259{bottom:390.427067pt;}
.y17_c00259{bottom:420.987067pt;}
.y16_c00259{bottom:451.627067pt;}
.y15_c00259{bottom:482.187067pt;}
.y14_c00259{bottom:512.827067pt;}
.y13_c00259{bottom:551.387067pt;}
.y12_c00259{bottom:582.027067pt;}
.y11_c00259{bottom:612.587067pt;}
.y10_c00259{bottom:643.227067pt;}
.yf_c00259{bottom:673.787067pt;}
.ye_c00259{bottom:713.867067pt;}
.yd_c00259{bottom:761.547067pt;}
.yc_c00259{bottom:792.187067pt;}
.yb_c00259{bottom:822.747067pt;}
.ya_c00259{bottom:853.387067pt;}
.y9_c00259{bottom:891.947067pt;}
.y8_c00259{bottom:922.587067pt;}
.y7_c00259{bottom:953.147067pt;}
.y6_c00259{bottom:983.787067pt;}
.y5_c00259{bottom:1014.347067pt;}
.y2_c00259{bottom:1043.387067pt;}
.y1_c00259{bottom:1063.867067pt;}
.h2_c00259{height:42.656250pt;}
.h7_c00259{height:44.388750pt;}
.h1_c00259{height:44.724687pt;}
.h3_c00259{height:50.062500pt;}
.h4_c00259{height:53.562500pt;}
.h5_c00259{height:57.894062pt;}
.h6_c00259{height:72.423750pt;}
.h0_c00259{height:1122.666667pt;}
.w1_c00259{width:793.333333pt;}
.w0_c00259{width:793.626667pt;}
.x0_c00259{left:0.000000pt;}
.x2_c00259{left:113.440000pt;}
.x6_c00259{left:137.284240pt;}
.x5_c00259{left:160.640000pt;}
.x4_c00259{left:386.880000pt;}
.x3_c00259{left:396.880000pt;}
.x1_c00259{left:436.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_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_f36ae1f97a4534cc950dcbb0.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.100098;font-style:normal;font-weight:normal;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_dc36b6f027f67ba6341061ca.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;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_c00260;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00260;src:url('chunks/assets/font_e9631877ecf10bd25bd39ac2.woff2')format("woff");}.ff4_c00260{font-family:ff4_c00260;line-height:1.102051;font-style:normal;font-weight:normal;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_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff5_c00260{font-family:ff5_c00260;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_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;}
.v1_c00260{vertical-align:15.840000px;}
.v2_c00260{vertical-align:29.880000px;}
.lsf_c00260{letter-spacing:-0.151200px;}
.ls13_c00260{letter-spacing:-0.036000px;}
.ls14_c00260{letter-spacing:-0.028800px;}
.ls10_c00260{letter-spacing:-0.021600px;}
.ls12_c00260{letter-spacing:-0.014400px;}
.ls11_c00260{letter-spacing:-0.007200px;}
.ls16_c00260{letter-spacing:-0.003888px;}
.lse_c00260{letter-spacing:0.000000px;}
.lsd_c00260{letter-spacing:0.004788px;}
.ls3_c00260{letter-spacing:0.007200px;}
.lsa_c00260{letter-spacing:0.014364px;}
.ls2_c00260{letter-spacing:0.014400px;}
.ls9_c00260{letter-spacing:0.028728px;}
.ls8_c00260{letter-spacing:0.028800px;}
.ls5_c00260{letter-spacing:0.036000px;}
.lsc_c00260{letter-spacing:0.047880px;}
.ls0_c00260{letter-spacing:0.048096px;}
.ls4_c00260{letter-spacing:0.054756px;}
.ls15_c00260{letter-spacing:0.093600px;}
.ls6_c00260{letter-spacing:0.144000px;}
.lsb_c00260{letter-spacing:0.464040px;}
.ls7_c00260{letter-spacing:66.024000px;}
.ls1_c00260{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00260{word-spacing:-10.804752px;}
.ws0_c00260{word-spacing:-10.584756px;}
.ws28_c00260{word-spacing:-0.028728px;}
.ws14_c00260{word-spacing:-0.014400px;}
.ws25_c00260{word-spacing:-0.009576px;}
.ws3_c00260{word-spacing:0.000000px;}
.ws26_c00260{word-spacing:0.004788px;}
.ws19_c00260{word-spacing:0.007200px;}
.ws29_c00260{word-spacing:0.014364px;}
.ws1e_c00260{word-spacing:0.014400px;}
.wsf_c00260{word-spacing:0.021600px;}
.ws2_c00260{word-spacing:0.042084px;}
.wsb_c00260{word-spacing:0.072000px;}
.ws1f_c00260{word-spacing:0.086400px;}
.ws27_c00260{word-spacing:0.363888px;}
.ws4_c00260{word-spacing:2.181600px;}
.ws18_c00260{word-spacing:2.556000px;}
.ws13_c00260{word-spacing:2.901600px;}
.wsd_c00260{word-spacing:3.240000px;}
.wse_c00260{word-spacing:3.268800px;}
.ws1d_c00260{word-spacing:4.327200px;}
.ws1c_c00260{word-spacing:4.341600px;}
.ws15_c00260{word-spacing:5.076000px;}
.ws16_c00260{word-spacing:5.169600px;}
.ws23_c00260{word-spacing:6.091200px;}
.ws8_c00260{word-spacing:6.170400px;}
.ws24_c00260{word-spacing:6.199200px;}
.ws9_c00260{word-spacing:6.213600px;}
.wsa_c00260{word-spacing:6.249600px;}
.ws22_c00260{word-spacing:6.508800px;}
.ws17_c00260{word-spacing:7.596000px;}
.ws20_c00260{word-spacing:10.015200px;}
.ws21_c00260{word-spacing:10.051200px;}
.wsc_c00260{word-spacing:12.585600px;}
.ws10_c00260{word-spacing:15.804000px;}
.ws12_c00260{word-spacing:15.861600px;}
.ws11_c00260{word-spacing:15.876000px;}
.ws1b_c00260{word-spacing:16.135200px;}
.ws1a_c00260{word-spacing:16.221600px;}
.ws7_c00260{word-spacing:19.087200px;}
.ws6_c00260{word-spacing:19.432800px;}
.ws5_c00260{word-spacing:19.476000px;}
._0_c00260{margin-left:-1.322640px;}
._1_c00260{width:1.231200px;}
.fc0_c00260{color:rgb(0,0,0);}
.fs5_c00260{font-size:38.880000px;}
.fs3_c00260{font-size:42.120000px;}
.fs4_c00260{font-size:47.880000px;}
.fs1_c00260{font-size:54.000000px;}
.fs0_c00260{font-size:60.120000px;}
.fs2_c00260{font-size:72.000000px;}
.y0_c00260{bottom:0.000000px;}
.y3_c00260{bottom:57.450450px;}
.y21_c00260{bottom:113.698470px;}
.y20_c00260{bottom:132.060450px;}
.y1f_c00260{bottom:147.270450px;}
.y1e_c00260{bottom:167.970450px;}
.y1d_c00260{bottom:188.670450px;}
.y1c_c00260{bottom:233.940450px;}
.y1b_c00260{bottom:268.410450px;}
.y1a_c00260{bottom:311.790450px;}
.y19_c00260{bottom:346.260450px;}
.y18_c00260{bottom:380.640450px;}
.y17_c00260{bottom:424.110450px;}
.y16_c00260{bottom:458.490450px;}
.y15_c00260{bottom:510.960450px;}
.y14_c00260{bottom:545.340450px;}
.y13_c00260{bottom:588.810450px;}
.y12_c00260{bottom:623.190450px;}
.y11_c00260{bottom:666.660450px;}
.y10_c00260{bottom:701.040450px;}
.yf_c00260{bottom:735.510450px;}
.ye_c00260{bottom:778.890450px;}
.yd_c00260{bottom:813.360450px;}
.yc_c00260{bottom:847.740450px;}
.yb_c00260{bottom:891.210450px;}
.ya_c00260{bottom:925.590450px;}
.y9_c00260{bottom:960.060450px;}
.y8_c00260{bottom:1003.440450px;}
.y7_c00260{bottom:1037.910450px;}
.y6_c00260{bottom:1072.290450px;}
.y5_c00260{bottom:1106.760450px;}
.y4_c00260{bottom:1141.140450px;}
.y2_c00260{bottom:1177.860450px;}
.y1_c00260{bottom:1196.850450px;}
.h8_c00260{height:47.988281px;}
.h9_c00260{height:49.937344px;}
.ha_c00260{height:49.945264px;}
.h1_c00260{height:50.315273px;}
.h2_c00260{height:56.320312px;}
.h4_c00260{height:60.257812px;}
.h6_c00260{height:60.890625px;}
.h5_c00260{height:65.130820px;}
.h3_c00260{height:72.160312px;}
.h7_c00260{height:75.093750px;}
.h0_c00260{height:1263.000000px;}
.w1_c00260{width:892.500000px;}
.w0_c00260{width:892.830000px;}
.x0_c00260{left:0.000000px;}
.x1_c00260{left:127.620000px;}
.x3_c00260{left:154.440000px;}
.x2_c00260{left:180.720000px;}
.x4_c00260{left:207.180000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.v1_c00260{vertical-align:14.080000pt;}
.v2_c00260{vertical-align:26.560000pt;}
.lsf_c00260{letter-spacing:-0.134400pt;}
.ls13_c00260{letter-spacing:-0.032000pt;}
.ls14_c00260{letter-spacing:-0.025600pt;}
.ls10_c00260{letter-spacing:-0.019200pt;}
.ls12_c00260{letter-spacing:-0.012800pt;}
.ls11_c00260{letter-spacing:-0.006400pt;}
.ls16_c00260{letter-spacing:-0.003456pt;}
.lse_c00260{letter-spacing:0.000000pt;}
.lsd_c00260{letter-spacing:0.004256pt;}
.ls3_c00260{letter-spacing:0.006400pt;}
.lsa_c00260{letter-spacing:0.012768pt;}
.ls2_c00260{letter-spacing:0.012800pt;}
.ls9_c00260{letter-spacing:0.025536pt;}
.ls8_c00260{letter-spacing:0.025600pt;}
.ls5_c00260{letter-spacing:0.032000pt;}
.lsc_c00260{letter-spacing:0.042560pt;}
.ls0_c00260{letter-spacing:0.042752pt;}
.ls4_c00260{letter-spacing:0.048672pt;}
.ls15_c00260{letter-spacing:0.083200pt;}
.ls6_c00260{letter-spacing:0.128000pt;}
.lsb_c00260{letter-spacing:0.412480pt;}
.ls7_c00260{letter-spacing:58.688000pt;}
.ls1_c00260{letter-spacing:1077.440000pt;}
.ws1_c00260{word-spacing:-9.604224pt;}
.ws0_c00260{word-spacing:-9.408672pt;}
.ws28_c00260{word-spacing:-0.025536pt;}
.ws14_c00260{word-spacing:-0.012800pt;}
.ws25_c00260{word-spacing:-0.008512pt;}
.ws3_c00260{word-spacing:0.000000pt;}
.ws26_c00260{word-spacing:0.004256pt;}
.ws19_c00260{word-spacing:0.006400pt;}
.ws29_c00260{word-spacing:0.012768pt;}
.ws1e_c00260{word-spacing:0.012800pt;}
.wsf_c00260{word-spacing:0.019200pt;}
.ws2_c00260{word-spacing:0.037408pt;}
.wsb_c00260{word-spacing:0.064000pt;}
.ws1f_c00260{word-spacing:0.076800pt;}
.ws27_c00260{word-spacing:0.323456pt;}
.ws4_c00260{word-spacing:1.939200pt;}
.ws18_c00260{word-spacing:2.272000pt;}
.ws13_c00260{word-spacing:2.579200pt;}
.wsd_c00260{word-spacing:2.880000pt;}
.wse_c00260{word-spacing:2.905600pt;}
.ws1d_c00260{word-spacing:3.846400pt;}
.ws1c_c00260{word-spacing:3.859200pt;}
.ws15_c00260{word-spacing:4.512000pt;}
.ws16_c00260{word-spacing:4.595200pt;}
.ws23_c00260{word-spacing:5.414400pt;}
.ws8_c00260{word-spacing:5.484800pt;}
.ws24_c00260{word-spacing:5.510400pt;}
.ws9_c00260{word-spacing:5.523200pt;}
.wsa_c00260{word-spacing:5.555200pt;}
.ws22_c00260{word-spacing:5.785600pt;}
.ws17_c00260{word-spacing:6.752000pt;}
.ws20_c00260{word-spacing:8.902400pt;}
.ws21_c00260{word-spacing:8.934400pt;}
.wsc_c00260{word-spacing:11.187200pt;}
.ws10_c00260{word-spacing:14.048000pt;}
.ws12_c00260{word-spacing:14.099200pt;}
.ws11_c00260{word-spacing:14.112000pt;}
.ws1b_c00260{word-spacing:14.342400pt;}
.ws1a_c00260{word-spacing:14.419200pt;}
.ws7_c00260{word-spacing:16.966400pt;}
.ws6_c00260{word-spacing:17.273600pt;}
.ws5_c00260{word-spacing:17.312000pt;}
._0_c00260{margin-left:-1.175680pt;}
._1_c00260{width:1.094400pt;}
.fs5_c00260{font-size:34.560000pt;}
.fs3_c00260{font-size:37.440000pt;}
.fs4_c00260{font-size:42.560000pt;}
.fs1_c00260{font-size:48.000000pt;}
.fs0_c00260{font-size:53.440000pt;}
.fs2_c00260{font-size:64.000000pt;}
.y0_c00260{bottom:0.000000pt;}
.y3_c00260{bottom:51.067067pt;}
.y21_c00260{bottom:101.065307pt;}
.y20_c00260{bottom:117.387067pt;}
.y1f_c00260{bottom:130.907067pt;}
.y1e_c00260{bottom:149.307067pt;}
.y1d_c00260{bottom:167.707067pt;}
.y1c_c00260{bottom:207.947067pt;}
.y1b_c00260{bottom:238.587067pt;}
.y1a_c00260{bottom:277.147067pt;}
.y19_c00260{bottom:307.787067pt;}
.y18_c00260{bottom:338.347067pt;}
.y17_c00260{bottom:376.987067pt;}
.y16_c00260{bottom:407.547067pt;}
.y15_c00260{bottom:454.187067pt;}
.y14_c00260{bottom:484.747067pt;}
.y13_c00260{bottom:523.387067pt;}
.y12_c00260{bottom:553.947067pt;}
.y11_c00260{bottom:592.587067pt;}
.y10_c00260{bottom:623.147067pt;}
.yf_c00260{bottom:653.787067pt;}
.ye_c00260{bottom:692.347067pt;}
.yd_c00260{bottom:722.987067pt;}
.yc_c00260{bottom:753.547067pt;}
.yb_c00260{bottom:792.187067pt;}
.ya_c00260{bottom:822.747067pt;}
.y9_c00260{bottom:853.387067pt;}
.y8_c00260{bottom:891.947067pt;}
.y7_c00260{bottom:922.587067pt;}
.y6_c00260{bottom:953.147067pt;}
.y5_c00260{bottom:983.787067pt;}
.y4_c00260{bottom:1014.347067pt;}
.y2_c00260{bottom:1046.987067pt;}
.y1_c00260{bottom:1063.867067pt;}
.h8_c00260{height:42.656250pt;}
.h9_c00260{height:44.388750pt;}
.ha_c00260{height:44.395790pt;}
.h1_c00260{height:44.724687pt;}
.h2_c00260{height:50.062500pt;}
.h4_c00260{height:53.562500pt;}
.h6_c00260{height:54.125000pt;}
.h5_c00260{height:57.894063pt;}
.h3_c00260{height:64.142500pt;}
.h7_c00260{height:66.750000pt;}
.h0_c00260{height:1122.666667pt;}
.w1_c00260{width:793.333333pt;}
.w0_c00260{width:793.626667pt;}
.x0_c00260{left:0.000000pt;}
.x1_c00260{left:113.440000pt;}
.x3_c00260{left:137.280000pt;}
.x2_c00260{left:160.640000pt;}
.x4_c00260{left:184.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5ed39b5a73414c18173cdb03.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00261;src:url('chunks/assets/font_c3cb4f4650ad5e22428e17ee.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00261;src:url('chunks/assets/font_a870393908c1df97712c064c.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00261;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00261{font-family:ff5_c00261;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_c00261;src:url('chunks/assets/font_c1a0656003dad671268bcb7b.woff2')format("woff");}.ff6_c00261{font-family:ff6_c00261;line-height:0.674805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.lsa_c00261{letter-spacing:-0.151200px;}
.ls10_c00261{letter-spacing:-0.075492px;}
.ls16_c00261{letter-spacing:-0.062496px;}
.lse_c00261{letter-spacing:-0.043200px;}
.ls15_c00261{letter-spacing:-0.039060px;}
.lsf_c00261{letter-spacing:-0.036000px;}
.ls17_c00261{letter-spacing:-0.031248px;}
.lsd_c00261{letter-spacing:-0.028800px;}
.ls18_c00261{letter-spacing:-0.023436px;}
.ls13_c00261{letter-spacing:-0.021600px;}
.lsb_c00261{letter-spacing:-0.014400px;}
.ls14_c00261{letter-spacing:-0.007812px;}
.lsc_c00261{letter-spacing:-0.007200px;}
.ls9_c00261{letter-spacing:0.000000px;}
.ls3_c00261{letter-spacing:0.007200px;}
.ls4_c00261{letter-spacing:0.014400px;}
.ls2_c00261{letter-spacing:0.021600px;}
.ls8_c00261{letter-spacing:0.028800px;}
.ls6_c00261{letter-spacing:0.036000px;}
.ls0_c00261{letter-spacing:0.036072px;}
.ls12_c00261{letter-spacing:0.050328px;}
.ls11_c00261{letter-spacing:0.075492px;}
.ls1_c00261{letter-spacing:17.363160px;}
.ls7_c00261{letter-spacing:40.231800px;}
.ls5_c00261{letter-spacing:83.041560px;}
.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:-20.894508px;}
.ws1_c00261{word-spacing:-19.522188px;}
.ws2_c00261{word-spacing:-19.498752px;}
.ws3_c00261{word-spacing:-0.306612px;}
.ws22_c00261{word-spacing:-0.171864px;}
.wsd_c00261{word-spacing:-0.142596px;}
.ws2b_c00261{word-spacing:-0.070308px;}
.ws21_c00261{word-spacing:-0.054684px;}
.ws15_c00261{word-spacing:-0.007200px;}
.ws4_c00261{word-spacing:0.000000px;}
.ws20_c00261{word-spacing:0.007200px;}
.wsb_c00261{word-spacing:0.014400px;}
.ws11_c00261{word-spacing:0.388800px;}
.ws12_c00261{word-spacing:0.554400px;}
.ws29_c00261{word-spacing:1.072800px;}
.ws16_c00261{word-spacing:2.152800px;}
.ws17_c00261{word-spacing:2.174400px;}
.ws26_c00261{word-spacing:2.887200px;}
.ws27_c00261{word-spacing:2.923200px;}
.ws6_c00261{word-spacing:3.556800px;}
.ws5_c00261{word-spacing:3.614400px;}
.ws1b_c00261{word-spacing:4.262400px;}
.ws1c_c00261{word-spacing:4.327200px;}
.ws1a_c00261{word-spacing:5.781600px;}
.ws13_c00261{word-spacing:6.480000px;}
.ws14_c00261{word-spacing:6.494400px;}
.ws10_c00261{word-spacing:8.683200px;}
.wsf_c00261{word-spacing:8.697600px;}
.ws1e_c00261{word-spacing:10.821600px;}
.ws1f_c00261{word-spacing:10.843200px;}
.ws2f_c00261{word-spacing:10.994400px;}
.ws2e_c00261{word-spacing:11.181600px;}
.ws25_c00261{word-spacing:11.844000px;}
.ws24_c00261{word-spacing:11.916000px;}
.ws8_c00261{word-spacing:13.341600px;}
.ws7_c00261{word-spacing:13.348800px;}
.wse_c00261{word-spacing:15.156000px;}
.ws9_c00261{word-spacing:15.163200px;}
.wsa_c00261{word-spacing:15.206400px;}
.ws1d_c00261{word-spacing:15.904800px;}
.ws18_c00261{word-spacing:16.185600px;}
.ws19_c00261{word-spacing:16.236000px;}
.ws23_c00261{word-spacing:18.741600px;}
.wsc_c00261{word-spacing:18.914940px;}
.ws28_c00261{word-spacing:20.167200px;}
.ws2a_c00261{word-spacing:23.061600px;}
.ws2c_c00261{word-spacing:29.865600px;}
.ws2d_c00261{word-spacing:29.937600px;}
._0_c00261{margin-left:-1.022040px;}
._1_c00261{width:1.152000px;}
.fc0_c00261{color:rgb(0,0,0);}
.fs2_c00261{font-size:54.000000px;}
.fs0_c00261{font-size:60.120000px;}
.fs1_c00261{font-size:72.000000px;}
.fs4_c00261{font-size:78.120000px;}
.fs3_c00261{font-size:83.880000px;}
.y0_c00261{bottom:0.000000px;}
.y3_c00261{bottom:57.450450px;}
.y4_c00261{bottom:61.410450px;}
.y21_c00261{bottom:112.925850px;}
.y20_c00261{bottom:147.395850px;}
.y1f_c00261{bottom:192.395850px;}
.y1e_c00261{bottom:246.035700px;}
.y1d_c00261{bottom:280.505700px;}
.y1c_c00261{bottom:314.885700px;}
.y1b_c00261{bottom:349.355700px;}
.y1a_c00261{bottom:383.735700px;}
.y19_c00261{bottom:418.205700px;}
.y18_c00261{bottom:452.585700px;}
.y17_c00261{bottom:497.675700px;}
.y16_c00261{bottom:547.355700px;}
.y15_c00261{bottom:577.775700px;}
.y14_c00261{bottom:608.105700px;}
.y13_c00261{bottom:638.525700px;}
.y12_c00261{bottom:668.855700px;}
.y11_c00261{bottom:699.275700px;}
.y10_c00261{bottom:729.605700px;}
.yf_c00261{bottom:769.025700px;}
.ye_c00261{bottom:799.355700px;}
.yd_c00261{bottom:829.775700px;}
.yc_c00261{bottom:860.105700px;}
.yb_c00261{bottom:890.525700px;}
.ya_c00261{bottom:939.527400px;}
.y9_c00261{bottom:982.830450px;}
.y8_c00261{bottom:1037.910450px;}
.y7_c00261{bottom:1072.290450px;}
.y6_c00261{bottom:1106.760450px;}
.y5_c00261{bottom:1141.140450px;}
.y2_c00261{bottom:1173.810450px;}
.y1_c00261{bottom:1196.850450px;}
.h2_c00261{height:47.988281px;}
.h1_c00261{height:50.315273px;}
.h3_c00261{height:56.320312px;}
.h4_c00261{height:60.257812px;}
.h6_c00261{height:70.282266px;}
.h7_c00261{height:81.476719px;}
.h5_c00261{height:87.484219px;}
.h0_c00261{height:1263.000000px;}
.w1_c00261{width:892.500000px;}
.w0_c00261{width:892.830000px;}
.x0_c00261{left:0.000000px;}
.x2_c00261{left:127.620000px;}
.x5_c00261{left:154.440000px;}
.x6_c00261{left:180.720000px;}
.x4_c00261{left:435.240000px;}
.x3_c00261{left:446.490000px;}
.x1_c00261{left:490.770000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.lsa_c00261{letter-spacing:-0.134400pt;}
.ls10_c00261{letter-spacing:-0.067104pt;}
.ls16_c00261{letter-spacing:-0.055552pt;}
.lse_c00261{letter-spacing:-0.038400pt;}
.ls15_c00261{letter-spacing:-0.034720pt;}
.lsf_c00261{letter-spacing:-0.032000pt;}
.ls17_c00261{letter-spacing:-0.027776pt;}
.lsd_c00261{letter-spacing:-0.025600pt;}
.ls18_c00261{letter-spacing:-0.020832pt;}
.ls13_c00261{letter-spacing:-0.019200pt;}
.lsb_c00261{letter-spacing:-0.012800pt;}
.ls14_c00261{letter-spacing:-0.006944pt;}
.lsc_c00261{letter-spacing:-0.006400pt;}
.ls9_c00261{letter-spacing:0.000000pt;}
.ls3_c00261{letter-spacing:0.006400pt;}
.ls4_c00261{letter-spacing:0.012800pt;}
.ls2_c00261{letter-spacing:0.019200pt;}
.ls8_c00261{letter-spacing:0.025600pt;}
.ls6_c00261{letter-spacing:0.032000pt;}
.ls0_c00261{letter-spacing:0.032064pt;}
.ls12_c00261{letter-spacing:0.044736pt;}
.ls11_c00261{letter-spacing:0.067104pt;}
.ls1_c00261{letter-spacing:15.433920pt;}
.ls7_c00261{letter-spacing:35.761600pt;}
.ls5_c00261{letter-spacing:73.814720pt;}
.ws0_c00261{word-spacing:-18.572896pt;}
.ws1_c00261{word-spacing:-17.353056pt;}
.ws2_c00261{word-spacing:-17.332224pt;}
.ws3_c00261{word-spacing:-0.272544pt;}
.ws22_c00261{word-spacing:-0.152768pt;}
.wsd_c00261{word-spacing:-0.126752pt;}
.ws2b_c00261{word-spacing:-0.062496pt;}
.ws21_c00261{word-spacing:-0.048608pt;}
.ws15_c00261{word-spacing:-0.006400pt;}
.ws4_c00261{word-spacing:0.000000pt;}
.ws20_c00261{word-spacing:0.006400pt;}
.wsb_c00261{word-spacing:0.012800pt;}
.ws11_c00261{word-spacing:0.345600pt;}
.ws12_c00261{word-spacing:0.492800pt;}
.ws29_c00261{word-spacing:0.953600pt;}
.ws16_c00261{word-spacing:1.913600pt;}
.ws17_c00261{word-spacing:1.932800pt;}
.ws26_c00261{word-spacing:2.566400pt;}
.ws27_c00261{word-spacing:2.598400pt;}
.ws6_c00261{word-spacing:3.161600pt;}
.ws5_c00261{word-spacing:3.212800pt;}
.ws1b_c00261{word-spacing:3.788800pt;}
.ws1c_c00261{word-spacing:3.846400pt;}
.ws1a_c00261{word-spacing:5.139200pt;}
.ws13_c00261{word-spacing:5.760000pt;}
.ws14_c00261{word-spacing:5.772800pt;}
.ws10_c00261{word-spacing:7.718400pt;}
.wsf_c00261{word-spacing:7.731200pt;}
.ws1e_c00261{word-spacing:9.619200pt;}
.ws1f_c00261{word-spacing:9.638400pt;}
.ws2f_c00261{word-spacing:9.772800pt;}
.ws2e_c00261{word-spacing:9.939200pt;}
.ws25_c00261{word-spacing:10.528000pt;}
.ws24_c00261{word-spacing:10.592000pt;}
.ws8_c00261{word-spacing:11.859200pt;}
.ws7_c00261{word-spacing:11.865600pt;}
.wse_c00261{word-spacing:13.472000pt;}
.ws9_c00261{word-spacing:13.478400pt;}
.wsa_c00261{word-spacing:13.516800pt;}
.ws1d_c00261{word-spacing:14.137600pt;}
.ws18_c00261{word-spacing:14.387200pt;}
.ws19_c00261{word-spacing:14.432000pt;}
.ws23_c00261{word-spacing:16.659200pt;}
.wsc_c00261{word-spacing:16.813280pt;}
.ws28_c00261{word-spacing:17.926400pt;}
.ws2a_c00261{word-spacing:20.499200pt;}
.ws2c_c00261{word-spacing:26.547200pt;}
.ws2d_c00261{word-spacing:26.611200pt;}
._0_c00261{margin-left:-0.908480pt;}
._1_c00261{width:1.024000pt;}
.fs2_c00261{font-size:48.000000pt;}
.fs0_c00261{font-size:53.440000pt;}
.fs1_c00261{font-size:64.000000pt;}
.fs4_c00261{font-size:69.440000pt;}
.fs3_c00261{font-size:74.560000pt;}
.y0_c00261{bottom:0.000000pt;}
.y3_c00261{bottom:51.067067pt;}
.y4_c00261{bottom:54.587067pt;}
.y21_c00261{bottom:100.378533pt;}
.y20_c00261{bottom:131.018533pt;}
.y1f_c00261{bottom:171.018533pt;}
.y1e_c00261{bottom:218.698400pt;}
.y1d_c00261{bottom:249.338400pt;}
.y1c_c00261{bottom:279.898400pt;}
.y1b_c00261{bottom:310.538400pt;}
.y1a_c00261{bottom:341.098400pt;}
.y19_c00261{bottom:371.738400pt;}
.y18_c00261{bottom:402.298400pt;}
.y17_c00261{bottom:442.378400pt;}
.y16_c00261{bottom:486.538400pt;}
.y15_c00261{bottom:513.578400pt;}
.y14_c00261{bottom:540.538400pt;}
.y13_c00261{bottom:567.578400pt;}
.y12_c00261{bottom:594.538400pt;}
.y11_c00261{bottom:621.578400pt;}
.y10_c00261{bottom:648.538400pt;}
.yf_c00261{bottom:683.578400pt;}
.ye_c00261{bottom:710.538400pt;}
.yd_c00261{bottom:737.578400pt;}
.yc_c00261{bottom:764.538400pt;}
.yb_c00261{bottom:791.578400pt;}
.ya_c00261{bottom:835.135467pt;}
.y9_c00261{bottom:873.627067pt;}
.y8_c00261{bottom:922.587067pt;}
.y7_c00261{bottom:953.147067pt;}
.y6_c00261{bottom:983.787067pt;}
.y5_c00261{bottom:1014.347067pt;}
.y2_c00261{bottom:1043.387067pt;}
.y1_c00261{bottom:1063.867067pt;}
.h2_c00261{height:42.656250pt;}
.h1_c00261{height:44.724687pt;}
.h3_c00261{height:50.062500pt;}
.h4_c00261{height:53.562500pt;}
.h6_c00261{height:62.473125pt;}
.h7_c00261{height:72.423750pt;}
.h5_c00261{height:77.763750pt;}
.h0_c00261{height:1122.666667pt;}
.w1_c00261{width:793.333333pt;}
.w0_c00261{width:793.626667pt;}
.x0_c00261{left:0.000000pt;}
.x2_c00261{left:113.440000pt;}
.x5_c00261{left:137.280000pt;}
.x6_c00261{left:160.640000pt;}
.x4_c00261{left:386.880000pt;}
.x3_c00261{left:396.880000pt;}
.x1_c00261{left:436.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_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_baa421053da3b9bd0fb43d7a.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.100098;font-style:normal;font-weight:normal;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_98ba0936e3d408664bc70662.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;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_c00262;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00262;src:url('chunks/assets/font_f7de92bdfd96edc1dead417b.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.102051;font-style:normal;font-weight:normal;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_20ca0e18385e05ecac86442c.woff2')format("woff");}.ff5_c00262{font-family:ff5_c00262;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_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.v1_c00262{vertical-align:15.840000px;}
.v2_c00262{vertical-align:29.880000px;}
.ls18_c00262{letter-spacing:-0.151200px;}
.ls1b_c00262{letter-spacing:-0.108000px;}
.ls1d_c00262{letter-spacing:-0.036000px;}
.ls1c_c00262{letter-spacing:-0.021600px;}
.ls19_c00262{letter-spacing:-0.014400px;}
.ls1a_c00262{letter-spacing:-0.007200px;}
.ls20_c00262{letter-spacing:-0.003888px;}
.ls17_c00262{letter-spacing:0.000000px;}
.ls6_c00262{letter-spacing:0.007200px;}
.ls9_c00262{letter-spacing:0.009576px;}
.ls14_c00262{letter-spacing:0.014364px;}
.ls2_c00262{letter-spacing:0.014400px;}
.ls12_c00262{letter-spacing:0.019152px;}
.ls4_c00262{letter-spacing:0.021600px;}
.lsf_c00262{letter-spacing:0.028728px;}
.ls7_c00262{letter-spacing:0.033516px;}
.ls1e_c00262{letter-spacing:0.036000px;}
.ls8_c00262{letter-spacing:0.038304px;}
.ls10_c00262{letter-spacing:0.043092px;}
.lsa_c00262{letter-spacing:0.047880px;}
.ls0_c00262{letter-spacing:0.048096px;}
.lse_c00262{letter-spacing:0.052668px;}
.ls3_c00262{letter-spacing:0.054756px;}
.lsc_c00262{letter-spacing:0.057456px;}
.ls11_c00262{letter-spacing:0.067032px;}
.ls13_c00262{letter-spacing:0.071820px;}
.ls5_c00262{letter-spacing:0.072000px;}
.ls15_c00262{letter-spacing:0.076608px;}
.lsd_c00262{letter-spacing:0.090972px;}
.ls16_c00262{letter-spacing:0.464040px;}
.lsb_c00262{letter-spacing:4.309200px;}
.ls1f_c00262{letter-spacing:20.520000px;}
.ls1_c00262{letter-spacing:1212.120000px;}
.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;}
}
.ws3_c00262{word-spacing:-13.401612px;}
.ws1_c00262{word-spacing:-13.358520px;}
.ws2_c00262{word-spacing:-13.310640px;}
.ws4_c00262{word-spacing:-10.808640px;}
.ws5_c00262{word-spacing:-10.804752px;}
.ws0_c00262{word-spacing:-10.584756px;}
.ws37_c00262{word-spacing:-0.057456px;}
.ws3c_c00262{word-spacing:-0.052668px;}
.ws3e_c00262{word-spacing:-0.028728px;}
.ws2f_c00262{word-spacing:-0.023940px;}
.ws24_c00262{word-spacing:-0.014364px;}
.ws3b_c00262{word-spacing:-0.009576px;}
.ws7_c00262{word-spacing:0.000000px;}
.ws36_c00262{word-spacing:0.004788px;}
.wsb_c00262{word-spacing:0.007200px;}
.ws2e_c00262{word-spacing:0.009576px;}
.ws14_c00262{word-spacing:0.014400px;}
.ws23_c00262{word-spacing:0.036000px;}
.ws6_c00262{word-spacing:0.042084px;}
.ws22_c00262{word-spacing:0.072000px;}
.ws2c_c00262{word-spacing:0.320796px;}
.ws2b_c00262{word-spacing:0.325584px;}
.ws30_c00262{word-spacing:0.344736px;}
.ws2d_c00262{word-spacing:0.349524px;}
.ws3d_c00262{word-spacing:0.363888px;}
.ws35_c00262{word-spacing:0.665532px;}
.ws2a_c00262{word-spacing:0.679896px;}
.ws33_c00262{word-spacing:0.694260px;}
.ws29_c00262{word-spacing:0.699048px;}
.ws34_c00262{word-spacing:0.718200px;}
.ws1e_c00262{word-spacing:1.072800px;}
.ws1d_c00262{word-spacing:1.123200px;}
.ws19_c00262{word-spacing:2.469600px;}
.ws18_c00262{word-spacing:2.527200px;}
.ws17_c00262{word-spacing:2.534400px;}
.wsc_c00262{word-spacing:3.981600px;}
.ws26_c00262{word-spacing:4.280472px;}
.ws27_c00262{word-spacing:4.290048px;}
.ws28_c00262{word-spacing:4.299624px;}
.ws25_c00262{word-spacing:4.328352px;}
.ws9_c00262{word-spacing:4.665600px;}
.wsa_c00262{word-spacing:4.687200px;}
.ws3a_c00262{word-spacing:6.075972px;}
.ws39_c00262{word-spacing:6.080760px;}
.ws38_c00262{word-spacing:6.090336px;}
.ws32_c00262{word-spacing:7.871472px;}
.ws31_c00262{word-spacing:7.885836px;}
.ws1b_c00262{word-spacing:8.992800px;}
.ws1c_c00262{word-spacing:9.007200px;}
.ws1a_c00262{word-spacing:9.122400px;}
.ws12_c00262{word-spacing:10.080000px;}
.ws11_c00262{word-spacing:10.094400px;}
.ws10_c00262{word-spacing:10.101600px;}
.wsf_c00262{word-spacing:10.116000px;}
.ws13_c00262{word-spacing:10.130400px;}
.ws8_c00262{word-spacing:13.003200px;}
.ws20_c00262{word-spacing:15.127200px;}
.ws1f_c00262{word-spacing:15.134400px;}
.ws16_c00262{word-spacing:19.562400px;}
.ws15_c00262{word-spacing:19.569600px;}
.ws21_c00262{word-spacing:20.570400px;}
.wse_c00262{word-spacing:21.218400px;}
.wsd_c00262{word-spacing:21.254400px;}
._2_c00262{margin-left:-20.520000px;}
._0_c00262{margin-left:-1.322640px;}
._1_c00262{width:1.152000px;}
.fc0_c00262{color:rgb(0,0,0);}
.fs5_c00262{font-size:38.880000px;}
.fs3_c00262{font-size:42.120000px;}
.fs4_c00262{font-size:47.880000px;}
.fs1_c00262{font-size:54.000000px;}
.fs0_c00262{font-size:60.120000px;}
.fs2_c00262{font-size:72.000000px;}
.y0_c00262{bottom:0.000000px;}
.y3_c00262{bottom:57.450450px;}
.y25_c00262{bottom:113.705640px;}
.y24_c00262{bottom:132.067620px;}
.y23_c00262{bottom:145.833120px;}
.y22_c00262{bottom:159.598620px;}
.y21_c00262{bottom:177.968730px;}
.y20_c00262{bottom:196.234950px;}
.y1f_c00262{bottom:210.006210px;}
.y1e_c00262{bottom:223.867470px;}
.y1d_c00262{bottom:242.133690px;}
.y1c_c00262{bottom:255.899190px;}
.y1b_c00262{bottom:269.772510px;}
.y1a_c00262{bottom:283.538010px;}
.y19_c00262{bottom:301.804230px;}
.y18_c00262{bottom:320.070450px;}
.y17_c00262{bottom:335.280450px;}
.y16_c00262{bottom:355.980450px;}
.y15_c00262{bottom:376.680450px;}
.y14_c00262{bottom:554.340450px;}
.y13_c00262{bottom:597.810450px;}
.y12_c00262{bottom:632.190450px;}
.y11_c00262{bottom:666.660450px;}
.y10_c00262{bottom:701.040450px;}
.yf_c00262{bottom:735.510600px;}
.ye_c00262{bottom:778.890600px;}
.yd_c00262{bottom:813.360450px;}
.yc_c00262{bottom:847.740450px;}
.yb_c00262{bottom:891.210450px;}
.ya_c00262{bottom:925.590450px;}
.y9_c00262{bottom:960.060450px;}
.y8_c00262{bottom:994.440450px;}
.y7_c00262{bottom:1028.910450px;}
.y6_c00262{bottom:1072.290450px;}
.y5_c00262{bottom:1106.760450px;}
.y4_c00262{bottom:1141.140450px;}
.y2_c00262{bottom:1177.860450px;}
.y1_c00262{bottom:1196.850450px;}
.h7_c00262{height:47.988281px;}
.h8_c00262{height:49.937344px;}
.h1_c00262{height:50.315273px;}
.h2_c00262{height:56.320312px;}
.h4_c00262{height:60.257812px;}
.h6_c00262{height:65.130220px;}
.h5_c00262{height:65.130820px;}
.h3_c00262{height:72.160312px;}
.h0_c00262{height:1263.000000px;}
.w1_c00262{width:892.500000px;}
.w0_c00262{width:892.830000px;}
.x0_c00262{left:0.000000px;}
.x1_c00262{left:127.620000px;}
.x4_c00262{left:154.432800px;}
.x2_c00262{left:180.810000px;}
.x3_c00262{left:446.490000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.v1_c00262{vertical-align:14.080000pt;}
.v2_c00262{vertical-align:26.560000pt;}
.ls18_c00262{letter-spacing:-0.134400pt;}
.ls1b_c00262{letter-spacing:-0.096000pt;}
.ls1d_c00262{letter-spacing:-0.032000pt;}
.ls1c_c00262{letter-spacing:-0.019200pt;}
.ls19_c00262{letter-spacing:-0.012800pt;}
.ls1a_c00262{letter-spacing:-0.006400pt;}
.ls20_c00262{letter-spacing:-0.003456pt;}
.ls17_c00262{letter-spacing:0.000000pt;}
.ls6_c00262{letter-spacing:0.006400pt;}
.ls9_c00262{letter-spacing:0.008512pt;}
.ls14_c00262{letter-spacing:0.012768pt;}
.ls2_c00262{letter-spacing:0.012800pt;}
.ls12_c00262{letter-spacing:0.017024pt;}
.ls4_c00262{letter-spacing:0.019200pt;}
.lsf_c00262{letter-spacing:0.025536pt;}
.ls7_c00262{letter-spacing:0.029792pt;}
.ls1e_c00262{letter-spacing:0.032000pt;}
.ls8_c00262{letter-spacing:0.034048pt;}
.ls10_c00262{letter-spacing:0.038304pt;}
.lsa_c00262{letter-spacing:0.042560pt;}
.ls0_c00262{letter-spacing:0.042752pt;}
.lse_c00262{letter-spacing:0.046816pt;}
.ls3_c00262{letter-spacing:0.048672pt;}
.lsc_c00262{letter-spacing:0.051072pt;}
.ls11_c00262{letter-spacing:0.059584pt;}
.ls13_c00262{letter-spacing:0.063840pt;}
.ls5_c00262{letter-spacing:0.064000pt;}
.ls15_c00262{letter-spacing:0.068096pt;}
.lsd_c00262{letter-spacing:0.080864pt;}
.ls16_c00262{letter-spacing:0.412480pt;}
.lsb_c00262{letter-spacing:3.830400pt;}
.ls1f_c00262{letter-spacing:18.240000pt;}
.ls1_c00262{letter-spacing:1077.440000pt;}
.ws3_c00262{word-spacing:-11.912544pt;}
.ws1_c00262{word-spacing:-11.874240pt;}
.ws2_c00262{word-spacing:-11.831680pt;}
.ws4_c00262{word-spacing:-9.607680pt;}
.ws5_c00262{word-spacing:-9.604224pt;}
.ws0_c00262{word-spacing:-9.408672pt;}
.ws37_c00262{word-spacing:-0.051072pt;}
.ws3c_c00262{word-spacing:-0.046816pt;}
.ws3e_c00262{word-spacing:-0.025536pt;}
.ws2f_c00262{word-spacing:-0.021280pt;}
.ws24_c00262{word-spacing:-0.012768pt;}
.ws3b_c00262{word-spacing:-0.008512pt;}
.ws7_c00262{word-spacing:0.000000pt;}
.ws36_c00262{word-spacing:0.004256pt;}
.wsb_c00262{word-spacing:0.006400pt;}
.ws2e_c00262{word-spacing:0.008512pt;}
.ws14_c00262{word-spacing:0.012800pt;}
.ws23_c00262{word-spacing:0.032000pt;}
.ws6_c00262{word-spacing:0.037408pt;}
.ws22_c00262{word-spacing:0.064000pt;}
.ws2c_c00262{word-spacing:0.285152pt;}
.ws2b_c00262{word-spacing:0.289408pt;}
.ws30_c00262{word-spacing:0.306432pt;}
.ws2d_c00262{word-spacing:0.310688pt;}
.ws3d_c00262{word-spacing:0.323456pt;}
.ws35_c00262{word-spacing:0.591584pt;}
.ws2a_c00262{word-spacing:0.604352pt;}
.ws33_c00262{word-spacing:0.617120pt;}
.ws29_c00262{word-spacing:0.621376pt;}
.ws34_c00262{word-spacing:0.638400pt;}
.ws1e_c00262{word-spacing:0.953600pt;}
.ws1d_c00262{word-spacing:0.998400pt;}
.ws19_c00262{word-spacing:2.195200pt;}
.ws18_c00262{word-spacing:2.246400pt;}
.ws17_c00262{word-spacing:2.252800pt;}
.wsc_c00262{word-spacing:3.539200pt;}
.ws26_c00262{word-spacing:3.804864pt;}
.ws27_c00262{word-spacing:3.813376pt;}
.ws28_c00262{word-spacing:3.821888pt;}
.ws25_c00262{word-spacing:3.847424pt;}
.ws9_c00262{word-spacing:4.147200pt;}
.wsa_c00262{word-spacing:4.166400pt;}
.ws3a_c00262{word-spacing:5.400864pt;}
.ws39_c00262{word-spacing:5.405120pt;}
.ws38_c00262{word-spacing:5.413632pt;}
.ws32_c00262{word-spacing:6.996864pt;}
.ws31_c00262{word-spacing:7.009632pt;}
.ws1b_c00262{word-spacing:7.993600pt;}
.ws1c_c00262{word-spacing:8.006400pt;}
.ws1a_c00262{word-spacing:8.108800pt;}
.ws12_c00262{word-spacing:8.960000pt;}
.ws11_c00262{word-spacing:8.972800pt;}
.ws10_c00262{word-spacing:8.979200pt;}
.wsf_c00262{word-spacing:8.992000pt;}
.ws13_c00262{word-spacing:9.004800pt;}
.ws8_c00262{word-spacing:11.558400pt;}
.ws20_c00262{word-spacing:13.446400pt;}
.ws1f_c00262{word-spacing:13.452800pt;}
.ws16_c00262{word-spacing:17.388800pt;}
.ws15_c00262{word-spacing:17.395200pt;}
.ws21_c00262{word-spacing:18.284800pt;}
.wse_c00262{word-spacing:18.860800pt;}
.wsd_c00262{word-spacing:18.892800pt;}
._2_c00262{margin-left:-18.240000pt;}
._0_c00262{margin-left:-1.175680pt;}
._1_c00262{width:1.024000pt;}
.fs5_c00262{font-size:34.560000pt;}
.fs3_c00262{font-size:37.440000pt;}
.fs4_c00262{font-size:42.560000pt;}
.fs1_c00262{font-size:48.000000pt;}
.fs0_c00262{font-size:53.440000pt;}
.fs2_c00262{font-size:64.000000pt;}
.y0_c00262{bottom:0.000000pt;}
.y3_c00262{bottom:51.067067pt;}
.y25_c00262{bottom:101.071680pt;}
.y24_c00262{bottom:117.393440pt;}
.y23_c00262{bottom:129.629440pt;}
.y22_c00262{bottom:141.865440pt;}
.y21_c00262{bottom:158.194427pt;}
.y20_c00262{bottom:174.431067pt;}
.y1f_c00262{bottom:186.672187pt;}
.y1e_c00262{bottom:198.993307pt;}
.y1d_c00262{bottom:215.229947pt;}
.y1c_c00262{bottom:227.465947pt;}
.y1b_c00262{bottom:239.797787pt;}
.y1a_c00262{bottom:252.033787pt;}
.y19_c00262{bottom:268.270427pt;}
.y18_c00262{bottom:284.507067pt;}
.y17_c00262{bottom:298.027067pt;}
.y16_c00262{bottom:316.427067pt;}
.y15_c00262{bottom:334.827067pt;}
.y14_c00262{bottom:492.747067pt;}
.y13_c00262{bottom:531.387067pt;}
.y12_c00262{bottom:561.947067pt;}
.y11_c00262{bottom:592.587067pt;}
.y10_c00262{bottom:623.147067pt;}
.yf_c00262{bottom:653.787200pt;}
.ye_c00262{bottom:692.347200pt;}
.yd_c00262{bottom:722.987067pt;}
.yc_c00262{bottom:753.547067pt;}
.yb_c00262{bottom:792.187067pt;}
.ya_c00262{bottom:822.747067pt;}
.y9_c00262{bottom:853.387067pt;}
.y8_c00262{bottom:883.947067pt;}
.y7_c00262{bottom:914.587067pt;}
.y6_c00262{bottom:953.147067pt;}
.y5_c00262{bottom:983.787067pt;}
.y4_c00262{bottom:1014.347067pt;}
.y2_c00262{bottom:1046.987067pt;}
.y1_c00262{bottom:1063.867067pt;}
.h7_c00262{height:42.656250pt;}
.h8_c00262{height:44.388750pt;}
.h1_c00262{height:44.724687pt;}
.h2_c00262{height:50.062500pt;}
.h4_c00262{height:53.562500pt;}
.h6_c00262{height:57.893529pt;}
.h5_c00262{height:57.894063pt;}
.h3_c00262{height:64.142500pt;}
.h0_c00262{height:1122.666667pt;}
.w1_c00262{width:793.333333pt;}
.w0_c00262{width:793.626667pt;}
.x0_c00262{left:0.000000pt;}
.x1_c00262{left:113.440000pt;}
.x4_c00262{left:137.273600pt;}
.x2_c00262{left:160.720000pt;}
.x3_c00262{left:396.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_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_0bed5801c7a8e80ed9951270.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00263;src:url('chunks/assets/font_ed951427f67be88137f9b6b9.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00263;src:url('chunks/assets/font_2764435cd80e753fbadd37aa.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00263;src:url('chunks/assets/font_7b8eb1971169dfd7bbee0f2d.woff2')format("woff");}.ff5_c00263{font-family:ff5_c00263;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m2_c00263{transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);}
.m1_c00263{transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.v1_c00263{vertical-align:15.120000px;}
.ls10_c00263{letter-spacing:-1.477674px;}
.lse_c00263{letter-spacing:-1.244331px;}
.lsf_c00263{letter-spacing:-0.886917px;}
.lsd_c00263{letter-spacing:-0.151200px;}
.ls17_c00263{letter-spacing:-0.043200px;}
.ls1a_c00263{letter-spacing:-0.036000px;}
.ls19_c00263{letter-spacing:-0.021600px;}
.ls16_c00263{letter-spacing:-0.014400px;}
.ls15_c00263{letter-spacing:-0.007200px;}
.lsc_c00263{letter-spacing:0.000000px;}
.ls5_c00263{letter-spacing:0.007200px;}
.ls4_c00263{letter-spacing:0.014400px;}
.ls8_c00263{letter-spacing:0.021600px;}
.ls6_c00263{letter-spacing:0.028800px;}
.ls2_c00263{letter-spacing:0.030060px;}
.lsb_c00263{letter-spacing:0.033516px;}
.ls7_c00263{letter-spacing:0.036000px;}
.ls0_c00263{letter-spacing:0.036072px;}
.ls1_c00263{letter-spacing:0.054108px;}
.ls3_c00263{letter-spacing:0.136080px;}
.ls9_c00263{letter-spacing:0.144000px;}
.ls18_c00263{letter-spacing:0.187200px;}
.ls12_c00263{letter-spacing:1.037516px;}
.ls13_c00263{letter-spacing:1.404315px;}
.ls11_c00263{letter-spacing:1.430515px;}
.ls14_c00263{letter-spacing:1.440994px;}
.lsa_c00263{letter-spacing:65.304000px;}
.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;}
}
.ws1_c00263{word-spacing:-17.513292px;}
.ws0_c00263{word-spacing:-17.155878px;}
.ws2_c00263{word-spacing:-13.089470px;}
.ws3_c00263{word-spacing:-9.856080px;}
.wsa_c00263{word-spacing:-2.347511px;}
.ws7_c00263{word-spacing:-2.337031px;}
.ws9_c00263{word-spacing:-2.310831px;}
.ws8_c00263{word-spacing:-1.944033px;}
.ws4_c00263{word-spacing:-0.306612px;}
.ws22_c00263{word-spacing:-0.021600px;}
.ws28_c00263{word-spacing:-0.014364px;}
.ws5_c00263{word-spacing:0.000000px;}
.ws27_c00263{word-spacing:0.007200px;}
.ws1f_c00263{word-spacing:0.014400px;}
.wsb_c00263{word-spacing:0.036072px;}
.wsc_c00263{word-spacing:0.060120px;}
.ws6_c00263{word-spacing:0.571158px;}
.ws25_c00263{word-spacing:0.763200px;}
.ws24_c00263{word-spacing:1.735200px;}
.ws23_c00263{word-spacing:1.886400px;}
.ws21_c00263{word-spacing:3.204000px;}
.ws20_c00263{word-spacing:3.376800px;}
.ws1b_c00263{word-spacing:4.320000px;}
.ws1c_c00263{word-spacing:4.356000px;}
.ws14_c00263{word-spacing:5.752800px;}
.ws15_c00263{word-spacing:5.767200px;}
.ws10_c00263{word-spacing:6.768000px;}
.wsf_c00263{word-spacing:6.897600px;}
.ws13_c00263{word-spacing:7.437600px;}
.ws12_c00263{word-spacing:7.603200px;}
.wse_c00263{word-spacing:8.265600px;}
.wsd_c00263{word-spacing:8.287200px;}
.ws19_c00263{word-spacing:8.294400px;}
.ws1a_c00263{word-spacing:8.366400px;}
.ws16_c00263{word-spacing:12.052800px;}
.ws18_c00263{word-spacing:12.204000px;}
.ws17_c00263{word-spacing:12.297600px;}
.ws1e_c00263{word-spacing:16.927200px;}
.ws1d_c00263{word-spacing:16.934400px;}
.ws11_c00263{word-spacing:21.974400px;}
.ws26_c00263{word-spacing:27.396000px;}
._4_c00263{margin-left:-3.143988px;}
._0_c00263{margin-left:-1.022040px;}
._3_c00263{width:1.309995px;}
._1_c00263{width:2.515190px;}
._2_c00263{width:3.825185px;}
._5_c00263{width:12.283200px;}
.fc0_c00263{color:rgb(0,0,0);}
.fs5_c00263{font-size:38.880000px;}
.fs6_c00263{font-size:47.880000px;}
.fs4_c00263{font-size:52.399800px;}
.fs2_c00263{font-size:54.000000px;}
.fs0_c00263{font-size:60.120000px;}
.fs3_c00263{font-size:66.187800px;}
.fs1_c00263{font-size:72.000000px;}
.y0_c00263{bottom:0.000000px;}
.y3_c00263{bottom:57.450450px;}
.y4_c00263{bottom:61.410450px;}
.y27_c00263{bottom:113.700450px;}
.y26_c00263{bottom:128.910450px;}
.y25_c00263{bottom:149.610450px;}
.y24_c00263{bottom:170.310450px;}
.y23_c00263{bottom:261.930450px;}
.y22_c00263{bottom:296.400450px;}
.y21_c00263{bottom:330.780450px;}
.y20_c00263{bottom:365.250450px;}
.y1f_c00263{bottom:399.630450px;}
.y1e_c00263{bottom:434.100450px;}
.y1d_c00263{bottom:477.480450px;}
.y1c_c00263{bottom:511.950450px;}
.y1b_c00263{bottom:546.330450px;}
.y1a_c00263{bottom:580.800450px;}
.y19_c00263{bottom:615.180450px;}
.y18_c00263{bottom:658.650450px;}
.y17_c00263{bottom:693.030450px;}
.y16_c00263{bottom:727.500450px;}
.y15_c00263{bottom:761.880450px;}
.y14_c00263{bottom:796.350450px;}
.y13_c00263{bottom:830.730450px;}
.y12_c00263{bottom:880.050450px;}
.y11_c00263{bottom:901.920450px;}
.y7_c00263{bottom:909.393475px;}
.y10_c00263{bottom:951.060450px;}
.y8_c00263{bottom:951.422728px;}
.yf_c00263{bottom:986.880450px;}
.y6_c00263{bottom:1013.523431px;}
.ye_c00263{bottom:1022.070450px;}
.yd_c00263{bottom:1057.260450px;}
.y9_c00263{bottom:1076.252919px;}
.yc_c00263{bottom:1093.080450px;}
.yb_c00263{bottom:1128.270450px;}
.y5_c00263{bottom:1131.420450px;}
.ya_c00263{bottom:1132.777300px;}
.y2_c00263{bottom:1173.810450px;}
.y1_c00263{bottom:1196.850450px;}
.h2_c00263{height:47.988281px;}
.h9_c00263{height:49.937344px;}
.h1_c00263{height:50.315273px;}
.h5_c00263{height:54.651354px;}
.h3_c00263{height:56.320312px;}
.h6_c00263{height:60.257812px;}
.h7_c00263{height:60.890625px;}
.h4_c00263{height:69.031807px;}
.h8_c00263{height:75.093750px;}
.h0_c00263{height:1263.000000px;}
.w1_c00263{width:892.500000px;}
.w0_c00263{width:892.830000px;}
.x0_c00263{left:0.000000px;}
.x2_c00263{left:127.620000px;}
.x8_c00263{left:134.013293px;}
.x9_c00263{left:135.356415px;}
.xf_c00263{left:154.620000px;}
.xa_c00263{left:169.912782px;}
.xe_c00263{left:180.810000px;}
.xd_c00263{left:225.990000px;}
.x7_c00263{left:317.788829px;}
.x5_c00263{left:324.720000px;}
.x6_c00263{left:377.184657px;}
.xb_c00263{left:431.100000px;}
.x4_c00263{left:435.240000px;}
.x3_c00263{left:446.490000px;}
.x1_c00263{left:490.770000px;}
.xc_c00263{left:768.330000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.v1_c00263{vertical-align:13.440000pt;}
.ls10_c00263{letter-spacing:-1.313488pt;}
.lse_c00263{letter-spacing:-1.106072pt;}
.lsf_c00263{letter-spacing:-0.788370pt;}
.lsd_c00263{letter-spacing:-0.134400pt;}
.ls17_c00263{letter-spacing:-0.038400pt;}
.ls1a_c00263{letter-spacing:-0.032000pt;}
.ls19_c00263{letter-spacing:-0.019200pt;}
.ls16_c00263{letter-spacing:-0.012800pt;}
.ls15_c00263{letter-spacing:-0.006400pt;}
.lsc_c00263{letter-spacing:0.000000pt;}
.ls5_c00263{letter-spacing:0.006400pt;}
.ls4_c00263{letter-spacing:0.012800pt;}
.ls8_c00263{letter-spacing:0.019200pt;}
.ls6_c00263{letter-spacing:0.025600pt;}
.ls2_c00263{letter-spacing:0.026720pt;}
.lsb_c00263{letter-spacing:0.029792pt;}
.ls7_c00263{letter-spacing:0.032000pt;}
.ls0_c00263{letter-spacing:0.032064pt;}
.ls1_c00263{letter-spacing:0.048096pt;}
.ls3_c00263{letter-spacing:0.120960pt;}
.ls9_c00263{letter-spacing:0.128000pt;}
.ls18_c00263{letter-spacing:0.166400pt;}
.ls12_c00263{letter-spacing:0.922236pt;}
.ls13_c00263{letter-spacing:1.248280pt;}
.ls11_c00263{letter-spacing:1.271568pt;}
.ls14_c00263{letter-spacing:1.280884pt;}
.lsa_c00263{letter-spacing:58.048000pt;}
.ws1_c00263{word-spacing:-15.567371pt;}
.ws0_c00263{word-spacing:-15.249669pt;}
.ws2_c00263{word-spacing:-11.635084pt;}
.ws3_c00263{word-spacing:-8.760960pt;}
.wsa_c00263{word-spacing:-2.086676pt;}
.ws7_c00263{word-spacing:-2.077361pt;}
.ws9_c00263{word-spacing:-2.054072pt;}
.ws8_c00263{word-spacing:-1.728029pt;}
.ws4_c00263{word-spacing:-0.272544pt;}
.ws22_c00263{word-spacing:-0.019200pt;}
.ws28_c00263{word-spacing:-0.012768pt;}
.ws5_c00263{word-spacing:0.000000pt;}
.ws27_c00263{word-spacing:0.006400pt;}
.ws1f_c00263{word-spacing:0.012800pt;}
.wsb_c00263{word-spacing:0.032064pt;}
.wsc_c00263{word-spacing:0.053440pt;}
.ws6_c00263{word-spacing:0.507696pt;}
.ws25_c00263{word-spacing:0.678400pt;}
.ws24_c00263{word-spacing:1.542400pt;}
.ws23_c00263{word-spacing:1.676800pt;}
.ws21_c00263{word-spacing:2.848000pt;}
.ws20_c00263{word-spacing:3.001600pt;}
.ws1b_c00263{word-spacing:3.840000pt;}
.ws1c_c00263{word-spacing:3.872000pt;}
.ws14_c00263{word-spacing:5.113600pt;}
.ws15_c00263{word-spacing:5.126400pt;}
.ws10_c00263{word-spacing:6.016000pt;}
.wsf_c00263{word-spacing:6.131200pt;}
.ws13_c00263{word-spacing:6.611200pt;}
.ws12_c00263{word-spacing:6.758400pt;}
.wse_c00263{word-spacing:7.347200pt;}
.wsd_c00263{word-spacing:7.366400pt;}
.ws19_c00263{word-spacing:7.372800pt;}
.ws1a_c00263{word-spacing:7.436800pt;}
.ws16_c00263{word-spacing:10.713600pt;}
.ws18_c00263{word-spacing:10.848000pt;}
.ws17_c00263{word-spacing:10.931200pt;}
.ws1e_c00263{word-spacing:15.046400pt;}
.ws1d_c00263{word-spacing:15.052800pt;}
.ws11_c00263{word-spacing:19.532800pt;}
.ws26_c00263{word-spacing:24.352000pt;}
._4_c00263{margin-left:-2.794656pt;}
._0_c00263{margin-left:-0.908480pt;}
._3_c00263{width:1.164440pt;}
._1_c00263{width:2.235725pt;}
._2_c00263{width:3.400165pt;}
._5_c00263{width:10.918400pt;}
.fs5_c00263{font-size:34.560000pt;}
.fs6_c00263{font-size:42.560000pt;}
.fs4_c00263{font-size:46.577600pt;}
.fs2_c00263{font-size:48.000000pt;}
.fs0_c00263{font-size:53.440000pt;}
.fs3_c00263{font-size:58.833600pt;}
.fs1_c00263{font-size:64.000000pt;}
.y0_c00263{bottom:0.000000pt;}
.y3_c00263{bottom:51.067067pt;}
.y4_c00263{bottom:54.587067pt;}
.y27_c00263{bottom:101.067067pt;}
.y26_c00263{bottom:114.587067pt;}
.y25_c00263{bottom:132.987067pt;}
.y24_c00263{bottom:151.387067pt;}
.y23_c00263{bottom:232.827067pt;}
.y22_c00263{bottom:263.467067pt;}
.y21_c00263{bottom:294.027067pt;}
.y20_c00263{bottom:324.667067pt;}
.y1f_c00263{bottom:355.227067pt;}
.y1e_c00263{bottom:385.867067pt;}
.y1d_c00263{bottom:424.427067pt;}
.y1c_c00263{bottom:455.067067pt;}
.y1b_c00263{bottom:485.627067pt;}
.y1a_c00263{bottom:516.267067pt;}
.y19_c00263{bottom:546.827067pt;}
.y18_c00263{bottom:585.467067pt;}
.y17_c00263{bottom:616.027067pt;}
.y16_c00263{bottom:646.667067pt;}
.y15_c00263{bottom:677.227067pt;}
.y14_c00263{bottom:707.867067pt;}
.y13_c00263{bottom:738.427067pt;}
.y12_c00263{bottom:782.267067pt;}
.y11_c00263{bottom:801.707067pt;}
.y7_c00263{bottom:808.349755pt;}
.y10_c00263{bottom:845.387067pt;}
.y8_c00263{bottom:845.709091pt;}
.yf_c00263{bottom:877.227067pt;}
.y6_c00263{bottom:900.909717pt;}
.ye_c00263{bottom:908.507067pt;}
.yd_c00263{bottom:939.787067pt;}
.y9_c00263{bottom:956.669261pt;}
.yc_c00263{bottom:971.627067pt;}
.yb_c00263{bottom:1002.907067pt;}
.y5_c00263{bottom:1005.707067pt;}
.ya_c00263{bottom:1006.913155pt;}
.y2_c00263{bottom:1043.387067pt;}
.y1_c00263{bottom:1063.867067pt;}
.h2_c00263{height:42.656250pt;}
.h9_c00263{height:44.388750pt;}
.h1_c00263{height:44.724687pt;}
.h5_c00263{height:48.578981pt;}
.h3_c00263{height:50.062500pt;}
.h6_c00263{height:53.562500pt;}
.h7_c00263{height:54.125000pt;}
.h4_c00263{height:61.361606pt;}
.h8_c00263{height:66.750000pt;}
.h0_c00263{height:1122.666667pt;}
.w1_c00263{width:793.333333pt;}
.w0_c00263{width:793.626667pt;}
.x0_c00263{left:0.000000pt;}
.x2_c00263{left:113.440000pt;}
.x8_c00263{left:119.122927pt;}
.x9_c00263{left:120.316813pt;}
.xf_c00263{left:137.440000pt;}
.xa_c00263{left:151.033584pt;}
.xe_c00263{left:160.720000pt;}
.xd_c00263{left:200.880000pt;}
.x7_c00263{left:282.478959pt;}
.x5_c00263{left:288.640000pt;}
.x6_c00263{left:335.275251pt;}
.xb_c00263{left:383.200000pt;}
.x4_c00263{left:386.880000pt;}
.x3_c00263{left:396.880000pt;}
.x1_c00263{left:436.240000pt;}
.xc_c00263{left:682.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d3cc2742546e181a87ba4868.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.100098;font-style:normal;font-weight:normal;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_3851bedd6a18149f376754f0.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;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_c00264;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00264;src:url('chunks/assets/font_1b0e5a9fd31f950eeaef4dbf.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:1.102051;font-style:normal;font-weight:normal;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_86486cb546dd435a21b2c759.woff2')format("woff");}.ff5_c00264{font-family:ff5_c00264;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.v1_c00264{vertical-align:15.840000px;}
.v2_c00264{vertical-align:29.880000px;}
.lsb_c00264{letter-spacing:-0.151200px;}
.ls12_c00264{letter-spacing:-0.057600px;}
.ls13_c00264{letter-spacing:-0.043200px;}
.lsf_c00264{letter-spacing:-0.036000px;}
.ls10_c00264{letter-spacing:-0.028800px;}
.lsd_c00264{letter-spacing:-0.021600px;}
.lse_c00264{letter-spacing:-0.014400px;}
.lsc_c00264{letter-spacing:-0.007200px;}
.lsa_c00264{letter-spacing:0.000000px;}
.ls3_c00264{letter-spacing:0.007200px;}
.ls6_c00264{letter-spacing:0.014400px;}
.ls15_c00264{letter-spacing:0.028800px;}
.ls9_c00264{letter-spacing:0.033516px;}
.ls14_c00264{letter-spacing:0.036000px;}
.ls7_c00264{letter-spacing:0.038304px;}
.ls0_c00264{letter-spacing:0.048096px;}
.ls16_c00264{letter-spacing:0.052668px;}
.ls2_c00264{letter-spacing:0.054756px;}
.ls8_c00264{letter-spacing:0.057456px;}
.ls11_c00264{letter-spacing:0.136800px;}
.ls4_c00264{letter-spacing:0.144000px;}
.ls5_c00264{letter-spacing:65.304000px;}
.ls1_c00264{letter-spacing:1212.120000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00264{word-spacing:-10.584756px;}
.ws2b_c00264{word-spacing:-0.038304px;}
.ws8_c00264{word-spacing:-0.036000px;}
.ws2a_c00264{word-spacing:-0.033516px;}
.ws23_c00264{word-spacing:-0.028800px;}
.ws29_c00264{word-spacing:-0.019152px;}
.ws2c_c00264{word-spacing:-0.014364px;}
.ws1f_c00264{word-spacing:-0.007200px;}
.ws2_c00264{word-spacing:0.000000px;}
.ws10_c00264{word-spacing:0.007200px;}
.ws1_c00264{word-spacing:0.042084px;}
.ws18_c00264{word-spacing:0.626400px;}
.ws4_c00264{word-spacing:0.648000px;}
.ws3_c00264{word-spacing:0.727200px;}
.ws17_c00264{word-spacing:0.741600px;}
.ws28_c00264{word-spacing:2.095200px;}
.ws27_c00264{word-spacing:2.160000px;}
.ws24_c00264{word-spacing:2.872800px;}
.ws26_c00264{word-spacing:2.908800px;}
.ws25_c00264{word-spacing:2.923200px;}
.wsc_c00264{word-spacing:3.650400px;}
.ws5_c00264{word-spacing:4.334400px;}
.ws13_c00264{word-spacing:5.061600px;}
.ws12_c00264{word-spacing:5.068800px;}
.wse_c00264{word-spacing:5.076000px;}
.ws11_c00264{word-spacing:5.083200px;}
.wsf_c00264{word-spacing:5.097600px;}
.ws19_c00264{word-spacing:5.810400px;}
.wsb_c00264{word-spacing:5.983200px;}
.wsa_c00264{word-spacing:6.134400px;}
.ws9_c00264{word-spacing:6.177600px;}
.ws1a_c00264{word-spacing:6.832800px;}
.ws1b_c00264{word-spacing:6.840000px;}
.ws1c_c00264{word-spacing:6.883200px;}
.ws1e_c00264{word-spacing:10.044000px;}
.ws1d_c00264{word-spacing:10.101600px;}
.ws7_c00264{word-spacing:14.364000px;}
.ws16_c00264{word-spacing:14.428800px;}
.ws6_c00264{word-spacing:14.436000px;}
.ws22_c00264{word-spacing:14.479200px;}
.ws21_c00264{word-spacing:14.500800px;}
.wsd_c00264{word-spacing:14.774400px;}
.ws20_c00264{word-spacing:18.381600px;}
.ws15_c00264{word-spacing:25.185600px;}
.ws14_c00264{word-spacing:25.236000px;}
._0_c00264{margin-left:-1.322640px;}
._1_c00264{width:1.080000px;}
.fc0_c00264{color:rgb(0,0,0);}
.fs3_c00264{font-size:42.120000px;}
.fs4_c00264{font-size:47.880000px;}
.fs1_c00264{font-size:54.000000px;}
.fs0_c00264{font-size:60.120000px;}
.fs2_c00264{font-size:72.000000px;}
.y0_c00264{bottom:0.000000px;}
.y3_c00264{bottom:57.450450px;}
.y21_c00264{bottom:113.702250px;}
.y20_c00264{bottom:132.064230px;}
.y1f_c00264{bottom:150.330450px;}
.y1e_c00264{bottom:165.540450px;}
.y1d_c00264{bottom:186.240450px;}
.y1c_c00264{bottom:206.940450px;}
.y1b_c00264{bottom:304.410450px;}
.y1a_c00264{bottom:338.790450px;}
.y19_c00264{bottom:382.260450px;}
.y18_c00264{bottom:416.640450px;}
.y17_c00264{bottom:451.110450px;}
.y16_c00264{bottom:494.490450px;}
.y15_c00264{bottom:528.960450px;}
.y14_c00264{bottom:563.340450px;}
.y13_c00264{bottom:606.810450px;}
.y12_c00264{bottom:641.190450px;}
.y11_c00264{bottom:675.660450px;}
.y10_c00264{bottom:710.040450px;}
.yf_c00264{bottom:744.510450px;}
.ye_c00264{bottom:778.890450px;}
.yd_c00264{bottom:813.360450px;}
.yc_c00264{bottom:856.740450px;}
.yb_c00264{bottom:891.210450px;}
.ya_c00264{bottom:925.590450px;}
.y9_c00264{bottom:960.060450px;}
.y8_c00264{bottom:994.440450px;}
.y7_c00264{bottom:1037.910450px;}
.y6_c00264{bottom:1072.290450px;}
.y5_c00264{bottom:1106.760450px;}
.y4_c00264{bottom:1141.140450px;}
.y2_c00264{bottom:1177.860450px;}
.y1_c00264{bottom:1196.850450px;}
.h8_c00264{height:47.988281px;}
.h9_c00264{height:49.937344px;}
.h1_c00264{height:50.315273px;}
.h2_c00264{height:56.320312px;}
.h4_c00264{height:60.257812px;}
.h6_c00264{height:60.890625px;}
.h5_c00264{height:65.130820px;}
.h3_c00264{height:72.160312px;}
.h7_c00264{height:75.093750px;}
.h0_c00264{height:1263.000000px;}
.w1_c00264{width:892.500000px;}
.w0_c00264{width:892.830000px;}
.x0_c00264{left:0.000000px;}
.x1_c00264{left:127.620000px;}
.x4_c00264{left:154.620000px;}
.x3_c00264{left:180.720000px;}
.x2_c00264{left:206.820000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.v1_c00264{vertical-align:14.080000pt;}
.v2_c00264{vertical-align:26.560000pt;}
.lsb_c00264{letter-spacing:-0.134400pt;}
.ls12_c00264{letter-spacing:-0.051200pt;}
.ls13_c00264{letter-spacing:-0.038400pt;}
.lsf_c00264{letter-spacing:-0.032000pt;}
.ls10_c00264{letter-spacing:-0.025600pt;}
.lsd_c00264{letter-spacing:-0.019200pt;}
.lse_c00264{letter-spacing:-0.012800pt;}
.lsc_c00264{letter-spacing:-0.006400pt;}
.lsa_c00264{letter-spacing:0.000000pt;}
.ls3_c00264{letter-spacing:0.006400pt;}
.ls6_c00264{letter-spacing:0.012800pt;}
.ls15_c00264{letter-spacing:0.025600pt;}
.ls9_c00264{letter-spacing:0.029792pt;}
.ls14_c00264{letter-spacing:0.032000pt;}
.ls7_c00264{letter-spacing:0.034048pt;}
.ls0_c00264{letter-spacing:0.042752pt;}
.ls16_c00264{letter-spacing:0.046816pt;}
.ls2_c00264{letter-spacing:0.048672pt;}
.ls8_c00264{letter-spacing:0.051072pt;}
.ls11_c00264{letter-spacing:0.121600pt;}
.ls4_c00264{letter-spacing:0.128000pt;}
.ls5_c00264{letter-spacing:58.048000pt;}
.ls1_c00264{letter-spacing:1077.440000pt;}
.ws0_c00264{word-spacing:-9.408672pt;}
.ws2b_c00264{word-spacing:-0.034048pt;}
.ws8_c00264{word-spacing:-0.032000pt;}
.ws2a_c00264{word-spacing:-0.029792pt;}
.ws23_c00264{word-spacing:-0.025600pt;}
.ws29_c00264{word-spacing:-0.017024pt;}
.ws2c_c00264{word-spacing:-0.012768pt;}
.ws1f_c00264{word-spacing:-0.006400pt;}
.ws2_c00264{word-spacing:0.000000pt;}
.ws10_c00264{word-spacing:0.006400pt;}
.ws1_c00264{word-spacing:0.037408pt;}
.ws18_c00264{word-spacing:0.556800pt;}
.ws4_c00264{word-spacing:0.576000pt;}
.ws3_c00264{word-spacing:0.646400pt;}
.ws17_c00264{word-spacing:0.659200pt;}
.ws28_c00264{word-spacing:1.862400pt;}
.ws27_c00264{word-spacing:1.920000pt;}
.ws24_c00264{word-spacing:2.553600pt;}
.ws26_c00264{word-spacing:2.585600pt;}
.ws25_c00264{word-spacing:2.598400pt;}
.wsc_c00264{word-spacing:3.244800pt;}
.ws5_c00264{word-spacing:3.852800pt;}
.ws13_c00264{word-spacing:4.499200pt;}
.ws12_c00264{word-spacing:4.505600pt;}
.wse_c00264{word-spacing:4.512000pt;}
.ws11_c00264{word-spacing:4.518400pt;}
.wsf_c00264{word-spacing:4.531200pt;}
.ws19_c00264{word-spacing:5.164800pt;}
.wsb_c00264{word-spacing:5.318400pt;}
.wsa_c00264{word-spacing:5.452800pt;}
.ws9_c00264{word-spacing:5.491200pt;}
.ws1a_c00264{word-spacing:6.073600pt;}
.ws1b_c00264{word-spacing:6.080000pt;}
.ws1c_c00264{word-spacing:6.118400pt;}
.ws1e_c00264{word-spacing:8.928000pt;}
.ws1d_c00264{word-spacing:8.979200pt;}
.ws7_c00264{word-spacing:12.768000pt;}
.ws16_c00264{word-spacing:12.825600pt;}
.ws6_c00264{word-spacing:12.832000pt;}
.ws22_c00264{word-spacing:12.870400pt;}
.ws21_c00264{word-spacing:12.889600pt;}
.wsd_c00264{word-spacing:13.132800pt;}
.ws20_c00264{word-spacing:16.339200pt;}
.ws15_c00264{word-spacing:22.387200pt;}
.ws14_c00264{word-spacing:22.432000pt;}
._0_c00264{margin-left:-1.175680pt;}
._1_c00264{width:0.960000pt;}
.fs3_c00264{font-size:37.440000pt;}
.fs4_c00264{font-size:42.560000pt;}
.fs1_c00264{font-size:48.000000pt;}
.fs0_c00264{font-size:53.440000pt;}
.fs2_c00264{font-size:64.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y3_c00264{bottom:51.067067pt;}
.y21_c00264{bottom:101.068667pt;}
.y20_c00264{bottom:117.390427pt;}
.y1f_c00264{bottom:133.627067pt;}
.y1e_c00264{bottom:147.147067pt;}
.y1d_c00264{bottom:165.547067pt;}
.y1c_c00264{bottom:183.947067pt;}
.y1b_c00264{bottom:270.587067pt;}
.y1a_c00264{bottom:301.147067pt;}
.y19_c00264{bottom:339.787067pt;}
.y18_c00264{bottom:370.347067pt;}
.y17_c00264{bottom:400.987067pt;}
.y16_c00264{bottom:439.547067pt;}
.y15_c00264{bottom:470.187067pt;}
.y14_c00264{bottom:500.747067pt;}
.y13_c00264{bottom:539.387067pt;}
.y12_c00264{bottom:569.947067pt;}
.y11_c00264{bottom:600.587067pt;}
.y10_c00264{bottom:631.147067pt;}
.yf_c00264{bottom:661.787067pt;}
.ye_c00264{bottom:692.347067pt;}
.yd_c00264{bottom:722.987067pt;}
.yc_c00264{bottom:761.547067pt;}
.yb_c00264{bottom:792.187067pt;}
.ya_c00264{bottom:822.747067pt;}
.y9_c00264{bottom:853.387067pt;}
.y8_c00264{bottom:883.947067pt;}
.y7_c00264{bottom:922.587067pt;}
.y6_c00264{bottom:953.147067pt;}
.y5_c00264{bottom:983.787067pt;}
.y4_c00264{bottom:1014.347067pt;}
.y2_c00264{bottom:1046.987067pt;}
.y1_c00264{bottom:1063.867067pt;}
.h8_c00264{height:42.656250pt;}
.h9_c00264{height:44.388750pt;}
.h1_c00264{height:44.724687pt;}
.h2_c00264{height:50.062500pt;}
.h4_c00264{height:53.562500pt;}
.h6_c00264{height:54.125000pt;}
.h5_c00264{height:57.894062pt;}
.h3_c00264{height:64.142500pt;}
.h7_c00264{height:66.750000pt;}
.h0_c00264{height:1122.666667pt;}
.w1_c00264{width:793.333333pt;}
.w0_c00264{width:793.626667pt;}
.x0_c00264{left:0.000000pt;}
.x1_c00264{left:113.440000pt;}
.x4_c00264{left:137.440000pt;}
.x3_c00264{left:160.640000pt;}
.x2_c00264{left:183.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_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_8c403fe9da2f6993e1227406.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00265;src:url('chunks/assets/font_73f842c279052ffeb9b371ad.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00265;src:url('chunks/assets/font_d823f212ff4c33af8ceba6b9.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00265;src:url('chunks/assets/font_50d205725f137e00125509c4.woff2')format("woff");}.ff5_c00265{font-family:ff5_c00265;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00265;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff6_c00265{font-family:ff6_c00265;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00265;src:url('chunks/assets/font_29ffc2d53f2432e3c2fb90a0.woff2')format("woff");}.ff7_c00265{font-family:ff7_c00265;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_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;}
.v1_c00265{vertical-align:29.880000px;}
.ls13_c00265{letter-spacing:-0.151200px;}
.ls1b_c00265{letter-spacing:-0.043200px;}
.ls19_c00265{letter-spacing:-0.036000px;}
.ls14_c00265{letter-spacing:-0.028800px;}
.ls1a_c00265{letter-spacing:-0.021600px;}
.ls18_c00265{letter-spacing:-0.014400px;}
.ls16_c00265{letter-spacing:-0.007200px;}
.ls1d_c00265{letter-spacing:-0.004788px;}
.ls1c_c00265{letter-spacing:-0.003888px;}
.ls12_c00265{letter-spacing:0.000000px;}
.ls1_c00265{letter-spacing:0.007200px;}
.ls10_c00265{letter-spacing:0.009576px;}
.lsb_c00265{letter-spacing:0.014364px;}
.ls7_c00265{letter-spacing:0.021600px;}
.ls8_c00265{letter-spacing:0.028800px;}
.lsc_c00265{letter-spacing:0.033516px;}
.ls17_c00265{letter-spacing:0.036000px;}
.ls0_c00265{letter-spacing:0.036072px;}
.lsa_c00265{letter-spacing:0.038304px;}
.lsf_c00265{letter-spacing:0.047880px;}
.ls2_c00265{letter-spacing:0.054756px;}
.lsd_c00265{letter-spacing:0.076608px;}
.ls9_c00265{letter-spacing:0.079200px;}
.ls15_c00265{letter-spacing:0.093600px;}
.ls11_c00265{letter-spacing:0.104040px;}
.ls3_c00265{letter-spacing:0.144000px;}
.lse_c00265{letter-spacing:0.464040px;}
.ls5_c00265{letter-spacing:2.160000px;}
.ls6_c00265{letter-spacing:44.784000px;}
.ls4_c00265{letter-spacing:65.304000px;}
.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;}
}
.ws4_c00265{word-spacing:-18.079200px;}
.ws1_c00265{word-spacing:-18.007200px;}
.ws2_c00265{word-spacing:-17.985600px;}
.ws5_c00265{word-spacing:-17.978400px;}
.ws3_c00265{word-spacing:-17.971200px;}
.ws8_c00265{word-spacing:-13.320216px;}
.ws6_c00265{word-spacing:-10.808640px;}
.ws7_c00265{word-spacing:-10.804752px;}
.ws0_c00265{word-spacing:-10.584756px;}
.ws9_c00265{word-spacing:-0.306612px;}
.wsf_c00265{word-spacing:-0.093600px;}
.ws34_c00265{word-spacing:-0.057456px;}
.wse_c00265{word-spacing:-0.050400px;}
.ws37_c00265{word-spacing:-0.028728px;}
.ws31_c00265{word-spacing:-0.019152px;}
.ws33_c00265{word-spacing:-0.014364px;}
.wsd_c00265{word-spacing:-0.007200px;}
.wsa_c00265{word-spacing:0.000000px;}
.ws32_c00265{word-spacing:0.004788px;}
.ws35_c00265{word-spacing:0.019152px;}
.ws15_c00265{word-spacing:0.021600px;}
.ws38_c00265{word-spacing:0.023940px;}
.ws2c_c00265{word-spacing:0.072000px;}
.ws1e_c00265{word-spacing:0.093600px;}
.ws36_c00265{word-spacing:0.363888px;}
.ws19_c00265{word-spacing:1.108800px;}
.ws18_c00265{word-spacing:1.116000px;}
.ws23_c00265{word-spacing:1.432800px;}
.ws22_c00265{word-spacing:1.468800px;}
.ws12_c00265{word-spacing:2.124000px;}
.ws10_c00265{word-spacing:2.167200px;}
.ws11_c00265{word-spacing:2.188800px;}
.ws21_c00265{word-spacing:2.196000px;}
.ws26_c00265{word-spacing:5.760000px;}
.ws1a_c00265{word-spacing:6.832800px;}
.ws1b_c00265{word-spacing:6.854400px;}
.ws2a_c00265{word-spacing:6.868800px;}
.ws29_c00265{word-spacing:6.926400px;}
.ws1f_c00265{word-spacing:7.920000px;}
.ws17_c00265{word-spacing:7.927200px;}
.ws16_c00265{word-spacing:7.934400px;}
.ws20_c00265{word-spacing:7.984800px;}
.ws1c_c00265{word-spacing:9.727200px;}
.ws1d_c00265{word-spacing:9.842400px;}
.ws2d_c00265{word-spacing:11.174400px;}
.ws13_c00265{word-spacing:12.600000px;}
.ws14_c00265{word-spacing:12.816000px;}
.wsb_c00265{word-spacing:16.560000px;}
.wsc_c00265{word-spacing:16.660800px;}
.ws2f_c00265{word-spacing:18.381600px;}
.ws2e_c00265{word-spacing:18.388800px;}
.ws30_c00265{word-spacing:18.403200px;}
.ws25_c00265{word-spacing:21.607200px;}
.ws24_c00265{word-spacing:21.794400px;}
.ws28_c00265{word-spacing:24.847200px;}
.ws27_c00265{word-spacing:24.883200px;}
.ws2b_c00265{word-spacing:28.821600px;}
._0_c00265{margin-left:-1.022040px;}
._1_c00265{width:1.080000px;}
.fc0_c00265{color:rgb(0,0,0);}
.fs5_c00265{font-size:38.880000px;}
.fs3_c00265{font-size:42.120000px;}
.fs4_c00265{font-size:47.880000px;}
.fs2_c00265{font-size:54.000000px;}
.fs0_c00265{font-size:60.120000px;}
.fs1_c00265{font-size:72.000000px;}
.y0_c00265{bottom:0.000000px;}
.y3_c00265{bottom:57.450450px;}
.y4_c00265{bottom:61.410450px;}
.y26_c00265{bottom:113.702250px;}
.y25_c00265{bottom:132.064230px;}
.y24_c00265{bottom:150.334230px;}
.y23_c00265{bottom:168.598620px;}
.y22_c00265{bottom:186.964230px;}
.y21_c00265{bottom:205.232400px;}
.y20_c00265{bottom:223.498620px;}
.y1f_c00265{bottom:241.860600px;}
.y1e_c00265{bottom:257.070450px;}
.y1d_c00265{bottom:277.770450px;}
.y1c_c00265{bottom:298.470450px;}
.y1b_c00265{bottom:338.790450px;}
.y1a_c00265{bottom:373.260450px;}
.y19_c00265{bottom:416.640450px;}
.y18_c00265{bottom:451.110450px;}
.y17_c00265{bottom:485.490450px;}
.y16_c00265{bottom:519.960450px;}
.y15_c00265{bottom:554.340450px;}
.y14_c00265{bottom:597.810450px;}
.y13_c00265{bottom:632.190450px;}
.y12_c00265{bottom:666.660450px;}
.y11_c00265{bottom:701.040450px;}
.y10_c00265{bottom:735.510450px;}
.yf_c00265{bottom:778.890600px;}
.ye_c00265{bottom:813.360450px;}
.yd_c00265{bottom:847.740450px;}
.yc_c00265{bottom:882.210450px;}
.yb_c00265{bottom:916.590450px;}
.ya_c00265{bottom:951.060450px;}
.y9_c00265{bottom:994.440450px;}
.y8_c00265{bottom:1028.910450px;}
.y7_c00265{bottom:1063.290450px;}
.y6_c00265{bottom:1106.760450px;}
.y5_c00265{bottom:1141.140450px;}
.y2_c00265{bottom:1173.810450px;}
.y1_c00265{bottom:1196.850450px;}
.h2_c00265{height:47.988281px;}
.ha_c00265{height:49.937344px;}
.hb_c00265{height:49.944664px;}
.h1_c00265{height:50.315273px;}
.h3_c00265{height:56.320312px;}
.h4_c00265{height:60.257812px;}
.h9_c00265{height:60.328125px;}
.h7_c00265{height:60.890625px;}
.h5_c00265{height:65.130820px;}
.h8_c00265{height:65.131420px;}
.h6_c00265{height:75.093750px;}
.h0_c00265{height:1263.000000px;}
.w1_c00265{width:892.500000px;}
.w0_c00265{width:892.830000px;}
.x0_c00265{left:0.000000px;}
.x2_c00265{left:127.620000px;}
.x6_c00265{left:154.620000px;}
.x5_c00265{left:180.720000px;}
.x7_c00265{left:208.620000px;}
.xa_c00265{left:233.820000px;}
.x8_c00265{left:235.620000px;}
.x9_c00265{left:259.020000px;}
.x4_c00265{left:435.240000px;}
.x3_c00265{left:446.490000px;}
.x1_c00265{left:490.770000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.v1_c00265{vertical-align:26.560000pt;}
.ls13_c00265{letter-spacing:-0.134400pt;}
.ls1b_c00265{letter-spacing:-0.038400pt;}
.ls19_c00265{letter-spacing:-0.032000pt;}
.ls14_c00265{letter-spacing:-0.025600pt;}
.ls1a_c00265{letter-spacing:-0.019200pt;}
.ls18_c00265{letter-spacing:-0.012800pt;}
.ls16_c00265{letter-spacing:-0.006400pt;}
.ls1d_c00265{letter-spacing:-0.004256pt;}
.ls1c_c00265{letter-spacing:-0.003456pt;}
.ls12_c00265{letter-spacing:0.000000pt;}
.ls1_c00265{letter-spacing:0.006400pt;}
.ls10_c00265{letter-spacing:0.008512pt;}
.lsb_c00265{letter-spacing:0.012768pt;}
.ls7_c00265{letter-spacing:0.019200pt;}
.ls8_c00265{letter-spacing:0.025600pt;}
.lsc_c00265{letter-spacing:0.029792pt;}
.ls17_c00265{letter-spacing:0.032000pt;}
.ls0_c00265{letter-spacing:0.032064pt;}
.lsa_c00265{letter-spacing:0.034048pt;}
.lsf_c00265{letter-spacing:0.042560pt;}
.ls2_c00265{letter-spacing:0.048672pt;}
.lsd_c00265{letter-spacing:0.068096pt;}
.ls9_c00265{letter-spacing:0.070400pt;}
.ls15_c00265{letter-spacing:0.083200pt;}
.ls11_c00265{letter-spacing:0.092480pt;}
.ls3_c00265{letter-spacing:0.128000pt;}
.lse_c00265{letter-spacing:0.412480pt;}
.ls5_c00265{letter-spacing:1.920000pt;}
.ls6_c00265{letter-spacing:39.808000pt;}
.ls4_c00265{letter-spacing:58.048000pt;}
.ws4_c00265{word-spacing:-16.070400pt;}
.ws1_c00265{word-spacing:-16.006400pt;}
.ws2_c00265{word-spacing:-15.987200pt;}
.ws5_c00265{word-spacing:-15.980800pt;}
.ws3_c00265{word-spacing:-15.974400pt;}
.ws8_c00265{word-spacing:-11.840192pt;}
.ws6_c00265{word-spacing:-9.607680pt;}
.ws7_c00265{word-spacing:-9.604224pt;}
.ws0_c00265{word-spacing:-9.408672pt;}
.ws9_c00265{word-spacing:-0.272544pt;}
.wsf_c00265{word-spacing:-0.083200pt;}
.ws34_c00265{word-spacing:-0.051072pt;}
.wse_c00265{word-spacing:-0.044800pt;}
.ws37_c00265{word-spacing:-0.025536pt;}
.ws31_c00265{word-spacing:-0.017024pt;}
.ws33_c00265{word-spacing:-0.012768pt;}
.wsd_c00265{word-spacing:-0.006400pt;}
.wsa_c00265{word-spacing:0.000000pt;}
.ws32_c00265{word-spacing:0.004256pt;}
.ws35_c00265{word-spacing:0.017024pt;}
.ws15_c00265{word-spacing:0.019200pt;}
.ws38_c00265{word-spacing:0.021280pt;}
.ws2c_c00265{word-spacing:0.064000pt;}
.ws1e_c00265{word-spacing:0.083200pt;}
.ws36_c00265{word-spacing:0.323456pt;}
.ws19_c00265{word-spacing:0.985600pt;}
.ws18_c00265{word-spacing:0.992000pt;}
.ws23_c00265{word-spacing:1.273600pt;}
.ws22_c00265{word-spacing:1.305600pt;}
.ws12_c00265{word-spacing:1.888000pt;}
.ws10_c00265{word-spacing:1.926400pt;}
.ws11_c00265{word-spacing:1.945600pt;}
.ws21_c00265{word-spacing:1.952000pt;}
.ws26_c00265{word-spacing:5.120000pt;}
.ws1a_c00265{word-spacing:6.073600pt;}
.ws1b_c00265{word-spacing:6.092800pt;}
.ws2a_c00265{word-spacing:6.105600pt;}
.ws29_c00265{word-spacing:6.156800pt;}
.ws1f_c00265{word-spacing:7.040000pt;}
.ws17_c00265{word-spacing:7.046400pt;}
.ws16_c00265{word-spacing:7.052800pt;}
.ws20_c00265{word-spacing:7.097600pt;}
.ws1c_c00265{word-spacing:8.646400pt;}
.ws1d_c00265{word-spacing:8.748800pt;}
.ws2d_c00265{word-spacing:9.932800pt;}
.ws13_c00265{word-spacing:11.200000pt;}
.ws14_c00265{word-spacing:11.392000pt;}
.wsb_c00265{word-spacing:14.720000pt;}
.wsc_c00265{word-spacing:14.809600pt;}
.ws2f_c00265{word-spacing:16.339200pt;}
.ws2e_c00265{word-spacing:16.345600pt;}
.ws30_c00265{word-spacing:16.358400pt;}
.ws25_c00265{word-spacing:19.206400pt;}
.ws24_c00265{word-spacing:19.372800pt;}
.ws28_c00265{word-spacing:22.086400pt;}
.ws27_c00265{word-spacing:22.118400pt;}
.ws2b_c00265{word-spacing:25.619200pt;}
._0_c00265{margin-left:-0.908480pt;}
._1_c00265{width:0.960000pt;}
.fs5_c00265{font-size:34.560000pt;}
.fs3_c00265{font-size:37.440000pt;}
.fs4_c00265{font-size:42.560000pt;}
.fs2_c00265{font-size:48.000000pt;}
.fs0_c00265{font-size:53.440000pt;}
.fs1_c00265{font-size:64.000000pt;}
.y0_c00265{bottom:0.000000pt;}
.y3_c00265{bottom:51.067067pt;}
.y4_c00265{bottom:54.587067pt;}
.y26_c00265{bottom:101.068667pt;}
.y25_c00265{bottom:117.390427pt;}
.y24_c00265{bottom:133.630427pt;}
.y23_c00265{bottom:149.865440pt;}
.y22_c00265{bottom:166.190427pt;}
.y21_c00265{bottom:182.428800pt;}
.y20_c00265{bottom:198.665440pt;}
.y1f_c00265{bottom:214.987200pt;}
.y1e_c00265{bottom:228.507067pt;}
.y1d_c00265{bottom:246.907067pt;}
.y1c_c00265{bottom:265.307067pt;}
.y1b_c00265{bottom:301.147067pt;}
.y1a_c00265{bottom:331.787067pt;}
.y19_c00265{bottom:370.347067pt;}
.y18_c00265{bottom:400.987067pt;}
.y17_c00265{bottom:431.547067pt;}
.y16_c00265{bottom:462.187067pt;}
.y15_c00265{bottom:492.747067pt;}
.y14_c00265{bottom:531.387067pt;}
.y13_c00265{bottom:561.947067pt;}
.y12_c00265{bottom:592.587067pt;}
.y11_c00265{bottom:623.147067pt;}
.y10_c00265{bottom:653.787067pt;}
.yf_c00265{bottom:692.347200pt;}
.ye_c00265{bottom:722.987067pt;}
.yd_c00265{bottom:753.547067pt;}
.yc_c00265{bottom:784.187067pt;}
.yb_c00265{bottom:814.747067pt;}
.ya_c00265{bottom:845.387067pt;}
.y9_c00265{bottom:883.947067pt;}
.y8_c00265{bottom:914.587067pt;}
.y7_c00265{bottom:945.147067pt;}
.y6_c00265{bottom:983.787067pt;}
.y5_c00265{bottom:1014.347067pt;}
.y2_c00265{bottom:1043.387067pt;}
.y1_c00265{bottom:1063.867067pt;}
.h2_c00265{height:42.656250pt;}
.ha_c00265{height:44.388750pt;}
.hb_c00265{height:44.395257pt;}
.h1_c00265{height:44.724687pt;}
.h3_c00265{height:50.062500pt;}
.h4_c00265{height:53.562500pt;}
.h9_c00265{height:53.625000pt;}
.h7_c00265{height:54.125000pt;}
.h5_c00265{height:57.894063pt;}
.h8_c00265{height:57.894596pt;}
.h6_c00265{height:66.750000pt;}
.h0_c00265{height:1122.666667pt;}
.w1_c00265{width:793.333333pt;}
.w0_c00265{width:793.626667pt;}
.x0_c00265{left:0.000000pt;}
.x2_c00265{left:113.440000pt;}
.x6_c00265{left:137.440000pt;}
.x5_c00265{left:160.640000pt;}
.x7_c00265{left:185.440000pt;}
.xa_c00265{left:207.840000pt;}
.x8_c00265{left:209.440000pt;}
.x9_c00265{left:230.240000pt;}
.x4_c00265{left:386.880000pt;}
.x3_c00265{left:396.880000pt;}
.x1_c00265{left:436.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_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_c43054431502f39c51a4edee.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.100098;font-style:normal;font-weight:normal;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_1bffdd702b183f9242457ac0.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;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_c00266;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00266;src:url('chunks/assets/font_32d048d7590712a00d47d912.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00266;src:url('chunks/assets/font_fec26d08e9cd6a470158df7e.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.v1_c00266{vertical-align:15.840000px;}
.v2_c00266{vertical-align:29.880000px;}
.ls9_c00266{letter-spacing:-0.151200px;}
.ls11_c00266{letter-spacing:-0.072000px;}
.lsb_c00266{letter-spacing:-0.043200px;}
.ls12_c00266{letter-spacing:-0.036000px;}
.lsc_c00266{letter-spacing:-0.028800px;}
.lsa_c00266{letter-spacing:-0.021600px;}
.lsd_c00266{letter-spacing:-0.014400px;}
.lse_c00266{letter-spacing:-0.007200px;}
.ls8_c00266{letter-spacing:0.000000px;}
.ls2_c00266{letter-spacing:0.007200px;}
.ls6_c00266{letter-spacing:0.014400px;}
.ls4_c00266{letter-spacing:0.021600px;}
.ls10_c00266{letter-spacing:0.036000px;}
.ls7_c00266{letter-spacing:0.038304px;}
.ls0_c00266{letter-spacing:0.048096px;}
.ls3_c00266{letter-spacing:0.054756px;}
.lsf_c00266{letter-spacing:0.093600px;}
.ls5_c00266{letter-spacing:4.320000px;}
.ls1_c00266{letter-spacing:1212.120000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00266{word-spacing:-10.584756px;}
.ws2d_c00266{word-spacing:-0.019152px;}
.ws2_c00266{word-spacing:0.000000px;}
.ws16_c00266{word-spacing:0.007200px;}
.ws18_c00266{word-spacing:0.014400px;}
.ws1c_c00266{word-spacing:0.021600px;}
.ws26_c00266{word-spacing:0.036000px;}
.ws1_c00266{word-spacing:0.042084px;}
.wse_c00266{word-spacing:0.079200px;}
.wsd_c00266{word-spacing:0.086400px;}
.ws17_c00266{word-spacing:0.093600px;}
.ws1e_c00266{word-spacing:0.734400px;}
.ws1d_c00266{word-spacing:0.835200px;}
.wsf_c00266{word-spacing:1.447200px;}
.ws10_c00266{word-spacing:1.468800px;}
.ws11_c00266{word-spacing:1.584000px;}
.ws1b_c00266{word-spacing:2.520000px;}
.ws25_c00266{word-spacing:3.967200px;}
.ws15_c00266{word-spacing:4.334400px;}
.ws14_c00266{word-spacing:4.341600px;}
.ws12_c00266{word-spacing:4.348800px;}
.ws13_c00266{word-spacing:4.392000px;}
.ws1f_c00266{word-spacing:4.672800px;}
.ws21_c00266{word-spacing:4.701600px;}
.ws20_c00266{word-spacing:4.759200px;}
.ws24_c00266{word-spacing:5.414400px;}
.ws9_c00266{word-spacing:6.501600px;}
.ws7_c00266{word-spacing:6.782400px;}
.ws8_c00266{word-spacing:6.847200px;}
.ws6_c00266{word-spacing:7.178400px;}
.ws5_c00266{word-spacing:7.228800px;}
.ws4_c00266{word-spacing:10.058400px;}
.ws3_c00266{word-spacing:10.101600px;}
.wsc_c00266{word-spacing:10.418400px;}
.wsa_c00266{word-spacing:10.440000px;}
.wsb_c00266{word-spacing:10.447200px;}
.ws2b_c00266{word-spacing:11.224800px;}
.ws2c_c00266{word-spacing:11.239200px;}
.ws2a_c00266{word-spacing:11.433600px;}
.ws22_c00266{word-spacing:12.614400px;}
.ws27_c00266{word-spacing:13.341600px;}
.ws19_c00266{word-spacing:21.276000px;}
.ws1a_c00266{word-spacing:21.340800px;}
.ws23_c00266{word-spacing:21.967200px;}
.ws29_c00266{word-spacing:31.010400px;}
.ws28_c00266{word-spacing:31.032000px;}
._0_c00266{margin-left:-1.322640px;}
._1_c00266{width:1.008000px;}
._2_c00266{width:2.469600px;}
.fc0_c00266{color:rgb(0,0,0);}
.fs3_c00266{font-size:42.120000px;}
.fs4_c00266{font-size:47.880000px;}
.fs1_c00266{font-size:54.000000px;}
.fs0_c00266{font-size:60.120000px;}
.fs2_c00266{font-size:72.000000px;}
.y0_c00266{bottom:0.000000px;}
.y3_c00266{bottom:57.450450px;}
.y21_c00266{bottom:113.702250px;}
.y20_c00266{bottom:132.064230px;}
.y1f_c00266{bottom:150.330450px;}
.y1e_c00266{bottom:165.540450px;}
.y1d_c00266{bottom:186.240450px;}
.y1c_c00266{bottom:206.940450px;}
.y1b_c00266{bottom:286.410450px;}
.y1a_c00266{bottom:320.790450px;}
.y19_c00266{bottom:355.260450px;}
.y18_c00266{bottom:398.640450px;}
.y17_c00266{bottom:433.110450px;}
.y16_c00266{bottom:467.490450px;}
.y15_c00266{bottom:501.960450px;}
.y14_c00266{bottom:536.340450px;}
.y13_c00266{bottom:579.810450px;}
.y12_c00266{bottom:614.190450px;}
.y11_c00266{bottom:648.660450px;}
.y10_c00266{bottom:701.040450px;}
.yf_c00266{bottom:735.510450px;}
.ye_c00266{bottom:769.890450px;}
.yd_c00266{bottom:813.360450px;}
.yc_c00266{bottom:847.740450px;}
.yb_c00266{bottom:882.210450px;}
.ya_c00266{bottom:925.590450px;}
.y9_c00266{bottom:960.060450px;}
.y8_c00266{bottom:994.440450px;}
.y7_c00266{bottom:1028.910450px;}
.y6_c00266{bottom:1072.290450px;}
.y5_c00266{bottom:1106.760450px;}
.y4_c00266{bottom:1141.140450px;}
.y2_c00266{bottom:1177.860450px;}
.y1_c00266{bottom:1196.850450px;}
.h8_c00266{height:47.988281px;}
.h9_c00266{height:49.937344px;}
.h1_c00266{height:50.315273px;}
.h2_c00266{height:56.320312px;}
.h4_c00266{height:60.257812px;}
.h5_c00266{height:60.328125px;}
.h6_c00266{height:60.890625px;}
.h7_c00266{height:65.130820px;}
.h3_c00266{height:72.160312px;}
.h0_c00266{height:1263.000000px;}
.w1_c00266{width:892.500000px;}
.w0_c00266{width:892.830000px;}
.x0_c00266{left:0.000000px;}
.x1_c00266{left:127.620000px;}
.x2_c00266{left:180.810000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.v1_c00266{vertical-align:14.080000pt;}
.v2_c00266{vertical-align:26.560000pt;}
.ls9_c00266{letter-spacing:-0.134400pt;}
.ls11_c00266{letter-spacing:-0.064000pt;}
.lsb_c00266{letter-spacing:-0.038400pt;}
.ls12_c00266{letter-spacing:-0.032000pt;}
.lsc_c00266{letter-spacing:-0.025600pt;}
.lsa_c00266{letter-spacing:-0.019200pt;}
.lsd_c00266{letter-spacing:-0.012800pt;}
.lse_c00266{letter-spacing:-0.006400pt;}
.ls8_c00266{letter-spacing:0.000000pt;}
.ls2_c00266{letter-spacing:0.006400pt;}
.ls6_c00266{letter-spacing:0.012800pt;}
.ls4_c00266{letter-spacing:0.019200pt;}
.ls10_c00266{letter-spacing:0.032000pt;}
.ls7_c00266{letter-spacing:0.034048pt;}
.ls0_c00266{letter-spacing:0.042752pt;}
.ls3_c00266{letter-spacing:0.048672pt;}
.lsf_c00266{letter-spacing:0.083200pt;}
.ls5_c00266{letter-spacing:3.840000pt;}
.ls1_c00266{letter-spacing:1077.440000pt;}
.ws0_c00266{word-spacing:-9.408672pt;}
.ws2d_c00266{word-spacing:-0.017024pt;}
.ws2_c00266{word-spacing:0.000000pt;}
.ws16_c00266{word-spacing:0.006400pt;}
.ws18_c00266{word-spacing:0.012800pt;}
.ws1c_c00266{word-spacing:0.019200pt;}
.ws26_c00266{word-spacing:0.032000pt;}
.ws1_c00266{word-spacing:0.037408pt;}
.wse_c00266{word-spacing:0.070400pt;}
.wsd_c00266{word-spacing:0.076800pt;}
.ws17_c00266{word-spacing:0.083200pt;}
.ws1e_c00266{word-spacing:0.652800pt;}
.ws1d_c00266{word-spacing:0.742400pt;}
.wsf_c00266{word-spacing:1.286400pt;}
.ws10_c00266{word-spacing:1.305600pt;}
.ws11_c00266{word-spacing:1.408000pt;}
.ws1b_c00266{word-spacing:2.240000pt;}
.ws25_c00266{word-spacing:3.526400pt;}
.ws15_c00266{word-spacing:3.852800pt;}
.ws14_c00266{word-spacing:3.859200pt;}
.ws12_c00266{word-spacing:3.865600pt;}
.ws13_c00266{word-spacing:3.904000pt;}
.ws1f_c00266{word-spacing:4.153600pt;}
.ws21_c00266{word-spacing:4.179200pt;}
.ws20_c00266{word-spacing:4.230400pt;}
.ws24_c00266{word-spacing:4.812800pt;}
.ws9_c00266{word-spacing:5.779200pt;}
.ws7_c00266{word-spacing:6.028800pt;}
.ws8_c00266{word-spacing:6.086400pt;}
.ws6_c00266{word-spacing:6.380800pt;}
.ws5_c00266{word-spacing:6.425600pt;}
.ws4_c00266{word-spacing:8.940800pt;}
.ws3_c00266{word-spacing:8.979200pt;}
.wsc_c00266{word-spacing:9.260800pt;}
.wsa_c00266{word-spacing:9.280000pt;}
.wsb_c00266{word-spacing:9.286400pt;}
.ws2b_c00266{word-spacing:9.977600pt;}
.ws2c_c00266{word-spacing:9.990400pt;}
.ws2a_c00266{word-spacing:10.163200pt;}
.ws22_c00266{word-spacing:11.212800pt;}
.ws27_c00266{word-spacing:11.859200pt;}
.ws19_c00266{word-spacing:18.912000pt;}
.ws1a_c00266{word-spacing:18.969600pt;}
.ws23_c00266{word-spacing:19.526400pt;}
.ws29_c00266{word-spacing:27.564800pt;}
.ws28_c00266{word-spacing:27.584000pt;}
._0_c00266{margin-left:-1.175680pt;}
._1_c00266{width:0.896000pt;}
._2_c00266{width:2.195200pt;}
.fs3_c00266{font-size:37.440000pt;}
.fs4_c00266{font-size:42.560000pt;}
.fs1_c00266{font-size:48.000000pt;}
.fs0_c00266{font-size:53.440000pt;}
.fs2_c00266{font-size:64.000000pt;}
.y0_c00266{bottom:0.000000pt;}
.y3_c00266{bottom:51.067067pt;}
.y21_c00266{bottom:101.068667pt;}
.y20_c00266{bottom:117.390427pt;}
.y1f_c00266{bottom:133.627067pt;}
.y1e_c00266{bottom:147.147067pt;}
.y1d_c00266{bottom:165.547067pt;}
.y1c_c00266{bottom:183.947067pt;}
.y1b_c00266{bottom:254.587067pt;}
.y1a_c00266{bottom:285.147067pt;}
.y19_c00266{bottom:315.787067pt;}
.y18_c00266{bottom:354.347067pt;}
.y17_c00266{bottom:384.987067pt;}
.y16_c00266{bottom:415.547067pt;}
.y15_c00266{bottom:446.187067pt;}
.y14_c00266{bottom:476.747067pt;}
.y13_c00266{bottom:515.387067pt;}
.y12_c00266{bottom:545.947067pt;}
.y11_c00266{bottom:576.587067pt;}
.y10_c00266{bottom:623.147067pt;}
.yf_c00266{bottom:653.787067pt;}
.ye_c00266{bottom:684.347067pt;}
.yd_c00266{bottom:722.987067pt;}
.yc_c00266{bottom:753.547067pt;}
.yb_c00266{bottom:784.187067pt;}
.ya_c00266{bottom:822.747067pt;}
.y9_c00266{bottom:853.387067pt;}
.y8_c00266{bottom:883.947067pt;}
.y7_c00266{bottom:914.587067pt;}
.y6_c00266{bottom:953.147067pt;}
.y5_c00266{bottom:983.787067pt;}
.y4_c00266{bottom:1014.347067pt;}
.y2_c00266{bottom:1046.987067pt;}
.y1_c00266{bottom:1063.867067pt;}
.h8_c00266{height:42.656250pt;}
.h9_c00266{height:44.388750pt;}
.h1_c00266{height:44.724687pt;}
.h2_c00266{height:50.062500pt;}
.h4_c00266{height:53.562500pt;}
.h5_c00266{height:53.625000pt;}
.h6_c00266{height:54.125000pt;}
.h7_c00266{height:57.894062pt;}
.h3_c00266{height:64.142500pt;}
.h0_c00266{height:1122.666667pt;}
.w1_c00266{width:793.333333pt;}
.w0_c00266{width:793.626667pt;}
.x0_c00266{left:0.000000pt;}
.x1_c00266{left:113.440000pt;}
.x2_c00266{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_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_17e3bf495b2b763ea3b26286.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00267;src:url('chunks/assets/font_e435db0b878302ee94e73f45.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00267;src:url('chunks/assets/font_a6ef3517733d6a2e0cf6a87a.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00267;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00267{font-family:ff5_c00267;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_c00267;src:url('chunks/assets/font_ba7c44b2d53162a417976f40.woff2')format("woff");}.ff6_c00267{font-family:ff6_c00267;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00267;src:url('chunks/assets/font_e5cd2e7712466b6cdffc88ca.woff2')format("woff");}.ff7_c00267{font-family:ff7_c00267;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_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;}
.v2_c00267{vertical-align:15.205920px;}
.v1_c00267{vertical-align:29.880000px;}
.ls1b_c00267{letter-spacing:-0.151200px;}
.ls25_c00267{letter-spacing:-0.054108px;}
.ls24_c00267{letter-spacing:-0.036072px;}
.ls22_c00267{letter-spacing:-0.036000px;}
.ls1d_c00267{letter-spacing:-0.028800px;}
.ls1e_c00267{letter-spacing:-0.023436px;}
.ls1c_c00267{letter-spacing:-0.021600px;}
.ls21_c00267{letter-spacing:-0.014400px;}
.ls1f_c00267{letter-spacing:-0.007812px;}
.ls27_c00267{letter-spacing:-0.007776px;}
.ls20_c00267{letter-spacing:-0.007200px;}
.ls29_c00267{letter-spacing:-0.003888px;}
.ls1a_c00267{letter-spacing:0.000000px;}
.ls14_c00267{letter-spacing:0.003888px;}
.ls19_c00267{letter-spacing:0.004788px;}
.lsb_c00267{letter-spacing:0.006012px;}
.ls3_c00267{letter-spacing:0.007200px;}
.ls9_c00267{letter-spacing:0.012024px;}
.ls17_c00267{letter-spacing:0.014364px;}
.lse_c00267{letter-spacing:0.014400px;}
.lsd_c00267{letter-spacing:0.021600px;}
.lsf_c00267{letter-spacing:0.028728px;}
.ls5_c00267{letter-spacing:0.036000px;}
.ls0_c00267{letter-spacing:0.036072px;}
.ls7_c00267{letter-spacing:0.042084px;}
.ls13_c00267{letter-spacing:0.047880px;}
.ls8_c00267{letter-spacing:0.048096px;}
.ls10_c00267{letter-spacing:0.052668px;}
.ls6_c00267{letter-spacing:0.054108px;}
.ls1_c00267{letter-spacing:0.054756px;}
.ls11_c00267{letter-spacing:0.057456px;}
.ls4_c00267{letter-spacing:0.057600px;}
.ls12_c00267{letter-spacing:0.062244px;}
.lsa_c00267{letter-spacing:0.066132px;}
.ls28_c00267{letter-spacing:0.067032px;}
.ls15_c00267{letter-spacing:0.075960px;}
.ls23_c00267{letter-spacing:0.093600px;}
.lsc_c00267{letter-spacing:0.136080px;}
.ls26_c00267{letter-spacing:0.168336px;}
.ls16_c00267{letter-spacing:0.296856px;}
.ls18_c00267{letter-spacing:0.464040px;}
.ls2_c00267{letter-spacing:34.450920px;}
.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:-19.530000px;}
.ws4_c00267{word-spacing:-10.804752px;}
.ws3_c00267{word-spacing:-10.800864px;}
.ws0_c00267{word-spacing:-10.584756px;}
.ws2_c00267{word-spacing:-9.856080px;}
.ws29_c00267{word-spacing:-0.318636px;}
.ws5_c00267{word-spacing:-0.306612px;}
.wsc_c00267{word-spacing:-0.203112px;}
.wsb_c00267{word-spacing:-0.140616px;}
.ws42_c00267{word-spacing:-0.028728px;}
.ws36_c00267{word-spacing:-0.009576px;}
.wsa_c00267{word-spacing:-0.007200px;}
.ws6_c00267{word-spacing:0.000000px;}
.ws40_c00267{word-spacing:0.004788px;}
.ws43_c00267{word-spacing:0.014364px;}
.ws20_c00267{word-spacing:0.014400px;}
.ws17_c00267{word-spacing:0.028800px;}
.ws16_c00267{word-spacing:0.036000px;}
.ws21_c00267{word-spacing:0.036072px;}
.ws2f_c00267{word-spacing:0.050400px;}
.ws2a_c00267{word-spacing:0.144288px;}
.ws1f_c00267{word-spacing:0.302400px;}
.ws1e_c00267{word-spacing:0.324000px;}
.ws41_c00267{word-spacing:0.363888px;}
.ws39_c00267{word-spacing:1.034208px;}
.ws38_c00267{word-spacing:1.043784px;}
.ws27_c00267{word-spacing:1.106208px;}
.ws28_c00267{word-spacing:1.166328px;}
.ws2e_c00267{word-spacing:1.490400px;}
.ws2d_c00267{word-spacing:1.519200px;}
.ws23_c00267{word-spacing:1.839672px;}
.ws24_c00267{word-spacing:1.875744px;}
.ws1d_c00267{word-spacing:2.512800px;}
.ws1c_c00267{word-spacing:2.563200px;}
.ws25_c00267{word-spacing:2.609208px;}
.ws26_c00267{word-spacing:2.645280px;}
.ws3c_c00267{word-spacing:2.958984px;}
.ws3b_c00267{word-spacing:3.198384px;}
.ws3a_c00267{word-spacing:3.207960px;}
.ws22_c00267{word-spacing:3.288564px;}
.ws11_c00267{word-spacing:3.549600px;}
.ws12_c00267{word-spacing:3.571200px;}
.wsd_c00267{word-spacing:3.607200px;}
.wse_c00267{word-spacing:3.636000px;}
.ws30_c00267{word-spacing:3.931200px;}
.ws31_c00267{word-spacing:3.974400px;}
.ws3d_c00267{word-spacing:4.275684px;}
.ws3f_c00267{word-spacing:4.280472px;}
.ws3e_c00267{word-spacing:4.309200px;}
.ws2c_c00267{word-spacing:4.672800px;}
.ws2b_c00267{word-spacing:4.708800px;}
.ws15_c00267{word-spacing:6.062400px;}
.ws34_c00267{word-spacing:6.105600px;}
.ws13_c00267{word-spacing:6.112800px;}
.ws35_c00267{word-spacing:6.141600px;}
.ws14_c00267{word-spacing:6.271200px;}
.ws37_c00267{word-spacing:7.526736px;}
.ws8_c00267{word-spacing:8.640000px;}
.ws7_c00267{word-spacing:8.661600px;}
.ws10_c00267{word-spacing:9.360000px;}
.wsf_c00267{word-spacing:9.367200px;}
.ws32_c00267{word-spacing:9.727200px;}
.ws33_c00267{word-spacing:9.770400px;}
.ws1b_c00267{word-spacing:14.011200px;}
.ws1a_c00267{word-spacing:14.068800px;}
.ws9_c00267{word-spacing:16.250400px;}
.ws19_c00267{word-spacing:16.617600px;}
.ws18_c00267{word-spacing:16.675200px;}
._3_c00267{margin-left:-2.592000px;}
._0_c00267{margin-left:-1.022040px;}
._1_c00267{width:1.225692px;}
._4_c00267{width:4.538376px;}
._2_c00267{width:16.603200px;}
.fc0_c00267{color:rgb(0,0,0);}
.fs5_c00267{font-size:38.880000px;}
.fs3_c00267{font-size:42.120000px;}
.fs6_c00267{font-size:47.880000px;}
.fs2_c00267{font-size:54.000000px;}
.fs0_c00267{font-size:60.120000px;}
.fs1_c00267{font-size:72.000000px;}
.fs4_c00267{font-size:78.120000px;}
.y0_c00267{bottom:0.000000px;}
.y3_c00267{bottom:57.450450px;}
.y4_c00267{bottom:61.410450px;}
.y28_c00267{bottom:113.707470px;}
.y27_c00267{bottom:132.069450px;}
.y26_c00267{bottom:145.834950px;}
.y25_c00267{bottom:159.607470px;}
.y24_c00267{bottom:173.468730px;}
.y23_c00267{bottom:187.234230px;}
.y22_c00267{bottom:205.500450px;}
.y21_c00267{bottom:220.710450px;}
.y20_c00267{bottom:241.410450px;}
.y1f_c00267{bottom:262.110450px;}
.y1e_c00267{bottom:310.170450px;}
.y1d_c00267{bottom:340.500450px;}
.y1c_c00267{bottom:370.920450px;}
.y1b_c00267{bottom:414.210450px;}
.y1a_c00267{bottom:448.680450px;}
.y19_c00267{bottom:483.060450px;}
.y18_c00267{bottom:520.569120px;}
.y17_c00267{bottom:537.402720px;}
.y16_c00267{bottom:554.326500px;}
.y15_c00267{bottom:571.160100px;}
.y14_c00267{bottom:588.083880px;}
.y13_c00267{bottom:613.920450px;}
.y12_c00267{bottom:654.780450px;}
.y11_c00267{bottom:689.160450px;}
.y10_c00267{bottom:723.630450px;}
.yf_c00267{bottom:758.010450px;}
.ye_c00267{bottom:792.480450px;}
.yd_c00267{bottom:835.860450px;}
.yc_c00267{bottom:870.330450px;}
.yb_c00267{bottom:904.710450px;}
.ya_c00267{bottom:939.180450px;}
.y9_c00267{bottom:973.560450px;}
.y8_c00267{bottom:1018.650450px;}
.y7_c00267{bottom:1072.290450px;}
.y6_c00267{bottom:1106.760450px;}
.y5_c00267{bottom:1141.140450px;}
.y2_c00267{bottom:1173.810450px;}
.y1_c00267{bottom:1196.850450px;}
.h2_c00267{height:47.988281px;}
.h9_c00267{height:49.937344px;}
.h1_c00267{height:50.315273px;}
.h8_c00267{height:50.401193px;}
.h3_c00267{height:56.320312px;}
.h5_c00267{height:60.257812px;}
.h7_c00267{height:60.890625px;}
.h4_c00267{height:65.130820px;}
.h6_c00267{height:81.476719px;}
.h0_c00267{height:1263.000000px;}
.w1_c00267{width:892.500000px;}
.w0_c00267{width:892.830000px;}
.x0_c00267{left:0.000000px;}
.x2_c00267{left:127.620000px;}
.x6_c00267{left:154.620000px;}
.x5_c00267{left:180.810000px;}
.x4_c00267{left:435.240000px;}
.x3_c00267{left:446.490000px;}
.x1_c00267{left:490.770000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.v2_c00267{vertical-align:13.516373pt;}
.v1_c00267{vertical-align:26.560000pt;}
.ls1b_c00267{letter-spacing:-0.134400pt;}
.ls25_c00267{letter-spacing:-0.048096pt;}
.ls24_c00267{letter-spacing:-0.032064pt;}
.ls22_c00267{letter-spacing:-0.032000pt;}
.ls1d_c00267{letter-spacing:-0.025600pt;}
.ls1e_c00267{letter-spacing:-0.020832pt;}
.ls1c_c00267{letter-spacing:-0.019200pt;}
.ls21_c00267{letter-spacing:-0.012800pt;}
.ls1f_c00267{letter-spacing:-0.006944pt;}
.ls27_c00267{letter-spacing:-0.006912pt;}
.ls20_c00267{letter-spacing:-0.006400pt;}
.ls29_c00267{letter-spacing:-0.003456pt;}
.ls1a_c00267{letter-spacing:0.000000pt;}
.ls14_c00267{letter-spacing:0.003456pt;}
.ls19_c00267{letter-spacing:0.004256pt;}
.lsb_c00267{letter-spacing:0.005344pt;}
.ls3_c00267{letter-spacing:0.006400pt;}
.ls9_c00267{letter-spacing:0.010688pt;}
.ls17_c00267{letter-spacing:0.012768pt;}
.lse_c00267{letter-spacing:0.012800pt;}
.lsd_c00267{letter-spacing:0.019200pt;}
.lsf_c00267{letter-spacing:0.025536pt;}
.ls5_c00267{letter-spacing:0.032000pt;}
.ls0_c00267{letter-spacing:0.032064pt;}
.ls7_c00267{letter-spacing:0.037408pt;}
.ls13_c00267{letter-spacing:0.042560pt;}
.ls8_c00267{letter-spacing:0.042752pt;}
.ls10_c00267{letter-spacing:0.046816pt;}
.ls6_c00267{letter-spacing:0.048096pt;}
.ls1_c00267{letter-spacing:0.048672pt;}
.ls11_c00267{letter-spacing:0.051072pt;}
.ls4_c00267{letter-spacing:0.051200pt;}
.ls12_c00267{letter-spacing:0.055328pt;}
.lsa_c00267{letter-spacing:0.058784pt;}
.ls28_c00267{letter-spacing:0.059584pt;}
.ls15_c00267{letter-spacing:0.067520pt;}
.ls23_c00267{letter-spacing:0.083200pt;}
.lsc_c00267{letter-spacing:0.120960pt;}
.ls26_c00267{letter-spacing:0.149632pt;}
.ls16_c00267{letter-spacing:0.263872pt;}
.ls18_c00267{letter-spacing:0.412480pt;}
.ls2_c00267{letter-spacing:30.623040pt;}
.ws1_c00267{word-spacing:-17.360000pt;}
.ws4_c00267{word-spacing:-9.604224pt;}
.ws3_c00267{word-spacing:-9.600768pt;}
.ws0_c00267{word-spacing:-9.408672pt;}
.ws2_c00267{word-spacing:-8.760960pt;}
.ws29_c00267{word-spacing:-0.283232pt;}
.ws5_c00267{word-spacing:-0.272544pt;}
.wsc_c00267{word-spacing:-0.180544pt;}
.wsb_c00267{word-spacing:-0.124992pt;}
.ws42_c00267{word-spacing:-0.025536pt;}
.ws36_c00267{word-spacing:-0.008512pt;}
.wsa_c00267{word-spacing:-0.006400pt;}
.ws6_c00267{word-spacing:0.000000pt;}
.ws40_c00267{word-spacing:0.004256pt;}
.ws43_c00267{word-spacing:0.012768pt;}
.ws20_c00267{word-spacing:0.012800pt;}
.ws17_c00267{word-spacing:0.025600pt;}
.ws16_c00267{word-spacing:0.032000pt;}
.ws21_c00267{word-spacing:0.032064pt;}
.ws2f_c00267{word-spacing:0.044800pt;}
.ws2a_c00267{word-spacing:0.128256pt;}
.ws1f_c00267{word-spacing:0.268800pt;}
.ws1e_c00267{word-spacing:0.288000pt;}
.ws41_c00267{word-spacing:0.323456pt;}
.ws39_c00267{word-spacing:0.919296pt;}
.ws38_c00267{word-spacing:0.927808pt;}
.ws27_c00267{word-spacing:0.983296pt;}
.ws28_c00267{word-spacing:1.036736pt;}
.ws2e_c00267{word-spacing:1.324800pt;}
.ws2d_c00267{word-spacing:1.350400pt;}
.ws23_c00267{word-spacing:1.635264pt;}
.ws24_c00267{word-spacing:1.667328pt;}
.ws1d_c00267{word-spacing:2.233600pt;}
.ws1c_c00267{word-spacing:2.278400pt;}
.ws25_c00267{word-spacing:2.319296pt;}
.ws26_c00267{word-spacing:2.351360pt;}
.ws3c_c00267{word-spacing:2.630208pt;}
.ws3b_c00267{word-spacing:2.843008pt;}
.ws3a_c00267{word-spacing:2.851520pt;}
.ws22_c00267{word-spacing:2.923168pt;}
.ws11_c00267{word-spacing:3.155200pt;}
.ws12_c00267{word-spacing:3.174400pt;}
.wsd_c00267{word-spacing:3.206400pt;}
.wse_c00267{word-spacing:3.232000pt;}
.ws30_c00267{word-spacing:3.494400pt;}
.ws31_c00267{word-spacing:3.532800pt;}
.ws3d_c00267{word-spacing:3.800608pt;}
.ws3f_c00267{word-spacing:3.804864pt;}
.ws3e_c00267{word-spacing:3.830400pt;}
.ws2c_c00267{word-spacing:4.153600pt;}
.ws2b_c00267{word-spacing:4.185600pt;}
.ws15_c00267{word-spacing:5.388800pt;}
.ws34_c00267{word-spacing:5.427200pt;}
.ws13_c00267{word-spacing:5.433600pt;}
.ws35_c00267{word-spacing:5.459200pt;}
.ws14_c00267{word-spacing:5.574400pt;}
.ws37_c00267{word-spacing:6.690432pt;}
.ws8_c00267{word-spacing:7.680000pt;}
.ws7_c00267{word-spacing:7.699200pt;}
.ws10_c00267{word-spacing:8.320000pt;}
.wsf_c00267{word-spacing:8.326400pt;}
.ws32_c00267{word-spacing:8.646400pt;}
.ws33_c00267{word-spacing:8.684800pt;}
.ws1b_c00267{word-spacing:12.454400pt;}
.ws1a_c00267{word-spacing:12.505600pt;}
.ws9_c00267{word-spacing:14.444800pt;}
.ws19_c00267{word-spacing:14.771200pt;}
.ws18_c00267{word-spacing:14.822400pt;}
._3_c00267{margin-left:-2.304000pt;}
._0_c00267{margin-left:-0.908480pt;}
._1_c00267{width:1.089504pt;}
._4_c00267{width:4.034112pt;}
._2_c00267{width:14.758400pt;}
.fs5_c00267{font-size:34.560000pt;}
.fs3_c00267{font-size:37.440000pt;}
.fs6_c00267{font-size:42.560000pt;}
.fs2_c00267{font-size:48.000000pt;}
.fs0_c00267{font-size:53.440000pt;}
.fs1_c00267{font-size:64.000000pt;}
.fs4_c00267{font-size:69.440000pt;}
.y0_c00267{bottom:0.000000pt;}
.y3_c00267{bottom:51.067067pt;}
.y4_c00267{bottom:54.587067pt;}
.y28_c00267{bottom:101.073307pt;}
.y27_c00267{bottom:117.395067pt;}
.y26_c00267{bottom:129.631067pt;}
.y25_c00267{bottom:141.873307pt;}
.y24_c00267{bottom:154.194427pt;}
.y23_c00267{bottom:166.430427pt;}
.y22_c00267{bottom:182.667067pt;}
.y21_c00267{bottom:196.187067pt;}
.y20_c00267{bottom:214.587067pt;}
.y1f_c00267{bottom:232.987067pt;}
.y1e_c00267{bottom:275.707067pt;}
.y1d_c00267{bottom:302.667067pt;}
.y1c_c00267{bottom:329.707067pt;}
.y1b_c00267{bottom:368.187067pt;}
.y1a_c00267{bottom:398.827067pt;}
.y19_c00267{bottom:429.387067pt;}
.y18_c00267{bottom:462.728107pt;}
.y17_c00267{bottom:477.691307pt;}
.y16_c00267{bottom:492.734667pt;}
.y15_c00267{bottom:507.697867pt;}
.y14_c00267{bottom:522.741227pt;}
.y13_c00267{bottom:545.707067pt;}
.y12_c00267{bottom:582.027067pt;}
.y11_c00267{bottom:612.587067pt;}
.y10_c00267{bottom:643.227067pt;}
.yf_c00267{bottom:673.787067pt;}
.ye_c00267{bottom:704.427067pt;}
.yd_c00267{bottom:742.987067pt;}
.yc_c00267{bottom:773.627067pt;}
.yb_c00267{bottom:804.187067pt;}
.ya_c00267{bottom:834.827067pt;}
.y9_c00267{bottom:865.387067pt;}
.y8_c00267{bottom:905.467067pt;}
.y7_c00267{bottom:953.147067pt;}
.y6_c00267{bottom:983.787067pt;}
.y5_c00267{bottom:1014.347067pt;}
.y2_c00267{bottom:1043.387067pt;}
.y1_c00267{bottom:1063.867067pt;}
.h2_c00267{height:42.656250pt;}
.h9_c00267{height:44.388750pt;}
.h1_c00267{height:44.724687pt;}
.h8_c00267{height:44.801061pt;}
.h3_c00267{height:50.062500pt;}
.h5_c00267{height:53.562500pt;}
.h7_c00267{height:54.125000pt;}
.h4_c00267{height:57.894063pt;}
.h6_c00267{height:72.423750pt;}
.h0_c00267{height:1122.666667pt;}
.w1_c00267{width:793.333333pt;}
.w0_c00267{width:793.626667pt;}
.x0_c00267{left:0.000000pt;}
.x2_c00267{left:113.440000pt;}
.x6_c00267{left:137.440000pt;}
.x5_c00267{left:160.720000pt;}
.x4_c00267{left:386.880000pt;}
.x3_c00267{left:396.880000pt;}
.x1_c00267{left:436.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_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_61f967f05cf8910c4e49a789.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.100098;font-style:normal;font-weight:normal;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_9f2a17af60c9f2362b6a67c4.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;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_c00268;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00268;src:url('chunks/assets/font_24a147fcd1129732333528cd.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00268{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_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;}
.v1_c00268{vertical-align:15.840000px;}
.v2_c00268{vertical-align:30.618000px;}
.ls28_c00268{letter-spacing:-0.232200px;}
.ls12_c00268{letter-spacing:-0.151200px;}
.ls2b_c00268{letter-spacing:-0.129600px;}
.ls27_c00268{letter-spacing:-0.118800px;}
.ls17_c00268{letter-spacing:-0.113400px;}
.ls18_c00268{letter-spacing:-0.102600px;}
.ls24_c00268{letter-spacing:-0.091800px;}
.ls1a_c00268{letter-spacing:-0.086400px;}
.ls1d_c00268{letter-spacing:-0.081000px;}
.ls1e_c00268{letter-spacing:-0.075600px;}
.ls1b_c00268{letter-spacing:-0.070200px;}
.ls26_c00268{letter-spacing:-0.064800px;}
.ls1c_c00268{letter-spacing:-0.059400px;}
.ls2a_c00268{letter-spacing:-0.048600px;}
.ls22_c00268{letter-spacing:-0.043200px;}
.ls2c_c00268{letter-spacing:-0.037800px;}
.ls1f_c00268{letter-spacing:-0.032400px;}
.ls14_c00268{letter-spacing:-0.028800px;}
.ls29_c00268{letter-spacing:-0.027000px;}
.ls20_c00268{letter-spacing:-0.021600px;}
.ls19_c00268{letter-spacing:-0.016200px;}
.ls13_c00268{letter-spacing:-0.014400px;}
.ls16_c00268{letter-spacing:-0.010800px;}
.ls15_c00268{letter-spacing:-0.007200px;}
.ls23_c00268{letter-spacing:-0.005400px;}
.ls11_c00268{letter-spacing:0.000000px;}
.lsd_c00268{letter-spacing:0.010800px;}
.ls25_c00268{letter-spacing:0.021600px;}
.ls9_c00268{letter-spacing:0.027000px;}
.lsc_c00268{letter-spacing:0.037800px;}
.ls0_c00268{letter-spacing:0.048096px;}
.ls21_c00268{letter-spacing:0.048600px;}
.ls10_c00268{letter-spacing:0.059400px;}
.ls4_c00268{letter-spacing:0.064800px;}
.lsb_c00268{letter-spacing:0.070200px;}
.ls6_c00268{letter-spacing:0.081000px;}
.ls2_c00268{letter-spacing:0.086400px;}
.ls3_c00268{letter-spacing:0.091800px;}
.lsf_c00268{letter-spacing:0.097200px;}
.ls8_c00268{letter-spacing:0.102600px;}
.ls7_c00268{letter-spacing:0.108000px;}
.ls2d_c00268{letter-spacing:0.113400px;}
.lse_c00268{letter-spacing:0.118800px;}
.lsa_c00268{letter-spacing:0.140400px;}
.ls5_c00268{letter-spacing:0.145800px;}
.ls1_c00268{letter-spacing:1212.120000px;}
.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;}
}
.ws11_c00268{word-spacing:-0.324000px;}
.ws1_c00268{word-spacing:0.000000px;}
.ws19_c00268{word-spacing:0.037800px;}
.ws0_c00268{word-spacing:0.042084px;}
.ws2e_c00268{word-spacing:0.064800px;}
.ws16_c00268{word-spacing:0.075600px;}
.ws27_c00268{word-spacing:0.081000px;}
.wsd_c00268{word-spacing:0.086400px;}
.ws6_c00268{word-spacing:0.091800px;}
.ws13_c00268{word-spacing:0.097200px;}
.ws1b_c00268{word-spacing:0.108000px;}
.wsf_c00268{word-spacing:0.113400px;}
.ws2d_c00268{word-spacing:0.118800px;}
.ws1c_c00268{word-spacing:0.145800px;}
.ws18_c00268{word-spacing:0.151200px;}
.ws22_c00268{word-spacing:0.167400px;}
.ws10_c00268{word-spacing:0.178200px;}
.ws1e_c00268{word-spacing:0.183600px;}
.ws1a_c00268{word-spacing:0.189000px;}
.ws7_c00268{word-spacing:0.194400px;}
.ws12_c00268{word-spacing:0.199800px;}
.ws14_c00268{word-spacing:0.210600px;}
.ws2c_c00268{word-spacing:0.216000px;}
.ws1d_c00268{word-spacing:0.221400px;}
.ws29_c00268{word-spacing:0.226800px;}
.wsa_c00268{word-spacing:0.237600px;}
.ws26_c00268{word-spacing:0.243000px;}
.ws9_c00268{word-spacing:0.248400px;}
.wsc_c00268{word-spacing:0.253800px;}
.wsb_c00268{word-spacing:0.259200px;}
.ws8_c00268{word-spacing:0.264600px;}
.ws1f_c00268{word-spacing:0.270000px;}
.ws2b_c00268{word-spacing:0.291600px;}
.ws2a_c00268{word-spacing:0.329400px;}
.ws25_c00268{word-spacing:0.410400px;}
.ws2_c00268{word-spacing:2.894400px;}
.ws4_c00268{word-spacing:7.207200px;}
.ws3_c00268{word-spacing:7.279200px;}
.ws5_c00268{word-spacing:229.149000px;}
.wse_c00268{word-spacing:232.983000px;}
.ws15_c00268{word-spacing:232.993800px;}
.ws17_c00268{word-spacing:233.010000px;}
.ws21_c00268{word-spacing:233.166600px;}
.ws28_c00268{word-spacing:233.182800px;}
.ws23_c00268{word-spacing:233.193600px;}
.ws24_c00268{word-spacing:233.220600px;}
.ws20_c00268{word-spacing:245.608200px;}
._16_c00268{margin-left:-245.754000px;}
._9_c00268{margin-left:-233.712000px;}
._1a_c00268{margin-left:-232.686000px;}
._0_c00268{margin-left:-1.322640px;}
._5_c00268{width:1.026000px;}
._17_c00268{width:2.214000px;}
._21_c00268{width:61.668000px;}
._1b_c00268{width:94.381200px;}
._a_c00268{width:98.064000px;}
._b_c00268{width:102.438000px;}
._10_c00268{width:152.900640px;}
._f_c00268{width:158.382000px;}
._18_c00268{width:172.302480px;}
._2_c00268{width:182.520000px;}
._14_c00268{width:189.594000px;}
._3_c00268{width:190.782000px;}
._1_c00268{width:198.720000px;}
._1f_c00268{width:200.922480px;}
._19_c00268{width:211.436640px;}
._1e_c00268{width:220.590000px;}
._d_c00268{width:229.796640px;}
._c_c00268{width:232.578000px;}
._13_c00268{width:234.549360px;}
._12_c00268{width:241.028640px;}
._4_c00268{width:245.818800px;}
._6_c00268{width:249.469200px;}
._1c_c00268{width:272.737800px;}
._15_c00268{width:275.469840px;}
._8_c00268{width:286.383600px;}
._11_c00268{width:335.388600px;}
._20_c00268{width:382.503600px;}
._e_c00268{width:384.091200px;}
._22_c00268{width:393.022800px;}
._1d_c00268{width:432.712440px;}
._7_c00268{width:467.650800px;}
.fc0_c00268{color:rgb(0,0,0);}
.fs1_c00268{font-size:54.000000px;}
.fs0_c00268{font-size:60.120000px;}
.fs2_c00268{font-size:72.000000px;}
.y0_c00268{bottom:0.000000px;}
.y3_c00268{bottom:57.450450px;}
.y59_c00268{bottom:135.017100px;}
.y5f_c00268{bottom:142.644600px;}
.y58_c00268{bottom:150.231600px;}
.y5b_c00268{bottom:157.778100px;}
.y5e_c00268{bottom:157.859100px;}
.y5a_c00268{bottom:165.432600px;}
.y57_c00268{bottom:165.446100px;}
.y5d_c00268{bottom:172.979100px;}
.y56_c00268{bottom:180.566100px;}
.y5c_c00268{bottom:188.193600px;}
.y55_c00268{bottom:195.780600px;}
.y50_c00268{bottom:211.696950px;}
.y4f_c00268{bottom:226.911450px;}
.y52_c00268{bottom:226.992450px;}
.y51_c00268{bottom:234.552450px;}
.y53_c00268{bottom:242.112450px;}
.y4e_c00268{bottom:242.125950px;}
.y54_c00268{bottom:242.220450px;}
.y4d_c00268{bottom:257.340450px;}
.y4c_c00268{bottom:273.270450px;}
.y49_c00268{bottom:280.830450px;}
.y48_c00268{bottom:288.390450px;}
.y4a_c00268{bottom:296.044950px;}
.y4b_c00268{bottom:303.604950px;}
.y47_c00268{bottom:319.530450px;}
.y46_c00268{bottom:335.460600px;}
.y44_c00268{bottom:351.386100px;}
.y43_c00268{bottom:359.040600px;}
.y45_c00268{bottom:366.600600px;}
.y42_c00268{bottom:382.530450px;}
.y41_c00268{bottom:398.451450px;}
.y40_c00268{bottom:413.665950px;}
.y3d_c00268{bottom:413.760450px;}
.y3c_c00268{bottom:421.320450px;}
.y3e_c00268{bottom:428.880450px;}
.y3f_c00268{bottom:444.094950px;}
.y3a_c00268{bottom:460.020600px;}
.y39_c00268{bottom:479.640450px;}
.y3b_c00268{bottom:491.250600px;}
.y37_c00268{bottom:499.255950px;}
.y36_c00268{bottom:506.910450px;}
.y38_c00268{bottom:514.470450px;}
.y34_c00268{bottom:530.400450px;}
.y33_c00268{bottom:537.960450px;}
.y35_c00268{bottom:545.520450px;}
.y32_c00268{bottom:561.540450px;}
.y31_c00268{bottom:569.100450px;}
.y30_c00268{bottom:592.590450px;}
.y2f_c00268{bottom:608.520450px;}
.y2e_c00268{bottom:625.350450px;}
.y2d_c00268{bottom:642.157950px;}
.y28_c00268{bottom:642.171450px;}
.y2a_c00268{bottom:649.812450px;}
.y2c_c00268{bottom:657.372450px;}
.y27_c00268{bottom:657.385950px;}
.y29_c00268{bottom:665.026950px;}
.y25_c00268{bottom:668.730450px;}
.y2b_c00268{bottom:672.586950px;}
.y26_c00268{bottom:672.600450px;}
.y24_c00268{bottom:688.530450px;}
.y23_c00268{bottom:705.810450px;}
.y22_c00268{bottom:723.000450px;}
.y1f_c00268{bottom:730.560450px;}
.y1e_c00268{bottom:738.120450px;}
.y20_c00268{bottom:745.774950px;}
.y21_c00268{bottom:753.334950px;}
.y1d_c00268{bottom:769.260450px;}
.y1b_c00268{bottom:785.190450px;}
.y1a_c00268{bottom:801.120450px;}
.y19_c00268{bottom:817.140450px;}
.y18_c00268{bottom:833.070450px;}
.y16_c00268{bottom:849.000450px;}
.y15_c00268{bottom:856.560450px;}
.y17_c00268{bottom:864.120450px;}
.y1c_c00268{bottom:865.740450px;}
.y14_c00268{bottom:880.140450px;}
.y13_c00268{bottom:896.070450px;}
.y11_c00268{bottom:912.000450px;}
.y10_c00268{bottom:919.560450px;}
.y12_c00268{bottom:927.120450px;}
.yf_c00268{bottom:943.140450px;}
.ye_c00268{bottom:959.065950px;}
.yd_c00268{bottom:974.185950px;}
.y9_c00268{bottom:974.280450px;}
.y8_c00268{bottom:981.840450px;}
.yc_c00268{bottom:989.400450px;}
.ya_c00268{bottom:989.494950px;}
.yb_c00268{bottom:1004.614950px;}
.y7_c00268{bottom:1032.420450px;}
.y6_c00268{bottom:1080.480450px;}
.y5_c00268{bottom:1110.900450px;}
.y4_c00268{bottom:1141.230450px;}
.y2_c00268{bottom:1177.860450px;}
.y1_c00268{bottom:1196.850450px;}
.h7_c00268{height:45.193359px;}
.h5_c00268{height:45.246094px;}
.h1_c00268{height:50.315273px;}
.h2_c00268{height:56.320312px;}
.h4_c00268{height:60.257812px;}
.h3_c00268{height:72.160312px;}
.h8_c00268{height:75.433359px;}
.h6_c00268{height:75.811359px;}
.h0_c00268{height:1263.000000px;}
.w1_c00268{width:892.500000px;}
.w0_c00268{width:892.830000px;}
.x0_c00268{left:0.000000px;}
.x2_c00268{left:119.430000px;}
.x1_c00268{left:127.620000px;}
.x8_c00268{left:137.790000px;}
.x9_c00268{left:170.730000px;}
.x11_c00268{left:175.225500px;}
.xd_c00268{left:176.755500px;}
.xa_c00268{left:178.654500px;}
.xc_c00268{left:181.521000px;}
.x10_c00268{left:185.580000px;}
.xe_c00268{left:188.010000px;}
.xf_c00268{left:195.570000px;}
.xb_c00268{left:203.130000px;}
.x12_c00268{left:210.231000px;}
.x7_c00268{left:214.920000px;}
.x3_c00268{left:218.070000px;}
.x4_c00268{left:289.174500px;}
.x5_c00268{left:463.054500px;}
.x6_c00268{left:583.380000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.v1_c00268{vertical-align:14.080000pt;}
.v2_c00268{vertical-align:27.216000pt;}
.ls28_c00268{letter-spacing:-0.206400pt;}
.ls12_c00268{letter-spacing:-0.134400pt;}
.ls2b_c00268{letter-spacing:-0.115200pt;}
.ls27_c00268{letter-spacing:-0.105600pt;}
.ls17_c00268{letter-spacing:-0.100800pt;}
.ls18_c00268{letter-spacing:-0.091200pt;}
.ls24_c00268{letter-spacing:-0.081600pt;}
.ls1a_c00268{letter-spacing:-0.076800pt;}
.ls1d_c00268{letter-spacing:-0.072000pt;}
.ls1e_c00268{letter-spacing:-0.067200pt;}
.ls1b_c00268{letter-spacing:-0.062400pt;}
.ls26_c00268{letter-spacing:-0.057600pt;}
.ls1c_c00268{letter-spacing:-0.052800pt;}
.ls2a_c00268{letter-spacing:-0.043200pt;}
.ls22_c00268{letter-spacing:-0.038400pt;}
.ls2c_c00268{letter-spacing:-0.033600pt;}
.ls1f_c00268{letter-spacing:-0.028800pt;}
.ls14_c00268{letter-spacing:-0.025600pt;}
.ls29_c00268{letter-spacing:-0.024000pt;}
.ls20_c00268{letter-spacing:-0.019200pt;}
.ls19_c00268{letter-spacing:-0.014400pt;}
.ls13_c00268{letter-spacing:-0.012800pt;}
.ls16_c00268{letter-spacing:-0.009600pt;}
.ls15_c00268{letter-spacing:-0.006400pt;}
.ls23_c00268{letter-spacing:-0.004800pt;}
.ls11_c00268{letter-spacing:0.000000pt;}
.lsd_c00268{letter-spacing:0.009600pt;}
.ls25_c00268{letter-spacing:0.019200pt;}
.ls9_c00268{letter-spacing:0.024000pt;}
.lsc_c00268{letter-spacing:0.033600pt;}
.ls0_c00268{letter-spacing:0.042752pt;}
.ls21_c00268{letter-spacing:0.043200pt;}
.ls10_c00268{letter-spacing:0.052800pt;}
.ls4_c00268{letter-spacing:0.057600pt;}
.lsb_c00268{letter-spacing:0.062400pt;}
.ls6_c00268{letter-spacing:0.072000pt;}
.ls2_c00268{letter-spacing:0.076800pt;}
.ls3_c00268{letter-spacing:0.081600pt;}
.lsf_c00268{letter-spacing:0.086400pt;}
.ls8_c00268{letter-spacing:0.091200pt;}
.ls7_c00268{letter-spacing:0.096000pt;}
.ls2d_c00268{letter-spacing:0.100800pt;}
.lse_c00268{letter-spacing:0.105600pt;}
.lsa_c00268{letter-spacing:0.124800pt;}
.ls5_c00268{letter-spacing:0.129600pt;}
.ls1_c00268{letter-spacing:1077.440000pt;}
.ws11_c00268{word-spacing:-0.288000pt;}
.ws1_c00268{word-spacing:0.000000pt;}
.ws19_c00268{word-spacing:0.033600pt;}
.ws0_c00268{word-spacing:0.037408pt;}
.ws2e_c00268{word-spacing:0.057600pt;}
.ws16_c00268{word-spacing:0.067200pt;}
.ws27_c00268{word-spacing:0.072000pt;}
.wsd_c00268{word-spacing:0.076800pt;}
.ws6_c00268{word-spacing:0.081600pt;}
.ws13_c00268{word-spacing:0.086400pt;}
.ws1b_c00268{word-spacing:0.096000pt;}
.wsf_c00268{word-spacing:0.100800pt;}
.ws2d_c00268{word-spacing:0.105600pt;}
.ws1c_c00268{word-spacing:0.129600pt;}
.ws18_c00268{word-spacing:0.134400pt;}
.ws22_c00268{word-spacing:0.148800pt;}
.ws10_c00268{word-spacing:0.158400pt;}
.ws1e_c00268{word-spacing:0.163200pt;}
.ws1a_c00268{word-spacing:0.168000pt;}
.ws7_c00268{word-spacing:0.172800pt;}
.ws12_c00268{word-spacing:0.177600pt;}
.ws14_c00268{word-spacing:0.187200pt;}
.ws2c_c00268{word-spacing:0.192000pt;}
.ws1d_c00268{word-spacing:0.196800pt;}
.ws29_c00268{word-spacing:0.201600pt;}
.wsa_c00268{word-spacing:0.211200pt;}
.ws26_c00268{word-spacing:0.216000pt;}
.ws9_c00268{word-spacing:0.220800pt;}
.wsc_c00268{word-spacing:0.225600pt;}
.wsb_c00268{word-spacing:0.230400pt;}
.ws8_c00268{word-spacing:0.235200pt;}
.ws1f_c00268{word-spacing:0.240000pt;}
.ws2b_c00268{word-spacing:0.259200pt;}
.ws2a_c00268{word-spacing:0.292800pt;}
.ws25_c00268{word-spacing:0.364800pt;}
.ws2_c00268{word-spacing:2.572800pt;}
.ws4_c00268{word-spacing:6.406400pt;}
.ws3_c00268{word-spacing:6.470400pt;}
.ws5_c00268{word-spacing:203.688000pt;}
.wse_c00268{word-spacing:207.096000pt;}
.ws15_c00268{word-spacing:207.105600pt;}
.ws17_c00268{word-spacing:207.120000pt;}
.ws21_c00268{word-spacing:207.259200pt;}
.ws28_c00268{word-spacing:207.273600pt;}
.ws23_c00268{word-spacing:207.283200pt;}
.ws24_c00268{word-spacing:207.307200pt;}
.ws20_c00268{word-spacing:218.318400pt;}
._16_c00268{margin-left:-218.448000pt;}
._9_c00268{margin-left:-207.744000pt;}
._1a_c00268{margin-left:-206.832000pt;}
._0_c00268{margin-left:-1.175680pt;}
._5_c00268{width:0.912000pt;}
._17_c00268{width:1.968000pt;}
._21_c00268{width:54.816000pt;}
._1b_c00268{width:83.894400pt;}
._a_c00268{width:87.168000pt;}
._b_c00268{width:91.056000pt;}
._10_c00268{width:135.911680pt;}
._f_c00268{width:140.784000pt;}
._18_c00268{width:153.157760pt;}
._2_c00268{width:162.240000pt;}
._14_c00268{width:168.528000pt;}
._3_c00268{width:169.584000pt;}
._1_c00268{width:176.640000pt;}
._1f_c00268{width:178.597760pt;}
._19_c00268{width:187.943680pt;}
._1e_c00268{width:196.080000pt;}
._d_c00268{width:204.263680pt;}
._c_c00268{width:206.736000pt;}
._13_c00268{width:208.488320pt;}
._12_c00268{width:214.247680pt;}
._4_c00268{width:218.505600pt;}
._6_c00268{width:221.750400pt;}
._1c_c00268{width:242.433600pt;}
._15_c00268{width:244.862080pt;}
._8_c00268{width:254.563200pt;}
._11_c00268{width:298.123200pt;}
._20_c00268{width:340.003200pt;}
._e_c00268{width:341.414400pt;}
._22_c00268{width:349.353600pt;}
._1d_c00268{width:384.633280pt;}
._7_c00268{width:415.689600pt;}
.fs1_c00268{font-size:48.000000pt;}
.fs0_c00268{font-size:53.440000pt;}
.fs2_c00268{font-size:64.000000pt;}
.y0_c00268{bottom:0.000000pt;}
.y3_c00268{bottom:51.067067pt;}
.y59_c00268{bottom:120.015200pt;}
.y5f_c00268{bottom:126.795200pt;}
.y58_c00268{bottom:133.539200pt;}
.y5b_c00268{bottom:140.247200pt;}
.y5e_c00268{bottom:140.319200pt;}
.y5a_c00268{bottom:147.051200pt;}
.y57_c00268{bottom:147.063200pt;}
.y5d_c00268{bottom:153.759200pt;}
.y56_c00268{bottom:160.503200pt;}
.y5c_c00268{bottom:167.283200pt;}
.y55_c00268{bottom:174.027200pt;}
.y50_c00268{bottom:188.175067pt;}
.y4f_c00268{bottom:201.699067pt;}
.y52_c00268{bottom:201.771067pt;}
.y51_c00268{bottom:208.491067pt;}
.y53_c00268{bottom:215.211067pt;}
.y4e_c00268{bottom:215.223067pt;}
.y54_c00268{bottom:215.307067pt;}
.y4d_c00268{bottom:228.747067pt;}
.y4c_c00268{bottom:242.907067pt;}
.y49_c00268{bottom:249.627067pt;}
.y48_c00268{bottom:256.347067pt;}
.y4a_c00268{bottom:263.151067pt;}
.y4b_c00268{bottom:269.871067pt;}
.y47_c00268{bottom:284.027067pt;}
.y46_c00268{bottom:298.187200pt;}
.y44_c00268{bottom:312.343200pt;}
.y43_c00268{bottom:319.147200pt;}
.y45_c00268{bottom:325.867200pt;}
.y42_c00268{bottom:340.027067pt;}
.y41_c00268{bottom:354.179067pt;}
.y40_c00268{bottom:367.703067pt;}
.y3d_c00268{bottom:367.787067pt;}
.y3c_c00268{bottom:374.507067pt;}
.y3e_c00268{bottom:381.227067pt;}
.y3f_c00268{bottom:394.751067pt;}
.y3a_c00268{bottom:408.907200pt;}
.y39_c00268{bottom:426.347067pt;}
.y3b_c00268{bottom:436.667200pt;}
.y37_c00268{bottom:443.783067pt;}
.y36_c00268{bottom:450.587067pt;}
.y38_c00268{bottom:457.307067pt;}
.y34_c00268{bottom:471.467067pt;}
.y33_c00268{bottom:478.187067pt;}
.y35_c00268{bottom:484.907067pt;}
.y32_c00268{bottom:499.147067pt;}
.y31_c00268{bottom:505.867067pt;}
.y30_c00268{bottom:526.747067pt;}
.y2f_c00268{bottom:540.907067pt;}
.y2e_c00268{bottom:555.867067pt;}
.y2d_c00268{bottom:570.807067pt;}
.y28_c00268{bottom:570.819067pt;}
.y2a_c00268{bottom:577.611067pt;}
.y2c_c00268{bottom:584.331067pt;}
.y27_c00268{bottom:584.343067pt;}
.y29_c00268{bottom:591.135067pt;}
.y25_c00268{bottom:594.427067pt;}
.y2b_c00268{bottom:597.855067pt;}
.y26_c00268{bottom:597.867067pt;}
.y24_c00268{bottom:612.027067pt;}
.y23_c00268{bottom:627.387067pt;}
.y22_c00268{bottom:642.667067pt;}
.y1f_c00268{bottom:649.387067pt;}
.y1e_c00268{bottom:656.107067pt;}
.y20_c00268{bottom:662.911067pt;}
.y21_c00268{bottom:669.631067pt;}
.y1d_c00268{bottom:683.787067pt;}
.y1b_c00268{bottom:697.947067pt;}
.y1a_c00268{bottom:712.107067pt;}
.y19_c00268{bottom:726.347067pt;}
.y18_c00268{bottom:740.507067pt;}
.y16_c00268{bottom:754.667067pt;}
.y15_c00268{bottom:761.387067pt;}
.y17_c00268{bottom:768.107067pt;}
.y1c_c00268{bottom:769.547067pt;}
.y14_c00268{bottom:782.347067pt;}
.y13_c00268{bottom:796.507067pt;}
.y11_c00268{bottom:810.667067pt;}
.y10_c00268{bottom:817.387067pt;}
.y12_c00268{bottom:824.107067pt;}
.yf_c00268{bottom:838.347067pt;}
.ye_c00268{bottom:852.503067pt;}
.yd_c00268{bottom:865.943067pt;}
.y9_c00268{bottom:866.027067pt;}
.y8_c00268{bottom:872.747067pt;}
.yc_c00268{bottom:879.467067pt;}
.ya_c00268{bottom:879.551067pt;}
.yb_c00268{bottom:892.991067pt;}
.y7_c00268{bottom:917.707067pt;}
.y6_c00268{bottom:960.427067pt;}
.y5_c00268{bottom:987.467067pt;}
.y4_c00268{bottom:1014.427067pt;}
.y2_c00268{bottom:1046.987067pt;}
.y1_c00268{bottom:1063.867067pt;}
.h7_c00268{height:40.171875pt;}
.h5_c00268{height:40.218750pt;}
.h1_c00268{height:44.724687pt;}
.h2_c00268{height:50.062500pt;}
.h4_c00268{height:53.562500pt;}
.h3_c00268{height:64.142500pt;}
.h8_c00268{height:67.051875pt;}
.h6_c00268{height:67.387875pt;}
.h0_c00268{height:1122.666667pt;}
.w1_c00268{width:793.333333pt;}
.w0_c00268{width:793.626667pt;}
.x0_c00268{left:0.000000pt;}
.x2_c00268{left:106.160000pt;}
.x1_c00268{left:113.440000pt;}
.x8_c00268{left:122.480000pt;}
.x9_c00268{left:151.760000pt;}
.x11_c00268{left:155.756000pt;}
.xd_c00268{left:157.116000pt;}
.xa_c00268{left:158.804000pt;}
.xc_c00268{left:161.352000pt;}
.x10_c00268{left:164.960000pt;}
.xe_c00268{left:167.120000pt;}
.xf_c00268{left:173.840000pt;}
.xb_c00268{left:180.560000pt;}
.x12_c00268{left:186.872000pt;}
.x7_c00268{left:191.040000pt;}
.x3_c00268{left:193.840000pt;}
.x4_c00268{left:257.044000pt;}
.x5_c00268{left:411.604000pt;}
.x6_c00268{left:518.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_194f7c237ff8865bbca235f6.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00269;src:url('chunks/assets/font_ee21ee5d823005326cc9a879.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00269;src:url('chunks/assets/font_95a462b1431dc8efaf324773.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00269{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_c00269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.v1_c00269{vertical-align:30.618000px;}
.v2_c00269{vertical-align:60.858000px;}
.ls14_c00269{letter-spacing:-0.151200px;}
.ls25_c00269{letter-spacing:-0.140400px;}
.ls1c_c00269{letter-spacing:-0.124200px;}
.ls1a_c00269{letter-spacing:-0.118800px;}
.ls20_c00269{letter-spacing:-0.113400px;}
.ls16_c00269{letter-spacing:-0.108000px;}
.ls15_c00269{letter-spacing:-0.102600px;}
.ls1b_c00269{letter-spacing:-0.097200px;}
.ls2b_c00269{letter-spacing:-0.091800px;}
.ls1f_c00269{letter-spacing:-0.086400px;}
.ls27_c00269{letter-spacing:-0.075600px;}
.ls22_c00269{letter-spacing:-0.070200px;}
.ls28_c00269{letter-spacing:-0.064800px;}
.ls2a_c00269{letter-spacing:-0.059400px;}
.ls1d_c00269{letter-spacing:-0.054000px;}
.ls2d_c00269{letter-spacing:-0.043200px;}
.ls26_c00269{letter-spacing:-0.037800px;}
.ls1e_c00269{letter-spacing:-0.032400px;}
.ls2e_c00269{letter-spacing:-0.027000px;}
.ls24_c00269{letter-spacing:-0.021600px;}
.ls29_c00269{letter-spacing:-0.016200px;}
.ls17_c00269{letter-spacing:-0.010800px;}
.ls2c_c00269{letter-spacing:-0.005400px;}
.ls13_c00269{letter-spacing:0.000000px;}
.ls18_c00269{letter-spacing:0.005400px;}
.ls7_c00269{letter-spacing:0.010800px;}
.ls3_c00269{letter-spacing:0.016200px;}
.ls10_c00269{letter-spacing:0.021600px;}
.ls0_c00269{letter-spacing:0.036072px;}
.ls19_c00269{letter-spacing:0.037800px;}
.ls23_c00269{letter-spacing:0.048600px;}
.ls5_c00269{letter-spacing:0.054000px;}
.lsa_c00269{letter-spacing:0.059400px;}
.lsf_c00269{letter-spacing:0.064800px;}
.lse_c00269{letter-spacing:0.070200px;}
.lsd_c00269{letter-spacing:0.075600px;}
.ls1_c00269{letter-spacing:0.081000px;}
.ls8_c00269{letter-spacing:0.086400px;}
.ls4_c00269{letter-spacing:0.091800px;}
.ls2_c00269{letter-spacing:0.097200px;}
.lsc_c00269{letter-spacing:0.102600px;}
.lsb_c00269{letter-spacing:0.108000px;}
.ls6_c00269{letter-spacing:0.113400px;}
.ls21_c00269{letter-spacing:0.118800px;}
.ls9_c00269{letter-spacing:0.124200px;}
.ls11_c00269{letter-spacing:0.135000px;}
.ls12_c00269{letter-spacing:0.156600px;}
.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:-0.306612px;}
.ws30_c00269{word-spacing:-0.270000px;}
.ws28_c00269{word-spacing:-0.243000px;}
.ws1_c00269{word-spacing:0.000000px;}
.ws29_c00269{word-spacing:0.043200px;}
.ws23_c00269{word-spacing:0.054000px;}
.wse_c00269{word-spacing:0.064800px;}
.ws17_c00269{word-spacing:0.070200px;}
.ws1b_c00269{word-spacing:0.075600px;}
.ws7_c00269{word-spacing:0.081000px;}
.wsb_c00269{word-spacing:0.086400px;}
.ws13_c00269{word-spacing:0.091800px;}
.ws4_c00269{word-spacing:0.097200px;}
.ws1d_c00269{word-spacing:0.102600px;}
.ws21_c00269{word-spacing:0.108000px;}
.ws24_c00269{word-spacing:0.113400px;}
.ws16_c00269{word-spacing:0.118800px;}
.wsd_c00269{word-spacing:0.124200px;}
.ws8_c00269{word-spacing:0.140400px;}
.ws27_c00269{word-spacing:0.156600px;}
.wsa_c00269{word-spacing:0.162000px;}
.ws10_c00269{word-spacing:0.167400px;}
.ws5_c00269{word-spacing:0.178200px;}
.ws26_c00269{word-spacing:0.183600px;}
.ws6_c00269{word-spacing:0.189000px;}
.ws1f_c00269{word-spacing:0.194400px;}
.ws18_c00269{word-spacing:0.199800px;}
.ws1a_c00269{word-spacing:0.216000px;}
.ws2d_c00269{word-spacing:0.221400px;}
.ws11_c00269{word-spacing:0.232200px;}
.ws20_c00269{word-spacing:0.237600px;}
.ws22_c00269{word-spacing:0.243000px;}
.ws1c_c00269{word-spacing:0.253800px;}
.ws12_c00269{word-spacing:0.264600px;}
.ws25_c00269{word-spacing:0.270000px;}
.wsc_c00269{word-spacing:0.275400px;}
.ws2_c00269{word-spacing:0.280800px;}
.ws3_c00269{word-spacing:0.291600px;}
.ws9_c00269{word-spacing:0.297000px;}
.wsf_c00269{word-spacing:0.302400px;}
.ws19_c00269{word-spacing:0.318600px;}
.ws2b_c00269{word-spacing:232.988400px;}
.ws2e_c00269{word-spacing:232.999200px;}
.ws2c_c00269{word-spacing:233.134200px;}
.ws2f_c00269{word-spacing:233.155800px;}
.ws1e_c00269{word-spacing:233.166600px;}
.ws14_c00269{word-spacing:245.575800px;}
.ws15_c00269{word-spacing:245.581200px;}
.ws2a_c00269{word-spacing:335.901600px;}
._6_c00269{margin-left:-246.078000px;}
._1e_c00269{margin-left:-233.712000px;}
._13_c00269{margin-left:-232.686000px;}
._d_c00269{margin-left:-135.007920px;}
._0_c00269{margin-left:-1.022040px;}
._1_c00269{width:1.080000px;}
._20_c00269{width:14.526000px;}
._29_c00269{width:72.073800px;}
._8_c00269{width:89.748000px;}
._23_c00269{width:90.910440px;}
._15_c00269{width:103.356000px;}
._9_c00269{width:116.313480px;}
._10_c00269{width:129.897000px;}
._16_c00269{width:154.537200px;}
._7_c00269{width:163.080000px;}
._1c_c00269{width:185.108040px;}
._12_c00269{width:189.810000px;}
._b_c00269{width:190.857600px;}
._19_c00269{width:208.924920px;}
._25_c00269{width:217.973880px;}
._14_c00269{width:220.536000px;}
._22_c00269{width:224.650800px;}
._1f_c00269{width:231.066000px;}
._e_c00269{width:233.188200px;}
._24_c00269{width:236.244600px;}
._5_c00269{width:239.646600px;}
._4_c00269{width:245.538000px;}
._f_c00269{width:247.158000px;}
._1d_c00269{width:292.136040px;}
._2_c00269{width:312.494040px;}
._18_c00269{width:318.610800px;}
._1b_c00269{width:325.244880px;}
._26_c00269{width:335.350800px;}
._2a_c00269{width:343.970640px;}
._28_c00269{width:346.622040px;}
._17_c00269{width:369.381600px;}
._21_c00269{width:408.030840px;}
._11_c00269{width:419.198040px;}
._27_c00269{width:466.549200px;}
._3_c00269{width:467.618400px;}
._1a_c00269{width:471.981600px;}
._c_c00269{width:497.442600px;}
._a_c00269{width:509.446800px;}
.fc0_c00269{color:rgb(0,0,0);}
.fs2_c00269{font-size:54.000000px;}
.fs0_c00269{font-size:60.120000px;}
.fs1_c00269{font-size:72.000000px;}
.y0_c00269{bottom:0.000000px;}
.y3_c00269{bottom:57.450450px;}
.y4_c00269{bottom:61.410450px;}
.y64_c00269{bottom:118.466100px;}
.y63_c00269{bottom:126.120600px;}
.y62_c00269{bottom:133.500450px;}
.y61_c00269{bottom:149.605950px;}
.y60_c00269{bottom:157.260450px;}
.y5f_c00269{bottom:180.750450px;}
.y5e_c00269{bottom:196.680450px;}
.y5d_c00269{bottom:212.605950px;}
.y5c_c00269{bottom:220.260450px;}
.y59_c00269{bottom:243.750450px;}
.y58_c00269{bottom:251.310450px;}
.y5a_c00269{bottom:258.870450px;}
.y56_c00269{bottom:274.890450px;}
.y55_c00269{bottom:282.450450px;}
.y57_c00269{bottom:290.010450px;}
.y5b_c00269{bottom:298.470450px;}
.y53_c00269{bottom:305.935950px;}
.y52_c00269{bottom:313.590450px;}
.y54_c00269{bottom:321.150450px;}
.y51_c00269{bottom:337.080450px;}
.y50_c00269{bottom:353.010450px;}
.y4f_c00269{bottom:368.940450px;}
.y4e_c00269{bottom:384.870450px;}
.y4c_c00269{bottom:400.890600px;}
.y4b_c00269{bottom:408.450600px;}
.y4d_c00269{bottom:416.010600px;}
.y4a_c00269{bottom:431.936100px;}
.y49_c00269{bottom:439.590600px;}
.y47_c00269{bottom:463.057950px;}
.y46_c00269{bottom:478.272450px;}
.y45_c00269{bottom:493.486950px;}
.y41_c00269{bottom:493.500450px;}
.y40_c00269{bottom:501.060450px;}
.y44_c00269{bottom:508.606950px;}
.y43_c00269{bottom:523.821450px;}
.y42_c00269{bottom:539.035950px;}
.y3f_c00269{bottom:554.965950px;}
.y3d_c00269{bottom:562.620450px;}
.y3c_c00269{bottom:570.180450px;}
.y3e_c00269{bottom:585.394950px;}
.y48_c00269{bottom:591.600450px;}
.y39_c00269{bottom:601.306950px;}
.y38_c00269{bottom:616.426950px;}
.y3b_c00269{bottom:624.067950px;}
.y37_c00269{bottom:631.641450px;}
.y3a_c00269{bottom:631.722450px;}
.y36_c00269{bottom:646.855950px;}
.y35_c00269{bottom:662.070450px;}
.y34_c00269{bottom:678.000450px;}
.y33_c00269{bottom:693.930450px;}
.y2c_c00269{bottom:709.842450px;}
.y32_c00269{bottom:724.948950px;}
.y2b_c00269{bottom:725.056950px;}
.y31_c00269{bottom:740.163450px;}
.y2a_c00269{bottom:740.176950px;}
.y2e_c00269{bottom:740.257950px;}
.y2d_c00269{bottom:747.817950px;}
.y30_c00269{bottom:755.377950px;}
.y29_c00269{bottom:755.391450px;}
.y2f_c00269{bottom:770.592450px;}
.y28_c00269{bottom:770.605950px;}
.y27_c00269{bottom:785.820450px;}
.y25_c00269{bottom:801.750450px;}
.y24_c00269{bottom:809.310450px;}
.y26_c00269{bottom:816.870450px;}
.y22_c00269{bottom:832.890450px;}
.y21_c00269{bottom:848.820450px;}
.y20_c00269{bottom:856.380450px;}
.y1f_c00269{bottom:879.865950px;}
.y1e_c00269{bottom:887.520450px;}
.y1c_c00269{bottom:911.910450px;}
.y1b_c00269{bottom:919.470450px;}
.y1d_c00269{bottom:927.124950px;}
.y1a_c00269{bottom:943.860450px;}
.y23_c00269{bottom:956.730450px;}
.y18_c00269{bottom:959.785950px;}
.y17_c00269{bottom:967.440450px;}
.y19_c00269{bottom:975.000450px;}
.y16_c00269{bottom:990.925950px;}
.y15_c00269{bottom:1006.140450px;}
.yf_c00269{bottom:1022.056950px;}
.y14_c00269{bottom:1037.163450px;}
.ye_c00269{bottom:1037.271450px;}
.y11_c00269{bottom:1044.817950px;}
.y13_c00269{bottom:1052.377950px;}
.yd_c00269{bottom:1052.485950px;}
.y10_c00269{bottom:1060.032450px;}
.y12_c00269{bottom:1067.592450px;}
.yc_c00269{bottom:1067.605950px;}
.yb_c00269{bottom:1082.820450px;}
.y8_c00269{bottom:1098.736950px;}
.y7_c00269{bottom:1113.951450px;}
.ya_c00269{bottom:1114.045950px;}
.y9_c00269{bottom:1121.511450px;}
.y6_c00269{bottom:1129.165950px;}
.y5_c00269{bottom:1144.285950px;}
.y2_c00269{bottom:1173.810450px;}
.y1_c00269{bottom:1196.850450px;}
.h4_c00269{height:45.193359px;}
.h8_c00269{height:45.246094px;}
.h2_c00269{height:47.988281px;}
.h1_c00269{height:50.315273px;}
.h3_c00269{height:56.320312px;}
.h6_c00269{height:75.433359px;}
.h5_c00269{height:75.811359px;}
.h7_c00269{height:106.051359px;}
.h0_c00269{height:1263.000000px;}
.w1_c00269{width:892.500000px;}
.w0_c00269{width:892.830000px;}
.x0_c00269{left:0.000000px;}
.x2_c00269{left:127.620000px;}
.x10_c00269{left:137.790000px;}
.x6_c00269{left:171.085500px;}
.x14_c00269{left:174.055500px;}
.x12_c00269{left:178.290000px;}
.x5_c00269{left:180.265500px;}
.xa_c00269{left:185.850000px;}
.xc_c00269{left:188.010000px;}
.xb_c00269{left:191.155500px;}
.x13_c00269{left:195.570000px;}
.xd_c00269{left:202.320000px;}
.x7_c00269{left:205.294500px;}
.x11_c00269{left:214.920000px;}
.xf_c00269{left:218.070000px;}
.x8_c00269{left:289.170000px;}
.x4_c00269{left:435.240000px;}
.x3_c00269{left:446.490000px;}
.xe_c00269{left:463.045500px;}
.x1_c00269{left:490.770000px;}
.x9_c00269{left:583.375500px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.v1_c00269{vertical-align:27.216000pt;}
.v2_c00269{vertical-align:54.096000pt;}
.ls14_c00269{letter-spacing:-0.134400pt;}
.ls25_c00269{letter-spacing:-0.124800pt;}
.ls1c_c00269{letter-spacing:-0.110400pt;}
.ls1a_c00269{letter-spacing:-0.105600pt;}
.ls20_c00269{letter-spacing:-0.100800pt;}
.ls16_c00269{letter-spacing:-0.096000pt;}
.ls15_c00269{letter-spacing:-0.091200pt;}
.ls1b_c00269{letter-spacing:-0.086400pt;}
.ls2b_c00269{letter-spacing:-0.081600pt;}
.ls1f_c00269{letter-spacing:-0.076800pt;}
.ls27_c00269{letter-spacing:-0.067200pt;}
.ls22_c00269{letter-spacing:-0.062400pt;}
.ls28_c00269{letter-spacing:-0.057600pt;}
.ls2a_c00269{letter-spacing:-0.052800pt;}
.ls1d_c00269{letter-spacing:-0.048000pt;}
.ls2d_c00269{letter-spacing:-0.038400pt;}
.ls26_c00269{letter-spacing:-0.033600pt;}
.ls1e_c00269{letter-spacing:-0.028800pt;}
.ls2e_c00269{letter-spacing:-0.024000pt;}
.ls24_c00269{letter-spacing:-0.019200pt;}
.ls29_c00269{letter-spacing:-0.014400pt;}
.ls17_c00269{letter-spacing:-0.009600pt;}
.ls2c_c00269{letter-spacing:-0.004800pt;}
.ls13_c00269{letter-spacing:0.000000pt;}
.ls18_c00269{letter-spacing:0.004800pt;}
.ls7_c00269{letter-spacing:0.009600pt;}
.ls3_c00269{letter-spacing:0.014400pt;}
.ls10_c00269{letter-spacing:0.019200pt;}
.ls0_c00269{letter-spacing:0.032064pt;}
.ls19_c00269{letter-spacing:0.033600pt;}
.ls23_c00269{letter-spacing:0.043200pt;}
.ls5_c00269{letter-spacing:0.048000pt;}
.lsa_c00269{letter-spacing:0.052800pt;}
.lsf_c00269{letter-spacing:0.057600pt;}
.lse_c00269{letter-spacing:0.062400pt;}
.lsd_c00269{letter-spacing:0.067200pt;}
.ls1_c00269{letter-spacing:0.072000pt;}
.ls8_c00269{letter-spacing:0.076800pt;}
.ls4_c00269{letter-spacing:0.081600pt;}
.ls2_c00269{letter-spacing:0.086400pt;}
.lsc_c00269{letter-spacing:0.091200pt;}
.lsb_c00269{letter-spacing:0.096000pt;}
.ls6_c00269{letter-spacing:0.100800pt;}
.ls21_c00269{letter-spacing:0.105600pt;}
.ls9_c00269{letter-spacing:0.110400pt;}
.ls11_c00269{letter-spacing:0.120000pt;}
.ls12_c00269{letter-spacing:0.139200pt;}
.ws0_c00269{word-spacing:-0.272544pt;}
.ws30_c00269{word-spacing:-0.240000pt;}
.ws28_c00269{word-spacing:-0.216000pt;}
.ws1_c00269{word-spacing:0.000000pt;}
.ws29_c00269{word-spacing:0.038400pt;}
.ws23_c00269{word-spacing:0.048000pt;}
.wse_c00269{word-spacing:0.057600pt;}
.ws17_c00269{word-spacing:0.062400pt;}
.ws1b_c00269{word-spacing:0.067200pt;}
.ws7_c00269{word-spacing:0.072000pt;}
.wsb_c00269{word-spacing:0.076800pt;}
.ws13_c00269{word-spacing:0.081600pt;}
.ws4_c00269{word-spacing:0.086400pt;}
.ws1d_c00269{word-spacing:0.091200pt;}
.ws21_c00269{word-spacing:0.096000pt;}
.ws24_c00269{word-spacing:0.100800pt;}
.ws16_c00269{word-spacing:0.105600pt;}
.wsd_c00269{word-spacing:0.110400pt;}
.ws8_c00269{word-spacing:0.124800pt;}
.ws27_c00269{word-spacing:0.139200pt;}
.wsa_c00269{word-spacing:0.144000pt;}
.ws10_c00269{word-spacing:0.148800pt;}
.ws5_c00269{word-spacing:0.158400pt;}
.ws26_c00269{word-spacing:0.163200pt;}
.ws6_c00269{word-spacing:0.168000pt;}
.ws1f_c00269{word-spacing:0.172800pt;}
.ws18_c00269{word-spacing:0.177600pt;}
.ws1a_c00269{word-spacing:0.192000pt;}
.ws2d_c00269{word-spacing:0.196800pt;}
.ws11_c00269{word-spacing:0.206400pt;}
.ws20_c00269{word-spacing:0.211200pt;}
.ws22_c00269{word-spacing:0.216000pt;}
.ws1c_c00269{word-spacing:0.225600pt;}
.ws12_c00269{word-spacing:0.235200pt;}
.ws25_c00269{word-spacing:0.240000pt;}
.wsc_c00269{word-spacing:0.244800pt;}
.ws2_c00269{word-spacing:0.249600pt;}
.ws3_c00269{word-spacing:0.259200pt;}
.ws9_c00269{word-spacing:0.264000pt;}
.wsf_c00269{word-spacing:0.268800pt;}
.ws19_c00269{word-spacing:0.283200pt;}
.ws2b_c00269{word-spacing:207.100800pt;}
.ws2e_c00269{word-spacing:207.110400pt;}
.ws2c_c00269{word-spacing:207.230400pt;}
.ws2f_c00269{word-spacing:207.249600pt;}
.ws1e_c00269{word-spacing:207.259200pt;}
.ws14_c00269{word-spacing:218.289600pt;}
.ws15_c00269{word-spacing:218.294400pt;}
.ws2a_c00269{word-spacing:298.579200pt;}
._6_c00269{margin-left:-218.736000pt;}
._1e_c00269{margin-left:-207.744000pt;}
._13_c00269{margin-left:-206.832000pt;}
._d_c00269{margin-left:-120.007040pt;}
._0_c00269{margin-left:-0.908480pt;}
._1_c00269{width:0.960000pt;}
._20_c00269{width:12.912000pt;}
._29_c00269{width:64.065600pt;}
._8_c00269{width:79.776000pt;}
._23_c00269{width:80.809280pt;}
._15_c00269{width:91.872000pt;}
._9_c00269{width:103.389760pt;}
._10_c00269{width:115.464000pt;}
._16_c00269{width:137.366400pt;}
._7_c00269{width:144.960000pt;}
._1c_c00269{width:164.540480pt;}
._12_c00269{width:168.720000pt;}
._b_c00269{width:169.651200pt;}
._19_c00269{width:185.711040pt;}
._25_c00269{width:193.754560pt;}
._14_c00269{width:196.032000pt;}
._22_c00269{width:199.689600pt;}
._1f_c00269{width:205.392000pt;}
._e_c00269{width:207.278400pt;}
._24_c00269{width:209.995200pt;}
._5_c00269{width:213.019200pt;}
._4_c00269{width:218.256000pt;}
._f_c00269{width:219.696000pt;}
._1d_c00269{width:259.676480pt;}
._2_c00269{width:277.772480pt;}
._18_c00269{width:283.209600pt;}
._1b_c00269{width:289.106560pt;}
._26_c00269{width:298.089600pt;}
._2a_c00269{width:305.751680pt;}
._28_c00269{width:308.108480pt;}
._17_c00269{width:328.339200pt;}
._21_c00269{width:362.694080pt;}
._11_c00269{width:372.620480pt;}
._27_c00269{width:414.710400pt;}
._3_c00269{width:415.660800pt;}
._1a_c00269{width:419.539200pt;}
._c_c00269{width:442.171200pt;}
._a_c00269{width:452.841600pt;}
.fs2_c00269{font-size:48.000000pt;}
.fs0_c00269{font-size:53.440000pt;}
.fs1_c00269{font-size:64.000000pt;}
.y0_c00269{bottom:0.000000pt;}
.y3_c00269{bottom:51.067067pt;}
.y4_c00269{bottom:54.587067pt;}
.y64_c00269{bottom:105.303200pt;}
.y63_c00269{bottom:112.107200pt;}
.y62_c00269{bottom:118.667067pt;}
.y61_c00269{bottom:132.983067pt;}
.y60_c00269{bottom:139.787067pt;}
.y5f_c00269{bottom:160.667067pt;}
.y5e_c00269{bottom:174.827067pt;}
.y5d_c00269{bottom:188.983067pt;}
.y5c_c00269{bottom:195.787067pt;}
.y59_c00269{bottom:216.667067pt;}
.y58_c00269{bottom:223.387067pt;}
.y5a_c00269{bottom:230.107067pt;}
.y56_c00269{bottom:244.347067pt;}
.y55_c00269{bottom:251.067067pt;}
.y57_c00269{bottom:257.787067pt;}
.y5b_c00269{bottom:265.307067pt;}
.y53_c00269{bottom:271.943067pt;}
.y52_c00269{bottom:278.747067pt;}
.y54_c00269{bottom:285.467067pt;}
.y51_c00269{bottom:299.627067pt;}
.y50_c00269{bottom:313.787067pt;}
.y4f_c00269{bottom:327.947067pt;}
.y4e_c00269{bottom:342.107067pt;}
.y4c_c00269{bottom:356.347200pt;}
.y4b_c00269{bottom:363.067200pt;}
.y4d_c00269{bottom:369.787200pt;}
.y4a_c00269{bottom:383.943200pt;}
.y49_c00269{bottom:390.747200pt;}
.y47_c00269{bottom:411.607067pt;}
.y46_c00269{bottom:425.131067pt;}
.y45_c00269{bottom:438.655067pt;}
.y41_c00269{bottom:438.667067pt;}
.y40_c00269{bottom:445.387067pt;}
.y44_c00269{bottom:452.095067pt;}
.y43_c00269{bottom:465.619067pt;}
.y42_c00269{bottom:479.143067pt;}
.y3f_c00269{bottom:493.303067pt;}
.y3d_c00269{bottom:500.107067pt;}
.y3c_c00269{bottom:506.827067pt;}
.y3e_c00269{bottom:520.351067pt;}
.y48_c00269{bottom:525.867067pt;}
.y39_c00269{bottom:534.495067pt;}
.y38_c00269{bottom:547.935067pt;}
.y3b_c00269{bottom:554.727067pt;}
.y37_c00269{bottom:561.459067pt;}
.y3a_c00269{bottom:561.531067pt;}
.y36_c00269{bottom:574.983067pt;}
.y35_c00269{bottom:588.507067pt;}
.y34_c00269{bottom:602.667067pt;}
.y33_c00269{bottom:616.827067pt;}
.y2c_c00269{bottom:630.971067pt;}
.y32_c00269{bottom:644.399067pt;}
.y2b_c00269{bottom:644.495067pt;}
.y31_c00269{bottom:657.923067pt;}
.y2a_c00269{bottom:657.935067pt;}
.y2e_c00269{bottom:658.007067pt;}
.y2d_c00269{bottom:664.727067pt;}
.y30_c00269{bottom:671.447067pt;}
.y29_c00269{bottom:671.459067pt;}
.y2f_c00269{bottom:684.971067pt;}
.y28_c00269{bottom:684.983067pt;}
.y27_c00269{bottom:698.507067pt;}
.y25_c00269{bottom:712.667067pt;}
.y24_c00269{bottom:719.387067pt;}
.y26_c00269{bottom:726.107067pt;}
.y22_c00269{bottom:740.347067pt;}
.y21_c00269{bottom:754.507067pt;}
.y20_c00269{bottom:761.227067pt;}
.y1f_c00269{bottom:782.103067pt;}
.y1e_c00269{bottom:788.907067pt;}
.y1c_c00269{bottom:810.587067pt;}
.y1b_c00269{bottom:817.307067pt;}
.y1d_c00269{bottom:824.111067pt;}
.y1a_c00269{bottom:838.987067pt;}
.y23_c00269{bottom:850.427067pt;}
.y18_c00269{bottom:853.143067pt;}
.y17_c00269{bottom:859.947067pt;}
.y19_c00269{bottom:866.667067pt;}
.y16_c00269{bottom:880.823067pt;}
.y15_c00269{bottom:894.347067pt;}
.yf_c00269{bottom:908.495067pt;}
.y14_c00269{bottom:921.923067pt;}
.ye_c00269{bottom:922.019067pt;}
.y11_c00269{bottom:928.727067pt;}
.y13_c00269{bottom:935.447067pt;}
.yd_c00269{bottom:935.543067pt;}
.y10_c00269{bottom:942.251067pt;}
.y12_c00269{bottom:948.971067pt;}
.yc_c00269{bottom:948.983067pt;}
.yb_c00269{bottom:962.507067pt;}
.y8_c00269{bottom:976.655067pt;}
.y7_c00269{bottom:990.179067pt;}
.ya_c00269{bottom:990.263067pt;}
.y9_c00269{bottom:996.899067pt;}
.y6_c00269{bottom:1003.703067pt;}
.y5_c00269{bottom:1017.143067pt;}
.y2_c00269{bottom:1043.387067pt;}
.y1_c00269{bottom:1063.867067pt;}
.h4_c00269{height:40.171875pt;}
.h8_c00269{height:40.218750pt;}
.h2_c00269{height:42.656250pt;}
.h1_c00269{height:44.724687pt;}
.h3_c00269{height:50.062500pt;}
.h6_c00269{height:67.051875pt;}
.h5_c00269{height:67.387875pt;}
.h7_c00269{height:94.267875pt;}
.h0_c00269{height:1122.666667pt;}
.w1_c00269{width:793.333333pt;}
.w0_c00269{width:793.626667pt;}
.x0_c00269{left:0.000000pt;}
.x2_c00269{left:113.440000pt;}
.x10_c00269{left:122.480000pt;}
.x6_c00269{left:152.076000pt;}
.x14_c00269{left:154.716000pt;}
.x12_c00269{left:158.480000pt;}
.x5_c00269{left:160.236000pt;}
.xa_c00269{left:165.200000pt;}
.xc_c00269{left:167.120000pt;}
.xb_c00269{left:169.916000pt;}
.x13_c00269{left:173.840000pt;}
.xd_c00269{left:179.840000pt;}
.x7_c00269{left:182.484000pt;}
.x11_c00269{left:191.040000pt;}
.xf_c00269{left:193.840000pt;}
.x8_c00269{left:257.040000pt;}
.x4_c00269{left:386.880000pt;}
.x3_c00269{left:396.880000pt;}
.xe_c00269{left:411.596000pt;}
.x1_c00269{left:436.240000pt;}
.x9_c00269{left:518.556000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_14dac6249d1eaf873c920dfa.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.100098;font-style:normal;font-weight:normal;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_d0ec843710130e0d8c1f907c.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;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_c00270;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00270;src:url('chunks/assets/font_975712fd9a15f009cb5204fe.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;line-height:0.684570;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00270;src:url('chunks/assets/font_0a52788c9c983c68bff053d1.woff2')format("woff");}.ff5_c00270{font-family:ff5_c00270;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00270{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_c00270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.v1_c00270{vertical-align:15.840000px;}
.v2_c00270{vertical-align:30.240000px;}
.ls24_c00270{letter-spacing:-0.199800px;}
.ls12_c00270{letter-spacing:-0.151200px;}
.ls23_c00270{letter-spacing:-0.124200px;}
.ls17_c00270{letter-spacing:-0.113400px;}
.ls1b_c00270{letter-spacing:-0.108000px;}
.ls13_c00270{letter-spacing:-0.102600px;}
.ls27_c00270{letter-spacing:-0.097200px;}
.ls14_c00270{letter-spacing:-0.091800px;}
.ls1f_c00270{letter-spacing:-0.086400px;}
.ls1a_c00270{letter-spacing:-0.075600px;}
.ls16_c00270{letter-spacing:-0.064800px;}
.ls1d_c00270{letter-spacing:-0.048600px;}
.ls18_c00270{letter-spacing:-0.043200px;}
.ls19_c00270{letter-spacing:-0.037800px;}
.ls21_c00270{letter-spacing:-0.032400px;}
.ls26_c00270{letter-spacing:-0.027000px;}
.ls1c_c00270{letter-spacing:-0.010800px;}
.ls1e_c00270{letter-spacing:-0.005400px;}
.ls11_c00270{letter-spacing:0.000000px;}
.lsc_c00270{letter-spacing:0.005400px;}
.ls20_c00270{letter-spacing:0.016200px;}
.ls25_c00270{letter-spacing:0.032400px;}
.lsf_c00270{letter-spacing:0.037800px;}
.ls0_c00270{letter-spacing:0.048096px;}
.lsd_c00270{letter-spacing:0.048600px;}
.ls3_c00270{letter-spacing:0.059400px;}
.lsb_c00270{letter-spacing:0.064800px;}
.ls5_c00270{letter-spacing:0.070200px;}
.ls9_c00270{letter-spacing:0.075600px;}
.ls7_c00270{letter-spacing:0.081000px;}
.ls2_c00270{letter-spacing:0.086400px;}
.ls4_c00270{letter-spacing:0.091800px;}
.ls8_c00270{letter-spacing:0.097200px;}
.ls15_c00270{letter-spacing:0.113400px;}
.ls10_c00270{letter-spacing:0.118800px;}
.lse_c00270{letter-spacing:0.129600px;}
.ls6_c00270{letter-spacing:0.135000px;}
.lsa_c00270{letter-spacing:0.156600px;}
.ls22_c00270{letter-spacing:467.818200px;}
.ls1_c00270{letter-spacing:1212.120000px;}
.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;}
}
.ws23_c00270{word-spacing:-0.297000px;}
.ws1_c00270{word-spacing:0.000000px;}
.ws0_c00270{word-spacing:0.042084px;}
.wsa_c00270{word-spacing:0.043200px;}
.ws1d_c00270{word-spacing:0.048600px;}
.ws7_c00270{word-spacing:0.064800px;}
.ws10_c00270{word-spacing:0.081000px;}
.ws6_c00270{word-spacing:0.086400px;}
.ws3_c00270{word-spacing:0.091800px;}
.wse_c00270{word-spacing:0.097200px;}
.ws13_c00270{word-spacing:0.102600px;}
.ws8_c00270{word-spacing:0.108000px;}
.ws18_c00270{word-spacing:0.113400px;}
.ws19_c00270{word-spacing:0.129600px;}
.ws1a_c00270{word-spacing:0.162000px;}
.ws1b_c00270{word-spacing:0.172800px;}
.ws17_c00270{word-spacing:0.183600px;}
.ws11_c00270{word-spacing:0.189000px;}
.ws25_c00270{word-spacing:0.205200px;}
.ws1c_c00270{word-spacing:0.210600px;}
.wsc_c00270{word-spacing:0.216000px;}
.wsb_c00270{word-spacing:0.221400px;}
.ws9_c00270{word-spacing:0.243000px;}
.wsd_c00270{word-spacing:0.253800px;}
.ws16_c00270{word-spacing:0.264600px;}
.ws5_c00270{word-spacing:0.270000px;}
.ws26_c00270{word-spacing:0.275400px;}
.wsf_c00270{word-spacing:0.286200px;}
.ws20_c00270{word-spacing:0.302400px;}
.ws22_c00270{word-spacing:0.378000px;}
.ws2_c00270{word-spacing:233.015400px;}
.ws14_c00270{word-spacing:233.020800px;}
.ws12_c00270{word-spacing:233.026200px;}
.ws4_c00270{word-spacing:233.042400px;}
.ws21_c00270{word-spacing:233.134200px;}
.ws1e_c00270{word-spacing:233.204400px;}
.ws1f_c00270{word-spacing:245.586600px;}
.ws24_c00270{word-spacing:245.608200px;}
.ws15_c00270{word-spacing:335.901600px;}
._22_c00270{margin-left:-245.754000px;}
._1_c00270{margin-left:-233.334000px;}
._0_c00270{margin-left:-1.322640px;}
._7_c00270{width:1.242000px;}
._c_c00270{width:81.053280px;}
._8_c00270{width:82.512000px;}
._14_c00270{width:88.560000px;}
._21_c00270{width:95.860080px;}
._5_c00270{width:102.600000px;}
._15_c00270{width:107.027280px;}
._e_c00270{width:138.450600px;}
._23_c00270{width:144.908640px;}
._2b_c00270{width:148.316400px;}
._17_c00270{width:153.251280px;}
._b_c00270{width:163.512000px;}
._26_c00270{width:176.256000px;}
._2_c00270{width:181.909800px;}
._16_c00270{width:186.570000px;}
._1e_c00270{width:188.190000px;}
._18_c00270{width:189.377280px;}
._9_c00270{width:211.199400px;}
._4_c00270{width:213.408000px;}
._1a_c00270{width:218.106000px;}
._24_c00270{width:222.102000px;}
._1f_c00270{width:230.444640px;}
._6_c00270{width:232.902000px;}
._1b_c00270{width:234.738000px;}
._28_c00270{width:238.836600px;}
._11_c00270{width:245.322000px;}
._29_c00270{width:254.744640px;}
._20_c00270{width:277.246440px;}
._2c_c00270{width:286.432200px;}
._19_c00270{width:307.557000px;}
._a_c00270{width:333.142200px;}
._d_c00270{width:335.388600px;}
._3_c00270{width:369.381600px;}
._1c_c00270{width:395.852400px;}
._12_c00270{width:398.806200px;}
._25_c00270{width:411.749640px;}
._27_c00270{width:417.619440px;}
._1d_c00270{width:450.613800px;}
._13_c00270{width:467.623800px;}
._2d_c00270{width:474.530400px;}
._10_c00270{width:514.938600px;}
._2a_c00270{width:519.409800px;}
._f_c00270{width:550.216800px;}
.fc0_c00270{color:rgb(0,0,0);}
.fs1_c00270{font-size:54.000000px;}
.fs0_c00270{font-size:60.120000px;}
.fs2_c00270{font-size:72.000000px;}
.y0_c00270{bottom:0.000000px;}
.y3_c00270{bottom:57.450450px;}
.y55_c00270{bottom:117.925950px;}
.y54_c00270{bottom:125.580450px;}
.y53_c00270{bottom:140.250450px;}
.y52_c00270{bottom:149.061450px;}
.y51_c00270{bottom:164.275950px;}
.y4e_c00270{bottom:179.490450px;}
.y50_c00270{bottom:194.610450px;}
.y4f_c00270{bottom:209.824950px;}
.y4c_c00270{bottom:225.745950px;}
.y4b_c00270{bottom:233.400450px;}
.y4d_c00270{bottom:240.960450px;}
.y4a_c00270{bottom:256.885950px;}
.y49_c00270{bottom:264.540450px;}
.y47_c00270{bottom:294.690450px;}
.y46_c00270{bottom:317.275950px;}
.y45_c00270{bottom:324.930450px;}
.y48_c00270{bottom:335.460600px;}
.y44_c00270{bottom:348.420450px;}
.y43_c00270{bottom:364.350450px;}
.y41_c00270{bottom:379.470450px;}
.y42_c00270{bottom:394.684950px;}
.y40_c00270{bottom:410.610600px;}
.y3f_c00270{bottom:426.540600px;}
.y3e_c00270{bottom:442.466100px;}
.y3d_c00270{bottom:450.120600px;}
.y3c_c00270{bottom:473.610600px;}
.y3b_c00270{bottom:489.540600px;}
.y39_c00270{bottom:505.470450px;}
.y38_c00270{bottom:521.490450px;}
.y37_c00270{bottom:529.050450px;}
.y36_c00270{bottom:552.540450px;}
.y35_c00270{bottom:568.452450px;}
.y30_c00270{bottom:568.465950px;}
.y32_c00270{bottom:576.106950px;}
.y3a_c00270{bottom:582.330450px;}
.y34_c00270{bottom:583.666950px;}
.y2e_c00270{bottom:583.680450px;}
.y31_c00270{bottom:591.321450px;}
.y33_c00270{bottom:598.881450px;}
.y2f_c00270{bottom:598.894950px;}
.y2d_c00270{bottom:614.815950px;}
.y2c_c00270{bottom:622.470450px;}
.y2b_c00270{bottom:653.790450px;}
.y2a_c00270{bottom:677.460450px;}
.y29_c00270{bottom:693.390450px;}
.y28_c00270{bottom:709.320450px;}
.y26_c00270{bottom:725.245950px;}
.y25_c00270{bottom:732.900450px;}
.y27_c00270{bottom:740.460450px;}
.y24_c00270{bottom:756.390450px;}
.y23_c00270{bottom:772.297950px;}
.y22_c00270{bottom:787.512450px;}
.y1d_c00270{bottom:795.085950px;}
.y21_c00270{bottom:802.726950px;}
.y1c_c00270{bottom:802.740450px;}
.y1e_c00270{bottom:810.300450px;}
.y20_c00270{bottom:817.846950px;}
.y1f_c00270{bottom:833.061450px;}
.y1b_c00270{bottom:848.995950px;}
.y1a_c00270{bottom:856.650450px;}
.y19_c00270{bottom:880.136100px;}
.y18_c00270{bottom:887.790600px;}
.y17_c00270{bottom:911.275950px;}
.y16_c00270{bottom:918.930450px;}
.y15_c00270{bottom:942.420450px;}
.y14_c00270{bottom:958.350450px;}
.y13_c00270{bottom:974.275950px;}
.y10_c00270{bottom:989.490450px;}
.yf_c00270{bottom:997.050450px;}
.y12_c00270{bottom:1004.610450px;}
.y11_c00270{bottom:1019.824950px;}
.yd_c00270{bottom:1035.745950px;}
.yc_c00270{bottom:1043.400450px;}
.ye_c00270{bottom:1050.960450px;}
.yb_c00270{bottom:1066.890450px;}
.y8_c00270{bottom:1074.544950px;}
.y7_c00270{bottom:1082.010450px;}
.ya_c00270{bottom:1082.104950px;}
.y9_c00270{bottom:1097.224950px;}
.y6_c00270{bottom:1113.240450px;}
.y5_c00270{bottom:1129.165950px;}
.y4_c00270{bottom:1136.725950px;}
.y2_c00270{bottom:1177.860450px;}
.y1_c00270{bottom:1196.850450px;}
.h5_c00270{height:45.193359px;}
.h7_c00270{height:45.246094px;}
.h1_c00270{height:50.315273px;}
.h2_c00270{height:56.320312px;}
.h3_c00270{height:72.160312px;}
.h4_c00270{height:75.433359px;}
.h6_c00270{height:75.811359px;}
.h0_c00270{height:1263.000000px;}
.w1_c00270{width:892.500000px;}
.w0_c00270{width:892.830000px;}
.x0_c00270{left:0.000000px;}
.x1_c00270{left:127.620000px;}
.x7_c00270{left:137.790000px;}
.x2_c00270{left:214.924500px;}
.x6_c00270{left:218.070000px;}
.x5_c00270{left:289.170000px;}
.x3_c00270{left:463.054500px;}
.x4_c00270{left:583.375500px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.v1_c00270{vertical-align:14.080000pt;}
.v2_c00270{vertical-align:26.880000pt;}
.ls24_c00270{letter-spacing:-0.177600pt;}
.ls12_c00270{letter-spacing:-0.134400pt;}
.ls23_c00270{letter-spacing:-0.110400pt;}
.ls17_c00270{letter-spacing:-0.100800pt;}
.ls1b_c00270{letter-spacing:-0.096000pt;}
.ls13_c00270{letter-spacing:-0.091200pt;}
.ls27_c00270{letter-spacing:-0.086400pt;}
.ls14_c00270{letter-spacing:-0.081600pt;}
.ls1f_c00270{letter-spacing:-0.076800pt;}
.ls1a_c00270{letter-spacing:-0.067200pt;}
.ls16_c00270{letter-spacing:-0.057600pt;}
.ls1d_c00270{letter-spacing:-0.043200pt;}
.ls18_c00270{letter-spacing:-0.038400pt;}
.ls19_c00270{letter-spacing:-0.033600pt;}
.ls21_c00270{letter-spacing:-0.028800pt;}
.ls26_c00270{letter-spacing:-0.024000pt;}
.ls1c_c00270{letter-spacing:-0.009600pt;}
.ls1e_c00270{letter-spacing:-0.004800pt;}
.ls11_c00270{letter-spacing:0.000000pt;}
.lsc_c00270{letter-spacing:0.004800pt;}
.ls20_c00270{letter-spacing:0.014400pt;}
.ls25_c00270{letter-spacing:0.028800pt;}
.lsf_c00270{letter-spacing:0.033600pt;}
.ls0_c00270{letter-spacing:0.042752pt;}
.lsd_c00270{letter-spacing:0.043200pt;}
.ls3_c00270{letter-spacing:0.052800pt;}
.lsb_c00270{letter-spacing:0.057600pt;}
.ls5_c00270{letter-spacing:0.062400pt;}
.ls9_c00270{letter-spacing:0.067200pt;}
.ls7_c00270{letter-spacing:0.072000pt;}
.ls2_c00270{letter-spacing:0.076800pt;}
.ls4_c00270{letter-spacing:0.081600pt;}
.ls8_c00270{letter-spacing:0.086400pt;}
.ls15_c00270{letter-spacing:0.100800pt;}
.ls10_c00270{letter-spacing:0.105600pt;}
.lse_c00270{letter-spacing:0.115200pt;}
.ls6_c00270{letter-spacing:0.120000pt;}
.lsa_c00270{letter-spacing:0.139200pt;}
.ls22_c00270{letter-spacing:415.838400pt;}
.ls1_c00270{letter-spacing:1077.440000pt;}
.ws23_c00270{word-spacing:-0.264000pt;}
.ws1_c00270{word-spacing:0.000000pt;}
.ws0_c00270{word-spacing:0.037408pt;}
.wsa_c00270{word-spacing:0.038400pt;}
.ws1d_c00270{word-spacing:0.043200pt;}
.ws7_c00270{word-spacing:0.057600pt;}
.ws10_c00270{word-spacing:0.072000pt;}
.ws6_c00270{word-spacing:0.076800pt;}
.ws3_c00270{word-spacing:0.081600pt;}
.wse_c00270{word-spacing:0.086400pt;}
.ws13_c00270{word-spacing:0.091200pt;}
.ws8_c00270{word-spacing:0.096000pt;}
.ws18_c00270{word-spacing:0.100800pt;}
.ws19_c00270{word-spacing:0.115200pt;}
.ws1a_c00270{word-spacing:0.144000pt;}
.ws1b_c00270{word-spacing:0.153600pt;}
.ws17_c00270{word-spacing:0.163200pt;}
.ws11_c00270{word-spacing:0.168000pt;}
.ws25_c00270{word-spacing:0.182400pt;}
.ws1c_c00270{word-spacing:0.187200pt;}
.wsc_c00270{word-spacing:0.192000pt;}
.wsb_c00270{word-spacing:0.196800pt;}
.ws9_c00270{word-spacing:0.216000pt;}
.wsd_c00270{word-spacing:0.225600pt;}
.ws16_c00270{word-spacing:0.235200pt;}
.ws5_c00270{word-spacing:0.240000pt;}
.ws26_c00270{word-spacing:0.244800pt;}
.wsf_c00270{word-spacing:0.254400pt;}
.ws20_c00270{word-spacing:0.268800pt;}
.ws22_c00270{word-spacing:0.336000pt;}
.ws2_c00270{word-spacing:207.124800pt;}
.ws14_c00270{word-spacing:207.129600pt;}
.ws12_c00270{word-spacing:207.134400pt;}
.ws4_c00270{word-spacing:207.148800pt;}
.ws21_c00270{word-spacing:207.230400pt;}
.ws1e_c00270{word-spacing:207.292800pt;}
.ws1f_c00270{word-spacing:218.299200pt;}
.ws24_c00270{word-spacing:218.318400pt;}
.ws15_c00270{word-spacing:298.579200pt;}
._22_c00270{margin-left:-218.448000pt;}
._1_c00270{margin-left:-207.408000pt;}
._0_c00270{margin-left:-1.175680pt;}
._7_c00270{width:1.104000pt;}
._c_c00270{width:72.047360pt;}
._8_c00270{width:73.344000pt;}
._14_c00270{width:78.720000pt;}
._21_c00270{width:85.208960pt;}
._5_c00270{width:91.200000pt;}
._15_c00270{width:95.135360pt;}
._e_c00270{width:123.067200pt;}
._23_c00270{width:128.807680pt;}
._2b_c00270{width:131.836800pt;}
._17_c00270{width:136.223360pt;}
._b_c00270{width:145.344000pt;}
._26_c00270{width:156.672000pt;}
._2_c00270{width:161.697600pt;}
._16_c00270{width:165.840000pt;}
._1e_c00270{width:167.280000pt;}
._18_c00270{width:168.335360pt;}
._9_c00270{width:187.732800pt;}
._4_c00270{width:189.696000pt;}
._1a_c00270{width:193.872000pt;}
._24_c00270{width:197.424000pt;}
._1f_c00270{width:204.839680pt;}
._6_c00270{width:207.024000pt;}
._1b_c00270{width:208.656000pt;}
._28_c00270{width:212.299200pt;}
._11_c00270{width:218.064000pt;}
._29_c00270{width:226.439680pt;}
._20_c00270{width:246.441280pt;}
._2c_c00270{width:254.606400pt;}
._19_c00270{width:273.384000pt;}
._a_c00270{width:296.126400pt;}
._d_c00270{width:298.123200pt;}
._3_c00270{width:328.339200pt;}
._1c_c00270{width:351.868800pt;}
._12_c00270{width:354.494400pt;}
._25_c00270{width:365.999680pt;}
._27_c00270{width:371.217280pt;}
._1d_c00270{width:400.545600pt;}
._13_c00270{width:415.665600pt;}
._2d_c00270{width:421.804800pt;}
._10_c00270{width:457.723200pt;}
._2a_c00270{width:461.697600pt;}
._f_c00270{width:489.081600pt;}
.fs1_c00270{font-size:48.000000pt;}
.fs0_c00270{font-size:53.440000pt;}
.fs2_c00270{font-size:64.000000pt;}
.y0_c00270{bottom:0.000000pt;}
.y3_c00270{bottom:51.067067pt;}
.y55_c00270{bottom:104.823067pt;}
.y54_c00270{bottom:111.627067pt;}
.y53_c00270{bottom:124.667067pt;}
.y52_c00270{bottom:132.499067pt;}
.y51_c00270{bottom:146.023067pt;}
.y4e_c00270{bottom:159.547067pt;}
.y50_c00270{bottom:172.987067pt;}
.y4f_c00270{bottom:186.511067pt;}
.y4c_c00270{bottom:200.663067pt;}
.y4b_c00270{bottom:207.467067pt;}
.y4d_c00270{bottom:214.187067pt;}
.y4a_c00270{bottom:228.343067pt;}
.y49_c00270{bottom:235.147067pt;}
.y47_c00270{bottom:261.947067pt;}
.y46_c00270{bottom:282.023067pt;}
.y45_c00270{bottom:288.827067pt;}
.y48_c00270{bottom:298.187200pt;}
.y44_c00270{bottom:309.707067pt;}
.y43_c00270{bottom:323.867067pt;}
.y41_c00270{bottom:337.307067pt;}
.y42_c00270{bottom:350.831067pt;}
.y40_c00270{bottom:364.987200pt;}
.y3f_c00270{bottom:379.147200pt;}
.y3e_c00270{bottom:393.303200pt;}
.y3d_c00270{bottom:400.107200pt;}
.y3c_c00270{bottom:420.987200pt;}
.y3b_c00270{bottom:435.147200pt;}
.y39_c00270{bottom:449.307067pt;}
.y38_c00270{bottom:463.547067pt;}
.y37_c00270{bottom:470.267067pt;}
.y36_c00270{bottom:491.147067pt;}
.y35_c00270{bottom:505.291067pt;}
.y30_c00270{bottom:505.303067pt;}
.y32_c00270{bottom:512.095067pt;}
.y3a_c00270{bottom:517.627067pt;}
.y34_c00270{bottom:518.815067pt;}
.y2e_c00270{bottom:518.827067pt;}
.y31_c00270{bottom:525.619067pt;}
.y33_c00270{bottom:532.339067pt;}
.y2f_c00270{bottom:532.351067pt;}
.y2d_c00270{bottom:546.503067pt;}
.y2c_c00270{bottom:553.307067pt;}
.y2b_c00270{bottom:581.147067pt;}
.y2a_c00270{bottom:602.187067pt;}
.y29_c00270{bottom:616.347067pt;}
.y28_c00270{bottom:630.507067pt;}
.y26_c00270{bottom:644.663067pt;}
.y25_c00270{bottom:651.467067pt;}
.y27_c00270{bottom:658.187067pt;}
.y24_c00270{bottom:672.347067pt;}
.y23_c00270{bottom:686.487067pt;}
.y22_c00270{bottom:700.011067pt;}
.y1d_c00270{bottom:706.743067pt;}
.y21_c00270{bottom:713.535067pt;}
.y1c_c00270{bottom:713.547067pt;}
.y1e_c00270{bottom:720.267067pt;}
.y20_c00270{bottom:726.975067pt;}
.y1f_c00270{bottom:740.499067pt;}
.y1b_c00270{bottom:754.663067pt;}
.y1a_c00270{bottom:761.467067pt;}
.y19_c00270{bottom:782.343200pt;}
.y18_c00270{bottom:789.147200pt;}
.y17_c00270{bottom:810.023067pt;}
.y16_c00270{bottom:816.827067pt;}
.y15_c00270{bottom:837.707067pt;}
.y14_c00270{bottom:851.867067pt;}
.y13_c00270{bottom:866.023067pt;}
.y10_c00270{bottom:879.547067pt;}
.yf_c00270{bottom:886.267067pt;}
.y12_c00270{bottom:892.987067pt;}
.y11_c00270{bottom:906.511067pt;}
.yd_c00270{bottom:920.663067pt;}
.yc_c00270{bottom:927.467067pt;}
.ye_c00270{bottom:934.187067pt;}
.yb_c00270{bottom:948.347067pt;}
.y8_c00270{bottom:955.151067pt;}
.y7_c00270{bottom:961.787067pt;}
.ya_c00270{bottom:961.871067pt;}
.y9_c00270{bottom:975.311067pt;}
.y6_c00270{bottom:989.547067pt;}
.y5_c00270{bottom:1003.703067pt;}
.y4_c00270{bottom:1010.423067pt;}
.y2_c00270{bottom:1046.987067pt;}
.y1_c00270{bottom:1063.867067pt;}
.h5_c00270{height:40.171875pt;}
.h7_c00270{height:40.218750pt;}
.h1_c00270{height:44.724687pt;}
.h2_c00270{height:50.062500pt;}
.h3_c00270{height:64.142500pt;}
.h4_c00270{height:67.051875pt;}
.h6_c00270{height:67.387875pt;}
.h0_c00270{height:1122.666667pt;}
.w1_c00270{width:793.333333pt;}
.w0_c00270{width:793.626667pt;}
.x0_c00270{left:0.000000pt;}
.x1_c00270{left:113.440000pt;}
.x7_c00270{left:122.480000pt;}
.x2_c00270{left:191.044000pt;}
.x6_c00270{left:193.840000pt;}
.x5_c00270{left:257.040000pt;}
.x3_c00270{left:411.604000pt;}
.x4_c00270{left:518.556000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d4740ea2618fc1679b94c0b.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00271;src:url('chunks/assets/font_56796d197ff681e5584a15b6.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00271;src:url('chunks/assets/font_a1b62cd1610fe91e770aec39.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00271;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00271{font-family:ff5_c00271;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_c00271;src:url('chunks/assets/font_5ef87286eea75d4a1fbfbb2d.woff2')format("woff");}.ff6_c00271{font-family:ff6_c00271;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;}
.m1_c00271{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_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);}
.v3_c00271{vertical-align:-17.658000px;}
.v5_c00271{vertical-align:-15.120000px;}
.v0_c00271{vertical-align:0.000000px;}
.v4_c00271{vertical-align:15.120000px;}
.v1_c00271{vertical-align:30.240000px;}
.v2_c00271{vertical-align:60.858000px;}
.ls21_c00271{letter-spacing:-0.151200px;}
.ls22_c00271{letter-spacing:-0.113400px;}
.ls28_c00271{letter-spacing:-0.102600px;}
.ls2c_c00271{letter-spacing:-0.097200px;}
.ls23_c00271{letter-spacing:-0.081000px;}
.ls27_c00271{letter-spacing:-0.075600px;}
.ls25_c00271{letter-spacing:-0.059400px;}
.ls26_c00271{letter-spacing:-0.054000px;}
.ls2e_c00271{letter-spacing:-0.048600px;}
.ls2f_c00271{letter-spacing:-0.037800px;}
.ls29_c00271{letter-spacing:-0.032400px;}
.ls32_c00271{letter-spacing:-0.027000px;}
.ls33_c00271{letter-spacing:-0.023436px;}
.ls30_c00271{letter-spacing:-0.021600px;}
.ls2b_c00271{letter-spacing:-0.016200px;}
.ls34_c00271{letter-spacing:-0.014400px;}
.ls35_c00271{letter-spacing:-0.007200px;}
.ls2a_c00271{letter-spacing:-0.005400px;}
.ls37_c00271{letter-spacing:-0.003888px;}
.ls20_c00271{letter-spacing:0.000000px;}
.lsd_c00271{letter-spacing:0.010800px;}
.ls1b_c00271{letter-spacing:0.014364px;}
.ls14_c00271{letter-spacing:0.014400px;}
.ls2d_c00271{letter-spacing:0.016200px;}
.ls19_c00271{letter-spacing:0.019152px;}
.ls1c_c00271{letter-spacing:0.023940px;}
.ls9_c00271{letter-spacing:0.027000px;}
.ls16_c00271{letter-spacing:0.028728px;}
.lsa_c00271{letter-spacing:0.032400px;}
.ls0_c00271{letter-spacing:0.036072px;}
.ls1f_c00271{letter-spacing:0.038304px;}
.ls18_c00271{letter-spacing:0.043092px;}
.ls17_c00271{letter-spacing:0.047880px;}
.ls1_c00271{letter-spacing:0.048600px;}
.ls15_c00271{letter-spacing:0.054756px;}
.ls1e_c00271{letter-spacing:0.057456px;}
.ls11_c00271{letter-spacing:0.060120px;}
.lse_c00271{letter-spacing:0.064800px;}
.ls5_c00271{letter-spacing:0.070200px;}
.ls8_c00271{letter-spacing:0.075600px;}
.ls7_c00271{letter-spacing:0.081000px;}
.ls6_c00271{letter-spacing:0.086400px;}
.ls1d_c00271{letter-spacing:0.090972px;}
.lsb_c00271{letter-spacing:0.091800px;}
.ls36_c00271{letter-spacing:0.093600px;}
.lsc_c00271{letter-spacing:0.097200px;}
.ls2_c00271{letter-spacing:0.102600px;}
.ls1a_c00271{letter-spacing:0.104040px;}
.lsf_c00271{letter-spacing:0.108000px;}
.ls31_c00271{letter-spacing:0.113400px;}
.ls3_c00271{letter-spacing:0.118800px;}
.ls12_c00271{letter-spacing:0.136080px;}
.ls4_c00271{letter-spacing:0.156600px;}
.ls13_c00271{letter-spacing:34.450920px;}
.ls10_c00271{letter-spacing:467.802000px;}
.ls24_c00271{letter-spacing:467.818200px;}
.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;}
}
.ws1_c00271{word-spacing:-19.530000px;}
.ws3_c00271{word-spacing:-10.804752px;}
.ws2_c00271{word-spacing:-10.584756px;}
.ws0_c00271{word-spacing:-9.856080px;}
.ws4_c00271{word-spacing:-0.306612px;}
.ws11_c00271{word-spacing:-0.253800px;}
.ws27_c00271{word-spacing:-0.117180px;}
.ws2f_c00271{word-spacing:-0.086400px;}
.ws3b_c00271{word-spacing:-0.023940px;}
.ws3c_c00271{word-spacing:-0.019152px;}
.ws33_c00271{word-spacing:-0.009576px;}
.ws5_c00271{word-spacing:0.000000px;}
.ws2e_c00271{word-spacing:0.007200px;}
.ws31_c00271{word-spacing:0.021600px;}
.ws26_c00271{word-spacing:0.030060px;}
.ws32_c00271{word-spacing:0.050400px;}
.wsa_c00271{word-spacing:0.059400px;}
.ws22_c00271{word-spacing:0.064800px;}
.ws24_c00271{word-spacing:0.070200px;}
.ws8_c00271{word-spacing:0.075600px;}
.ws16_c00271{word-spacing:0.081000px;}
.ws12_c00271{word-spacing:0.086400px;}
.ws25_c00271{word-spacing:0.090180px;}
.wsd_c00271{word-spacing:0.091800px;}
.wse_c00271{word-spacing:0.097200px;}
.ws1a_c00271{word-spacing:0.102600px;}
.ws1d_c00271{word-spacing:0.113400px;}
.ws6_c00271{word-spacing:0.129600px;}
.ws14_c00271{word-spacing:0.151200px;}
.ws19_c00271{word-spacing:0.162000px;}
.ws1c_c00271{word-spacing:0.167400px;}
.ws13_c00271{word-spacing:0.183600px;}
.ws15_c00271{word-spacing:0.194400px;}
.ws1f_c00271{word-spacing:0.199800px;}
.ws1e_c00271{word-spacing:0.216000px;}
.ws1b_c00271{word-spacing:0.226800px;}
.ws9_c00271{word-spacing:0.232200px;}
.ws7_c00271{word-spacing:0.237600px;}
.wsc_c00271{word-spacing:0.253800px;}
.ws17_c00271{word-spacing:0.275400px;}
.wsf_c00271{word-spacing:0.280800px;}
.ws20_c00271{word-spacing:0.291600px;}
.ws3a_c00271{word-spacing:0.679896px;}
.ws34_c00271{word-spacing:0.689472px;}
.ws38_c00271{word-spacing:0.713412px;}
.ws35_c00271{word-spacing:0.718200px;}
.ws36_c00271{word-spacing:0.719280px;}
.ws37_c00271{word-spacing:0.722988px;}
.ws39_c00271{word-spacing:1.005480px;}
.ws2c_c00271{word-spacing:2.916000px;}
.ws2d_c00271{word-spacing:2.944800px;}
.ws2a_c00271{word-spacing:5.796000px;}
.ws2b_c00271{word-spacing:5.832000px;}
.ws28_c00271{word-spacing:12.614400px;}
.ws29_c00271{word-spacing:12.643200px;}
.ws30_c00271{word-spacing:13.341600px;}
.ws10_c00271{word-spacing:233.026200px;}
.ws23_c00271{word-spacing:233.182800px;}
.ws18_c00271{word-spacing:245.602800px;}
.wsb_c00271{word-spacing:335.901600px;}
.ws21_c00271{word-spacing:504.430200px;}
._11_c00271{margin-left:-246.186000px;}
._b_c00271{margin-left:-233.766000px;}
._1f_c00271{margin-left:-232.632000px;}
._1d_c00271{margin-left:-169.290000px;}
._0_c00271{margin-left:-1.022040px;}
._8_c00271{width:1.096200px;}
._17_c00271{width:65.566800px;}
._13_c00271{width:89.856000px;}
._d_c00271{width:102.492000px;}
._12_c00271{width:122.310000px;}
._16_c00271{width:144.957600px;}
._c_c00271{width:153.738000px;}
._19_c00271{width:161.884080px;}
._20_c00271{width:186.078600px;}
._1a_c00271{width:189.739800px;}
._5_c00271{width:232.470000px;}
._18_c00271{width:242.330400px;}
._1_c00271{width:245.818800px;}
._1b_c00271{width:246.823200px;}
._1c_c00271{width:252.109800px;}
._3_c00271{width:257.083200px;}
._e_c00271{width:261.090000px;}
._9_c00271{width:297.104040px;}
._21_c00271{width:310.554000px;}
._4_c00271{width:322.579800px;}
._7_c00271{width:335.404800px;}
._f_c00271{width:369.381600px;}
._10_c00271{width:381.090240px;}
._15_c00271{width:404.854200px;}
._2_c00271{width:411.318000px;}
._a_c00271{width:416.859840px;}
._14_c00271{width:427.503240px;}
._6_c00271{width:437.934600px;}
._1e_c00271{width:547.106400px;}
.fc0_c00271{color:rgb(0,0,0);}
.fs3_c00271{font-size:38.880000px;}
.fs5_c00271{font-size:42.120000px;}
.fs6_c00271{font-size:47.880000px;}
.fs2_c00271{font-size:54.000000px;}
.fs0_c00271{font-size:60.120000px;}
.fs1_c00271{font-size:72.000000px;}
.fs4_c00271{font-size:78.120000px;}
.y0_c00271{bottom:0.000000px;}
.y3_c00271{bottom:57.450450px;}
.y4_c00271{bottom:61.410450px;}
.y3d_c00271{bottom:113.703690px;}
.y3c_c00271{bottom:127.469190px;}
.y3b_c00271{bottom:141.334230px;}
.y3a_c00271{bottom:159.600450px;}
.y39_c00271{bottom:174.810600px;}
.y38_c00271{bottom:195.510600px;}
.y37_c00271{bottom:216.210450px;}
.y36_c00271{bottom:275.160450px;}
.y35_c00271{bottom:309.630450px;}
.y34_c00271{bottom:353.010450px;}
.y33_c00271{bottom:387.480450px;}
.y32_c00271{bottom:421.860450px;}
.y31_c00271{bottom:456.330450px;}
.y30_c00271{bottom:501.330450px;}
.y2f_c00271{bottom:540.120450px;}
.y2e_c00271{bottom:566.305950px;}
.y2d_c00271{bottom:573.960450px;}
.y2b_c00271{bottom:597.441450px;}
.y2a_c00271{bottom:617.070450px;}
.y29_c00271{bottom:632.190450px;}
.y28_c00271{bottom:651.720450px;}
.y26_c00271{bottom:667.650450px;}
.y25_c00271{bottom:675.210450px;}
.y27_c00271{bottom:682.770450px;}
.y2c_c00271{bottom:698.160450px;}
.y24_c00271{bottom:698.790450px;}
.y23_c00271{bottom:713.910450px;}
.y22_c00271{bottom:729.835950px;}
.y21_c00271{bottom:745.050450px;}
.y20_c00271{bottom:760.975950px;}
.y1f_c00271{bottom:768.630450px;}
.y1e_c00271{bottom:792.120450px;}
.y1c_c00271{bottom:808.045950px;}
.y1b_c00271{bottom:815.700450px;}
.y1d_c00271{bottom:823.260450px;}
.y1a_c00271{bottom:839.190450px;}
.y19_c00271{bottom:855.120450px;}
.y17_c00271{bottom:871.045950px;}
.y16_c00271{bottom:878.700450px;}
.y18_c00271{bottom:886.260450px;}
.y15_c00271{bottom:902.190450px;}
.y14_c00271{bottom:918.115950px;}
.y13_c00271{bottom:933.330450px;}
.y11_c00271{bottom:949.255950px;}
.y10_c00271{bottom:956.910450px;}
.y12_c00271{bottom:964.470450px;}
.yf_c00271{bottom:980.400450px;}
.ye_c00271{bottom:996.330450px;}
.yc_c00271{bottom:1012.255950px;}
.yb_c00271{bottom:1019.910450px;}
.yd_c00271{bottom:1027.470450px;}
.ya_c00271{bottom:1047.724950px;}
.y9_c00271{bottom:1055.190450px;}
.y8_c00271{bottom:1086.960450px;}
.y7_c00271{bottom:1106.940450px;}
.y6_c00271{bottom:1126.020450px;}
.y5_c00271{bottom:1133.580450px;}
.y2_c00271{bottom:1173.810450px;}
.y1_c00271{bottom:1196.850450px;}
.h5_c00271{height:45.193359px;}
.ha_c00271{height:45.246094px;}
.h2_c00271{height:47.988281px;}
.he_c00271{height:47.988881px;}
.hf_c00271{height:49.937344px;}
.h1_c00271{height:50.315273px;}
.h3_c00271{height:56.320312px;}
.hc_c00271{height:60.257812px;}
.hd_c00271{height:65.130820px;}
.h7_c00271{height:75.055359px;}
.h4_c00271{height:75.433359px;}
.h6_c00271{height:75.811359px;}
.hb_c00271{height:81.476719px;}
.h9_c00271{height:105.673359px;}
.h8_c00271{height:106.051359px;}
.h0_c00271{height:1263.000000px;}
.w1_c00271{width:892.500000px;}
.w0_c00271{width:892.830000px;}
.x0_c00271{left:0.000000px;}
.x2_c00271{left:127.620000px;}
.xd_c00271{left:137.790000px;}
.xf_c00271{left:154.440000px;}
.xb_c00271{left:170.190000px;}
.xc_c00271{left:171.450000px;}
.xa_c00271{left:175.590000px;}
.x7_c00271{left:214.920000px;}
.x5_c00271{left:218.065500px;}
.xe_c00271{left:285.750000px;}
.x6_c00271{left:289.170000px;}
.x4_c00271{left:435.240000px;}
.x3_c00271{left:446.490000px;}
.x8_c00271{left:463.050000px;}
.x1_c00271{left:490.770000px;}
.x9_c00271{left:583.375500px;}
@media print{
.v3_c00271{vertical-align:-15.696000pt;}
.v5_c00271{vertical-align:-13.440000pt;}
.v0_c00271{vertical-align:0.000000pt;}
.v4_c00271{vertical-align:13.440000pt;}
.v1_c00271{vertical-align:26.880000pt;}
.v2_c00271{vertical-align:54.096000pt;}
.ls21_c00271{letter-spacing:-0.134400pt;}
.ls22_c00271{letter-spacing:-0.100800pt;}
.ls28_c00271{letter-spacing:-0.091200pt;}
.ls2c_c00271{letter-spacing:-0.086400pt;}
.ls23_c00271{letter-spacing:-0.072000pt;}
.ls27_c00271{letter-spacing:-0.067200pt;}
.ls25_c00271{letter-spacing:-0.052800pt;}
.ls26_c00271{letter-spacing:-0.048000pt;}
.ls2e_c00271{letter-spacing:-0.043200pt;}
.ls2f_c00271{letter-spacing:-0.033600pt;}
.ls29_c00271{letter-spacing:-0.028800pt;}
.ls32_c00271{letter-spacing:-0.024000pt;}
.ls33_c00271{letter-spacing:-0.020832pt;}
.ls30_c00271{letter-spacing:-0.019200pt;}
.ls2b_c00271{letter-spacing:-0.014400pt;}
.ls34_c00271{letter-spacing:-0.012800pt;}
.ls35_c00271{letter-spacing:-0.006400pt;}
.ls2a_c00271{letter-spacing:-0.004800pt;}
.ls37_c00271{letter-spacing:-0.003456pt;}
.ls20_c00271{letter-spacing:0.000000pt;}
.lsd_c00271{letter-spacing:0.009600pt;}
.ls1b_c00271{letter-spacing:0.012768pt;}
.ls14_c00271{letter-spacing:0.012800pt;}
.ls2d_c00271{letter-spacing:0.014400pt;}
.ls19_c00271{letter-spacing:0.017024pt;}
.ls1c_c00271{letter-spacing:0.021280pt;}
.ls9_c00271{letter-spacing:0.024000pt;}
.ls16_c00271{letter-spacing:0.025536pt;}
.lsa_c00271{letter-spacing:0.028800pt;}
.ls0_c00271{letter-spacing:0.032064pt;}
.ls1f_c00271{letter-spacing:0.034048pt;}
.ls18_c00271{letter-spacing:0.038304pt;}
.ls17_c00271{letter-spacing:0.042560pt;}
.ls1_c00271{letter-spacing:0.043200pt;}
.ls15_c00271{letter-spacing:0.048672pt;}
.ls1e_c00271{letter-spacing:0.051072pt;}
.ls11_c00271{letter-spacing:0.053440pt;}
.lse_c00271{letter-spacing:0.057600pt;}
.ls5_c00271{letter-spacing:0.062400pt;}
.ls8_c00271{letter-spacing:0.067200pt;}
.ls7_c00271{letter-spacing:0.072000pt;}
.ls6_c00271{letter-spacing:0.076800pt;}
.ls1d_c00271{letter-spacing:0.080864pt;}
.lsb_c00271{letter-spacing:0.081600pt;}
.ls36_c00271{letter-spacing:0.083200pt;}
.lsc_c00271{letter-spacing:0.086400pt;}
.ls2_c00271{letter-spacing:0.091200pt;}
.ls1a_c00271{letter-spacing:0.092480pt;}
.lsf_c00271{letter-spacing:0.096000pt;}
.ls31_c00271{letter-spacing:0.100800pt;}
.ls3_c00271{letter-spacing:0.105600pt;}
.ls12_c00271{letter-spacing:0.120960pt;}
.ls4_c00271{letter-spacing:0.139200pt;}
.ls13_c00271{letter-spacing:30.623040pt;}
.ls10_c00271{letter-spacing:415.824000pt;}
.ls24_c00271{letter-spacing:415.838400pt;}
.ws1_c00271{word-spacing:-17.360000pt;}
.ws3_c00271{word-spacing:-9.604224pt;}
.ws2_c00271{word-spacing:-9.408672pt;}
.ws0_c00271{word-spacing:-8.760960pt;}
.ws4_c00271{word-spacing:-0.272544pt;}
.ws11_c00271{word-spacing:-0.225600pt;}
.ws27_c00271{word-spacing:-0.104160pt;}
.ws2f_c00271{word-spacing:-0.076800pt;}
.ws3b_c00271{word-spacing:-0.021280pt;}
.ws3c_c00271{word-spacing:-0.017024pt;}
.ws33_c00271{word-spacing:-0.008512pt;}
.ws5_c00271{word-spacing:0.000000pt;}
.ws2e_c00271{word-spacing:0.006400pt;}
.ws31_c00271{word-spacing:0.019200pt;}
.ws26_c00271{word-spacing:0.026720pt;}
.ws32_c00271{word-spacing:0.044800pt;}
.wsa_c00271{word-spacing:0.052800pt;}
.ws22_c00271{word-spacing:0.057600pt;}
.ws24_c00271{word-spacing:0.062400pt;}
.ws8_c00271{word-spacing:0.067200pt;}
.ws16_c00271{word-spacing:0.072000pt;}
.ws12_c00271{word-spacing:0.076800pt;}
.ws25_c00271{word-spacing:0.080160pt;}
.wsd_c00271{word-spacing:0.081600pt;}
.wse_c00271{word-spacing:0.086400pt;}
.ws1a_c00271{word-spacing:0.091200pt;}
.ws1d_c00271{word-spacing:0.100800pt;}
.ws6_c00271{word-spacing:0.115200pt;}
.ws14_c00271{word-spacing:0.134400pt;}
.ws19_c00271{word-spacing:0.144000pt;}
.ws1c_c00271{word-spacing:0.148800pt;}
.ws13_c00271{word-spacing:0.163200pt;}
.ws15_c00271{word-spacing:0.172800pt;}
.ws1f_c00271{word-spacing:0.177600pt;}
.ws1e_c00271{word-spacing:0.192000pt;}
.ws1b_c00271{word-spacing:0.201600pt;}
.ws9_c00271{word-spacing:0.206400pt;}
.ws7_c00271{word-spacing:0.211200pt;}
.wsc_c00271{word-spacing:0.225600pt;}
.ws17_c00271{word-spacing:0.244800pt;}
.wsf_c00271{word-spacing:0.249600pt;}
.ws20_c00271{word-spacing:0.259200pt;}
.ws3a_c00271{word-spacing:0.604352pt;}
.ws34_c00271{word-spacing:0.612864pt;}
.ws38_c00271{word-spacing:0.634144pt;}
.ws35_c00271{word-spacing:0.638400pt;}
.ws36_c00271{word-spacing:0.639360pt;}
.ws37_c00271{word-spacing:0.642656pt;}
.ws39_c00271{word-spacing:0.893760pt;}
.ws2c_c00271{word-spacing:2.592000pt;}
.ws2d_c00271{word-spacing:2.617600pt;}
.ws2a_c00271{word-spacing:5.152000pt;}
.ws2b_c00271{word-spacing:5.184000pt;}
.ws28_c00271{word-spacing:11.212800pt;}
.ws29_c00271{word-spacing:11.238400pt;}
.ws30_c00271{word-spacing:11.859200pt;}
.ws10_c00271{word-spacing:207.134400pt;}
.ws23_c00271{word-spacing:207.273600pt;}
.ws18_c00271{word-spacing:218.313600pt;}
.wsb_c00271{word-spacing:298.579200pt;}
.ws21_c00271{word-spacing:448.382400pt;}
._11_c00271{margin-left:-218.832000pt;}
._b_c00271{margin-left:-207.792000pt;}
._1f_c00271{margin-left:-206.784000pt;}
._1d_c00271{margin-left:-150.480000pt;}
._0_c00271{margin-left:-0.908480pt;}
._8_c00271{width:0.974400pt;}
._17_c00271{width:58.281600pt;}
._13_c00271{width:79.872000pt;}
._d_c00271{width:91.104000pt;}
._12_c00271{width:108.720000pt;}
._16_c00271{width:128.851200pt;}
._c_c00271{width:136.656000pt;}
._19_c00271{width:143.896960pt;}
._20_c00271{width:165.403200pt;}
._1a_c00271{width:168.657600pt;}
._5_c00271{width:206.640000pt;}
._18_c00271{width:215.404800pt;}
._1_c00271{width:218.505600pt;}
._1b_c00271{width:219.398400pt;}
._1c_c00271{width:224.097600pt;}
._3_c00271{width:228.518400pt;}
._e_c00271{width:232.080000pt;}
._9_c00271{width:264.092480pt;}
._21_c00271{width:276.048000pt;}
._4_c00271{width:286.737600pt;}
._7_c00271{width:298.137600pt;}
._f_c00271{width:328.339200pt;}
._10_c00271{width:338.746880pt;}
._15_c00271{width:359.870400pt;}
._2_c00271{width:365.616000pt;}
._a_c00271{width:370.542080pt;}
._14_c00271{width:380.002880pt;}
._6_c00271{width:389.275200pt;}
._1e_c00271{width:486.316800pt;}
.fs3_c00271{font-size:34.560000pt;}
.fs5_c00271{font-size:37.440000pt;}
.fs6_c00271{font-size:42.560000pt;}
.fs2_c00271{font-size:48.000000pt;}
.fs0_c00271{font-size:53.440000pt;}
.fs1_c00271{font-size:64.000000pt;}
.fs4_c00271{font-size:69.440000pt;}
.y0_c00271{bottom:0.000000pt;}
.y3_c00271{bottom:51.067067pt;}
.y4_c00271{bottom:54.587067pt;}
.y3d_c00271{bottom:101.069947pt;}
.y3c_c00271{bottom:113.305947pt;}
.y3b_c00271{bottom:125.630427pt;}
.y3a_c00271{bottom:141.867067pt;}
.y39_c00271{bottom:155.387200pt;}
.y38_c00271{bottom:173.787200pt;}
.y37_c00271{bottom:192.187067pt;}
.y36_c00271{bottom:244.587067pt;}
.y35_c00271{bottom:275.227067pt;}
.y34_c00271{bottom:313.787067pt;}
.y33_c00271{bottom:344.427067pt;}
.y32_c00271{bottom:374.987067pt;}
.y31_c00271{bottom:405.627067pt;}
.y30_c00271{bottom:445.627067pt;}
.y2f_c00271{bottom:480.107067pt;}
.y2e_c00271{bottom:503.383067pt;}
.y2d_c00271{bottom:510.187067pt;}
.y2b_c00271{bottom:531.059067pt;}
.y2a_c00271{bottom:548.507067pt;}
.y29_c00271{bottom:561.947067pt;}
.y28_c00271{bottom:579.307067pt;}
.y26_c00271{bottom:593.467067pt;}
.y25_c00271{bottom:600.187067pt;}
.y27_c00271{bottom:606.907067pt;}
.y2c_c00271{bottom:620.587067pt;}
.y24_c00271{bottom:621.147067pt;}
.y23_c00271{bottom:634.587067pt;}
.y22_c00271{bottom:648.743067pt;}
.y21_c00271{bottom:662.267067pt;}
.y20_c00271{bottom:676.423067pt;}
.y1f_c00271{bottom:683.227067pt;}
.y1e_c00271{bottom:704.107067pt;}
.y1c_c00271{bottom:718.263067pt;}
.y1b_c00271{bottom:725.067067pt;}
.y1d_c00271{bottom:731.787067pt;}
.y1a_c00271{bottom:745.947067pt;}
.y19_c00271{bottom:760.107067pt;}
.y17_c00271{bottom:774.263067pt;}
.y16_c00271{bottom:781.067067pt;}
.y18_c00271{bottom:787.787067pt;}
.y15_c00271{bottom:801.947067pt;}
.y14_c00271{bottom:816.103067pt;}
.y13_c00271{bottom:829.627067pt;}
.y11_c00271{bottom:843.783067pt;}
.y10_c00271{bottom:850.587067pt;}
.y12_c00271{bottom:857.307067pt;}
.yf_c00271{bottom:871.467067pt;}
.ye_c00271{bottom:885.627067pt;}
.yc_c00271{bottom:899.783067pt;}
.yb_c00271{bottom:906.587067pt;}
.yd_c00271{bottom:913.307067pt;}
.ya_c00271{bottom:931.311067pt;}
.y9_c00271{bottom:937.947067pt;}
.y8_c00271{bottom:966.187067pt;}
.y7_c00271{bottom:983.947067pt;}
.y6_c00271{bottom:1000.907067pt;}
.y5_c00271{bottom:1007.627067pt;}
.y2_c00271{bottom:1043.387067pt;}
.y1_c00271{bottom:1063.867067pt;}
.h5_c00271{height:40.171875pt;}
.ha_c00271{height:40.218750pt;}
.h2_c00271{height:42.656250pt;}
.he_c00271{height:42.656783pt;}
.hf_c00271{height:44.388750pt;}
.h1_c00271{height:44.724687pt;}
.h3_c00271{height:50.062500pt;}
.hc_c00271{height:53.562500pt;}
.hd_c00271{height:57.894063pt;}
.h7_c00271{height:66.715875pt;}
.h4_c00271{height:67.051875pt;}
.h6_c00271{height:67.387875pt;}
.hb_c00271{height:72.423750pt;}
.h9_c00271{height:93.931875pt;}
.h8_c00271{height:94.267875pt;}
.h0_c00271{height:1122.666667pt;}
.w1_c00271{width:793.333333pt;}
.w0_c00271{width:793.626667pt;}
.x0_c00271{left:0.000000pt;}
.x2_c00271{left:113.440000pt;}
.xd_c00271{left:122.480000pt;}
.xf_c00271{left:137.280000pt;}
.xb_c00271{left:151.280000pt;}
.xc_c00271{left:152.400000pt;}
.xa_c00271{left:156.080000pt;}
.x7_c00271{left:191.040000pt;}
.x5_c00271{left:193.836000pt;}
.xe_c00271{left:254.000000pt;}
.x6_c00271{left:257.040000pt;}
.x4_c00271{left:386.880000pt;}
.x3_c00271{left:396.880000pt;}
.x8_c00271{left:411.600000pt;}
.x1_c00271{left:436.240000pt;}
.x9_c00271{left:518.556000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d87ccd18f251dadbb138927.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.100098;font-style:normal;font-weight:normal;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_9bbb172019714ee29867646c.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;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_c00272;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00272;src:url('chunks/assets/font_b6de0bc3d2272ceb9bc31d32.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;line-height:1.102051;font-style:normal;font-weight:normal;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_c003c5df7d14ab673c3d4fc5.woff2')format("woff");}.ff5_c00272{font-family:ff5_c00272;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_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;}
.v1_c00272{vertical-align:15.840000px;}
.v2_c00272{vertical-align:29.880000px;}
.ls16_c00272{letter-spacing:-0.151200px;}
.ls21_c00272{letter-spacing:-0.108000px;}
.ls20_c00272{letter-spacing:-0.093600px;}
.ls1f_c00272{letter-spacing:-0.050400px;}
.ls22_c00272{letter-spacing:-0.043200px;}
.ls18_c00272{letter-spacing:-0.036000px;}
.ls19_c00272{letter-spacing:-0.028800px;}
.ls1e_c00272{letter-spacing:-0.021600px;}
.ls24_c00272{letter-spacing:-0.019440px;}
.ls17_c00272{letter-spacing:-0.014400px;}
.ls25_c00272{letter-spacing:-0.011664px;}
.ls26_c00272{letter-spacing:-0.009576px;}
.ls23_c00272{letter-spacing:-0.007776px;}
.ls1a_c00272{letter-spacing:-0.007200px;}
.ls15_c00272{letter-spacing:0.000000px;}
.ls8_c00272{letter-spacing:0.014364px;}
.ls5_c00272{letter-spacing:0.014400px;}
.ls12_c00272{letter-spacing:0.019152px;}
.ls6_c00272{letter-spacing:0.021600px;}
.lsd_c00272{letter-spacing:0.023940px;}
.ls13_c00272{letter-spacing:0.028728px;}
.ls1d_c00272{letter-spacing:0.028800px;}
.ls1c_c00272{letter-spacing:0.036000px;}
.lsc_c00272{letter-spacing:0.038304px;}
.lsb_c00272{letter-spacing:0.047880px;}
.ls0_c00272{letter-spacing:0.048096px;}
.ls10_c00272{letter-spacing:0.052668px;}
.ls4_c00272{letter-spacing:0.054756px;}
.ls9_c00272{letter-spacing:0.057456px;}
.lsf_c00272{letter-spacing:0.067032px;}
.ls14_c00272{letter-spacing:0.071820px;}
.ls11_c00272{letter-spacing:0.081396px;}
.ls1b_c00272{letter-spacing:0.093600px;}
.lsa_c00272{letter-spacing:0.100548px;}
.lse_c00272{letter-spacing:0.104040px;}
.ls2_c00272{letter-spacing:0.144000px;}
.ls7_c00272{letter-spacing:65.304000px;}
.ls3_c00272{letter-spacing:66.024000px;}
.ls1_c00272{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00272{word-spacing:-17.964000px;}
.ws3_c00272{word-spacing:-17.956800px;}
.ws1_c00272{word-spacing:-17.906400px;}
.ws4_c00272{word-spacing:-10.800864px;}
.ws6_c00272{word-spacing:-10.796976px;}
.ws5_c00272{word-spacing:-10.789200px;}
.ws0_c00272{word-spacing:-10.584756px;}
.ws42_c00272{word-spacing:-0.052668px;}
.ws3f_c00272{word-spacing:-0.038304px;}
.ws3c_c00272{word-spacing:-0.028728px;}
.ws3d_c00272{word-spacing:-0.019152px;}
.ws1a_c00272{word-spacing:-0.014400px;}
.ws41_c00272{word-spacing:-0.009576px;}
.ws34_c00272{word-spacing:-0.004788px;}
.ws8_c00272{word-spacing:0.000000px;}
.ws3e_c00272{word-spacing:0.004788px;}
.ws2b_c00272{word-spacing:0.007200px;}
.ws1d_c00272{word-spacing:0.021600px;}
.ws40_c00272{word-spacing:0.028728px;}
.ws7_c00272{word-spacing:0.042084px;}
.wsf_c00272{word-spacing:0.100800px;}
.ws20_c00272{word-spacing:0.165600px;}
.ws2c_c00272{word-spacing:0.194400px;}
.ws1c_c00272{word-spacing:0.345600px;}
.ws1b_c00272{word-spacing:0.439200px;}
.ws25_c00272{word-spacing:0.734400px;}
.ws39_c00272{word-spacing:3.533544px;}
.ws3a_c00272{word-spacing:3.547908px;}
.ws3b_c00272{word-spacing:3.581424px;}
.ws19_c00272{word-spacing:3.607200px;}
.ws13_c00272{word-spacing:3.614400px;}
.ws23_c00272{word-spacing:3.657600px;}
.ws12_c00272{word-spacing:3.672000px;}
.ws22_c00272{word-spacing:3.729600px;}
.ws1e_c00272{word-spacing:3.996000px;}
.ws31_c00272{word-spacing:4.290048px;}
.ws32_c00272{word-spacing:4.299624px;}
.ws33_c00272{word-spacing:4.313988px;}
.ws28_c00272{word-spacing:5.068800px;}
.ws2a_c00272{word-spacing:5.119200px;}
.ws29_c00272{word-spacing:5.508000px;}
.wsd_c00272{word-spacing:6.120000px;}
.wse_c00272{word-spacing:6.177600px;}
.ws9_c00272{word-spacing:6.494400px;}
.wsa_c00272{word-spacing:6.516000px;}
.ws37_c00272{word-spacing:7.148484px;}
.ws38_c00272{word-spacing:7.162848px;}
.ws35_c00272{word-spacing:7.201152px;}
.ws36_c00272{word-spacing:7.566048px;}
.ws18_c00272{word-spacing:7.855200px;}
.ws17_c00272{word-spacing:7.948800px;}
.ws2f_c00272{word-spacing:8.556156px;}
.ws2e_c00272{word-spacing:8.599248px;}
.ws30_c00272{word-spacing:8.608824px;}
.ws2d_c00272{word-spacing:8.642340px;}
.wsb_c00272{word-spacing:11.246400px;}
.wsc_c00272{word-spacing:11.275200px;}
.ws15_c00272{word-spacing:11.520000px;}
.ws16_c00272{word-spacing:11.563200px;}
.ws26_c00272{word-spacing:13.269600px;}
.ws27_c00272{word-spacing:13.399200px;}
.ws1f_c00272{word-spacing:14.788800px;}
.ws21_c00272{word-spacing:15.861600px;}
.ws11_c00272{word-spacing:16.934400px;}
.ws10_c00272{word-spacing:17.128800px;}
.ws24_c00272{word-spacing:21.600000px;}
.ws14_c00272{word-spacing:30.672000px;}
._0_c00272{margin-left:-1.322640px;}
._1_c00272{width:1.094400px;}
._2_c00272{width:7.609320px;}
.fc0_c00272{color:rgb(0,0,0);}
.fs5_c00272{font-size:38.880000px;}
.fs3_c00272{font-size:42.120000px;}
.fs4_c00272{font-size:47.880000px;}
.fs1_c00272{font-size:54.000000px;}
.fs0_c00272{font-size:60.120000px;}
.fs2_c00272{font-size:72.000000px;}
.y0_c00272{bottom:0.000000px;}
.y3_c00272{bottom:57.450450px;}
.y26_c00272{bottom:113.698470px;}
.y25_c00272{bottom:132.067620px;}
.y24_c00272{bottom:150.333840px;}
.y23_c00272{bottom:164.099340px;}
.y22_c00272{bottom:177.967470px;}
.y21_c00272{bottom:196.233690px;}
.y20_c00272{bottom:209.999190px;}
.y1f_c00272{bottom:223.860450px;}
.y1e_c00272{bottom:239.070450px;}
.y1d_c00272{bottom:259.770450px;}
.y1c_c00272{bottom:280.470600px;}
.y1b_c00272{bottom:354.000450px;}
.y1a_c00272{bottom:384.330450px;}
.y19_c00272{bottom:414.750450px;}
.y18_c00272{bottom:445.080450px;}
.y17_c00272{bottom:475.500450px;}
.y16_c00272{bottom:505.830450px;}
.y15_c00272{bottom:536.250450px;}
.y14_c00272{bottom:566.580450px;}
.y13_c00272{bottom:606.000450px;}
.y12_c00272{bottom:636.330450px;}
.y11_c00272{bottom:666.750450px;}
.y10_c00272{bottom:710.040450px;}
.yf_c00272{bottom:744.510450px;}
.ye_c00272{bottom:787.890450px;}
.yd_c00272{bottom:822.360450px;}
.yc_c00272{bottom:856.740450px;}
.yb_c00272{bottom:891.210450px;}
.ya_c00272{bottom:925.590450px;}
.y9_c00272{bottom:960.060450px;}
.y8_c00272{bottom:994.440450px;}
.y7_c00272{bottom:1037.910450px;}
.y6_c00272{bottom:1072.290450px;}
.y5_c00272{bottom:1106.760450px;}
.y4_c00272{bottom:1141.140450px;}
.y2_c00272{bottom:1177.860450px;}
.y1_c00272{bottom:1196.850450px;}
.h9_c00272{height:47.988281px;}
.ha_c00272{height:49.937344px;}
.h1_c00272{height:50.315273px;}
.h2_c00272{height:56.320312px;}
.h5_c00272{height:60.257812px;}
.h8_c00272{height:60.890625px;}
.h6_c00272{height:65.130820px;}
.h7_c00272{height:65.131420px;}
.h3_c00272{height:72.160312px;}
.h4_c00272{height:75.093750px;}
.h0_c00272{height:1263.000000px;}
.w1_c00272{width:892.500000px;}
.w0_c00272{width:892.830000px;}
.x0_c00272{left:0.000000px;}
.x1_c00272{left:127.620000px;}
.x2_c00272{left:154.440000px;}
.x3_c00272{left:181.170000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.v1_c00272{vertical-align:14.080000pt;}
.v2_c00272{vertical-align:26.560000pt;}
.ls16_c00272{letter-spacing:-0.134400pt;}
.ls21_c00272{letter-spacing:-0.096000pt;}
.ls20_c00272{letter-spacing:-0.083200pt;}
.ls1f_c00272{letter-spacing:-0.044800pt;}
.ls22_c00272{letter-spacing:-0.038400pt;}
.ls18_c00272{letter-spacing:-0.032000pt;}
.ls19_c00272{letter-spacing:-0.025600pt;}
.ls1e_c00272{letter-spacing:-0.019200pt;}
.ls24_c00272{letter-spacing:-0.017280pt;}
.ls17_c00272{letter-spacing:-0.012800pt;}
.ls25_c00272{letter-spacing:-0.010368pt;}
.ls26_c00272{letter-spacing:-0.008512pt;}
.ls23_c00272{letter-spacing:-0.006912pt;}
.ls1a_c00272{letter-spacing:-0.006400pt;}
.ls15_c00272{letter-spacing:0.000000pt;}
.ls8_c00272{letter-spacing:0.012768pt;}
.ls5_c00272{letter-spacing:0.012800pt;}
.ls12_c00272{letter-spacing:0.017024pt;}
.ls6_c00272{letter-spacing:0.019200pt;}
.lsd_c00272{letter-spacing:0.021280pt;}
.ls13_c00272{letter-spacing:0.025536pt;}
.ls1d_c00272{letter-spacing:0.025600pt;}
.ls1c_c00272{letter-spacing:0.032000pt;}
.lsc_c00272{letter-spacing:0.034048pt;}
.lsb_c00272{letter-spacing:0.042560pt;}
.ls0_c00272{letter-spacing:0.042752pt;}
.ls10_c00272{letter-spacing:0.046816pt;}
.ls4_c00272{letter-spacing:0.048672pt;}
.ls9_c00272{letter-spacing:0.051072pt;}
.lsf_c00272{letter-spacing:0.059584pt;}
.ls14_c00272{letter-spacing:0.063840pt;}
.ls11_c00272{letter-spacing:0.072352pt;}
.ls1b_c00272{letter-spacing:0.083200pt;}
.lsa_c00272{letter-spacing:0.089376pt;}
.lse_c00272{letter-spacing:0.092480pt;}
.ls2_c00272{letter-spacing:0.128000pt;}
.ls7_c00272{letter-spacing:58.048000pt;}
.ls3_c00272{letter-spacing:58.688000pt;}
.ls1_c00272{letter-spacing:1077.440000pt;}
.ws2_c00272{word-spacing:-15.968000pt;}
.ws3_c00272{word-spacing:-15.961600pt;}
.ws1_c00272{word-spacing:-15.916800pt;}
.ws4_c00272{word-spacing:-9.600768pt;}
.ws6_c00272{word-spacing:-9.597312pt;}
.ws5_c00272{word-spacing:-9.590400pt;}
.ws0_c00272{word-spacing:-9.408672pt;}
.ws42_c00272{word-spacing:-0.046816pt;}
.ws3f_c00272{word-spacing:-0.034048pt;}
.ws3c_c00272{word-spacing:-0.025536pt;}
.ws3d_c00272{word-spacing:-0.017024pt;}
.ws1a_c00272{word-spacing:-0.012800pt;}
.ws41_c00272{word-spacing:-0.008512pt;}
.ws34_c00272{word-spacing:-0.004256pt;}
.ws8_c00272{word-spacing:0.000000pt;}
.ws3e_c00272{word-spacing:0.004256pt;}
.ws2b_c00272{word-spacing:0.006400pt;}
.ws1d_c00272{word-spacing:0.019200pt;}
.ws40_c00272{word-spacing:0.025536pt;}
.ws7_c00272{word-spacing:0.037408pt;}
.wsf_c00272{word-spacing:0.089600pt;}
.ws20_c00272{word-spacing:0.147200pt;}
.ws2c_c00272{word-spacing:0.172800pt;}
.ws1c_c00272{word-spacing:0.307200pt;}
.ws1b_c00272{word-spacing:0.390400pt;}
.ws25_c00272{word-spacing:0.652800pt;}
.ws39_c00272{word-spacing:3.140928pt;}
.ws3a_c00272{word-spacing:3.153696pt;}
.ws3b_c00272{word-spacing:3.183488pt;}
.ws19_c00272{word-spacing:3.206400pt;}
.ws13_c00272{word-spacing:3.212800pt;}
.ws23_c00272{word-spacing:3.251200pt;}
.ws12_c00272{word-spacing:3.264000pt;}
.ws22_c00272{word-spacing:3.315200pt;}
.ws1e_c00272{word-spacing:3.552000pt;}
.ws31_c00272{word-spacing:3.813376pt;}
.ws32_c00272{word-spacing:3.821888pt;}
.ws33_c00272{word-spacing:3.834656pt;}
.ws28_c00272{word-spacing:4.505600pt;}
.ws2a_c00272{word-spacing:4.550400pt;}
.ws29_c00272{word-spacing:4.896000pt;}
.wsd_c00272{word-spacing:5.440000pt;}
.wse_c00272{word-spacing:5.491200pt;}
.ws9_c00272{word-spacing:5.772800pt;}
.wsa_c00272{word-spacing:5.792000pt;}
.ws37_c00272{word-spacing:6.354208pt;}
.ws38_c00272{word-spacing:6.366976pt;}
.ws35_c00272{word-spacing:6.401024pt;}
.ws36_c00272{word-spacing:6.725376pt;}
.ws18_c00272{word-spacing:6.982400pt;}
.ws17_c00272{word-spacing:7.065600pt;}
.ws2f_c00272{word-spacing:7.605472pt;}
.ws2e_c00272{word-spacing:7.643776pt;}
.ws30_c00272{word-spacing:7.652288pt;}
.ws2d_c00272{word-spacing:7.682080pt;}
.wsb_c00272{word-spacing:9.996800pt;}
.wsc_c00272{word-spacing:10.022400pt;}
.ws15_c00272{word-spacing:10.240000pt;}
.ws16_c00272{word-spacing:10.278400pt;}
.ws26_c00272{word-spacing:11.795200pt;}
.ws27_c00272{word-spacing:11.910400pt;}
.ws1f_c00272{word-spacing:13.145600pt;}
.ws21_c00272{word-spacing:14.099200pt;}
.ws11_c00272{word-spacing:15.052800pt;}
.ws10_c00272{word-spacing:15.225600pt;}
.ws24_c00272{word-spacing:19.200000pt;}
.ws14_c00272{word-spacing:27.264000pt;}
._0_c00272{margin-left:-1.175680pt;}
._1_c00272{width:0.972800pt;}
._2_c00272{width:6.763840pt;}
.fs5_c00272{font-size:34.560000pt;}
.fs3_c00272{font-size:37.440000pt;}
.fs4_c00272{font-size:42.560000pt;}
.fs1_c00272{font-size:48.000000pt;}
.fs0_c00272{font-size:53.440000pt;}
.fs2_c00272{font-size:64.000000pt;}
.y0_c00272{bottom:0.000000pt;}
.y3_c00272{bottom:51.067067pt;}
.y26_c00272{bottom:101.065307pt;}
.y25_c00272{bottom:117.393440pt;}
.y24_c00272{bottom:133.630080pt;}
.y23_c00272{bottom:145.866080pt;}
.y22_c00272{bottom:158.193307pt;}
.y21_c00272{bottom:174.429947pt;}
.y20_c00272{bottom:186.665947pt;}
.y1f_c00272{bottom:198.987067pt;}
.y1e_c00272{bottom:212.507067pt;}
.y1d_c00272{bottom:230.907067pt;}
.y1c_c00272{bottom:249.307200pt;}
.y1b_c00272{bottom:314.667067pt;}
.y1a_c00272{bottom:341.627067pt;}
.y19_c00272{bottom:368.667067pt;}
.y18_c00272{bottom:395.627067pt;}
.y17_c00272{bottom:422.667067pt;}
.y16_c00272{bottom:449.627067pt;}
.y15_c00272{bottom:476.667067pt;}
.y14_c00272{bottom:503.627067pt;}
.y13_c00272{bottom:538.667067pt;}
.y12_c00272{bottom:565.627067pt;}
.y11_c00272{bottom:592.667067pt;}
.y10_c00272{bottom:631.147067pt;}
.yf_c00272{bottom:661.787067pt;}
.ye_c00272{bottom:700.347067pt;}
.yd_c00272{bottom:730.987067pt;}
.yc_c00272{bottom:761.547067pt;}
.yb_c00272{bottom:792.187067pt;}
.ya_c00272{bottom:822.747067pt;}
.y9_c00272{bottom:853.387067pt;}
.y8_c00272{bottom:883.947067pt;}
.y7_c00272{bottom:922.587067pt;}
.y6_c00272{bottom:953.147067pt;}
.y5_c00272{bottom:983.787067pt;}
.y4_c00272{bottom:1014.347067pt;}
.y2_c00272{bottom:1046.987067pt;}
.y1_c00272{bottom:1063.867067pt;}
.h9_c00272{height:42.656250pt;}
.ha_c00272{height:44.388750pt;}
.h1_c00272{height:44.724687pt;}
.h2_c00272{height:50.062500pt;}
.h5_c00272{height:53.562500pt;}
.h8_c00272{height:54.125000pt;}
.h6_c00272{height:57.894063pt;}
.h7_c00272{height:57.894596pt;}
.h3_c00272{height:64.142500pt;}
.h4_c00272{height:66.750000pt;}
.h0_c00272{height:1122.666667pt;}
.w1_c00272{width:793.333333pt;}
.w0_c00272{width:793.626667pt;}
.x0_c00272{left:0.000000pt;}
.x1_c00272{left:113.440000pt;}
.x2_c00272{left:137.280000pt;}
.x3_c00272{left:161.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f774530ce4bf621ee8f89971.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00273;src:url('chunks/assets/font_14fe2040d3582bad6d3413ff.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00273;src:url('chunks/assets/font_950e8f6cca90a011ed7d4c95.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00273;src:url('chunks/assets/font_ba5e9adfc63632f2f205e0a9.woff2')format("woff");}.ff5_c00273{font-family:ff5_c00273;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00273;src:url('chunks/assets/font_0512f64d497c806924f725c3.woff2')format("woff");}.ff6_c00273{font-family:ff6_c00273;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00273{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_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;}
.v1_c00273{vertical-align:27.004320px;}
.ls17_c00273{letter-spacing:-0.151200px;}
.ls1e_c00273{letter-spacing:-0.124488px;}
.ls2d_c00273{letter-spacing:-0.090972px;}
.ls2e_c00273{letter-spacing:-0.086184px;}
.ls20_c00273{letter-spacing:-0.076608px;}
.ls21_c00273{letter-spacing:-0.062244px;}
.ls28_c00273{letter-spacing:-0.057456px;}
.ls29_c00273{letter-spacing:-0.052668px;}
.ls1c_c00273{letter-spacing:-0.048600px;}
.ls2a_c00273{letter-spacing:-0.047880px;}
.ls24_c00273{letter-spacing:-0.043092px;}
.ls30_c00273{letter-spacing:-0.038304px;}
.ls1d_c00273{letter-spacing:-0.037800px;}
.ls25_c00273{letter-spacing:-0.033516px;}
.ls1b_c00273{letter-spacing:-0.028800px;}
.ls26_c00273{letter-spacing:-0.023940px;}
.ls19_c00273{letter-spacing:-0.021600px;}
.ls2b_c00273{letter-spacing:-0.019152px;}
.ls18_c00273{letter-spacing:-0.014400px;}
.ls27_c00273{letter-spacing:-0.014364px;}
.ls2c_c00273{letter-spacing:-0.009576px;}
.ls1a_c00273{letter-spacing:-0.007200px;}
.ls16_c00273{letter-spacing:0.000000px;}
.ls6_c00273{letter-spacing:0.004788px;}
.ls4_c00273{letter-spacing:0.007200px;}
.lse_c00273{letter-spacing:0.009576px;}
.ls7_c00273{letter-spacing:0.014364px;}
.ls3_c00273{letter-spacing:0.014400px;}
.ls8_c00273{letter-spacing:0.019152px;}
.ls14_c00273{letter-spacing:0.023940px;}
.ls10_c00273{letter-spacing:0.028728px;}
.lsd_c00273{letter-spacing:0.033516px;}
.ls0_c00273{letter-spacing:0.036072px;}
.lsc_c00273{letter-spacing:0.038304px;}
.ls15_c00273{letter-spacing:0.043092px;}
.ls1f_c00273{letter-spacing:0.047880px;}
.ls22_c00273{letter-spacing:0.052668px;}
.lsa_c00273{letter-spacing:0.086184px;}
.ls5_c00273{letter-spacing:0.095760px;}
.ls2f_c00273{letter-spacing:0.110124px;}
.ls9_c00273{letter-spacing:0.129276px;}
.ls12_c00273{letter-spacing:0.138852px;}
.ls1_c00273{letter-spacing:0.144000px;}
.ls23_c00273{letter-spacing:0.158004px;}
.ls13_c00273{letter-spacing:0.162792px;}
.lsb_c00273{letter-spacing:0.181944px;}
.ls11_c00273{letter-spacing:0.234612px;}
.ls2_c00273{letter-spacing:66.024000px;}
.lsf_c00273{letter-spacing:388.689840px;}
.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;}
}
.ws1_c00273{word-spacing:-47.880000px;}
.ws4_c00273{word-spacing:-12.013092px;}
.ws2_c00273{word-spacing:-11.984364px;}
.ws3_c00273{word-spacing:-11.960424px;}
.ws0_c00273{word-spacing:-11.926908px;}
.ws2d_c00273{word-spacing:-0.325584px;}
.ws5_c00273{word-spacing:-0.306612px;}
.ws24_c00273{word-spacing:-0.272916px;}
.ws31_c00273{word-spacing:-0.253764px;}
.ws2e_c00273{word-spacing:-0.229824px;}
.ws1e_c00273{word-spacing:-0.220248px;}
.ws34_c00273{word-spacing:-0.201096px;}
.ws19_c00273{word-spacing:-0.186732px;}
.ws22_c00273{word-spacing:-0.177156px;}
.ws1b_c00273{word-spacing:-0.143640px;}
.ws16_c00273{word-spacing:-0.138852px;}
.ws26_c00273{word-spacing:-0.129276px;}
.ws29_c00273{word-spacing:-0.124488px;}
.ws2c_c00273{word-spacing:-0.119700px;}
.ws23_c00273{word-spacing:-0.114912px;}
.ws1d_c00273{word-spacing:-0.110124px;}
.ws2a_c00273{word-spacing:-0.105336px;}
.ws1c_c00273{word-spacing:-0.095760px;}
.ws17_c00273{word-spacing:-0.090972px;}
.ws32_c00273{word-spacing:-0.081396px;}
.ws20_c00273{word-spacing:-0.076608px;}
.ws28_c00273{word-spacing:-0.071820px;}
.ws1f_c00273{word-spacing:-0.067032px;}
.ws38_c00273{word-spacing:-0.052668px;}
.ws30_c00273{word-spacing:-0.047880px;}
.ws25_c00273{word-spacing:-0.038304px;}
.ws1a_c00273{word-spacing:-0.028728px;}
.ws18_c00273{word-spacing:-0.014364px;}
.ws33_c00273{word-spacing:-0.004788px;}
.ws6_c00273{word-spacing:0.000000px;}
.ws9_c00273{word-spacing:0.007200px;}
.ws27_c00273{word-spacing:0.220248px;}
.ws2f_c00273{word-spacing:0.248976px;}
.ws35_c00273{word-spacing:0.301644px;}
.ws21_c00273{word-spacing:0.325584px;}
.ws13_c00273{word-spacing:0.381600px;}
.ws11_c00273{word-spacing:2.865600px;}
.ws12_c00273{word-spacing:2.908800px;}
.wsd_c00273{word-spacing:5.774400px;}
.wse_c00273{word-spacing:6.134400px;}
.ws10_c00273{word-spacing:6.472800px;}
.wsf_c00273{word-spacing:6.523200px;}
.wsb_c00273{word-spacing:6.854400px;}
.wsc_c00273{word-spacing:15.840000px;}
.wsa_c00273{word-spacing:15.847200px;}
.ws8_c00273{word-spacing:17.258400px;}
.ws7_c00273{word-spacing:22.744800px;}
.ws37_c00273{word-spacing:79.025940px;}
.ws2b_c00273{word-spacing:79.112124px;}
.ws36_c00273{word-spacing:79.131276px;}
.ws14_c00273{word-spacing:85.908600px;}
.ws15_c00273{word-spacing:247.179600px;}
._6_c00273{margin-left:-247.487400px;}
._4_c00273{margin-left:-85.698000px;}
._9_c00273{margin-left:-79.193520px;}
._8_c00273{margin-left:-33.480000px;}
._7_c00273{margin-left:-30.942000px;}
._0_c00273{margin-left:-1.022040px;}
._1_c00273{width:1.080000px;}
._2_c00273{width:37.422000px;}
._e_c00273{width:58.276836px;}
._a_c00273{width:70.680456px;}
._3_c00273{width:90.720000px;}
._5_c00273{width:92.718000px;}
._b_c00273{width:120.466080px;}
._d_c00273{width:309.577716px;}
._c_c00273{width:318.612672px;}
.fc0_c00273{color:rgb(0,0,0);}
.fs3_c00273{font-size:47.880000px;}
.fs2_c00273{font-size:54.000000px;}
.fs0_c00273{font-size:60.120000px;}
.fs1_c00273{font-size:72.000000px;}
.y0_c00273{bottom:0.000000px;}
.y3_c00273{bottom:57.450450px;}
.y4_c00273{bottom:61.410450px;}
.y6e_c00273{bottom:264.988290px;}
.y6b_c00273{bottom:267.060450px;}
.y6c_c00273{bottom:278.490450px;}
.y6d_c00273{bottom:291.992610px;}
.y6f_c00273{bottom:296.134230px;}
.y6a_c00273{bottom:310.347210px;}
.y69_c00273{bottom:323.849370px;}
.y66_c00273{bottom:330.600450px;}
.y68_c00273{bottom:337.351530px;}
.y67_c00273{bottom:350.853690px;}
.y64_c00273{bottom:365.015010px;}
.y65_c00273{bottom:370.200450px;}
.y53_c00273{bottom:371.802000px;}
.y63_c00273{bottom:378.517170px;}
.y5a_c00273{bottom:385.292190px;}
.y52_c00273{bottom:385.304160px;}
.y62_c00273{bottom:392.019330px;}
.y58_c00273{bottom:398.794350px;}
.y51_c00273{bottom:398.806320px;}
.y4c_c00273{bottom:398.818290px;}
.y61_c00273{bottom:405.521490px;}
.y5c_c00273{bottom:405.533460px;}
.y55_c00273{bottom:405.545430px;}
.y57_c00273{bottom:412.296510px;}
.y50_c00273{bottom:412.308480px;}
.y4a_c00273{bottom:412.320450px;}
.y60_c00273{bottom:419.023650px;}
.y5b_c00273{bottom:419.035620px;}
.y54_c00273{bottom:419.047590px;}
.y56_c00273{bottom:425.798670px;}
.y4f_c00273{bottom:425.810640px;}
.y4b_c00273{bottom:425.822610px;}
.y5f_c00273{bottom:432.525810px;}
.y59_c00273{bottom:439.300830px;}
.y4e_c00273{bottom:439.312800px;}
.y5e_c00273{bottom:446.027970px;}
.y4d_c00273{bottom:452.814960px;}
.y5d_c00273{bottom:459.530130px;}
.y48_c00273{bottom:473.864160px;}
.y47_c00273{bottom:487.366320px;}
.y41_c00273{bottom:487.378290px;}
.y42_c00273{bottom:494.129370px;}
.y46_c00273{bottom:500.868480px;}
.y3f_c00273{bottom:500.880450px;}
.y43_c00273{bottom:507.631530px;}
.y45_c00273{bottom:514.370640px;}
.y40_c00273{bottom:514.382610px;}
.y49_c00273{bottom:527.860830px;}
.y44_c00273{bottom:527.872800px;}
.y35_c00273{bottom:542.070030px;}
.y34_c00273{bottom:555.572190px;}
.y2e_c00273{bottom:555.584160px;}
.y39_c00273{bottom:562.311300px;}
.y3c_c00273{bottom:569.050410px;}
.y33_c00273{bottom:569.074350px;}
.y2d_c00273{bottom:569.086320px;}
.y37_c00273{bottom:575.813460px;}
.y29_c00273{bottom:575.849370px;}
.y3e_c00273{bottom:578.460450px;}
.y3b_c00273{bottom:582.552570px;}
.y32_c00273{bottom:582.576510px;}
.y2c_c00273{bottom:582.588480px;}
.y28_c00273{bottom:582.600450px;}
.y36_c00273{bottom:589.315620px;}
.y3a_c00273{bottom:596.054730px;}
.y31_c00273{bottom:596.078670px;}
.y2b_c00273{bottom:596.090640px;}
.y38_c00273{bottom:602.817780px;}
.y30_c00273{bottom:609.580830px;}
.y2a_c00273{bottom:609.592800px;}
.y3d_c00273{bottom:623.047080px;}
.y2f_c00273{bottom:623.082990px;}
.y27_c00273{bottom:637.267170px;}
.y1e_c00273{bottom:637.291110px;}
.y18_c00273{bottom:644.054160px;}
.y26_c00273{bottom:650.769330px;}
.y1d_c00273{bottom:650.793270px;}
.y21_c00273{bottom:657.532380px;}
.y17_c00273{bottom:657.556320px;}
.y25_c00273{bottom:664.271490px;}
.y1a_c00273{bottom:664.295430px;}
.y13_c00273{bottom:664.319370px;}
.y20_c00273{bottom:671.034540px;}
.y16_c00273{bottom:671.058480px;}
.y12_c00273{bottom:671.070450px;}
.y24_c00273{bottom:677.773650px;}
.y19_c00273{bottom:677.797590px;}
.y1f_c00273{bottom:684.536700px;}
.y15_c00273{bottom:684.560640px;}
.y23_c00273{bottom:691.275810px;}
.y1c_c00273{bottom:691.299750px;}
.y14_c00273{bottom:698.062800px;}
.y22_c00273{bottom:704.777970px;}
.y1b_c00273{bottom:704.801910px;}
.y11_c00273{bottom:719.490450px;}
.y10_c00273{bottom:755.850450px;}
.yf_c00273{bottom:786.180450px;}
.ye_c00273{bottom:816.600450px;}
.yd_c00273{bottom:859.890450px;}
.yc_c00273{bottom:894.360450px;}
.yb_c00273{bottom:928.740450px;}
.ya_c00273{bottom:963.210450px;}
.y9_c00273{bottom:997.590450px;}
.y8_c00273{bottom:1032.060450px;}
.y7_c00273{bottom:1080.480450px;}
.y6_c00273{bottom:1110.900450px;}
.y5_c00273{bottom:1141.230450px;}
.y2_c00273{bottom:1173.810450px;}
.y1_c00273{bottom:1196.850450px;}
.h8_c00273{height:40.071445px;}
.h9_c00273{height:40.492266px;}
.h6_c00273{height:45.246094px;}
.h2_c00273{height:47.988281px;}
.h1_c00273{height:50.315273px;}
.h3_c00273{height:56.320312px;}
.h5_c00273{height:60.257812px;}
.h7_c00273{height:67.075765px;}
.h4_c00273{height:75.093750px;}
.h0_c00273{height:1263.000000px;}
.w1_c00273{width:892.500000px;}
.w0_c00273{width:892.830000px;}
.x0_c00273{left:0.000000px;}
.x7_c00273{left:61.380000px;}
.x10_c00273{left:77.040000px;}
.x11_c00273{left:115.200000px;}
.x8_c00273{left:117.990000px;}
.x2_c00273{left:127.620000px;}
.x9_c00273{left:149.135940px;}
.x5_c00273{left:154.440000px;}
.x6_c00273{left:181.170000px;}
.xa_c00273{left:257.679900px;}
.xb_c00273{left:360.107190px;}
.x4_c00273{left:435.240000px;}
.x3_c00273{left:446.490000px;}
.xc_c00273{left:460.272150px;}
.x1_c00273{left:490.770000px;}
.xd_c00273{left:568.361250px;}
.xe_c00273{left:675.923670px;}
.xf_c00273{left:797.155830px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.v1_c00273{vertical-align:24.003840pt;}
.ls17_c00273{letter-spacing:-0.134400pt;}
.ls1e_c00273{letter-spacing:-0.110656pt;}
.ls2d_c00273{letter-spacing:-0.080864pt;}
.ls2e_c00273{letter-spacing:-0.076608pt;}
.ls20_c00273{letter-spacing:-0.068096pt;}
.ls21_c00273{letter-spacing:-0.055328pt;}
.ls28_c00273{letter-spacing:-0.051072pt;}
.ls29_c00273{letter-spacing:-0.046816pt;}
.ls1c_c00273{letter-spacing:-0.043200pt;}
.ls2a_c00273{letter-spacing:-0.042560pt;}
.ls24_c00273{letter-spacing:-0.038304pt;}
.ls30_c00273{letter-spacing:-0.034048pt;}
.ls1d_c00273{letter-spacing:-0.033600pt;}
.ls25_c00273{letter-spacing:-0.029792pt;}
.ls1b_c00273{letter-spacing:-0.025600pt;}
.ls26_c00273{letter-spacing:-0.021280pt;}
.ls19_c00273{letter-spacing:-0.019200pt;}
.ls2b_c00273{letter-spacing:-0.017024pt;}
.ls18_c00273{letter-spacing:-0.012800pt;}
.ls27_c00273{letter-spacing:-0.012768pt;}
.ls2c_c00273{letter-spacing:-0.008512pt;}
.ls1a_c00273{letter-spacing:-0.006400pt;}
.ls16_c00273{letter-spacing:0.000000pt;}
.ls6_c00273{letter-spacing:0.004256pt;}
.ls4_c00273{letter-spacing:0.006400pt;}
.lse_c00273{letter-spacing:0.008512pt;}
.ls7_c00273{letter-spacing:0.012768pt;}
.ls3_c00273{letter-spacing:0.012800pt;}
.ls8_c00273{letter-spacing:0.017024pt;}
.ls14_c00273{letter-spacing:0.021280pt;}
.ls10_c00273{letter-spacing:0.025536pt;}
.lsd_c00273{letter-spacing:0.029792pt;}
.ls0_c00273{letter-spacing:0.032064pt;}
.lsc_c00273{letter-spacing:0.034048pt;}
.ls15_c00273{letter-spacing:0.038304pt;}
.ls1f_c00273{letter-spacing:0.042560pt;}
.ls22_c00273{letter-spacing:0.046816pt;}
.lsa_c00273{letter-spacing:0.076608pt;}
.ls5_c00273{letter-spacing:0.085120pt;}
.ls2f_c00273{letter-spacing:0.097888pt;}
.ls9_c00273{letter-spacing:0.114912pt;}
.ls12_c00273{letter-spacing:0.123424pt;}
.ls1_c00273{letter-spacing:0.128000pt;}
.ls23_c00273{letter-spacing:0.140448pt;}
.ls13_c00273{letter-spacing:0.144704pt;}
.lsb_c00273{letter-spacing:0.161728pt;}
.ls11_c00273{letter-spacing:0.208544pt;}
.ls2_c00273{letter-spacing:58.688000pt;}
.lsf_c00273{letter-spacing:345.502080pt;}
.ws1_c00273{word-spacing:-42.560000pt;}
.ws4_c00273{word-spacing:-10.678304pt;}
.ws2_c00273{word-spacing:-10.652768pt;}
.ws3_c00273{word-spacing:-10.631488pt;}
.ws0_c00273{word-spacing:-10.601696pt;}
.ws2d_c00273{word-spacing:-0.289408pt;}
.ws5_c00273{word-spacing:-0.272544pt;}
.ws24_c00273{word-spacing:-0.242592pt;}
.ws31_c00273{word-spacing:-0.225568pt;}
.ws2e_c00273{word-spacing:-0.204288pt;}
.ws1e_c00273{word-spacing:-0.195776pt;}
.ws34_c00273{word-spacing:-0.178752pt;}
.ws19_c00273{word-spacing:-0.165984pt;}
.ws22_c00273{word-spacing:-0.157472pt;}
.ws1b_c00273{word-spacing:-0.127680pt;}
.ws16_c00273{word-spacing:-0.123424pt;}
.ws26_c00273{word-spacing:-0.114912pt;}
.ws29_c00273{word-spacing:-0.110656pt;}
.ws2c_c00273{word-spacing:-0.106400pt;}
.ws23_c00273{word-spacing:-0.102144pt;}
.ws1d_c00273{word-spacing:-0.097888pt;}
.ws2a_c00273{word-spacing:-0.093632pt;}
.ws1c_c00273{word-spacing:-0.085120pt;}
.ws17_c00273{word-spacing:-0.080864pt;}
.ws32_c00273{word-spacing:-0.072352pt;}
.ws20_c00273{word-spacing:-0.068096pt;}
.ws28_c00273{word-spacing:-0.063840pt;}
.ws1f_c00273{word-spacing:-0.059584pt;}
.ws38_c00273{word-spacing:-0.046816pt;}
.ws30_c00273{word-spacing:-0.042560pt;}
.ws25_c00273{word-spacing:-0.034048pt;}
.ws1a_c00273{word-spacing:-0.025536pt;}
.ws18_c00273{word-spacing:-0.012768pt;}
.ws33_c00273{word-spacing:-0.004256pt;}
.ws6_c00273{word-spacing:0.000000pt;}
.ws9_c00273{word-spacing:0.006400pt;}
.ws27_c00273{word-spacing:0.195776pt;}
.ws2f_c00273{word-spacing:0.221312pt;}
.ws35_c00273{word-spacing:0.268128pt;}
.ws21_c00273{word-spacing:0.289408pt;}
.ws13_c00273{word-spacing:0.339200pt;}
.ws11_c00273{word-spacing:2.547200pt;}
.ws12_c00273{word-spacing:2.585600pt;}
.wsd_c00273{word-spacing:5.132800pt;}
.wse_c00273{word-spacing:5.452800pt;}
.ws10_c00273{word-spacing:5.753600pt;}
.wsf_c00273{word-spacing:5.798400pt;}
.wsb_c00273{word-spacing:6.092800pt;}
.wsc_c00273{word-spacing:14.080000pt;}
.wsa_c00273{word-spacing:14.086400pt;}
.ws8_c00273{word-spacing:15.340800pt;}
.ws7_c00273{word-spacing:20.217600pt;}
.ws37_c00273{word-spacing:70.245280pt;}
.ws2b_c00273{word-spacing:70.321888pt;}
.ws36_c00273{word-spacing:70.338912pt;}
.ws14_c00273{word-spacing:76.363200pt;}
.ws15_c00273{word-spacing:219.715200pt;}
._6_c00273{margin-left:-219.988800pt;}
._4_c00273{margin-left:-76.176000pt;}
._9_c00273{margin-left:-70.394240pt;}
._8_c00273{margin-left:-29.760000pt;}
._7_c00273{margin-left:-27.504000pt;}
._0_c00273{margin-left:-0.908480pt;}
._1_c00273{width:0.960000pt;}
._2_c00273{width:33.264000pt;}
._e_c00273{width:51.801632pt;}
._a_c00273{width:62.827072pt;}
._3_c00273{width:80.640000pt;}
._5_c00273{width:82.416000pt;}
._b_c00273{width:107.080960pt;}
._d_c00273{width:275.180192pt;}
._c_c00273{width:283.211264pt;}
.fs3_c00273{font-size:42.560000pt;}
.fs2_c00273{font-size:48.000000pt;}
.fs0_c00273{font-size:53.440000pt;}
.fs1_c00273{font-size:64.000000pt;}
.y0_c00273{bottom:0.000000pt;}
.y3_c00273{bottom:51.067067pt;}
.y4_c00273{bottom:54.587067pt;}
.y6e_c00273{bottom:235.545147pt;}
.y6b_c00273{bottom:237.387067pt;}
.y6c_c00273{bottom:247.547067pt;}
.y6d_c00273{bottom:259.548987pt;}
.y6f_c00273{bottom:263.230427pt;}
.y6a_c00273{bottom:275.864187pt;}
.y69_c00273{bottom:287.866107pt;}
.y66_c00273{bottom:293.867067pt;}
.y68_c00273{bottom:299.868027pt;}
.y67_c00273{bottom:311.869947pt;}
.y64_c00273{bottom:324.457787pt;}
.y65_c00273{bottom:329.067067pt;}
.y53_c00273{bottom:330.490667pt;}
.y63_c00273{bottom:336.459707pt;}
.y5a_c00273{bottom:342.481947pt;}
.y52_c00273{bottom:342.492587pt;}
.y62_c00273{bottom:348.461627pt;}
.y58_c00273{bottom:354.483867pt;}
.y51_c00273{bottom:354.494507pt;}
.y4c_c00273{bottom:354.505147pt;}
.y61_c00273{bottom:360.463547pt;}
.y5c_c00273{bottom:360.474187pt;}
.y55_c00273{bottom:360.484827pt;}
.y57_c00273{bottom:366.485787pt;}
.y50_c00273{bottom:366.496427pt;}
.y4a_c00273{bottom:366.507067pt;}
.y60_c00273{bottom:372.465467pt;}
.y5b_c00273{bottom:372.476107pt;}
.y54_c00273{bottom:372.486747pt;}
.y56_c00273{bottom:378.487707pt;}
.y4f_c00273{bottom:378.498347pt;}
.y4b_c00273{bottom:378.508987pt;}
.y5f_c00273{bottom:384.467387pt;}
.y59_c00273{bottom:390.489627pt;}
.y4e_c00273{bottom:390.500267pt;}
.y5e_c00273{bottom:396.469307pt;}
.y4d_c00273{bottom:402.502187pt;}
.y5d_c00273{bottom:408.471227pt;}
.y48_c00273{bottom:421.212587pt;}
.y47_c00273{bottom:433.214507pt;}
.y41_c00273{bottom:433.225147pt;}
.y42_c00273{bottom:439.226107pt;}
.y46_c00273{bottom:445.216427pt;}
.y3f_c00273{bottom:445.227067pt;}
.y43_c00273{bottom:451.228027pt;}
.y45_c00273{bottom:457.218347pt;}
.y40_c00273{bottom:457.228987pt;}
.y49_c00273{bottom:469.209627pt;}
.y44_c00273{bottom:469.220267pt;}
.y35_c00273{bottom:481.840027pt;}
.y34_c00273{bottom:493.841947pt;}
.y2e_c00273{bottom:493.852587pt;}
.y39_c00273{bottom:499.832267pt;}
.y3c_c00273{bottom:505.822587pt;}
.y33_c00273{bottom:505.843867pt;}
.y2d_c00273{bottom:505.854507pt;}
.y37_c00273{bottom:511.834187pt;}
.y29_c00273{bottom:511.866107pt;}
.y3e_c00273{bottom:514.187067pt;}
.y3b_c00273{bottom:517.824507pt;}
.y32_c00273{bottom:517.845787pt;}
.y2c_c00273{bottom:517.856427pt;}
.y28_c00273{bottom:517.867067pt;}
.y36_c00273{bottom:523.836107pt;}
.y3a_c00273{bottom:529.826427pt;}
.y31_c00273{bottom:529.847707pt;}
.y2b_c00273{bottom:529.858347pt;}
.y38_c00273{bottom:535.838027pt;}
.y30_c00273{bottom:541.849627pt;}
.y2a_c00273{bottom:541.860267pt;}
.y3d_c00273{bottom:553.819627pt;}
.y2f_c00273{bottom:553.851547pt;}
.y27_c00273{bottom:566.459707pt;}
.y1e_c00273{bottom:566.480987pt;}
.y18_c00273{bottom:572.492587pt;}
.y26_c00273{bottom:578.461627pt;}
.y1d_c00273{bottom:578.482907pt;}
.y21_c00273{bottom:584.473227pt;}
.y17_c00273{bottom:584.494507pt;}
.y25_c00273{bottom:590.463547pt;}
.y1a_c00273{bottom:590.484827pt;}
.y13_c00273{bottom:590.506107pt;}
.y20_c00273{bottom:596.475147pt;}
.y16_c00273{bottom:596.496427pt;}
.y12_c00273{bottom:596.507067pt;}
.y24_c00273{bottom:602.465467pt;}
.y19_c00273{bottom:602.486747pt;}
.y1f_c00273{bottom:608.477067pt;}
.y15_c00273{bottom:608.498347pt;}
.y23_c00273{bottom:614.467387pt;}
.y1c_c00273{bottom:614.488667pt;}
.y14_c00273{bottom:620.500267pt;}
.y22_c00273{bottom:626.469307pt;}
.y1b_c00273{bottom:626.490587pt;}
.y11_c00273{bottom:639.547067pt;}
.y10_c00273{bottom:671.867067pt;}
.yf_c00273{bottom:698.827067pt;}
.ye_c00273{bottom:725.867067pt;}
.yd_c00273{bottom:764.347067pt;}
.yc_c00273{bottom:794.987067pt;}
.yb_c00273{bottom:825.547067pt;}
.ya_c00273{bottom:856.187067pt;}
.y9_c00273{bottom:886.747067pt;}
.y8_c00273{bottom:917.387067pt;}
.y7_c00273{bottom:960.427067pt;}
.y6_c00273{bottom:987.467067pt;}
.y5_c00273{bottom:1014.427067pt;}
.y2_c00273{bottom:1043.387067pt;}
.y1_c00273{bottom:1063.867067pt;}
.h8_c00273{height:35.619062pt;}
.h9_c00273{height:35.993125pt;}
.h6_c00273{height:40.218750pt;}
.h2_c00273{height:42.656250pt;}
.h1_c00273{height:44.724687pt;}
.h3_c00273{height:50.062500pt;}
.h5_c00273{height:53.562500pt;}
.h7_c00273{height:59.622903pt;}
.h4_c00273{height:66.750000pt;}
.h0_c00273{height:1122.666667pt;}
.w1_c00273{width:793.333333pt;}
.w0_c00273{width:793.626667pt;}
.x0_c00273{left:0.000000pt;}
.x7_c00273{left:54.560000pt;}
.x10_c00273{left:68.480000pt;}
.x11_c00273{left:102.400000pt;}
.x8_c00273{left:104.880000pt;}
.x2_c00273{left:113.440000pt;}
.x9_c00273{left:132.565280pt;}
.x5_c00273{left:137.280000pt;}
.x6_c00273{left:161.040000pt;}
.xa_c00273{left:229.048800pt;}
.xb_c00273{left:320.095280pt;}
.x4_c00273{left:386.880000pt;}
.x3_c00273{left:396.880000pt;}
.xc_c00273{left:409.130800pt;}
.x1_c00273{left:436.240000pt;}
.xd_c00273{left:505.210000pt;}
.xe_c00273{left:600.821040pt;}
.xf_c00273{left:708.582960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88e77e15a53ee08a27014e59.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.100098;font-style:normal;font-weight:normal;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_47abe57fe840c67fbd06fd73.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;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_c00274;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00274;src:url('chunks/assets/font_6d74782cf9ebfb6d2bee6fa7.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:1.102051;font-style:normal;font-weight:normal;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_0512f64d497c806924f725c3.woff2')format("woff");}.ff5_c00274{font-family:ff5_c00274;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00274{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_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;}
.v3_c00274{vertical-align:12.041280px;}
.v1_c00274{vertical-align:15.840000px;}
.v2_c00274{vertical-align:27.004320px;}
.ls34_c00274{letter-spacing:-0.172368px;}
.ls21_c00274{letter-spacing:-0.151200px;}
.ls2d_c00274{letter-spacing:-0.143640px;}
.ls22_c00274{letter-spacing:-0.124488px;}
.ls2b_c00274{letter-spacing:-0.114912px;}
.ls30_c00274{letter-spacing:-0.105336px;}
.ls31_c00274{letter-spacing:-0.095760px;}
.ls25_c00274{letter-spacing:-0.090972px;}
.ls3d_c00274{letter-spacing:-0.081396px;}
.ls23_c00274{letter-spacing:-0.076608px;}
.ls35_c00274{letter-spacing:-0.071820px;}
.ls33_c00274{letter-spacing:-0.067032px;}
.ls24_c00274{letter-spacing:-0.062244px;}
.ls32_c00274{letter-spacing:-0.057456px;}
.ls27_c00274{letter-spacing:-0.047880px;}
.ls29_c00274{letter-spacing:-0.043092px;}
.ls3b_c00274{letter-spacing:-0.038304px;}
.ls2a_c00274{letter-spacing:-0.033516px;}
.ls3e_c00274{letter-spacing:-0.028728px;}
.ls38_c00274{letter-spacing:-0.023940px;}
.ls41_c00274{letter-spacing:-0.019152px;}
.ls3f_c00274{letter-spacing:-0.014364px;}
.ls26_c00274{letter-spacing:-0.009576px;}
.ls37_c00274{letter-spacing:-0.004788px;}
.ls20_c00274{letter-spacing:0.000000px;}
.ls14_c00274{letter-spacing:0.004788px;}
.ls10_c00274{letter-spacing:0.009576px;}
.ls7_c00274{letter-spacing:0.014364px;}
.ls17_c00274{letter-spacing:0.019152px;}
.ls2_c00274{letter-spacing:0.023940px;}
.ls1a_c00274{letter-spacing:0.028728px;}
.ls8_c00274{letter-spacing:0.033516px;}
.ls39_c00274{letter-spacing:0.038304px;}
.ls1e_c00274{letter-spacing:0.043092px;}
.ls13_c00274{letter-spacing:0.047880px;}
.ls0_c00274{letter-spacing:0.048096px;}
.ls28_c00274{letter-spacing:0.052668px;}
.ls3a_c00274{letter-spacing:0.057456px;}
.lsa_c00274{letter-spacing:0.062244px;}
.ls3c_c00274{letter-spacing:0.067032px;}
.ls4_c00274{letter-spacing:0.071820px;}
.ls1b_c00274{letter-spacing:0.086184px;}
.ls3_c00274{letter-spacing:0.095760px;}
.ls2c_c00274{letter-spacing:0.101592px;}
.lsf_c00274{letter-spacing:0.114912px;}
.ls11_c00274{letter-spacing:0.124488px;}
.ls9_c00274{letter-spacing:0.129276px;}
.ls18_c00274{letter-spacing:0.134064px;}
.ls19_c00274{letter-spacing:0.143640px;}
.ls1c_c00274{letter-spacing:0.148428px;}
.ls5_c00274{letter-spacing:0.153216px;}
.ls1f_c00274{letter-spacing:0.158004px;}
.lsc_c00274{letter-spacing:0.162792px;}
.ls16_c00274{letter-spacing:0.172368px;}
.lsb_c00274{letter-spacing:0.177156px;}
.ls1d_c00274{letter-spacing:0.201096px;}
.ls36_c00274{letter-spacing:0.205884px;}
.ls6_c00274{letter-spacing:0.239400px;}
.ls2f_c00274{letter-spacing:0.258552px;}
.ls40_c00274{letter-spacing:0.320796px;}
.ls2e_c00274{letter-spacing:0.460152px;}
.ls12_c00274{letter-spacing:101.409840px;}
.lse_c00274{letter-spacing:219.529800px;}
.lsd_c00274{letter-spacing:388.689840px;}
.ls15_c00274{letter-spacing:420.391188px;}
.ls1_c00274{letter-spacing:1212.120000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00274{word-spacing:-47.880000px;}
.ws2_c00274{word-spacing:-11.984364px;}
.ws1_c00274{word-spacing:-11.960424px;}
.ws3_c00274{word-spacing:-11.926908px;}
.ws5_c00274{word-spacing:-7.930152px;}
.ws4_c00274{word-spacing:-7.571592px;}
.ws36_c00274{word-spacing:-0.411768px;}
.ws17_c00274{word-spacing:-0.349524px;}
.ws26_c00274{word-spacing:-0.296856px;}
.ws30_c00274{word-spacing:-0.292068px;}
.ws21_c00274{word-spacing:-0.263340px;}
.ws1a_c00274{word-spacing:-0.253764px;}
.ws23_c00274{word-spacing:-0.248976px;}
.wsd_c00274{word-spacing:-0.244188px;}
.ws28_c00274{word-spacing:-0.234612px;}
.ws27_c00274{word-spacing:-0.225036px;}
.ws11_c00274{word-spacing:-0.220248px;}
.ws1e_c00274{word-spacing:-0.215460px;}
.ws1c_c00274{word-spacing:-0.205884px;}
.wsa_c00274{word-spacing:-0.186732px;}
.ws2c_c00274{word-spacing:-0.177156px;}
.wsc_c00274{word-spacing:-0.162792px;}
.ws31_c00274{word-spacing:-0.158004px;}
.ws13_c00274{word-spacing:-0.153216px;}
.ws2f_c00274{word-spacing:-0.148428px;}
.ws12_c00274{word-spacing:-0.143640px;}
.ws1f_c00274{word-spacing:-0.138852px;}
.ws34_c00274{word-spacing:-0.134064px;}
.ws2d_c00274{word-spacing:-0.129276px;}
.wsf_c00274{word-spacing:-0.124488px;}
.ws32_c00274{word-spacing:-0.119700px;}
.ws8_c00274{word-spacing:-0.114912px;}
.ws22_c00274{word-spacing:-0.110124px;}
.ws18_c00274{word-spacing:-0.105336px;}
.ws1d_c00274{word-spacing:-0.100548px;}
.ws20_c00274{word-spacing:-0.095760px;}
.ws2a_c00274{word-spacing:-0.086184px;}
.wse_c00274{word-spacing:-0.081396px;}
.ws37_c00274{word-spacing:-0.071820px;}
.ws2b_c00274{word-spacing:-0.067032px;}
.ws10_c00274{word-spacing:-0.043092px;}
.wsb_c00274{word-spacing:-0.028728px;}
.ws9_c00274{word-spacing:-0.014364px;}
.ws33_c00274{word-spacing:-0.009576px;}
.ws7_c00274{word-spacing:0.000000px;}
.ws19_c00274{word-spacing:0.014364px;}
.ws24_c00274{word-spacing:0.023940px;}
.ws6_c00274{word-spacing:0.042084px;}
.ws16_c00274{word-spacing:0.052668px;}
.ws29_c00274{word-spacing:0.239400px;}
.ws2e_c00274{word-spacing:0.248976px;}
.ws35_c00274{word-spacing:0.296856px;}
.ws14_c00274{word-spacing:0.301644px;}
.ws25_c00274{word-spacing:0.339948px;}
.ws15_c00274{word-spacing:0.383040px;}
.ws1b_c00274{word-spacing:90.311256px;}
._3_c00274{margin-left:-90.349560px;}
._0_c00274{margin-left:-1.322640px;}
._2_c00274{width:1.005480px;}
._4_c00274{width:70.680456px;}
._9_c00274{width:74.884320px;}
._1_c00274{width:79.231824px;}
._b_c00274{width:90.407016px;}
._5_c00274{width:101.505600px;}
._6_c00274{width:166.670280px;}
._a_c00274{width:170.108064px;}
._8_c00274{width:388.780812px;}
._7_c00274{width:397.801404px;}
.fc0_c00274{color:rgb(0,0,0);}
.fs4_c00274{font-size:29.880000px;}
.fs3_c00274{font-size:47.880000px;}
.fs1_c00274{font-size:54.000000px;}
.fs0_c00274{font-size:60.120000px;}
.fs2_c00274{font-size:72.000000px;}
.y0_c00274{bottom:0.000000px;}
.y3_c00274{bottom:57.450450px;}
.y99_c00274{bottom:219.421110px;}
.y92_c00274{bottom:219.445050px;}
.y98_c00274{bottom:232.923270px;}
.y91_c00274{bottom:232.947210px;}
.y97_c00274{bottom:246.425430px;}
.y8d_c00274{bottom:246.449370px;}
.y9a_c00274{bottom:253.164540px;}
.y93_c00274{bottom:253.188480px;}
.y8c_c00274{bottom:253.200450px;}
.y96_c00274{bottom:259.927590px;}
.y90_c00274{bottom:259.951530px;}
.y95_c00274{bottom:273.429750px;}
.y8f_c00274{bottom:273.453690px;}
.y8b_c00274{bottom:284.790450px;}
.y9b_c00274{bottom:286.907970px;}
.y94_c00274{bottom:286.931910px;}
.y8e_c00274{bottom:286.955850px;}
.y84_c00274{bottom:301.165050px;}
.y89_c00274{bottom:314.655240px;}
.y83_c00274{bottom:314.667210px;}
.y88_c00274{bottom:328.157400px;}
.y7f_c00274{bottom:328.169370px;}
.y85_c00274{bottom:334.908480px;}
.y7e_c00274{bottom:334.920450px;}
.y87_c00274{bottom:341.659560px;}
.y82_c00274{bottom:341.671530px;}
.y86_c00274{bottom:355.161720px;}
.y81_c00274{bottom:355.173690px;}
.y8a_c00274{bottom:368.651910px;}
.y80_c00274{bottom:368.675850px;}
.y75_c00274{bottom:391.165050px;}
.y7c_c00274{bottom:404.643270px;}
.y74_c00274{bottom:404.667210px;}
.y78_c00274{bottom:411.406320px;}
.y7b_c00274{bottom:418.145430px;}
.y70_c00274{bottom:418.169370px;}
.y76_c00274{bottom:424.908480px;}
.y6f_c00274{bottom:424.920450px;}
.y7a_c00274{bottom:431.647590px;}
.y73_c00274{bottom:431.671530px;}
.y77_c00274{bottom:438.410640px;}
.y79_c00274{bottom:445.149750px;}
.y72_c00274{bottom:445.173690px;}
.y71_c00274{bottom:458.675850px;}
.y7d_c00274{bottom:466.923180px;}
.y6d_c00274{bottom:481.167210px;}
.y6a_c00274{bottom:494.669370px;}
.y69_c00274{bottom:501.420450px;}
.y6c_c00274{bottom:508.171530px;}
.y6b_c00274{bottom:521.673690px;}
.y63_c00274{bottom:535.873080px;}
.y67_c00274{bottom:549.363270px;}
.y62_c00274{bottom:549.375240px;}
.y5d_c00274{bottom:549.387210px;}
.y66_c00274{bottom:562.865430px;}
.y61_c00274{bottom:562.877400px;}
.y5a_c00274{bottom:562.889370px;}
.y59_c00274{bottom:569.640450px;}
.y65_c00274{bottom:576.367590px;}
.y60_c00274{bottom:576.379560px;}
.y5c_c00274{bottom:576.391530px;}
.y64_c00274{bottom:589.869750px;}
.y5f_c00274{bottom:589.881720px;}
.y5b_c00274{bottom:589.893690px;}
.y68_c00274{bottom:603.359940px;}
.y5e_c00274{bottom:603.383880px;}
.y58_c00274{bottom:623.040690px;}
.y4c_c00274{bottom:623.064630px;}
.y57_c00274{bottom:636.542850px;}
.y4b_c00274{bottom:636.566790px;}
.y56_c00274{bottom:650.045010px;}
.y4a_c00274{bottom:650.068950px;}
.y6e_c00274{bottom:661.170450px;}
.y55_c00274{bottom:663.547170px;}
.y49_c00274{bottom:663.571110px;}
.y40_c00274{bottom:663.583080px;}
.y54_c00274{bottom:677.049330px;}
.y48_c00274{bottom:677.073270px;}
.y3f_c00274{bottom:677.085240px;}
.y3a_c00274{bottom:677.097210px;}
.y53_c00274{bottom:690.551490px;}
.y47_c00274{bottom:690.575430px;}
.y3e_c00274{bottom:690.587400px;}
.y37_c00274{bottom:690.599370px;}
.y36_c00274{bottom:697.350450px;}
.y52_c00274{bottom:704.053650px;}
.y46_c00274{bottom:704.077590px;}
.y3d_c00274{bottom:704.089560px;}
.y39_c00274{bottom:704.101530px;}
.y51_c00274{bottom:717.555810px;}
.y45_c00274{bottom:717.579750px;}
.y3c_c00274{bottom:717.591720px;}
.y38_c00274{bottom:717.603690px;}
.y50_c00274{bottom:731.057970px;}
.y44_c00274{bottom:731.081910px;}
.y3b_c00274{bottom:731.093880px;}
.y4f_c00274{bottom:744.560130px;}
.y43_c00274{bottom:744.584070px;}
.y4e_c00274{bottom:758.062290px;}
.y42_c00274{bottom:758.086230px;}
.y4d_c00274{bottom:771.564450px;}
.y41_c00274{bottom:771.588390px;}
.y31_c00274{bottom:791.756130px;}
.y30_c00274{bottom:805.258290px;}
.y35_c00274{bottom:805.796940px;}
.y2d_c00274{bottom:812.009370px;}
.y2c_c00274{bottom:818.760450px;}
.y34_c00274{bottom:819.299100px;}
.y2f_c00274{bottom:832.262610px;}
.y33_c00274{bottom:832.801260px;}
.y2e_c00274{bottom:845.764770px;}
.y32_c00274{bottom:846.303420px;}
.y2b_c00274{bottom:860.607360px;}
.y2a_c00274{bottom:874.109520px;}
.y27_c00274{bottom:880.860600px;}
.y29_c00274{bottom:887.611680px;}
.y28_c00274{bottom:901.113840px;}
.y26_c00274{bottom:915.327210px;}
.y25_c00274{bottom:928.829370px;}
.y22_c00274{bottom:935.580450px;}
.y24_c00274{bottom:942.331530px;}
.y23_c00274{bottom:955.833690px;}
.y21_c00274{bottom:970.031010px;}
.y20_c00274{bottom:983.533170px;}
.y1f_c00274{bottom:997.035330px;}
.y1e_c00274{bottom:1010.537490px;}
.y10_c00274{bottom:1024.021110px;}
.y1d_c00274{bottom:1024.039650px;}
.ya_c00274{bottom:1030.784160px;}
.yf_c00274{bottom:1037.523270px;}
.y1c_c00274{bottom:1037.541810px;}
.y13_c00274{bottom:1044.262380px;}
.y9_c00274{bottom:1044.286320px;}
.ye_c00274{bottom:1051.025430px;}
.y1b_c00274{bottom:1051.043970px;}
.y5_c00274{bottom:1051.049370px;}
.y12_c00274{bottom:1057.764540px;}
.y8_c00274{bottom:1057.788480px;}
.y4_c00274{bottom:1057.800450px;}
.yd_c00274{bottom:1064.527590px;}
.y1a_c00274{bottom:1064.546130px;}
.y11_c00274{bottom:1071.266700px;}
.y7_c00274{bottom:1071.290640px;}
.yc_c00274{bottom:1078.029750px;}
.y19_c00274{bottom:1078.048290px;}
.y6_c00274{bottom:1084.792800px;}
.yb_c00274{bottom:1091.531910px;}
.y18_c00274{bottom:1091.548290px;}
.y17_c00274{bottom:1105.010130px;}
.y16_c00274{bottom:1118.512290px;}
.y15_c00274{bottom:1132.014450px;}
.y14_c00274{bottom:1145.516610px;}
.y2_c00274{bottom:1177.860450px;}
.y1_c00274{bottom:1196.850450px;}
.h5_c00274{height:40.071445px;}
.h8_c00274{height:40.080085px;}
.h7_c00274{height:40.232725px;}
.h6_c00274{height:40.492266px;}
.h1_c00274{height:50.315273px;}
.h2_c00274{height:56.320312px;}
.h4_c00274{height:67.075765px;}
.h3_c00274{height:72.160312px;}
.h0_c00274{height:1263.000000px;}
.w1_c00274{width:892.500000px;}
.w0_c00274{width:892.830000px;}
.x0_c00274{left:0.000000px;}
.xc_c00274{left:77.040000px;}
.x2_c00274{left:115.200000px;}
.xa_c00274{left:117.990000px;}
.xb_c00274{left:120.780000px;}
.x1_c00274{left:127.620000px;}
.x3_c00274{left:149.134950px;}
.x4_c00274{left:257.678910px;}
.x5_c00274{left:360.106200px;}
.x6_c00274{left:460.271160px;}
.x7_c00274{left:568.360260px;}
.x8_c00274{left:675.922680px;}
.x9_c00274{left:797.154840px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.v3_c00274{vertical-align:10.703360pt;}
.v1_c00274{vertical-align:14.080000pt;}
.v2_c00274{vertical-align:24.003840pt;}
.ls34_c00274{letter-spacing:-0.153216pt;}
.ls21_c00274{letter-spacing:-0.134400pt;}
.ls2d_c00274{letter-spacing:-0.127680pt;}
.ls22_c00274{letter-spacing:-0.110656pt;}
.ls2b_c00274{letter-spacing:-0.102144pt;}
.ls30_c00274{letter-spacing:-0.093632pt;}
.ls31_c00274{letter-spacing:-0.085120pt;}
.ls25_c00274{letter-spacing:-0.080864pt;}
.ls3d_c00274{letter-spacing:-0.072352pt;}
.ls23_c00274{letter-spacing:-0.068096pt;}
.ls35_c00274{letter-spacing:-0.063840pt;}
.ls33_c00274{letter-spacing:-0.059584pt;}
.ls24_c00274{letter-spacing:-0.055328pt;}
.ls32_c00274{letter-spacing:-0.051072pt;}
.ls27_c00274{letter-spacing:-0.042560pt;}
.ls29_c00274{letter-spacing:-0.038304pt;}
.ls3b_c00274{letter-spacing:-0.034048pt;}
.ls2a_c00274{letter-spacing:-0.029792pt;}
.ls3e_c00274{letter-spacing:-0.025536pt;}
.ls38_c00274{letter-spacing:-0.021280pt;}
.ls41_c00274{letter-spacing:-0.017024pt;}
.ls3f_c00274{letter-spacing:-0.012768pt;}
.ls26_c00274{letter-spacing:-0.008512pt;}
.ls37_c00274{letter-spacing:-0.004256pt;}
.ls20_c00274{letter-spacing:0.000000pt;}
.ls14_c00274{letter-spacing:0.004256pt;}
.ls10_c00274{letter-spacing:0.008512pt;}
.ls7_c00274{letter-spacing:0.012768pt;}
.ls17_c00274{letter-spacing:0.017024pt;}
.ls2_c00274{letter-spacing:0.021280pt;}
.ls1a_c00274{letter-spacing:0.025536pt;}
.ls8_c00274{letter-spacing:0.029792pt;}
.ls39_c00274{letter-spacing:0.034048pt;}
.ls1e_c00274{letter-spacing:0.038304pt;}
.ls13_c00274{letter-spacing:0.042560pt;}
.ls0_c00274{letter-spacing:0.042752pt;}
.ls28_c00274{letter-spacing:0.046816pt;}
.ls3a_c00274{letter-spacing:0.051072pt;}
.lsa_c00274{letter-spacing:0.055328pt;}
.ls3c_c00274{letter-spacing:0.059584pt;}
.ls4_c00274{letter-spacing:0.063840pt;}
.ls1b_c00274{letter-spacing:0.076608pt;}
.ls3_c00274{letter-spacing:0.085120pt;}
.ls2c_c00274{letter-spacing:0.090304pt;}
.lsf_c00274{letter-spacing:0.102144pt;}
.ls11_c00274{letter-spacing:0.110656pt;}
.ls9_c00274{letter-spacing:0.114912pt;}
.ls18_c00274{letter-spacing:0.119168pt;}
.ls19_c00274{letter-spacing:0.127680pt;}
.ls1c_c00274{letter-spacing:0.131936pt;}
.ls5_c00274{letter-spacing:0.136192pt;}
.ls1f_c00274{letter-spacing:0.140448pt;}
.lsc_c00274{letter-spacing:0.144704pt;}
.ls16_c00274{letter-spacing:0.153216pt;}
.lsb_c00274{letter-spacing:0.157472pt;}
.ls1d_c00274{letter-spacing:0.178752pt;}
.ls36_c00274{letter-spacing:0.183008pt;}
.ls6_c00274{letter-spacing:0.212800pt;}
.ls2f_c00274{letter-spacing:0.229824pt;}
.ls40_c00274{letter-spacing:0.285152pt;}
.ls2e_c00274{letter-spacing:0.409024pt;}
.ls12_c00274{letter-spacing:90.142080pt;}
.lse_c00274{letter-spacing:195.137600pt;}
.lsd_c00274{letter-spacing:345.502080pt;}
.ls15_c00274{letter-spacing:373.681056pt;}
.ls1_c00274{letter-spacing:1077.440000pt;}
.ws0_c00274{word-spacing:-42.560000pt;}
.ws2_c00274{word-spacing:-10.652768pt;}
.ws1_c00274{word-spacing:-10.631488pt;}
.ws3_c00274{word-spacing:-10.601696pt;}
.ws5_c00274{word-spacing:-7.049024pt;}
.ws4_c00274{word-spacing:-6.730304pt;}
.ws36_c00274{word-spacing:-0.366016pt;}
.ws17_c00274{word-spacing:-0.310688pt;}
.ws26_c00274{word-spacing:-0.263872pt;}
.ws30_c00274{word-spacing:-0.259616pt;}
.ws21_c00274{word-spacing:-0.234080pt;}
.ws1a_c00274{word-spacing:-0.225568pt;}
.ws23_c00274{word-spacing:-0.221312pt;}
.wsd_c00274{word-spacing:-0.217056pt;}
.ws28_c00274{word-spacing:-0.208544pt;}
.ws27_c00274{word-spacing:-0.200032pt;}
.ws11_c00274{word-spacing:-0.195776pt;}
.ws1e_c00274{word-spacing:-0.191520pt;}
.ws1c_c00274{word-spacing:-0.183008pt;}
.wsa_c00274{word-spacing:-0.165984pt;}
.ws2c_c00274{word-spacing:-0.157472pt;}
.wsc_c00274{word-spacing:-0.144704pt;}
.ws31_c00274{word-spacing:-0.140448pt;}
.ws13_c00274{word-spacing:-0.136192pt;}
.ws2f_c00274{word-spacing:-0.131936pt;}
.ws12_c00274{word-spacing:-0.127680pt;}
.ws1f_c00274{word-spacing:-0.123424pt;}
.ws34_c00274{word-spacing:-0.119168pt;}
.ws2d_c00274{word-spacing:-0.114912pt;}
.wsf_c00274{word-spacing:-0.110656pt;}
.ws32_c00274{word-spacing:-0.106400pt;}
.ws8_c00274{word-spacing:-0.102144pt;}
.ws22_c00274{word-spacing:-0.097888pt;}
.ws18_c00274{word-spacing:-0.093632pt;}
.ws1d_c00274{word-spacing:-0.089376pt;}
.ws20_c00274{word-spacing:-0.085120pt;}
.ws2a_c00274{word-spacing:-0.076608pt;}
.wse_c00274{word-spacing:-0.072352pt;}
.ws37_c00274{word-spacing:-0.063840pt;}
.ws2b_c00274{word-spacing:-0.059584pt;}
.ws10_c00274{word-spacing:-0.038304pt;}
.wsb_c00274{word-spacing:-0.025536pt;}
.ws9_c00274{word-spacing:-0.012768pt;}
.ws33_c00274{word-spacing:-0.008512pt;}
.ws7_c00274{word-spacing:0.000000pt;}
.ws19_c00274{word-spacing:0.012768pt;}
.ws24_c00274{word-spacing:0.021280pt;}
.ws6_c00274{word-spacing:0.037408pt;}
.ws16_c00274{word-spacing:0.046816pt;}
.ws29_c00274{word-spacing:0.212800pt;}
.ws2e_c00274{word-spacing:0.221312pt;}
.ws35_c00274{word-spacing:0.263872pt;}
.ws14_c00274{word-spacing:0.268128pt;}
.ws25_c00274{word-spacing:0.302176pt;}
.ws15_c00274{word-spacing:0.340480pt;}
.ws1b_c00274{word-spacing:80.276672pt;}
._3_c00274{margin-left:-80.310720pt;}
._0_c00274{margin-left:-1.175680pt;}
._2_c00274{width:0.893760pt;}
._4_c00274{width:62.827072pt;}
._9_c00274{width:66.563840pt;}
._1_c00274{width:70.428288pt;}
._b_c00274{width:80.361792pt;}
._5_c00274{width:90.227200pt;}
._6_c00274{width:148.151360pt;}
._a_c00274{width:151.207168pt;}
._8_c00274{width:345.582944pt;}
._7_c00274{width:353.601248pt;}
.fs4_c00274{font-size:26.560000pt;}
.fs3_c00274{font-size:42.560000pt;}
.fs1_c00274{font-size:48.000000pt;}
.fs0_c00274{font-size:53.440000pt;}
.fs2_c00274{font-size:64.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y3_c00274{bottom:51.067067pt;}
.y99_c00274{bottom:195.040987pt;}
.y92_c00274{bottom:195.062267pt;}
.y98_c00274{bottom:207.042907pt;}
.y91_c00274{bottom:207.064187pt;}
.y97_c00274{bottom:219.044827pt;}
.y8d_c00274{bottom:219.066107pt;}
.y9a_c00274{bottom:225.035147pt;}
.y93_c00274{bottom:225.056427pt;}
.y8c_c00274{bottom:225.067067pt;}
.y96_c00274{bottom:231.046747pt;}
.y90_c00274{bottom:231.068027pt;}
.y95_c00274{bottom:243.048667pt;}
.y8f_c00274{bottom:243.069947pt;}
.y8b_c00274{bottom:253.147067pt;}
.y9b_c00274{bottom:255.029307pt;}
.y94_c00274{bottom:255.050587pt;}
.y8e_c00274{bottom:255.071867pt;}
.y84_c00274{bottom:267.702267pt;}
.y89_c00274{bottom:279.693547pt;}
.y83_c00274{bottom:279.704187pt;}
.y88_c00274{bottom:291.695467pt;}
.y7f_c00274{bottom:291.706107pt;}
.y85_c00274{bottom:297.696427pt;}
.y7e_c00274{bottom:297.707067pt;}
.y87_c00274{bottom:303.697387pt;}
.y82_c00274{bottom:303.708027pt;}
.y86_c00274{bottom:315.699307pt;}
.y81_c00274{bottom:315.709947pt;}
.y8a_c00274{bottom:327.690587pt;}
.y80_c00274{bottom:327.711867pt;}
.y75_c00274{bottom:347.702267pt;}
.y7c_c00274{bottom:359.682907pt;}
.y74_c00274{bottom:359.704187pt;}
.y78_c00274{bottom:365.694507pt;}
.y7b_c00274{bottom:371.684827pt;}
.y70_c00274{bottom:371.706107pt;}
.y76_c00274{bottom:377.696427pt;}
.y6f_c00274{bottom:377.707067pt;}
.y7a_c00274{bottom:383.686747pt;}
.y73_c00274{bottom:383.708027pt;}
.y77_c00274{bottom:389.698347pt;}
.y79_c00274{bottom:395.688667pt;}
.y72_c00274{bottom:395.709947pt;}
.y71_c00274{bottom:407.711867pt;}
.y7d_c00274{bottom:415.042827pt;}
.y6d_c00274{bottom:427.704187pt;}
.y6a_c00274{bottom:439.706107pt;}
.y69_c00274{bottom:445.707067pt;}
.y6c_c00274{bottom:451.708027pt;}
.y6b_c00274{bottom:463.709947pt;}
.y63_c00274{bottom:476.331627pt;}
.y67_c00274{bottom:488.322907pt;}
.y62_c00274{bottom:488.333547pt;}
.y5d_c00274{bottom:488.344187pt;}
.y66_c00274{bottom:500.324827pt;}
.y61_c00274{bottom:500.335467pt;}
.y5a_c00274{bottom:500.346107pt;}
.y59_c00274{bottom:506.347067pt;}
.y65_c00274{bottom:512.326747pt;}
.y60_c00274{bottom:512.337387pt;}
.y5c_c00274{bottom:512.348027pt;}
.y64_c00274{bottom:524.328667pt;}
.y5f_c00274{bottom:524.339307pt;}
.y5b_c00274{bottom:524.349947pt;}
.y68_c00274{bottom:536.319947pt;}
.y5e_c00274{bottom:536.341227pt;}
.y58_c00274{bottom:553.813947pt;}
.y4c_c00274{bottom:553.835227pt;}
.y57_c00274{bottom:565.815867pt;}
.y4b_c00274{bottom:565.837147pt;}
.y56_c00274{bottom:577.817787pt;}
.y4a_c00274{bottom:577.839067pt;}
.y6e_c00274{bottom:587.707067pt;}
.y55_c00274{bottom:589.819707pt;}
.y49_c00274{bottom:589.840987pt;}
.y40_c00274{bottom:589.851627pt;}
.y54_c00274{bottom:601.821627pt;}
.y48_c00274{bottom:601.842907pt;}
.y3f_c00274{bottom:601.853547pt;}
.y3a_c00274{bottom:601.864187pt;}
.y53_c00274{bottom:613.823547pt;}
.y47_c00274{bottom:613.844827pt;}
.y3e_c00274{bottom:613.855467pt;}
.y37_c00274{bottom:613.866107pt;}
.y36_c00274{bottom:619.867067pt;}
.y52_c00274{bottom:625.825467pt;}
.y46_c00274{bottom:625.846747pt;}
.y3d_c00274{bottom:625.857387pt;}
.y39_c00274{bottom:625.868027pt;}
.y51_c00274{bottom:637.827387pt;}
.y45_c00274{bottom:637.848667pt;}
.y3c_c00274{bottom:637.859307pt;}
.y38_c00274{bottom:637.869947pt;}
.y50_c00274{bottom:649.829307pt;}
.y44_c00274{bottom:649.850587pt;}
.y3b_c00274{bottom:649.861227pt;}
.y4f_c00274{bottom:661.831227pt;}
.y43_c00274{bottom:661.852507pt;}
.y4e_c00274{bottom:673.833147pt;}
.y42_c00274{bottom:673.854427pt;}
.y4d_c00274{bottom:685.835067pt;}
.y41_c00274{bottom:685.856347pt;}
.y31_c00274{bottom:703.783227pt;}
.y30_c00274{bottom:715.785147pt;}
.y35_c00274{bottom:716.263947pt;}
.y2d_c00274{bottom:721.786107pt;}
.y2c_c00274{bottom:727.787067pt;}
.y34_c00274{bottom:728.265867pt;}
.y2f_c00274{bottom:739.788987pt;}
.y33_c00274{bottom:740.267787pt;}
.y2e_c00274{bottom:751.790907pt;}
.y32_c00274{bottom:752.269707pt;}
.y2b_c00274{bottom:764.984320pt;}
.y2a_c00274{bottom:776.986240pt;}
.y27_c00274{bottom:782.987200pt;}
.y29_c00274{bottom:788.988160pt;}
.y28_c00274{bottom:800.990080pt;}
.y26_c00274{bottom:813.624187pt;}
.y25_c00274{bottom:825.626107pt;}
.y22_c00274{bottom:831.627067pt;}
.y24_c00274{bottom:837.628027pt;}
.y23_c00274{bottom:849.629947pt;}
.y21_c00274{bottom:862.249787pt;}
.y20_c00274{bottom:874.251707pt;}
.y1f_c00274{bottom:886.253627pt;}
.y1e_c00274{bottom:898.255547pt;}
.y10_c00274{bottom:910.240987pt;}
.y1d_c00274{bottom:910.257467pt;}
.ya_c00274{bottom:916.252587pt;}
.yf_c00274{bottom:922.242907pt;}
.y1c_c00274{bottom:922.259387pt;}
.y13_c00274{bottom:928.233227pt;}
.y9_c00274{bottom:928.254507pt;}
.ye_c00274{bottom:934.244827pt;}
.y1b_c00274{bottom:934.261307pt;}
.y5_c00274{bottom:934.266107pt;}
.y12_c00274{bottom:940.235147pt;}
.y8_c00274{bottom:940.256427pt;}
.y4_c00274{bottom:940.267067pt;}
.yd_c00274{bottom:946.246747pt;}
.y1a_c00274{bottom:946.263227pt;}
.y11_c00274{bottom:952.237067pt;}
.y7_c00274{bottom:952.258347pt;}
.yc_c00274{bottom:958.248667pt;}
.y19_c00274{bottom:958.265147pt;}
.y6_c00274{bottom:964.260267pt;}
.yb_c00274{bottom:970.250587pt;}
.y18_c00274{bottom:970.265147pt;}
.y17_c00274{bottom:982.231227pt;}
.y16_c00274{bottom:994.233147pt;}
.y15_c00274{bottom:1006.235067pt;}
.y14_c00274{bottom:1018.236987pt;}
.y2_c00274{bottom:1046.987067pt;}
.y1_c00274{bottom:1063.867067pt;}
.h5_c00274{height:35.619062pt;}
.h8_c00274{height:35.626743pt;}
.h7_c00274{height:35.762423pt;}
.h6_c00274{height:35.993125pt;}
.h1_c00274{height:44.724687pt;}
.h2_c00274{height:50.062500pt;}
.h4_c00274{height:59.622903pt;}
.h3_c00274{height:64.142500pt;}
.h0_c00274{height:1122.666667pt;}
.w1_c00274{width:793.333333pt;}
.w0_c00274{width:793.626667pt;}
.x0_c00274{left:0.000000pt;}
.xc_c00274{left:68.480000pt;}
.x2_c00274{left:102.400000pt;}
.xa_c00274{left:104.880000pt;}
.xb_c00274{left:107.360000pt;}
.x1_c00274{left:113.440000pt;}
.x3_c00274{left:132.564400pt;}
.x4_c00274{left:229.047920pt;}
.x5_c00274{left:320.094400pt;}
.x6_c00274{left:409.129920pt;}
.x7_c00274{left:505.209120pt;}
.x8_c00274{left:600.820160pt;}
.x9_c00274{left:708.582080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_56dabff47d7e083a5cfedf9c.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00275;src:url('chunks/assets/font_f1c50116500473bf28ebe4f0.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00275;src:url('chunks/assets/font_8dfb0fa87ce16b9f708cc221.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:1.102051;font-style:normal;font-weight:normal;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_0512f64d497c806924f725c3.woff2')format("woff");}.ff5_c00275{font-family:ff5_c00275;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.v1_c00275{vertical-align:27.004320px;}
.ls1f_c00275{letter-spacing:-0.151200px;}
.ls31_c00275{letter-spacing:-0.119700px;}
.ls35_c00275{letter-spacing:-0.095760px;}
.ls20_c00275{letter-spacing:-0.090972px;}
.ls2f_c00275{letter-spacing:-0.086184px;}
.ls34_c00275{letter-spacing:-0.081396px;}
.ls24_c00275{letter-spacing:-0.076608px;}
.ls30_c00275{letter-spacing:-0.071820px;}
.ls2b_c00275{letter-spacing:-0.067032px;}
.ls25_c00275{letter-spacing:-0.062244px;}
.ls2e_c00275{letter-spacing:-0.057456px;}
.ls2c_c00275{letter-spacing:-0.052668px;}
.ls28_c00275{letter-spacing:-0.043092px;}
.ls21_c00275{letter-spacing:-0.038304px;}
.ls2a_c00275{letter-spacing:-0.028728px;}
.ls32_c00275{letter-spacing:-0.023940px;}
.ls22_c00275{letter-spacing:-0.019152px;}
.ls23_c00275{letter-spacing:-0.014364px;}
.ls29_c00275{letter-spacing:-0.009576px;}
.ls1e_c00275{letter-spacing:0.000000px;}
.ls2_c00275{letter-spacing:0.004788px;}
.ls2d_c00275{letter-spacing:0.009576px;}
.ls10_c00275{letter-spacing:0.014364px;}
.lsf_c00275{letter-spacing:0.019152px;}
.ls6_c00275{letter-spacing:0.023940px;}
.ls9_c00275{letter-spacing:0.028728px;}
.ls5_c00275{letter-spacing:0.033516px;}
.ls0_c00275{letter-spacing:0.036072px;}
.lsc_c00275{letter-spacing:0.038304px;}
.ls18_c00275{letter-spacing:0.043092px;}
.ls33_c00275{letter-spacing:0.047880px;}
.ls26_c00275{letter-spacing:0.052668px;}
.ls1c_c00275{letter-spacing:0.057456px;}
.ls16_c00275{letter-spacing:0.067032px;}
.lsd_c00275{letter-spacing:0.071400px;}
.ls8_c00275{letter-spacing:0.081396px;}
.ls15_c00275{letter-spacing:0.090972px;}
.lse_c00275{letter-spacing:0.095760px;}
.ls1_c00275{letter-spacing:0.105336px;}
.ls14_c00275{letter-spacing:0.110124px;}
.ls3_c00275{letter-spacing:0.119700px;}
.ls4_c00275{letter-spacing:0.124488px;}
.ls7_c00275{letter-spacing:0.129276px;}
.ls19_c00275{letter-spacing:0.134064px;}
.lsb_c00275{letter-spacing:0.138852px;}
.ls27_c00275{letter-spacing:0.158004px;}
.lsa_c00275{letter-spacing:0.177156px;}
.ls1b_c00275{letter-spacing:0.191520px;}
.ls13_c00275{letter-spacing:0.201096px;}
.ls17_c00275{letter-spacing:0.215460px;}
.ls11_c00275{letter-spacing:101.409840px;}
.ls1a_c00275{letter-spacing:295.132320px;}
.ls12_c00275{letter-spacing:388.689840px;}
.ls1d_c00275{letter-spacing:418.231800px;}
.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;}
}
.ws1_c00275{word-spacing:-47.880000px;}
.ws3_c00275{word-spacing:-12.008304px;}
.ws2_c00275{word-spacing:-11.984364px;}
.ws4_c00275{word-spacing:-11.960424px;}
.ws0_c00275{word-spacing:-11.926908px;}
.ws5_c00275{word-spacing:-11.902968px;}
.ws6_c00275{word-spacing:-0.306612px;}
.ws2f_c00275{word-spacing:-0.306432px;}
.ws27_c00275{word-spacing:-0.292068px;}
.ws33_c00275{word-spacing:-0.282492px;}
.ws1d_c00275{word-spacing:-0.268128px;}
.ws1f_c00275{word-spacing:-0.229824px;}
.ws31_c00275{word-spacing:-0.225036px;}
.ws14_c00275{word-spacing:-0.220248px;}
.wse_c00275{word-spacing:-0.215460px;}
.wsc_c00275{word-spacing:-0.210672px;}
.ws29_c00275{word-spacing:-0.201096px;}
.ws8_c00275{word-spacing:-0.196308px;}
.ws22_c00275{word-spacing:-0.186732px;}
.ws2b_c00275{word-spacing:-0.181944px;}
.ws18_c00275{word-spacing:-0.172368px;}
.ws2e_c00275{word-spacing:-0.158004px;}
.ws25_c00275{word-spacing:-0.148428px;}
.ws11_c00275{word-spacing:-0.143640px;}
.ws24_c00275{word-spacing:-0.134064px;}
.ws21_c00275{word-spacing:-0.129276px;}
.ws12_c00275{word-spacing:-0.124488px;}
.ws19_c00275{word-spacing:-0.119700px;}
.ws13_c00275{word-spacing:-0.114912px;}
.ws23_c00275{word-spacing:-0.110124px;}
.ws1e_c00275{word-spacing:-0.105336px;}
.ws1b_c00275{word-spacing:-0.100548px;}
.wsa_c00275{word-spacing:-0.095760px;}
.ws15_c00275{word-spacing:-0.081396px;}
.wsd_c00275{word-spacing:-0.076608px;}
.wsb_c00275{word-spacing:-0.071820px;}
.ws2c_c00275{word-spacing:-0.067032px;}
.ws16_c00275{word-spacing:-0.062244px;}
.ws9_c00275{word-spacing:-0.052668px;}
.ws36_c00275{word-spacing:-0.047880px;}
.ws1a_c00275{word-spacing:-0.038304px;}
.ws1c_c00275{word-spacing:-0.033516px;}
.ws10_c00275{word-spacing:-0.028728px;}
.ws17_c00275{word-spacing:-0.023940px;}
.wsf_c00275{word-spacing:-0.014364px;}
.ws32_c00275{word-spacing:-0.009576px;}
.ws20_c00275{word-spacing:-0.004788px;}
.ws7_c00275{word-spacing:0.000000px;}
.ws37_c00275{word-spacing:0.004788px;}
.ws2d_c00275{word-spacing:0.220248px;}
.ws30_c00275{word-spacing:0.225036px;}
.ws34_c00275{word-spacing:0.248976px;}
.ws26_c00275{word-spacing:0.325584px;}
.ws35_c00275{word-spacing:0.363888px;}
.ws28_c00275{word-spacing:101.500812px;}
.ws2a_c00275{word-spacing:101.548692px;}
._3_c00275{margin-left:-100.643760px;}
._0_c00275{margin-left:-1.022040px;}
._1_c00275{width:1.005480px;}
._2_c00275{width:72.136008px;}
._5_c00275{width:101.505600px;}
._4_c00275{width:209.422332px;}
.fc0_c00275{color:rgb(0,0,0);}
.fs3_c00275{font-size:47.880000px;}
.fs2_c00275{font-size:54.000000px;}
.fs0_c00275{font-size:60.120000px;}
.fs1_c00275{font-size:72.000000px;}
.y0_c00275{bottom:0.000000px;}
.y3_c00275{bottom:57.450450px;}
.y4_c00275{bottom:61.410450px;}
.ya3_c00275{bottom:122.966130px;}
.ya7_c00275{bottom:129.717210px;}
.ya2_c00275{bottom:136.468290px;}
.ya6_c00275{bottom:143.219370px;}
.y9f_c00275{bottom:149.970450px;}
.ya5_c00275{bottom:156.721530px;}
.ya1_c00275{bottom:163.472610px;}
.ya4_c00275{bottom:170.223690px;}
.ya0_c00275{bottom:176.974770px;}
.ya8_c00275{bottom:184.168740px;}
.y9b_c00275{bottom:198.365520px;}
.y9a_c00275{bottom:211.867680px;}
.y99_c00275{bottom:225.369840px;}
.y98_c00275{bottom:238.872000px;}
.y97_c00275{bottom:252.374160px;}
.y96_c00275{bottom:265.876320px;}
.y9d_c00275{bottom:272.615430px;}
.y8e_c00275{bottom:272.639370px;}
.y95_c00275{bottom:279.378480px;}
.y8d_c00275{bottom:279.390450px;}
.y9c_c00275{bottom:286.117590px;}
.y94_c00275{bottom:292.880640px;}
.y93_c00275{bottom:306.382800px;}
.y92_c00275{bottom:319.884960px;}
.y91_c00275{bottom:333.387120px;}
.y90_c00275{bottom:346.889280px;}
.y9e_c00275{bottom:360.367500px;}
.y8f_c00275{bottom:360.391440px;}
.y8b_c00275{bottom:374.656050px;}
.y8a_c00275{bottom:388.158210px;}
.y89_c00275{bottom:401.660370px;}
.y82_c00275{bottom:401.672340px;}
.y7b_c00275{bottom:401.696280px;}
.y88_c00275{bottom:415.162530px;}
.y81_c00275{bottom:415.174500px;}
.y7a_c00275{bottom:415.198440px;}
.y7d_c00275{bottom:421.937550px;}
.y87_c00275{bottom:428.664690px;}
.y80_c00275{bottom:428.676660px;}
.y77_c00275{bottom:428.700600px;}
.y7c_c00275{bottom:435.439710px;}
.y86_c00275{bottom:442.166850px;}
.y7f_c00275{bottom:442.178820px;}
.y79_c00275{bottom:442.202760px;}
.y85_c00275{bottom:455.669010px;}
.y7e_c00275{bottom:455.680980px;}
.y78_c00275{bottom:455.704920px;}
.y84_c00275{bottom:469.171170px;}
.y8c_c00275{bottom:482.661360px;}
.y83_c00275{bottom:482.673330px;}
.y76_c00275{bottom:496.917210px;}
.y75_c00275{bottom:510.419370px;}
.y72_c00275{bottom:517.170450px;}
.y74_c00275{bottom:523.921530px;}
.y73_c00275{bottom:537.423690px;}
.y71_c00275{bottom:551.637210px;}
.y6e_c00275{bottom:565.139370px;}
.y6d_c00275{bottom:571.890450px;}
.y70_c00275{bottom:578.641530px;}
.y6f_c00275{bottom:592.143690px;}
.y6c_c00275{bottom:606.447210px;}
.y69_c00275{bottom:619.949370px;}
.y68_c00275{bottom:626.700450px;}
.y6b_c00275{bottom:633.451530px;}
.y6a_c00275{bottom:646.953690px;}
.y61_c00275{bottom:661.154160px;}
.y65_c00275{bottom:667.893270px;}
.y60_c00275{bottom:674.656320px;}
.y5c_c00275{bottom:674.668290px;}
.y64_c00275{bottom:681.395430px;}
.y66_c00275{bottom:688.146510px;}
.y5f_c00275{bottom:688.158480px;}
.y5a_c00275{bottom:688.170450px;}
.y63_c00275{bottom:694.897590px;}
.y5e_c00275{bottom:701.660640px;}
.y5b_c00275{bottom:701.672610px;}
.y62_c00275{bottom:708.399750px;}
.y67_c00275{bottom:715.150830px;}
.y5d_c00275{bottom:715.162800px;}
.y54_c00275{bottom:759.518130px;}
.y53_c00275{bottom:778.143450px;}
.y4b_c00275{bottom:788.234160px;}
.y59_c00275{bottom:788.244510px;}
.y52_c00275{bottom:791.645610px;}
.y46_c00275{bottom:794.997210px;}
.y4a_c00275{bottom:801.736320px;}
.y58_c00275{bottom:801.746670px;}
.y51_c00275{bottom:805.147770px;}
.y45_c00275{bottom:808.499370px;}
.y49_c00275{bottom:815.238480px;}
.y57_c00275{bottom:815.248830px;}
.y42_c00275{bottom:815.250450px;}
.y50_c00275{bottom:818.649930px;}
.y44_c00275{bottom:822.001530px;}
.y48_c00275{bottom:828.740640px;}
.y56_c00275{bottom:828.750990px;}
.y4f_c00275{bottom:832.152090px;}
.y43_c00275{bottom:835.503690px;}
.y47_c00275{bottom:842.242800px;}
.y55_c00275{bottom:842.253150px;}
.y4e_c00275{bottom:845.654250px;}
.y4d_c00275{bottom:859.156410px;}
.y4c_c00275{bottom:872.658570px;}
.y3c_c00275{bottom:915.297870px;}
.y3b_c00275{bottom:928.800030px;}
.y41_c00275{bottom:942.290220px;}
.y3a_c00275{bottom:942.302190px;}
.y33_c00275{bottom:942.314160px;}
.y2c_c00275{bottom:949.077210px;}
.y40_c00275{bottom:955.792380px;}
.y39_c00275{bottom:955.804350px;}
.y32_c00275{bottom:955.816320px;}
.y2e_c00275{bottom:955.828290px;}
.y2b_c00275{bottom:962.579370px;}
.y3f_c00275{bottom:969.294540px;}
.y38_c00275{bottom:969.306510px;}
.y31_c00275{bottom:969.318480px;}
.y28_c00275{bottom:969.330450px;}
.y2a_c00275{bottom:976.081530px;}
.y3e_c00275{bottom:982.796700px;}
.y37_c00275{bottom:982.808670px;}
.y30_c00275{bottom:982.820640px;}
.y2d_c00275{bottom:982.832610px;}
.y29_c00275{bottom:989.583690px;}
.y3d_c00275{bottom:996.298860px;}
.y36_c00275{bottom:996.310830px;}
.y2f_c00275{bottom:996.322800px;}
.y35_c00275{bottom:1009.812990px;}
.y34_c00275{bottom:1023.315150px;}
.y22_c00275{bottom:1037.493930px;}
.y11_c00275{bottom:1044.280920px;}
.y21_c00275{bottom:1050.996090px;}
.y10_c00275{bottom:1057.783080px;}
.y27_c00275{bottom:1064.486280px;}
.y20_c00275{bottom:1064.498250px;}
.y19_c00275{bottom:1064.510220px;}
.yf_c00275{bottom:1071.285240px;}
.y9_c00275{bottom:1071.297210px;}
.y26_c00275{bottom:1077.988440px;}
.y1f_c00275{bottom:1078.000410px;}
.y18_c00275{bottom:1078.012380px;}
.y14_c00275{bottom:1078.024350px;}
.ye_c00275{bottom:1084.787400px;}
.y8_c00275{bottom:1084.799370px;}
.y25_c00275{bottom:1091.490600px;}
.y1e_c00275{bottom:1091.502570px;}
.y17_c00275{bottom:1091.514540px;}
.y12_c00275{bottom:1091.526510px;}
.y5_c00275{bottom:1091.550450px;}
.yd_c00275{bottom:1098.289560px;}
.y7_c00275{bottom:1098.301530px;}
.y24_c00275{bottom:1104.992760px;}
.y1d_c00275{bottom:1105.004730px;}
.y16_c00275{bottom:1105.016700px;}
.y13_c00275{bottom:1105.028670px;}
.yc_c00275{bottom:1111.791720px;}
.y6_c00275{bottom:1111.803690px;}
.y23_c00275{bottom:1118.494920px;}
.y1c_c00275{bottom:1118.506890px;}
.y15_c00275{bottom:1118.518860px;}
.yb_c00275{bottom:1125.293880px;}
.y1b_c00275{bottom:1132.009050px;}
.ya_c00275{bottom:1138.796040px;}
.y1a_c00275{bottom:1145.511210px;}
.y2_c00275{bottom:1173.810450px;}
.y1_c00275{bottom:1196.850450px;}
.h4_c00275{height:40.071445px;}
.h5_c00275{height:40.492266px;}
.h2_c00275{height:47.988281px;}
.h1_c00275{height:50.315273px;}
.h3_c00275{height:56.320312px;}
.h6_c00275{height:60.347093px;}
.h7_c00275{height:67.075765px;}
.h8_c00275{height:67.496586px;}
.h0_c00275{height:1263.000000px;}
.w1_c00275{width:892.500000px;}
.w0_c00275{width:892.830000px;}
.x0_c00275{left:0.000000px;}
.x5_c00275{left:120.780000px;}
.x2_c00275{left:127.620000px;}
.x6_c00275{left:149.124960px;}
.x7_c00275{left:257.668920px;}
.x8_c00275{left:360.096210px;}
.x4_c00275{left:435.240000px;}
.x3_c00275{left:446.490000px;}
.x9_c00275{left:460.261170px;}
.x1_c00275{left:490.770000px;}
.xa_c00275{left:568.350270px;}
.xb_c00275{left:675.912690px;}
.xc_c00275{left:797.144850px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.v1_c00275{vertical-align:24.003840pt;}
.ls1f_c00275{letter-spacing:-0.134400pt;}
.ls31_c00275{letter-spacing:-0.106400pt;}
.ls35_c00275{letter-spacing:-0.085120pt;}
.ls20_c00275{letter-spacing:-0.080864pt;}
.ls2f_c00275{letter-spacing:-0.076608pt;}
.ls34_c00275{letter-spacing:-0.072352pt;}
.ls24_c00275{letter-spacing:-0.068096pt;}
.ls30_c00275{letter-spacing:-0.063840pt;}
.ls2b_c00275{letter-spacing:-0.059584pt;}
.ls25_c00275{letter-spacing:-0.055328pt;}
.ls2e_c00275{letter-spacing:-0.051072pt;}
.ls2c_c00275{letter-spacing:-0.046816pt;}
.ls28_c00275{letter-spacing:-0.038304pt;}
.ls21_c00275{letter-spacing:-0.034048pt;}
.ls2a_c00275{letter-spacing:-0.025536pt;}
.ls32_c00275{letter-spacing:-0.021280pt;}
.ls22_c00275{letter-spacing:-0.017024pt;}
.ls23_c00275{letter-spacing:-0.012768pt;}
.ls29_c00275{letter-spacing:-0.008512pt;}
.ls1e_c00275{letter-spacing:0.000000pt;}
.ls2_c00275{letter-spacing:0.004256pt;}
.ls2d_c00275{letter-spacing:0.008512pt;}
.ls10_c00275{letter-spacing:0.012768pt;}
.lsf_c00275{letter-spacing:0.017024pt;}
.ls6_c00275{letter-spacing:0.021280pt;}
.ls9_c00275{letter-spacing:0.025536pt;}
.ls5_c00275{letter-spacing:0.029792pt;}
.ls0_c00275{letter-spacing:0.032064pt;}
.lsc_c00275{letter-spacing:0.034048pt;}
.ls18_c00275{letter-spacing:0.038304pt;}
.ls33_c00275{letter-spacing:0.042560pt;}
.ls26_c00275{letter-spacing:0.046816pt;}
.ls1c_c00275{letter-spacing:0.051072pt;}
.ls16_c00275{letter-spacing:0.059584pt;}
.lsd_c00275{letter-spacing:0.063467pt;}
.ls8_c00275{letter-spacing:0.072352pt;}
.ls15_c00275{letter-spacing:0.080864pt;}
.lse_c00275{letter-spacing:0.085120pt;}
.ls1_c00275{letter-spacing:0.093632pt;}
.ls14_c00275{letter-spacing:0.097888pt;}
.ls3_c00275{letter-spacing:0.106400pt;}
.ls4_c00275{letter-spacing:0.110656pt;}
.ls7_c00275{letter-spacing:0.114912pt;}
.ls19_c00275{letter-spacing:0.119168pt;}
.lsb_c00275{letter-spacing:0.123424pt;}
.ls27_c00275{letter-spacing:0.140448pt;}
.lsa_c00275{letter-spacing:0.157472pt;}
.ls1b_c00275{letter-spacing:0.170240pt;}
.ls13_c00275{letter-spacing:0.178752pt;}
.ls17_c00275{letter-spacing:0.191520pt;}
.ls11_c00275{letter-spacing:90.142080pt;}
.ls1a_c00275{letter-spacing:262.339840pt;}
.ls12_c00275{letter-spacing:345.502080pt;}
.ls1d_c00275{letter-spacing:371.761600pt;}
.ws1_c00275{word-spacing:-42.560000pt;}
.ws3_c00275{word-spacing:-10.674048pt;}
.ws2_c00275{word-spacing:-10.652768pt;}
.ws4_c00275{word-spacing:-10.631488pt;}
.ws0_c00275{word-spacing:-10.601696pt;}
.ws5_c00275{word-spacing:-10.580416pt;}
.ws6_c00275{word-spacing:-0.272544pt;}
.ws2f_c00275{word-spacing:-0.272384pt;}
.ws27_c00275{word-spacing:-0.259616pt;}
.ws33_c00275{word-spacing:-0.251104pt;}
.ws1d_c00275{word-spacing:-0.238336pt;}
.ws1f_c00275{word-spacing:-0.204288pt;}
.ws31_c00275{word-spacing:-0.200032pt;}
.ws14_c00275{word-spacing:-0.195776pt;}
.wse_c00275{word-spacing:-0.191520pt;}
.wsc_c00275{word-spacing:-0.187264pt;}
.ws29_c00275{word-spacing:-0.178752pt;}
.ws8_c00275{word-spacing:-0.174496pt;}
.ws22_c00275{word-spacing:-0.165984pt;}
.ws2b_c00275{word-spacing:-0.161728pt;}
.ws18_c00275{word-spacing:-0.153216pt;}
.ws2e_c00275{word-spacing:-0.140448pt;}
.ws25_c00275{word-spacing:-0.131936pt;}
.ws11_c00275{word-spacing:-0.127680pt;}
.ws24_c00275{word-spacing:-0.119168pt;}
.ws21_c00275{word-spacing:-0.114912pt;}
.ws12_c00275{word-spacing:-0.110656pt;}
.ws19_c00275{word-spacing:-0.106400pt;}
.ws13_c00275{word-spacing:-0.102144pt;}
.ws23_c00275{word-spacing:-0.097888pt;}
.ws1e_c00275{word-spacing:-0.093632pt;}
.ws1b_c00275{word-spacing:-0.089376pt;}
.wsa_c00275{word-spacing:-0.085120pt;}
.ws15_c00275{word-spacing:-0.072352pt;}
.wsd_c00275{word-spacing:-0.068096pt;}
.wsb_c00275{word-spacing:-0.063840pt;}
.ws2c_c00275{word-spacing:-0.059584pt;}
.ws16_c00275{word-spacing:-0.055328pt;}
.ws9_c00275{word-spacing:-0.046816pt;}
.ws36_c00275{word-spacing:-0.042560pt;}
.ws1a_c00275{word-spacing:-0.034048pt;}
.ws1c_c00275{word-spacing:-0.029792pt;}
.ws10_c00275{word-spacing:-0.025536pt;}
.ws17_c00275{word-spacing:-0.021280pt;}
.wsf_c00275{word-spacing:-0.012768pt;}
.ws32_c00275{word-spacing:-0.008512pt;}
.ws20_c00275{word-spacing:-0.004256pt;}
.ws7_c00275{word-spacing:0.000000pt;}
.ws37_c00275{word-spacing:0.004256pt;}
.ws2d_c00275{word-spacing:0.195776pt;}
.ws30_c00275{word-spacing:0.200032pt;}
.ws34_c00275{word-spacing:0.221312pt;}
.ws26_c00275{word-spacing:0.289408pt;}
.ws35_c00275{word-spacing:0.323456pt;}
.ws28_c00275{word-spacing:90.222944pt;}
.ws2a_c00275{word-spacing:90.265504pt;}
._3_c00275{margin-left:-89.461120pt;}
._0_c00275{margin-left:-0.908480pt;}
._1_c00275{width:0.893760pt;}
._2_c00275{width:64.120896pt;}
._5_c00275{width:90.227200pt;}
._4_c00275{width:186.153184pt;}
.fs3_c00275{font-size:42.560000pt;}
.fs2_c00275{font-size:48.000000pt;}
.fs0_c00275{font-size:53.440000pt;}
.fs1_c00275{font-size:64.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y3_c00275{bottom:51.067067pt;}
.y4_c00275{bottom:54.587067pt;}
.ya3_c00275{bottom:109.303227pt;}
.ya7_c00275{bottom:115.304187pt;}
.ya2_c00275{bottom:121.305147pt;}
.ya6_c00275{bottom:127.306107pt;}
.y9f_c00275{bottom:133.307067pt;}
.ya5_c00275{bottom:139.308027pt;}
.ya1_c00275{bottom:145.308987pt;}
.ya4_c00275{bottom:151.309947pt;}
.ya0_c00275{bottom:157.310907pt;}
.ya8_c00275{bottom:163.705547pt;}
.y9b_c00275{bottom:176.324907pt;}
.y9a_c00275{bottom:188.326827pt;}
.y99_c00275{bottom:200.328747pt;}
.y98_c00275{bottom:212.330667pt;}
.y97_c00275{bottom:224.332587pt;}
.y96_c00275{bottom:236.334507pt;}
.y9d_c00275{bottom:242.324827pt;}
.y8e_c00275{bottom:242.346107pt;}
.y95_c00275{bottom:248.336427pt;}
.y8d_c00275{bottom:248.347067pt;}
.y9c_c00275{bottom:254.326747pt;}
.y94_c00275{bottom:260.338347pt;}
.y93_c00275{bottom:272.340267pt;}
.y92_c00275{bottom:284.342187pt;}
.y91_c00275{bottom:296.344107pt;}
.y90_c00275{bottom:308.346027pt;}
.y9e_c00275{bottom:320.326667pt;}
.y8f_c00275{bottom:320.347947pt;}
.y8b_c00275{bottom:333.027600pt;}
.y8a_c00275{bottom:345.029520pt;}
.y89_c00275{bottom:357.031440pt;}
.y82_c00275{bottom:357.042080pt;}
.y7b_c00275{bottom:357.063360pt;}
.y88_c00275{bottom:369.033360pt;}
.y81_c00275{bottom:369.044000pt;}
.y7a_c00275{bottom:369.065280pt;}
.y7d_c00275{bottom:375.055600pt;}
.y87_c00275{bottom:381.035280pt;}
.y80_c00275{bottom:381.045920pt;}
.y77_c00275{bottom:381.067200pt;}
.y7c_c00275{bottom:387.057520pt;}
.y86_c00275{bottom:393.037200pt;}
.y7f_c00275{bottom:393.047840pt;}
.y79_c00275{bottom:393.069120pt;}
.y85_c00275{bottom:405.039120pt;}
.y7e_c00275{bottom:405.049760pt;}
.y78_c00275{bottom:405.071040pt;}
.y84_c00275{bottom:417.041040pt;}
.y8c_c00275{bottom:429.032320pt;}
.y83_c00275{bottom:429.042960pt;}
.y76_c00275{bottom:441.704187pt;}
.y75_c00275{bottom:453.706107pt;}
.y72_c00275{bottom:459.707067pt;}
.y74_c00275{bottom:465.708027pt;}
.y73_c00275{bottom:477.709947pt;}
.y71_c00275{bottom:490.344187pt;}
.y6e_c00275{bottom:502.346107pt;}
.y6d_c00275{bottom:508.347067pt;}
.y70_c00275{bottom:514.348027pt;}
.y6f_c00275{bottom:526.349947pt;}
.y6c_c00275{bottom:539.064187pt;}
.y69_c00275{bottom:551.066107pt;}
.y68_c00275{bottom:557.067067pt;}
.y6b_c00275{bottom:563.068027pt;}
.y6a_c00275{bottom:575.069947pt;}
.y61_c00275{bottom:587.692587pt;}
.y65_c00275{bottom:593.682907pt;}
.y60_c00275{bottom:599.694507pt;}
.y5c_c00275{bottom:599.705147pt;}
.y64_c00275{bottom:605.684827pt;}
.y66_c00275{bottom:611.685787pt;}
.y5f_c00275{bottom:611.696427pt;}
.y5a_c00275{bottom:611.707067pt;}
.y63_c00275{bottom:617.686747pt;}
.y5e_c00275{bottom:623.698347pt;}
.y5b_c00275{bottom:623.708987pt;}
.y62_c00275{bottom:629.688667pt;}
.y67_c00275{bottom:635.689627pt;}
.y5d_c00275{bottom:635.700267pt;}
.y54_c00275{bottom:675.127227pt;}
.y53_c00275{bottom:691.683067pt;}
.y4b_c00275{bottom:700.652587pt;}
.y59_c00275{bottom:700.661787pt;}
.y52_c00275{bottom:703.684987pt;}
.y46_c00275{bottom:706.664187pt;}
.y4a_c00275{bottom:712.654507pt;}
.y58_c00275{bottom:712.663707pt;}
.y51_c00275{bottom:715.686907pt;}
.y45_c00275{bottom:718.666107pt;}
.y49_c00275{bottom:724.656427pt;}
.y57_c00275{bottom:724.665627pt;}
.y42_c00275{bottom:724.667067pt;}
.y50_c00275{bottom:727.688827pt;}
.y44_c00275{bottom:730.668027pt;}
.y48_c00275{bottom:736.658347pt;}
.y56_c00275{bottom:736.667547pt;}
.y4f_c00275{bottom:739.690747pt;}
.y43_c00275{bottom:742.669947pt;}
.y47_c00275{bottom:748.660267pt;}
.y55_c00275{bottom:748.669467pt;}
.y4e_c00275{bottom:751.692667pt;}
.y4d_c00275{bottom:763.694587pt;}
.y4c_c00275{bottom:775.696507pt;}
.y3c_c00275{bottom:813.598107pt;}
.y3b_c00275{bottom:825.600027pt;}
.y41_c00275{bottom:837.591307pt;}
.y3a_c00275{bottom:837.601947pt;}
.y33_c00275{bottom:837.612587pt;}
.y2c_c00275{bottom:843.624187pt;}
.y40_c00275{bottom:849.593227pt;}
.y39_c00275{bottom:849.603867pt;}
.y32_c00275{bottom:849.614507pt;}
.y2e_c00275{bottom:849.625147pt;}
.y2b_c00275{bottom:855.626107pt;}
.y3f_c00275{bottom:861.595147pt;}
.y38_c00275{bottom:861.605787pt;}
.y31_c00275{bottom:861.616427pt;}
.y28_c00275{bottom:861.627067pt;}
.y2a_c00275{bottom:867.628027pt;}
.y3e_c00275{bottom:873.597067pt;}
.y37_c00275{bottom:873.607707pt;}
.y30_c00275{bottom:873.618347pt;}
.y2d_c00275{bottom:873.628987pt;}
.y29_c00275{bottom:879.629947pt;}
.y3d_c00275{bottom:885.598987pt;}
.y36_c00275{bottom:885.609627pt;}
.y2f_c00275{bottom:885.620267pt;}
.y35_c00275{bottom:897.611547pt;}
.y34_c00275{bottom:909.613467pt;}
.y22_c00275{bottom:922.216827pt;}
.y11_c00275{bottom:928.249707pt;}
.y21_c00275{bottom:934.218747pt;}
.y10_c00275{bottom:940.251627pt;}
.y27_c00275{bottom:946.210027pt;}
.y20_c00275{bottom:946.220667pt;}
.y19_c00275{bottom:946.231307pt;}
.yf_c00275{bottom:952.253547pt;}
.y9_c00275{bottom:952.264187pt;}
.y26_c00275{bottom:958.211947pt;}
.y1f_c00275{bottom:958.222587pt;}
.y18_c00275{bottom:958.233227pt;}
.y14_c00275{bottom:958.243867pt;}
.ye_c00275{bottom:964.255467pt;}
.y8_c00275{bottom:964.266107pt;}
.y25_c00275{bottom:970.213867pt;}
.y1e_c00275{bottom:970.224507pt;}
.y17_c00275{bottom:970.235147pt;}
.y12_c00275{bottom:970.245787pt;}
.y5_c00275{bottom:970.267067pt;}
.yd_c00275{bottom:976.257387pt;}
.y7_c00275{bottom:976.268027pt;}
.y24_c00275{bottom:982.215787pt;}
.y1d_c00275{bottom:982.226427pt;}
.y16_c00275{bottom:982.237067pt;}
.y13_c00275{bottom:982.247707pt;}
.yc_c00275{bottom:988.259307pt;}
.y6_c00275{bottom:988.269947pt;}
.y23_c00275{bottom:994.217707pt;}
.y1c_c00275{bottom:994.228347pt;}
.y15_c00275{bottom:994.238987pt;}
.yb_c00275{bottom:1000.261227pt;}
.y1b_c00275{bottom:1006.230267pt;}
.ya_c00275{bottom:1012.263147pt;}
.y1a_c00275{bottom:1018.232187pt;}
.y2_c00275{bottom:1043.387067pt;}
.y1_c00275{bottom:1063.867067pt;}
.h4_c00275{height:35.619062pt;}
.h5_c00275{height:35.993125pt;}
.h2_c00275{height:42.656250pt;}
.h1_c00275{height:44.724687pt;}
.h3_c00275{height:50.062500pt;}
.h6_c00275{height:53.641860pt;}
.h7_c00275{height:59.622903pt;}
.h8_c00275{height:59.996965pt;}
.h0_c00275{height:1122.666667pt;}
.w1_c00275{width:793.333333pt;}
.w0_c00275{width:793.626667pt;}
.x0_c00275{left:0.000000pt;}
.x5_c00275{left:107.360000pt;}
.x2_c00275{left:113.440000pt;}
.x6_c00275{left:132.555520pt;}
.x7_c00275{left:229.039040pt;}
.x8_c00275{left:320.085520pt;}
.x4_c00275{left:386.880000pt;}
.x3_c00275{left:396.880000pt;}
.x9_c00275{left:409.121040pt;}
.x1_c00275{left:436.240000pt;}
.xa_c00275{left:505.200240pt;}
.xb_c00275{left:600.811280pt;}
.xc_c00275{left:708.573200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ee26d29ed97baf9331585e7.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.100098;font-style:normal;font-weight:normal;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_55990fcb140cd4ab07752a95.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00276;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00276;src:url('chunks/assets/font_0512f64d497c806924f725c3.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00276;src:url('chunks/assets/font_ccf07fd54a8dd7dcd2796b70.woff2')format("woff");}.ff5_c00276{font-family:ff5_c00276;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00276{transform:matrix(0.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_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;}
.v1_c00276{vertical-align:15.840000px;}
.v2_c00276{vertical-align:27.004320px;}
.ls14_c00276{letter-spacing:-0.151200px;}
.ls26_c00276{letter-spacing:-0.124488px;}
.ls27_c00276{letter-spacing:-0.110124px;}
.ls30_c00276{letter-spacing:-0.105336px;}
.ls2d_c00276{letter-spacing:-0.095760px;}
.ls1b_c00276{letter-spacing:-0.090972px;}
.ls2b_c00276{letter-spacing:-0.086184px;}
.ls15_c00276{letter-spacing:-0.076608px;}
.ls1c_c00276{letter-spacing:-0.071820px;}
.ls29_c00276{letter-spacing:-0.067032px;}
.ls18_c00276{letter-spacing:-0.062244px;}
.ls23_c00276{letter-spacing:-0.057456px;}
.ls28_c00276{letter-spacing:-0.052668px;}
.ls20_c00276{letter-spacing:-0.047880px;}
.ls1a_c00276{letter-spacing:-0.043092px;}
.ls22_c00276{letter-spacing:-0.038304px;}
.ls25_c00276{letter-spacing:-0.033516px;}
.ls2e_c00276{letter-spacing:-0.028728px;}
.ls2c_c00276{letter-spacing:-0.019152px;}
.ls1e_c00276{letter-spacing:-0.014364px;}
.ls16_c00276{letter-spacing:-0.009576px;}
.ls1d_c00276{letter-spacing:-0.004788px;}
.ls13_c00276{letter-spacing:0.000000px;}
.ls4_c00276{letter-spacing:0.004788px;}
.ls24_c00276{letter-spacing:0.009576px;}
.lsc_c00276{letter-spacing:0.014364px;}
.ls17_c00276{letter-spacing:0.019152px;}
.lsd_c00276{letter-spacing:0.023940px;}
.ls3_c00276{letter-spacing:0.028728px;}
.lsa_c00276{letter-spacing:0.033516px;}
.ls1f_c00276{letter-spacing:0.038304px;}
.ls9_c00276{letter-spacing:0.047880px;}
.ls0_c00276{letter-spacing:0.048096px;}
.ls5_c00276{letter-spacing:0.052668px;}
.ls2f_c00276{letter-spacing:0.062244px;}
.ls31_c00276{letter-spacing:0.081396px;}
.ls10_c00276{letter-spacing:0.086184px;}
.ls6_c00276{letter-spacing:0.095760px;}
.lsb_c00276{letter-spacing:0.105336px;}
.ls2a_c00276{letter-spacing:0.110124px;}
.lse_c00276{letter-spacing:0.129276px;}
.ls8_c00276{letter-spacing:0.134064px;}
.ls7_c00276{letter-spacing:0.138852px;}
.ls12_c00276{letter-spacing:0.143640px;}
.ls19_c00276{letter-spacing:0.158004px;}
.lsf_c00276{letter-spacing:196.451640px;}
.ls11_c00276{letter-spacing:219.529800px;}
.ls2_c00276{letter-spacing:388.689840px;}
.ls21_c00276{letter-spacing:472.949064px;}
.ls1_c00276{letter-spacing:1212.120000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00276{word-spacing:-47.880000px;}
.ws2_c00276{word-spacing:-11.984364px;}
.ws1_c00276{word-spacing:-11.926908px;}
.ws12_c00276{word-spacing:-0.229824px;}
.ws13_c00276{word-spacing:-0.225036px;}
.ws19_c00276{word-spacing:-0.220248px;}
.ws22_c00276{word-spacing:-0.201096px;}
.ws17_c00276{word-spacing:-0.196308px;}
.wsf_c00276{word-spacing:-0.186732px;}
.ws28_c00276{word-spacing:-0.177156px;}
.ws32_c00276{word-spacing:-0.153216px;}
.ws9_c00276{word-spacing:-0.143640px;}
.ws2f_c00276{word-spacing:-0.138852px;}
.ws16_c00276{word-spacing:-0.124488px;}
.wsa_c00276{word-spacing:-0.119700px;}
.wsd_c00276{word-spacing:-0.114912px;}
.ws2e_c00276{word-spacing:-0.105336px;}
.wsb_c00276{word-spacing:-0.095760px;}
.ws2b_c00276{word-spacing:-0.090972px;}
.wse_c00276{word-spacing:-0.086184px;}
.ws6_c00276{word-spacing:-0.081396px;}
.ws10_c00276{word-spacing:-0.076608px;}
.ws30_c00276{word-spacing:-0.062244px;}
.ws1c_c00276{word-spacing:-0.057456px;}
.ws18_c00276{word-spacing:-0.052668px;}
.ws1d_c00276{word-spacing:-0.047880px;}
.ws2a_c00276{word-spacing:-0.043092px;}
.ws20_c00276{word-spacing:-0.038304px;}
.ws1f_c00276{word-spacing:-0.033516px;}
.ws8_c00276{word-spacing:-0.028728px;}
.ws21_c00276{word-spacing:-0.023940px;}
.wsc_c00276{word-spacing:-0.019152px;}
.ws7_c00276{word-spacing:-0.014364px;}
.ws31_c00276{word-spacing:-0.009576px;}
.ws25_c00276{word-spacing:-0.004788px;}
.ws4_c00276{word-spacing:0.000000px;}
.ws1b_c00276{word-spacing:0.019152px;}
.ws27_c00276{word-spacing:0.033516px;}
.ws3_c00276{word-spacing:0.042084px;}
.ws14_c00276{word-spacing:0.220248px;}
.ws1e_c00276{word-spacing:0.244188px;}
.ws2d_c00276{word-spacing:0.311220px;}
.ws23_c00276{word-spacing:0.320796px;}
.ws1a_c00276{word-spacing:0.325584px;}
.ws24_c00276{word-spacing:0.335160px;}
.ws11_c00276{word-spacing:0.339948px;}
.ws29_c00276{word-spacing:0.363888px;}
.ws33_c00276{word-spacing:0.373464px;}
.ws34_c00276{word-spacing:79.140852px;}
.ws26_c00276{word-spacing:79.145640px;}
.ws15_c00276{word-spacing:79.160004px;}
.ws2c_c00276{word-spacing:79.179156px;}
.ws5_c00276{word-spacing:79.188732px;}
._2_c00276{margin-left:-79.193520px;}
._1_c00276{margin-left:-78.188040px;}
._0_c00276{margin-left:-1.322640px;}
._3_c00276{width:1.005480px;}
._8_c00276{width:70.680456px;}
._7_c00276{width:72.136008px;}
._4_c00276{width:79.193520px;}
._5_c00276{width:90.407016px;}
._6_c00276{width:126.609084px;}
.fc0_c00276{color:rgb(0,0,0);}
.fs3_c00276{font-size:47.880000px;}
.fs1_c00276{font-size:54.000000px;}
.fs0_c00276{font-size:60.120000px;}
.fs2_c00276{font-size:72.000000px;}
.y0_c00276{bottom:0.000000px;}
.y3_c00276{bottom:57.450450px;}
.y9b_c00276{bottom:178.047210px;}
.y9a_c00276{bottom:191.549370px;}
.y97_c00276{bottom:198.300450px;}
.y99_c00276{bottom:205.051530px;}
.y98_c00276{bottom:218.553690px;}
.y92_c00276{bottom:232.843080px;}
.y91_c00276{bottom:246.345240px;}
.y8c_c00276{bottom:246.357210px;}
.y95_c00276{bottom:253.084350px;}
.y90_c00276{bottom:259.847400px;}
.y89_c00276{bottom:259.859370px;}
.y94_c00276{bottom:266.586510px;}
.y88_c00276{bottom:266.610450px;}
.y8f_c00276{bottom:273.349560px;}
.y8b_c00276{bottom:273.361530px;}
.y93_c00276{bottom:280.088670px;}
.y8e_c00276{bottom:286.851720px;}
.y8a_c00276{bottom:286.863690px;}
.y8d_c00276{bottom:300.353880px;}
.y82_c00276{bottom:314.564160px;}
.y87_c00276{bottom:328.054350px;}
.y81_c00276{bottom:328.066320px;}
.y84_c00276{bottom:334.805430px;}
.y7d_c00276{bottom:334.829370px;}
.y86_c00276{bottom:341.556510px;}
.y80_c00276{bottom:341.568480px;}
.y7c_c00276{bottom:341.580450px;}
.y96_c00276{bottom:342.300450px;}
.y83_c00276{bottom:348.307590px;}
.y85_c00276{bottom:355.058670px;}
.y7f_c00276{bottom:355.070640px;}
.y7e_c00276{bottom:368.572800px;}
.y7b_c00276{bottom:382.797210px;}
.y7a_c00276{bottom:396.299370px;}
.y77_c00276{bottom:403.050450px;}
.y79_c00276{bottom:409.801530px;}
.y78_c00276{bottom:423.303690px;}
.y76_c00276{bottom:437.607360px;}
.y73_c00276{bottom:451.109520px;}
.y72_c00276{bottom:457.860600px;}
.y75_c00276{bottom:464.611680px;}
.y74_c00276{bottom:478.113840px;}
.y71_c00276{bottom:492.327210px;}
.y6e_c00276{bottom:505.829370px;}
.y6d_c00276{bottom:512.580450px;}
.y70_c00276{bottom:519.331530px;}
.y6f_c00276{bottom:532.833690px;}
.y67_c00276{bottom:547.046130px;}
.y6c_c00276{bottom:560.536320px;}
.y66_c00276{bottom:560.548290px;}
.y69_c00276{bottom:567.287400px;}
.y6b_c00276{bottom:574.038480px;}
.y63_c00276{bottom:574.050450px;}
.y68_c00276{bottom:580.789560px;}
.y6a_c00276{bottom:587.540640px;}
.y65_c00276{bottom:587.552610px;}
.y64_c00276{bottom:601.054770px;}
.y61_c00276{bottom:615.357210px;}
.y62_c00276{bottom:621.750450px;}
.y5e_c00276{bottom:628.859370px;}
.y5d_c00276{bottom:635.610450px;}
.y60_c00276{bottom:642.361530px;}
.y5f_c00276{bottom:655.863690px;}
.y5c_c00276{bottom:670.077210px;}
.y59_c00276{bottom:683.579370px;}
.y58_c00276{bottom:690.330450px;}
.y5b_c00276{bottom:697.081530px;}
.y5a_c00276{bottom:710.583690px;}
.y57_c00276{bottom:724.728720px;}
.y56_c00276{bottom:738.230880px;}
.y55_c00276{bottom:751.733040px;}
.y54_c00276{bottom:765.235200px;}
.y47_c00276{bottom:772.010220px;}
.y3d_c00276{bottom:772.034160px;}
.y53_c00276{bottom:778.737360px;}
.y4b_c00276{bottom:778.749330px;}
.y46_c00276{bottom:785.512380px;}
.y42_c00276{bottom:785.524350px;}
.y3c_c00276{bottom:785.536320px;}
.y52_c00276{bottom:792.239520px;}
.y4a_c00276{bottom:792.251490px;}
.y3f_c00276{bottom:792.275430px;}
.y38_c00276{bottom:792.299370px;}
.y45_c00276{bottom:799.014540px;}
.y41_c00276{bottom:799.026510px;}
.y3b_c00276{bottom:799.038480px;}
.y37_c00276{bottom:799.050450px;}
.y51_c00276{bottom:805.741680px;}
.y49_c00276{bottom:805.753650px;}
.y3e_c00276{bottom:805.777590px;}
.y44_c00276{bottom:812.516700px;}
.y40_c00276{bottom:812.528670px;}
.y3a_c00276{bottom:812.540640px;}
.y50_c00276{bottom:819.243840px;}
.y48_c00276{bottom:819.255810px;}
.y43_c00276{bottom:826.018860px;}
.y39_c00276{bottom:826.042800px;}
.y4f_c00276{bottom:832.746000px;}
.y4e_c00276{bottom:846.248160px;}
.y4d_c00276{bottom:859.750320px;}
.y4c_c00276{bottom:873.252480px;}
.y30_c00276{bottom:887.582190px;}
.y26_c00276{bottom:887.606130px;}
.y34_c00276{bottom:894.321300px;}
.y2f_c00276{bottom:901.084350px;}
.y2b_c00276{bottom:901.096320px;}
.y25_c00276{bottom:901.108290px;}
.y33_c00276{bottom:907.823460px;}
.y28_c00276{bottom:907.847400px;}
.y35_c00276{bottom:914.574540px;}
.y2e_c00276{bottom:914.586510px;}
.y2a_c00276{bottom:914.598480px;}
.y22_c00276{bottom:914.610450px;}
.y32_c00276{bottom:921.325620px;}
.y27_c00276{bottom:921.349560px;}
.y36_c00276{bottom:926.490450px;}
.y2d_c00276{bottom:928.088670px;}
.y29_c00276{bottom:928.100640px;}
.y24_c00276{bottom:928.112610px;}
.y31_c00276{bottom:934.827780px;}
.y2c_c00276{bottom:941.590830px;}
.y23_c00276{bottom:941.614770px;}
.y21_c00276{bottom:955.827210px;}
.y20_c00276{bottom:969.329370px;}
.y1d_c00276{bottom:976.080450px;}
.y1f_c00276{bottom:982.831530px;}
.y1e_c00276{bottom:996.333690px;}
.y18_c00276{bottom:1010.503740px;}
.y17_c00276{bottom:1024.005900px;}
.y16_c00276{bottom:1037.508060px;}
.ya_c00276{bottom:1044.283080px;}
.y15_c00276{bottom:1051.010220px;}
.y1c_c00276{bottom:1057.749330px;}
.y9_c00276{bottom:1057.785240px;}
.y14_c00276{bottom:1064.512380px;}
.y1b_c00276{bottom:1071.251490px;}
.yc_c00276{bottom:1071.275430px;}
.y8_c00276{bottom:1071.287400px;}
.y13_c00276{bottom:1078.014540px;}
.yb_c00276{bottom:1078.026510px;}
.y4_c00276{bottom:1078.050450px;}
.y1a_c00276{bottom:1084.753650px;}
.yd_c00276{bottom:1084.777590px;}
.y7_c00276{bottom:1084.789560px;}
.y12_c00276{bottom:1091.516700px;}
.y19_c00276{bottom:1098.255810px;}
.y6_c00276{bottom:1098.291720px;}
.y11_c00276{bottom:1105.018860px;}
.y5_c00276{bottom:1111.793880px;}
.y10_c00276{bottom:1118.521020px;}
.yf_c00276{bottom:1132.023180px;}
.ye_c00276{bottom:1145.525340px;}
.y2_c00276{bottom:1177.860450px;}
.y1_c00276{bottom:1196.850450px;}
.h4_c00276{height:40.071445px;}
.h5_c00276{height:40.492266px;}
.h1_c00276{height:50.315273px;}
.h2_c00276{height:56.320312px;}
.h6_c00276{height:67.075765px;}
.h3_c00276{height:72.160312px;}
.h0_c00276{height:1263.000000px;}
.w1_c00276{width:892.500000px;}
.w0_c00276{width:892.830000px;}
.x0_c00276{left:0.000000px;}
.x9_c00276{left:77.040000px;}
.x2_c00276{left:115.200000px;}
.xb_c00276{left:117.990000px;}
.x1_c00276{left:127.620000px;}
.xa_c00276{left:149.134950px;}
.x3_c00276{left:257.666940px;}
.x4_c00276{left:360.094230px;}
.x5_c00276{left:460.259190px;}
.x6_c00276{left:568.348290px;}
.x7_c00276{left:675.910710px;}
.x8_c00276{left:797.142870px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.v1_c00276{vertical-align:14.080000pt;}
.v2_c00276{vertical-align:24.003840pt;}
.ls14_c00276{letter-spacing:-0.134400pt;}
.ls26_c00276{letter-spacing:-0.110656pt;}
.ls27_c00276{letter-spacing:-0.097888pt;}
.ls30_c00276{letter-spacing:-0.093632pt;}
.ls2d_c00276{letter-spacing:-0.085120pt;}
.ls1b_c00276{letter-spacing:-0.080864pt;}
.ls2b_c00276{letter-spacing:-0.076608pt;}
.ls15_c00276{letter-spacing:-0.068096pt;}
.ls1c_c00276{letter-spacing:-0.063840pt;}
.ls29_c00276{letter-spacing:-0.059584pt;}
.ls18_c00276{letter-spacing:-0.055328pt;}
.ls23_c00276{letter-spacing:-0.051072pt;}
.ls28_c00276{letter-spacing:-0.046816pt;}
.ls20_c00276{letter-spacing:-0.042560pt;}
.ls1a_c00276{letter-spacing:-0.038304pt;}
.ls22_c00276{letter-spacing:-0.034048pt;}
.ls25_c00276{letter-spacing:-0.029792pt;}
.ls2e_c00276{letter-spacing:-0.025536pt;}
.ls2c_c00276{letter-spacing:-0.017024pt;}
.ls1e_c00276{letter-spacing:-0.012768pt;}
.ls16_c00276{letter-spacing:-0.008512pt;}
.ls1d_c00276{letter-spacing:-0.004256pt;}
.ls13_c00276{letter-spacing:0.000000pt;}
.ls4_c00276{letter-spacing:0.004256pt;}
.ls24_c00276{letter-spacing:0.008512pt;}
.lsc_c00276{letter-spacing:0.012768pt;}
.ls17_c00276{letter-spacing:0.017024pt;}
.lsd_c00276{letter-spacing:0.021280pt;}
.ls3_c00276{letter-spacing:0.025536pt;}
.lsa_c00276{letter-spacing:0.029792pt;}
.ls1f_c00276{letter-spacing:0.034048pt;}
.ls9_c00276{letter-spacing:0.042560pt;}
.ls0_c00276{letter-spacing:0.042752pt;}
.ls5_c00276{letter-spacing:0.046816pt;}
.ls2f_c00276{letter-spacing:0.055328pt;}
.ls31_c00276{letter-spacing:0.072352pt;}
.ls10_c00276{letter-spacing:0.076608pt;}
.ls6_c00276{letter-spacing:0.085120pt;}
.lsb_c00276{letter-spacing:0.093632pt;}
.ls2a_c00276{letter-spacing:0.097888pt;}
.lse_c00276{letter-spacing:0.114912pt;}
.ls8_c00276{letter-spacing:0.119168pt;}
.ls7_c00276{letter-spacing:0.123424pt;}
.ls12_c00276{letter-spacing:0.127680pt;}
.ls19_c00276{letter-spacing:0.140448pt;}
.lsf_c00276{letter-spacing:174.623680pt;}
.ls11_c00276{letter-spacing:195.137600pt;}
.ls2_c00276{letter-spacing:345.502080pt;}
.ls21_c00276{letter-spacing:420.399168pt;}
.ls1_c00276{letter-spacing:1077.440000pt;}
.ws0_c00276{word-spacing:-42.560000pt;}
.ws2_c00276{word-spacing:-10.652768pt;}
.ws1_c00276{word-spacing:-10.601696pt;}
.ws12_c00276{word-spacing:-0.204288pt;}
.ws13_c00276{word-spacing:-0.200032pt;}
.ws19_c00276{word-spacing:-0.195776pt;}
.ws22_c00276{word-spacing:-0.178752pt;}
.ws17_c00276{word-spacing:-0.174496pt;}
.wsf_c00276{word-spacing:-0.165984pt;}
.ws28_c00276{word-spacing:-0.157472pt;}
.ws32_c00276{word-spacing:-0.136192pt;}
.ws9_c00276{word-spacing:-0.127680pt;}
.ws2f_c00276{word-spacing:-0.123424pt;}
.ws16_c00276{word-spacing:-0.110656pt;}
.wsa_c00276{word-spacing:-0.106400pt;}
.wsd_c00276{word-spacing:-0.102144pt;}
.ws2e_c00276{word-spacing:-0.093632pt;}
.wsb_c00276{word-spacing:-0.085120pt;}
.ws2b_c00276{word-spacing:-0.080864pt;}
.wse_c00276{word-spacing:-0.076608pt;}
.ws6_c00276{word-spacing:-0.072352pt;}
.ws10_c00276{word-spacing:-0.068096pt;}
.ws30_c00276{word-spacing:-0.055328pt;}
.ws1c_c00276{word-spacing:-0.051072pt;}
.ws18_c00276{word-spacing:-0.046816pt;}
.ws1d_c00276{word-spacing:-0.042560pt;}
.ws2a_c00276{word-spacing:-0.038304pt;}
.ws20_c00276{word-spacing:-0.034048pt;}
.ws1f_c00276{word-spacing:-0.029792pt;}
.ws8_c00276{word-spacing:-0.025536pt;}
.ws21_c00276{word-spacing:-0.021280pt;}
.wsc_c00276{word-spacing:-0.017024pt;}
.ws7_c00276{word-spacing:-0.012768pt;}
.ws31_c00276{word-spacing:-0.008512pt;}
.ws25_c00276{word-spacing:-0.004256pt;}
.ws4_c00276{word-spacing:0.000000pt;}
.ws1b_c00276{word-spacing:0.017024pt;}
.ws27_c00276{word-spacing:0.029792pt;}
.ws3_c00276{word-spacing:0.037408pt;}
.ws14_c00276{word-spacing:0.195776pt;}
.ws1e_c00276{word-spacing:0.217056pt;}
.ws2d_c00276{word-spacing:0.276640pt;}
.ws23_c00276{word-spacing:0.285152pt;}
.ws1a_c00276{word-spacing:0.289408pt;}
.ws24_c00276{word-spacing:0.297920pt;}
.ws11_c00276{word-spacing:0.302176pt;}
.ws29_c00276{word-spacing:0.323456pt;}
.ws33_c00276{word-spacing:0.331968pt;}
.ws34_c00276{word-spacing:70.347424pt;}
.ws26_c00276{word-spacing:70.351680pt;}
.ws15_c00276{word-spacing:70.364448pt;}
.ws2c_c00276{word-spacing:70.381472pt;}
.ws5_c00276{word-spacing:70.389984pt;}
._2_c00276{margin-left:-70.394240pt;}
._1_c00276{margin-left:-69.500480pt;}
._0_c00276{margin-left:-1.175680pt;}
._3_c00276{width:0.893760pt;}
._8_c00276{width:62.827072pt;}
._7_c00276{width:64.120896pt;}
._4_c00276{width:70.394240pt;}
._5_c00276{width:80.361792pt;}
._6_c00276{width:112.541408pt;}
.fs3_c00276{font-size:42.560000pt;}
.fs1_c00276{font-size:48.000000pt;}
.fs0_c00276{font-size:53.440000pt;}
.fs2_c00276{font-size:64.000000pt;}
.y0_c00276{bottom:0.000000pt;}
.y3_c00276{bottom:51.067067pt;}
.y9b_c00276{bottom:158.264187pt;}
.y9a_c00276{bottom:170.266107pt;}
.y97_c00276{bottom:176.267067pt;}
.y99_c00276{bottom:182.268027pt;}
.y98_c00276{bottom:194.269947pt;}
.y92_c00276{bottom:206.971627pt;}
.y91_c00276{bottom:218.973547pt;}
.y8c_c00276{bottom:218.984187pt;}
.y95_c00276{bottom:224.963867pt;}
.y90_c00276{bottom:230.975467pt;}
.y89_c00276{bottom:230.986107pt;}
.y94_c00276{bottom:236.965787pt;}
.y88_c00276{bottom:236.987067pt;}
.y8f_c00276{bottom:242.977387pt;}
.y8b_c00276{bottom:242.988027pt;}
.y93_c00276{bottom:248.967707pt;}
.y8e_c00276{bottom:254.979307pt;}
.y8a_c00276{bottom:254.989947pt;}
.y8d_c00276{bottom:266.981227pt;}
.y82_c00276{bottom:279.612587pt;}
.y87_c00276{bottom:291.603867pt;}
.y81_c00276{bottom:291.614507pt;}
.y84_c00276{bottom:297.604827pt;}
.y7d_c00276{bottom:297.626107pt;}
.y86_c00276{bottom:303.605787pt;}
.y80_c00276{bottom:303.616427pt;}
.y7c_c00276{bottom:303.627067pt;}
.y96_c00276{bottom:304.267067pt;}
.y83_c00276{bottom:309.606747pt;}
.y85_c00276{bottom:315.607707pt;}
.y7f_c00276{bottom:315.618347pt;}
.y7e_c00276{bottom:327.620267pt;}
.y7b_c00276{bottom:340.264187pt;}
.y7a_c00276{bottom:352.266107pt;}
.y77_c00276{bottom:358.267067pt;}
.y79_c00276{bottom:364.268027pt;}
.y78_c00276{bottom:376.269947pt;}
.y76_c00276{bottom:388.984320pt;}
.y73_c00276{bottom:400.986240pt;}
.y72_c00276{bottom:406.987200pt;}
.y75_c00276{bottom:412.988160pt;}
.y74_c00276{bottom:424.990080pt;}
.y71_c00276{bottom:437.624187pt;}
.y6e_c00276{bottom:449.626107pt;}
.y6d_c00276{bottom:455.627067pt;}
.y70_c00276{bottom:461.628027pt;}
.y6f_c00276{bottom:473.629947pt;}
.y67_c00276{bottom:486.263227pt;}
.y6c_c00276{bottom:498.254507pt;}
.y66_c00276{bottom:498.265147pt;}
.y69_c00276{bottom:504.255467pt;}
.y6b_c00276{bottom:510.256427pt;}
.y63_c00276{bottom:510.267067pt;}
.y68_c00276{bottom:516.257387pt;}
.y6a_c00276{bottom:522.258347pt;}
.y65_c00276{bottom:522.268987pt;}
.y64_c00276{bottom:534.270907pt;}
.y61_c00276{bottom:546.984187pt;}
.y62_c00276{bottom:552.667067pt;}
.y5e_c00276{bottom:558.986107pt;}
.y5d_c00276{bottom:564.987067pt;}
.y60_c00276{bottom:570.988027pt;}
.y5f_c00276{bottom:582.989947pt;}
.y5c_c00276{bottom:595.624187pt;}
.y59_c00276{bottom:607.626107pt;}
.y58_c00276{bottom:613.627067pt;}
.y5b_c00276{bottom:619.628027pt;}
.y5a_c00276{bottom:631.629947pt;}
.y57_c00276{bottom:644.203307pt;}
.y56_c00276{bottom:656.205227pt;}
.y55_c00276{bottom:668.207147pt;}
.y54_c00276{bottom:680.209067pt;}
.y47_c00276{bottom:686.231307pt;}
.y3d_c00276{bottom:686.252587pt;}
.y53_c00276{bottom:692.210987pt;}
.y4b_c00276{bottom:692.221627pt;}
.y46_c00276{bottom:698.233227pt;}
.y42_c00276{bottom:698.243867pt;}
.y3c_c00276{bottom:698.254507pt;}
.y52_c00276{bottom:704.212907pt;}
.y4a_c00276{bottom:704.223547pt;}
.y3f_c00276{bottom:704.244827pt;}
.y38_c00276{bottom:704.266107pt;}
.y45_c00276{bottom:710.235147pt;}
.y41_c00276{bottom:710.245787pt;}
.y3b_c00276{bottom:710.256427pt;}
.y37_c00276{bottom:710.267067pt;}
.y51_c00276{bottom:716.214827pt;}
.y49_c00276{bottom:716.225467pt;}
.y3e_c00276{bottom:716.246747pt;}
.y44_c00276{bottom:722.237067pt;}
.y40_c00276{bottom:722.247707pt;}
.y3a_c00276{bottom:722.258347pt;}
.y50_c00276{bottom:728.216747pt;}
.y48_c00276{bottom:728.227387pt;}
.y43_c00276{bottom:734.238987pt;}
.y39_c00276{bottom:734.260267pt;}
.y4f_c00276{bottom:740.218667pt;}
.y4e_c00276{bottom:752.220587pt;}
.y4d_c00276{bottom:764.222507pt;}
.y4c_c00276{bottom:776.224427pt;}
.y30_c00276{bottom:788.961947pt;}
.y26_c00276{bottom:788.983227pt;}
.y34_c00276{bottom:794.952267pt;}
.y2f_c00276{bottom:800.963867pt;}
.y2b_c00276{bottom:800.974507pt;}
.y25_c00276{bottom:800.985147pt;}
.y33_c00276{bottom:806.954187pt;}
.y28_c00276{bottom:806.975467pt;}
.y35_c00276{bottom:812.955147pt;}
.y2e_c00276{bottom:812.965787pt;}
.y2a_c00276{bottom:812.976427pt;}
.y22_c00276{bottom:812.987067pt;}
.y32_c00276{bottom:818.956107pt;}
.y27_c00276{bottom:818.977387pt;}
.y36_c00276{bottom:823.547067pt;}
.y2d_c00276{bottom:824.967707pt;}
.y29_c00276{bottom:824.978347pt;}
.y24_c00276{bottom:824.988987pt;}
.y31_c00276{bottom:830.958027pt;}
.y2c_c00276{bottom:836.969627pt;}
.y23_c00276{bottom:836.990907pt;}
.y21_c00276{bottom:849.624187pt;}
.y20_c00276{bottom:861.626107pt;}
.y1d_c00276{bottom:867.627067pt;}
.y1f_c00276{bottom:873.628027pt;}
.y1e_c00276{bottom:885.629947pt;}
.y18_c00276{bottom:898.225547pt;}
.y17_c00276{bottom:910.227467pt;}
.y16_c00276{bottom:922.229387pt;}
.ya_c00276{bottom:928.251627pt;}
.y15_c00276{bottom:934.231307pt;}
.y1c_c00276{bottom:940.221627pt;}
.y9_c00276{bottom:940.253547pt;}
.y14_c00276{bottom:946.233227pt;}
.y1b_c00276{bottom:952.223547pt;}
.yc_c00276{bottom:952.244827pt;}
.y8_c00276{bottom:952.255467pt;}
.y13_c00276{bottom:958.235147pt;}
.yb_c00276{bottom:958.245787pt;}
.y4_c00276{bottom:958.267067pt;}
.y1a_c00276{bottom:964.225467pt;}
.yd_c00276{bottom:964.246747pt;}
.y7_c00276{bottom:964.257387pt;}
.y12_c00276{bottom:970.237067pt;}
.y19_c00276{bottom:976.227387pt;}
.y6_c00276{bottom:976.259307pt;}
.y11_c00276{bottom:982.238987pt;}
.y5_c00276{bottom:988.261227pt;}
.y10_c00276{bottom:994.240907pt;}
.yf_c00276{bottom:1006.242827pt;}
.ye_c00276{bottom:1018.244747pt;}
.y2_c00276{bottom:1046.987067pt;}
.y1_c00276{bottom:1063.867067pt;}
.h4_c00276{height:35.619062pt;}
.h5_c00276{height:35.993125pt;}
.h1_c00276{height:44.724687pt;}
.h2_c00276{height:50.062500pt;}
.h6_c00276{height:59.622903pt;}
.h3_c00276{height:64.142500pt;}
.h0_c00276{height:1122.666667pt;}
.w1_c00276{width:793.333333pt;}
.w0_c00276{width:793.626667pt;}
.x0_c00276{left:0.000000pt;}
.x9_c00276{left:68.480000pt;}
.x2_c00276{left:102.400000pt;}
.xb_c00276{left:104.880000pt;}
.x1_c00276{left:113.440000pt;}
.xa_c00276{left:132.564400pt;}
.x3_c00276{left:229.037280pt;}
.x4_c00276{left:320.083760pt;}
.x5_c00276{left:409.119280pt;}
.x6_c00276{left:505.198480pt;}
.x7_c00276{left:600.809520pt;}
.x8_c00276{left:708.571440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10d2a2d029cc4dfe68a7bb55.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00277;src:url('chunks/assets/font_405af35bc204662296231924.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00277;src:url('chunks/assets/font_a9a60c3f80cc551389f0bde3.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00277;src:url('chunks/assets/font_0512f64d497c806924f725c3.woff2')format("woff");}.ff5_c00277{font-family:ff5_c00277;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00277{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_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;}
.v1_c00277{vertical-align:27.004320px;}
.ls1b_c00277{letter-spacing:-0.151200px;}
.ls33_c00277{letter-spacing:-0.143640px;}
.ls1c_c00277{letter-spacing:-0.124488px;}
.ls2c_c00277{letter-spacing:-0.119700px;}
.ls1d_c00277{letter-spacing:-0.110124px;}
.ls2b_c00277{letter-spacing:-0.100548px;}
.ls23_c00277{letter-spacing:-0.086184px;}
.ls1e_c00277{letter-spacing:-0.076608px;}
.ls25_c00277{letter-spacing:-0.067032px;}
.ls1f_c00277{letter-spacing:-0.062244px;}
.ls2a_c00277{letter-spacing:-0.057456px;}
.ls26_c00277{letter-spacing:-0.052668px;}
.ls29_c00277{letter-spacing:-0.047880px;}
.ls21_c00277{letter-spacing:-0.043092px;}
.ls34_c00277{letter-spacing:-0.038304px;}
.ls24_c00277{letter-spacing:-0.033516px;}
.ls31_c00277{letter-spacing:-0.023940px;}
.ls2d_c00277{letter-spacing:-0.019152px;}
.ls22_c00277{letter-spacing:-0.014364px;}
.ls27_c00277{letter-spacing:-0.009576px;}
.ls32_c00277{letter-spacing:-0.004788px;}
.ls1a_c00277{letter-spacing:0.000000px;}
.ls4_c00277{letter-spacing:0.004788px;}
.ls17_c00277{letter-spacing:0.009576px;}
.ls8_c00277{letter-spacing:0.014364px;}
.ls1_c00277{letter-spacing:0.019152px;}
.ls9_c00277{letter-spacing:0.023940px;}
.ls15_c00277{letter-spacing:0.028728px;}
.ls3_c00277{letter-spacing:0.033516px;}
.ls0_c00277{letter-spacing:0.036072px;}
.lsc_c00277{letter-spacing:0.043092px;}
.lse_c00277{letter-spacing:0.047880px;}
.lsb_c00277{letter-spacing:0.052668px;}
.ls14_c00277{letter-spacing:0.057456px;}
.ls5_c00277{letter-spacing:0.062244px;}
.lsf_c00277{letter-spacing:0.067032px;}
.ls7_c00277{letter-spacing:0.095760px;}
.lsd_c00277{letter-spacing:0.100548px;}
.ls2f_c00277{letter-spacing:0.105336px;}
.ls11_c00277{letter-spacing:0.114912px;}
.ls13_c00277{letter-spacing:0.119700px;}
.ls6_c00277{letter-spacing:0.124488px;}
.lsa_c00277{letter-spacing:0.129276px;}
.ls19_c00277{letter-spacing:0.134064px;}
.ls12_c00277{letter-spacing:0.148428px;}
.ls20_c00277{letter-spacing:0.158004px;}
.ls18_c00277{letter-spacing:0.181944px;}
.ls10_c00277{letter-spacing:0.229824px;}
.ls2e_c00277{letter-spacing:0.325584px;}
.ls2_c00277{letter-spacing:388.689840px;}
.ls30_c00277{letter-spacing:397.710432px;}
.ls16_c00277{letter-spacing:418.231800px;}
.ls28_c00277{letter-spacing:472.949064px;}
.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;}
}
.ws1_c00277{word-spacing:-47.880000px;}
.ws2_c00277{word-spacing:-11.984364px;}
.ws0_c00277{word-spacing:-11.926908px;}
.ws26_c00277{word-spacing:-0.416556px;}
.ws28_c00277{word-spacing:-0.320796px;}
.ws3_c00277{word-spacing:-0.306612px;}
.ws33_c00277{word-spacing:-0.272916px;}
.ws2a_c00277{word-spacing:-0.239400px;}
.ws36_c00277{word-spacing:-0.225036px;}
.ws18_c00277{word-spacing:-0.220248px;}
.ws15_c00277{word-spacing:-0.215460px;}
.ws2b_c00277{word-spacing:-0.210672px;}
.ws29_c00277{word-spacing:-0.205884px;}
.ws1f_c00277{word-spacing:-0.191520px;}
.ws17_c00277{word-spacing:-0.186732px;}
.ws32_c00277{word-spacing:-0.158004px;}
.ws2c_c00277{word-spacing:-0.153216px;}
.ws2e_c00277{word-spacing:-0.148428px;}
.ws8_c00277{word-spacing:-0.143640px;}
.ws20_c00277{word-spacing:-0.138852px;}
.ws1e_c00277{word-spacing:-0.134064px;}
.ws9_c00277{word-spacing:-0.124488px;}
.wse_c00277{word-spacing:-0.119700px;}
.ws16_c00277{word-spacing:-0.114912px;}
.ws5_c00277{word-spacing:-0.110124px;}
.ws10_c00277{word-spacing:-0.105336px;}
.ws31_c00277{word-spacing:-0.100548px;}
.ws14_c00277{word-spacing:-0.095760px;}
.ws25_c00277{word-spacing:-0.090972px;}
.ws34_c00277{word-spacing:-0.086184px;}
.ws22_c00277{word-spacing:-0.081396px;}
.wsa_c00277{word-spacing:-0.076608px;}
.ws24_c00277{word-spacing:-0.071820px;}
.ws2d_c00277{word-spacing:-0.067032px;}
.wsc_c00277{word-spacing:-0.057456px;}
.ws35_c00277{word-spacing:-0.052668px;}
.ws1a_c00277{word-spacing:-0.043092px;}
.ws12_c00277{word-spacing:-0.038304px;}
.ws1b_c00277{word-spacing:-0.033516px;}
.ws7_c00277{word-spacing:-0.028728px;}
.ws6_c00277{word-spacing:-0.014364px;}
.wsb_c00277{word-spacing:-0.004788px;}
.ws4_c00277{word-spacing:0.000000px;}
.ws1d_c00277{word-spacing:0.009576px;}
.ws2f_c00277{word-spacing:0.138852px;}
.ws11_c00277{word-spacing:0.239400px;}
.ws27_c00277{word-spacing:0.244188px;}
.ws13_c00277{word-spacing:0.258552px;}
.wsd_c00277{word-spacing:0.263340px;}
.ws30_c00277{word-spacing:0.272916px;}
.wsf_c00277{word-spacing:0.335160px;}
.ws19_c00277{word-spacing:79.121700px;}
.ws1c_c00277{word-spacing:79.164792px;}
.ws21_c00277{word-spacing:127.643292px;}
.ws37_c00277{word-spacing:472.929912px;}
.ws23_c00277{word-spacing:473.068764px;}
._e_c00277{margin-left:-472.771908px;}
._d_c00277{margin-left:-127.791720px;}
._4_c00277{margin-left:-79.193520px;}
._0_c00277{margin-left:-1.022040px;}
._2_c00277{width:1.005480px;}
._5_c00277{width:70.680456px;}
._6_c00277{width:73.064880px;}
._1_c00277{width:79.231824px;}
._3_c00277{width:90.407016px;}
._f_c00277{width:127.849176px;}
._9_c00277{width:134.456616px;}
._10_c00277{width:146.740032px;}
._7_c00277{width:178.640280px;}
._b_c00277{width:304.689168px;}
._a_c00277{width:388.756872px;}
._8_c00277{width:397.911528px;}
._c_c00277{width:473.049612px;}
.fc1_c00277{color:transparent;}
.fc0_c00277{color:rgb(0,0,0);}
.fs3_c00277{font-size:47.880000px;}
.fs2_c00277{font-size:54.000000px;}
.fs0_c00277{font-size:60.120000px;}
.fs1_c00277{font-size:72.000000px;}
.y0_c00277{bottom:0.000000px;}
.y3_c00277{bottom:57.450450px;}
.y4_c00277{bottom:61.410450px;}
.y95_c00277{bottom:119.612190px;}
.y88_c00277{bottom:125.036670px;}
.y8d_c00277{bottom:126.387210px;}
.y94_c00277{bottom:133.114350px;}
.y90_c00277{bottom:133.126320px;}
.y8c_c00277{bottom:139.889370px;}
.y93_c00277{bottom:146.616510px;}
.y8f_c00277{bottom:146.628480px;}
.y89_c00277{bottom:146.640450px;}
.y8b_c00277{bottom:153.391530px;}
.y92_c00277{bottom:160.118670px;}
.y8e_c00277{bottom:160.130640px;}
.y8a_c00277{bottom:166.893690px;}
.y91_c00277{bottom:173.620830px;}
.y86_c00277{bottom:187.918020px;}
.y85_c00277{bottom:201.420180px;}
.y84_c00277{bottom:214.922340px;}
.y7b_c00277{bottom:214.934310px;}
.y76_c00277{bottom:214.946280px;}
.y83_c00277{bottom:228.424500px;}
.y7a_c00277{bottom:228.436470px;}
.y75_c00277{bottom:228.448440px;}
.y7d_c00277{bottom:235.187550px;}
.y82_c00277{bottom:241.926660px;}
.y79_c00277{bottom:241.938630px;}
.y72_c00277{bottom:241.950600px;}
.y7c_c00277{bottom:248.689710px;}
.y81_c00277{bottom:255.428820px;}
.y78_c00277{bottom:255.440790px;}
.y74_c00277{bottom:255.452760px;}
.y80_c00277{bottom:268.930980px;}
.y77_c00277{bottom:268.942950px;}
.y73_c00277{bottom:268.954920px;}
.y7f_c00277{bottom:282.433140px;}
.y7e_c00277{bottom:295.935300px;}
.y70_c00277{bottom:310.150920px;}
.y6f_c00277{bottom:323.653080px;}
.y87_c00277{bottom:334.200450px;}
.y6e_c00277{bottom:337.155240px;}
.y68_c00277{bottom:343.918290px;}
.y6d_c00277{bottom:350.657400px;}
.y66_c00277{bottom:350.669370px;}
.y65_c00277{bottom:357.420450px;}
.y6c_c00277{bottom:364.159560px;}
.y67_c00277{bottom:370.922610px;}
.y6b_c00277{bottom:377.661720px;}
.y6a_c00277{bottom:391.163880px;}
.y71_c00277{bottom:404.654070px;}
.y69_c00277{bottom:404.666040px;}
.y64_c00277{bottom:418.840500px;}
.y63_c00277{bottom:432.342660px;}
.y62_c00277{bottom:445.844820px;}
.y61_c00277{bottom:459.346980px;}
.y60_c00277{bottom:472.849140px;}
.y56_c00277{bottom:479.612190px;}
.y4c_c00277{bottom:479.636130px;}
.y5f_c00277{bottom:486.351300px;}
.y55_c00277{bottom:493.114350px;}
.y51_c00277{bottom:493.126320px;}
.y4b_c00277{bottom:493.138290px;}
.y5e_c00277{bottom:499.853460px;}
.y4e_c00277{bottom:499.877400px;}
.y54_c00277{bottom:506.616510px;}
.y50_c00277{bottom:506.628480px;}
.y48_c00277{bottom:506.640450px;}
.y5d_c00277{bottom:513.355620px;}
.y4d_c00277{bottom:513.379560px;}
.y53_c00277{bottom:520.118670px;}
.y4f_c00277{bottom:520.130640px;}
.y4a_c00277{bottom:520.142610px;}
.y5c_c00277{bottom:526.857780px;}
.y52_c00277{bottom:533.620830px;}
.y49_c00277{bottom:533.644770px;}
.y5b_c00277{bottom:540.359940px;}
.y5a_c00277{bottom:553.862100px;}
.y59_c00277{bottom:567.364260px;}
.y58_c00277{bottom:580.866420px;}
.y57_c00277{bottom:594.368580px;}
.y46_c00277{bottom:608.693970px;}
.y45_c00277{bottom:622.196130px;}
.y47_c00277{bottom:628.947210px;}
.y44_c00277{bottom:635.698290px;}
.y43_c00277{bottom:649.200450px;}
.y42_c00277{bottom:663.600450px;}
.y3e_c00277{bottom:665.757210px;}
.y40_c00277{bottom:672.508290px;}
.y3b_c00277{bottom:679.259370px;}
.y3a_c00277{bottom:686.010450px;}
.y3d_c00277{bottom:692.761530px;}
.y3f_c00277{bottom:699.512610px;}
.y3c_c00277{bottom:706.263690px;}
.y41_c00277{bottom:708.597840px;}
.y39_c00277{bottom:722.908290px;}
.y37_c00277{bottom:729.659370px;}
.y36_c00277{bottom:736.410450px;}
.y38_c00277{bottom:749.912610px;}
.y34_c00277{bottom:764.397210px;}
.y33_c00277{bottom:777.899370px;}
.y30_c00277{bottom:784.650450px;}
.y32_c00277{bottom:791.401530px;}
.y31_c00277{bottom:804.903690px;}
.y35_c00277{bottom:805.083240px;}
.y2e_c00277{bottom:819.297210px;}
.y2b_c00277{bottom:832.799370px;}
.y2a_c00277{bottom:839.550450px;}
.y2c_c00277{bottom:846.301530px;}
.y2f_c00277{bottom:850.980450px;}
.y2d_c00277{bottom:859.803690px;}
.y29_c00277{bottom:874.107210px;}
.y28_c00277{bottom:887.609370px;}
.y25_c00277{bottom:894.360450px;}
.y27_c00277{bottom:901.111530px;}
.y26_c00277{bottom:914.613690px;}
.y1e_c00277{bottom:928.814160px;}
.y23_c00277{bottom:942.304350px;}
.y1d_c00277{bottom:942.316320px;}
.y20_c00277{bottom:949.055430px;}
.y19_c00277{bottom:949.079370px;}
.y22_c00277{bottom:955.806510px;}
.y1c_c00277{bottom:955.818480px;}
.y18_c00277{bottom:955.830450px;}
.y1f_c00277{bottom:962.557590px;}
.y21_c00277{bottom:969.308670px;}
.y1b_c00277{bottom:969.320640px;}
.y24_c00277{bottom:982.798860px;}
.y1a_c00277{bottom:982.822800px;}
.y17_c00277{bottom:997.026600px;}
.y16_c00277{bottom:1010.528760px;}
.y15_c00277{bottom:1024.030920px;}
.y14_c00277{bottom:1037.533080px;}
.y13_c00277{bottom:1051.035240px;}
.y9_c00277{bottom:1051.047210px;}
.yb_c00277{bottom:1057.798290px;}
.y12_c00277{bottom:1064.537400px;}
.y6_c00277{bottom:1064.549370px;}
.y5_c00277{bottom:1071.300450px;}
.y11_c00277{bottom:1078.039560px;}
.y8_c00277{bottom:1078.051530px;}
.ya_c00277{bottom:1084.802610px;}
.y10_c00277{bottom:1091.541720px;}
.y7_c00277{bottom:1091.553690px;}
.yf_c00277{bottom:1105.043880px;}
.ye_c00277{bottom:1118.546040px;}
.yd_c00277{bottom:1132.048200px;}
.yc_c00277{bottom:1145.550360px;}
.y2_c00277{bottom:1173.810450px;}
.y1_c00277{bottom:1196.850450px;}
.h5_c00277{height:40.071445px;}
.h6_c00277{height:40.492266px;}
.h2_c00277{height:47.988281px;}
.h1_c00277{height:50.315273px;}
.h3_c00277{height:56.320312px;}
.h4_c00277{height:67.075765px;}
.h0_c00277{height:1263.000000px;}
.w1_c00277{width:892.500000px;}
.w0_c00277{width:892.830000px;}
.x0_c00277{left:0.000000px;}
.x12_c00277{left:70.110000px;}
.xf_c00277{left:77.040000px;}
.x13_c00277{left:83.971260px;}
.x11_c00277{left:108.630000px;}
.xe_c00277{left:113.760000px;}
.x5_c00277{left:115.200000px;}
.xc_c00277{left:117.990000px;}
.x10_c00277{left:120.780000px;}
.x2_c00277{left:127.620000px;}
.x6_c00277{left:149.134950px;}
.x7_c00277{left:257.678910px;}
.x8_c00277{left:360.106200px;}
.x4_c00277{left:435.240000px;}
.x3_c00277{left:446.490000px;}
.xd_c00277{left:460.272150px;}
.x1_c00277{left:490.770000px;}
.x9_c00277{left:568.372230px;}
.xa_c00277{left:675.934650px;}
.xb_c00277{left:797.166810px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.v1_c00277{vertical-align:24.003840pt;}
.ls1b_c00277{letter-spacing:-0.134400pt;}
.ls33_c00277{letter-spacing:-0.127680pt;}
.ls1c_c00277{letter-spacing:-0.110656pt;}
.ls2c_c00277{letter-spacing:-0.106400pt;}
.ls1d_c00277{letter-spacing:-0.097888pt;}
.ls2b_c00277{letter-spacing:-0.089376pt;}
.ls23_c00277{letter-spacing:-0.076608pt;}
.ls1e_c00277{letter-spacing:-0.068096pt;}
.ls25_c00277{letter-spacing:-0.059584pt;}
.ls1f_c00277{letter-spacing:-0.055328pt;}
.ls2a_c00277{letter-spacing:-0.051072pt;}
.ls26_c00277{letter-spacing:-0.046816pt;}
.ls29_c00277{letter-spacing:-0.042560pt;}
.ls21_c00277{letter-spacing:-0.038304pt;}
.ls34_c00277{letter-spacing:-0.034048pt;}
.ls24_c00277{letter-spacing:-0.029792pt;}
.ls31_c00277{letter-spacing:-0.021280pt;}
.ls2d_c00277{letter-spacing:-0.017024pt;}
.ls22_c00277{letter-spacing:-0.012768pt;}
.ls27_c00277{letter-spacing:-0.008512pt;}
.ls32_c00277{letter-spacing:-0.004256pt;}
.ls1a_c00277{letter-spacing:0.000000pt;}
.ls4_c00277{letter-spacing:0.004256pt;}
.ls17_c00277{letter-spacing:0.008512pt;}
.ls8_c00277{letter-spacing:0.012768pt;}
.ls1_c00277{letter-spacing:0.017024pt;}
.ls9_c00277{letter-spacing:0.021280pt;}
.ls15_c00277{letter-spacing:0.025536pt;}
.ls3_c00277{letter-spacing:0.029792pt;}
.ls0_c00277{letter-spacing:0.032064pt;}
.lsc_c00277{letter-spacing:0.038304pt;}
.lse_c00277{letter-spacing:0.042560pt;}
.lsb_c00277{letter-spacing:0.046816pt;}
.ls14_c00277{letter-spacing:0.051072pt;}
.ls5_c00277{letter-spacing:0.055328pt;}
.lsf_c00277{letter-spacing:0.059584pt;}
.ls7_c00277{letter-spacing:0.085120pt;}
.lsd_c00277{letter-spacing:0.089376pt;}
.ls2f_c00277{letter-spacing:0.093632pt;}
.ls11_c00277{letter-spacing:0.102144pt;}
.ls13_c00277{letter-spacing:0.106400pt;}
.ls6_c00277{letter-spacing:0.110656pt;}
.lsa_c00277{letter-spacing:0.114912pt;}
.ls19_c00277{letter-spacing:0.119168pt;}
.ls12_c00277{letter-spacing:0.131936pt;}
.ls20_c00277{letter-spacing:0.140448pt;}
.ls18_c00277{letter-spacing:0.161728pt;}
.ls10_c00277{letter-spacing:0.204288pt;}
.ls2e_c00277{letter-spacing:0.289408pt;}
.ls2_c00277{letter-spacing:345.502080pt;}
.ls30_c00277{letter-spacing:353.520384pt;}
.ls16_c00277{letter-spacing:371.761600pt;}
.ls28_c00277{letter-spacing:420.399168pt;}
.ws1_c00277{word-spacing:-42.560000pt;}
.ws2_c00277{word-spacing:-10.652768pt;}
.ws0_c00277{word-spacing:-10.601696pt;}
.ws26_c00277{word-spacing:-0.370272pt;}
.ws28_c00277{word-spacing:-0.285152pt;}
.ws3_c00277{word-spacing:-0.272544pt;}
.ws33_c00277{word-spacing:-0.242592pt;}
.ws2a_c00277{word-spacing:-0.212800pt;}
.ws36_c00277{word-spacing:-0.200032pt;}
.ws18_c00277{word-spacing:-0.195776pt;}
.ws15_c00277{word-spacing:-0.191520pt;}
.ws2b_c00277{word-spacing:-0.187264pt;}
.ws29_c00277{word-spacing:-0.183008pt;}
.ws1f_c00277{word-spacing:-0.170240pt;}
.ws17_c00277{word-spacing:-0.165984pt;}
.ws32_c00277{word-spacing:-0.140448pt;}
.ws2c_c00277{word-spacing:-0.136192pt;}
.ws2e_c00277{word-spacing:-0.131936pt;}
.ws8_c00277{word-spacing:-0.127680pt;}
.ws20_c00277{word-spacing:-0.123424pt;}
.ws1e_c00277{word-spacing:-0.119168pt;}
.ws9_c00277{word-spacing:-0.110656pt;}
.wse_c00277{word-spacing:-0.106400pt;}
.ws16_c00277{word-spacing:-0.102144pt;}
.ws5_c00277{word-spacing:-0.097888pt;}
.ws10_c00277{word-spacing:-0.093632pt;}
.ws31_c00277{word-spacing:-0.089376pt;}
.ws14_c00277{word-spacing:-0.085120pt;}
.ws25_c00277{word-spacing:-0.080864pt;}
.ws34_c00277{word-spacing:-0.076608pt;}
.ws22_c00277{word-spacing:-0.072352pt;}
.wsa_c00277{word-spacing:-0.068096pt;}
.ws24_c00277{word-spacing:-0.063840pt;}
.ws2d_c00277{word-spacing:-0.059584pt;}
.wsc_c00277{word-spacing:-0.051072pt;}
.ws35_c00277{word-spacing:-0.046816pt;}
.ws1a_c00277{word-spacing:-0.038304pt;}
.ws12_c00277{word-spacing:-0.034048pt;}
.ws1b_c00277{word-spacing:-0.029792pt;}
.ws7_c00277{word-spacing:-0.025536pt;}
.ws6_c00277{word-spacing:-0.012768pt;}
.wsb_c00277{word-spacing:-0.004256pt;}
.ws4_c00277{word-spacing:0.000000pt;}
.ws1d_c00277{word-spacing:0.008512pt;}
.ws2f_c00277{word-spacing:0.123424pt;}
.ws11_c00277{word-spacing:0.212800pt;}
.ws27_c00277{word-spacing:0.217056pt;}
.ws13_c00277{word-spacing:0.229824pt;}
.wsd_c00277{word-spacing:0.234080pt;}
.ws30_c00277{word-spacing:0.242592pt;}
.wsf_c00277{word-spacing:0.297920pt;}
.ws19_c00277{word-spacing:70.330400pt;}
.ws1c_c00277{word-spacing:70.368704pt;}
.ws21_c00277{word-spacing:113.460704pt;}
.ws37_c00277{word-spacing:420.382144pt;}
.ws23_c00277{word-spacing:420.505568pt;}
._e_c00277{margin-left:-420.241696pt;}
._d_c00277{margin-left:-113.592640pt;}
._4_c00277{margin-left:-70.394240pt;}
._0_c00277{margin-left:-0.908480pt;}
._2_c00277{width:0.893760pt;}
._5_c00277{width:62.827072pt;}
._6_c00277{width:64.946560pt;}
._1_c00277{width:70.428288pt;}
._3_c00277{width:80.361792pt;}
._f_c00277{width:113.643712pt;}
._9_c00277{width:119.516992pt;}
._10_c00277{width:130.435584pt;}
._7_c00277{width:158.791360pt;}
._b_c00277{width:270.834816pt;}
._a_c00277{width:345.561664pt;}
._8_c00277{width:353.699136pt;}
._c_c00277{width:420.488544pt;}
.fs3_c00277{font-size:42.560000pt;}
.fs2_c00277{font-size:48.000000pt;}
.fs0_c00277{font-size:53.440000pt;}
.fs1_c00277{font-size:64.000000pt;}
.y0_c00277{bottom:0.000000pt;}
.y3_c00277{bottom:51.067067pt;}
.y4_c00277{bottom:54.587067pt;}
.y95_c00277{bottom:106.321947pt;}
.y88_c00277{bottom:111.143707pt;}
.y8d_c00277{bottom:112.344187pt;}
.y94_c00277{bottom:118.323867pt;}
.y90_c00277{bottom:118.334507pt;}
.y8c_c00277{bottom:124.346107pt;}
.y93_c00277{bottom:130.325787pt;}
.y8f_c00277{bottom:130.336427pt;}
.y89_c00277{bottom:130.347067pt;}
.y8b_c00277{bottom:136.348027pt;}
.y92_c00277{bottom:142.327707pt;}
.y8e_c00277{bottom:142.338347pt;}
.y8a_c00277{bottom:148.349947pt;}
.y91_c00277{bottom:154.329627pt;}
.y86_c00277{bottom:167.038240pt;}
.y85_c00277{bottom:179.040160pt;}
.y84_c00277{bottom:191.042080pt;}
.y7b_c00277{bottom:191.052720pt;}
.y76_c00277{bottom:191.063360pt;}
.y83_c00277{bottom:203.044000pt;}
.y7a_c00277{bottom:203.054640pt;}
.y75_c00277{bottom:203.065280pt;}
.y7d_c00277{bottom:209.055600pt;}
.y82_c00277{bottom:215.045920pt;}
.y79_c00277{bottom:215.056560pt;}
.y72_c00277{bottom:215.067200pt;}
.y7c_c00277{bottom:221.057520pt;}
.y81_c00277{bottom:227.047840pt;}
.y78_c00277{bottom:227.058480pt;}
.y74_c00277{bottom:227.069120pt;}
.y80_c00277{bottom:239.049760pt;}
.y77_c00277{bottom:239.060400pt;}
.y73_c00277{bottom:239.071040pt;}
.y7f_c00277{bottom:251.051680pt;}
.y7e_c00277{bottom:263.053600pt;}
.y70_c00277{bottom:275.689707pt;}
.y6f_c00277{bottom:287.691627pt;}
.y87_c00277{bottom:297.067067pt;}
.y6e_c00277{bottom:299.693547pt;}
.y68_c00277{bottom:305.705147pt;}
.y6d_c00277{bottom:311.695467pt;}
.y66_c00277{bottom:311.706107pt;}
.y65_c00277{bottom:317.707067pt;}
.y6c_c00277{bottom:323.697387pt;}
.y67_c00277{bottom:329.708987pt;}
.y6b_c00277{bottom:335.699307pt;}
.y6a_c00277{bottom:347.701227pt;}
.y71_c00277{bottom:359.692507pt;}
.y69_c00277{bottom:359.703147pt;}
.y64_c00277{bottom:372.302667pt;}
.y63_c00277{bottom:384.304587pt;}
.y62_c00277{bottom:396.306507pt;}
.y61_c00277{bottom:408.308427pt;}
.y60_c00277{bottom:420.310347pt;}
.y56_c00277{bottom:426.321947pt;}
.y4c_c00277{bottom:426.343227pt;}
.y5f_c00277{bottom:432.312267pt;}
.y55_c00277{bottom:438.323867pt;}
.y51_c00277{bottom:438.334507pt;}
.y4b_c00277{bottom:438.345147pt;}
.y5e_c00277{bottom:444.314187pt;}
.y4e_c00277{bottom:444.335467pt;}
.y54_c00277{bottom:450.325787pt;}
.y50_c00277{bottom:450.336427pt;}
.y48_c00277{bottom:450.347067pt;}
.y5d_c00277{bottom:456.316107pt;}
.y4d_c00277{bottom:456.337387pt;}
.y53_c00277{bottom:462.327707pt;}
.y4f_c00277{bottom:462.338347pt;}
.y4a_c00277{bottom:462.348987pt;}
.y5c_c00277{bottom:468.318027pt;}
.y52_c00277{bottom:474.329627pt;}
.y49_c00277{bottom:474.350907pt;}
.y5b_c00277{bottom:480.319947pt;}
.y5a_c00277{bottom:492.321867pt;}
.y59_c00277{bottom:504.323787pt;}
.y58_c00277{bottom:516.325707pt;}
.y57_c00277{bottom:528.327627pt;}
.y46_c00277{bottom:541.061307pt;}
.y45_c00277{bottom:553.063227pt;}
.y47_c00277{bottom:559.064187pt;}
.y44_c00277{bottom:565.065147pt;}
.y43_c00277{bottom:577.067067pt;}
.y42_c00277{bottom:589.867067pt;}
.y3e_c00277{bottom:591.784187pt;}
.y40_c00277{bottom:597.785147pt;}
.y3b_c00277{bottom:603.786107pt;}
.y3a_c00277{bottom:609.787067pt;}
.y3d_c00277{bottom:615.788027pt;}
.y3f_c00277{bottom:621.788987pt;}
.y3c_c00277{bottom:627.789947pt;}
.y41_c00277{bottom:629.864747pt;}
.y39_c00277{bottom:642.585147pt;}
.y37_c00277{bottom:648.586107pt;}
.y36_c00277{bottom:654.587067pt;}
.y38_c00277{bottom:666.588987pt;}
.y34_c00277{bottom:679.464187pt;}
.y33_c00277{bottom:691.466107pt;}
.y30_c00277{bottom:697.467067pt;}
.y32_c00277{bottom:703.468027pt;}
.y31_c00277{bottom:715.469947pt;}
.y35_c00277{bottom:715.629547pt;}
.y2e_c00277{bottom:728.264187pt;}
.y2b_c00277{bottom:740.266107pt;}
.y2a_c00277{bottom:746.267067pt;}
.y2c_c00277{bottom:752.268027pt;}
.y2f_c00277{bottom:756.427067pt;}
.y2d_c00277{bottom:764.269947pt;}
.y29_c00277{bottom:776.984187pt;}
.y28_c00277{bottom:788.986107pt;}
.y25_c00277{bottom:794.987067pt;}
.y27_c00277{bottom:800.988027pt;}
.y26_c00277{bottom:812.989947pt;}
.y1e_c00277{bottom:825.612587pt;}
.y23_c00277{bottom:837.603867pt;}
.y1d_c00277{bottom:837.614507pt;}
.y20_c00277{bottom:843.604827pt;}
.y19_c00277{bottom:843.626107pt;}
.y22_c00277{bottom:849.605787pt;}
.y1c_c00277{bottom:849.616427pt;}
.y18_c00277{bottom:849.627067pt;}
.y1f_c00277{bottom:855.606747pt;}
.y21_c00277{bottom:861.607707pt;}
.y1b_c00277{bottom:861.618347pt;}
.y24_c00277{bottom:873.598987pt;}
.y1a_c00277{bottom:873.620267pt;}
.y17_c00277{bottom:886.245867pt;}
.y16_c00277{bottom:898.247787pt;}
.y15_c00277{bottom:910.249707pt;}
.y14_c00277{bottom:922.251627pt;}
.y13_c00277{bottom:934.253547pt;}
.y9_c00277{bottom:934.264187pt;}
.yb_c00277{bottom:940.265147pt;}
.y12_c00277{bottom:946.255467pt;}
.y6_c00277{bottom:946.266107pt;}
.y5_c00277{bottom:952.267067pt;}
.y11_c00277{bottom:958.257387pt;}
.y8_c00277{bottom:958.268027pt;}
.ya_c00277{bottom:964.268987pt;}
.y10_c00277{bottom:970.259307pt;}
.y7_c00277{bottom:970.269947pt;}
.yf_c00277{bottom:982.261227pt;}
.ye_c00277{bottom:994.263147pt;}
.yd_c00277{bottom:1006.265067pt;}
.yc_c00277{bottom:1018.266987pt;}
.y2_c00277{bottom:1043.387067pt;}
.y1_c00277{bottom:1063.867067pt;}
.h5_c00277{height:35.619062pt;}
.h6_c00277{height:35.993125pt;}
.h2_c00277{height:42.656250pt;}
.h1_c00277{height:44.724687pt;}
.h3_c00277{height:50.062500pt;}
.h4_c00277{height:59.622903pt;}
.h0_c00277{height:1122.666667pt;}
.w1_c00277{width:793.333333pt;}
.w0_c00277{width:793.626667pt;}
.x0_c00277{left:0.000000pt;}
.x12_c00277{left:62.320000pt;}
.xf_c00277{left:68.480000pt;}
.x13_c00277{left:74.641120pt;}
.x11_c00277{left:96.560000pt;}
.xe_c00277{left:101.120000pt;}
.x5_c00277{left:102.400000pt;}
.xc_c00277{left:104.880000pt;}
.x10_c00277{left:107.360000pt;}
.x2_c00277{left:113.440000pt;}
.x6_c00277{left:132.564400pt;}
.x7_c00277{left:229.047920pt;}
.x8_c00277{left:320.094400pt;}
.x4_c00277{left:386.880000pt;}
.x3_c00277{left:396.880000pt;}
.xd_c00277{left:409.130800pt;}
.x1_c00277{left:436.240000pt;}
.x9_c00277{left:505.219760pt;}
.xa_c00277{left:600.830800pt;}
.xb_c00277{left:708.592720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da1f5d07a5bdf920073dde8a.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.100098;font-style:normal;font-weight:normal;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_ccbf9176dcfcb6698a42b232.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;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_c00278;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00278;src:url('chunks/assets/font_890403c76fe10347968bb645.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:1.102051;font-style:normal;font-weight:normal;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_0512f64d497c806924f725c3.woff2')format("woff");}.ff5_c00278{font-family:ff5_c00278;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00278;src:url('chunks/assets/font_ccc5c5324fe435565b356e28.woff2')format("woff");}.ff6_c00278{font-family:ff6_c00278;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;}
.m1_c00278{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_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;}
.v1_c00278{vertical-align:15.840000px;}
.v2_c00278{vertical-align:27.004320px;}
.v3_c00278{vertical-align:54.008640px;}
.ls1e_c00278{letter-spacing:-0.151200px;}
.ls36_c00278{letter-spacing:-0.143640px;}
.ls1f_c00278{letter-spacing:-0.124488px;}
.ls2b_c00278{letter-spacing:-0.119700px;}
.ls34_c00278{letter-spacing:-0.095760px;}
.ls33_c00278{letter-spacing:-0.086184px;}
.ls21_c00278{letter-spacing:-0.076608px;}
.ls28_c00278{letter-spacing:-0.067032px;}
.ls22_c00278{letter-spacing:-0.062244px;}
.ls26_c00278{letter-spacing:-0.057456px;}
.ls31_c00278{letter-spacing:-0.052668px;}
.ls29_c00278{letter-spacing:-0.047880px;}
.ls20_c00278{letter-spacing:-0.043092px;}
.ls2a_c00278{letter-spacing:-0.038304px;}
.ls2c_c00278{letter-spacing:-0.033516px;}
.ls3b_c00278{letter-spacing:-0.030060px;}
.ls35_c00278{letter-spacing:-0.028728px;}
.ls30_c00278{letter-spacing:-0.019152px;}
.ls25_c00278{letter-spacing:-0.014364px;}
.ls24_c00278{letter-spacing:-0.009576px;}
.ls27_c00278{letter-spacing:-0.004788px;}
.ls3c_c00278{letter-spacing:-0.003888px;}
.ls1d_c00278{letter-spacing:0.000000px;}
.ls5_c00278{letter-spacing:0.004788px;}
.lsc_c00278{letter-spacing:0.009576px;}
.ls9_c00278{letter-spacing:0.014364px;}
.ls6_c00278{letter-spacing:0.019152px;}
.lsa_c00278{letter-spacing:0.023940px;}
.ls14_c00278{letter-spacing:0.028728px;}
.ls3_c00278{letter-spacing:0.033516px;}
.ls18_c00278{letter-spacing:0.036072px;}
.lsd_c00278{letter-spacing:0.038304px;}
.lsf_c00278{letter-spacing:0.043092px;}
.ls1a_c00278{letter-spacing:0.047880px;}
.ls0_c00278{letter-spacing:0.048096px;}
.ls4_c00278{letter-spacing:0.052668px;}
.ls2f_c00278{letter-spacing:0.057456px;}
.ls32_c00278{letter-spacing:0.062244px;}
.ls13_c00278{letter-spacing:0.071820px;}
.ls2d_c00278{letter-spacing:0.076608px;}
.ls37_c00278{letter-spacing:0.081396px;}
.ls15_c00278{letter-spacing:0.090972px;}
.ls7_c00278{letter-spacing:0.095760px;}
.ls1c_c00278{letter-spacing:0.104040px;}
.ls8_c00278{letter-spacing:0.105336px;}
.lse_c00278{letter-spacing:0.114912px;}
.ls10_c00278{letter-spacing:0.124488px;}
.lsb_c00278{letter-spacing:0.129276px;}
.ls19_c00278{letter-spacing:0.136080px;}
.ls12_c00278{letter-spacing:0.138852px;}
.ls23_c00278{letter-spacing:0.158004px;}
.ls11_c00278{letter-spacing:0.162792px;}
.ls16_c00278{letter-spacing:0.196308px;}
.ls38_c00278{letter-spacing:0.296856px;}
.ls1b_c00278{letter-spacing:0.383040px;}
.ls17_c00278{letter-spacing:198.989280px;}
.ls2_c00278{letter-spacing:388.689840px;}
.ls2e_c00278{letter-spacing:388.708992px;}
.ls39_c00278{letter-spacing:397.710432px;}
.ls3a_c00278{letter-spacing:472.949064px;}
.ls1_c00278{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00278{word-spacing:-47.880000px;}
.ws7_c00278{word-spacing:-13.329792px;}
.ws9_c00278{word-spacing:-13.325004px;}
.ws5_c00278{word-spacing:-11.998728px;}
.ws2_c00278{word-spacing:-11.984364px;}
.ws4_c00278{word-spacing:-11.960424px;}
.ws0_c00278{word-spacing:-11.926908px;}
.ws3_c00278{word-spacing:-11.922120px;}
.ws8_c00278{word-spacing:-10.804752px;}
.ws6_c00278{word-spacing:-9.856080px;}
.ws3b_c00278{word-spacing:-0.387828px;}
.ws40_c00278{word-spacing:-0.287280px;}
.ws31_c00278{word-spacing:-0.253764px;}
.ws43_c00278{word-spacing:-0.240480px;}
.ws35_c00278{word-spacing:-0.229824px;}
.ws1d_c00278{word-spacing:-0.220248px;}
.ws30_c00278{word-spacing:-0.215460px;}
.ws24_c00278{word-spacing:-0.205884px;}
.ws1c_c00278{word-spacing:-0.196308px;}
.ws1b_c00278{word-spacing:-0.186732px;}
.ws3c_c00278{word-spacing:-0.181944px;}
.ws3a_c00278{word-spacing:-0.172368px;}
.ws27_c00278{word-spacing:-0.167580px;}
.ws36_c00278{word-spacing:-0.162792px;}
.ws2d_c00278{word-spacing:-0.153216px;}
.ws2a_c00278{word-spacing:-0.148428px;}
.ws10_c00278{word-spacing:-0.143640px;}
.ws28_c00278{word-spacing:-0.138852px;}
.ws2f_c00278{word-spacing:-0.134064px;}
.ws23_c00278{word-spacing:-0.129276px;}
.ws11_c00278{word-spacing:-0.124488px;}
.ws26_c00278{word-spacing:-0.119700px;}
.wsd_c00278{word-spacing:-0.114912px;}
.ws18_c00278{word-spacing:-0.110124px;}
.ws20_c00278{word-spacing:-0.105336px;}
.ws17_c00278{word-spacing:-0.095760px;}
.ws19_c00278{word-spacing:-0.090972px;}
.ws15_c00278{word-spacing:-0.086184px;}
.ws12_c00278{word-spacing:-0.081396px;}
.ws13_c00278{word-spacing:-0.076608px;}
.ws2b_c00278{word-spacing:-0.071820px;}
.ws21_c00278{word-spacing:-0.057456px;}
.ws1e_c00278{word-spacing:-0.052668px;}
.wsc_c00278{word-spacing:-0.047880px;}
.ws25_c00278{word-spacing:-0.043092px;}
.ws2c_c00278{word-spacing:-0.038304px;}
.wsf_c00278{word-spacing:-0.028728px;}
.ws16_c00278{word-spacing:-0.023940px;}
.wse_c00278{word-spacing:-0.014364px;}
.ws3e_c00278{word-spacing:-0.004788px;}
.wsb_c00278{word-spacing:0.000000px;}
.ws33_c00278{word-spacing:0.004788px;}
.ws1f_c00278{word-spacing:0.028728px;}
.ws29_c00278{word-spacing:0.033516px;}
.wsa_c00278{word-spacing:0.042084px;}
.ws42_c00278{word-spacing:0.054108px;}
.ws39_c00278{word-spacing:0.220248px;}
.ws22_c00278{word-spacing:0.258552px;}
.ws3d_c00278{word-spacing:0.268128px;}
.ws34_c00278{word-spacing:0.272916px;}
.ws37_c00278{word-spacing:0.277704px;}
.ws38_c00278{word-spacing:0.296856px;}
.ws14_c00278{word-spacing:0.325584px;}
.ws45_c00278{word-spacing:0.330372px;}
.ws47_c00278{word-spacing:0.335160px;}
.ws32_c00278{word-spacing:0.354312px;}
.ws44_c00278{word-spacing:0.363888px;}
.ws46_c00278{word-spacing:0.368676px;}
.ws48_c00278{word-spacing:0.383040px;}
.ws2e_c00278{word-spacing:79.073820px;}
.ws3f_c00278{word-spacing:79.102548px;}
.ws1a_c00278{word-spacing:79.160004px;}
.ws41_c00278{word-spacing:79.174368px;}
._3_c00278{margin-left:-79.193520px;}
._0_c00278{margin-left:-1.322640px;}
._2_c00278{width:1.053360px;}
._b_c00278{width:29.877120px;}
._5_c00278{width:31.658256px;}
._6_c00278{width:70.680456px;}
._1_c00278{width:79.231824px;}
._7_c00278{width:114.816240px;}
._4_c00278{width:127.849176px;}
._a_c00278{width:161.915796px;}
._9_c00278{width:210.336840px;}
._8_c00278{width:318.612672px;}
.fc0_c00278{color:rgb(0,0,0);}
.fs4_c00278{font-size:38.880000px;}
.fs3_c00278{font-size:47.880000px;}
.fs1_c00278{font-size:54.000000px;}
.fs0_c00278{font-size:60.120000px;}
.fs2_c00278{font-size:72.000000px;}
.y0_c00278{bottom:0.000000px;}
.y3_c00278{bottom:57.450450px;}
.y84_c00278{bottom:113.615400px;}
.y83_c00278{bottom:127.557210px;}
.y82_c00278{bottom:141.330450px;}
.y81_c00278{bottom:156.540450px;}
.y80_c00278{bottom:177.240450px;}
.y7f_c00278{bottom:197.940450px;}
.y7e_c00278{bottom:247.620450px;}
.y7d_c00278{bottom:285.150450px;}
.y7c_c00278{bottom:310.889370px;}
.y7b_c00278{bottom:317.640450px;}
.y79_c00278{bottom:338.685240px;}
.y75_c00278{bottom:345.448290px;}
.y78_c00278{bottom:352.187400px;}
.y73_c00278{bottom:352.199370px;}
.y72_c00278{bottom:358.950450px;}
.y77_c00278{bottom:365.689560px;}
.y74_c00278{bottom:372.452610px;}
.y76_c00278{bottom:379.191720px;}
.y71_c00278{bottom:393.405240px;}
.y6d_c00278{bottom:400.168290px;}
.y70_c00278{bottom:406.907400px;}
.y6b_c00278{bottom:413.670450px;}
.y6f_c00278{bottom:420.409560px;}
.y6c_c00278{bottom:427.172610px;}
.y6e_c00278{bottom:433.911720px;}
.y65_c00278{bottom:460.364160px;}
.y69_c00278{bottom:467.103270px;}
.y64_c00278{bottom:473.866320px;}
.y68_c00278{bottom:480.605430px;}
.y60_c00278{bottom:480.629370px;}
.y63_c00278{bottom:487.368480px;}
.y5f_c00278{bottom:487.380450px;}
.y67_c00278{bottom:494.107590px;}
.y62_c00278{bottom:500.870640px;}
.y66_c00278{bottom:507.609750px;}
.y61_c00278{bottom:514.372800px;}
.y6a_c00278{bottom:526.510380px;}
.y5e_c00278{bottom:540.698340px;}
.y5d_c00278{bottom:554.200500px;}
.y5c_c00278{bottom:567.702660px;}
.y5b_c00278{bottom:581.204820px;}
.y4e_c00278{bottom:581.228760px;}
.y5a_c00278{bottom:594.706980px;}
.y4d_c00278{bottom:594.730920px;}
.y59_c00278{bottom:608.209140px;}
.y4c_c00278{bottom:608.233080px;}
.y44_c00278{bottom:614.996130px;}
.y58_c00278{bottom:621.711300px;}
.y4b_c00278{bottom:621.735240px;}
.y43_c00278{bottom:628.498290px;}
.y57_c00278{bottom:635.213460px;}
.y4a_c00278{bottom:635.237400px;}
.y40_c00278{bottom:642.000450px;}
.y56_c00278{bottom:648.715620px;}
.y49_c00278{bottom:648.739560px;}
.y7a_c00278{bottom:649.110450px;}
.y42_c00278{bottom:655.502610px;}
.y55_c00278{bottom:662.217780px;}
.y48_c00278{bottom:662.241720px;}
.y41_c00278{bottom:669.004770px;}
.y54_c00278{bottom:675.719940px;}
.y47_c00278{bottom:675.743880px;}
.y53_c00278{bottom:689.222100px;}
.y46_c00278{bottom:689.246040px;}
.y52_c00278{bottom:702.724260px;}
.y45_c00278{bottom:702.748200px;}
.y51_c00278{bottom:716.226420px;}
.y50_c00278{bottom:729.728580px;}
.y4f_c00278{bottom:743.230740px;}
.y3f_c00278{bottom:757.557210px;}
.y3e_c00278{bottom:771.059370px;}
.y3b_c00278{bottom:777.810450px;}
.y3d_c00278{bottom:784.561530px;}
.y3c_c00278{bottom:798.063690px;}
.y3a_c00278{bottom:812.263080px;}
.y39_c00278{bottom:825.765240px;}
.y34_c00278{bottom:825.777210px;}
.y38_c00278{bottom:839.267400px;}
.y31_c00278{bottom:839.279370px;}
.y30_c00278{bottom:846.030450px;}
.y37_c00278{bottom:852.769560px;}
.y33_c00278{bottom:852.781530px;}
.y36_c00278{bottom:866.271720px;}
.y32_c00278{bottom:866.283690px;}
.y35_c00278{bottom:879.773880px;}
.y2f_c00278{bottom:893.929800px;}
.y24_c00278{bottom:893.953740px;}
.y2e_c00278{bottom:907.431960px;}
.y23_c00278{bottom:907.455900px;}
.y2d_c00278{bottom:920.934120px;}
.y22_c00278{bottom:920.958060px;}
.y2c_c00278{bottom:934.436280px;}
.y21_c00278{bottom:934.460220px;}
.y14_c00278{bottom:934.484160px;}
.y2b_c00278{bottom:947.938440px;}
.y20_c00278{bottom:947.962380px;}
.y19_c00278{bottom:947.974350px;}
.y13_c00278{bottom:947.986320px;}
.y16_c00278{bottom:954.725430px;}
.yf_c00278{bottom:954.749370px;}
.y2a_c00278{bottom:961.440600px;}
.y1f_c00278{bottom:961.464540px;}
.y18_c00278{bottom:961.476510px;}
.y12_c00278{bottom:961.488480px;}
.ye_c00278{bottom:961.500450px;}
.y15_c00278{bottom:968.227590px;}
.y29_c00278{bottom:974.942760px;}
.y1e_c00278{bottom:974.966700px;}
.y17_c00278{bottom:974.978670px;}
.y11_c00278{bottom:974.990640px;}
.y28_c00278{bottom:988.444920px;}
.y1d_c00278{bottom:988.468860px;}
.y10_c00278{bottom:988.492800px;}
.y27_c00278{bottom:1001.947080px;}
.y1c_c00278{bottom:1001.971020px;}
.y26_c00278{bottom:1015.449240px;}
.y1b_c00278{bottom:1015.473180px;}
.y25_c00278{bottom:1028.951400px;}
.y1a_c00278{bottom:1028.975340px;}
.yd_c00278{bottom:1043.307210px;}
.yc_c00278{bottom:1056.809370px;}
.y9_c00278{bottom:1063.560450px;}
.yb_c00278{bottom:1070.311530px;}
.ya_c00278{bottom:1083.813690px;}
.y8_c00278{bottom:1101.537360px;}
.y5_c00278{bottom:1115.039520px;}
.y4_c00278{bottom:1121.790600px;}
.y7_c00278{bottom:1128.541680px;}
.y6_c00278{bottom:1142.043840px;}
.y2_c00278{bottom:1177.860450px;}
.y1_c00278{bottom:1196.850450px;}
.h5_c00278{height:40.071445px;}
.h6_c00278{height:40.492266px;}
.h9_c00278{height:47.988281px;}
.ha_c00278{height:49.937344px;}
.hb_c00278{height:49.950304px;}
.h1_c00278{height:50.315273px;}
.h2_c00278{height:56.320312px;}
.h8_c00278{height:60.257812px;}
.h4_c00278{height:67.075765px;}
.h3_c00278{height:72.160312px;}
.h7_c00278{height:94.080085px;}
.h0_c00278{height:1263.000000px;}
.w1_c00278{width:892.500000px;}
.w0_c00278{width:892.830000px;}
.x0_c00278{left:0.000000px;}
.xb_c00278{left:77.040000px;}
.x9_c00278{left:108.630000px;}
.x2_c00278{left:115.200000px;}
.x1_c00278{left:127.620000px;}
.x3_c00278{left:149.134950px;}
.xd_c00278{left:154.436040px;}
.xc_c00278{left:255.330000px;}
.x4_c00278{left:257.678910px;}
.x5_c00278{left:360.106200px;}
.xa_c00278{left:460.260720px;}
.x6_c00278{left:568.372230px;}
.x7_c00278{left:675.934650px;}
.x8_c00278{left:797.166810px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.v1_c00278{vertical-align:14.080000pt;}
.v2_c00278{vertical-align:24.003840pt;}
.v3_c00278{vertical-align:48.007680pt;}
.ls1e_c00278{letter-spacing:-0.134400pt;}
.ls36_c00278{letter-spacing:-0.127680pt;}
.ls1f_c00278{letter-spacing:-0.110656pt;}
.ls2b_c00278{letter-spacing:-0.106400pt;}
.ls34_c00278{letter-spacing:-0.085120pt;}
.ls33_c00278{letter-spacing:-0.076608pt;}
.ls21_c00278{letter-spacing:-0.068096pt;}
.ls28_c00278{letter-spacing:-0.059584pt;}
.ls22_c00278{letter-spacing:-0.055328pt;}
.ls26_c00278{letter-spacing:-0.051072pt;}
.ls31_c00278{letter-spacing:-0.046816pt;}
.ls29_c00278{letter-spacing:-0.042560pt;}
.ls20_c00278{letter-spacing:-0.038304pt;}
.ls2a_c00278{letter-spacing:-0.034048pt;}
.ls2c_c00278{letter-spacing:-0.029792pt;}
.ls3b_c00278{letter-spacing:-0.026720pt;}
.ls35_c00278{letter-spacing:-0.025536pt;}
.ls30_c00278{letter-spacing:-0.017024pt;}
.ls25_c00278{letter-spacing:-0.012768pt;}
.ls24_c00278{letter-spacing:-0.008512pt;}
.ls27_c00278{letter-spacing:-0.004256pt;}
.ls3c_c00278{letter-spacing:-0.003456pt;}
.ls1d_c00278{letter-spacing:0.000000pt;}
.ls5_c00278{letter-spacing:0.004256pt;}
.lsc_c00278{letter-spacing:0.008512pt;}
.ls9_c00278{letter-spacing:0.012768pt;}
.ls6_c00278{letter-spacing:0.017024pt;}
.lsa_c00278{letter-spacing:0.021280pt;}
.ls14_c00278{letter-spacing:0.025536pt;}
.ls3_c00278{letter-spacing:0.029792pt;}
.ls18_c00278{letter-spacing:0.032064pt;}
.lsd_c00278{letter-spacing:0.034048pt;}
.lsf_c00278{letter-spacing:0.038304pt;}
.ls1a_c00278{letter-spacing:0.042560pt;}
.ls0_c00278{letter-spacing:0.042752pt;}
.ls4_c00278{letter-spacing:0.046816pt;}
.ls2f_c00278{letter-spacing:0.051072pt;}
.ls32_c00278{letter-spacing:0.055328pt;}
.ls13_c00278{letter-spacing:0.063840pt;}
.ls2d_c00278{letter-spacing:0.068096pt;}
.ls37_c00278{letter-spacing:0.072352pt;}
.ls15_c00278{letter-spacing:0.080864pt;}
.ls7_c00278{letter-spacing:0.085120pt;}
.ls1c_c00278{letter-spacing:0.092480pt;}
.ls8_c00278{letter-spacing:0.093632pt;}
.lse_c00278{letter-spacing:0.102144pt;}
.ls10_c00278{letter-spacing:0.110656pt;}
.lsb_c00278{letter-spacing:0.114912pt;}
.ls19_c00278{letter-spacing:0.120960pt;}
.ls12_c00278{letter-spacing:0.123424pt;}
.ls23_c00278{letter-spacing:0.140448pt;}
.ls11_c00278{letter-spacing:0.144704pt;}
.ls16_c00278{letter-spacing:0.174496pt;}
.ls38_c00278{letter-spacing:0.263872pt;}
.ls1b_c00278{letter-spacing:0.340480pt;}
.ls17_c00278{letter-spacing:176.879360pt;}
.ls2_c00278{letter-spacing:345.502080pt;}
.ls2e_c00278{letter-spacing:345.519104pt;}
.ls39_c00278{letter-spacing:353.520384pt;}
.ls3a_c00278{letter-spacing:420.399168pt;}
.ls1_c00278{letter-spacing:1077.440000pt;}
.ws1_c00278{word-spacing:-42.560000pt;}
.ws7_c00278{word-spacing:-11.848704pt;}
.ws9_c00278{word-spacing:-11.844448pt;}
.ws5_c00278{word-spacing:-10.665536pt;}
.ws2_c00278{word-spacing:-10.652768pt;}
.ws4_c00278{word-spacing:-10.631488pt;}
.ws0_c00278{word-spacing:-10.601696pt;}
.ws3_c00278{word-spacing:-10.597440pt;}
.ws8_c00278{word-spacing:-9.604224pt;}
.ws6_c00278{word-spacing:-8.760960pt;}
.ws3b_c00278{word-spacing:-0.344736pt;}
.ws40_c00278{word-spacing:-0.255360pt;}
.ws31_c00278{word-spacing:-0.225568pt;}
.ws43_c00278{word-spacing:-0.213760pt;}
.ws35_c00278{word-spacing:-0.204288pt;}
.ws1d_c00278{word-spacing:-0.195776pt;}
.ws30_c00278{word-spacing:-0.191520pt;}
.ws24_c00278{word-spacing:-0.183008pt;}
.ws1c_c00278{word-spacing:-0.174496pt;}
.ws1b_c00278{word-spacing:-0.165984pt;}
.ws3c_c00278{word-spacing:-0.161728pt;}
.ws3a_c00278{word-spacing:-0.153216pt;}
.ws27_c00278{word-spacing:-0.148960pt;}
.ws36_c00278{word-spacing:-0.144704pt;}
.ws2d_c00278{word-spacing:-0.136192pt;}
.ws2a_c00278{word-spacing:-0.131936pt;}
.ws10_c00278{word-spacing:-0.127680pt;}
.ws28_c00278{word-spacing:-0.123424pt;}
.ws2f_c00278{word-spacing:-0.119168pt;}
.ws23_c00278{word-spacing:-0.114912pt;}
.ws11_c00278{word-spacing:-0.110656pt;}
.ws26_c00278{word-spacing:-0.106400pt;}
.wsd_c00278{word-spacing:-0.102144pt;}
.ws18_c00278{word-spacing:-0.097888pt;}
.ws20_c00278{word-spacing:-0.093632pt;}
.ws17_c00278{word-spacing:-0.085120pt;}
.ws19_c00278{word-spacing:-0.080864pt;}
.ws15_c00278{word-spacing:-0.076608pt;}
.ws12_c00278{word-spacing:-0.072352pt;}
.ws13_c00278{word-spacing:-0.068096pt;}
.ws2b_c00278{word-spacing:-0.063840pt;}
.ws21_c00278{word-spacing:-0.051072pt;}
.ws1e_c00278{word-spacing:-0.046816pt;}
.wsc_c00278{word-spacing:-0.042560pt;}
.ws25_c00278{word-spacing:-0.038304pt;}
.ws2c_c00278{word-spacing:-0.034048pt;}
.wsf_c00278{word-spacing:-0.025536pt;}
.ws16_c00278{word-spacing:-0.021280pt;}
.wse_c00278{word-spacing:-0.012768pt;}
.ws3e_c00278{word-spacing:-0.004256pt;}
.wsb_c00278{word-spacing:0.000000pt;}
.ws33_c00278{word-spacing:0.004256pt;}
.ws1f_c00278{word-spacing:0.025536pt;}
.ws29_c00278{word-spacing:0.029792pt;}
.wsa_c00278{word-spacing:0.037408pt;}
.ws42_c00278{word-spacing:0.048096pt;}
.ws39_c00278{word-spacing:0.195776pt;}
.ws22_c00278{word-spacing:0.229824pt;}
.ws3d_c00278{word-spacing:0.238336pt;}
.ws34_c00278{word-spacing:0.242592pt;}
.ws37_c00278{word-spacing:0.246848pt;}
.ws38_c00278{word-spacing:0.263872pt;}
.ws14_c00278{word-spacing:0.289408pt;}
.ws45_c00278{word-spacing:0.293664pt;}
.ws47_c00278{word-spacing:0.297920pt;}
.ws32_c00278{word-spacing:0.314944pt;}
.ws44_c00278{word-spacing:0.323456pt;}
.ws46_c00278{word-spacing:0.327712pt;}
.ws48_c00278{word-spacing:0.340480pt;}
.ws2e_c00278{word-spacing:70.287840pt;}
.ws3f_c00278{word-spacing:70.313376pt;}
.ws1a_c00278{word-spacing:70.364448pt;}
.ws41_c00278{word-spacing:70.377216pt;}
._3_c00278{margin-left:-70.394240pt;}
._0_c00278{margin-left:-1.175680pt;}
._2_c00278{width:0.936320pt;}
._b_c00278{width:26.557440pt;}
._5_c00278{width:28.140672pt;}
._6_c00278{width:62.827072pt;}
._1_c00278{width:70.428288pt;}
._7_c00278{width:102.058880pt;}
._4_c00278{width:113.643712pt;}
._a_c00278{width:143.925152pt;}
._9_c00278{width:186.966080pt;}
._8_c00278{width:283.211264pt;}
.fs4_c00278{font-size:34.560000pt;}
.fs3_c00278{font-size:42.560000pt;}
.fs1_c00278{font-size:48.000000pt;}
.fs0_c00278{font-size:53.440000pt;}
.fs2_c00278{font-size:64.000000pt;}
.y0_c00278{bottom:0.000000pt;}
.y3_c00278{bottom:51.067067pt;}
.y84_c00278{bottom:100.991467pt;}
.y83_c00278{bottom:113.384187pt;}
.y82_c00278{bottom:125.627067pt;}
.y81_c00278{bottom:139.147067pt;}
.y80_c00278{bottom:157.547067pt;}
.y7f_c00278{bottom:175.947067pt;}
.y7e_c00278{bottom:220.107067pt;}
.y7d_c00278{bottom:253.467067pt;}
.y7c_c00278{bottom:276.346107pt;}
.y7b_c00278{bottom:282.347067pt;}
.y79_c00278{bottom:301.053547pt;}
.y75_c00278{bottom:307.065147pt;}
.y78_c00278{bottom:313.055467pt;}
.y73_c00278{bottom:313.066107pt;}
.y72_c00278{bottom:319.067067pt;}
.y77_c00278{bottom:325.057387pt;}
.y74_c00278{bottom:331.068987pt;}
.y76_c00278{bottom:337.059307pt;}
.y71_c00278{bottom:349.693547pt;}
.y6d_c00278{bottom:355.705147pt;}
.y70_c00278{bottom:361.695467pt;}
.y6b_c00278{bottom:367.707067pt;}
.y6f_c00278{bottom:373.697387pt;}
.y6c_c00278{bottom:379.708987pt;}
.y6e_c00278{bottom:385.699307pt;}
.y65_c00278{bottom:409.212587pt;}
.y69_c00278{bottom:415.202907pt;}
.y64_c00278{bottom:421.214507pt;}
.y68_c00278{bottom:427.204827pt;}
.y60_c00278{bottom:427.226107pt;}
.y63_c00278{bottom:433.216427pt;}
.y5f_c00278{bottom:433.227067pt;}
.y67_c00278{bottom:439.206747pt;}
.y62_c00278{bottom:445.218347pt;}
.y66_c00278{bottom:451.208667pt;}
.y61_c00278{bottom:457.220267pt;}
.y6a_c00278{bottom:468.009227pt;}
.y5e_c00278{bottom:480.620747pt;}
.y5d_c00278{bottom:492.622667pt;}
.y5c_c00278{bottom:504.624587pt;}
.y5b_c00278{bottom:516.626507pt;}
.y4e_c00278{bottom:516.647787pt;}
.y5a_c00278{bottom:528.628427pt;}
.y4d_c00278{bottom:528.649707pt;}
.y59_c00278{bottom:540.630347pt;}
.y4c_c00278{bottom:540.651627pt;}
.y44_c00278{bottom:546.663227pt;}
.y58_c00278{bottom:552.632267pt;}
.y4b_c00278{bottom:552.653547pt;}
.y43_c00278{bottom:558.665147pt;}
.y57_c00278{bottom:564.634187pt;}
.y4a_c00278{bottom:564.655467pt;}
.y40_c00278{bottom:570.667067pt;}
.y56_c00278{bottom:576.636107pt;}
.y49_c00278{bottom:576.657387pt;}
.y7a_c00278{bottom:576.987067pt;}
.y42_c00278{bottom:582.668987pt;}
.y55_c00278{bottom:588.638027pt;}
.y48_c00278{bottom:588.659307pt;}
.y41_c00278{bottom:594.670907pt;}
.y54_c00278{bottom:600.639947pt;}
.y47_c00278{bottom:600.661227pt;}
.y53_c00278{bottom:612.641867pt;}
.y46_c00278{bottom:612.663147pt;}
.y52_c00278{bottom:624.643787pt;}
.y45_c00278{bottom:624.665067pt;}
.y51_c00278{bottom:636.645707pt;}
.y50_c00278{bottom:648.647627pt;}
.y4f_c00278{bottom:660.649547pt;}
.y3f_c00278{bottom:673.384187pt;}
.y3e_c00278{bottom:685.386107pt;}
.y3b_c00278{bottom:691.387067pt;}
.y3d_c00278{bottom:697.388027pt;}
.y3c_c00278{bottom:709.389947pt;}
.y3a_c00278{bottom:722.011627pt;}
.y39_c00278{bottom:734.013547pt;}
.y34_c00278{bottom:734.024187pt;}
.y38_c00278{bottom:746.015467pt;}
.y31_c00278{bottom:746.026107pt;}
.y30_c00278{bottom:752.027067pt;}
.y37_c00278{bottom:758.017387pt;}
.y33_c00278{bottom:758.028027pt;}
.y36_c00278{bottom:770.019307pt;}
.y32_c00278{bottom:770.029947pt;}
.y35_c00278{bottom:782.021227pt;}
.y2f_c00278{bottom:794.604267pt;}
.y24_c00278{bottom:794.625547pt;}
.y2e_c00278{bottom:806.606187pt;}
.y23_c00278{bottom:806.627467pt;}
.y2d_c00278{bottom:818.608107pt;}
.y22_c00278{bottom:818.629387pt;}
.y2c_c00278{bottom:830.610027pt;}
.y21_c00278{bottom:830.631307pt;}
.y14_c00278{bottom:830.652587pt;}
.y2b_c00278{bottom:842.611947pt;}
.y20_c00278{bottom:842.633227pt;}
.y19_c00278{bottom:842.643867pt;}
.y13_c00278{bottom:842.654507pt;}
.y16_c00278{bottom:848.644827pt;}
.yf_c00278{bottom:848.666107pt;}
.y2a_c00278{bottom:854.613867pt;}
.y1f_c00278{bottom:854.635147pt;}
.y18_c00278{bottom:854.645787pt;}
.y12_c00278{bottom:854.656427pt;}
.ye_c00278{bottom:854.667067pt;}
.y15_c00278{bottom:860.646747pt;}
.y29_c00278{bottom:866.615787pt;}
.y1e_c00278{bottom:866.637067pt;}
.y17_c00278{bottom:866.647707pt;}
.y11_c00278{bottom:866.658347pt;}
.y28_c00278{bottom:878.617707pt;}
.y1d_c00278{bottom:878.638987pt;}
.y10_c00278{bottom:878.660267pt;}
.y27_c00278{bottom:890.619627pt;}
.y1c_c00278{bottom:890.640907pt;}
.y26_c00278{bottom:902.621547pt;}
.y1b_c00278{bottom:902.642827pt;}
.y25_c00278{bottom:914.623467pt;}
.y1a_c00278{bottom:914.644747pt;}
.yd_c00278{bottom:927.384187pt;}
.yc_c00278{bottom:939.386107pt;}
.y9_c00278{bottom:945.387067pt;}
.yb_c00278{bottom:951.388027pt;}
.ya_c00278{bottom:963.389947pt;}
.y8_c00278{bottom:979.144320pt;}
.y5_c00278{bottom:991.146240pt;}
.y4_c00278{bottom:997.147200pt;}
.y7_c00278{bottom:1003.148160pt;}
.y6_c00278{bottom:1015.150080pt;}
.y2_c00278{bottom:1046.987067pt;}
.y1_c00278{bottom:1063.867067pt;}
.h5_c00278{height:35.619062pt;}
.h6_c00278{height:35.993125pt;}
.h9_c00278{height:42.656250pt;}
.ha_c00278{height:44.388750pt;}
.hb_c00278{height:44.400270pt;}
.h1_c00278{height:44.724687pt;}
.h2_c00278{height:50.062500pt;}
.h8_c00278{height:53.562500pt;}
.h4_c00278{height:59.622903pt;}
.h3_c00278{height:64.142500pt;}
.h7_c00278{height:83.626743pt;}
.h0_c00278{height:1122.666667pt;}
.w1_c00278{width:793.333333pt;}
.w0_c00278{width:793.626667pt;}
.x0_c00278{left:0.000000pt;}
.xb_c00278{left:68.480000pt;}
.x9_c00278{left:96.560000pt;}
.x2_c00278{left:102.400000pt;}
.x1_c00278{left:113.440000pt;}
.x3_c00278{left:132.564400pt;}
.xd_c00278{left:137.276480pt;}
.xc_c00278{left:226.960000pt;}
.x4_c00278{left:229.047920pt;}
.x5_c00278{left:320.094400pt;}
.xa_c00278{left:409.120640pt;}
.x6_c00278{left:505.219760pt;}
.x7_c00278{left:600.830800pt;}
.x8_c00278{left:708.592720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89f1b5d4946e30efb195bf4f.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00279;src:url('chunks/assets/font_ba3631651b855c21602bcaab.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_6d431eca0ab369e82178209d.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00279;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00279{font-family:ff5_c00279;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00279;src:url('chunks/assets/font_789ac5472529415146a6a77e.woff2')format("woff");}.ff6_c00279{font-family:ff6_c00279;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.v1_c00279{vertical-align:29.880600px;}
.lsf_c00279{letter-spacing:-0.151200px;}
.ls11_c00279{letter-spacing:-0.046872px;}
.ls17_c00279{letter-spacing:-0.036000px;}
.ls19_c00279{letter-spacing:-0.031248px;}
.ls15_c00279{letter-spacing:-0.028800px;}
.ls10_c00279{letter-spacing:-0.023436px;}
.ls18_c00279{letter-spacing:-0.021600px;}
.ls16_c00279{letter-spacing:-0.015624px;}
.ls14_c00279{letter-spacing:-0.014400px;}
.ls12_c00279{letter-spacing:-0.007200px;}
.lse_c00279{letter-spacing:0.000000px;}
.ls6_c00279{letter-spacing:0.007200px;}
.lsb_c00279{letter-spacing:0.014364px;}
.ls8_c00279{letter-spacing:0.014400px;}
.ls3_c00279{letter-spacing:0.021600px;}
.ls1b_c00279{letter-spacing:0.028800px;}
.ls1_c00279{letter-spacing:0.031248px;}
.ls0_c00279{letter-spacing:0.036072px;}
.lsc_c00279{letter-spacing:0.047880px;}
.ls13_c00279{letter-spacing:0.050400px;}
.ls9_c00279{letter-spacing:0.054756px;}
.ls4_c00279{letter-spacing:0.057600px;}
.lsd_c00279{letter-spacing:0.076608px;}
.ls1a_c00279{letter-spacing:0.093600px;}
.ls7_c00279{letter-spacing:17.498880px;}
.ls5_c00279{letter-spacing:34.450920px;}
.lsa_c00279{letter-spacing:71.869320px;}
.ls2_c00279{letter-spacing:77.260680px;}
.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:-19.561248px;}
.ws1_c00279{word-spacing:-19.514376px;}
.ws2_c00279{word-spacing:-19.498752px;}
.ws4_c00279{word-spacing:-15.030000px;}
.ws5_c00279{word-spacing:-10.808640px;}
.ws3_c00279{word-spacing:-10.584756px;}
.ws6_c00279{word-spacing:-0.306612px;}
.ws18_c00279{word-spacing:-0.273420px;}
.ws1e_c00279{word-spacing:-0.257796px;}
.ws9_c00279{word-spacing:-0.117180px;}
.ws26_c00279{word-spacing:-0.086400px;}
.ws8_c00279{word-spacing:-0.070308px;}
.ws25_c00279{word-spacing:-0.043200px;}
.ws2f_c00279{word-spacing:-0.028728px;}
.ws11_c00279{word-spacing:-0.021600px;}
.ws7_c00279{word-spacing:0.000000px;}
.ws2e_c00279{word-spacing:0.004788px;}
.ws29_c00279{word-spacing:0.007200px;}
.ws10_c00279{word-spacing:0.014400px;}
.ws2a_c00279{word-spacing:0.021600px;}
.ws17_c00279{word-spacing:0.100800px;}
.ws30_c00279{word-spacing:0.301644px;}
.wsc_c00279{word-spacing:0.302400px;}
.wsd_c00279{word-spacing:0.309600px;}
.ws20_c00279{word-spacing:0.360000px;}
.ws1f_c00279{word-spacing:0.367200px;}
.wsb_c00279{word-spacing:0.410400px;}
.ws16_c00279{word-spacing:0.720000px;}
.ws15_c00279{word-spacing:0.792000px;}
.ws28_c00279{word-spacing:1.382400px;}
.ws27_c00279{word-spacing:1.440000px;}
.ws1a_c00279{word-spacing:2.520000px;}
.ws1b_c00279{word-spacing:2.599200px;}
.ws21_c00279{word-spacing:3.592800px;}
.ws22_c00279{word-spacing:3.650400px;}
.ws1c_c00279{word-spacing:4.752000px;}
.ws1d_c00279{word-spacing:4.773600px;}
.wsf_c00279{word-spacing:5.047200px;}
.ws24_c00279{word-spacing:5.428800px;}
.ws23_c00279{word-spacing:5.450400px;}
.ws2d_c00279{word-spacing:7.934400px;}
.ws2b_c00279{word-spacing:8.265600px;}
.ws2c_c00279{word-spacing:8.301600px;}
.wsa_c00279{word-spacing:9.727200px;}
.wse_c00279{word-spacing:10.080000px;}
.ws19_c00279{word-spacing:10.116000px;}
.ws12_c00279{word-spacing:11.908800px;}
.ws13_c00279{word-spacing:20.167200px;}
.ws14_c00279{word-spacing:20.174400px;}
._2_c00279{margin-left:-2.628000px;}
._0_c00279{margin-left:-1.022040px;}
._1_c00279{width:1.080000px;}
.fc0_c00279{color:rgb(0,0,0);}
.fs6_c00279{font-size:38.880000px;}
.fs4_c00279{font-size:42.120000px;}
.fs5_c00279{font-size:47.880000px;}
.fs2_c00279{font-size:54.000000px;}
.fs0_c00279{font-size:60.120000px;}
.fs1_c00279{font-size:72.000000px;}
.fs3_c00279{font-size:78.120000px;}
.y0_c00279{bottom:0.000000px;}
.y3_c00279{bottom:57.450450px;}
.y4_c00279{bottom:61.410450px;}
.y22_c00279{bottom:113.700450px;}
.y21_c00279{bottom:128.910450px;}
.y20_c00279{bottom:149.610450px;}
.y1f_c00279{bottom:170.310450px;}
.y1e_c00279{bottom:207.570450px;}
.y1d_c00279{bottom:242.040450px;}
.y1c_c00279{bottom:294.420450px;}
.y1b_c00279{bottom:337.890450px;}
.y1a_c00279{bottom:372.270450px;}
.y19_c00279{bottom:415.740600px;}
.y18_c00279{bottom:459.120450px;}
.y17_c00279{bottom:493.590450px;}
.y16_c00279{bottom:527.970450px;}
.y15_c00279{bottom:562.440450px;}
.y14_c00279{bottom:607.440450px;}
.y13_c00279{bottom:657.210450px;}
.y12_c00279{bottom:687.540450px;}
.y11_c00279{bottom:717.960450px;}
.y10_c00279{bottom:748.290450px;}
.yf_c00279{bottom:793.200450px;}
.ye_c00279{bottom:842.970450px;}
.yd_c00279{bottom:873.300450px;}
.yc_c00279{bottom:903.720450px;}
.yb_c00279{bottom:934.050450px;}
.ya_c00279{bottom:973.470450px;}
.y9_c00279{bottom:1003.800450px;}
.y8_c00279{bottom:1034.220450px;}
.y7_c00279{bottom:1064.550450px;}
.y6_c00279{bottom:1094.970450px;}
.y5_c00279{bottom:1139.880450px;}
.y2_c00279{bottom:1173.810450px;}
.y1_c00279{bottom:1196.850450px;}
.h2_c00279{height:47.988281px;}
.h9_c00279{height:49.937344px;}
.h1_c00279{height:50.315273px;}
.h3_c00279{height:56.320312px;}
.h5_c00279{height:60.257812px;}
.h6_c00279{height:60.328125px;}
.h8_c00279{height:62.703281px;}
.h7_c00279{height:65.131420px;}
.h4_c00279{height:81.476719px;}
.h0_c00279{height:1263.000000px;}
.w1_c00279{width:892.500000px;}
.w0_c00279{width:892.830000px;}
.x0_c00279{left:0.000000px;}
.x2_c00279{left:127.620000px;}
.x6_c00279{left:154.800000px;}
.x5_c00279{left:180.720000px;}
.x4_c00279{left:435.240000px;}
.x3_c00279{left:446.490000px;}
.x1_c00279{left:490.770000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.v1_c00279{vertical-align:26.560533pt;}
.lsf_c00279{letter-spacing:-0.134400pt;}
.ls11_c00279{letter-spacing:-0.041664pt;}
.ls17_c00279{letter-spacing:-0.032000pt;}
.ls19_c00279{letter-spacing:-0.027776pt;}
.ls15_c00279{letter-spacing:-0.025600pt;}
.ls10_c00279{letter-spacing:-0.020832pt;}
.ls18_c00279{letter-spacing:-0.019200pt;}
.ls16_c00279{letter-spacing:-0.013888pt;}
.ls14_c00279{letter-spacing:-0.012800pt;}
.ls12_c00279{letter-spacing:-0.006400pt;}
.lse_c00279{letter-spacing:0.000000pt;}
.ls6_c00279{letter-spacing:0.006400pt;}
.lsb_c00279{letter-spacing:0.012768pt;}
.ls8_c00279{letter-spacing:0.012800pt;}
.ls3_c00279{letter-spacing:0.019200pt;}
.ls1b_c00279{letter-spacing:0.025600pt;}
.ls1_c00279{letter-spacing:0.027776pt;}
.ls0_c00279{letter-spacing:0.032064pt;}
.lsc_c00279{letter-spacing:0.042560pt;}
.ls13_c00279{letter-spacing:0.044800pt;}
.ls9_c00279{letter-spacing:0.048672pt;}
.ls4_c00279{letter-spacing:0.051200pt;}
.lsd_c00279{letter-spacing:0.068096pt;}
.ls1a_c00279{letter-spacing:0.083200pt;}
.ls7_c00279{letter-spacing:15.554560pt;}
.ls5_c00279{letter-spacing:30.623040pt;}
.lsa_c00279{letter-spacing:63.883840pt;}
.ls2_c00279{letter-spacing:68.676160pt;}
.ws0_c00279{word-spacing:-17.387776pt;}
.ws1_c00279{word-spacing:-17.346112pt;}
.ws2_c00279{word-spacing:-17.332224pt;}
.ws4_c00279{word-spacing:-13.360000pt;}
.ws5_c00279{word-spacing:-9.607680pt;}
.ws3_c00279{word-spacing:-9.408672pt;}
.ws6_c00279{word-spacing:-0.272544pt;}
.ws18_c00279{word-spacing:-0.243040pt;}
.ws1e_c00279{word-spacing:-0.229152pt;}
.ws9_c00279{word-spacing:-0.104160pt;}
.ws26_c00279{word-spacing:-0.076800pt;}
.ws8_c00279{word-spacing:-0.062496pt;}
.ws25_c00279{word-spacing:-0.038400pt;}
.ws2f_c00279{word-spacing:-0.025536pt;}
.ws11_c00279{word-spacing:-0.019200pt;}
.ws7_c00279{word-spacing:0.000000pt;}
.ws2e_c00279{word-spacing:0.004256pt;}
.ws29_c00279{word-spacing:0.006400pt;}
.ws10_c00279{word-spacing:0.012800pt;}
.ws2a_c00279{word-spacing:0.019200pt;}
.ws17_c00279{word-spacing:0.089600pt;}
.ws30_c00279{word-spacing:0.268128pt;}
.wsc_c00279{word-spacing:0.268800pt;}
.wsd_c00279{word-spacing:0.275200pt;}
.ws20_c00279{word-spacing:0.320000pt;}
.ws1f_c00279{word-spacing:0.326400pt;}
.wsb_c00279{word-spacing:0.364800pt;}
.ws16_c00279{word-spacing:0.640000pt;}
.ws15_c00279{word-spacing:0.704000pt;}
.ws28_c00279{word-spacing:1.228800pt;}
.ws27_c00279{word-spacing:1.280000pt;}
.ws1a_c00279{word-spacing:2.240000pt;}
.ws1b_c00279{word-spacing:2.310400pt;}
.ws21_c00279{word-spacing:3.193600pt;}
.ws22_c00279{word-spacing:3.244800pt;}
.ws1c_c00279{word-spacing:4.224000pt;}
.ws1d_c00279{word-spacing:4.243200pt;}
.wsf_c00279{word-spacing:4.486400pt;}
.ws24_c00279{word-spacing:4.825600pt;}
.ws23_c00279{word-spacing:4.844800pt;}
.ws2d_c00279{word-spacing:7.052800pt;}
.ws2b_c00279{word-spacing:7.347200pt;}
.ws2c_c00279{word-spacing:7.379200pt;}
.wsa_c00279{word-spacing:8.646400pt;}
.wse_c00279{word-spacing:8.960000pt;}
.ws19_c00279{word-spacing:8.992000pt;}
.ws12_c00279{word-spacing:10.585600pt;}
.ws13_c00279{word-spacing:17.926400pt;}
.ws14_c00279{word-spacing:17.932800pt;}
._2_c00279{margin-left:-2.336000pt;}
._0_c00279{margin-left:-0.908480pt;}
._1_c00279{width:0.960000pt;}
.fs6_c00279{font-size:34.560000pt;}
.fs4_c00279{font-size:37.440000pt;}
.fs5_c00279{font-size:42.560000pt;}
.fs2_c00279{font-size:48.000000pt;}
.fs0_c00279{font-size:53.440000pt;}
.fs1_c00279{font-size:64.000000pt;}
.fs3_c00279{font-size:69.440000pt;}
.y0_c00279{bottom:0.000000pt;}
.y3_c00279{bottom:51.067067pt;}
.y4_c00279{bottom:54.587067pt;}
.y22_c00279{bottom:101.067067pt;}
.y21_c00279{bottom:114.587067pt;}
.y20_c00279{bottom:132.987067pt;}
.y1f_c00279{bottom:151.387067pt;}
.y1e_c00279{bottom:184.507067pt;}
.y1d_c00279{bottom:215.147067pt;}
.y1c_c00279{bottom:261.707067pt;}
.y1b_c00279{bottom:300.347067pt;}
.y1a_c00279{bottom:330.907067pt;}
.y19_c00279{bottom:369.547200pt;}
.y18_c00279{bottom:408.107067pt;}
.y17_c00279{bottom:438.747067pt;}
.y16_c00279{bottom:469.307067pt;}
.y15_c00279{bottom:499.947067pt;}
.y14_c00279{bottom:539.947067pt;}
.y13_c00279{bottom:584.187067pt;}
.y12_c00279{bottom:611.147067pt;}
.y11_c00279{bottom:638.187067pt;}
.y10_c00279{bottom:665.147067pt;}
.yf_c00279{bottom:705.067067pt;}
.ye_c00279{bottom:749.307067pt;}
.yd_c00279{bottom:776.267067pt;}
.yc_c00279{bottom:803.307067pt;}
.yb_c00279{bottom:830.267067pt;}
.ya_c00279{bottom:865.307067pt;}
.y9_c00279{bottom:892.267067pt;}
.y8_c00279{bottom:919.307067pt;}
.y7_c00279{bottom:946.267067pt;}
.y6_c00279{bottom:973.307067pt;}
.y5_c00279{bottom:1013.227067pt;}
.y2_c00279{bottom:1043.387067pt;}
.y1_c00279{bottom:1063.867067pt;}
.h2_c00279{height:42.656250pt;}
.h9_c00279{height:44.388750pt;}
.h1_c00279{height:44.724687pt;}
.h3_c00279{height:50.062500pt;}
.h5_c00279{height:53.562500pt;}
.h6_c00279{height:53.625000pt;}
.h8_c00279{height:55.736250pt;}
.h7_c00279{height:57.894596pt;}
.h4_c00279{height:72.423750pt;}
.h0_c00279{height:1122.666667pt;}
.w1_c00279{width:793.333333pt;}
.w0_c00279{width:793.626667pt;}
.x0_c00279{left:0.000000pt;}
.x2_c00279{left:113.440000pt;}
.x6_c00279{left:137.600000pt;}
.x5_c00279{left:160.640000pt;}
.x4_c00279{left:386.880000pt;}
.x3_c00279{left:396.880000pt;}
.x1_c00279{left:436.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_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_ace4e81b6bb8ae356e27bd83.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.100098;font-style:normal;font-weight:normal;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_43e96fcbfc5fd3aef6b851fe.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;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_c00280;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00280;src:url('chunks/assets/font_d5d6c014a7ac9f46d6781593.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00280;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:1.281250;font-style:normal;font-weight:normal;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_e5cd2e7712466b6cdffc88ca.woff2')format("woff");}.ff6_c00280{font-family:ff6_c00280;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_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);}
.v5_c00280{vertical-align:-29.880000px;}
.v0_c00280{vertical-align:0.000000px;}
.v3_c00280{vertical-align:3.960000px;}
.v1_c00280{vertical-align:15.840000px;}
.v2_c00280{vertical-align:29.880000px;}
.v7_c00280{vertical-align:33.847560px;}
.v6_c00280{vertical-align:37.454760px;}
.v4_c00280{vertical-align:40.340520px;}
.ls18_c00280{letter-spacing:-0.151200px;}
.ls1d_c00280{letter-spacing:-0.108216px;}
.ls22_c00280{letter-spacing:-0.102204px;}
.ls1f_c00280{letter-spacing:-0.090180px;}
.ls20_c00280{letter-spacing:-0.084168px;}
.ls1e_c00280{letter-spacing:-0.066132px;}
.ls25_c00280{letter-spacing:-0.054108px;}
.ls21_c00280{letter-spacing:-0.042084px;}
.ls2b_c00280{letter-spacing:-0.036000px;}
.ls24_c00280{letter-spacing:-0.030060px;}
.ls28_c00280{letter-spacing:-0.028800px;}
.ls23_c00280{letter-spacing:-0.024048px;}
.ls27_c00280{letter-spacing:-0.021600px;}
.ls1c_c00280{letter-spacing:-0.018036px;}
.ls19_c00280{letter-spacing:-0.014400px;}
.ls2e_c00280{letter-spacing:-0.007776px;}
.ls1a_c00280{letter-spacing:-0.007200px;}
.ls26_c00280{letter-spacing:-0.006012px;}
.ls2d_c00280{letter-spacing:-0.003888px;}
.ls17_c00280{letter-spacing:0.000000px;}
.ls6_c00280{letter-spacing:0.007200px;}
.ls15_c00280{letter-spacing:0.009576px;}
.lsa_c00280{letter-spacing:0.014364px;}
.ls29_c00280{letter-spacing:0.014400px;}
.lse_c00280{letter-spacing:0.023940px;}
.ls10_c00280{letter-spacing:0.028728px;}
.ls2a_c00280{letter-spacing:0.028800px;}
.lsf_c00280{letter-spacing:0.033516px;}
.ls11_c00280{letter-spacing:0.038304px;}
.lsc_c00280{letter-spacing:0.043092px;}
.ls0_c00280{letter-spacing:0.048096px;}
.lsd_c00280{letter-spacing:0.052668px;}
.ls2_c00280{letter-spacing:0.054756px;}
.ls14_c00280{letter-spacing:0.057456px;}
.ls13_c00280{letter-spacing:0.075960px;}
.ls1b_c00280{letter-spacing:0.093600px;}
.ls16_c00280{letter-spacing:0.095760px;}
.ls5_c00280{letter-spacing:0.136080px;}
.ls7_c00280{letter-spacing:0.144000px;}
.lsb_c00280{letter-spacing:0.464040px;}
.ls12_c00280{letter-spacing:4.671360px;}
.ls2c_c00280{letter-spacing:15.480000px;}
.ls9_c00280{letter-spacing:44.784000px;}
.ls8_c00280{letter-spacing:65.304000px;}
.ls4_c00280{letter-spacing:215.710560px;}
.ls3_c00280{letter-spacing:405.360000px;}
.ls1_c00280{letter-spacing:1212.120000px;}
.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;}
}
.ws3_c00280{word-spacing:-13.310640px;}
.ws2_c00280{word-spacing:-10.804752px;}
.ws4_c00280{word-spacing:-10.800864px;}
.ws0_c00280{word-spacing:-10.584756px;}
.ws1_c00280{word-spacing:-9.856080px;}
.ws30_c00280{word-spacing:-0.076608px;}
.ws2b_c00280{word-spacing:-0.023940px;}
.ws29_c00280{word-spacing:-0.014364px;}
.ws2c_c00280{word-spacing:-0.009576px;}
.ws1e_c00280{word-spacing:-0.007200px;}
.ws6_c00280{word-spacing:0.000000px;}
.ws2a_c00280{word-spacing:0.004788px;}
.ws9_c00280{word-spacing:0.014400px;}
.ws31_c00280{word-spacing:0.019152px;}
.ws5_c00280{word-spacing:0.042084px;}
.wsa_c00280{word-spacing:0.064800px;}
.ws1a_c00280{word-spacing:0.093600px;}
.ws12_c00280{word-spacing:0.096192px;}
.ws13_c00280{word-spacing:0.108216px;}
.wsc_c00280{word-spacing:0.156312px;}
.ws20_c00280{word-spacing:0.201600px;}
.ws22_c00280{word-spacing:0.403200px;}
.ws1f_c00280{word-spacing:0.756000px;}
.ws7_c00280{word-spacing:1.029600px;}
.ws8_c00280{word-spacing:1.087200px;}
.ws27_c00280{word-spacing:1.402884px;}
.ws26_c00280{word-spacing:1.412460px;}
.ws28_c00280{word-spacing:1.431612px;}
.ws25_c00280{word-spacing:1.438560px;}
.ws24_c00280{word-spacing:1.441188px;}
.ws16_c00280{word-spacing:1.814400px;}
.ws1d_c00280{word-spacing:3.585600px;}
.ws1b_c00280{word-spacing:3.592800px;}
.ws21_c00280{word-spacing:3.621600px;}
.ws1c_c00280{word-spacing:3.664800px;}
.ws2d_c00280{word-spacing:4.285260px;}
.ws2e_c00280{word-spacing:4.299624px;}
.ws2f_c00280{word-spacing:4.639572px;}
.ws17_c00280{word-spacing:6.789600px;}
.ws18_c00280{word-spacing:6.904800px;}
.ws14_c00280{word-spacing:9.367200px;}
.ws23_c00280{word-spacing:15.357600px;}
.ws19_c00280{word-spacing:17.308800px;}
.ws15_c00280{word-spacing:26.395200px;}
.wsb_c00280{word-spacing:122.867244px;}
.wse_c00280{word-spacing:201.774744px;}
.wsd_c00280{word-spacing:225.894888px;}
.wsf_c00280{word-spacing:225.912924px;}
.ws10_c00280{word-spacing:239.950944px;}
.ws11_c00280{word-spacing:253.994976px;}
._c_c00280{margin-left:-225.750600px;}
._1b_c00280{margin-left:-16.876800px;}
._1a_c00280{margin-left:-15.393600px;}
._8_c00280{margin-left:-6.853680px;}
._0_c00280{margin-left:-1.322640px;}
._19_c00280{width:1.188000px;}
._1c_c00280{width:4.664340px;}
._7_c00280{width:7.575120px;}
._4_c00280{width:10.821600px;}
._3_c00280{width:11.903760px;}
._5_c00280{width:13.352652px;}
._2_c00280{width:16.893720px;}
._9_c00280{width:20.140200px;}
._e_c00280{width:21.583080px;}
._b_c00280{width:29.158200px;}
._12_c00280{width:33.847560px;}
._a_c00280{width:36.372600px;}
._13_c00280{width:50.380560px;}
._f_c00280{width:74.127960px;}
._18_c00280{width:83.145960px;}
._16_c00280{width:97.214040px;}
._14_c00280{width:111.222000px;}
._10_c00280{width:135.330120px;}
._11_c00280{width:177.612516px;}
._d_c00280{width:180.895068px;}
._15_c00280{width:185.470200px;}
._1_c00280{width:193.752000px;}
._17_c00280{width:196.231680px;}
._6_c00280{width:233.115300px;}
.fc0_c00280{color:rgb(0,0,0);}
.fs4_c00280{font-size:38.880000px;}
.fs3_c00280{font-size:42.120000px;}
.fs5_c00280{font-size:47.880000px;}
.fs1_c00280{font-size:54.000000px;}
.fs0_c00280{font-size:60.120000px;}
.fs2_c00280{font-size:72.000000px;}
.y0_c00280{bottom:0.000000px;}
.y3_c00280{bottom:57.450450px;}
.y25_c00280{bottom:113.699190px;}
.y24_c00280{bottom:127.570530px;}
.y23_c00280{bottom:145.836750px;}
.y22_c00280{bottom:164.102970px;}
.y21_c00280{bottom:182.464950px;}
.y20_c00280{bottom:196.230450px;}
.y1f_c00280{bottom:211.440450px;}
.y1e_c00280{bottom:232.140450px;}
.y1d_c00280{bottom:252.840450px;}
.y1c_c00280{bottom:293.340450px;}
.y1b_c00280{bottom:327.720450px;}
.y1a_c00280{bottom:362.190450px;}
.y19_c00280{bottom:405.570450px;}
.y18_c00280{bottom:440.040450px;}
.y17_c00280{bottom:483.420450px;}
.y16_c00280{bottom:517.890450px;}
.y15_c00280{bottom:552.270450px;}
.y14_c00280{bottom:595.740450px;}
.y13_c00280{bottom:630.120450px;}
.y12_c00280{bottom:664.590450px;}
.y11_c00280{bottom:698.970450px;}
.y10_c00280{bottom:733.440450px;}
.yf_c00280{bottom:767.820450px;}
.ye_c00280{bottom:805.350450px;}
.yd_c00280{bottom:840.986850px;}
.yc_c00280{bottom:857.820450px;}
.yb_c00280{bottom:893.460450px;}
.ya_c00280{bottom:929.100450px;}
.y9_c00280{bottom:964.740450px;}
.y8_c00280{bottom:1000.380450px;}
.y7_c00280{bottom:1044.210450px;}
.y6_c00280{bottom:1045.110450px;}
.y5_c00280{bottom:1106.760450px;}
.y4_c00280{bottom:1141.140450px;}
.y2_c00280{bottom:1177.860450px;}
.y1_c00280{bottom:1196.850450px;}
.hb_c00280{height:47.988281px;}
.hc_c00280{height:49.937344px;}
.h1_c00280{height:50.315273px;}
.h8_c00280{height:50.373984px;}
.h2_c00280{height:56.320312px;}
.h7_c00280{height:57.948744px;}
.h4_c00280{height:60.257812px;}
.h5_c00280{height:65.130820px;}
.h3_c00280{height:72.160312px;}
.ha_c00280{height:75.093750px;}
.h9_c00280{height:84.162833px;}
.h6_c00280{height:94.674504px;}
.h0_c00280{height:1263.000000px;}
.w1_c00280{width:892.500000px;}
.w0_c00280{width:892.830000px;}
.x0_c00280{left:0.000000px;}
.x2_c00280{left:119.700000px;}
.x5_c00280{left:126.090000px;}
.x1_c00280{left:127.620000px;}
.x7_c00280{left:128.786490px;}
.x6_c00280{left:138.060000px;}
.x4_c00280{left:141.570000px;}
.xa_c00280{left:154.620000px;}
.x9_c00280{left:181.620000px;}
.xb_c00280{left:208.620000px;}
.x8_c00280{left:231.570000px;}
.xc_c00280{left:235.620000px;}
.x3_c00280{left:622.980000px;}
@media print{
.v5_c00280{vertical-align:-26.560000pt;}
.v0_c00280{vertical-align:0.000000pt;}
.v3_c00280{vertical-align:3.520000pt;}
.v1_c00280{vertical-align:14.080000pt;}
.v2_c00280{vertical-align:26.560000pt;}
.v7_c00280{vertical-align:30.086720pt;}
.v6_c00280{vertical-align:33.293120pt;}
.v4_c00280{vertical-align:35.858240pt;}
.ls18_c00280{letter-spacing:-0.134400pt;}
.ls1d_c00280{letter-spacing:-0.096192pt;}
.ls22_c00280{letter-spacing:-0.090848pt;}
.ls1f_c00280{letter-spacing:-0.080160pt;}
.ls20_c00280{letter-spacing:-0.074816pt;}
.ls1e_c00280{letter-spacing:-0.058784pt;}
.ls25_c00280{letter-spacing:-0.048096pt;}
.ls21_c00280{letter-spacing:-0.037408pt;}
.ls2b_c00280{letter-spacing:-0.032000pt;}
.ls24_c00280{letter-spacing:-0.026720pt;}
.ls28_c00280{letter-spacing:-0.025600pt;}
.ls23_c00280{letter-spacing:-0.021376pt;}
.ls27_c00280{letter-spacing:-0.019200pt;}
.ls1c_c00280{letter-spacing:-0.016032pt;}
.ls19_c00280{letter-spacing:-0.012800pt;}
.ls2e_c00280{letter-spacing:-0.006912pt;}
.ls1a_c00280{letter-spacing:-0.006400pt;}
.ls26_c00280{letter-spacing:-0.005344pt;}
.ls2d_c00280{letter-spacing:-0.003456pt;}
.ls17_c00280{letter-spacing:0.000000pt;}
.ls6_c00280{letter-spacing:0.006400pt;}
.ls15_c00280{letter-spacing:0.008512pt;}
.lsa_c00280{letter-spacing:0.012768pt;}
.ls29_c00280{letter-spacing:0.012800pt;}
.lse_c00280{letter-spacing:0.021280pt;}
.ls10_c00280{letter-spacing:0.025536pt;}
.ls2a_c00280{letter-spacing:0.025600pt;}
.lsf_c00280{letter-spacing:0.029792pt;}
.ls11_c00280{letter-spacing:0.034048pt;}
.lsc_c00280{letter-spacing:0.038304pt;}
.ls0_c00280{letter-spacing:0.042752pt;}
.lsd_c00280{letter-spacing:0.046816pt;}
.ls2_c00280{letter-spacing:0.048672pt;}
.ls14_c00280{letter-spacing:0.051072pt;}
.ls13_c00280{letter-spacing:0.067520pt;}
.ls1b_c00280{letter-spacing:0.083200pt;}
.ls16_c00280{letter-spacing:0.085120pt;}
.ls5_c00280{letter-spacing:0.120960pt;}
.ls7_c00280{letter-spacing:0.128000pt;}
.lsb_c00280{letter-spacing:0.412480pt;}
.ls12_c00280{letter-spacing:4.152320pt;}
.ls2c_c00280{letter-spacing:13.760000pt;}
.ls9_c00280{letter-spacing:39.808000pt;}
.ls8_c00280{letter-spacing:58.048000pt;}
.ls4_c00280{letter-spacing:191.742720pt;}
.ls3_c00280{letter-spacing:360.320000pt;}
.ls1_c00280{letter-spacing:1077.440000pt;}
.ws3_c00280{word-spacing:-11.831680pt;}
.ws2_c00280{word-spacing:-9.604224pt;}
.ws4_c00280{word-spacing:-9.600768pt;}
.ws0_c00280{word-spacing:-9.408672pt;}
.ws1_c00280{word-spacing:-8.760960pt;}
.ws30_c00280{word-spacing:-0.068096pt;}
.ws2b_c00280{word-spacing:-0.021280pt;}
.ws29_c00280{word-spacing:-0.012768pt;}
.ws2c_c00280{word-spacing:-0.008512pt;}
.ws1e_c00280{word-spacing:-0.006400pt;}
.ws6_c00280{word-spacing:0.000000pt;}
.ws2a_c00280{word-spacing:0.004256pt;}
.ws9_c00280{word-spacing:0.012800pt;}
.ws31_c00280{word-spacing:0.017024pt;}
.ws5_c00280{word-spacing:0.037408pt;}
.wsa_c00280{word-spacing:0.057600pt;}
.ws1a_c00280{word-spacing:0.083200pt;}
.ws12_c00280{word-spacing:0.085504pt;}
.ws13_c00280{word-spacing:0.096192pt;}
.wsc_c00280{word-spacing:0.138944pt;}
.ws20_c00280{word-spacing:0.179200pt;}
.ws22_c00280{word-spacing:0.358400pt;}
.ws1f_c00280{word-spacing:0.672000pt;}
.ws7_c00280{word-spacing:0.915200pt;}
.ws8_c00280{word-spacing:0.966400pt;}
.ws27_c00280{word-spacing:1.247008pt;}
.ws26_c00280{word-spacing:1.255520pt;}
.ws28_c00280{word-spacing:1.272544pt;}
.ws25_c00280{word-spacing:1.278720pt;}
.ws24_c00280{word-spacing:1.281056pt;}
.ws16_c00280{word-spacing:1.612800pt;}
.ws1d_c00280{word-spacing:3.187200pt;}
.ws1b_c00280{word-spacing:3.193600pt;}
.ws21_c00280{word-spacing:3.219200pt;}
.ws1c_c00280{word-spacing:3.257600pt;}
.ws2d_c00280{word-spacing:3.809120pt;}
.ws2e_c00280{word-spacing:3.821888pt;}
.ws2f_c00280{word-spacing:4.124064pt;}
.ws17_c00280{word-spacing:6.035200pt;}
.ws18_c00280{word-spacing:6.137600pt;}
.ws14_c00280{word-spacing:8.326400pt;}
.ws23_c00280{word-spacing:13.651200pt;}
.ws19_c00280{word-spacing:15.385600pt;}
.ws15_c00280{word-spacing:23.462400pt;}
.wsb_c00280{word-spacing:109.215328pt;}
.wse_c00280{word-spacing:179.355328pt;}
.wsd_c00280{word-spacing:200.795456pt;}
.wsf_c00280{word-spacing:200.811488pt;}
.ws10_c00280{word-spacing:213.289728pt;}
.ws11_c00280{word-spacing:225.773312pt;}
._c_c00280{margin-left:-200.667200pt;}
._1b_c00280{margin-left:-15.001600pt;}
._1a_c00280{margin-left:-13.683200pt;}
._8_c00280{margin-left:-6.092160pt;}
._0_c00280{margin-left:-1.175680pt;}
._19_c00280{width:1.056000pt;}
._1c_c00280{width:4.146080pt;}
._7_c00280{width:6.733440pt;}
._4_c00280{width:9.619200pt;}
._3_c00280{width:10.581120pt;}
._5_c00280{width:11.869024pt;}
._2_c00280{width:15.016640pt;}
._9_c00280{width:17.902400pt;}
._e_c00280{width:19.184960pt;}
._b_c00280{width:25.918400pt;}
._12_c00280{width:30.086720pt;}
._a_c00280{width:32.331200pt;}
._13_c00280{width:44.782720pt;}
._f_c00280{width:65.891520pt;}
._18_c00280{width:73.907520pt;}
._16_c00280{width:86.412480pt;}
._14_c00280{width:98.864000pt;}
._10_c00280{width:120.293440pt;}
._11_c00280{width:157.877792pt;}
._d_c00280{width:160.795616pt;}
._15_c00280{width:164.862400pt;}
._1_c00280{width:172.224000pt;}
._17_c00280{width:174.428160pt;}
._6_c00280{width:207.213600pt;}
.fs4_c00280{font-size:34.560000pt;}
.fs3_c00280{font-size:37.440000pt;}
.fs5_c00280{font-size:42.560000pt;}
.fs1_c00280{font-size:48.000000pt;}
.fs0_c00280{font-size:53.440000pt;}
.fs2_c00280{font-size:64.000000pt;}
.y0_c00280{bottom:0.000000pt;}
.y3_c00280{bottom:51.067067pt;}
.y25_c00280{bottom:101.065947pt;}
.y24_c00280{bottom:113.396027pt;}
.y23_c00280{bottom:129.632667pt;}
.y22_c00280{bottom:145.869307pt;}
.y21_c00280{bottom:162.191067pt;}
.y20_c00280{bottom:174.427067pt;}
.y1f_c00280{bottom:187.947067pt;}
.y1e_c00280{bottom:206.347067pt;}
.y1d_c00280{bottom:224.747067pt;}
.y1c_c00280{bottom:260.747067pt;}
.y1b_c00280{bottom:291.307067pt;}
.y1a_c00280{bottom:321.947067pt;}
.y19_c00280{bottom:360.507067pt;}
.y18_c00280{bottom:391.147067pt;}
.y17_c00280{bottom:429.707067pt;}
.y16_c00280{bottom:460.347067pt;}
.y15_c00280{bottom:490.907067pt;}
.y14_c00280{bottom:529.547067pt;}
.y13_c00280{bottom:560.107067pt;}
.y12_c00280{bottom:590.747067pt;}
.y11_c00280{bottom:621.307067pt;}
.y10_c00280{bottom:651.947067pt;}
.yf_c00280{bottom:682.507067pt;}
.ye_c00280{bottom:715.867067pt;}
.yd_c00280{bottom:747.543867pt;}
.yc_c00280{bottom:762.507067pt;}
.yb_c00280{bottom:794.187067pt;}
.ya_c00280{bottom:825.867067pt;}
.y9_c00280{bottom:857.547067pt;}
.y8_c00280{bottom:889.227067pt;}
.y7_c00280{bottom:928.187067pt;}
.y6_c00280{bottom:928.987067pt;}
.y5_c00280{bottom:983.787067pt;}
.y4_c00280{bottom:1014.347067pt;}
.y2_c00280{bottom:1046.987067pt;}
.y1_c00280{bottom:1063.867067pt;}
.hb_c00280{height:42.656250pt;}
.hc_c00280{height:44.388750pt;}
.h1_c00280{height:44.724687pt;}
.h8_c00280{height:44.776875pt;}
.h2_c00280{height:50.062500pt;}
.h7_c00280{height:51.509995pt;}
.h4_c00280{height:53.562500pt;}
.h5_c00280{height:57.894063pt;}
.h3_c00280{height:64.142500pt;}
.ha_c00280{height:66.750000pt;}
.h9_c00280{height:74.811408pt;}
.h6_c00280{height:84.155115pt;}
.h0_c00280{height:1122.666667pt;}
.w1_c00280{width:793.333333pt;}
.w0_c00280{width:793.626667pt;}
.x0_c00280{left:0.000000pt;}
.x2_c00280{left:106.400000pt;}
.x5_c00280{left:112.080000pt;}
.x1_c00280{left:113.440000pt;}
.x7_c00280{left:114.476880pt;}
.x6_c00280{left:122.720000pt;}
.x4_c00280{left:125.840000pt;}
.xa_c00280{left:137.440000pt;}
.x9_c00280{left:161.440000pt;}
.xb_c00280{left:185.440000pt;}
.x8_c00280{left:205.840000pt;}
.xc_c00280{left:209.440000pt;}
.x3_c00280{left:553.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_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_b53040e45c7d15425d45d859.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_02fda88fc5fdded5302cea3b.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00281;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:1.281250;font-style:normal;font-weight:normal;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_87aca05ac68a92abeb9bbc5a.woff2')format("woff");}.ff5_c00281{font-family:ff5_c00281;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00281;src:url('chunks/assets/font_c2c3427c11ad9098df04c574.woff2')format("woff");}.ff6_c00281{font-family:ff6_c00281;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00281;src:url('chunks/assets/font_789ac5472529415146a6a77e.woff2')format("woff");}.ff7_c00281{font-family:ff7_c00281;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_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.v1_c00281{vertical-align:29.880600px;}
.lse_c00281{letter-spacing:-0.151200px;}
.ls15_c00281{letter-spacing:-0.050400px;}
.lsf_c00281{letter-spacing:-0.043200px;}
.ls16_c00281{letter-spacing:-0.036000px;}
.ls10_c00281{letter-spacing:-0.028800px;}
.ls14_c00281{letter-spacing:-0.021600px;}
.ls11_c00281{letter-spacing:-0.014400px;}
.ls13_c00281{letter-spacing:-0.007200px;}
.lsd_c00281{letter-spacing:0.000000px;}
.ls4_c00281{letter-spacing:0.007200px;}
.lsa_c00281{letter-spacing:0.014364px;}
.ls2_c00281{letter-spacing:0.014400px;}
.ls1_c00281{letter-spacing:0.021600px;}
.ls12_c00281{letter-spacing:0.036000px;}
.ls0_c00281{letter-spacing:0.036072px;}
.ls9_c00281{letter-spacing:0.043200px;}
.lsb_c00281{letter-spacing:0.047880px;}
.ls5_c00281{letter-spacing:0.054756px;}
.ls8_c00281{letter-spacing:0.072000px;}
.lsc_c00281{letter-spacing:0.076608px;}
.ls18_c00281{letter-spacing:0.086400px;}
.ls17_c00281{letter-spacing:0.093600px;}
.ls6_c00281{letter-spacing:0.144000px;}
.ls3_c00281{letter-spacing:44.784000px;}
.ls7_c00281{letter-spacing:65.304000px;}
.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;}
}
.ws2_c00281{word-spacing:-18.072000px;}
.ws0_c00281{word-spacing:-18.000000px;}
.ws3_c00281{word-spacing:-10.808640px;}
.ws1_c00281{word-spacing:-10.584756px;}
.ws4_c00281{word-spacing:-0.306612px;}
.ws2a_c00281{word-spacing:-0.028728px;}
.ws5_c00281{word-spacing:0.000000px;}
.ws29_c00281{word-spacing:0.004788px;}
.ws1b_c00281{word-spacing:0.007200px;}
.ws16_c00281{word-spacing:0.021600px;}
.ws28_c00281{word-spacing:0.036000px;}
.ws12_c00281{word-spacing:0.043200px;}
.ws9_c00281{word-spacing:0.072000px;}
.ws17_c00281{word-spacing:0.093600px;}
.ws25_c00281{word-spacing:0.158400px;}
.ws2b_c00281{word-spacing:0.301644px;}
.wsc_c00281{word-spacing:0.338400px;}
.wsd_c00281{word-spacing:0.374400px;}
.ws27_c00281{word-spacing:1.036800px;}
.ws1d_c00281{word-spacing:1.058400px;}
.ws26_c00281{word-spacing:1.065600px;}
.ws1c_c00281{word-spacing:1.094400px;}
.ws20_c00281{word-spacing:2.138400px;}
.ws1f_c00281{word-spacing:2.160000px;}
.ws24_c00281{word-spacing:2.181600px;}
.ws13_c00281{word-spacing:2.577600px;}
.ws14_c00281{word-spacing:2.664000px;}
.ws11_c00281{word-spacing:3.247200px;}
.ws10_c00281{word-spacing:3.268800px;}
.ws15_c00281{word-spacing:6.883200px;}
.ws7_c00281{word-spacing:7.898400px;}
.ws6_c00281{word-spacing:7.963200px;}
.ws23_c00281{word-spacing:8.683200px;}
.ws1e_c00281{word-spacing:9.756000px;}
.ws22_c00281{word-spacing:9.993600px;}
.ws21_c00281{word-spacing:10.101600px;}
.ws8_c00281{word-spacing:10.425600px;}
.wsf_c00281{word-spacing:10.778400px;}
.wse_c00281{word-spacing:10.792800px;}
.ws19_c00281{word-spacing:11.901600px;}
.wsb_c00281{word-spacing:13.010400px;}
.wsa_c00281{word-spacing:13.024800px;}
.ws1a_c00281{word-spacing:13.320000px;}
.ws18_c00281{word-spacing:23.068800px;}
._0_c00281{margin-left:-1.022040px;}
._1_c00281{width:1.080000px;}
.fc0_c00281{color:rgb(0,0,0);}
.fs5_c00281{font-size:38.880000px;}
.fs3_c00281{font-size:42.120000px;}
.fs4_c00281{font-size:47.880000px;}
.fs2_c00281{font-size:54.000000px;}
.fs0_c00281{font-size:60.120000px;}
.fs1_c00281{font-size:72.000000px;}
.y0_c00281{bottom:0.000000px;}
.y3_c00281{bottom:57.450450px;}
.y4_c00281{bottom:61.410450px;}
.y22_c00281{bottom:113.700450px;}
.y21_c00281{bottom:128.910450px;}
.y20_c00281{bottom:149.610450px;}
.y1f_c00281{bottom:170.310450px;}
.y1e_c00281{bottom:226.560450px;}
.y1d_c00281{bottom:260.940450px;}
.y1c_c00281{bottom:295.410450px;}
.y1b_c00281{bottom:338.790450px;}
.y1a_c00281{bottom:373.260450px;}
.y19_c00281{bottom:407.640450px;}
.y18_c00281{bottom:442.110450px;}
.y17_c00281{bottom:485.490450px;}
.y16_c00281{bottom:519.960450px;}
.y15_c00281{bottom:554.340450px;}
.y14_c00281{bottom:588.810450px;}
.y13_c00281{bottom:632.190450px;}
.y12_c00281{bottom:666.660450px;}
.y11_c00281{bottom:701.040450px;}
.y10_c00281{bottom:735.510450px;}
.yf_c00281{bottom:778.890450px;}
.ye_c00281{bottom:813.360450px;}
.yd_c00281{bottom:847.740450px;}
.yc_c00281{bottom:891.210450px;}
.yb_c00281{bottom:925.590450px;}
.ya_c00281{bottom:960.060450px;}
.y9_c00281{bottom:994.440450px;}
.y8_c00281{bottom:1028.910450px;}
.y7_c00281{bottom:1072.290450px;}
.y6_c00281{bottom:1106.760450px;}
.y5_c00281{bottom:1141.140450px;}
.y2_c00281{bottom:1173.810450px;}
.y1_c00281{bottom:1196.850450px;}
.h2_c00281{height:47.988281px;}
.h8_c00281{height:49.937344px;}
.h1_c00281{height:50.315273px;}
.h3_c00281{height:56.320312px;}
.h4_c00281{height:60.257812px;}
.h7_c00281{height:60.890625px;}
.h6_c00281{height:65.131420px;}
.h5_c00281{height:75.093750px;}
.h0_c00281{height:1263.000000px;}
.w1_c00281{width:892.500000px;}
.w0_c00281{width:892.830000px;}
.x0_c00281{left:0.000000px;}
.x2_c00281{left:127.620000px;}
.xa_c00281{left:154.620000px;}
.x9_c00281{left:180.720000px;}
.x6_c00281{left:208.620000px;}
.x8_c00281{left:233.820000px;}
.x5_c00281{left:235.620000px;}
.x7_c00281{left:259.020000px;}
.x4_c00281{left:435.240000px;}
.x3_c00281{left:446.490000px;}
.x1_c00281{left:490.770000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.v1_c00281{vertical-align:26.560533pt;}
.lse_c00281{letter-spacing:-0.134400pt;}
.ls15_c00281{letter-spacing:-0.044800pt;}
.lsf_c00281{letter-spacing:-0.038400pt;}
.ls16_c00281{letter-spacing:-0.032000pt;}
.ls10_c00281{letter-spacing:-0.025600pt;}
.ls14_c00281{letter-spacing:-0.019200pt;}
.ls11_c00281{letter-spacing:-0.012800pt;}
.ls13_c00281{letter-spacing:-0.006400pt;}
.lsd_c00281{letter-spacing:0.000000pt;}
.ls4_c00281{letter-spacing:0.006400pt;}
.lsa_c00281{letter-spacing:0.012768pt;}
.ls2_c00281{letter-spacing:0.012800pt;}
.ls1_c00281{letter-spacing:0.019200pt;}
.ls12_c00281{letter-spacing:0.032000pt;}
.ls0_c00281{letter-spacing:0.032064pt;}
.ls9_c00281{letter-spacing:0.038400pt;}
.lsb_c00281{letter-spacing:0.042560pt;}
.ls5_c00281{letter-spacing:0.048672pt;}
.ls8_c00281{letter-spacing:0.064000pt;}
.lsc_c00281{letter-spacing:0.068096pt;}
.ls18_c00281{letter-spacing:0.076800pt;}
.ls17_c00281{letter-spacing:0.083200pt;}
.ls6_c00281{letter-spacing:0.128000pt;}
.ls3_c00281{letter-spacing:39.808000pt;}
.ls7_c00281{letter-spacing:58.048000pt;}
.ws2_c00281{word-spacing:-16.064000pt;}
.ws0_c00281{word-spacing:-16.000000pt;}
.ws3_c00281{word-spacing:-9.607680pt;}
.ws1_c00281{word-spacing:-9.408672pt;}
.ws4_c00281{word-spacing:-0.272544pt;}
.ws2a_c00281{word-spacing:-0.025536pt;}
.ws5_c00281{word-spacing:0.000000pt;}
.ws29_c00281{word-spacing:0.004256pt;}
.ws1b_c00281{word-spacing:0.006400pt;}
.ws16_c00281{word-spacing:0.019200pt;}
.ws28_c00281{word-spacing:0.032000pt;}
.ws12_c00281{word-spacing:0.038400pt;}
.ws9_c00281{word-spacing:0.064000pt;}
.ws17_c00281{word-spacing:0.083200pt;}
.ws25_c00281{word-spacing:0.140800pt;}
.ws2b_c00281{word-spacing:0.268128pt;}
.wsc_c00281{word-spacing:0.300800pt;}
.wsd_c00281{word-spacing:0.332800pt;}
.ws27_c00281{word-spacing:0.921600pt;}
.ws1d_c00281{word-spacing:0.940800pt;}
.ws26_c00281{word-spacing:0.947200pt;}
.ws1c_c00281{word-spacing:0.972800pt;}
.ws20_c00281{word-spacing:1.900800pt;}
.ws1f_c00281{word-spacing:1.920000pt;}
.ws24_c00281{word-spacing:1.939200pt;}
.ws13_c00281{word-spacing:2.291200pt;}
.ws14_c00281{word-spacing:2.368000pt;}
.ws11_c00281{word-spacing:2.886400pt;}
.ws10_c00281{word-spacing:2.905600pt;}
.ws15_c00281{word-spacing:6.118400pt;}
.ws7_c00281{word-spacing:7.020800pt;}
.ws6_c00281{word-spacing:7.078400pt;}
.ws23_c00281{word-spacing:7.718400pt;}
.ws1e_c00281{word-spacing:8.672000pt;}
.ws22_c00281{word-spacing:8.883200pt;}
.ws21_c00281{word-spacing:8.979200pt;}
.ws8_c00281{word-spacing:9.267200pt;}
.wsf_c00281{word-spacing:9.580800pt;}
.wse_c00281{word-spacing:9.593600pt;}
.ws19_c00281{word-spacing:10.579200pt;}
.wsb_c00281{word-spacing:11.564800pt;}
.wsa_c00281{word-spacing:11.577600pt;}
.ws1a_c00281{word-spacing:11.840000pt;}
.ws18_c00281{word-spacing:20.505600pt;}
._0_c00281{margin-left:-0.908480pt;}
._1_c00281{width:0.960000pt;}
.fs5_c00281{font-size:34.560000pt;}
.fs3_c00281{font-size:37.440000pt;}
.fs4_c00281{font-size:42.560000pt;}
.fs2_c00281{font-size:48.000000pt;}
.fs0_c00281{font-size:53.440000pt;}
.fs1_c00281{font-size:64.000000pt;}
.y0_c00281{bottom:0.000000pt;}
.y3_c00281{bottom:51.067067pt;}
.y4_c00281{bottom:54.587067pt;}
.y22_c00281{bottom:101.067067pt;}
.y21_c00281{bottom:114.587067pt;}
.y20_c00281{bottom:132.987067pt;}
.y1f_c00281{bottom:151.387067pt;}
.y1e_c00281{bottom:201.387067pt;}
.y1d_c00281{bottom:231.947067pt;}
.y1c_c00281{bottom:262.587067pt;}
.y1b_c00281{bottom:301.147067pt;}
.y1a_c00281{bottom:331.787067pt;}
.y19_c00281{bottom:362.347067pt;}
.y18_c00281{bottom:392.987067pt;}
.y17_c00281{bottom:431.547067pt;}
.y16_c00281{bottom:462.187067pt;}
.y15_c00281{bottom:492.747067pt;}
.y14_c00281{bottom:523.387067pt;}
.y13_c00281{bottom:561.947067pt;}
.y12_c00281{bottom:592.587067pt;}
.y11_c00281{bottom:623.147067pt;}
.y10_c00281{bottom:653.787067pt;}
.yf_c00281{bottom:692.347067pt;}
.ye_c00281{bottom:722.987067pt;}
.yd_c00281{bottom:753.547067pt;}
.yc_c00281{bottom:792.187067pt;}
.yb_c00281{bottom:822.747067pt;}
.ya_c00281{bottom:853.387067pt;}
.y9_c00281{bottom:883.947067pt;}
.y8_c00281{bottom:914.587067pt;}
.y7_c00281{bottom:953.147067pt;}
.y6_c00281{bottom:983.787067pt;}
.y5_c00281{bottom:1014.347067pt;}
.y2_c00281{bottom:1043.387067pt;}
.y1_c00281{bottom:1063.867067pt;}
.h2_c00281{height:42.656250pt;}
.h8_c00281{height:44.388750pt;}
.h1_c00281{height:44.724687pt;}
.h3_c00281{height:50.062500pt;}
.h4_c00281{height:53.562500pt;}
.h7_c00281{height:54.125000pt;}
.h6_c00281{height:57.894596pt;}
.h5_c00281{height:66.750000pt;}
.h0_c00281{height:1122.666667pt;}
.w1_c00281{width:793.333333pt;}
.w0_c00281{width:793.626667pt;}
.x0_c00281{left:0.000000pt;}
.x2_c00281{left:113.440000pt;}
.xa_c00281{left:137.440000pt;}
.x9_c00281{left:160.640000pt;}
.x6_c00281{left:185.440000pt;}
.x8_c00281{left:207.840000pt;}
.x5_c00281{left:209.440000pt;}
.x7_c00281{left:230.240000pt;}
.x4_c00281{left:386.880000pt;}
.x3_c00281{left:396.880000pt;}
.x1_c00281{left:436.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_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_b1c1c8afd0e81adb4faf8531.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.100098;font-style:normal;font-weight:normal;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_841a1a173a14c16db0e0a316.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;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_c00282;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00282;src:url('chunks/assets/font_65028174b0229d385a9be789.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00282;src:url('chunks/assets/font_68d2b15a460447063fc906ab.woff2')format("woff");}.ff5_c00282{font-family:ff5_c00282;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.v1_c00282{vertical-align:15.840000px;}
.ls9_c00282{letter-spacing:-0.151200px;}
.ls12_c00282{letter-spacing:-0.072000px;}
.ls13_c00282{letter-spacing:-0.057600px;}
.ls11_c00282{letter-spacing:-0.043200px;}
.lse_c00282{letter-spacing:-0.036000px;}
.lsf_c00282{letter-spacing:-0.028800px;}
.lsd_c00282{letter-spacing:-0.021600px;}
.lsc_c00282{letter-spacing:-0.014400px;}
.lsb_c00282{letter-spacing:-0.007200px;}
.ls8_c00282{letter-spacing:0.000000px;}
.ls6_c00282{letter-spacing:0.007200px;}
.ls2_c00282{letter-spacing:0.014400px;}
.ls7_c00282{letter-spacing:0.036000px;}
.ls10_c00282{letter-spacing:0.043200px;}
.ls0_c00282{letter-spacing:0.048096px;}
.ls5_c00282{letter-spacing:0.064800px;}
.ls3_c00282{letter-spacing:0.144000px;}
.lsa_c00282{letter-spacing:2.880000px;}
.ls4_c00282{letter-spacing:65.304000px;}
.ls1_c00282{letter-spacing:1212.120000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00282{word-spacing:-18.064800px;}
.ws2_c00282{word-spacing:-17.942400px;}
.ws1_c00282{word-spacing:-17.928000px;}
.wsd_c00282{word-spacing:-0.007200px;}
.ws4_c00282{word-spacing:0.000000px;}
.ws5_c00282{word-spacing:0.007200px;}
.ws1f_c00282{word-spacing:0.014400px;}
.ws18_c00282{word-spacing:0.028800px;}
.ws3_c00282{word-spacing:0.042084px;}
.ws27_c00282{word-spacing:0.172800px;}
.ws6_c00282{word-spacing:0.316800px;}
.ws7_c00282{word-spacing:0.367200px;}
.ws22_c00282{word-spacing:0.720000px;}
.ws2b_c00282{word-spacing:1.101600px;}
.ws23_c00282{word-spacing:1.447200px;}
.ws21_c00282{word-spacing:2.894400px;}
.ws20_c00282{word-spacing:2.944800px;}
.ws25_c00282{word-spacing:3.924000px;}
.ws24_c00282{word-spacing:4.024800px;}
.ws19_c00282{word-spacing:5.061600px;}
.ws26_c00282{word-spacing:6.141600px;}
.ws11_c00282{word-spacing:7.200000px;}
.ws13_c00282{word-spacing:7.228800px;}
.ws10_c00282{word-spacing:7.286400px;}
.ws1a_c00282{word-spacing:8.272800px;}
.ws28_c00282{word-spacing:9.352800px;}
.ws29_c00282{word-spacing:9.396000px;}
.ws2a_c00282{word-spacing:9.547200px;}
.wsa_c00282{word-spacing:10.807200px;}
.wsc_c00282{word-spacing:11.160000px;}
.ws16_c00282{word-spacing:11.174400px;}
.ws17_c00282{word-spacing:11.181600px;}
.wsb_c00282{word-spacing:11.296800px;}
.ws1e_c00282{word-spacing:12.240000px;}
.ws1d_c00282{word-spacing:12.405600px;}
.ws1b_c00282{word-spacing:13.118400px;}
.ws1c_c00282{word-spacing:13.168800px;}
.ws12_c00282{word-spacing:14.047200px;}
.wse_c00282{word-spacing:16.905600px;}
.wsf_c00282{word-spacing:17.035200px;}
.ws14_c00282{word-spacing:19.785600px;}
.ws15_c00282{word-spacing:19.828800px;}
.ws8_c00282{word-spacing:24.141600px;}
.ws9_c00282{word-spacing:24.242400px;}
._1_c00282{margin-left:-2.952000px;}
._0_c00282{margin-left:-1.322640px;}
._2_c00282{width:1.008000px;}
.fc0_c00282{color:rgb(0,0,0);}
.fs1_c00282{font-size:54.000000px;}
.fs0_c00282{font-size:60.120000px;}
.fs2_c00282{font-size:72.000000px;}
.y0_c00282{bottom:0.000000px;}
.y3_c00282{bottom:57.450450px;}
.y20_c00282{bottom:123.240450px;}
.y1f_c00282{bottom:157.710450px;}
.y1e_c00282{bottom:192.090450px;}
.y1d_c00282{bottom:235.560450px;}
.y1c_c00282{bottom:269.940450px;}
.y1b_c00282{bottom:304.410450px;}
.y1a_c00282{bottom:347.790450px;}
.y19_c00282{bottom:382.260450px;}
.y18_c00282{bottom:416.640450px;}
.y17_c00282{bottom:451.110450px;}
.y16_c00282{bottom:494.490450px;}
.y15_c00282{bottom:528.960450px;}
.y14_c00282{bottom:563.340450px;}
.y13_c00282{bottom:597.810450px;}
.y12_c00282{bottom:632.190450px;}
.y11_c00282{bottom:675.660450px;}
.y10_c00282{bottom:710.040450px;}
.yf_c00282{bottom:744.510450px;}
.ye_c00282{bottom:778.890450px;}
.yd_c00282{bottom:813.360450px;}
.yc_c00282{bottom:847.740450px;}
.yb_c00282{bottom:882.210450px;}
.ya_c00282{bottom:925.590450px;}
.y9_c00282{bottom:960.060450px;}
.y8_c00282{bottom:994.440450px;}
.y7_c00282{bottom:1028.910450px;}
.y6_c00282{bottom:1063.290450px;}
.y5_c00282{bottom:1106.760450px;}
.y4_c00282{bottom:1141.140450px;}
.y2_c00282{bottom:1177.860450px;}
.y1_c00282{bottom:1196.850450px;}
.h1_c00282{height:50.315273px;}
.h2_c00282{height:56.320312px;}
.h4_c00282{height:60.257812px;}
.h6_c00282{height:60.890625px;}
.h3_c00282{height:72.160312px;}
.h5_c00282{height:75.093750px;}
.h0_c00282{height:1263.000000px;}
.w1_c00282{width:892.500000px;}
.w0_c00282{width:892.830000px;}
.x0_c00282{left:0.000000px;}
.x1_c00282{left:127.620000px;}
.x4_c00282{left:154.620000px;}
.x3_c00282{left:180.720000px;}
.x2_c00282{left:233.820000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.v1_c00282{vertical-align:14.080000pt;}
.ls9_c00282{letter-spacing:-0.134400pt;}
.ls12_c00282{letter-spacing:-0.064000pt;}
.ls13_c00282{letter-spacing:-0.051200pt;}
.ls11_c00282{letter-spacing:-0.038400pt;}
.lse_c00282{letter-spacing:-0.032000pt;}
.lsf_c00282{letter-spacing:-0.025600pt;}
.lsd_c00282{letter-spacing:-0.019200pt;}
.lsc_c00282{letter-spacing:-0.012800pt;}
.lsb_c00282{letter-spacing:-0.006400pt;}
.ls8_c00282{letter-spacing:0.000000pt;}
.ls6_c00282{letter-spacing:0.006400pt;}
.ls2_c00282{letter-spacing:0.012800pt;}
.ls7_c00282{letter-spacing:0.032000pt;}
.ls10_c00282{letter-spacing:0.038400pt;}
.ls0_c00282{letter-spacing:0.042752pt;}
.ls5_c00282{letter-spacing:0.057600pt;}
.ls3_c00282{letter-spacing:0.128000pt;}
.lsa_c00282{letter-spacing:2.560000pt;}
.ls4_c00282{letter-spacing:58.048000pt;}
.ls1_c00282{letter-spacing:1077.440000pt;}
.ws0_c00282{word-spacing:-16.057600pt;}
.ws2_c00282{word-spacing:-15.948800pt;}
.ws1_c00282{word-spacing:-15.936000pt;}
.wsd_c00282{word-spacing:-0.006400pt;}
.ws4_c00282{word-spacing:0.000000pt;}
.ws5_c00282{word-spacing:0.006400pt;}
.ws1f_c00282{word-spacing:0.012800pt;}
.ws18_c00282{word-spacing:0.025600pt;}
.ws3_c00282{word-spacing:0.037408pt;}
.ws27_c00282{word-spacing:0.153600pt;}
.ws6_c00282{word-spacing:0.281600pt;}
.ws7_c00282{word-spacing:0.326400pt;}
.ws22_c00282{word-spacing:0.640000pt;}
.ws2b_c00282{word-spacing:0.979200pt;}
.ws23_c00282{word-spacing:1.286400pt;}
.ws21_c00282{word-spacing:2.572800pt;}
.ws20_c00282{word-spacing:2.617600pt;}
.ws25_c00282{word-spacing:3.488000pt;}
.ws24_c00282{word-spacing:3.577600pt;}
.ws19_c00282{word-spacing:4.499200pt;}
.ws26_c00282{word-spacing:5.459200pt;}
.ws11_c00282{word-spacing:6.400000pt;}
.ws13_c00282{word-spacing:6.425600pt;}
.ws10_c00282{word-spacing:6.476800pt;}
.ws1a_c00282{word-spacing:7.353600pt;}
.ws28_c00282{word-spacing:8.313600pt;}
.ws29_c00282{word-spacing:8.352000pt;}
.ws2a_c00282{word-spacing:8.486400pt;}
.wsa_c00282{word-spacing:9.606400pt;}
.wsc_c00282{word-spacing:9.920000pt;}
.ws16_c00282{word-spacing:9.932800pt;}
.ws17_c00282{word-spacing:9.939200pt;}
.wsb_c00282{word-spacing:10.041600pt;}
.ws1e_c00282{word-spacing:10.880000pt;}
.ws1d_c00282{word-spacing:11.027200pt;}
.ws1b_c00282{word-spacing:11.660800pt;}
.ws1c_c00282{word-spacing:11.705600pt;}
.ws12_c00282{word-spacing:12.486400pt;}
.wse_c00282{word-spacing:15.027200pt;}
.wsf_c00282{word-spacing:15.142400pt;}
.ws14_c00282{word-spacing:17.587200pt;}
.ws15_c00282{word-spacing:17.625600pt;}
.ws8_c00282{word-spacing:21.459200pt;}
.ws9_c00282{word-spacing:21.548800pt;}
._1_c00282{margin-left:-2.624000pt;}
._0_c00282{margin-left:-1.175680pt;}
._2_c00282{width:0.896000pt;}
.fs1_c00282{font-size:48.000000pt;}
.fs0_c00282{font-size:53.440000pt;}
.fs2_c00282{font-size:64.000000pt;}
.y0_c00282{bottom:0.000000pt;}
.y3_c00282{bottom:51.067067pt;}
.y20_c00282{bottom:109.547067pt;}
.y1f_c00282{bottom:140.187067pt;}
.y1e_c00282{bottom:170.747067pt;}
.y1d_c00282{bottom:209.387067pt;}
.y1c_c00282{bottom:239.947067pt;}
.y1b_c00282{bottom:270.587067pt;}
.y1a_c00282{bottom:309.147067pt;}
.y19_c00282{bottom:339.787067pt;}
.y18_c00282{bottom:370.347067pt;}
.y17_c00282{bottom:400.987067pt;}
.y16_c00282{bottom:439.547067pt;}
.y15_c00282{bottom:470.187067pt;}
.y14_c00282{bottom:500.747067pt;}
.y13_c00282{bottom:531.387067pt;}
.y12_c00282{bottom:561.947067pt;}
.y11_c00282{bottom:600.587067pt;}
.y10_c00282{bottom:631.147067pt;}
.yf_c00282{bottom:661.787067pt;}
.ye_c00282{bottom:692.347067pt;}
.yd_c00282{bottom:722.987067pt;}
.yc_c00282{bottom:753.547067pt;}
.yb_c00282{bottom:784.187067pt;}
.ya_c00282{bottom:822.747067pt;}
.y9_c00282{bottom:853.387067pt;}
.y8_c00282{bottom:883.947067pt;}
.y7_c00282{bottom:914.587067pt;}
.y6_c00282{bottom:945.147067pt;}
.y5_c00282{bottom:983.787067pt;}
.y4_c00282{bottom:1014.347067pt;}
.y2_c00282{bottom:1046.987067pt;}
.y1_c00282{bottom:1063.867067pt;}
.h1_c00282{height:44.724687pt;}
.h2_c00282{height:50.062500pt;}
.h4_c00282{height:53.562500pt;}
.h6_c00282{height:54.125000pt;}
.h3_c00282{height:64.142500pt;}
.h5_c00282{height:66.750000pt;}
.h0_c00282{height:1122.666667pt;}
.w1_c00282{width:793.333333pt;}
.w0_c00282{width:793.626667pt;}
.x0_c00282{left:0.000000pt;}
.x1_c00282{left:113.440000pt;}
.x4_c00282{left:137.440000pt;}
.x3_c00282{left:160.640000pt;}
.x2_c00282{left:207.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_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_a20e8f367a7a2f561e836cdf.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00283;src:url('chunks/assets/font_1182997a5d1db5be4861a92f.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00283;src:url('chunks/assets/font_98d907218692f87c83744446.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00283;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00283{font-family:ff5_c00283;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00283;src:url('chunks/assets/font_e5ef978f4ed898f81c7b55cf.woff2')format("woff");}.ff6_c00283{font-family:ff6_c00283;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_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;}
.v1_c00283{vertical-align:29.880000px;}
.lsd_c00283{letter-spacing:-0.151200px;}
.ls13_c00283{letter-spacing:-0.050400px;}
.ls15_c00283{letter-spacing:-0.043200px;}
.ls12_c00283{letter-spacing:-0.036000px;}
.ls11_c00283{letter-spacing:-0.028800px;}
.lse_c00283{letter-spacing:-0.021600px;}
.ls16_c00283{letter-spacing:-0.015552px;}
.ls10_c00283{letter-spacing:-0.014400px;}
.lsf_c00283{letter-spacing:-0.007200px;}
.lsc_c00283{letter-spacing:0.000000px;}
.ls5_c00283{letter-spacing:0.007200px;}
.ls8_c00283{letter-spacing:0.009576px;}
.lsb_c00283{letter-spacing:0.014364px;}
.ls4_c00283{letter-spacing:0.014400px;}
.ls6_c00283{letter-spacing:0.028800px;}
.ls0_c00283{letter-spacing:0.036072px;}
.lsa_c00283{letter-spacing:0.052668px;}
.ls7_c00283{letter-spacing:0.054756px;}
.ls9_c00283{letter-spacing:0.075960px;}
.ls14_c00283{letter-spacing:0.093600px;}
.ls1_c00283{letter-spacing:0.144000px;}
.ls3_c00283{letter-spacing:44.784000px;}
.ls2_c00283{letter-spacing:65.304000px;}
.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;}
}
.ws2_c00283{word-spacing:-18.014400px;}
.ws0_c00283{word-spacing:-17.971200px;}
.ws3_c00283{word-spacing:-13.320216px;}
.ws4_c00283{word-spacing:-13.310640px;}
.ws5_c00283{word-spacing:-10.793088px;}
.ws1_c00283{word-spacing:-10.584756px;}
.ws6_c00283{word-spacing:-0.306612px;}
.ws2a_c00283{word-spacing:-0.033516px;}
.ws13_c00283{word-spacing:-0.028800px;}
.ws7_c00283{word-spacing:0.000000px;}
.ws2b_c00283{word-spacing:0.004788px;}
.wsb_c00283{word-spacing:0.007200px;}
.ws20_c00283{word-spacing:0.014400px;}
.wse_c00283{word-spacing:0.021600px;}
.ws23_c00283{word-spacing:0.086400px;}
.ws16_c00283{word-spacing:0.180000px;}
.ws24_c00283{word-spacing:0.223200px;}
.ws29_c00283{word-spacing:0.325584px;}
.ws8_c00283{word-spacing:2.505600px;}
.wsd_c00283{word-spacing:2.548800px;}
.ws1a_c00283{word-spacing:2.800800px;}
.ws1b_c00283{word-spacing:2.808000px;}
.ws1f_c00283{word-spacing:2.865600px;}
.ws19_c00283{word-spacing:2.930400px;}
.ws1e_c00283{word-spacing:3.024000px;}
.ws9_c00283{word-spacing:3.247200px;}
.wsc_c00283{word-spacing:3.621600px;}
.ws28_c00283{word-spacing:3.643200px;}
.ws12_c00283{word-spacing:5.385600px;}
.ws11_c00283{word-spacing:5.407200px;}
.ws1c_c00283{word-spacing:9.691200px;}
.ws1d_c00283{word-spacing:9.871200px;}
.ws27_c00283{word-spacing:13.370400px;}
.wsf_c00283{word-spacing:14.724000px;}
.ws10_c00283{word-spacing:14.767200px;}
.wsa_c00283{word-spacing:17.316000px;}
.ws14_c00283{word-spacing:17.632800px;}
.ws15_c00283{word-spacing:17.647200px;}
.ws25_c00283{word-spacing:18.302400px;}
.ws26_c00283{word-spacing:18.345600px;}
.ws21_c00283{word-spacing:18.352800px;}
.ws22_c00283{word-spacing:18.453600px;}
.ws17_c00283{word-spacing:18.770400px;}
.ws18_c00283{word-spacing:24.141600px;}
._0_c00283{margin-left:-1.022040px;}
._1_c00283{width:1.080000px;}
.fc0_c00283{color:rgb(0,0,0);}
.fs5_c00283{font-size:38.880000px;}
.fs3_c00283{font-size:42.120000px;}
.fs4_c00283{font-size:47.880000px;}
.fs2_c00283{font-size:54.000000px;}
.fs0_c00283{font-size:60.120000px;}
.fs1_c00283{font-size:72.000000px;}
.y0_c00283{bottom:0.000000px;}
.y3_c00283{bottom:57.450450px;}
.y4_c00283{bottom:61.410450px;}
.y22_c00283{bottom:113.700450px;}
.y21_c00283{bottom:128.910450px;}
.y20_c00283{bottom:149.610450px;}
.y1f_c00283{bottom:170.310600px;}
.y1e_c00283{bottom:208.560600px;}
.y1d_c00283{bottom:242.940600px;}
.y1c_c00283{bottom:277.410600px;}
.y1b_c00283{bottom:311.790600px;}
.y1a_c00283{bottom:355.260600px;}
.y19_c00283{bottom:389.640600px;}
.y18_c00283{bottom:433.110450px;}
.y17_c00283{bottom:467.490450px;}
.y16_c00283{bottom:501.960450px;}
.y15_c00283{bottom:536.340450px;}
.y14_c00283{bottom:579.810450px;}
.y13_c00283{bottom:614.190450px;}
.y12_c00283{bottom:648.660450px;}
.y11_c00283{bottom:692.040450px;}
.y10_c00283{bottom:726.510450px;}
.yf_c00283{bottom:769.890450px;}
.ye_c00283{bottom:804.360450px;}
.yd_c00283{bottom:838.740450px;}
.yc_c00283{bottom:882.210450px;}
.yb_c00283{bottom:916.590450px;}
.ya_c00283{bottom:960.060450px;}
.y9_c00283{bottom:994.440450px;}
.y8_c00283{bottom:1037.910450px;}
.y7_c00283{bottom:1072.290450px;}
.y6_c00283{bottom:1106.760450px;}
.y5_c00283{bottom:1141.140450px;}
.y2_c00283{bottom:1173.810450px;}
.y1_c00283{bottom:1196.850450px;}
.h2_c00283{height:47.988281px;}
.h7_c00283{height:49.937344px;}
.h1_c00283{height:50.315273px;}
.h3_c00283{height:56.320312px;}
.h4_c00283{height:60.257812px;}
.h6_c00283{height:65.130820px;}
.h5_c00283{height:75.093750px;}
.h0_c00283{height:1263.000000px;}
.w1_c00283{width:892.500000px;}
.w0_c00283{width:892.830000px;}
.x0_c00283{left:0.000000px;}
.x2_c00283{left:127.620000px;}
.x7_c00283{left:154.620000px;}
.x6_c00283{left:180.720000px;}
.x8_c00283{left:208.620000px;}
.x5_c00283{left:233.820000px;}
.x9_c00283{left:235.620000px;}
.x4_c00283{left:435.240000px;}
.x3_c00283{left:446.490000px;}
.x1_c00283{left:490.770000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.v1_c00283{vertical-align:26.560000pt;}
.lsd_c00283{letter-spacing:-0.134400pt;}
.ls13_c00283{letter-spacing:-0.044800pt;}
.ls15_c00283{letter-spacing:-0.038400pt;}
.ls12_c00283{letter-spacing:-0.032000pt;}
.ls11_c00283{letter-spacing:-0.025600pt;}
.lse_c00283{letter-spacing:-0.019200pt;}
.ls16_c00283{letter-spacing:-0.013824pt;}
.ls10_c00283{letter-spacing:-0.012800pt;}
.lsf_c00283{letter-spacing:-0.006400pt;}
.lsc_c00283{letter-spacing:0.000000pt;}
.ls5_c00283{letter-spacing:0.006400pt;}
.ls8_c00283{letter-spacing:0.008512pt;}
.lsb_c00283{letter-spacing:0.012768pt;}
.ls4_c00283{letter-spacing:0.012800pt;}
.ls6_c00283{letter-spacing:0.025600pt;}
.ls0_c00283{letter-spacing:0.032064pt;}
.lsa_c00283{letter-spacing:0.046816pt;}
.ls7_c00283{letter-spacing:0.048672pt;}
.ls9_c00283{letter-spacing:0.067520pt;}
.ls14_c00283{letter-spacing:0.083200pt;}
.ls1_c00283{letter-spacing:0.128000pt;}
.ls3_c00283{letter-spacing:39.808000pt;}
.ls2_c00283{letter-spacing:58.048000pt;}
.ws2_c00283{word-spacing:-16.012800pt;}
.ws0_c00283{word-spacing:-15.974400pt;}
.ws3_c00283{word-spacing:-11.840192pt;}
.ws4_c00283{word-spacing:-11.831680pt;}
.ws5_c00283{word-spacing:-9.593856pt;}
.ws1_c00283{word-spacing:-9.408672pt;}
.ws6_c00283{word-spacing:-0.272544pt;}
.ws2a_c00283{word-spacing:-0.029792pt;}
.ws13_c00283{word-spacing:-0.025600pt;}
.ws7_c00283{word-spacing:0.000000pt;}
.ws2b_c00283{word-spacing:0.004256pt;}
.wsb_c00283{word-spacing:0.006400pt;}
.ws20_c00283{word-spacing:0.012800pt;}
.wse_c00283{word-spacing:0.019200pt;}
.ws23_c00283{word-spacing:0.076800pt;}
.ws16_c00283{word-spacing:0.160000pt;}
.ws24_c00283{word-spacing:0.198400pt;}
.ws29_c00283{word-spacing:0.289408pt;}
.ws8_c00283{word-spacing:2.227200pt;}
.wsd_c00283{word-spacing:2.265600pt;}
.ws1a_c00283{word-spacing:2.489600pt;}
.ws1b_c00283{word-spacing:2.496000pt;}
.ws1f_c00283{word-spacing:2.547200pt;}
.ws19_c00283{word-spacing:2.604800pt;}
.ws1e_c00283{word-spacing:2.688000pt;}
.ws9_c00283{word-spacing:2.886400pt;}
.wsc_c00283{word-spacing:3.219200pt;}
.ws28_c00283{word-spacing:3.238400pt;}
.ws12_c00283{word-spacing:4.787200pt;}
.ws11_c00283{word-spacing:4.806400pt;}
.ws1c_c00283{word-spacing:8.614400pt;}
.ws1d_c00283{word-spacing:8.774400pt;}
.ws27_c00283{word-spacing:11.884800pt;}
.wsf_c00283{word-spacing:13.088000pt;}
.ws10_c00283{word-spacing:13.126400pt;}
.wsa_c00283{word-spacing:15.392000pt;}
.ws14_c00283{word-spacing:15.673600pt;}
.ws15_c00283{word-spacing:15.686400pt;}
.ws25_c00283{word-spacing:16.268800pt;}
.ws26_c00283{word-spacing:16.307200pt;}
.ws21_c00283{word-spacing:16.313600pt;}
.ws22_c00283{word-spacing:16.403200pt;}
.ws17_c00283{word-spacing:16.684800pt;}
.ws18_c00283{word-spacing:21.459200pt;}
._0_c00283{margin-left:-0.908480pt;}
._1_c00283{width:0.960000pt;}
.fs5_c00283{font-size:34.560000pt;}
.fs3_c00283{font-size:37.440000pt;}
.fs4_c00283{font-size:42.560000pt;}
.fs2_c00283{font-size:48.000000pt;}
.fs0_c00283{font-size:53.440000pt;}
.fs1_c00283{font-size:64.000000pt;}
.y0_c00283{bottom:0.000000pt;}
.y3_c00283{bottom:51.067067pt;}
.y4_c00283{bottom:54.587067pt;}
.y22_c00283{bottom:101.067067pt;}
.y21_c00283{bottom:114.587067pt;}
.y20_c00283{bottom:132.987067pt;}
.y1f_c00283{bottom:151.387200pt;}
.y1e_c00283{bottom:185.387200pt;}
.y1d_c00283{bottom:215.947200pt;}
.y1c_c00283{bottom:246.587200pt;}
.y1b_c00283{bottom:277.147200pt;}
.y1a_c00283{bottom:315.787200pt;}
.y19_c00283{bottom:346.347200pt;}
.y18_c00283{bottom:384.987067pt;}
.y17_c00283{bottom:415.547067pt;}
.y16_c00283{bottom:446.187067pt;}
.y15_c00283{bottom:476.747067pt;}
.y14_c00283{bottom:515.387067pt;}
.y13_c00283{bottom:545.947067pt;}
.y12_c00283{bottom:576.587067pt;}
.y11_c00283{bottom:615.147067pt;}
.y10_c00283{bottom:645.787067pt;}
.yf_c00283{bottom:684.347067pt;}
.ye_c00283{bottom:714.987067pt;}
.yd_c00283{bottom:745.547067pt;}
.yc_c00283{bottom:784.187067pt;}
.yb_c00283{bottom:814.747067pt;}
.ya_c00283{bottom:853.387067pt;}
.y9_c00283{bottom:883.947067pt;}
.y8_c00283{bottom:922.587067pt;}
.y7_c00283{bottom:953.147067pt;}
.y6_c00283{bottom:983.787067pt;}
.y5_c00283{bottom:1014.347067pt;}
.y2_c00283{bottom:1043.387067pt;}
.y1_c00283{bottom:1063.867067pt;}
.h2_c00283{height:42.656250pt;}
.h7_c00283{height:44.388750pt;}
.h1_c00283{height:44.724687pt;}
.h3_c00283{height:50.062500pt;}
.h4_c00283{height:53.562500pt;}
.h6_c00283{height:57.894062pt;}
.h5_c00283{height:66.750000pt;}
.h0_c00283{height:1122.666667pt;}
.w1_c00283{width:793.333333pt;}
.w0_c00283{width:793.626667pt;}
.x0_c00283{left:0.000000pt;}
.x2_c00283{left:113.440000pt;}
.x7_c00283{left:137.440000pt;}
.x6_c00283{left:160.640000pt;}
.x8_c00283{left:185.440000pt;}
.x5_c00283{left:207.840000pt;}
.x9_c00283{left:209.440000pt;}
.x4_c00283{left:386.880000pt;}
.x3_c00283{left:396.880000pt;}
.x1_c00283{left:436.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_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_0b964ffc8fe3df5e3c9cf31e.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.100098;font-style:normal;font-weight:normal;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_ac35d90a535d57dec378f058.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;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_c00284;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00284;src:url('chunks/assets/font_8e797e8bb3854f3fd9475f0d.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00284;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00284{font-family:ff5_c00284;line-height:1.281250;font-style:normal;font-weight:normal;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_f8818d26f742a62d8964a3f6.woff2')format("woff");}.ff6_c00284{font-family:ff6_c00284;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.v1_c00284{vertical-align:15.840000px;}
.v2_c00284{vertical-align:29.880600px;}
.lsc_c00284{letter-spacing:-0.151200px;}
.ls13_c00284{letter-spacing:-0.050400px;}
.lsf_c00284{letter-spacing:-0.036000px;}
.lsd_c00284{letter-spacing:-0.028800px;}
.ls10_c00284{letter-spacing:-0.021600px;}
.ls11_c00284{letter-spacing:-0.014400px;}
.lse_c00284{letter-spacing:-0.007200px;}
.lsb_c00284{letter-spacing:0.000000px;}
.ls9_c00284{letter-spacing:0.007200px;}
.ls5_c00284{letter-spacing:0.014400px;}
.lsa_c00284{letter-spacing:0.033516px;}
.ls12_c00284{letter-spacing:0.036000px;}
.ls0_c00284{letter-spacing:0.048096px;}
.ls8_c00284{letter-spacing:0.054756px;}
.ls2_c00284{letter-spacing:0.144000px;}
.ls6_c00284{letter-spacing:0.216000px;}
.ls4_c00284{letter-spacing:44.784000px;}
.ls7_c00284{letter-spacing:54.864000px;}
.ls3_c00284{letter-spacing:65.304000px;}
.ls1_c00284{letter-spacing:1212.120000px;}
.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;}
.ws1_c00284{word-spacing:-10.584756px;}
.ws1d_c00284{word-spacing:-0.014400px;}
.ws24_c00284{word-spacing:-0.014364px;}
.ws3_c00284{word-spacing:0.000000px;}
.wsb_c00284{word-spacing:0.007200px;}
.ws15_c00284{word-spacing:0.014400px;}
.ws23_c00284{word-spacing:0.036000px;}
.ws2_c00284{word-spacing:0.042084px;}
.wsc_c00284{word-spacing:0.043200px;}
.ws17_c00284{word-spacing:0.064800px;}
.ws11_c00284{word-spacing:0.201600px;}
.ws7_c00284{word-spacing:0.741600px;}
.ws8_c00284{word-spacing:0.756000px;}
.ws14_c00284{word-spacing:1.764000px;}
.ws13_c00284{word-spacing:1.872000px;}
.wsf_c00284{word-spacing:2.217600px;}
.ws19_c00284{word-spacing:2.541600px;}
.wsd_c00284{word-spacing:4.305600px;}
.wse_c00284{word-spacing:4.413600px;}
.ws16_c00284{word-spacing:4.716000px;}
.wsa_c00284{word-spacing:5.032800px;}
.ws9_c00284{word-spacing:5.090400px;}
.ws4_c00284{word-spacing:5.428800px;}
.ws22_c00284{word-spacing:5.767200px;}
.ws21_c00284{word-spacing:5.846400px;}
.ws18_c00284{word-spacing:8.294400px;}
.ws10_c00284{word-spacing:11.188800px;}
.ws5_c00284{word-spacing:14.781600px;}
.ws12_c00284{word-spacing:15.861600px;}
.ws1f_c00284{word-spacing:15.948000px;}
.ws20_c00284{word-spacing:16.912800px;}
.ws1c_c00284{word-spacing:18.028800px;}
.ws6_c00284{word-spacing:19.850400px;}
.ws1a_c00284{word-spacing:25.308000px;}
.ws1b_c00284{word-spacing:25.401600px;}
.ws1e_c00284{word-spacing:41.400000px;}
._0_c00284{margin-left:-1.322640px;}
._1_c00284{width:1.008000px;}
.fc0_c00284{color:rgb(0,0,0);}
.fs3_c00284{font-size:42.120000px;}
.fs4_c00284{font-size:47.880000px;}
.fs1_c00284{font-size:54.000000px;}
.fs0_c00284{font-size:60.120000px;}
.fs2_c00284{font-size:72.000000px;}
.y0_c00284{bottom:0.000000px;}
.y3_c00284{bottom:57.450450px;}
.y21_c00284{bottom:113.700450px;}
.y20_c00284{bottom:128.910450px;}
.y1f_c00284{bottom:149.610450px;}
.y1e_c00284{bottom:170.310450px;}
.y1d_c00284{bottom:225.210450px;}
.y1c_c00284{bottom:259.680450px;}
.y1b_c00284{bottom:294.060450px;}
.y1a_c00284{bottom:328.530450px;}
.y19_c00284{bottom:362.910450px;}
.y18_c00284{bottom:406.380450px;}
.y17_c00284{bottom:440.760450px;}
.y16_c00284{bottom:475.230450px;}
.y15_c00284{bottom:509.610450px;}
.y14_c00284{bottom:544.080450px;}
.y13_c00284{bottom:587.460450px;}
.y12_c00284{bottom:621.930450px;}
.y11_c00284{bottom:665.940450px;}
.y10_c00284{bottom:700.410450px;}
.yf_c00284{bottom:734.880450px;}
.ye_c00284{bottom:778.890450px;}
.yd_c00284{bottom:813.360450px;}
.yc_c00284{bottom:847.740450px;}
.yb_c00284{bottom:882.210450px;}
.ya_c00284{bottom:925.590450px;}
.y9_c00284{bottom:969.060450px;}
.y8_c00284{bottom:1003.440450px;}
.y7_c00284{bottom:1037.910450px;}
.y6_c00284{bottom:1072.290450px;}
.y5_c00284{bottom:1106.760450px;}
.y4_c00284{bottom:1141.140450px;}
.y2_c00284{bottom:1177.860450px;}
.y1_c00284{bottom:1196.850450px;}
.h7_c00284{height:47.988281px;}
.h8_c00284{height:49.937344px;}
.h1_c00284{height:50.315273px;}
.h2_c00284{height:56.320312px;}
.h4_c00284{height:60.257812px;}
.h6_c00284{height:65.131420px;}
.h3_c00284{height:72.160312px;}
.h5_c00284{height:75.093750px;}
.h0_c00284{height:1263.000000px;}
.w1_c00284{width:892.500000px;}
.w0_c00284{width:892.830000px;}
.x0_c00284{left:0.000000px;}
.x1_c00284{left:127.620000px;}
.x4_c00284{left:154.620000px;}
.x3_c00284{left:180.720000px;}
.x5_c00284{left:208.620000px;}
.x2_c00284{left:233.820000px;}
.x6_c00284{left:235.620000px;}
.x7_c00284{left:262.620000px;}
.x8_c00284{left:289.620000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.v1_c00284{vertical-align:14.080000pt;}
.v2_c00284{vertical-align:26.560533pt;}
.lsc_c00284{letter-spacing:-0.134400pt;}
.ls13_c00284{letter-spacing:-0.044800pt;}
.lsf_c00284{letter-spacing:-0.032000pt;}
.lsd_c00284{letter-spacing:-0.025600pt;}
.ls10_c00284{letter-spacing:-0.019200pt;}
.ls11_c00284{letter-spacing:-0.012800pt;}
.lse_c00284{letter-spacing:-0.006400pt;}
.lsb_c00284{letter-spacing:0.000000pt;}
.ls9_c00284{letter-spacing:0.006400pt;}
.ls5_c00284{letter-spacing:0.012800pt;}
.lsa_c00284{letter-spacing:0.029792pt;}
.ls12_c00284{letter-spacing:0.032000pt;}
.ls0_c00284{letter-spacing:0.042752pt;}
.ls8_c00284{letter-spacing:0.048672pt;}
.ls2_c00284{letter-spacing:0.128000pt;}
.ls6_c00284{letter-spacing:0.192000pt;}
.ls4_c00284{letter-spacing:39.808000pt;}
.ls7_c00284{letter-spacing:48.768000pt;}
.ls3_c00284{letter-spacing:58.048000pt;}
.ls1_c00284{letter-spacing:1077.440000pt;}
.ws0_c00284{word-spacing:-16.000000pt;}
.ws1_c00284{word-spacing:-9.408672pt;}
.ws1d_c00284{word-spacing:-0.012800pt;}
.ws24_c00284{word-spacing:-0.012768pt;}
.ws3_c00284{word-spacing:0.000000pt;}
.wsb_c00284{word-spacing:0.006400pt;}
.ws15_c00284{word-spacing:0.012800pt;}
.ws23_c00284{word-spacing:0.032000pt;}
.ws2_c00284{word-spacing:0.037408pt;}
.wsc_c00284{word-spacing:0.038400pt;}
.ws17_c00284{word-spacing:0.057600pt;}
.ws11_c00284{word-spacing:0.179200pt;}
.ws7_c00284{word-spacing:0.659200pt;}
.ws8_c00284{word-spacing:0.672000pt;}
.ws14_c00284{word-spacing:1.568000pt;}
.ws13_c00284{word-spacing:1.664000pt;}
.wsf_c00284{word-spacing:1.971200pt;}
.ws19_c00284{word-spacing:2.259200pt;}
.wsd_c00284{word-spacing:3.827200pt;}
.wse_c00284{word-spacing:3.923200pt;}
.ws16_c00284{word-spacing:4.192000pt;}
.wsa_c00284{word-spacing:4.473600pt;}
.ws9_c00284{word-spacing:4.524800pt;}
.ws4_c00284{word-spacing:4.825600pt;}
.ws22_c00284{word-spacing:5.126400pt;}
.ws21_c00284{word-spacing:5.196800pt;}
.ws18_c00284{word-spacing:7.372800pt;}
.ws10_c00284{word-spacing:9.945600pt;}
.ws5_c00284{word-spacing:13.139200pt;}
.ws12_c00284{word-spacing:14.099200pt;}
.ws1f_c00284{word-spacing:14.176000pt;}
.ws20_c00284{word-spacing:15.033600pt;}
.ws1c_c00284{word-spacing:16.025600pt;}
.ws6_c00284{word-spacing:17.644800pt;}
.ws1a_c00284{word-spacing:22.496000pt;}
.ws1b_c00284{word-spacing:22.579200pt;}
.ws1e_c00284{word-spacing:36.800000pt;}
._0_c00284{margin-left:-1.175680pt;}
._1_c00284{width:0.896000pt;}
.fs3_c00284{font-size:37.440000pt;}
.fs4_c00284{font-size:42.560000pt;}
.fs1_c00284{font-size:48.000000pt;}
.fs0_c00284{font-size:53.440000pt;}
.fs2_c00284{font-size:64.000000pt;}
.y0_c00284{bottom:0.000000pt;}
.y3_c00284{bottom:51.067067pt;}
.y21_c00284{bottom:101.067067pt;}
.y20_c00284{bottom:114.587067pt;}
.y1f_c00284{bottom:132.987067pt;}
.y1e_c00284{bottom:151.387067pt;}
.y1d_c00284{bottom:200.187067pt;}
.y1c_c00284{bottom:230.827067pt;}
.y1b_c00284{bottom:261.387067pt;}
.y1a_c00284{bottom:292.027067pt;}
.y19_c00284{bottom:322.587067pt;}
.y18_c00284{bottom:361.227067pt;}
.y17_c00284{bottom:391.787067pt;}
.y16_c00284{bottom:422.427067pt;}
.y15_c00284{bottom:452.987067pt;}
.y14_c00284{bottom:483.627067pt;}
.y13_c00284{bottom:522.187067pt;}
.y12_c00284{bottom:552.827067pt;}
.y11_c00284{bottom:591.947067pt;}
.y10_c00284{bottom:622.587067pt;}
.yf_c00284{bottom:653.227067pt;}
.ye_c00284{bottom:692.347067pt;}
.yd_c00284{bottom:722.987067pt;}
.yc_c00284{bottom:753.547067pt;}
.yb_c00284{bottom:784.187067pt;}
.ya_c00284{bottom:822.747067pt;}
.y9_c00284{bottom:861.387067pt;}
.y8_c00284{bottom:891.947067pt;}
.y7_c00284{bottom:922.587067pt;}
.y6_c00284{bottom:953.147067pt;}
.y5_c00284{bottom:983.787067pt;}
.y4_c00284{bottom:1014.347067pt;}
.y2_c00284{bottom:1046.987067pt;}
.y1_c00284{bottom:1063.867067pt;}
.h7_c00284{height:42.656250pt;}
.h8_c00284{height:44.388750pt;}
.h1_c00284{height:44.724687pt;}
.h2_c00284{height:50.062500pt;}
.h4_c00284{height:53.562500pt;}
.h6_c00284{height:57.894596pt;}
.h3_c00284{height:64.142500pt;}
.h5_c00284{height:66.750000pt;}
.h0_c00284{height:1122.666667pt;}
.w1_c00284{width:793.333333pt;}
.w0_c00284{width:793.626667pt;}
.x0_c00284{left:0.000000pt;}
.x1_c00284{left:113.440000pt;}
.x4_c00284{left:137.440000pt;}
.x3_c00284{left:160.640000pt;}
.x5_c00284{left:185.440000pt;}
.x2_c00284{left:207.840000pt;}
.x6_c00284{left:209.440000pt;}
.x7_c00284{left:233.440000pt;}
.x8_c00284{left:257.440000pt;}
}





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




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1e83126e1a8f2c0c99ba717a.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.100098;font-style:normal;font-weight:normal;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_fa3ee9f7f3b2b2ee5d094b61.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;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_c00286;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00286;src:url('chunks/assets/font_75b98d82ab91005c73331fde.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00286;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00286{font-family:ff5_c00286;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_c00286;src:url('chunks/assets/font_9f7ae1490bcfcf072fd628b3.woff2')format("woff");}.ff6_c00286{font-family:ff6_c00286;line-height:1.102051;font-style:normal;font-weight:normal;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_36805b3f2721721609139e74.woff2')format("woff");}.ff7_c00286{font-family:ff7_c00286;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_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;}
.v1_c00286{vertical-align:15.840000px;}
.v2_c00286{vertical-align:29.880000px;}
.ls14_c00286{letter-spacing:-0.151200px;}
.ls17_c00286{letter-spacing:-0.046872px;}
.ls15_c00286{letter-spacing:-0.043200px;}
.ls1c_c00286{letter-spacing:-0.036000px;}
.ls1a_c00286{letter-spacing:-0.028800px;}
.ls18_c00286{letter-spacing:-0.021600px;}
.ls19_c00286{letter-spacing:-0.014400px;}
.ls16_c00286{letter-spacing:-0.007812px;}
.ls1d_c00286{letter-spacing:-0.007200px;}
.ls1f_c00286{letter-spacing:-0.003888px;}
.ls13_c00286{letter-spacing:0.000000px;}
.lse_c00286{letter-spacing:0.003888px;}
.ls1e_c00286{letter-spacing:0.007200px;}
.lsb_c00286{letter-spacing:0.014364px;}
.ls6_c00286{letter-spacing:0.014400px;}
.ls2_c00286{letter-spacing:0.021600px;}
.ls11_c00286{letter-spacing:0.023940px;}
.ls5_c00286{letter-spacing:0.028800px;}
.ls12_c00286{letter-spacing:0.033516px;}
.ls7_c00286{letter-spacing:0.036000px;}
.lsf_c00286{letter-spacing:0.043092px;}
.lsd_c00286{letter-spacing:0.047880px;}
.ls0_c00286{letter-spacing:0.048096px;}
.ls10_c00286{letter-spacing:0.052668px;}
.ls3_c00286{letter-spacing:0.054756px;}
.ls1b_c00286{letter-spacing:0.057600px;}
.ls8_c00286{letter-spacing:0.093600px;}
.ls9_c00286{letter-spacing:0.144000px;}
.lsc_c00286{letter-spacing:0.464040px;}
.ls4_c00286{letter-spacing:11.796120px;}
.lsa_c00286{letter-spacing:65.304000px;}
.ls1_c00286{letter-spacing:1212.120000px;}
.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:-19.522188px;}
.ws3_c00286{word-spacing:-18.028800px;}
.ws0_c00286{word-spacing:-18.021600px;}
.ws5_c00286{word-spacing:-18.014400px;}
.ws6_c00286{word-spacing:-18.000000px;}
.ws7_c00286{word-spacing:-17.985600px;}
.ws4_c00286{word-spacing:-17.978400px;}
.ws9_c00286{word-spacing:-10.812528px;}
.ws8_c00286{word-spacing:-10.804752px;}
.ws1_c00286{word-spacing:-10.584756px;}
.ws19_c00286{word-spacing:-0.093600px;}
.wsd_c00286{word-spacing:-0.086400px;}
.wse_c00286{word-spacing:-0.046872px;}
.ws2e_c00286{word-spacing:-0.033516px;}
.ws2b_c00286{word-spacing:-0.028728px;}
.ws2d_c00286{word-spacing:-0.023940px;}
.ws30_c00286{word-spacing:-0.014364px;}
.ws20_c00286{word-spacing:-0.007200px;}
.ws2f_c00286{word-spacing:-0.004788px;}
.wsb_c00286{word-spacing:0.000000px;}
.ws29_c00286{word-spacing:0.004788px;}
.ws23_c00286{word-spacing:0.007200px;}
.ws27_c00286{word-spacing:0.014400px;}
.ws2c_c00286{word-spacing:0.019152px;}
.ws10_c00286{word-spacing:0.028800px;}
.ws18_c00286{word-spacing:0.036000px;}
.wsa_c00286{word-spacing:0.042084px;}
.wsc_c00286{word-spacing:0.057600px;}
.ws11_c00286{word-spacing:0.100800px;}
.ws2a_c00286{word-spacing:0.363888px;}
.ws1b_c00286{word-spacing:1.108800px;}
.ws26_c00286{word-spacing:1.461600px;}
.ws21_c00286{word-spacing:1.800000px;}
.ws22_c00286{word-spacing:1.821600px;}
.ws14_c00286{word-spacing:3.585600px;}
.ws28_c00286{word-spacing:3.600000px;}
.ws13_c00286{word-spacing:3.614400px;}
.ws16_c00286{word-spacing:3.643200px;}
.ws17_c00286{word-spacing:3.686400px;}
.ws15_c00286{word-spacing:3.924000px;}
.ws1e_c00286{word-spacing:4.665600px;}
.ws1f_c00286{word-spacing:4.773600px;}
.ws12_c00286{word-spacing:5.032800px;}
.ws24_c00286{word-spacing:6.120000px;}
.wsf_c00286{word-spacing:9.381600px;}
.ws25_c00286{word-spacing:10.836000px;}
.ws1c_c00286{word-spacing:20.779200px;}
.ws1d_c00286{word-spacing:20.894400px;}
.ws1a_c00286{word-spacing:29.174400px;}
._0_c00286{margin-left:-1.322640px;}
._1_c00286{width:1.008000px;}
.fc0_c00286{color:rgb(0,0,0);}
.fs6_c00286{font-size:38.880000px;}
.fs3_c00286{font-size:42.120000px;}
.fs5_c00286{font-size:47.880000px;}
.fs1_c00286{font-size:54.000000px;}
.fs0_c00286{font-size:60.120000px;}
.fs2_c00286{font-size:72.000000px;}
.fs4_c00286{font-size:78.120000px;}
.y0_c00286{bottom:0.000000px;}
.y3_c00286{bottom:57.450450px;}
.y22_c00286{bottom:113.698470px;}
.y21_c00286{bottom:132.064230px;}
.y20_c00286{bottom:150.334230px;}
.y1f_c00286{bottom:168.598620px;}
.y1e_c00286{bottom:186.960600px;}
.y1d_c00286{bottom:202.170450px;}
.y1c_c00286{bottom:222.870450px;}
.y1b_c00286{bottom:243.570450px;}
.y1a_c00286{bottom:290.910450px;}
.y19_c00286{bottom:325.380450px;}
.y18_c00286{bottom:368.760450px;}
.y17_c00286{bottom:403.230450px;}
.y16_c00286{bottom:437.610450px;}
.y15_c00286{bottom:472.080450px;}
.y14_c00286{bottom:515.460450px;}
.y13_c00286{bottom:549.930450px;}
.y12_c00286{bottom:593.310450px;}
.y11_c00286{bottom:636.780450px;}
.y10_c00286{bottom:671.160450px;}
.yf_c00286{bottom:714.630450px;}
.ye_c00286{bottom:749.010450px;}
.yd_c00286{bottom:783.480450px;}
.yc_c00286{bottom:817.860450px;}
.yb_c00286{bottom:861.330450px;}
.ya_c00286{bottom:895.710450px;}
.y9_c00286{bottom:930.180450px;}
.y8_c00286{bottom:973.560450px;}
.y7_c00286{bottom:1008.030450px;}
.y6_c00286{bottom:1053.030450px;}
.y5_c00286{bottom:1106.760450px;}
.y4_c00286{bottom:1141.140450px;}
.y2_c00286{bottom:1177.860450px;}
.y1_c00286{bottom:1196.850450px;}
.ha_c00286{height:47.988281px;}
.hb_c00286{height:49.937344px;}
.hc_c00286{height:49.944664px;}
.h1_c00286{height:50.315273px;}
.h2_c00286{height:56.320312px;}
.h4_c00286{height:60.257812px;}
.h7_c00286{height:60.890625px;}
.h5_c00286{height:65.130820px;}
.h9_c00286{height:65.131420px;}
.h3_c00286{height:72.160312px;}
.h8_c00286{height:75.093750px;}
.h6_c00286{height:81.476719px;}
.h0_c00286{height:1263.000000px;}
.w1_c00286{width:892.500000px;}
.w0_c00286{width:892.830000px;}
.x0_c00286{left:0.000000px;}
.x1_c00286{left:127.620000px;}
.x3_c00286{left:154.620000px;}
.x2_c00286{left:180.810000px;}
.x4_c00286{left:206.820000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.v1_c00286{vertical-align:14.080000pt;}
.v2_c00286{vertical-align:26.560000pt;}
.ls14_c00286{letter-spacing:-0.134400pt;}
.ls17_c00286{letter-spacing:-0.041664pt;}
.ls15_c00286{letter-spacing:-0.038400pt;}
.ls1c_c00286{letter-spacing:-0.032000pt;}
.ls1a_c00286{letter-spacing:-0.025600pt;}
.ls18_c00286{letter-spacing:-0.019200pt;}
.ls19_c00286{letter-spacing:-0.012800pt;}
.ls16_c00286{letter-spacing:-0.006944pt;}
.ls1d_c00286{letter-spacing:-0.006400pt;}
.ls1f_c00286{letter-spacing:-0.003456pt;}
.ls13_c00286{letter-spacing:0.000000pt;}
.lse_c00286{letter-spacing:0.003456pt;}
.ls1e_c00286{letter-spacing:0.006400pt;}
.lsb_c00286{letter-spacing:0.012768pt;}
.ls6_c00286{letter-spacing:0.012800pt;}
.ls2_c00286{letter-spacing:0.019200pt;}
.ls11_c00286{letter-spacing:0.021280pt;}
.ls5_c00286{letter-spacing:0.025600pt;}
.ls12_c00286{letter-spacing:0.029792pt;}
.ls7_c00286{letter-spacing:0.032000pt;}
.lsf_c00286{letter-spacing:0.038304pt;}
.lsd_c00286{letter-spacing:0.042560pt;}
.ls0_c00286{letter-spacing:0.042752pt;}
.ls10_c00286{letter-spacing:0.046816pt;}
.ls3_c00286{letter-spacing:0.048672pt;}
.ls1b_c00286{letter-spacing:0.051200pt;}
.ls8_c00286{letter-spacing:0.083200pt;}
.ls9_c00286{letter-spacing:0.128000pt;}
.lsc_c00286{letter-spacing:0.412480pt;}
.ls4_c00286{letter-spacing:10.485440pt;}
.lsa_c00286{letter-spacing:58.048000pt;}
.ls1_c00286{letter-spacing:1077.440000pt;}
.ws2_c00286{word-spacing:-17.353056pt;}
.ws3_c00286{word-spacing:-16.025600pt;}
.ws0_c00286{word-spacing:-16.019200pt;}
.ws5_c00286{word-spacing:-16.012800pt;}
.ws6_c00286{word-spacing:-16.000000pt;}
.ws7_c00286{word-spacing:-15.987200pt;}
.ws4_c00286{word-spacing:-15.980800pt;}
.ws9_c00286{word-spacing:-9.611136pt;}
.ws8_c00286{word-spacing:-9.604224pt;}
.ws1_c00286{word-spacing:-9.408672pt;}
.ws19_c00286{word-spacing:-0.083200pt;}
.wsd_c00286{word-spacing:-0.076800pt;}
.wse_c00286{word-spacing:-0.041664pt;}
.ws2e_c00286{word-spacing:-0.029792pt;}
.ws2b_c00286{word-spacing:-0.025536pt;}
.ws2d_c00286{word-spacing:-0.021280pt;}
.ws30_c00286{word-spacing:-0.012768pt;}
.ws20_c00286{word-spacing:-0.006400pt;}
.ws2f_c00286{word-spacing:-0.004256pt;}
.wsb_c00286{word-spacing:0.000000pt;}
.ws29_c00286{word-spacing:0.004256pt;}
.ws23_c00286{word-spacing:0.006400pt;}
.ws27_c00286{word-spacing:0.012800pt;}
.ws2c_c00286{word-spacing:0.017024pt;}
.ws10_c00286{word-spacing:0.025600pt;}
.ws18_c00286{word-spacing:0.032000pt;}
.wsa_c00286{word-spacing:0.037408pt;}
.wsc_c00286{word-spacing:0.051200pt;}
.ws11_c00286{word-spacing:0.089600pt;}
.ws2a_c00286{word-spacing:0.323456pt;}
.ws1b_c00286{word-spacing:0.985600pt;}
.ws26_c00286{word-spacing:1.299200pt;}
.ws21_c00286{word-spacing:1.600000pt;}
.ws22_c00286{word-spacing:1.619200pt;}
.ws14_c00286{word-spacing:3.187200pt;}
.ws28_c00286{word-spacing:3.200000pt;}
.ws13_c00286{word-spacing:3.212800pt;}
.ws16_c00286{word-spacing:3.238400pt;}
.ws17_c00286{word-spacing:3.276800pt;}
.ws15_c00286{word-spacing:3.488000pt;}
.ws1e_c00286{word-spacing:4.147200pt;}
.ws1f_c00286{word-spacing:4.243200pt;}
.ws12_c00286{word-spacing:4.473600pt;}
.ws24_c00286{word-spacing:5.440000pt;}
.wsf_c00286{word-spacing:8.339200pt;}
.ws25_c00286{word-spacing:9.632000pt;}
.ws1c_c00286{word-spacing:18.470400pt;}
.ws1d_c00286{word-spacing:18.572800pt;}
.ws1a_c00286{word-spacing:25.932800pt;}
._0_c00286{margin-left:-1.175680pt;}
._1_c00286{width:0.896000pt;}
.fs6_c00286{font-size:34.560000pt;}
.fs3_c00286{font-size:37.440000pt;}
.fs5_c00286{font-size:42.560000pt;}
.fs1_c00286{font-size:48.000000pt;}
.fs0_c00286{font-size:53.440000pt;}
.fs2_c00286{font-size:64.000000pt;}
.fs4_c00286{font-size:69.440000pt;}
.y0_c00286{bottom:0.000000pt;}
.y3_c00286{bottom:51.067067pt;}
.y22_c00286{bottom:101.065307pt;}
.y21_c00286{bottom:117.390427pt;}
.y20_c00286{bottom:133.630427pt;}
.y1f_c00286{bottom:149.865440pt;}
.y1e_c00286{bottom:166.187200pt;}
.y1d_c00286{bottom:179.707067pt;}
.y1c_c00286{bottom:198.107067pt;}
.y1b_c00286{bottom:216.507067pt;}
.y1a_c00286{bottom:258.587067pt;}
.y19_c00286{bottom:289.227067pt;}
.y18_c00286{bottom:327.787067pt;}
.y17_c00286{bottom:358.427067pt;}
.y16_c00286{bottom:388.987067pt;}
.y15_c00286{bottom:419.627067pt;}
.y14_c00286{bottom:458.187067pt;}
.y13_c00286{bottom:488.827067pt;}
.y12_c00286{bottom:527.387067pt;}
.y11_c00286{bottom:566.027067pt;}
.y10_c00286{bottom:596.587067pt;}
.yf_c00286{bottom:635.227067pt;}
.ye_c00286{bottom:665.787067pt;}
.yd_c00286{bottom:696.427067pt;}
.yc_c00286{bottom:726.987067pt;}
.yb_c00286{bottom:765.627067pt;}
.ya_c00286{bottom:796.187067pt;}
.y9_c00286{bottom:826.827067pt;}
.y8_c00286{bottom:865.387067pt;}
.y7_c00286{bottom:896.027067pt;}
.y6_c00286{bottom:936.027067pt;}
.y5_c00286{bottom:983.787067pt;}
.y4_c00286{bottom:1014.347067pt;}
.y2_c00286{bottom:1046.987067pt;}
.y1_c00286{bottom:1063.867067pt;}
.ha_c00286{height:42.656250pt;}
.hb_c00286{height:44.388750pt;}
.hc_c00286{height:44.395257pt;}
.h1_c00286{height:44.724687pt;}
.h2_c00286{height:50.062500pt;}
.h4_c00286{height:53.562500pt;}
.h7_c00286{height:54.125000pt;}
.h5_c00286{height:57.894063pt;}
.h9_c00286{height:57.894596pt;}
.h3_c00286{height:64.142500pt;}
.h8_c00286{height:66.750000pt;}
.h6_c00286{height:72.423750pt;}
.h0_c00286{height:1122.666667pt;}
.w1_c00286{width:793.333333pt;}
.w0_c00286{width:793.626667pt;}
.x0_c00286{left:0.000000pt;}
.x1_c00286{left:113.440000pt;}
.x3_c00286{left:137.440000pt;}
.x2_c00286{left:160.720000pt;}
.x4_c00286{left:183.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_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_b6eea2d19aadb2be28e7e532.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00287;src:url('chunks/assets/font_d6ec580ae54e174042ec9efa.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00287;src:url('chunks/assets/font_3e901ee537038dc06cc605c3.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00287;src:url('chunks/assets/font_3dadd9da620294389897f437.woff2')format("woff");}.ff5_c00287{font-family:ff5_c00287;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_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;}
.v2_c00287{vertical-align:24.102000px;}
.v1_c00287{vertical-align:29.880000px;}
.ls11_c00287{letter-spacing:-0.151200px;}
.ls19_c00287{letter-spacing:-0.072000px;}
.ls18_c00287{letter-spacing:-0.043200px;}
.ls17_c00287{letter-spacing:-0.036000px;}
.ls13_c00287{letter-spacing:-0.028800px;}
.ls1e_c00287{letter-spacing:-0.023940px;}
.ls16_c00287{letter-spacing:-0.021600px;}
.ls1d_c00287{letter-spacing:-0.019152px;}
.ls14_c00287{letter-spacing:-0.014400px;}
.ls1b_c00287{letter-spacing:-0.011664px;}
.ls12_c00287{letter-spacing:-0.007200px;}
.ls20_c00287{letter-spacing:-0.004788px;}
.ls1f_c00287{letter-spacing:-0.003888px;}
.ls10_c00287{letter-spacing:0.000000px;}
.ls4_c00287{letter-spacing:0.007200px;}
.lsd_c00287{letter-spacing:0.014364px;}
.lsc_c00287{letter-spacing:0.023940px;}
.ls7_c00287{letter-spacing:0.028728px;}
.lsf_c00287{letter-spacing:0.033516px;}
.ls0_c00287{letter-spacing:0.036072px;}
.ls8_c00287{letter-spacing:0.038304px;}
.ls9_c00287{letter-spacing:0.043092px;}
.lsb_c00287{letter-spacing:0.047880px;}
.ls3_c00287{letter-spacing:0.054756px;}
.ls6_c00287{letter-spacing:0.079200px;}
.ls15_c00287{letter-spacing:0.093600px;}
.lsa_c00287{letter-spacing:0.104040px;}
.ls1_c00287{letter-spacing:0.144000px;}
.ls1a_c00287{letter-spacing:0.346032px;}
.ls1c_c00287{letter-spacing:0.378252px;}
.lse_c00287{letter-spacing:0.464040px;}
.ls2_c00287{letter-spacing:65.304000px;}
.ls5_c00287{letter-spacing:66.024000px;}
.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;}
}
.ws1_c00287{word-spacing:-17.971200px;}
.ws4_c00287{word-spacing:-10.804752px;}
.ws2_c00287{word-spacing:-10.796976px;}
.ws0_c00287{word-spacing:-10.584756px;}
.ws3_c00287{word-spacing:-8.306640px;}
.ws5_c00287{word-spacing:-0.306612px;}
.ws29_c00287{word-spacing:-0.028728px;}
.ws2f_c00287{word-spacing:-0.023940px;}
.ws31_c00287{word-spacing:-0.014364px;}
.ws26_c00287{word-spacing:-0.009576px;}
.ws2b_c00287{word-spacing:-0.004788px;}
.ws6_c00287{word-spacing:0.000000px;}
.ws2c_c00287{word-spacing:0.004788px;}
.wsd_c00287{word-spacing:0.007200px;}
.wsa_c00287{word-spacing:0.014400px;}
.ws2e_c00287{word-spacing:0.023940px;}
.ws13_c00287{word-spacing:0.036000px;}
.ws2a_c00287{word-spacing:0.043092px;}
.ws7_c00287{word-spacing:0.057600px;}
.ws8_c00287{word-spacing:0.064800px;}
.ws1a_c00287{word-spacing:0.295200px;}
.ws1b_c00287{word-spacing:0.352800px;}
.ws2d_c00287{word-spacing:0.363888px;}
.ws30_c00287{word-spacing:1.426824px;}
.ws1e_c00287{word-spacing:1.447200px;}
.ws1d_c00287{word-spacing:1.490400px;}
.ws28_c00287{word-spacing:1.776348px;}
.ws27_c00287{word-spacing:1.781136px;}
.ws12_c00287{word-spacing:2.563200px;}
.ws11_c00287{word-spacing:2.649600px;}
.wsf_c00287{word-spacing:4.377600px;}
.ws10_c00287{word-spacing:4.392000px;}
.ws20_c00287{word-spacing:6.487200px;}
.ws1f_c00287{word-spacing:6.494400px;}
.ws14_c00287{word-spacing:7.876800px;}
.ws9_c00287{word-spacing:8.992800px;}
.ws24_c00287{word-spacing:11.512800px;}
.ws25_c00287{word-spacing:11.541600px;}
.ws23_c00287{word-spacing:11.563200px;}
.ws22_c00287{word-spacing:12.520800px;}
.ws21_c00287{word-spacing:12.643200px;}
.ws15_c00287{word-spacing:14.767200px;}
.ws16_c00287{word-spacing:14.839200px;}
.ws19_c00287{word-spacing:16.538400px;}
.ws17_c00287{word-spacing:16.603200px;}
.ws1c_c00287{word-spacing:16.617600px;}
.ws18_c00287{word-spacing:16.632000px;}
.wsb_c00287{word-spacing:16.984800px;}
.wsc_c00287{word-spacing:17.028000px;}
.wse_c00287{word-spacing:20.901600px;}
._2_c00287{margin-left:-7.848000px;}
._0_c00287{margin-left:-1.022040px;}
._1_c00287{width:1.224000px;}
._3_c00287{width:2.738988px;}
.fc0_c00287{color:rgb(0,0,0);}
.fs6_c00287{font-size:29.880000px;}
.fs5_c00287{font-size:38.880000px;}
.fs3_c00287{font-size:42.120000px;}
.fs4_c00287{font-size:47.880000px;}
.fs2_c00287{font-size:54.000000px;}
.fs0_c00287{font-size:60.120000px;}
.fs1_c00287{font-size:72.000000px;}
.y0_c00287{bottom:0.000000px;}
.y3_c00287{bottom:57.450450px;}
.y4_c00287{bottom:61.410450px;}
.y23_c00287{bottom:113.702970px;}
.y22_c00287{bottom:127.564230px;}
.y21_c00287{bottom:145.834230px;}
.y20_c00287{bottom:164.098620px;}
.y1f_c00287{bottom:182.464950px;}
.y1e_c00287{bottom:196.234230px;}
.y1d_c00287{bottom:214.500450px;}
.y1c_c00287{bottom:229.710450px;}
.y1b_c00287{bottom:250.410450px;}
.y1a_c00287{bottom:271.110450px;}
.y19_c00287{bottom:389.640600px;}
.y18_c00287{bottom:424.110450px;}
.y17_c00287{bottom:458.490450px;}
.y16_c00287{bottom:492.960450px;}
.y15_c00287{bottom:527.340450px;}
.y14_c00287{bottom:579.810450px;}
.y13_c00287{bottom:614.190450px;}
.y12_c00287{bottom:648.660450px;}
.y11_c00287{bottom:683.040450px;}
.y10_c00287{bottom:717.510450px;}
.yf_c00287{bottom:760.890450px;}
.ye_c00287{bottom:795.360450px;}
.yd_c00287{bottom:829.740450px;}
.yc_c00287{bottom:873.210450px;}
.yb_c00287{bottom:907.590450px;}
.ya_c00287{bottom:951.060450px;}
.y9_c00287{bottom:985.440450px;}
.y8_c00287{bottom:1028.910450px;}
.y7_c00287{bottom:1063.290450px;}
.y6_c00287{bottom:1106.760450px;}
.y5_c00287{bottom:1141.140450px;}
.y2_c00287{bottom:1173.810450px;}
.y1_c00287{bottom:1196.850450px;}
.h2_c00287{height:47.988281px;}
.h8_c00287{height:49.937344px;}
.ha_c00287{height:49.944664px;}
.h1_c00287{height:50.315273px;}
.h9_c00287{height:55.265906px;}
.h3_c00287{height:56.320312px;}
.h6_c00287{height:60.257812px;}
.h7_c00287{height:60.890625px;}
.h5_c00287{height:65.130820px;}
.h4_c00287{height:75.093750px;}
.h0_c00287{height:1263.000000px;}
.w1_c00287{width:892.500000px;}
.w0_c00287{width:892.830000px;}
.x0_c00287{left:0.000000px;}
.x2_c00287{left:127.620000px;}
.x5_c00287{left:154.620000px;}
.x6_c00287{left:181.620000px;}
.x7_c00287{left:207.000000px;}
.x4_c00287{left:435.240000px;}
.x3_c00287{left:446.490000px;}
.x1_c00287{left:490.770000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.v2_c00287{vertical-align:21.424000pt;}
.v1_c00287{vertical-align:26.560000pt;}
.ls11_c00287{letter-spacing:-0.134400pt;}
.ls19_c00287{letter-spacing:-0.064000pt;}
.ls18_c00287{letter-spacing:-0.038400pt;}
.ls17_c00287{letter-spacing:-0.032000pt;}
.ls13_c00287{letter-spacing:-0.025600pt;}
.ls1e_c00287{letter-spacing:-0.021280pt;}
.ls16_c00287{letter-spacing:-0.019200pt;}
.ls1d_c00287{letter-spacing:-0.017024pt;}
.ls14_c00287{letter-spacing:-0.012800pt;}
.ls1b_c00287{letter-spacing:-0.010368pt;}
.ls12_c00287{letter-spacing:-0.006400pt;}
.ls20_c00287{letter-spacing:-0.004256pt;}
.ls1f_c00287{letter-spacing:-0.003456pt;}
.ls10_c00287{letter-spacing:0.000000pt;}
.ls4_c00287{letter-spacing:0.006400pt;}
.lsd_c00287{letter-spacing:0.012768pt;}
.lsc_c00287{letter-spacing:0.021280pt;}
.ls7_c00287{letter-spacing:0.025536pt;}
.lsf_c00287{letter-spacing:0.029792pt;}
.ls0_c00287{letter-spacing:0.032064pt;}
.ls8_c00287{letter-spacing:0.034048pt;}
.ls9_c00287{letter-spacing:0.038304pt;}
.lsb_c00287{letter-spacing:0.042560pt;}
.ls3_c00287{letter-spacing:0.048672pt;}
.ls6_c00287{letter-spacing:0.070400pt;}
.ls15_c00287{letter-spacing:0.083200pt;}
.lsa_c00287{letter-spacing:0.092480pt;}
.ls1_c00287{letter-spacing:0.128000pt;}
.ls1a_c00287{letter-spacing:0.307584pt;}
.ls1c_c00287{letter-spacing:0.336224pt;}
.lse_c00287{letter-spacing:0.412480pt;}
.ls2_c00287{letter-spacing:58.048000pt;}
.ls5_c00287{letter-spacing:58.688000pt;}
.ws1_c00287{word-spacing:-15.974400pt;}
.ws4_c00287{word-spacing:-9.604224pt;}
.ws2_c00287{word-spacing:-9.597312pt;}
.ws0_c00287{word-spacing:-9.408672pt;}
.ws3_c00287{word-spacing:-7.383680pt;}
.ws5_c00287{word-spacing:-0.272544pt;}
.ws29_c00287{word-spacing:-0.025536pt;}
.ws2f_c00287{word-spacing:-0.021280pt;}
.ws31_c00287{word-spacing:-0.012768pt;}
.ws26_c00287{word-spacing:-0.008512pt;}
.ws2b_c00287{word-spacing:-0.004256pt;}
.ws6_c00287{word-spacing:0.000000pt;}
.ws2c_c00287{word-spacing:0.004256pt;}
.wsd_c00287{word-spacing:0.006400pt;}
.wsa_c00287{word-spacing:0.012800pt;}
.ws2e_c00287{word-spacing:0.021280pt;}
.ws13_c00287{word-spacing:0.032000pt;}
.ws2a_c00287{word-spacing:0.038304pt;}
.ws7_c00287{word-spacing:0.051200pt;}
.ws8_c00287{word-spacing:0.057600pt;}
.ws1a_c00287{word-spacing:0.262400pt;}
.ws1b_c00287{word-spacing:0.313600pt;}
.ws2d_c00287{word-spacing:0.323456pt;}
.ws30_c00287{word-spacing:1.268288pt;}
.ws1e_c00287{word-spacing:1.286400pt;}
.ws1d_c00287{word-spacing:1.324800pt;}
.ws28_c00287{word-spacing:1.578976pt;}
.ws27_c00287{word-spacing:1.583232pt;}
.ws12_c00287{word-spacing:2.278400pt;}
.ws11_c00287{word-spacing:2.355200pt;}
.wsf_c00287{word-spacing:3.891200pt;}
.ws10_c00287{word-spacing:3.904000pt;}
.ws20_c00287{word-spacing:5.766400pt;}
.ws1f_c00287{word-spacing:5.772800pt;}
.ws14_c00287{word-spacing:7.001600pt;}
.ws9_c00287{word-spacing:7.993600pt;}
.ws24_c00287{word-spacing:10.233600pt;}
.ws25_c00287{word-spacing:10.259200pt;}
.ws23_c00287{word-spacing:10.278400pt;}
.ws22_c00287{word-spacing:11.129600pt;}
.ws21_c00287{word-spacing:11.238400pt;}
.ws15_c00287{word-spacing:13.126400pt;}
.ws16_c00287{word-spacing:13.190400pt;}
.ws19_c00287{word-spacing:14.700800pt;}
.ws17_c00287{word-spacing:14.758400pt;}
.ws1c_c00287{word-spacing:14.771200pt;}
.ws18_c00287{word-spacing:14.784000pt;}
.wsb_c00287{word-spacing:15.097600pt;}
.wsc_c00287{word-spacing:15.136000pt;}
.wse_c00287{word-spacing:18.579200pt;}
._2_c00287{margin-left:-6.976000pt;}
._0_c00287{margin-left:-0.908480pt;}
._1_c00287{width:1.088000pt;}
._3_c00287{width:2.434656pt;}
.fs6_c00287{font-size:26.560000pt;}
.fs5_c00287{font-size:34.560000pt;}
.fs3_c00287{font-size:37.440000pt;}
.fs4_c00287{font-size:42.560000pt;}
.fs2_c00287{font-size:48.000000pt;}
.fs0_c00287{font-size:53.440000pt;}
.fs1_c00287{font-size:64.000000pt;}
.y0_c00287{bottom:0.000000pt;}
.y3_c00287{bottom:51.067067pt;}
.y4_c00287{bottom:54.587067pt;}
.y23_c00287{bottom:101.069307pt;}
.y22_c00287{bottom:113.390427pt;}
.y21_c00287{bottom:129.630427pt;}
.y20_c00287{bottom:145.865440pt;}
.y1f_c00287{bottom:162.191067pt;}
.y1e_c00287{bottom:174.430427pt;}
.y1d_c00287{bottom:190.667067pt;}
.y1c_c00287{bottom:204.187067pt;}
.y1b_c00287{bottom:222.587067pt;}
.y1a_c00287{bottom:240.987067pt;}
.y19_c00287{bottom:346.347200pt;}
.y18_c00287{bottom:376.987067pt;}
.y17_c00287{bottom:407.547067pt;}
.y16_c00287{bottom:438.187067pt;}
.y15_c00287{bottom:468.747067pt;}
.y14_c00287{bottom:515.387067pt;}
.y13_c00287{bottom:545.947067pt;}
.y12_c00287{bottom:576.587067pt;}
.y11_c00287{bottom:607.147067pt;}
.y10_c00287{bottom:637.787067pt;}
.yf_c00287{bottom:676.347067pt;}
.ye_c00287{bottom:706.987067pt;}
.yd_c00287{bottom:737.547067pt;}
.yc_c00287{bottom:776.187067pt;}
.yb_c00287{bottom:806.747067pt;}
.ya_c00287{bottom:845.387067pt;}
.y9_c00287{bottom:875.947067pt;}
.y8_c00287{bottom:914.587067pt;}
.y7_c00287{bottom:945.147067pt;}
.y6_c00287{bottom:983.787067pt;}
.y5_c00287{bottom:1014.347067pt;}
.y2_c00287{bottom:1043.387067pt;}
.y1_c00287{bottom:1063.867067pt;}
.h2_c00287{height:42.656250pt;}
.h8_c00287{height:44.388750pt;}
.ha_c00287{height:44.395257pt;}
.h1_c00287{height:44.724687pt;}
.h9_c00287{height:49.125250pt;}
.h3_c00287{height:50.062500pt;}
.h6_c00287{height:53.562500pt;}
.h7_c00287{height:54.125000pt;}
.h5_c00287{height:57.894063pt;}
.h4_c00287{height:66.750000pt;}
.h0_c00287{height:1122.666667pt;}
.w1_c00287{width:793.333333pt;}
.w0_c00287{width:793.626667pt;}
.x0_c00287{left:0.000000pt;}
.x2_c00287{left:113.440000pt;}
.x5_c00287{left:137.440000pt;}
.x6_c00287{left:161.440000pt;}
.x7_c00287{left:184.000000pt;}
.x4_c00287{left:386.880000pt;}
.x3_c00287{left:396.880000pt;}
.x1_c00287{left:436.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_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_4ea7c9edbda8d1556a35ffd4.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.100098;font-style:normal;font-weight:normal;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_65c531e76b5ebbaae1022eb8.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;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_c00288;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_47f887e3395178d9096fc86f.woff2')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:1.102051;font-style:normal;font-weight:normal;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_2d8d7c044dc5ed1820ab441d.woff2')format("woff");}.ff5_c00288{font-family:ff5_c00288;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00288;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00288{font-family:ff6_c00288;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00288;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff7_c00288{font-family:ff7_c00288;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_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;}
.v1_c00288{vertical-align:15.840000px;}
.v2_c00288{vertical-align:29.880000px;}
.lsc_c00288{letter-spacing:-0.151200px;}
.ls11_c00288{letter-spacing:-0.054684px;}
.ls14_c00288{letter-spacing:-0.046872px;}
.lsf_c00288{letter-spacing:-0.043200px;}
.ls13_c00288{letter-spacing:-0.031248px;}
.ls12_c00288{letter-spacing:-0.028800px;}
.ls15_c00288{letter-spacing:-0.021600px;}
.lsd_c00288{letter-spacing:-0.014400px;}
.ls10_c00288{letter-spacing:-0.007812px;}
.lse_c00288{letter-spacing:-0.007200px;}
.ls16_c00288{letter-spacing:-0.003888px;}
.lsb_c00288{letter-spacing:0.000000px;}
.ls4_c00288{letter-spacing:0.007200px;}
.ls7_c00288{letter-spacing:0.014364px;}
.ls5_c00288{letter-spacing:0.021600px;}
.lsa_c00288{letter-spacing:0.043092px;}
.ls9_c00288{letter-spacing:0.047880px;}
.ls0_c00288{letter-spacing:0.048096px;}
.ls2_c00288{letter-spacing:0.054756px;}
.ls8_c00288{letter-spacing:0.464040px;}
.ls3_c00288{letter-spacing:11.796120px;}
.ls6_c00288{letter-spacing:51.012360px;}
.ls1_c00288{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00288{word-spacing:-19.522188px;}
.ws3_c00288{word-spacing:-19.498752px;}
.ws1_c00288{word-spacing:-17.956800px;}
.ws4_c00288{word-spacing:-10.804752px;}
.ws0_c00288{word-spacing:-10.584756px;}
.ws15_c00288{word-spacing:-0.164052px;}
.wsa_c00288{word-spacing:-0.124992px;}
.ws27_c00288{word-spacing:-0.064800px;}
.ws16_c00288{word-spacing:-0.039060px;}
.ws2a_c00288{word-spacing:-0.028728px;}
.ws2b_c00288{word-spacing:-0.023940px;}
.ws14_c00288{word-spacing:-0.007200px;}
.ws6_c00288{word-spacing:0.000000px;}
.ws28_c00288{word-spacing:0.004788px;}
.ws9_c00288{word-spacing:0.007200px;}
.ws21_c00288{word-spacing:0.028800px;}
.ws5_c00288{word-spacing:0.042084px;}
.ws26_c00288{word-spacing:0.072000px;}
.ws29_c00288{word-spacing:0.363888px;}
.ws12_c00288{word-spacing:0.410400px;}
.ws11_c00288{word-spacing:0.496800px;}
.ws13_c00288{word-spacing:2.534400px;}
.wsf_c00288{word-spacing:3.218400px;}
.ws19_c00288{word-spacing:3.247200px;}
.ws1a_c00288{word-spacing:3.268800px;}
.wse_c00288{word-spacing:3.304800px;}
.ws1c_c00288{word-spacing:3.909600px;}
.ws1b_c00288{word-spacing:3.974400px;}
.ws22_c00288{word-spacing:6.501600px;}
.ws7_c00288{word-spacing:7.200000px;}
.ws8_c00288{word-spacing:7.214400px;}
.ws1d_c00288{word-spacing:7.228800px;}
.ws1e_c00288{word-spacing:7.272000px;}
.ws25_c00288{word-spacing:9.741600px;}
.ws24_c00288{word-spacing:10.080000px;}
.ws23_c00288{word-spacing:10.101600px;}
.ws1f_c00288{word-spacing:10.497600px;}
.ws20_c00288{word-spacing:10.540800px;}
.ws17_c00288{word-spacing:11.109600px;}
.ws18_c00288{word-spacing:11.167200px;}
.ws10_c00288{word-spacing:11.908800px;}
.wsb_c00288{word-spacing:18.712800px;}
.wsd_c00288{word-spacing:18.727200px;}
.wsc_c00288{word-spacing:18.835200px;}
._0_c00288{margin-left:-1.322640px;}
._1_c00288{width:1.022400px;}
.fc0_c00288{color:rgb(0,0,0);}
.fs6_c00288{font-size:38.880000px;}
.fs3_c00288{font-size:42.120000px;}
.fs5_c00288{font-size:47.880000px;}
.fs1_c00288{font-size:54.000000px;}
.fs0_c00288{font-size:60.120000px;}
.fs2_c00288{font-size:72.000000px;}
.fs4_c00288{font-size:78.120000px;}
.y0_c00288{bottom:0.000000px;}
.y3_c00288{bottom:57.450450px;}
.y1c_c00288{bottom:113.700450px;}
.y1b_c00288{bottom:128.910450px;}
.y1a_c00288{bottom:149.610450px;}
.y19_c00288{bottom:170.310450px;}
.y18_c00288{bottom:374.970450px;}
.y17_c00288{bottom:409.350450px;}
.y16_c00288{bottom:443.820450px;}
.y15_c00288{bottom:478.200450px;}
.y14_c00288{bottom:521.670450px;}
.y13_c00288{bottom:556.050450px;}
.y12_c00288{bottom:590.520450px;}
.y11_c00288{bottom:624.900450px;}
.y10_c00288{bottom:659.370450px;}
.yf_c00288{bottom:693.750450px;}
.ye_c00288{bottom:738.750450px;}
.yd_c00288{bottom:792.480450px;}
.yc_c00288{bottom:826.860450px;}
.yb_c00288{bottom:861.330450px;}
.ya_c00288{bottom:895.710450px;}
.y9_c00288{bottom:939.180450px;}
.y8_c00288{bottom:973.560450px;}
.y7_c00288{bottom:1008.030450px;}
.y6_c00288{bottom:1053.030450px;}
.y5_c00288{bottom:1106.760450px;}
.y4_c00288{bottom:1141.140450px;}
.y2_c00288{bottom:1177.860450px;}
.y1_c00288{bottom:1196.850450px;}
.h8_c00288{height:47.988281px;}
.h9_c00288{height:49.937344px;}
.h1_c00288{height:50.315273px;}
.h2_c00288{height:56.320312px;}
.h7_c00288{height:60.257812px;}
.h5_c00288{height:60.890625px;}
.h4_c00288{height:65.130820px;}
.h3_c00288{height:72.160312px;}
.h6_c00288{height:81.476719px;}
.h0_c00288{height:1263.000000px;}
.w1_c00288{width:892.500000px;}
.w0_c00288{width:892.830000px;}
.x0_c00288{left:0.000000px;}
.x1_c00288{left:127.620000px;}
.x2_c00288{left:180.810000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.v1_c00288{vertical-align:14.080000pt;}
.v2_c00288{vertical-align:26.560000pt;}
.lsc_c00288{letter-spacing:-0.134400pt;}
.ls11_c00288{letter-spacing:-0.048608pt;}
.ls14_c00288{letter-spacing:-0.041664pt;}
.lsf_c00288{letter-spacing:-0.038400pt;}
.ls13_c00288{letter-spacing:-0.027776pt;}
.ls12_c00288{letter-spacing:-0.025600pt;}
.ls15_c00288{letter-spacing:-0.019200pt;}
.lsd_c00288{letter-spacing:-0.012800pt;}
.ls10_c00288{letter-spacing:-0.006944pt;}
.lse_c00288{letter-spacing:-0.006400pt;}
.ls16_c00288{letter-spacing:-0.003456pt;}
.lsb_c00288{letter-spacing:0.000000pt;}
.ls4_c00288{letter-spacing:0.006400pt;}
.ls7_c00288{letter-spacing:0.012768pt;}
.ls5_c00288{letter-spacing:0.019200pt;}
.lsa_c00288{letter-spacing:0.038304pt;}
.ls9_c00288{letter-spacing:0.042560pt;}
.ls0_c00288{letter-spacing:0.042752pt;}
.ls2_c00288{letter-spacing:0.048672pt;}
.ls8_c00288{letter-spacing:0.412480pt;}
.ls3_c00288{letter-spacing:10.485440pt;}
.ls6_c00288{letter-spacing:45.344320pt;}
.ls1_c00288{letter-spacing:1077.440000pt;}
.ws2_c00288{word-spacing:-17.353056pt;}
.ws3_c00288{word-spacing:-17.332224pt;}
.ws1_c00288{word-spacing:-15.961600pt;}
.ws4_c00288{word-spacing:-9.604224pt;}
.ws0_c00288{word-spacing:-9.408672pt;}
.ws15_c00288{word-spacing:-0.145824pt;}
.wsa_c00288{word-spacing:-0.111104pt;}
.ws27_c00288{word-spacing:-0.057600pt;}
.ws16_c00288{word-spacing:-0.034720pt;}
.ws2a_c00288{word-spacing:-0.025536pt;}
.ws2b_c00288{word-spacing:-0.021280pt;}
.ws14_c00288{word-spacing:-0.006400pt;}
.ws6_c00288{word-spacing:0.000000pt;}
.ws28_c00288{word-spacing:0.004256pt;}
.ws9_c00288{word-spacing:0.006400pt;}
.ws21_c00288{word-spacing:0.025600pt;}
.ws5_c00288{word-spacing:0.037408pt;}
.ws26_c00288{word-spacing:0.064000pt;}
.ws29_c00288{word-spacing:0.323456pt;}
.ws12_c00288{word-spacing:0.364800pt;}
.ws11_c00288{word-spacing:0.441600pt;}
.ws13_c00288{word-spacing:2.252800pt;}
.wsf_c00288{word-spacing:2.860800pt;}
.ws19_c00288{word-spacing:2.886400pt;}
.ws1a_c00288{word-spacing:2.905600pt;}
.wse_c00288{word-spacing:2.937600pt;}
.ws1c_c00288{word-spacing:3.475200pt;}
.ws1b_c00288{word-spacing:3.532800pt;}
.ws22_c00288{word-spacing:5.779200pt;}
.ws7_c00288{word-spacing:6.400000pt;}
.ws8_c00288{word-spacing:6.412800pt;}
.ws1d_c00288{word-spacing:6.425600pt;}
.ws1e_c00288{word-spacing:6.464000pt;}
.ws25_c00288{word-spacing:8.659200pt;}
.ws24_c00288{word-spacing:8.960000pt;}
.ws23_c00288{word-spacing:8.979200pt;}
.ws1f_c00288{word-spacing:9.331200pt;}
.ws20_c00288{word-spacing:9.369600pt;}
.ws17_c00288{word-spacing:9.875200pt;}
.ws18_c00288{word-spacing:9.926400pt;}
.ws10_c00288{word-spacing:10.585600pt;}
.wsb_c00288{word-spacing:16.633600pt;}
.wsd_c00288{word-spacing:16.646400pt;}
.wsc_c00288{word-spacing:16.742400pt;}
._0_c00288{margin-left:-1.175680pt;}
._1_c00288{width:0.908800pt;}
.fs6_c00288{font-size:34.560000pt;}
.fs3_c00288{font-size:37.440000pt;}
.fs5_c00288{font-size:42.560000pt;}
.fs1_c00288{font-size:48.000000pt;}
.fs0_c00288{font-size:53.440000pt;}
.fs2_c00288{font-size:64.000000pt;}
.fs4_c00288{font-size:69.440000pt;}
.y0_c00288{bottom:0.000000pt;}
.y3_c00288{bottom:51.067067pt;}
.y1c_c00288{bottom:101.067067pt;}
.y1b_c00288{bottom:114.587067pt;}
.y1a_c00288{bottom:132.987067pt;}
.y19_c00288{bottom:151.387067pt;}
.y18_c00288{bottom:333.307067pt;}
.y17_c00288{bottom:363.867067pt;}
.y16_c00288{bottom:394.507067pt;}
.y15_c00288{bottom:425.067067pt;}
.y14_c00288{bottom:463.707067pt;}
.y13_c00288{bottom:494.267067pt;}
.y12_c00288{bottom:524.907067pt;}
.y11_c00288{bottom:555.467067pt;}
.y10_c00288{bottom:586.107067pt;}
.yf_c00288{bottom:616.667067pt;}
.ye_c00288{bottom:656.667067pt;}
.yd_c00288{bottom:704.427067pt;}
.yc_c00288{bottom:734.987067pt;}
.yb_c00288{bottom:765.627067pt;}
.ya_c00288{bottom:796.187067pt;}
.y9_c00288{bottom:834.827067pt;}
.y8_c00288{bottom:865.387067pt;}
.y7_c00288{bottom:896.027067pt;}
.y6_c00288{bottom:936.027067pt;}
.y5_c00288{bottom:983.787067pt;}
.y4_c00288{bottom:1014.347067pt;}
.y2_c00288{bottom:1046.987067pt;}
.y1_c00288{bottom:1063.867067pt;}
.h8_c00288{height:42.656250pt;}
.h9_c00288{height:44.388750pt;}
.h1_c00288{height:44.724687pt;}
.h2_c00288{height:50.062500pt;}
.h7_c00288{height:53.562500pt;}
.h5_c00288{height:54.125000pt;}
.h4_c00288{height:57.894063pt;}
.h3_c00288{height:64.142500pt;}
.h6_c00288{height:72.423750pt;}
.h0_c00288{height:1122.666667pt;}
.w1_c00288{width:793.333333pt;}
.w0_c00288{width:793.626667pt;}
.x0_c00288{left:0.000000pt;}
.x1_c00288{left:113.440000pt;}
.x2_c00288{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_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_aa5ac89762d85e492eb085b3.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00289;src:url('chunks/assets/font_703e7525c04c00982a6814f5.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00289;src:url('chunks/assets/font_e54f361de4bb387dad7e7e05.woff2')format("woff");}.ff4_c00289{font-family:ff4_c00289;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00289;src:url('chunks/assets/font_1f31878ee9a9c65e0cee17ab.woff2')format("woff");}.ff5_c00289{font-family:ff5_c00289;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00289;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff6_c00289{font-family:ff6_c00289;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_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);}
.v2_c00289{vertical-align:-15.120000px;}
.v0_c00289{vertical-align:0.000000px;}
.v1_c00289{vertical-align:15.120000px;}
.v3_c00289{vertical-align:29.880000px;}
.lsf_c00289{letter-spacing:-0.151200px;}
.ls19_c00289{letter-spacing:-0.057600px;}
.ls15_c00289{letter-spacing:-0.043200px;}
.ls17_c00289{letter-spacing:-0.036000px;}
.ls14_c00289{letter-spacing:-0.028800px;}
.ls11_c00289{letter-spacing:-0.021600px;}
.ls13_c00289{letter-spacing:-0.014400px;}
.ls12_c00289{letter-spacing:-0.007200px;}
.ls10_c00289{letter-spacing:-0.006012px;}
.ls1a_c00289{letter-spacing:-0.003888px;}
.lse_c00289{letter-spacing:0.000000px;}
.lsd_c00289{letter-spacing:0.004788px;}
.ls5_c00289{letter-spacing:0.007200px;}
.lsa_c00289{letter-spacing:0.014364px;}
.ls4_c00289{letter-spacing:0.014400px;}
.ls18_c00289{letter-spacing:0.028800px;}
.ls8_c00289{letter-spacing:0.033516px;}
.ls0_c00289{letter-spacing:0.036072px;}
.ls9_c00289{letter-spacing:0.043092px;}
.lsc_c00289{letter-spacing:0.047880px;}
.ls6_c00289{letter-spacing:0.054756px;}
.ls7_c00289{letter-spacing:0.072000px;}
.ls16_c00289{letter-spacing:0.093600px;}
.ls1_c00289{letter-spacing:0.136080px;}
.ls2_c00289{letter-spacing:0.144000px;}
.lsb_c00289{letter-spacing:0.464040px;}
.ls3_c00289{letter-spacing:66.024000px;}
.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;}
}
.ws2_c00289{word-spacing:-10.804752px;}
.ws1_c00289{word-spacing:-10.584756px;}
.ws0_c00289{word-spacing:-9.856080px;}
.ws3_c00289{word-spacing:-0.306612px;}
.ws27_c00289{word-spacing:-0.028728px;}
.ws24_c00289{word-spacing:-0.023940px;}
.ws23_c00289{word-spacing:-0.014364px;}
.ws4_c00289{word-spacing:0.000000px;}
.ws25_c00289{word-spacing:0.004788px;}
.ws1d_c00289{word-spacing:0.007200px;}
.ws28_c00289{word-spacing:0.014364px;}
.wse_c00289{word-spacing:0.043200px;}
.ws6_c00289{word-spacing:0.057600px;}
.ws1f_c00289{word-spacing:0.086400px;}
.wsf_c00289{word-spacing:0.093600px;}
.ws5_c00289{word-spacing:0.096192px;}
.wsd_c00289{word-spacing:0.100800px;}
.ws20_c00289{word-spacing:0.129600px;}
.ws26_c00289{word-spacing:0.363888px;}
.ws16_c00289{word-spacing:2.131200px;}
.ws15_c00289{word-spacing:2.275200px;}
.ws1e_c00289{word-spacing:3.232800px;}
.wsa_c00289{word-spacing:3.564000px;}
.ws9_c00289{word-spacing:3.600000px;}
.ws13_c00289{word-spacing:4.334400px;}
.ws14_c00289{word-spacing:4.399200px;}
.ws1c_c00289{word-spacing:5.796000px;}
.wsc_c00289{word-spacing:6.840000px;}
.wsb_c00289{word-spacing:6.933600px;}
.ws12_c00289{word-spacing:7.840800px;}
.ws11_c00289{word-spacing:7.891200px;}
.ws10_c00289{word-spacing:7.927200px;}
.ws17_c00289{word-spacing:8.222400px;}
.ws18_c00289{word-spacing:8.301600px;}
.ws7_c00289{word-spacing:12.585600px;}
.ws8_c00289{word-spacing:12.607200px;}
.ws21_c00289{word-spacing:19.065600px;}
.ws22_c00289{word-spacing:19.080000px;}
.ws1b_c00289{word-spacing:20.880000px;}
.ws19_c00289{word-spacing:20.894400px;}
.ws1a_c00289{word-spacing:20.937600px;}
._0_c00289{margin-left:-1.022040px;}
._1_c00289{width:1.008000px;}
.fc0_c00289{color:rgb(0,0,0);}
.fs3_c00289{font-size:38.880000px;}
.fs4_c00289{font-size:42.120000px;}
.fs5_c00289{font-size:47.880000px;}
.fs2_c00289{font-size:54.000000px;}
.fs0_c00289{font-size:60.120000px;}
.fs1_c00289{font-size:72.000000px;}
.y0_c00289{bottom:0.000000px;}
.y3_c00289{bottom:57.450450px;}
.y4_c00289{bottom:61.410450px;}
.y1d_c00289{bottom:113.698470px;}
.y1c_c00289{bottom:132.064230px;}
.y1b_c00289{bottom:150.334230px;}
.y1a_c00289{bottom:168.600450px;}
.y19_c00289{bottom:183.810600px;}
.y18_c00289{bottom:204.510600px;}
.y17_c00289{bottom:225.210450px;}
.y16_c00289{bottom:329.790450px;}
.y15_c00289{bottom:364.260450px;}
.y14_c00289{bottom:407.640450px;}
.y13_c00289{bottom:442.110450px;}
.y12_c00289{bottom:485.490450px;}
.y11_c00289{bottom:519.960450px;}
.y10_c00289{bottom:554.340450px;}
.yf_c00289{bottom:588.810450px;}
.ye_c00289{bottom:623.190450px;}
.yd_c00289{bottom:657.660450px;}
.yc_c00289{bottom:692.040450px;}
.yb_c00289{bottom:735.510450px;}
.ya_c00289{bottom:769.890450px;}
.y9_c00289{bottom:804.360450px;}
.y8_c00289{bottom:838.740450px;}
.y7_c00289{bottom:882.210450px;}
.y6_c00289{bottom:922.530450px;}
.y5_c00289{bottom:935.400450px;}
.y2_c00289{bottom:1173.810450px;}
.y1_c00289{bottom:1196.850450px;}
.h2_c00289{height:47.988281px;}
.ha_c00289{height:47.988881px;}
.hb_c00289{height:49.937344px;}
.hc_c00289{height:49.945264px;}
.h1_c00289{height:50.315273px;}
.h3_c00289{height:56.320312px;}
.h4_c00289{height:60.257812px;}
.h5_c00289{height:60.328125px;}
.h8_c00289{height:60.890625px;}
.h7_c00289{height:65.130820px;}
.h9_c00289{height:65.131420px;}
.h6_c00289{height:75.093750px;}
.h0_c00289{height:1263.000000px;}
.w1_c00289{width:892.500000px;}
.w0_c00289{width:892.830000px;}
.x0_c00289{left:0.000000px;}
.x2_c00289{left:127.620000px;}
.x7_c00289{left:154.440000px;}
.x8_c00289{left:181.170000px;}
.x6_c00289{left:273.420000px;}
.x4_c00289{left:435.240000px;}
.x3_c00289{left:446.490000px;}
.x1_c00289{left:490.770000px;}
.x5_c00289{left:574.470000px;}
@media print{
.v2_c00289{vertical-align:-13.440000pt;}
.v0_c00289{vertical-align:0.000000pt;}
.v1_c00289{vertical-align:13.440000pt;}
.v3_c00289{vertical-align:26.560000pt;}
.lsf_c00289{letter-spacing:-0.134400pt;}
.ls19_c00289{letter-spacing:-0.051200pt;}
.ls15_c00289{letter-spacing:-0.038400pt;}
.ls17_c00289{letter-spacing:-0.032000pt;}
.ls14_c00289{letter-spacing:-0.025600pt;}
.ls11_c00289{letter-spacing:-0.019200pt;}
.ls13_c00289{letter-spacing:-0.012800pt;}
.ls12_c00289{letter-spacing:-0.006400pt;}
.ls10_c00289{letter-spacing:-0.005344pt;}
.ls1a_c00289{letter-spacing:-0.003456pt;}
.lse_c00289{letter-spacing:0.000000pt;}
.lsd_c00289{letter-spacing:0.004256pt;}
.ls5_c00289{letter-spacing:0.006400pt;}
.lsa_c00289{letter-spacing:0.012768pt;}
.ls4_c00289{letter-spacing:0.012800pt;}
.ls18_c00289{letter-spacing:0.025600pt;}
.ls8_c00289{letter-spacing:0.029792pt;}
.ls0_c00289{letter-spacing:0.032064pt;}
.ls9_c00289{letter-spacing:0.038304pt;}
.lsc_c00289{letter-spacing:0.042560pt;}
.ls6_c00289{letter-spacing:0.048672pt;}
.ls7_c00289{letter-spacing:0.064000pt;}
.ls16_c00289{letter-spacing:0.083200pt;}
.ls1_c00289{letter-spacing:0.120960pt;}
.ls2_c00289{letter-spacing:0.128000pt;}
.lsb_c00289{letter-spacing:0.412480pt;}
.ls3_c00289{letter-spacing:58.688000pt;}
.ws2_c00289{word-spacing:-9.604224pt;}
.ws1_c00289{word-spacing:-9.408672pt;}
.ws0_c00289{word-spacing:-8.760960pt;}
.ws3_c00289{word-spacing:-0.272544pt;}
.ws27_c00289{word-spacing:-0.025536pt;}
.ws24_c00289{word-spacing:-0.021280pt;}
.ws23_c00289{word-spacing:-0.012768pt;}
.ws4_c00289{word-spacing:0.000000pt;}
.ws25_c00289{word-spacing:0.004256pt;}
.ws1d_c00289{word-spacing:0.006400pt;}
.ws28_c00289{word-spacing:0.012768pt;}
.wse_c00289{word-spacing:0.038400pt;}
.ws6_c00289{word-spacing:0.051200pt;}
.ws1f_c00289{word-spacing:0.076800pt;}
.wsf_c00289{word-spacing:0.083200pt;}
.ws5_c00289{word-spacing:0.085504pt;}
.wsd_c00289{word-spacing:0.089600pt;}
.ws20_c00289{word-spacing:0.115200pt;}
.ws26_c00289{word-spacing:0.323456pt;}
.ws16_c00289{word-spacing:1.894400pt;}
.ws15_c00289{word-spacing:2.022400pt;}
.ws1e_c00289{word-spacing:2.873600pt;}
.wsa_c00289{word-spacing:3.168000pt;}
.ws9_c00289{word-spacing:3.200000pt;}
.ws13_c00289{word-spacing:3.852800pt;}
.ws14_c00289{word-spacing:3.910400pt;}
.ws1c_c00289{word-spacing:5.152000pt;}
.wsc_c00289{word-spacing:6.080000pt;}
.wsb_c00289{word-spacing:6.163200pt;}
.ws12_c00289{word-spacing:6.969600pt;}
.ws11_c00289{word-spacing:7.014400pt;}
.ws10_c00289{word-spacing:7.046400pt;}
.ws17_c00289{word-spacing:7.308800pt;}
.ws18_c00289{word-spacing:7.379200pt;}
.ws7_c00289{word-spacing:11.187200pt;}
.ws8_c00289{word-spacing:11.206400pt;}
.ws21_c00289{word-spacing:16.947200pt;}
.ws22_c00289{word-spacing:16.960000pt;}
.ws1b_c00289{word-spacing:18.560000pt;}
.ws19_c00289{word-spacing:18.572800pt;}
.ws1a_c00289{word-spacing:18.611200pt;}
._0_c00289{margin-left:-0.908480pt;}
._1_c00289{width:0.896000pt;}
.fs3_c00289{font-size:34.560000pt;}
.fs4_c00289{font-size:37.440000pt;}
.fs5_c00289{font-size:42.560000pt;}
.fs2_c00289{font-size:48.000000pt;}
.fs0_c00289{font-size:53.440000pt;}
.fs1_c00289{font-size:64.000000pt;}
.y0_c00289{bottom:0.000000pt;}
.y3_c00289{bottom:51.067067pt;}
.y4_c00289{bottom:54.587067pt;}
.y1d_c00289{bottom:101.065307pt;}
.y1c_c00289{bottom:117.390427pt;}
.y1b_c00289{bottom:133.630427pt;}
.y1a_c00289{bottom:149.867067pt;}
.y19_c00289{bottom:163.387200pt;}
.y18_c00289{bottom:181.787200pt;}
.y17_c00289{bottom:200.187067pt;}
.y16_c00289{bottom:293.147067pt;}
.y15_c00289{bottom:323.787067pt;}
.y14_c00289{bottom:362.347067pt;}
.y13_c00289{bottom:392.987067pt;}
.y12_c00289{bottom:431.547067pt;}
.y11_c00289{bottom:462.187067pt;}
.y10_c00289{bottom:492.747067pt;}
.yf_c00289{bottom:523.387067pt;}
.ye_c00289{bottom:553.947067pt;}
.yd_c00289{bottom:584.587067pt;}
.yc_c00289{bottom:615.147067pt;}
.yb_c00289{bottom:653.787067pt;}
.ya_c00289{bottom:684.347067pt;}
.y9_c00289{bottom:714.987067pt;}
.y8_c00289{bottom:745.547067pt;}
.y7_c00289{bottom:784.187067pt;}
.y6_c00289{bottom:820.027067pt;}
.y5_c00289{bottom:831.467067pt;}
.y2_c00289{bottom:1043.387067pt;}
.y1_c00289{bottom:1063.867067pt;}
.h2_c00289{height:42.656250pt;}
.ha_c00289{height:42.656783pt;}
.hb_c00289{height:44.388750pt;}
.hc_c00289{height:44.395790pt;}
.h1_c00289{height:44.724687pt;}
.h3_c00289{height:50.062500pt;}
.h4_c00289{height:53.562500pt;}
.h5_c00289{height:53.625000pt;}
.h8_c00289{height:54.125000pt;}
.h7_c00289{height:57.894063pt;}
.h9_c00289{height:57.894596pt;}
.h6_c00289{height:66.750000pt;}
.h0_c00289{height:1122.666667pt;}
.w1_c00289{width:793.333333pt;}
.w0_c00289{width:793.626667pt;}
.x0_c00289{left:0.000000pt;}
.x2_c00289{left:113.440000pt;}
.x7_c00289{left:137.280000pt;}
.x8_c00289{left:161.040000pt;}
.x6_c00289{left:243.040000pt;}
.x4_c00289{left:386.880000pt;}
.x3_c00289{left:396.880000pt;}
.x1_c00289{left:436.240000pt;}
.x5_c00289{left:510.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_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_19b1efd5bf97dad0e9ef07fc.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.100098;font-style:normal;font-weight:normal;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_81f3022971eeb7761b3eda39.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;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_c00290;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00290;src:url('chunks/assets/font_74e628146a7b46ffc7655184.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00290;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;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_c00290;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff6_c00290{font-family:ff6_c00290;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_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;}
.v1_c00290{vertical-align:15.840000px;}
.v2_c00290{vertical-align:29.880000px;}
.lsf_c00290{letter-spacing:-0.151200px;}
.ls12_c00290{letter-spacing:-0.054684px;}
.ls17_c00290{letter-spacing:-0.028800px;}
.ls11_c00290{letter-spacing:-0.023436px;}
.ls18_c00290{letter-spacing:-0.021600px;}
.ls10_c00290{letter-spacing:-0.015624px;}
.ls14_c00290{letter-spacing:-0.014400px;}
.ls15_c00290{letter-spacing:-0.007200px;}
.ls19_c00290{letter-spacing:-0.003888px;}
.lse_c00290{letter-spacing:0.000000px;}
.ls5_c00290{letter-spacing:0.007200px;}
.lsa_c00290{letter-spacing:0.014364px;}
.ls8_c00290{letter-spacing:0.014400px;}
.ls3_c00290{letter-spacing:0.021600px;}
.ls9_c00290{letter-spacing:0.033516px;}
.lsd_c00290{letter-spacing:0.043092px;}
.lsc_c00290{letter-spacing:0.047880px;}
.ls0_c00290{letter-spacing:0.048096px;}
.ls7_c00290{letter-spacing:0.050400px;}
.ls6_c00290{letter-spacing:0.054756px;}
.ls13_c00290{letter-spacing:0.064800px;}
.ls4_c00290{letter-spacing:0.072000px;}
.ls16_c00290{letter-spacing:0.093600px;}
.lsb_c00290{letter-spacing:0.464040px;}
.ls2_c00290{letter-spacing:45.231480px;}
.ls1_c00290{letter-spacing:1212.120000px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00290{word-spacing:-19.514376px;}
.ws2_c00290{word-spacing:-10.804752px;}
.ws1_c00290{word-spacing:-10.584756px;}
.ws10_c00290{word-spacing:-0.093600px;}
.ws29_c00290{word-spacing:-0.028728px;}
.ws2a_c00290{word-spacing:-0.023940px;}
.ws26_c00290{word-spacing:-0.014364px;}
.ws4_c00290{word-spacing:0.000000px;}
.ws27_c00290{word-spacing:0.004788px;}
.wsf_c00290{word-spacing:0.014400px;}
.ws1f_c00290{word-spacing:0.036000px;}
.ws3_c00290{word-spacing:0.042084px;}
.ws25_c00290{word-spacing:0.072000px;}
.ws18_c00290{word-spacing:0.079200px;}
.ws17_c00290{word-spacing:0.086400px;}
.ws8_c00290{word-spacing:0.288000px;}
.ws7_c00290{word-spacing:0.338400px;}
.ws28_c00290{word-spacing:0.363888px;}
.ws1b_c00290{word-spacing:2.887200px;}
.wsb_c00290{word-spacing:2.894400px;}
.ws1a_c00290{word-spacing:2.959200px;}
.ws1c_c00290{word-spacing:3.009600px;}
.ws24_c00290{word-spacing:5.061600px;}
.ws12_c00290{word-spacing:7.538400px;}
.wsd_c00290{word-spacing:7.567200px;}
.wse_c00290{word-spacing:7.574400px;}
.ws11_c00290{word-spacing:7.639200px;}
.ws15_c00290{word-spacing:8.575200px;}
.ws16_c00290{word-spacing:8.647200px;}
.ws22_c00290{word-spacing:16.567200px;}
.ws23_c00290{word-spacing:16.588800px;}
.ws1e_c00290{word-spacing:18.021600px;}
.ws1d_c00290{word-spacing:18.028800px;}
.ws5_c00290{word-spacing:18.530064px;}
.ws6_c00290{word-spacing:18.686304px;}
.wsa_c00290{word-spacing:18.763200px;}
.ws9_c00290{word-spacing:18.806400px;}
.ws13_c00290{word-spacing:19.828800px;}
.ws21_c00290{word-spacing:25.178400px;}
.ws20_c00290{word-spacing:25.279200px;}
.ws14_c00290{word-spacing:26.978400px;}
.wsc_c00290{word-spacing:33.847200px;}
.ws19_c00290{word-spacing:34.927200px;}
._0_c00290{margin-left:-1.322640px;}
._1_c00290{width:1.022400px;}
.fc0_c00290{color:rgb(0,0,0);}
.fs6_c00290{font-size:38.880000px;}
.fs4_c00290{font-size:42.120000px;}
.fs5_c00290{font-size:47.880000px;}
.fs1_c00290{font-size:54.000000px;}
.fs0_c00290{font-size:60.120000px;}
.fs2_c00290{font-size:72.000000px;}
.fs3_c00290{font-size:78.120000px;}
.y0_c00290{bottom:0.000000px;}
.y3_c00290{bottom:57.450450px;}
.y21_c00290{bottom:113.698470px;}
.y20_c00290{bottom:132.064230px;}
.y1f_c00290{bottom:150.334230px;}
.y1e_c00290{bottom:168.600450px;}
.y1d_c00290{bottom:183.810600px;}
.y1c_c00290{bottom:204.510600px;}
.y1b_c00290{bottom:225.210450px;}
.y1a_c00290{bottom:324.120600px;}
.y19_c00290{bottom:358.500600px;}
.y18_c00290{bottom:401.970600px;}
.y17_c00290{bottom:436.350600px;}
.y16_c00290{bottom:470.820600px;}
.y15_c00290{bottom:514.200450px;}
.y14_c00290{bottom:548.670450px;}
.y13_c00290{bottom:583.050450px;}
.y12_c00290{bottom:617.520450px;}
.y11_c00290{bottom:660.900450px;}
.y10_c00290{bottom:695.370450px;}
.yf_c00290{bottom:729.750450px;}
.ye_c00290{bottom:773.220450px;}
.yd_c00290{bottom:807.600450px;}
.yc_c00290{bottom:842.070450px;}
.yb_c00290{bottom:885.450450px;}
.ya_c00290{bottom:919.920450px;}
.y9_c00290{bottom:954.300450px;}
.y8_c00290{bottom:988.770450px;}
.y7_c00290{bottom:1023.150450px;}
.y6_c00290{bottom:1057.620450px;}
.y5_c00290{bottom:1102.617210px;}
.y4_c00290{bottom:1139.880450px;}
.y2_c00290{bottom:1177.860450px;}
.y1_c00290{bottom:1196.850450px;}
.ha_c00290{height:47.988281px;}
.h9_c00290{height:47.988881px;}
.hb_c00290{height:49.937344px;}
.hc_c00290{height:49.945264px;}
.h1_c00290{height:50.315273px;}
.h2_c00290{height:56.320312px;}
.h6_c00290{height:60.257812px;}
.h8_c00290{height:65.130220px;}
.h7_c00290{height:65.130820px;}
.h5_c00290{height:65.456016px;}
.h3_c00290{height:72.160312px;}
.h4_c00290{height:81.476719px;}
.h0_c00290{height:1263.000000px;}
.w1_c00290{width:892.500000px;}
.w0_c00290{width:892.830000px;}
.x0_c00290{left:0.000000px;}
.x1_c00290{left:127.620000px;}
.x3_c00290{left:180.810000px;}
.x2_c00290{left:214.020720px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.v1_c00290{vertical-align:14.080000pt;}
.v2_c00290{vertical-align:26.560000pt;}
.lsf_c00290{letter-spacing:-0.134400pt;}
.ls12_c00290{letter-spacing:-0.048608pt;}
.ls17_c00290{letter-spacing:-0.025600pt;}
.ls11_c00290{letter-spacing:-0.020832pt;}
.ls18_c00290{letter-spacing:-0.019200pt;}
.ls10_c00290{letter-spacing:-0.013888pt;}
.ls14_c00290{letter-spacing:-0.012800pt;}
.ls15_c00290{letter-spacing:-0.006400pt;}
.ls19_c00290{letter-spacing:-0.003456pt;}
.lse_c00290{letter-spacing:0.000000pt;}
.ls5_c00290{letter-spacing:0.006400pt;}
.lsa_c00290{letter-spacing:0.012768pt;}
.ls8_c00290{letter-spacing:0.012800pt;}
.ls3_c00290{letter-spacing:0.019200pt;}
.ls9_c00290{letter-spacing:0.029792pt;}
.lsd_c00290{letter-spacing:0.038304pt;}
.lsc_c00290{letter-spacing:0.042560pt;}
.ls0_c00290{letter-spacing:0.042752pt;}
.ls7_c00290{letter-spacing:0.044800pt;}
.ls6_c00290{letter-spacing:0.048672pt;}
.ls13_c00290{letter-spacing:0.057600pt;}
.ls4_c00290{letter-spacing:0.064000pt;}
.ls16_c00290{letter-spacing:0.083200pt;}
.lsb_c00290{letter-spacing:0.412480pt;}
.ls2_c00290{letter-spacing:40.205760pt;}
.ls1_c00290{letter-spacing:1077.440000pt;}
.ws0_c00290{word-spacing:-17.346112pt;}
.ws2_c00290{word-spacing:-9.604224pt;}
.ws1_c00290{word-spacing:-9.408672pt;}
.ws10_c00290{word-spacing:-0.083200pt;}
.ws29_c00290{word-spacing:-0.025536pt;}
.ws2a_c00290{word-spacing:-0.021280pt;}
.ws26_c00290{word-spacing:-0.012768pt;}
.ws4_c00290{word-spacing:0.000000pt;}
.ws27_c00290{word-spacing:0.004256pt;}
.wsf_c00290{word-spacing:0.012800pt;}
.ws1f_c00290{word-spacing:0.032000pt;}
.ws3_c00290{word-spacing:0.037408pt;}
.ws25_c00290{word-spacing:0.064000pt;}
.ws18_c00290{word-spacing:0.070400pt;}
.ws17_c00290{word-spacing:0.076800pt;}
.ws8_c00290{word-spacing:0.256000pt;}
.ws7_c00290{word-spacing:0.300800pt;}
.ws28_c00290{word-spacing:0.323456pt;}
.ws1b_c00290{word-spacing:2.566400pt;}
.wsb_c00290{word-spacing:2.572800pt;}
.ws1a_c00290{word-spacing:2.630400pt;}
.ws1c_c00290{word-spacing:2.675200pt;}
.ws24_c00290{word-spacing:4.499200pt;}
.ws12_c00290{word-spacing:6.700800pt;}
.wsd_c00290{word-spacing:6.726400pt;}
.wse_c00290{word-spacing:6.732800pt;}
.ws11_c00290{word-spacing:6.790400pt;}
.ws15_c00290{word-spacing:7.622400pt;}
.ws16_c00290{word-spacing:7.686400pt;}
.ws22_c00290{word-spacing:14.726400pt;}
.ws23_c00290{word-spacing:14.745600pt;}
.ws1e_c00290{word-spacing:16.019200pt;}
.ws1d_c00290{word-spacing:16.025600pt;}
.ws5_c00290{word-spacing:16.471168pt;}
.ws6_c00290{word-spacing:16.610048pt;}
.wsa_c00290{word-spacing:16.678400pt;}
.ws9_c00290{word-spacing:16.716800pt;}
.ws13_c00290{word-spacing:17.625600pt;}
.ws21_c00290{word-spacing:22.380800pt;}
.ws20_c00290{word-spacing:22.470400pt;}
.ws14_c00290{word-spacing:23.980800pt;}
.wsc_c00290{word-spacing:30.086400pt;}
.ws19_c00290{word-spacing:31.046400pt;}
._0_c00290{margin-left:-1.175680pt;}
._1_c00290{width:0.908800pt;}
.fs6_c00290{font-size:34.560000pt;}
.fs4_c00290{font-size:37.440000pt;}
.fs5_c00290{font-size:42.560000pt;}
.fs1_c00290{font-size:48.000000pt;}
.fs0_c00290{font-size:53.440000pt;}
.fs2_c00290{font-size:64.000000pt;}
.fs3_c00290{font-size:69.440000pt;}
.y0_c00290{bottom:0.000000pt;}
.y3_c00290{bottom:51.067067pt;}
.y21_c00290{bottom:101.065307pt;}
.y20_c00290{bottom:117.390427pt;}
.y1f_c00290{bottom:133.630427pt;}
.y1e_c00290{bottom:149.867067pt;}
.y1d_c00290{bottom:163.387200pt;}
.y1c_c00290{bottom:181.787200pt;}
.y1b_c00290{bottom:200.187067pt;}
.y1a_c00290{bottom:288.107200pt;}
.y19_c00290{bottom:318.667200pt;}
.y18_c00290{bottom:357.307200pt;}
.y17_c00290{bottom:387.867200pt;}
.y16_c00290{bottom:418.507200pt;}
.y15_c00290{bottom:457.067067pt;}
.y14_c00290{bottom:487.707067pt;}
.y13_c00290{bottom:518.267067pt;}
.y12_c00290{bottom:548.907067pt;}
.y11_c00290{bottom:587.467067pt;}
.y10_c00290{bottom:618.107067pt;}
.yf_c00290{bottom:648.667067pt;}
.ye_c00290{bottom:687.307067pt;}
.yd_c00290{bottom:717.867067pt;}
.yc_c00290{bottom:748.507067pt;}
.yb_c00290{bottom:787.067067pt;}
.ya_c00290{bottom:817.707067pt;}
.y9_c00290{bottom:848.267067pt;}
.y8_c00290{bottom:878.907067pt;}
.y7_c00290{bottom:909.467067pt;}
.y6_c00290{bottom:940.107067pt;}
.y5_c00290{bottom:980.104187pt;}
.y4_c00290{bottom:1013.227067pt;}
.y2_c00290{bottom:1046.987067pt;}
.y1_c00290{bottom:1063.867067pt;}
.ha_c00290{height:42.656250pt;}
.h9_c00290{height:42.656783pt;}
.hb_c00290{height:44.388750pt;}
.hc_c00290{height:44.395790pt;}
.h1_c00290{height:44.724687pt;}
.h2_c00290{height:50.062500pt;}
.h6_c00290{height:53.562500pt;}
.h8_c00290{height:57.893529pt;}
.h7_c00290{height:57.894063pt;}
.h5_c00290{height:58.183125pt;}
.h3_c00290{height:64.142500pt;}
.h4_c00290{height:72.423750pt;}
.h0_c00290{height:1122.666667pt;}
.w1_c00290{width:793.333333pt;}
.w0_c00290{width:793.626667pt;}
.x0_c00290{left:0.000000pt;}
.x1_c00290{left:113.440000pt;}
.x3_c00290{left:160.720000pt;}
.x2_c00290{left:190.240640pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e18011b9f0a41a120b68277.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_2a6a6782f5a0dd3cff359bb7.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00291;src:url('chunks/assets/font_ad72ade9ea1721971280ad81.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00291;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00291{font-family:ff5_c00291;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_c00291;src:url('chunks/assets/font_fecc6b617a03174578930cf1.woff2')format("woff");}.ff6_c00291{font-family:ff6_c00291;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00291;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff7_c00291{font-family:ff7_c00291;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_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;}
.v1_c00291{vertical-align:29.880000px;}
.lsd_c00291{letter-spacing:-0.151200px;}
.ls17_c00291{letter-spacing:-0.050400px;}
.lsf_c00291{letter-spacing:-0.046872px;}
.ls14_c00291{letter-spacing:-0.036000px;}
.ls13_c00291{letter-spacing:-0.028800px;}
.ls12_c00291{letter-spacing:-0.021600px;}
.lse_c00291{letter-spacing:-0.015624px;}
.ls10_c00291{letter-spacing:-0.014400px;}
.ls15_c00291{letter-spacing:-0.007200px;}
.ls18_c00291{letter-spacing:-0.003888px;}
.lsc_c00291{letter-spacing:0.000000px;}
.ls3_c00291{letter-spacing:0.007200px;}
.ls8_c00291{letter-spacing:0.014364px;}
.ls4_c00291{letter-spacing:0.014400px;}
.ls0_c00291{letter-spacing:0.036072px;}
.lsb_c00291{letter-spacing:0.043092px;}
.ls11_c00291{letter-spacing:0.043200px;}
.lsa_c00291{letter-spacing:0.047880px;}
.ls2_c00291{letter-spacing:0.054756px;}
.ls5_c00291{letter-spacing:0.072000px;}
.ls16_c00291{letter-spacing:0.093600px;}
.ls6_c00291{letter-spacing:0.144000px;}
.ls9_c00291{letter-spacing:0.464040px;}
.ls1_c00291{letter-spacing:45.231480px;}
.ls7_c00291{letter-spacing:66.024000px;}
.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:-19.514376px;}
.ws2_c00291{word-spacing:-17.949600px;}
.ws3_c00291{word-spacing:-10.804752px;}
.ws1_c00291{word-spacing:-10.584756px;}
.ws4_c00291{word-spacing:-0.306612px;}
.ws15_c00291{word-spacing:-0.093600px;}
.ws6_c00291{word-spacing:-0.046872px;}
.ws24_c00291{word-spacing:-0.028728px;}
.ws25_c00291{word-spacing:-0.023940px;}
.ws14_c00291{word-spacing:-0.007200px;}
.ws5_c00291{word-spacing:0.000000px;}
.ws22_c00291{word-spacing:0.004788px;}
.ws1b_c00291{word-spacing:0.014400px;}
.ws26_c00291{word-spacing:0.019152px;}
.ws1c_c00291{word-spacing:0.043200px;}
.ws13_c00291{word-spacing:0.086400px;}
.ws12_c00291{word-spacing:0.122400px;}
.wsf_c00291{word-spacing:0.180000px;}
.ws23_c00291{word-spacing:0.363888px;}
.wsc_c00291{word-spacing:0.734400px;}
.ws1d_c00291{word-spacing:1.108800px;}
.ws11_c00291{word-spacing:3.628800px;}
.ws10_c00291{word-spacing:3.960000px;}
.ws1a_c00291{word-spacing:4.348800px;}
.wsb_c00291{word-spacing:4.694400px;}
.wsd_c00291{word-spacing:4.701600px;}
.wse_c00291{word-spacing:4.759200px;}
.wsa_c00291{word-spacing:4.766400px;}
.ws9_c00291{word-spacing:5.781600px;}
.ws8_c00291{word-spacing:7.516800px;}
.ws7_c00291{word-spacing:7.574400px;}
.ws19_c00291{word-spacing:10.828800px;}
.ws18_c00291{word-spacing:10.872000px;}
.ws1e_c00291{word-spacing:11.160000px;}
.ws1f_c00291{word-spacing:11.260800px;}
.ws20_c00291{word-spacing:15.062400px;}
.ws21_c00291{word-spacing:15.127200px;}
.ws17_c00291{word-spacing:16.243200px;}
.ws16_c00291{word-spacing:16.437600px;}
._0_c00291{margin-left:-1.022040px;}
._1_c00291{width:1.065600px;}
.fc0_c00291{color:rgb(0,0,0);}
.fs6_c00291{font-size:38.880000px;}
.fs4_c00291{font-size:42.120000px;}
.fs5_c00291{font-size:47.880000px;}
.fs2_c00291{font-size:54.000000px;}
.fs0_c00291{font-size:60.120000px;}
.fs1_c00291{font-size:72.000000px;}
.fs3_c00291{font-size:78.120000px;}
.y0_c00291{bottom:0.000000px;}
.y3_c00291{bottom:57.450450px;}
.y4_c00291{bottom:61.410450px;}
.y21_c00291{bottom:113.698470px;}
.y20_c00291{bottom:132.064230px;}
.y1f_c00291{bottom:150.330450px;}
.y1e_c00291{bottom:165.540450px;}
.y1d_c00291{bottom:186.240450px;}
.y1c_c00291{bottom:206.940450px;}
.y1b_c00291{bottom:290.910450px;}
.y1a_c00291{bottom:325.380450px;}
.y19_c00291{bottom:359.760450px;}
.y18_c00291{bottom:403.230450px;}
.y17_c00291{bottom:446.610450px;}
.y16_c00291{bottom:490.080450px;}
.y15_c00291{bottom:533.460450px;}
.y14_c00291{bottom:576.930450px;}
.y13_c00291{bottom:611.310450px;}
.y12_c00291{bottom:654.780450px;}
.y11_c00291{bottom:689.160450px;}
.y10_c00291{bottom:723.630450px;}
.yf_c00291{bottom:767.010450px;}
.ye_c00291{bottom:801.480450px;}
.yd_c00291{bottom:835.860450px;}
.yc_c00291{bottom:879.330450px;}
.yb_c00291{bottom:913.710450px;}
.ya_c00291{bottom:948.180450px;}
.y9_c00291{bottom:982.560450px;}
.y8_c00291{bottom:1026.030450px;}
.y7_c00291{bottom:1060.410450px;}
.y6_c00291{bottom:1094.880450px;}
.y5_c00291{bottom:1139.880450px;}
.y2_c00291{bottom:1173.810450px;}
.y1_c00291{bottom:1196.850450px;}
.h2_c00291{height:47.988281px;}
.h8_c00291{height:49.937344px;}
.h9_c00291{height:49.945264px;}
.h1_c00291{height:50.315273px;}
.h3_c00291{height:56.320312px;}
.h5_c00291{height:60.257812px;}
.h6_c00291{height:65.130820px;}
.h7_c00291{height:75.093750px;}
.h4_c00291{height:81.476719px;}
.h0_c00291{height:1263.000000px;}
.w1_c00291{width:892.500000px;}
.w0_c00291{width:892.830000px;}
.x0_c00291{left:0.000000px;}
.x2_c00291{left:127.620000px;}
.x6_c00291{left:154.440000px;}
.x5_c00291{left:180.810000px;}
.x4_c00291{left:435.240000px;}
.x3_c00291{left:446.490000px;}
.x1_c00291{left:490.770000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.v1_c00291{vertical-align:26.560000pt;}
.lsd_c00291{letter-spacing:-0.134400pt;}
.ls17_c00291{letter-spacing:-0.044800pt;}
.lsf_c00291{letter-spacing:-0.041664pt;}
.ls14_c00291{letter-spacing:-0.032000pt;}
.ls13_c00291{letter-spacing:-0.025600pt;}
.ls12_c00291{letter-spacing:-0.019200pt;}
.lse_c00291{letter-spacing:-0.013888pt;}
.ls10_c00291{letter-spacing:-0.012800pt;}
.ls15_c00291{letter-spacing:-0.006400pt;}
.ls18_c00291{letter-spacing:-0.003456pt;}
.lsc_c00291{letter-spacing:0.000000pt;}
.ls3_c00291{letter-spacing:0.006400pt;}
.ls8_c00291{letter-spacing:0.012768pt;}
.ls4_c00291{letter-spacing:0.012800pt;}
.ls0_c00291{letter-spacing:0.032064pt;}
.lsb_c00291{letter-spacing:0.038304pt;}
.ls11_c00291{letter-spacing:0.038400pt;}
.lsa_c00291{letter-spacing:0.042560pt;}
.ls2_c00291{letter-spacing:0.048672pt;}
.ls5_c00291{letter-spacing:0.064000pt;}
.ls16_c00291{letter-spacing:0.083200pt;}
.ls6_c00291{letter-spacing:0.128000pt;}
.ls9_c00291{letter-spacing:0.412480pt;}
.ls1_c00291{letter-spacing:40.205760pt;}
.ls7_c00291{letter-spacing:58.688000pt;}
.ws0_c00291{word-spacing:-17.346112pt;}
.ws2_c00291{word-spacing:-15.955200pt;}
.ws3_c00291{word-spacing:-9.604224pt;}
.ws1_c00291{word-spacing:-9.408672pt;}
.ws4_c00291{word-spacing:-0.272544pt;}
.ws15_c00291{word-spacing:-0.083200pt;}
.ws6_c00291{word-spacing:-0.041664pt;}
.ws24_c00291{word-spacing:-0.025536pt;}
.ws25_c00291{word-spacing:-0.021280pt;}
.ws14_c00291{word-spacing:-0.006400pt;}
.ws5_c00291{word-spacing:0.000000pt;}
.ws22_c00291{word-spacing:0.004256pt;}
.ws1b_c00291{word-spacing:0.012800pt;}
.ws26_c00291{word-spacing:0.017024pt;}
.ws1c_c00291{word-spacing:0.038400pt;}
.ws13_c00291{word-spacing:0.076800pt;}
.ws12_c00291{word-spacing:0.108800pt;}
.wsf_c00291{word-spacing:0.160000pt;}
.ws23_c00291{word-spacing:0.323456pt;}
.wsc_c00291{word-spacing:0.652800pt;}
.ws1d_c00291{word-spacing:0.985600pt;}
.ws11_c00291{word-spacing:3.225600pt;}
.ws10_c00291{word-spacing:3.520000pt;}
.ws1a_c00291{word-spacing:3.865600pt;}
.wsb_c00291{word-spacing:4.172800pt;}
.wsd_c00291{word-spacing:4.179200pt;}
.wse_c00291{word-spacing:4.230400pt;}
.wsa_c00291{word-spacing:4.236800pt;}
.ws9_c00291{word-spacing:5.139200pt;}
.ws8_c00291{word-spacing:6.681600pt;}
.ws7_c00291{word-spacing:6.732800pt;}
.ws19_c00291{word-spacing:9.625600pt;}
.ws18_c00291{word-spacing:9.664000pt;}
.ws1e_c00291{word-spacing:9.920000pt;}
.ws1f_c00291{word-spacing:10.009600pt;}
.ws20_c00291{word-spacing:13.388800pt;}
.ws21_c00291{word-spacing:13.446400pt;}
.ws17_c00291{word-spacing:14.438400pt;}
.ws16_c00291{word-spacing:14.611200pt;}
._0_c00291{margin-left:-0.908480pt;}
._1_c00291{width:0.947200pt;}
.fs6_c00291{font-size:34.560000pt;}
.fs4_c00291{font-size:37.440000pt;}
.fs5_c00291{font-size:42.560000pt;}
.fs2_c00291{font-size:48.000000pt;}
.fs0_c00291{font-size:53.440000pt;}
.fs1_c00291{font-size:64.000000pt;}
.fs3_c00291{font-size:69.440000pt;}
.y0_c00291{bottom:0.000000pt;}
.y3_c00291{bottom:51.067067pt;}
.y4_c00291{bottom:54.587067pt;}
.y21_c00291{bottom:101.065307pt;}
.y20_c00291{bottom:117.390427pt;}
.y1f_c00291{bottom:133.627067pt;}
.y1e_c00291{bottom:147.147067pt;}
.y1d_c00291{bottom:165.547067pt;}
.y1c_c00291{bottom:183.947067pt;}
.y1b_c00291{bottom:258.587067pt;}
.y1a_c00291{bottom:289.227067pt;}
.y19_c00291{bottom:319.787067pt;}
.y18_c00291{bottom:358.427067pt;}
.y17_c00291{bottom:396.987067pt;}
.y16_c00291{bottom:435.627067pt;}
.y15_c00291{bottom:474.187067pt;}
.y14_c00291{bottom:512.827067pt;}
.y13_c00291{bottom:543.387067pt;}
.y12_c00291{bottom:582.027067pt;}
.y11_c00291{bottom:612.587067pt;}
.y10_c00291{bottom:643.227067pt;}
.yf_c00291{bottom:681.787067pt;}
.ye_c00291{bottom:712.427067pt;}
.yd_c00291{bottom:742.987067pt;}
.yc_c00291{bottom:781.627067pt;}
.yb_c00291{bottom:812.187067pt;}
.ya_c00291{bottom:842.827067pt;}
.y9_c00291{bottom:873.387067pt;}
.y8_c00291{bottom:912.027067pt;}
.y7_c00291{bottom:942.587067pt;}
.y6_c00291{bottom:973.227067pt;}
.y5_c00291{bottom:1013.227067pt;}
.y2_c00291{bottom:1043.387067pt;}
.y1_c00291{bottom:1063.867067pt;}
.h2_c00291{height:42.656250pt;}
.h8_c00291{height:44.388750pt;}
.h9_c00291{height:44.395790pt;}
.h1_c00291{height:44.724687pt;}
.h3_c00291{height:50.062500pt;}
.h5_c00291{height:53.562500pt;}
.h6_c00291{height:57.894062pt;}
.h7_c00291{height:66.750000pt;}
.h4_c00291{height:72.423750pt;}
.h0_c00291{height:1122.666667pt;}
.w1_c00291{width:793.333333pt;}
.w0_c00291{width:793.626667pt;}
.x0_c00291{left:0.000000pt;}
.x2_c00291{left:113.440000pt;}
.x6_c00291{left:137.280000pt;}
.x5_c00291{left:160.720000pt;}
.x4_c00291{left:386.880000pt;}
.x3_c00291{left:396.880000pt;}
.x1_c00291{left:436.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_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_47a6eff54092a31103a7dbf9.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.100098;font-style:normal;font-weight:normal;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_2a0ccb7c5b1eb6be28367e81.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;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_c00292;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00292;src:url('chunks/assets/font_c3346ecf5c351fbea67e3231.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:1.102051;font-style:normal;font-weight:normal;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_d33ef880e9184c3aae32a6a4.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00292;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00292{font-family:ff6_c00292;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00292;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff7_c00292{font-family:ff7_c00292;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_c00292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.v1_c00292{vertical-align:15.840000px;}
.v2_c00292{vertical-align:29.880000px;}
.ls10_c00292{letter-spacing:-0.151200px;}
.ls17_c00292{letter-spacing:-0.129600px;}
.ls12_c00292{letter-spacing:-0.079200px;}
.ls1a_c00292{letter-spacing:-0.043200px;}
.ls1b_c00292{letter-spacing:-0.036000px;}
.ls13_c00292{letter-spacing:-0.028800px;}
.ls18_c00292{letter-spacing:-0.021600px;}
.ls15_c00292{letter-spacing:-0.015624px;}
.ls16_c00292{letter-spacing:-0.014400px;}
.ls11_c00292{letter-spacing:-0.007200px;}
.ls1c_c00292{letter-spacing:-0.003888px;}
.lsf_c00292{letter-spacing:0.000000px;}
.lsc_c00292{letter-spacing:0.004788px;}
.ls5_c00292{letter-spacing:0.007200px;}
.lsd_c00292{letter-spacing:0.009576px;}
.ls6_c00292{letter-spacing:0.014364px;}
.ls4_c00292{letter-spacing:0.021600px;}
.lsb_c00292{letter-spacing:0.028728px;}
.ls19_c00292{letter-spacing:0.028800px;}
.lsa_c00292{letter-spacing:0.043092px;}
.ls8_c00292{letter-spacing:0.047880px;}
.ls0_c00292{letter-spacing:0.048096px;}
.ls2_c00292{letter-spacing:0.054756px;}
.ls9_c00292{letter-spacing:0.057456px;}
.ls14_c00292{letter-spacing:0.093600px;}
.lse_c00292{letter-spacing:0.104040px;}
.ls7_c00292{letter-spacing:0.464040px;}
.ls3_c00292{letter-spacing:45.231480px;}
.ls1_c00292{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00292{word-spacing:-19.514376px;}
.ws3_c00292{word-spacing:-13.320216px;}
.ws2_c00292{word-spacing:-10.804752px;}
.ws0_c00292{word-spacing:-10.584756px;}
.wsa_c00292{word-spacing:-0.093744px;}
.ws28_c00292{word-spacing:-0.038304px;}
.ws26_c00292{word-spacing:-0.028728px;}
.ws29_c00292{word-spacing:-0.023940px;}
.ws2a_c00292{word-spacing:-0.009576px;}
.ws23_c00292{word-spacing:-0.007200px;}
.ws2c_c00292{word-spacing:-0.003888px;}
.ws5_c00292{word-spacing:0.000000px;}
.ws24_c00292{word-spacing:0.004788px;}
.ws12_c00292{word-spacing:0.007200px;}
.ws2b_c00292{word-spacing:0.014364px;}
.ws27_c00292{word-spacing:0.019152px;}
.ws1f_c00292{word-spacing:0.028800px;}
.ws4_c00292{word-spacing:0.042084px;}
.ws9_c00292{word-spacing:0.079200px;}
.ws8_c00292{word-spacing:0.086400px;}
.ws25_c00292{word-spacing:0.363888px;}
.ws1d_c00292{word-spacing:1.094400px;}
.ws1e_c00292{word-spacing:1.144800px;}
.ws18_c00292{word-spacing:2.131200px;}
.ws11_c00292{word-spacing:2.203200px;}
.ws17_c00292{word-spacing:2.210400px;}
.ws19_c00292{word-spacing:2.520000px;}
.ws21_c00292{word-spacing:3.240000px;}
.ws22_c00292{word-spacing:3.261600px;}
.wsf_c00292{word-spacing:5.047200px;}
.wse_c00292{word-spacing:5.054400px;}
.ws10_c00292{word-spacing:5.169600px;}
.ws1a_c00292{word-spacing:5.407200px;}
.ws1b_c00292{word-spacing:5.443200px;}
.ws1c_c00292{word-spacing:5.752800px;}
.wsc_c00292{word-spacing:6.436800px;}
.wsd_c00292{word-spacing:6.508800px;}
.ws6_c00292{word-spacing:9.007200px;}
.ws7_c00292{word-spacing:9.316800px;}
.ws20_c00292{word-spacing:9.338400px;}
.ws16_c00292{word-spacing:12.614400px;}
.ws15_c00292{word-spacing:12.708000px;}
.ws14_c00292{word-spacing:14.738400px;}
.ws13_c00292{word-spacing:14.760000px;}
.wsb_c00292{word-spacing:16.970400px;}
._0_c00292{margin-left:-1.322640px;}
._1_c00292{width:1.195200px;}
.fc0_c00292{color:rgb(0,0,0);}
.fs6_c00292{font-size:38.880000px;}
.fs3_c00292{font-size:42.120000px;}
.fs5_c00292{font-size:47.880000px;}
.fs1_c00292{font-size:54.000000px;}
.fs0_c00292{font-size:60.120000px;}
.fs2_c00292{font-size:72.000000px;}
.fs4_c00292{font-size:78.120000px;}
.y0_c00292{bottom:0.000000px;}
.y3_c00292{bottom:57.450450px;}
.y22_c00292{bottom:113.698470px;}
.y21_c00292{bottom:132.064230px;}
.y20_c00292{bottom:150.334230px;}
.y1f_c00292{bottom:168.606030px;}
.y1e_c00292{bottom:186.968010px;}
.y1d_c00292{bottom:205.234230px;}
.y1c_c00292{bottom:223.498620px;}
.y1b_c00292{bottom:241.860600px;}
.y1a_c00292{bottom:257.070450px;}
.y19_c00292{bottom:277.770450px;}
.y18_c00292{bottom:298.470450px;}
.y17_c00292{bottom:430.230450px;}
.y16_c00292{bottom:464.610450px;}
.y15_c00292{bottom:499.080450px;}
.y14_c00292{bottom:542.460450px;}
.y13_c00292{bottom:576.930450px;}
.y12_c00292{bottom:611.310450px;}
.y11_c00292{bottom:645.780450px;}
.y10_c00292{bottom:680.160450px;}
.yf_c00292{bottom:714.630450px;}
.ye_c00292{bottom:758.010600px;}
.yd_c00292{bottom:792.480600px;}
.yc_c00292{bottom:826.860450px;}
.yb_c00292{bottom:870.330450px;}
.ya_c00292{bottom:904.710450px;}
.y9_c00292{bottom:939.180450px;}
.y8_c00292{bottom:973.560450px;}
.y7_c00292{bottom:1008.030450px;}
.y6_c00292{bottom:1053.030450px;}
.y5_c00292{bottom:1106.760450px;}
.y4_c00292{bottom:1141.140450px;}
.y2_c00292{bottom:1177.860450px;}
.y1_c00292{bottom:1196.850450px;}
.ha_c00292{height:47.988281px;}
.hb_c00292{height:49.937344px;}
.hc_c00292{height:49.944664px;}
.hd_c00292{height:49.945264px;}
.h1_c00292{height:50.315273px;}
.h2_c00292{height:56.320312px;}
.h7_c00292{height:60.257812px;}
.h4_c00292{height:60.890625px;}
.h8_c00292{height:65.130220px;}
.h5_c00292{height:65.130820px;}
.h9_c00292{height:65.131420px;}
.h3_c00292{height:72.160312px;}
.h6_c00292{height:81.476719px;}
.h0_c00292{height:1263.000000px;}
.w1_c00292{width:892.500000px;}
.w0_c00292{width:892.830000px;}
.x0_c00292{left:0.000000px;}
.x1_c00292{left:127.620000px;}
.x2_c00292{left:181.170000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.v1_c00292{vertical-align:14.080000pt;}
.v2_c00292{vertical-align:26.560000pt;}
.ls10_c00292{letter-spacing:-0.134400pt;}
.ls17_c00292{letter-spacing:-0.115200pt;}
.ls12_c00292{letter-spacing:-0.070400pt;}
.ls1a_c00292{letter-spacing:-0.038400pt;}
.ls1b_c00292{letter-spacing:-0.032000pt;}
.ls13_c00292{letter-spacing:-0.025600pt;}
.ls18_c00292{letter-spacing:-0.019200pt;}
.ls15_c00292{letter-spacing:-0.013888pt;}
.ls16_c00292{letter-spacing:-0.012800pt;}
.ls11_c00292{letter-spacing:-0.006400pt;}
.ls1c_c00292{letter-spacing:-0.003456pt;}
.lsf_c00292{letter-spacing:0.000000pt;}
.lsc_c00292{letter-spacing:0.004256pt;}
.ls5_c00292{letter-spacing:0.006400pt;}
.lsd_c00292{letter-spacing:0.008512pt;}
.ls6_c00292{letter-spacing:0.012768pt;}
.ls4_c00292{letter-spacing:0.019200pt;}
.lsb_c00292{letter-spacing:0.025536pt;}
.ls19_c00292{letter-spacing:0.025600pt;}
.lsa_c00292{letter-spacing:0.038304pt;}
.ls8_c00292{letter-spacing:0.042560pt;}
.ls0_c00292{letter-spacing:0.042752pt;}
.ls2_c00292{letter-spacing:0.048672pt;}
.ls9_c00292{letter-spacing:0.051072pt;}
.ls14_c00292{letter-spacing:0.083200pt;}
.lse_c00292{letter-spacing:0.092480pt;}
.ls7_c00292{letter-spacing:0.412480pt;}
.ls3_c00292{letter-spacing:40.205760pt;}
.ls1_c00292{letter-spacing:1077.440000pt;}
.ws1_c00292{word-spacing:-17.346112pt;}
.ws3_c00292{word-spacing:-11.840192pt;}
.ws2_c00292{word-spacing:-9.604224pt;}
.ws0_c00292{word-spacing:-9.408672pt;}
.wsa_c00292{word-spacing:-0.083328pt;}
.ws28_c00292{word-spacing:-0.034048pt;}
.ws26_c00292{word-spacing:-0.025536pt;}
.ws29_c00292{word-spacing:-0.021280pt;}
.ws2a_c00292{word-spacing:-0.008512pt;}
.ws23_c00292{word-spacing:-0.006400pt;}
.ws2c_c00292{word-spacing:-0.003456pt;}
.ws5_c00292{word-spacing:0.000000pt;}
.ws24_c00292{word-spacing:0.004256pt;}
.ws12_c00292{word-spacing:0.006400pt;}
.ws2b_c00292{word-spacing:0.012768pt;}
.ws27_c00292{word-spacing:0.017024pt;}
.ws1f_c00292{word-spacing:0.025600pt;}
.ws4_c00292{word-spacing:0.037408pt;}
.ws9_c00292{word-spacing:0.070400pt;}
.ws8_c00292{word-spacing:0.076800pt;}
.ws25_c00292{word-spacing:0.323456pt;}
.ws1d_c00292{word-spacing:0.972800pt;}
.ws1e_c00292{word-spacing:1.017600pt;}
.ws18_c00292{word-spacing:1.894400pt;}
.ws11_c00292{word-spacing:1.958400pt;}
.ws17_c00292{word-spacing:1.964800pt;}
.ws19_c00292{word-spacing:2.240000pt;}
.ws21_c00292{word-spacing:2.880000pt;}
.ws22_c00292{word-spacing:2.899200pt;}
.wsf_c00292{word-spacing:4.486400pt;}
.wse_c00292{word-spacing:4.492800pt;}
.ws10_c00292{word-spacing:4.595200pt;}
.ws1a_c00292{word-spacing:4.806400pt;}
.ws1b_c00292{word-spacing:4.838400pt;}
.ws1c_c00292{word-spacing:5.113600pt;}
.wsc_c00292{word-spacing:5.721600pt;}
.wsd_c00292{word-spacing:5.785600pt;}
.ws6_c00292{word-spacing:8.006400pt;}
.ws7_c00292{word-spacing:8.281600pt;}
.ws20_c00292{word-spacing:8.300800pt;}
.ws16_c00292{word-spacing:11.212800pt;}
.ws15_c00292{word-spacing:11.296000pt;}
.ws14_c00292{word-spacing:13.100800pt;}
.ws13_c00292{word-spacing:13.120000pt;}
.wsb_c00292{word-spacing:15.084800pt;}
._0_c00292{margin-left:-1.175680pt;}
._1_c00292{width:1.062400pt;}
.fs6_c00292{font-size:34.560000pt;}
.fs3_c00292{font-size:37.440000pt;}
.fs5_c00292{font-size:42.560000pt;}
.fs1_c00292{font-size:48.000000pt;}
.fs0_c00292{font-size:53.440000pt;}
.fs2_c00292{font-size:64.000000pt;}
.fs4_c00292{font-size:69.440000pt;}
.y0_c00292{bottom:0.000000pt;}
.y3_c00292{bottom:51.067067pt;}
.y22_c00292{bottom:101.065307pt;}
.y21_c00292{bottom:117.390427pt;}
.y20_c00292{bottom:133.630427pt;}
.y1f_c00292{bottom:149.872027pt;}
.y1e_c00292{bottom:166.193787pt;}
.y1d_c00292{bottom:182.430427pt;}
.y1c_c00292{bottom:198.665440pt;}
.y1b_c00292{bottom:214.987200pt;}
.y1a_c00292{bottom:228.507067pt;}
.y19_c00292{bottom:246.907067pt;}
.y18_c00292{bottom:265.307067pt;}
.y17_c00292{bottom:382.427067pt;}
.y16_c00292{bottom:412.987067pt;}
.y15_c00292{bottom:443.627067pt;}
.y14_c00292{bottom:482.187067pt;}
.y13_c00292{bottom:512.827067pt;}
.y12_c00292{bottom:543.387067pt;}
.y11_c00292{bottom:574.027067pt;}
.y10_c00292{bottom:604.587067pt;}
.yf_c00292{bottom:635.227067pt;}
.ye_c00292{bottom:673.787200pt;}
.yd_c00292{bottom:704.427200pt;}
.yc_c00292{bottom:734.987067pt;}
.yb_c00292{bottom:773.627067pt;}
.ya_c00292{bottom:804.187067pt;}
.y9_c00292{bottom:834.827067pt;}
.y8_c00292{bottom:865.387067pt;}
.y7_c00292{bottom:896.027067pt;}
.y6_c00292{bottom:936.027067pt;}
.y5_c00292{bottom:983.787067pt;}
.y4_c00292{bottom:1014.347067pt;}
.y2_c00292{bottom:1046.987067pt;}
.y1_c00292{bottom:1063.867067pt;}
.ha_c00292{height:42.656250pt;}
.hb_c00292{height:44.388750pt;}
.hc_c00292{height:44.395257pt;}
.hd_c00292{height:44.395790pt;}
.h1_c00292{height:44.724687pt;}
.h2_c00292{height:50.062500pt;}
.h7_c00292{height:53.562500pt;}
.h4_c00292{height:54.125000pt;}
.h8_c00292{height:57.893529pt;}
.h5_c00292{height:57.894063pt;}
.h9_c00292{height:57.894596pt;}
.h3_c00292{height:64.142500pt;}
.h6_c00292{height:72.423750pt;}
.h0_c00292{height:1122.666667pt;}
.w1_c00292{width:793.333333pt;}
.w0_c00292{width:793.626667pt;}
.x0_c00292{left:0.000000pt;}
.x1_c00292{left:113.440000pt;}
.x2_c00292{left:161.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9411636882e022df8464e1fe.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00293;src:url('chunks/assets/font_b420719c7387a823eeb34a9d.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00293;src:url('chunks/assets/font_d683d8138a2a721029b88c29.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00293;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00293{font-family:ff5_c00293;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_c00293;src:url('chunks/assets/font_4a4129f047d5a9856f1eb7c2.woff2')format("woff");}.ff6_c00293{font-family:ff6_c00293;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00293{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m0_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls7_c00293{letter-spacing:-0.151200px;}
.lsa_c00293{letter-spacing:-0.057794px;}
.lse_c00293{letter-spacing:-0.057600px;}
.ls9_c00293{letter-spacing:-0.054684px;}
.lsf_c00293{letter-spacing:-0.036000px;}
.ls11_c00293{letter-spacing:-0.028800px;}
.lsb_c00293{letter-spacing:-0.021600px;}
.ls8_c00293{letter-spacing:-0.015624px;}
.lsd_c00293{letter-spacing:-0.014400px;}
.ls12_c00293{letter-spacing:-0.007200px;}
.ls6_c00293{letter-spacing:0.000000px;}
.ls2_c00293{letter-spacing:0.007200px;}
.lsc_c00293{letter-spacing:0.028800px;}
.ls0_c00293{letter-spacing:0.036072px;}
.ls10_c00293{letter-spacing:0.093600px;}
.ls4_c00293{letter-spacing:0.144000px;}
.ls3_c00293{letter-spacing:4.680000px;}
.ls1_c00293{letter-spacing:45.231480px;}
.ls5_c00293{letter-spacing:66.024000px;}
.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:-19.514376px;}
.ws2_c00293{word-spacing:-17.985600px;}
.ws1_c00293{word-spacing:-17.964000px;}
.ws3_c00293{word-spacing:-0.306612px;}
.ws5_c00293{word-spacing:-0.124992px;}
.wsd_c00293{word-spacing:-0.093600px;}
.ws6_c00293{word-spacing:-0.041281px;}
.ws13_c00293{word-spacing:-0.007200px;}
.ws4_c00293{word-spacing:0.000000px;}
.ws15_c00293{word-spacing:0.007200px;}
.wsb_c00293{word-spacing:0.014400px;}
.ws1c_c00293{word-spacing:0.036000px;}
.ws14_c00293{word-spacing:0.050400px;}
.wsc_c00293{word-spacing:0.057600px;}
.ws1b_c00293{word-spacing:0.064800px;}
.ws1a_c00293{word-spacing:0.108000px;}
.ws10_c00293{word-spacing:3.967200px;}
.ws11_c00293{word-spacing:4.176000px;}
.wsf_c00293{word-spacing:4.348800px;}
.wse_c00293{word-spacing:4.744800px;}
.wsa_c00293{word-spacing:6.537600px;}
.ws9_c00293{word-spacing:6.588000px;}
.ws8_c00293{word-spacing:6.638400px;}
.ws18_c00293{word-spacing:7.567200px;}
.ws19_c00293{word-spacing:7.610400px;}
.ws17_c00293{word-spacing:9.309600px;}
.ws16_c00293{word-spacing:9.324000px;}
.ws12_c00293{word-spacing:14.054400px;}
.ws7_c00293{word-spacing:27.021600px;}
._0_c00293{margin-left:-1.022040px;}
._1_c00293{width:1.152000px;}
._2_c00293{width:4.809600px;}
.fc0_c00293{color:rgb(0,0,0);}
.fs2_c00293{font-size:54.000000px;}
.fs0_c00293{font-size:60.120000px;}
.fs1_c00293{font-size:72.000000px;}
.fs3_c00293{font-size:78.120000px;}
.fs4_c00293{font-size:82.562424px;}
.y0_c00293{bottom:0.000000px;}
.y3_c00293{bottom:57.450450px;}
.y4_c00293{bottom:61.410450px;}
.y1c_c00293{bottom:202.530450px;}
.y1b_c00293{bottom:245.910450px;}
.y1a_c00293{bottom:289.380450px;}
.y19_c00293{bottom:332.760450px;}
.y18_c00293{bottom:376.230450px;}
.y17_c00293{bottom:419.610450px;}
.y16_c00293{bottom:454.080450px;}
.y15_c00293{bottom:497.460450px;}
.y14_c00293{bottom:531.930450px;}
.y13_c00293{bottom:575.310450px;}
.y12_c00293{bottom:618.780450px;}
.y11_c00293{bottom:662.160450px;}
.y10_c00293{bottom:705.630450px;}
.yf_c00293{bottom:749.010450px;}
.ye_c00293{bottom:792.480450px;}
.yd_c00293{bottom:835.860450px;}
.yc_c00293{bottom:870.330450px;}
.yb_c00293{bottom:913.710450px;}
.ya_c00293{bottom:948.180450px;}
.y9_c00293{bottom:982.560450px;}
.y8_c00293{bottom:1026.030450px;}
.y7_c00293{bottom:1060.410450px;}
.y6_c00293{bottom:1094.880450px;}
.y5_c00293{bottom:1139.880450px;}
.y2_c00293{bottom:1173.810450px;}
.y1_c00293{bottom:1196.850450px;}
.h2_c00293{height:47.988281px;}
.h1_c00293{height:50.315273px;}
.h3_c00293{height:56.320312px;}
.h7_c00293{height:60.257812px;}
.h8_c00293{height:60.890625px;}
.h6_c00293{height:65.456016px;}
.h5_c00293{height:69.178281px;}
.h9_c00293{height:75.093750px;}
.h4_c00293{height:81.476719px;}
.h0_c00293{height:1263.000000px;}
.w1_c00293{width:892.500000px;}
.w0_c00293{width:892.830000px;}
.x0_c00293{left:0.000000px;}
.x2_c00293{left:127.620000px;}
.x8_c00293{left:154.440000px;}
.x7_c00293{left:180.810000px;}
.x4_c00293{left:435.240000px;}
.x3_c00293{left:446.490000px;}
.x1_c00293{left:490.770000px;}
.x5_c00293{left:580.140000px;}
.x6_c00293{left:756.270000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls7_c00293{letter-spacing:-0.134400pt;}
.lsa_c00293{letter-spacing:-0.051372pt;}
.lse_c00293{letter-spacing:-0.051200pt;}
.ls9_c00293{letter-spacing:-0.048608pt;}
.lsf_c00293{letter-spacing:-0.032000pt;}
.ls11_c00293{letter-spacing:-0.025600pt;}
.lsb_c00293{letter-spacing:-0.019200pt;}
.ls8_c00293{letter-spacing:-0.013888pt;}
.lsd_c00293{letter-spacing:-0.012800pt;}
.ls12_c00293{letter-spacing:-0.006400pt;}
.ls6_c00293{letter-spacing:0.000000pt;}
.ls2_c00293{letter-spacing:0.006400pt;}
.lsc_c00293{letter-spacing:0.025600pt;}
.ls0_c00293{letter-spacing:0.032064pt;}
.ls10_c00293{letter-spacing:0.083200pt;}
.ls4_c00293{letter-spacing:0.128000pt;}
.ls3_c00293{letter-spacing:4.160000pt;}
.ls1_c00293{letter-spacing:40.205760pt;}
.ls5_c00293{letter-spacing:58.688000pt;}
.ws0_c00293{word-spacing:-17.346112pt;}
.ws2_c00293{word-spacing:-15.987200pt;}
.ws1_c00293{word-spacing:-15.968000pt;}
.ws3_c00293{word-spacing:-0.272544pt;}
.ws5_c00293{word-spacing:-0.111104pt;}
.wsd_c00293{word-spacing:-0.083200pt;}
.ws6_c00293{word-spacing:-0.036694pt;}
.ws13_c00293{word-spacing:-0.006400pt;}
.ws4_c00293{word-spacing:0.000000pt;}
.ws15_c00293{word-spacing:0.006400pt;}
.wsb_c00293{word-spacing:0.012800pt;}
.ws1c_c00293{word-spacing:0.032000pt;}
.ws14_c00293{word-spacing:0.044800pt;}
.wsc_c00293{word-spacing:0.051200pt;}
.ws1b_c00293{word-spacing:0.057600pt;}
.ws1a_c00293{word-spacing:0.096000pt;}
.ws10_c00293{word-spacing:3.526400pt;}
.ws11_c00293{word-spacing:3.712000pt;}
.wsf_c00293{word-spacing:3.865600pt;}
.wse_c00293{word-spacing:4.217600pt;}
.wsa_c00293{word-spacing:5.811200pt;}
.ws9_c00293{word-spacing:5.856000pt;}
.ws8_c00293{word-spacing:5.900800pt;}
.ws18_c00293{word-spacing:6.726400pt;}
.ws19_c00293{word-spacing:6.764800pt;}
.ws17_c00293{word-spacing:8.275200pt;}
.ws16_c00293{word-spacing:8.288000pt;}
.ws12_c00293{word-spacing:12.492800pt;}
.ws7_c00293{word-spacing:24.019200pt;}
._0_c00293{margin-left:-0.908480pt;}
._1_c00293{width:1.024000pt;}
._2_c00293{width:4.275200pt;}
.fs2_c00293{font-size:48.000000pt;}
.fs0_c00293{font-size:53.440000pt;}
.fs1_c00293{font-size:64.000000pt;}
.fs3_c00293{font-size:69.440000pt;}
.fs4_c00293{font-size:73.388821pt;}
.y0_c00293{bottom:0.000000pt;}
.y3_c00293{bottom:51.067067pt;}
.y4_c00293{bottom:54.587067pt;}
.y1c_c00293{bottom:180.027067pt;}
.y1b_c00293{bottom:218.587067pt;}
.y1a_c00293{bottom:257.227067pt;}
.y19_c00293{bottom:295.787067pt;}
.y18_c00293{bottom:334.427067pt;}
.y17_c00293{bottom:372.987067pt;}
.y16_c00293{bottom:403.627067pt;}
.y15_c00293{bottom:442.187067pt;}
.y14_c00293{bottom:472.827067pt;}
.y13_c00293{bottom:511.387067pt;}
.y12_c00293{bottom:550.027067pt;}
.y11_c00293{bottom:588.587067pt;}
.y10_c00293{bottom:627.227067pt;}
.yf_c00293{bottom:665.787067pt;}
.ye_c00293{bottom:704.427067pt;}
.yd_c00293{bottom:742.987067pt;}
.yc_c00293{bottom:773.627067pt;}
.yb_c00293{bottom:812.187067pt;}
.ya_c00293{bottom:842.827067pt;}
.y9_c00293{bottom:873.387067pt;}
.y8_c00293{bottom:912.027067pt;}
.y7_c00293{bottom:942.587067pt;}
.y6_c00293{bottom:973.227067pt;}
.y5_c00293{bottom:1013.227067pt;}
.y2_c00293{bottom:1043.387067pt;}
.y1_c00293{bottom:1063.867067pt;}
.h2_c00293{height:42.656250pt;}
.h1_c00293{height:44.724687pt;}
.h3_c00293{height:50.062500pt;}
.h7_c00293{height:53.562500pt;}
.h8_c00293{height:54.125000pt;}
.h6_c00293{height:58.183125pt;}
.h5_c00293{height:61.491805pt;}
.h9_c00293{height:66.750000pt;}
.h4_c00293{height:72.423750pt;}
.h0_c00293{height:1122.666667pt;}
.w1_c00293{width:793.333333pt;}
.w0_c00293{width:793.626667pt;}
.x0_c00293{left:0.000000pt;}
.x2_c00293{left:113.440000pt;}
.x8_c00293{left:137.280000pt;}
.x7_c00293{left:160.720000pt;}
.x4_c00293{left:386.880000pt;}
.x3_c00293{left:396.880000pt;}
.x1_c00293{left:436.240000pt;}
.x5_c00293{left:515.680000pt;}
.x6_c00293{left:672.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_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_48ca2e0a545fdd5e5666d5b5.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.100098;font-style:normal;font-weight:normal;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_4dff56cca24c45f3a90deebe.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;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_c00294;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00294;src:url('chunks/assets/font_bf14bc61a95a2ef08dc0a5df.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:1.102051;font-style:normal;font-weight:normal;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_b9cd2893b7280a7ce9c56c28.woff2')format("woff");}.ff5_c00294{font-family:ff5_c00294;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00294;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff6_c00294{font-family:ff6_c00294;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_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;}
.v1_c00294{vertical-align:15.840000px;}
.v2_c00294{vertical-align:29.880000px;}
.ls15_c00294{letter-spacing:-0.151200px;}
.ls19_c00294{letter-spacing:-0.072000px;}
.ls1c_c00294{letter-spacing:-0.057600px;}
.ls1f_c00294{letter-spacing:-0.043200px;}
.ls1a_c00294{letter-spacing:-0.036000px;}
.ls1b_c00294{letter-spacing:-0.028800px;}
.ls1e_c00294{letter-spacing:-0.021600px;}
.ls18_c00294{letter-spacing:-0.014400px;}
.ls16_c00294{letter-spacing:-0.007200px;}
.ls20_c00294{letter-spacing:-0.003888px;}
.ls14_c00294{letter-spacing:0.000000px;}
.ls5_c00294{letter-spacing:0.007200px;}
.lsb_c00294{letter-spacing:0.014364px;}
.lsa_c00294{letter-spacing:0.014400px;}
.ls11_c00294{letter-spacing:0.019152px;}
.ls6_c00294{letter-spacing:0.021600px;}
.ls10_c00294{letter-spacing:0.028728px;}
.ls12_c00294{letter-spacing:0.033516px;}
.lse_c00294{letter-spacing:0.038304px;}
.ls13_c00294{letter-spacing:0.043092px;}
.lsd_c00294{letter-spacing:0.047880px;}
.ls0_c00294{letter-spacing:0.048096px;}
.ls4_c00294{letter-spacing:0.054756px;}
.lsf_c00294{letter-spacing:0.062244px;}
.ls17_c00294{letter-spacing:0.093600px;}
.ls8_c00294{letter-spacing:0.143640px;}
.ls2_c00294{letter-spacing:0.144000px;}
.ls1d_c00294{letter-spacing:0.151200px;}
.lsc_c00294{letter-spacing:0.464040px;}
.ls7_c00294{letter-spacing:1.440000px;}
.ls3_c00294{letter-spacing:66.024000px;}
.ls9_c00294{letter-spacing:80.279280px;}
.ls1_c00294{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00294{word-spacing:-18.021600px;}
.ws1_c00294{word-spacing:-17.978400px;}
.ws3_c00294{word-spacing:-10.804752px;}
.ws0_c00294{word-spacing:-10.584756px;}
.wsf_c00294{word-spacing:-0.086400px;}
.ws29_c00294{word-spacing:-0.028728px;}
.ws30_c00294{word-spacing:-0.023940px;}
.ws2a_c00294{word-spacing:-0.019152px;}
.ws2e_c00294{word-spacing:-0.014364px;}
.ws9_c00294{word-spacing:-0.007200px;}
.ws5_c00294{word-spacing:0.000000px;}
.ws27_c00294{word-spacing:0.004788px;}
.ws6_c00294{word-spacing:0.007200px;}
.ws20_c00294{word-spacing:0.014400px;}
.ws2f_c00294{word-spacing:0.019152px;}
.ws4_c00294{word-spacing:0.042084px;}
.wsa_c00294{word-spacing:0.043200px;}
.ws26_c00294{word-spacing:0.064800px;}
.ws28_c00294{word-spacing:0.363888px;}
.ws7_c00294{word-spacing:0.734400px;}
.ws8_c00294{word-spacing:0.792000px;}
.ws2b_c00294{word-spacing:1.393308px;}
.ws23_c00294{word-spacing:1.425600px;}
.ws2c_c00294{word-spacing:1.426824px;}
.ws2d_c00294{word-spacing:1.436400px;}
.ws1a_c00294{word-spacing:1.447200px;}
.ws18_c00294{word-spacing:1.468800px;}
.ws24_c00294{word-spacing:1.483200px;}
.ws19_c00294{word-spacing:1.519200px;}
.ws17_c00294{word-spacing:1.569600px;}
.wsb_c00294{word-spacing:2.160000px;}
.wsc_c00294{word-spacing:2.196000px;}
.ws1d_c00294{word-spacing:3.981600px;}
.ws25_c00294{word-spacing:7.250400px;}
.ws13_c00294{word-spacing:9.000000px;}
.ws12_c00294{word-spacing:9.028800px;}
.wse_c00294{word-spacing:10.418400px;}
.ws1c_c00294{word-spacing:10.440000px;}
.wsd_c00294{word-spacing:10.468800px;}
.ws1b_c00294{word-spacing:10.483200px;}
.ws21_c00294{word-spacing:10.814400px;}
.ws11_c00294{word-spacing:10.828800px;}
.ws22_c00294{word-spacing:10.900800px;}
.ws10_c00294{word-spacing:11.167200px;}
.ws16_c00294{word-spacing:13.888800px;}
.ws14_c00294{word-spacing:14.097600px;}
.ws15_c00294{word-spacing:14.184000px;}
.ws1f_c00294{word-spacing:23.709600px;}
.ws1e_c00294{word-spacing:23.774400px;}
._0_c00294{margin-left:-1.322640px;}
._1_c00294{width:1.368000px;}
.fc0_c00294{color:rgb(0,0,0);}
.fs5_c00294{font-size:38.880000px;}
.fs3_c00294{font-size:42.120000px;}
.fs4_c00294{font-size:47.880000px;}
.fs1_c00294{font-size:54.000000px;}
.fs0_c00294{font-size:60.120000px;}
.fs2_c00294{font-size:72.000000px;}
.y0_c00294{bottom:0.000000px;}
.y3_c00294{bottom:57.450450px;}
.y23_c00294{bottom:113.698470px;}
.y22_c00294{bottom:132.064230px;}
.y21_c00294{bottom:150.336750px;}
.y20_c00294{bottom:168.602970px;}
.y1f_c00294{bottom:182.464230px;}
.y1e_c00294{bottom:200.730450px;}
.y1d_c00294{bottom:215.940450px;}
.y1c_c00294{bottom:236.640450px;}
.y1b_c00294{bottom:257.340450px;}
.y1a_c00294{bottom:311.790450px;}
.y19_c00294{bottom:346.260450px;}
.y18_c00294{bottom:380.640450px;}
.y17_c00294{bottom:424.110600px;}
.y16_c00294{bottom:458.490600px;}
.y15_c00294{bottom:501.960450px;}
.y14_c00294{bottom:536.340450px;}
.y13_c00294{bottom:570.810450px;}
.y12_c00294{bottom:605.190450px;}
.y11_c00294{bottom:639.660450px;}
.y10_c00294{bottom:683.040450px;}
.yf_c00294{bottom:717.510450px;}
.ye_c00294{bottom:751.890450px;}
.yd_c00294{bottom:786.360450px;}
.yc_c00294{bottom:820.740450px;}
.yb_c00294{bottom:855.210450px;}
.ya_c00294{bottom:898.590450px;}
.y9_c00294{bottom:933.060450px;}
.y8_c00294{bottom:967.440450px;}
.y7_c00294{bottom:1010.910450px;}
.y6_c00294{bottom:1045.290450px;}
.y5_c00294{bottom:1097.760450px;}
.y4_c00294{bottom:1141.140450px;}
.y2_c00294{bottom:1177.860450px;}
.y1_c00294{bottom:1196.850450px;}
.ha_c00294{height:47.988281px;}
.hb_c00294{height:49.937344px;}
.hc_c00294{height:49.945264px;}
.h1_c00294{height:50.315273px;}
.h2_c00294{height:56.320312px;}
.h6_c00294{height:60.257812px;}
.h9_c00294{height:60.328125px;}
.h7_c00294{height:60.890625px;}
.h5_c00294{height:65.130820px;}
.h8_c00294{height:65.131420px;}
.h3_c00294{height:72.160312px;}
.h4_c00294{height:75.093750px;}
.h0_c00294{height:1263.000000px;}
.w1_c00294{width:892.500000px;}
.w0_c00294{width:892.830000px;}
.x0_c00294{left:0.000000px;}
.x1_c00294{left:127.620000px;}
.x2_c00294{left:154.440000px;}
.x3_c00294{left:180.810000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.v1_c00294{vertical-align:14.080000pt;}
.v2_c00294{vertical-align:26.560000pt;}
.ls15_c00294{letter-spacing:-0.134400pt;}
.ls19_c00294{letter-spacing:-0.064000pt;}
.ls1c_c00294{letter-spacing:-0.051200pt;}
.ls1f_c00294{letter-spacing:-0.038400pt;}
.ls1a_c00294{letter-spacing:-0.032000pt;}
.ls1b_c00294{letter-spacing:-0.025600pt;}
.ls1e_c00294{letter-spacing:-0.019200pt;}
.ls18_c00294{letter-spacing:-0.012800pt;}
.ls16_c00294{letter-spacing:-0.006400pt;}
.ls20_c00294{letter-spacing:-0.003456pt;}
.ls14_c00294{letter-spacing:0.000000pt;}
.ls5_c00294{letter-spacing:0.006400pt;}
.lsb_c00294{letter-spacing:0.012768pt;}
.lsa_c00294{letter-spacing:0.012800pt;}
.ls11_c00294{letter-spacing:0.017024pt;}
.ls6_c00294{letter-spacing:0.019200pt;}
.ls10_c00294{letter-spacing:0.025536pt;}
.ls12_c00294{letter-spacing:0.029792pt;}
.lse_c00294{letter-spacing:0.034048pt;}
.ls13_c00294{letter-spacing:0.038304pt;}
.lsd_c00294{letter-spacing:0.042560pt;}
.ls0_c00294{letter-spacing:0.042752pt;}
.ls4_c00294{letter-spacing:0.048672pt;}
.lsf_c00294{letter-spacing:0.055328pt;}
.ls17_c00294{letter-spacing:0.083200pt;}
.ls8_c00294{letter-spacing:0.127680pt;}
.ls2_c00294{letter-spacing:0.128000pt;}
.ls1d_c00294{letter-spacing:0.134400pt;}
.lsc_c00294{letter-spacing:0.412480pt;}
.ls7_c00294{letter-spacing:1.280000pt;}
.ls3_c00294{letter-spacing:58.688000pt;}
.ls9_c00294{letter-spacing:71.359360pt;}
.ls1_c00294{letter-spacing:1077.440000pt;}
.ws2_c00294{word-spacing:-16.019200pt;}
.ws1_c00294{word-spacing:-15.980800pt;}
.ws3_c00294{word-spacing:-9.604224pt;}
.ws0_c00294{word-spacing:-9.408672pt;}
.wsf_c00294{word-spacing:-0.076800pt;}
.ws29_c00294{word-spacing:-0.025536pt;}
.ws30_c00294{word-spacing:-0.021280pt;}
.ws2a_c00294{word-spacing:-0.017024pt;}
.ws2e_c00294{word-spacing:-0.012768pt;}
.ws9_c00294{word-spacing:-0.006400pt;}
.ws5_c00294{word-spacing:0.000000pt;}
.ws27_c00294{word-spacing:0.004256pt;}
.ws6_c00294{word-spacing:0.006400pt;}
.ws20_c00294{word-spacing:0.012800pt;}
.ws2f_c00294{word-spacing:0.017024pt;}
.ws4_c00294{word-spacing:0.037408pt;}
.wsa_c00294{word-spacing:0.038400pt;}
.ws26_c00294{word-spacing:0.057600pt;}
.ws28_c00294{word-spacing:0.323456pt;}
.ws7_c00294{word-spacing:0.652800pt;}
.ws8_c00294{word-spacing:0.704000pt;}
.ws2b_c00294{word-spacing:1.238496pt;}
.ws23_c00294{word-spacing:1.267200pt;}
.ws2c_c00294{word-spacing:1.268288pt;}
.ws2d_c00294{word-spacing:1.276800pt;}
.ws1a_c00294{word-spacing:1.286400pt;}
.ws18_c00294{word-spacing:1.305600pt;}
.ws24_c00294{word-spacing:1.318400pt;}
.ws19_c00294{word-spacing:1.350400pt;}
.ws17_c00294{word-spacing:1.395200pt;}
.wsb_c00294{word-spacing:1.920000pt;}
.wsc_c00294{word-spacing:1.952000pt;}
.ws1d_c00294{word-spacing:3.539200pt;}
.ws25_c00294{word-spacing:6.444800pt;}
.ws13_c00294{word-spacing:8.000000pt;}
.ws12_c00294{word-spacing:8.025600pt;}
.wse_c00294{word-spacing:9.260800pt;}
.ws1c_c00294{word-spacing:9.280000pt;}
.wsd_c00294{word-spacing:9.305600pt;}
.ws1b_c00294{word-spacing:9.318400pt;}
.ws21_c00294{word-spacing:9.612800pt;}
.ws11_c00294{word-spacing:9.625600pt;}
.ws22_c00294{word-spacing:9.689600pt;}
.ws10_c00294{word-spacing:9.926400pt;}
.ws16_c00294{word-spacing:12.345600pt;}
.ws14_c00294{word-spacing:12.531200pt;}
.ws15_c00294{word-spacing:12.608000pt;}
.ws1f_c00294{word-spacing:21.075200pt;}
.ws1e_c00294{word-spacing:21.132800pt;}
._0_c00294{margin-left:-1.175680pt;}
._1_c00294{width:1.216000pt;}
.fs5_c00294{font-size:34.560000pt;}
.fs3_c00294{font-size:37.440000pt;}
.fs4_c00294{font-size:42.560000pt;}
.fs1_c00294{font-size:48.000000pt;}
.fs0_c00294{font-size:53.440000pt;}
.fs2_c00294{font-size:64.000000pt;}
.y0_c00294{bottom:0.000000pt;}
.y3_c00294{bottom:51.067067pt;}
.y23_c00294{bottom:101.065307pt;}
.y22_c00294{bottom:117.390427pt;}
.y21_c00294{bottom:133.632667pt;}
.y20_c00294{bottom:149.869307pt;}
.y1f_c00294{bottom:162.190427pt;}
.y1e_c00294{bottom:178.427067pt;}
.y1d_c00294{bottom:191.947067pt;}
.y1c_c00294{bottom:210.347067pt;}
.y1b_c00294{bottom:228.747067pt;}
.y1a_c00294{bottom:277.147067pt;}
.y19_c00294{bottom:307.787067pt;}
.y18_c00294{bottom:338.347067pt;}
.y17_c00294{bottom:376.987200pt;}
.y16_c00294{bottom:407.547200pt;}
.y15_c00294{bottom:446.187067pt;}
.y14_c00294{bottom:476.747067pt;}
.y13_c00294{bottom:507.387067pt;}
.y12_c00294{bottom:537.947067pt;}
.y11_c00294{bottom:568.587067pt;}
.y10_c00294{bottom:607.147067pt;}
.yf_c00294{bottom:637.787067pt;}
.ye_c00294{bottom:668.347067pt;}
.yd_c00294{bottom:698.987067pt;}
.yc_c00294{bottom:729.547067pt;}
.yb_c00294{bottom:760.187067pt;}
.ya_c00294{bottom:798.747067pt;}
.y9_c00294{bottom:829.387067pt;}
.y8_c00294{bottom:859.947067pt;}
.y7_c00294{bottom:898.587067pt;}
.y6_c00294{bottom:929.147067pt;}
.y5_c00294{bottom:975.787067pt;}
.y4_c00294{bottom:1014.347067pt;}
.y2_c00294{bottom:1046.987067pt;}
.y1_c00294{bottom:1063.867067pt;}
.ha_c00294{height:42.656250pt;}
.hb_c00294{height:44.388750pt;}
.hc_c00294{height:44.395790pt;}
.h1_c00294{height:44.724687pt;}
.h2_c00294{height:50.062500pt;}
.h6_c00294{height:53.562500pt;}
.h9_c00294{height:53.625000pt;}
.h7_c00294{height:54.125000pt;}
.h5_c00294{height:57.894063pt;}
.h8_c00294{height:57.894596pt;}
.h3_c00294{height:64.142500pt;}
.h4_c00294{height:66.750000pt;}
.h0_c00294{height:1122.666667pt;}
.w1_c00294{width:793.333333pt;}
.w0_c00294{width:793.626667pt;}
.x0_c00294{left:0.000000pt;}
.x1_c00294{left:113.440000pt;}
.x2_c00294{left:137.280000pt;}
.x3_c00294{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_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_45c45bcb7d2929f30fb0c5ef.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00295;src:url('chunks/assets/font_24384ebb4f45e180744d1af9.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00295;src:url('chunks/assets/font_e6be5f4c75b172b367ef6224.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00295;src:url('chunks/assets/font_3cd15669231291950086edc8.woff2')format("woff");}.ff5_c00295{font-family:ff5_c00295;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00295;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00295{font-family:ff6_c00295;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00295;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff7_c00295{font-family:ff7_c00295;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_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;}
.v1_c00295{vertical-align:29.880000px;}
.lse_c00295{letter-spacing:-0.151200px;}
.ls11_c00295{letter-spacing:-0.043200px;}
.ls15_c00295{letter-spacing:-0.036000px;}
.ls18_c00295{letter-spacing:-0.031248px;}
.ls10_c00295{letter-spacing:-0.028800px;}
.ls16_c00295{letter-spacing:-0.021600px;}
.lsf_c00295{letter-spacing:-0.014400px;}
.ls14_c00295{letter-spacing:-0.007200px;}
.ls19_c00295{letter-spacing:-0.003888px;}
.lsd_c00295{letter-spacing:0.000000px;}
.lsb_c00295{letter-spacing:0.004788px;}
.ls1_c00295{letter-spacing:0.007200px;}
.ls7_c00295{letter-spacing:0.007812px;}
.ls8_c00295{letter-spacing:0.014364px;}
.ls13_c00295{letter-spacing:0.014400px;}
.ls5_c00295{letter-spacing:0.021600px;}
.ls17_c00295{letter-spacing:0.036000px;}
.ls0_c00295{letter-spacing:0.036072px;}
.lsc_c00295{letter-spacing:0.043092px;}
.lsa_c00295{letter-spacing:0.047880px;}
.ls2_c00295{letter-spacing:0.054756px;}
.ls12_c00295{letter-spacing:0.093600px;}
.ls3_c00295{letter-spacing:0.144000px;}
.ls9_c00295{letter-spacing:0.464040px;}
.ls6_c00295{letter-spacing:37.341360px;}
.ls4_c00295{letter-spacing:66.024000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00295{word-spacing:-19.498752px;}
.ws1_c00295{word-spacing:-17.971200px;}
.ws2_c00295{word-spacing:-17.964000px;}
.ws4_c00295{word-spacing:-10.804752px;}
.ws0_c00295{word-spacing:-10.584756px;}
.ws5_c00295{word-spacing:-0.306612px;}
.ws20_c00295{word-spacing:-0.148428px;}
.ws26_c00295{word-spacing:-0.028728px;}
.ws29_c00295{word-spacing:-0.023940px;}
.ws6_c00295{word-spacing:0.000000px;}
.ws24_c00295{word-spacing:0.004788px;}
.ws12_c00295{word-spacing:0.007200px;}
.ws28_c00295{word-spacing:0.014364px;}
.ws27_c00295{word-spacing:0.019152px;}
.ws9_c00295{word-spacing:0.028800px;}
.wsa_c00295{word-spacing:0.043200px;}
.ws15_c00295{word-spacing:0.093600px;}
.ws25_c00295{word-spacing:0.363888px;}
.ws19_c00295{word-spacing:0.741600px;}
.ws7_c00295{word-spacing:1.094400px;}
.wse_c00295{word-spacing:2.167200px;}
.ws1b_c00295{word-spacing:3.211200px;}
.ws1a_c00295{word-spacing:3.218400px;}
.wsc_c00295{word-spacing:3.585600px;}
.wsb_c00295{word-spacing:3.628800px;}
.wsd_c00295{word-spacing:3.664800px;}
.ws1d_c00295{word-spacing:5.436000px;}
.ws21_c00295{word-spacing:5.760000px;}
.ws16_c00295{word-spacing:6.141600px;}
.ws17_c00295{word-spacing:6.530400px;}
.ws13_c00295{word-spacing:7.538400px;}
.ws14_c00295{word-spacing:7.567200px;}
.ws23_c00295{word-spacing:8.280000px;}
.ws22_c00295{word-spacing:8.301600px;}
.wsf_c00295{word-spacing:8.618400px;}
.ws10_c00295{word-spacing:8.640000px;}
.ws11_c00295{word-spacing:8.726400px;}
.ws18_c00295{word-spacing:11.512800px;}
.ws8_c00295{word-spacing:15.523200px;}
.ws1c_c00295{word-spacing:20.548800px;}
.ws1f_c00295{word-spacing:24.480000px;}
.ws1e_c00295{word-spacing:24.508800px;}
._0_c00295{margin-left:-1.022040px;}
._1_c00295{width:1.008000px;}
.fc0_c00295{color:rgb(0,0,0);}
.fs6_c00295{font-size:38.880000px;}
.fs3_c00295{font-size:42.120000px;}
.fs4_c00295{font-size:47.880000px;}
.fs2_c00295{font-size:54.000000px;}
.fs0_c00295{font-size:60.120000px;}
.fs1_c00295{font-size:72.000000px;}
.fs5_c00295{font-size:78.120000px;}
.y0_c00295{bottom:0.000000px;}
.y3_c00295{bottom:57.450450px;}
.y4_c00295{bottom:61.410450px;}
.y24_c00295{bottom:113.698470px;}
.y23_c00295{bottom:132.064230px;}
.y22_c00295{bottom:150.334230px;}
.y21_c00295{bottom:168.598620px;}
.y20_c00295{bottom:186.960600px;}
.y1f_c00295{bottom:202.170450px;}
.y1e_c00295{bottom:222.870450px;}
.y1d_c00295{bottom:243.570450px;}
.y1c_c00295{bottom:274.530450px;}
.y1b_c00295{bottom:308.910450px;}
.y1a_c00295{bottom:343.380450px;}
.y19_c00295{bottom:388.380450px;}
.y18_c00295{bottom:442.110450px;}
.y17_c00295{bottom:476.490450px;}
.y16_c00295{bottom:510.960450px;}
.y15_c00295{bottom:554.340450px;}
.y14_c00295{bottom:588.810450px;}
.y13_c00295{bottom:623.190450px;}
.y12_c00295{bottom:666.660450px;}
.y11_c00295{bottom:701.040450px;}
.y10_c00295{bottom:735.510450px;}
.yf_c00295{bottom:769.890450px;}
.ye_c00295{bottom:804.360450px;}
.yd_c00295{bottom:847.740450px;}
.yc_c00295{bottom:882.210450px;}
.yb_c00295{bottom:925.590450px;}
.ya_c00295{bottom:960.060450px;}
.y9_c00295{bottom:994.440450px;}
.y8_c00295{bottom:1028.910450px;}
.y7_c00295{bottom:1072.290450px;}
.y6_c00295{bottom:1106.760450px;}
.y5_c00295{bottom:1141.140450px;}
.y2_c00295{bottom:1173.810450px;}
.y1_c00295{bottom:1196.850450px;}
.h2_c00295{height:47.988281px;}
.h8_c00295{height:49.937344px;}
.h9_c00295{height:49.944664px;}
.ha_c00295{height:49.945264px;}
.h1_c00295{height:50.315273px;}
.h3_c00295{height:56.320312px;}
.h4_c00295{height:60.257812px;}
.h5_c00295{height:65.130820px;}
.h6_c00295{height:75.093750px;}
.h7_c00295{height:81.476719px;}
.h0_c00295{height:1263.000000px;}
.w1_c00295{width:892.500000px;}
.w0_c00295{width:892.830000px;}
.x0_c00295{left:0.000000px;}
.x2_c00295{left:127.620000px;}
.x7_c00295{left:154.440000px;}
.x6_c00295{left:180.720000px;}
.x5_c00295{left:207.000000px;}
.x4_c00295{left:435.240000px;}
.x3_c00295{left:446.490000px;}
.x1_c00295{left:490.770000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.v1_c00295{vertical-align:26.560000pt;}
.lse_c00295{letter-spacing:-0.134400pt;}
.ls11_c00295{letter-spacing:-0.038400pt;}
.ls15_c00295{letter-spacing:-0.032000pt;}
.ls18_c00295{letter-spacing:-0.027776pt;}
.ls10_c00295{letter-spacing:-0.025600pt;}
.ls16_c00295{letter-spacing:-0.019200pt;}
.lsf_c00295{letter-spacing:-0.012800pt;}
.ls14_c00295{letter-spacing:-0.006400pt;}
.ls19_c00295{letter-spacing:-0.003456pt;}
.lsd_c00295{letter-spacing:0.000000pt;}
.lsb_c00295{letter-spacing:0.004256pt;}
.ls1_c00295{letter-spacing:0.006400pt;}
.ls7_c00295{letter-spacing:0.006944pt;}
.ls8_c00295{letter-spacing:0.012768pt;}
.ls13_c00295{letter-spacing:0.012800pt;}
.ls5_c00295{letter-spacing:0.019200pt;}
.ls17_c00295{letter-spacing:0.032000pt;}
.ls0_c00295{letter-spacing:0.032064pt;}
.lsc_c00295{letter-spacing:0.038304pt;}
.lsa_c00295{letter-spacing:0.042560pt;}
.ls2_c00295{letter-spacing:0.048672pt;}
.ls12_c00295{letter-spacing:0.083200pt;}
.ls3_c00295{letter-spacing:0.128000pt;}
.ls9_c00295{letter-spacing:0.412480pt;}
.ls6_c00295{letter-spacing:33.192320pt;}
.ls4_c00295{letter-spacing:58.688000pt;}
.ws3_c00295{word-spacing:-17.332224pt;}
.ws1_c00295{word-spacing:-15.974400pt;}
.ws2_c00295{word-spacing:-15.968000pt;}
.ws4_c00295{word-spacing:-9.604224pt;}
.ws0_c00295{word-spacing:-9.408672pt;}
.ws5_c00295{word-spacing:-0.272544pt;}
.ws20_c00295{word-spacing:-0.131936pt;}
.ws26_c00295{word-spacing:-0.025536pt;}
.ws29_c00295{word-spacing:-0.021280pt;}
.ws6_c00295{word-spacing:0.000000pt;}
.ws24_c00295{word-spacing:0.004256pt;}
.ws12_c00295{word-spacing:0.006400pt;}
.ws28_c00295{word-spacing:0.012768pt;}
.ws27_c00295{word-spacing:0.017024pt;}
.ws9_c00295{word-spacing:0.025600pt;}
.wsa_c00295{word-spacing:0.038400pt;}
.ws15_c00295{word-spacing:0.083200pt;}
.ws25_c00295{word-spacing:0.323456pt;}
.ws19_c00295{word-spacing:0.659200pt;}
.ws7_c00295{word-spacing:0.972800pt;}
.wse_c00295{word-spacing:1.926400pt;}
.ws1b_c00295{word-spacing:2.854400pt;}
.ws1a_c00295{word-spacing:2.860800pt;}
.wsc_c00295{word-spacing:3.187200pt;}
.wsb_c00295{word-spacing:3.225600pt;}
.wsd_c00295{word-spacing:3.257600pt;}
.ws1d_c00295{word-spacing:4.832000pt;}
.ws21_c00295{word-spacing:5.120000pt;}
.ws16_c00295{word-spacing:5.459200pt;}
.ws17_c00295{word-spacing:5.804800pt;}
.ws13_c00295{word-spacing:6.700800pt;}
.ws14_c00295{word-spacing:6.726400pt;}
.ws23_c00295{word-spacing:7.360000pt;}
.ws22_c00295{word-spacing:7.379200pt;}
.wsf_c00295{word-spacing:7.660800pt;}
.ws10_c00295{word-spacing:7.680000pt;}
.ws11_c00295{word-spacing:7.756800pt;}
.ws18_c00295{word-spacing:10.233600pt;}
.ws8_c00295{word-spacing:13.798400pt;}
.ws1c_c00295{word-spacing:18.265600pt;}
.ws1f_c00295{word-spacing:21.760000pt;}
.ws1e_c00295{word-spacing:21.785600pt;}
._0_c00295{margin-left:-0.908480pt;}
._1_c00295{width:0.896000pt;}
.fs6_c00295{font-size:34.560000pt;}
.fs3_c00295{font-size:37.440000pt;}
.fs4_c00295{font-size:42.560000pt;}
.fs2_c00295{font-size:48.000000pt;}
.fs0_c00295{font-size:53.440000pt;}
.fs1_c00295{font-size:64.000000pt;}
.fs5_c00295{font-size:69.440000pt;}
.y0_c00295{bottom:0.000000pt;}
.y3_c00295{bottom:51.067067pt;}
.y4_c00295{bottom:54.587067pt;}
.y24_c00295{bottom:101.065307pt;}
.y23_c00295{bottom:117.390427pt;}
.y22_c00295{bottom:133.630427pt;}
.y21_c00295{bottom:149.865440pt;}
.y20_c00295{bottom:166.187200pt;}
.y1f_c00295{bottom:179.707067pt;}
.y1e_c00295{bottom:198.107067pt;}
.y1d_c00295{bottom:216.507067pt;}
.y1c_c00295{bottom:244.027067pt;}
.y1b_c00295{bottom:274.587067pt;}
.y1a_c00295{bottom:305.227067pt;}
.y19_c00295{bottom:345.227067pt;}
.y18_c00295{bottom:392.987067pt;}
.y17_c00295{bottom:423.547067pt;}
.y16_c00295{bottom:454.187067pt;}
.y15_c00295{bottom:492.747067pt;}
.y14_c00295{bottom:523.387067pt;}
.y13_c00295{bottom:553.947067pt;}
.y12_c00295{bottom:592.587067pt;}
.y11_c00295{bottom:623.147067pt;}
.y10_c00295{bottom:653.787067pt;}
.yf_c00295{bottom:684.347067pt;}
.ye_c00295{bottom:714.987067pt;}
.yd_c00295{bottom:753.547067pt;}
.yc_c00295{bottom:784.187067pt;}
.yb_c00295{bottom:822.747067pt;}
.ya_c00295{bottom:853.387067pt;}
.y9_c00295{bottom:883.947067pt;}
.y8_c00295{bottom:914.587067pt;}
.y7_c00295{bottom:953.147067pt;}
.y6_c00295{bottom:983.787067pt;}
.y5_c00295{bottom:1014.347067pt;}
.y2_c00295{bottom:1043.387067pt;}
.y1_c00295{bottom:1063.867067pt;}
.h2_c00295{height:42.656250pt;}
.h8_c00295{height:44.388750pt;}
.h9_c00295{height:44.395257pt;}
.ha_c00295{height:44.395790pt;}
.h1_c00295{height:44.724687pt;}
.h3_c00295{height:50.062500pt;}
.h4_c00295{height:53.562500pt;}
.h5_c00295{height:57.894062pt;}
.h6_c00295{height:66.750000pt;}
.h7_c00295{height:72.423750pt;}
.h0_c00295{height:1122.666667pt;}
.w1_c00295{width:793.333333pt;}
.w0_c00295{width:793.626667pt;}
.x0_c00295{left:0.000000pt;}
.x2_c00295{left:113.440000pt;}
.x7_c00295{left:137.280000pt;}
.x6_c00295{left:160.640000pt;}
.x5_c00295{left:184.000000pt;}
.x4_c00295{left:386.880000pt;}
.x3_c00295{left:396.880000pt;}
.x1_c00295{left:436.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_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_f6c51ff5e21de82e84090336.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.100098;font-style:normal;font-weight:normal;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_9a62a0fd94a23d68fc3ecf73.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;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_c00296;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00296;src:url('chunks/assets/font_50276703732bb14a83dd6fd9.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:1.102051;font-style:normal;font-weight:normal;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_9643389acad552e8b30d143a.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00296;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00296{font-family:ff6_c00296;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00296;src:url('chunks/assets/font_d83a86b55b91942756b51d02.woff2')format("woff");}.ff7_c00296{font-family:ff7_c00296;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_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;}
.v1_c00296{vertical-align:15.840000px;}
.v2_c00296{vertical-align:29.880000px;}
.ls14_c00296{letter-spacing:-0.151200px;}
.ls1b_c00296{letter-spacing:-0.100800px;}
.ls1e_c00296{letter-spacing:-0.050400px;}
.ls1c_c00296{letter-spacing:-0.043200px;}
.ls18_c00296{letter-spacing:-0.036000px;}
.ls1a_c00296{letter-spacing:-0.028800px;}
.ls16_c00296{letter-spacing:-0.021600px;}
.ls1f_c00296{letter-spacing:-0.015624px;}
.ls19_c00296{letter-spacing:-0.014400px;}
.ls20_c00296{letter-spacing:-0.007812px;}
.ls15_c00296{letter-spacing:-0.007200px;}
.ls22_c00296{letter-spacing:-0.003888px;}
.ls13_c00296{letter-spacing:0.000000px;}
.lsc_c00296{letter-spacing:0.004788px;}
.ls4_c00296{letter-spacing:0.007200px;}
.lsd_c00296{letter-spacing:0.009576px;}
.ls9_c00296{letter-spacing:0.014364px;}
.ls5_c00296{letter-spacing:0.014400px;}
.ls12_c00296{letter-spacing:0.019152px;}
.lsf_c00296{letter-spacing:0.028728px;}
.ls17_c00296{letter-spacing:0.028800px;}
.ls10_c00296{letter-spacing:0.033516px;}
.ls21_c00296{letter-spacing:0.036000px;}
.lsb_c00296{letter-spacing:0.047880px;}
.ls0_c00296{letter-spacing:0.048096px;}
.ls7_c00296{letter-spacing:0.054756px;}
.lse_c00296{letter-spacing:0.057456px;}
.ls11_c00296{letter-spacing:0.071820px;}
.ls1d_c00296{letter-spacing:0.093600px;}
.ls2_c00296{letter-spacing:0.144000px;}
.lsa_c00296{letter-spacing:0.464040px;}
.ls8_c00296{letter-spacing:31.560480px;}
.ls3_c00296{letter-spacing:65.304000px;}
.ls6_c00296{letter-spacing:66.024000px;}
.ls1_c00296{letter-spacing:1212.120000px;}
.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;}
}
.ws3_c00296{word-spacing:-19.514376px;}
.ws1_c00296{word-spacing:-18.014400px;}
.ws0_c00296{word-spacing:-18.007200px;}
.ws4_c00296{word-spacing:-10.804752px;}
.ws2_c00296{word-spacing:-10.584756px;}
.ws20_c00296{word-spacing:-0.124992px;}
.ws2c_c00296{word-spacing:-0.038304px;}
.wsd_c00296{word-spacing:-0.028800px;}
.ws29_c00296{word-spacing:-0.028728px;}
.ws33_c00296{word-spacing:-0.014364px;}
.ws2d_c00296{word-spacing:-0.009576px;}
.ws6_c00296{word-spacing:0.000000px;}
.ws27_c00296{word-spacing:0.004788px;}
.ws9_c00296{word-spacing:0.007200px;}
.ws2b_c00296{word-spacing:0.009576px;}
.ws2a_c00296{word-spacing:0.014364px;}
.ws25_c00296{word-spacing:0.014400px;}
.wsc_c00296{word-spacing:0.021600px;}
.ws26_c00296{word-spacing:0.036000px;}
.ws5_c00296{word-spacing:0.042084px;}
.ws12_c00296{word-spacing:0.057600px;}
.ws1f_c00296{word-spacing:0.072000px;}
.ws15_c00296{word-spacing:0.223200px;}
.ws16_c00296{word-spacing:0.230400px;}
.ws28_c00296{word-spacing:0.363888px;}
.ws1e_c00296{word-spacing:0.741600px;}
.ws1d_c00296{word-spacing:0.792000px;}
.ws1c_c00296{word-spacing:0.813600px;}
.ws24_c00296{word-spacing:2.887200px;}
.ws23_c00296{word-spacing:2.944800px;}
.wse_c00296{word-spacing:4.320000px;}
.ws17_c00296{word-spacing:4.334400px;}
.ws18_c00296{word-spacing:4.370400px;}
.wsf_c00296{word-spacing:4.485600px;}
.ws32_c00296{word-spacing:5.386500px;}
.ws31_c00296{word-spacing:5.396076px;}
.ws11_c00296{word-spacing:6.508800px;}
.ws10_c00296{word-spacing:6.638400px;}
.ws30_c00296{word-spacing:9.666972px;}
.ws2e_c00296{word-spacing:9.681336px;}
.ws2f_c00296{word-spacing:9.705276px;}
.ws13_c00296{word-spacing:12.261600px;}
.ws14_c00296{word-spacing:12.340800px;}
.ws1b_c00296{word-spacing:13.327200px;}
.wsb_c00296{word-spacing:15.847200px;}
.wsa_c00296{word-spacing:15.919200px;}
.ws19_c00296{word-spacing:17.244000px;}
.ws21_c00296{word-spacing:17.265600px;}
.ws22_c00296{word-spacing:17.294400px;}
.ws1a_c00296{word-spacing:17.308800px;}
.ws8_c00296{word-spacing:17.683200px;}
.ws7_c00296{word-spacing:17.697600px;}
._2_c00296{margin-left:-4.680000px;}
._0_c00296{margin-left:-1.322640px;}
._1_c00296{width:1.332000px;}
._3_c00296{width:9.743580px;}
.fc0_c00296{color:rgb(0,0,0);}
.fs6_c00296{font-size:38.880000px;}
.fs3_c00296{font-size:42.120000px;}
.fs5_c00296{font-size:47.880000px;}
.fs1_c00296{font-size:54.000000px;}
.fs0_c00296{font-size:60.120000px;}
.fs2_c00296{font-size:72.000000px;}
.fs4_c00296{font-size:78.120000px;}
.y0_c00296{bottom:0.000000px;}
.y3_c00296{bottom:57.450450px;}
.y23_c00296{bottom:113.698470px;}
.y22_c00296{bottom:132.073050px;}
.y21_c00296{bottom:150.339270px;}
.y20_c00296{bottom:164.104770px;}
.y1f_c00296{bottom:177.966030px;}
.y1e_c00296{bottom:196.232250px;}
.y1d_c00296{bottom:214.498470px;}
.y1c_c00296{bottom:232.860450px;}
.y1b_c00296{bottom:248.070450px;}
.y1a_c00296{bottom:268.770450px;}
.y19_c00296{bottom:289.470450px;}
.y18_c00296{bottom:359.760600px;}
.y17_c00296{bottom:394.230600px;}
.y16_c00296{bottom:428.610450px;}
.y15_c00296{bottom:463.080450px;}
.y14_c00296{bottom:508.080450px;}
.y13_c00296{bottom:561.810450px;}
.y12_c00296{bottom:596.190450px;}
.y11_c00296{bottom:630.660450px;}
.y10_c00296{bottom:665.040450px;}
.yf_c00296{bottom:699.510450px;}
.ye_c00296{bottom:751.890450px;}
.yd_c00296{bottom:795.360450px;}
.yc_c00296{bottom:829.740450px;}
.yb_c00296{bottom:873.210450px;}
.ya_c00296{bottom:907.590450px;}
.y9_c00296{bottom:942.060450px;}
.y8_c00296{bottom:985.440450px;}
.y7_c00296{bottom:1028.910450px;}
.y6_c00296{bottom:1063.290450px;}
.y5_c00296{bottom:1106.760450px;}
.y4_c00296{bottom:1141.140450px;}
.y2_c00296{bottom:1177.860450px;}
.y1_c00296{bottom:1196.850450px;}
.ha_c00296{height:47.988281px;}
.hb_c00296{height:49.937344px;}
.h1_c00296{height:50.315273px;}
.h2_c00296{height:56.320312px;}
.h4_c00296{height:60.257812px;}
.h6_c00296{height:60.890625px;}
.h9_c00296{height:65.130220px;}
.h7_c00296{height:65.130820px;}
.h3_c00296{height:72.160312px;}
.h5_c00296{height:75.093750px;}
.h8_c00296{height:81.476719px;}
.h0_c00296{height:1263.000000px;}
.w1_c00296{width:892.500000px;}
.w0_c00296{width:892.830000px;}
.x0_c00296{left:0.000000px;}
.x1_c00296{left:127.620000px;}
.x3_c00296{left:154.620000px;}
.x2_c00296{left:180.810000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.v1_c00296{vertical-align:14.080000pt;}
.v2_c00296{vertical-align:26.560000pt;}
.ls14_c00296{letter-spacing:-0.134400pt;}
.ls1b_c00296{letter-spacing:-0.089600pt;}
.ls1e_c00296{letter-spacing:-0.044800pt;}
.ls1c_c00296{letter-spacing:-0.038400pt;}
.ls18_c00296{letter-spacing:-0.032000pt;}
.ls1a_c00296{letter-spacing:-0.025600pt;}
.ls16_c00296{letter-spacing:-0.019200pt;}
.ls1f_c00296{letter-spacing:-0.013888pt;}
.ls19_c00296{letter-spacing:-0.012800pt;}
.ls20_c00296{letter-spacing:-0.006944pt;}
.ls15_c00296{letter-spacing:-0.006400pt;}
.ls22_c00296{letter-spacing:-0.003456pt;}
.ls13_c00296{letter-spacing:0.000000pt;}
.lsc_c00296{letter-spacing:0.004256pt;}
.ls4_c00296{letter-spacing:0.006400pt;}
.lsd_c00296{letter-spacing:0.008512pt;}
.ls9_c00296{letter-spacing:0.012768pt;}
.ls5_c00296{letter-spacing:0.012800pt;}
.ls12_c00296{letter-spacing:0.017024pt;}
.lsf_c00296{letter-spacing:0.025536pt;}
.ls17_c00296{letter-spacing:0.025600pt;}
.ls10_c00296{letter-spacing:0.029792pt;}
.ls21_c00296{letter-spacing:0.032000pt;}
.lsb_c00296{letter-spacing:0.042560pt;}
.ls0_c00296{letter-spacing:0.042752pt;}
.ls7_c00296{letter-spacing:0.048672pt;}
.lse_c00296{letter-spacing:0.051072pt;}
.ls11_c00296{letter-spacing:0.063840pt;}
.ls1d_c00296{letter-spacing:0.083200pt;}
.ls2_c00296{letter-spacing:0.128000pt;}
.lsa_c00296{letter-spacing:0.412480pt;}
.ls8_c00296{letter-spacing:28.053760pt;}
.ls3_c00296{letter-spacing:58.048000pt;}
.ls6_c00296{letter-spacing:58.688000pt;}
.ls1_c00296{letter-spacing:1077.440000pt;}
.ws3_c00296{word-spacing:-17.346112pt;}
.ws1_c00296{word-spacing:-16.012800pt;}
.ws0_c00296{word-spacing:-16.006400pt;}
.ws4_c00296{word-spacing:-9.604224pt;}
.ws2_c00296{word-spacing:-9.408672pt;}
.ws20_c00296{word-spacing:-0.111104pt;}
.ws2c_c00296{word-spacing:-0.034048pt;}
.wsd_c00296{word-spacing:-0.025600pt;}
.ws29_c00296{word-spacing:-0.025536pt;}
.ws33_c00296{word-spacing:-0.012768pt;}
.ws2d_c00296{word-spacing:-0.008512pt;}
.ws6_c00296{word-spacing:0.000000pt;}
.ws27_c00296{word-spacing:0.004256pt;}
.ws9_c00296{word-spacing:0.006400pt;}
.ws2b_c00296{word-spacing:0.008512pt;}
.ws2a_c00296{word-spacing:0.012768pt;}
.ws25_c00296{word-spacing:0.012800pt;}
.wsc_c00296{word-spacing:0.019200pt;}
.ws26_c00296{word-spacing:0.032000pt;}
.ws5_c00296{word-spacing:0.037408pt;}
.ws12_c00296{word-spacing:0.051200pt;}
.ws1f_c00296{word-spacing:0.064000pt;}
.ws15_c00296{word-spacing:0.198400pt;}
.ws16_c00296{word-spacing:0.204800pt;}
.ws28_c00296{word-spacing:0.323456pt;}
.ws1e_c00296{word-spacing:0.659200pt;}
.ws1d_c00296{word-spacing:0.704000pt;}
.ws1c_c00296{word-spacing:0.723200pt;}
.ws24_c00296{word-spacing:2.566400pt;}
.ws23_c00296{word-spacing:2.617600pt;}
.wse_c00296{word-spacing:3.840000pt;}
.ws17_c00296{word-spacing:3.852800pt;}
.ws18_c00296{word-spacing:3.884800pt;}
.wsf_c00296{word-spacing:3.987200pt;}
.ws32_c00296{word-spacing:4.788000pt;}
.ws31_c00296{word-spacing:4.796512pt;}
.ws11_c00296{word-spacing:5.785600pt;}
.ws10_c00296{word-spacing:5.900800pt;}
.ws30_c00296{word-spacing:8.592864pt;}
.ws2e_c00296{word-spacing:8.605632pt;}
.ws2f_c00296{word-spacing:8.626912pt;}
.ws13_c00296{word-spacing:10.899200pt;}
.ws14_c00296{word-spacing:10.969600pt;}
.ws1b_c00296{word-spacing:11.846400pt;}
.wsb_c00296{word-spacing:14.086400pt;}
.wsa_c00296{word-spacing:14.150400pt;}
.ws19_c00296{word-spacing:15.328000pt;}
.ws21_c00296{word-spacing:15.347200pt;}
.ws22_c00296{word-spacing:15.372800pt;}
.ws1a_c00296{word-spacing:15.385600pt;}
.ws8_c00296{word-spacing:15.718400pt;}
.ws7_c00296{word-spacing:15.731200pt;}
._2_c00296{margin-left:-4.160000pt;}
._0_c00296{margin-left:-1.175680pt;}
._1_c00296{width:1.184000pt;}
._3_c00296{width:8.660960pt;}
.fs6_c00296{font-size:34.560000pt;}
.fs3_c00296{font-size:37.440000pt;}
.fs5_c00296{font-size:42.560000pt;}
.fs1_c00296{font-size:48.000000pt;}
.fs0_c00296{font-size:53.440000pt;}
.fs2_c00296{font-size:64.000000pt;}
.fs4_c00296{font-size:69.440000pt;}
.y0_c00296{bottom:0.000000pt;}
.y3_c00296{bottom:51.067067pt;}
.y23_c00296{bottom:101.065307pt;}
.y22_c00296{bottom:117.398267pt;}
.y21_c00296{bottom:133.634907pt;}
.y20_c00296{bottom:145.870907pt;}
.y1f_c00296{bottom:158.192027pt;}
.y1e_c00296{bottom:174.428667pt;}
.y1d_c00296{bottom:190.665307pt;}
.y1c_c00296{bottom:206.987067pt;}
.y1b_c00296{bottom:220.507067pt;}
.y1a_c00296{bottom:238.907067pt;}
.y19_c00296{bottom:257.307067pt;}
.y18_c00296{bottom:319.787200pt;}
.y17_c00296{bottom:350.427200pt;}
.y16_c00296{bottom:380.987067pt;}
.y15_c00296{bottom:411.627067pt;}
.y14_c00296{bottom:451.627067pt;}
.y13_c00296{bottom:499.387067pt;}
.y12_c00296{bottom:529.947067pt;}
.y11_c00296{bottom:560.587067pt;}
.y10_c00296{bottom:591.147067pt;}
.yf_c00296{bottom:621.787067pt;}
.ye_c00296{bottom:668.347067pt;}
.yd_c00296{bottom:706.987067pt;}
.yc_c00296{bottom:737.547067pt;}
.yb_c00296{bottom:776.187067pt;}
.ya_c00296{bottom:806.747067pt;}
.y9_c00296{bottom:837.387067pt;}
.y8_c00296{bottom:875.947067pt;}
.y7_c00296{bottom:914.587067pt;}
.y6_c00296{bottom:945.147067pt;}
.y5_c00296{bottom:983.787067pt;}
.y4_c00296{bottom:1014.347067pt;}
.y2_c00296{bottom:1046.987067pt;}
.y1_c00296{bottom:1063.867067pt;}
.ha_c00296{height:42.656250pt;}
.hb_c00296{height:44.388750pt;}
.h1_c00296{height:44.724687pt;}
.h2_c00296{height:50.062500pt;}
.h4_c00296{height:53.562500pt;}
.h6_c00296{height:54.125000pt;}
.h9_c00296{height:57.893529pt;}
.h7_c00296{height:57.894063pt;}
.h3_c00296{height:64.142500pt;}
.h5_c00296{height:66.750000pt;}
.h8_c00296{height:72.423750pt;}
.h0_c00296{height:1122.666667pt;}
.w1_c00296{width:793.333333pt;}
.w0_c00296{width:793.626667pt;}
.x0_c00296{left:0.000000pt;}
.x1_c00296{left:113.440000pt;}
.x3_c00296{left:137.440000pt;}
.x2_c00296{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_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_f86f0a5bc78c4c5ed184a8de.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00297;src:url('chunks/assets/font_5fef832fbbf7706a44cccb34.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00297;src:url('chunks/assets/font_3667f66417bdbadbd7d09602.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00297;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00297{font-family:ff5_c00297;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_c00297;src:url('chunks/assets/font_2145dc35aba6a25387b56d5f.woff2')format("woff");}.ff6_c00297{font-family:ff6_c00297;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00297;src:url('chunks/assets/font_b4e165f04784b4f77c3979b3.woff2')format("woff");}.ff7_c00297{font-family:ff7_c00297;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_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;}
.v1_c00297{vertical-align:29.880000px;}
.lsf_c00297{letter-spacing:-0.151200px;}
.ls12_c00297{letter-spacing:-0.057600px;}
.ls19_c00297{letter-spacing:-0.036000px;}
.ls10_c00297{letter-spacing:-0.028800px;}
.ls17_c00297{letter-spacing:-0.021600px;}
.ls16_c00297{letter-spacing:-0.015624px;}
.ls14_c00297{letter-spacing:-0.014400px;}
.ls1b_c00297{letter-spacing:-0.011664px;}
.ls11_c00297{letter-spacing:-0.007200px;}
.ls1c_c00297{letter-spacing:-0.003888px;}
.lse_c00297{letter-spacing:0.000000px;}
.ls1_c00297{letter-spacing:0.007200px;}
.ls9_c00297{letter-spacing:0.014364px;}
.ls3_c00297{letter-spacing:0.014400px;}
.ls5_c00297{letter-spacing:0.015624px;}
.lsb_c00297{letter-spacing:0.028728px;}
.ls18_c00297{letter-spacing:0.028800px;}
.lsd_c00297{letter-spacing:0.033516px;}
.ls15_c00297{letter-spacing:0.036000px;}
.ls0_c00297{letter-spacing:0.036072px;}
.lsc_c00297{letter-spacing:0.047880px;}
.ls2_c00297{letter-spacing:0.054756px;}
.ls1a_c00297{letter-spacing:0.057600px;}
.ls6_c00297{letter-spacing:0.070308px;}
.ls13_c00297{letter-spacing:0.093600px;}
.ls7_c00297{letter-spacing:0.144000px;}
.lsa_c00297{letter-spacing:0.464040px;}
.ls4_c00297{letter-spacing:31.560480px;}
.ls8_c00297{letter-spacing:65.304000px;}
.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;}
}
.ws1_c00297{word-spacing:-19.514376px;}
.ws3_c00297{word-spacing:-18.007200px;}
.ws2_c00297{word-spacing:-17.971200px;}
.ws4_c00297{word-spacing:-10.804752px;}
.ws0_c00297{word-spacing:-10.584756px;}
.ws5_c00297{word-spacing:-0.306612px;}
.ws1d_c00297{word-spacing:-0.086400px;}
.ws2b_c00297{word-spacing:-0.028728px;}
.ws2c_c00297{word-spacing:-0.014364px;}
.ws29_c00297{word-spacing:-0.009576px;}
.wsa_c00297{word-spacing:-0.007200px;}
.ws6_c00297{word-spacing:0.000000px;}
.ws27_c00297{word-spacing:0.004788px;}
.ws13_c00297{word-spacing:0.007200px;}
.ws26_c00297{word-spacing:0.014400px;}
.ws28_c00297{word-spacing:0.019152px;}
.ws22_c00297{word-spacing:0.086400px;}
.ws1c_c00297{word-spacing:0.093600px;}
.ws2a_c00297{word-spacing:0.363888px;}
.ws16_c00297{word-spacing:1.454400px;}
.ws12_c00297{word-spacing:2.880000px;}
.ws11_c00297{word-spacing:2.952000px;}
.ws14_c00297{word-spacing:2.968560px;}
.ws10_c00297{word-spacing:3.254400px;}
.ws15_c00297{word-spacing:3.261600px;}
.ws25_c00297{word-spacing:5.047200px;}
.ws19_c00297{word-spacing:5.061600px;}
.ws24_c00297{word-spacing:5.148000px;}
.wsd_c00297{word-spacing:5.414400px;}
.wsc_c00297{word-spacing:5.428800px;}
.ws21_c00297{word-spacing:8.647200px;}
.ws20_c00297{word-spacing:8.704800px;}
.ws1b_c00297{word-spacing:12.175200px;}
.ws1a_c00297{word-spacing:12.225600px;}
.wsb_c00297{word-spacing:12.960000px;}
.ws7_c00297{word-spacing:15.112800px;}
.ws18_c00297{word-spacing:15.451200px;}
.ws17_c00297{word-spacing:15.487200px;}
.ws23_c00297{word-spacing:20.577600px;}
.ws1f_c00297{word-spacing:22.622400px;}
.ws1e_c00297{word-spacing:22.744800px;}
.ws8_c00297{word-spacing:26.222400px;}
.ws9_c00297{word-spacing:26.337600px;}
.wse_c00297{word-spacing:35.272800px;}
.wsf_c00297{word-spacing:35.344800px;}
._0_c00297{margin-left:-1.022040px;}
._1_c00297{width:1.224000px;}
.fc0_c00297{color:rgb(0,0,0);}
.fs6_c00297{font-size:38.880000px;}
.fs3_c00297{font-size:42.120000px;}
.fs5_c00297{font-size:47.880000px;}
.fs2_c00297{font-size:54.000000px;}
.fs0_c00297{font-size:60.120000px;}
.fs1_c00297{font-size:72.000000px;}
.fs4_c00297{font-size:78.120000px;}
.y0_c00297{bottom:0.000000px;}
.y3_c00297{bottom:57.450450px;}
.y4_c00297{bottom:61.410450px;}
.y23_c00297{bottom:113.698470px;}
.y22_c00297{bottom:132.064230px;}
.y21_c00297{bottom:150.330450px;}
.y20_c00297{bottom:165.540450px;}
.y1f_c00297{bottom:186.240450px;}
.y1e_c00297{bottom:206.940600px;}
.y1d_c00297{bottom:237.270600px;}
.y1c_c00297{bottom:271.650600px;}
.y1b_c00297{bottom:306.120600px;}
.y1a_c00297{bottom:349.500600px;}
.y19_c00297{bottom:383.970600px;}
.y18_c00297{bottom:427.350600px;}
.y17_c00297{bottom:461.820600px;}
.y16_c00297{bottom:505.200450px;}
.y15_c00297{bottom:539.670450px;}
.y14_c00297{bottom:574.050450px;}
.y13_c00297{bottom:617.520450px;}
.y12_c00297{bottom:651.900450px;}
.y11_c00297{bottom:686.370450px;}
.y10_c00297{bottom:720.750450px;}
.yf_c00297{bottom:765.759090px;}
.ye_c00297{bottom:803.100450px;}
.yd_c00297{bottom:856.740450px;}
.yc_c00297{bottom:891.210450px;}
.yb_c00297{bottom:925.590450px;}
.ya_c00297{bottom:960.060450px;}
.y9_c00297{bottom:994.440450px;}
.y8_c00297{bottom:1028.910450px;}
.y7_c00297{bottom:1072.290450px;}
.y6_c00297{bottom:1106.760450px;}
.y5_c00297{bottom:1141.140450px;}
.y2_c00297{bottom:1173.810450px;}
.y1_c00297{bottom:1196.850450px;}
.h2_c00297{height:47.988281px;}
.ha_c00297{height:49.937344px;}
.hb_c00297{height:49.945264px;}
.h1_c00297{height:50.315273px;}
.h3_c00297{height:56.320312px;}
.h4_c00297{height:60.257812px;}
.h9_c00297{height:60.890625px;}
.h5_c00297{height:65.130820px;}
.h7_c00297{height:65.456016px;}
.h8_c00297{height:75.093750px;}
.h6_c00297{height:81.476719px;}
.h0_c00297{height:1263.000000px;}
.w1_c00297{width:892.500000px;}
.w0_c00297{width:892.830000px;}
.x0_c00297{left:0.000000px;}
.x2_c00297{left:127.620000px;}
.x7_c00297{left:154.620000px;}
.x5_c00297{left:180.810000px;}
.x8_c00297{left:206.820000px;}
.x6_c00297{left:224.820810px;}
.x4_c00297{left:435.240000px;}
.x3_c00297{left:446.490000px;}
.x1_c00297{left:490.770000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.v1_c00297{vertical-align:26.560000pt;}
.lsf_c00297{letter-spacing:-0.134400pt;}
.ls12_c00297{letter-spacing:-0.051200pt;}
.ls19_c00297{letter-spacing:-0.032000pt;}
.ls10_c00297{letter-spacing:-0.025600pt;}
.ls17_c00297{letter-spacing:-0.019200pt;}
.ls16_c00297{letter-spacing:-0.013888pt;}
.ls14_c00297{letter-spacing:-0.012800pt;}
.ls1b_c00297{letter-spacing:-0.010368pt;}
.ls11_c00297{letter-spacing:-0.006400pt;}
.ls1c_c00297{letter-spacing:-0.003456pt;}
.lse_c00297{letter-spacing:0.000000pt;}
.ls1_c00297{letter-spacing:0.006400pt;}
.ls9_c00297{letter-spacing:0.012768pt;}
.ls3_c00297{letter-spacing:0.012800pt;}
.ls5_c00297{letter-spacing:0.013888pt;}
.lsb_c00297{letter-spacing:0.025536pt;}
.ls18_c00297{letter-spacing:0.025600pt;}
.lsd_c00297{letter-spacing:0.029792pt;}
.ls15_c00297{letter-spacing:0.032000pt;}
.ls0_c00297{letter-spacing:0.032064pt;}
.lsc_c00297{letter-spacing:0.042560pt;}
.ls2_c00297{letter-spacing:0.048672pt;}
.ls1a_c00297{letter-spacing:0.051200pt;}
.ls6_c00297{letter-spacing:0.062496pt;}
.ls13_c00297{letter-spacing:0.083200pt;}
.ls7_c00297{letter-spacing:0.128000pt;}
.lsa_c00297{letter-spacing:0.412480pt;}
.ls4_c00297{letter-spacing:28.053760pt;}
.ls8_c00297{letter-spacing:58.048000pt;}
.ws1_c00297{word-spacing:-17.346112pt;}
.ws3_c00297{word-spacing:-16.006400pt;}
.ws2_c00297{word-spacing:-15.974400pt;}
.ws4_c00297{word-spacing:-9.604224pt;}
.ws0_c00297{word-spacing:-9.408672pt;}
.ws5_c00297{word-spacing:-0.272544pt;}
.ws1d_c00297{word-spacing:-0.076800pt;}
.ws2b_c00297{word-spacing:-0.025536pt;}
.ws2c_c00297{word-spacing:-0.012768pt;}
.ws29_c00297{word-spacing:-0.008512pt;}
.wsa_c00297{word-spacing:-0.006400pt;}
.ws6_c00297{word-spacing:0.000000pt;}
.ws27_c00297{word-spacing:0.004256pt;}
.ws13_c00297{word-spacing:0.006400pt;}
.ws26_c00297{word-spacing:0.012800pt;}
.ws28_c00297{word-spacing:0.017024pt;}
.ws22_c00297{word-spacing:0.076800pt;}
.ws1c_c00297{word-spacing:0.083200pt;}
.ws2a_c00297{word-spacing:0.323456pt;}
.ws16_c00297{word-spacing:1.292800pt;}
.ws12_c00297{word-spacing:2.560000pt;}
.ws11_c00297{word-spacing:2.624000pt;}
.ws14_c00297{word-spacing:2.638720pt;}
.ws10_c00297{word-spacing:2.892800pt;}
.ws15_c00297{word-spacing:2.899200pt;}
.ws25_c00297{word-spacing:4.486400pt;}
.ws19_c00297{word-spacing:4.499200pt;}
.ws24_c00297{word-spacing:4.576000pt;}
.wsd_c00297{word-spacing:4.812800pt;}
.wsc_c00297{word-spacing:4.825600pt;}
.ws21_c00297{word-spacing:7.686400pt;}
.ws20_c00297{word-spacing:7.737600pt;}
.ws1b_c00297{word-spacing:10.822400pt;}
.ws1a_c00297{word-spacing:10.867200pt;}
.wsb_c00297{word-spacing:11.520000pt;}
.ws7_c00297{word-spacing:13.433600pt;}
.ws18_c00297{word-spacing:13.734400pt;}
.ws17_c00297{word-spacing:13.766400pt;}
.ws23_c00297{word-spacing:18.291200pt;}
.ws1f_c00297{word-spacing:20.108800pt;}
.ws1e_c00297{word-spacing:20.217600pt;}
.ws8_c00297{word-spacing:23.308800pt;}
.ws9_c00297{word-spacing:23.411200pt;}
.wse_c00297{word-spacing:31.353600pt;}
.wsf_c00297{word-spacing:31.417600pt;}
._0_c00297{margin-left:-0.908480pt;}
._1_c00297{width:1.088000pt;}
.fs6_c00297{font-size:34.560000pt;}
.fs3_c00297{font-size:37.440000pt;}
.fs5_c00297{font-size:42.560000pt;}
.fs2_c00297{font-size:48.000000pt;}
.fs0_c00297{font-size:53.440000pt;}
.fs1_c00297{font-size:64.000000pt;}
.fs4_c00297{font-size:69.440000pt;}
.y0_c00297{bottom:0.000000pt;}
.y3_c00297{bottom:51.067067pt;}
.y4_c00297{bottom:54.587067pt;}
.y23_c00297{bottom:101.065307pt;}
.y22_c00297{bottom:117.390427pt;}
.y21_c00297{bottom:133.627067pt;}
.y20_c00297{bottom:147.147067pt;}
.y1f_c00297{bottom:165.547067pt;}
.y1e_c00297{bottom:183.947200pt;}
.y1d_c00297{bottom:210.907200pt;}
.y1c_c00297{bottom:241.467200pt;}
.y1b_c00297{bottom:272.107200pt;}
.y1a_c00297{bottom:310.667200pt;}
.y19_c00297{bottom:341.307200pt;}
.y18_c00297{bottom:379.867200pt;}
.y17_c00297{bottom:410.507200pt;}
.y16_c00297{bottom:449.067067pt;}
.y15_c00297{bottom:479.707067pt;}
.y14_c00297{bottom:510.267067pt;}
.y13_c00297{bottom:548.907067pt;}
.y12_c00297{bottom:579.467067pt;}
.y11_c00297{bottom:610.107067pt;}
.y10_c00297{bottom:640.667067pt;}
.yf_c00297{bottom:680.674747pt;}
.ye_c00297{bottom:713.867067pt;}
.yd_c00297{bottom:761.547067pt;}
.yc_c00297{bottom:792.187067pt;}
.yb_c00297{bottom:822.747067pt;}
.ya_c00297{bottom:853.387067pt;}
.y9_c00297{bottom:883.947067pt;}
.y8_c00297{bottom:914.587067pt;}
.y7_c00297{bottom:953.147067pt;}
.y6_c00297{bottom:983.787067pt;}
.y5_c00297{bottom:1014.347067pt;}
.y2_c00297{bottom:1043.387067pt;}
.y1_c00297{bottom:1063.867067pt;}
.h2_c00297{height:42.656250pt;}
.ha_c00297{height:44.388750pt;}
.hb_c00297{height:44.395790pt;}
.h1_c00297{height:44.724687pt;}
.h3_c00297{height:50.062500pt;}
.h4_c00297{height:53.562500pt;}
.h9_c00297{height:54.125000pt;}
.h5_c00297{height:57.894062pt;}
.h7_c00297{height:58.183125pt;}
.h8_c00297{height:66.750000pt;}
.h6_c00297{height:72.423750pt;}
.h0_c00297{height:1122.666667pt;}
.w1_c00297{width:793.333333pt;}
.w0_c00297{width:793.626667pt;}
.x0_c00297{left:0.000000pt;}
.x2_c00297{left:113.440000pt;}
.x7_c00297{left:137.440000pt;}
.x5_c00297{left:160.720000pt;}
.x8_c00297{left:183.840000pt;}
.x6_c00297{left:199.840720pt;}
.x4_c00297{left:386.880000pt;}
.x3_c00297{left:396.880000pt;}
.x1_c00297{left:436.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_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_67bf2f511f377bc2da84496e.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.100098;font-style:normal;font-weight:normal;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_17c7f671fc0aa625ea65354d.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;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_c00298;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00298;src:url('chunks/assets/font_351056548a400a03040f5a51.woff2')format("woff");}.ff4_c00298{font-family:ff4_c00298;line-height:1.102051;font-style:normal;font-weight:normal;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_74a535faac12583087acfbc9.woff2')format("woff");}.ff5_c00298{font-family:ff5_c00298;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_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;}
.v1_c00298{vertical-align:15.840000px;}
.v2_c00298{vertical-align:29.880000px;}
.ls13_c00298{letter-spacing:-0.151200px;}
.ls14_c00298{letter-spacing:-0.086400px;}
.ls16_c00298{letter-spacing:-0.036000px;}
.ls1b_c00298{letter-spacing:-0.028800px;}
.ls17_c00298{letter-spacing:-0.021600px;}
.ls18_c00298{letter-spacing:-0.014400px;}
.ls1c_c00298{letter-spacing:-0.011664px;}
.ls19_c00298{letter-spacing:-0.007200px;}
.ls1d_c00298{letter-spacing:-0.003888px;}
.ls12_c00298{letter-spacing:0.000000px;}
.ls7_c00298{letter-spacing:0.007200px;}
.lsc_c00298{letter-spacing:0.009576px;}
.ls10_c00298{letter-spacing:0.014364px;}
.ls9_c00298{letter-spacing:0.014400px;}
.lsd_c00298{letter-spacing:0.019152px;}
.ls5_c00298{letter-spacing:0.021600px;}
.lsf_c00298{letter-spacing:0.028728px;}
.ls4_c00298{letter-spacing:0.028800px;}
.ls8_c00298{letter-spacing:0.036000px;}
.ls11_c00298{letter-spacing:0.038304px;}
.ls0_c00298{letter-spacing:0.048096px;}
.ls6_c00298{letter-spacing:0.050400px;}
.lsb_c00298{letter-spacing:0.054756px;}
.ls1a_c00298{letter-spacing:0.093600px;}
.ls2_c00298{letter-spacing:0.144000px;}
.ls15_c00298{letter-spacing:0.266400px;}
.lse_c00298{letter-spacing:0.464040px;}
.ls3_c00298{letter-spacing:65.304000px;}
.lsa_c00298{letter-spacing:66.024000px;}
.ls1_c00298{letter-spacing:1212.120000px;}
.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;}
}
.ws3_c00298{word-spacing:-18.036000px;}
.ws0_c00298{word-spacing:-18.007200px;}
.ws2_c00298{word-spacing:-17.971200px;}
.ws4_c00298{word-spacing:-10.804752px;}
.ws1_c00298{word-spacing:-10.584756px;}
.ws2d_c00298{word-spacing:-0.019152px;}
.ws15_c00298{word-spacing:-0.014400px;}
.ws2c_c00298{word-spacing:-0.009576px;}
.ws6_c00298{word-spacing:0.000000px;}
.ws2a_c00298{word-spacing:0.004788px;}
.ws29_c00298{word-spacing:0.009576px;}
.ws2b_c00298{word-spacing:0.019152px;}
.ws16_c00298{word-spacing:0.021600px;}
.ws5_c00298{word-spacing:0.042084px;}
.ws10_c00298{word-spacing:0.079200px;}
.ws28_c00298{word-spacing:0.093600px;}
.ws17_c00298{word-spacing:0.230400px;}
.ws25_c00298{word-spacing:0.648000px;}
.ws24_c00298{word-spacing:0.720000px;}
.ws1b_c00298{word-spacing:1.015200px;}
.ws1c_c00298{word-spacing:1.130400px;}
.ws1f_c00298{word-spacing:1.468800px;}
.ws12_c00298{word-spacing:2.484000px;}
.ws11_c00298{word-spacing:2.541600px;}
.ws22_c00298{word-spacing:2.836800px;}
.ws21_c00298{word-spacing:2.901600px;}
.ws26_c00298{word-spacing:4.291200px;}
.ws20_c00298{word-spacing:4.327200px;}
.ws27_c00298{word-spacing:4.334400px;}
.wse_c00298{word-spacing:5.421600px;}
.wsf_c00298{word-spacing:5.472000px;}
.ws23_c00298{word-spacing:5.508000px;}
.ws1a_c00298{word-spacing:7.560000px;}
.ws19_c00298{word-spacing:7.718400px;}
.ws1d_c00298{word-spacing:7.941600px;}
.ws1e_c00298{word-spacing:7.970400px;}
.ws13_c00298{word-spacing:8.985600px;}
.ws14_c00298{word-spacing:9.122400px;}
.wsa_c00298{word-spacing:15.789600px;}
.ws7_c00298{word-spacing:15.811200px;}
.ws9_c00298{word-spacing:15.876000px;}
.ws8_c00298{word-spacing:15.926400px;}
.wsb_c00298{word-spacing:15.933600px;}
.ws18_c00298{word-spacing:18.705600px;}
.wsc_c00298{word-spacing:19.432800px;}
.wsd_c00298{word-spacing:19.533600px;}
._0_c00298{margin-left:-1.322640px;}
._1_c00298{width:1.051200px;}
.fc0_c00298{color:rgb(0,0,0);}
.fs5_c00298{font-size:38.880000px;}
.fs3_c00298{font-size:42.120000px;}
.fs4_c00298{font-size:47.880000px;}
.fs1_c00298{font-size:54.000000px;}
.fs0_c00298{font-size:60.120000px;}
.fs2_c00298{font-size:72.000000px;}
.y0_c00298{bottom:0.000000px;}
.y3_c00298{bottom:57.450450px;}
.y21_c00298{bottom:113.702250px;}
.y20_c00298{bottom:132.064230px;}
.y1f_c00298{bottom:150.334230px;}
.y1e_c00298{bottom:168.598620px;}
.y1d_c00298{bottom:186.960600px;}
.y1c_c00298{bottom:202.170450px;}
.y1b_c00298{bottom:222.870450px;}
.y1a_c00298{bottom:243.570450px;}
.y19_c00298{bottom:355.260450px;}
.y18_c00298{bottom:389.640450px;}
.y17_c00298{bottom:424.110450px;}
.y16_c00298{bottom:467.490600px;}
.y15_c00298{bottom:501.960450px;}
.y14_c00298{bottom:536.340450px;}
.y13_c00298{bottom:570.810450px;}
.y12_c00298{bottom:605.190450px;}
.y11_c00298{bottom:639.660450px;}
.y10_c00298{bottom:674.040450px;}
.yf_c00298{bottom:726.510450px;}
.ye_c00298{bottom:760.890450px;}
.yd_c00298{bottom:795.360450px;}
.yc_c00298{bottom:838.740450px;}
.yb_c00298{bottom:882.210450px;}
.ya_c00298{bottom:916.590450px;}
.y9_c00298{bottom:951.060450px;}
.y8_c00298{bottom:994.440450px;}
.y7_c00298{bottom:1028.910450px;}
.y6_c00298{bottom:1063.290450px;}
.y5_c00298{bottom:1106.760450px;}
.y4_c00298{bottom:1141.140450px;}
.y2_c00298{bottom:1177.860450px;}
.y1_c00298{bottom:1196.850450px;}
.h8_c00298{height:47.988281px;}
.h9_c00298{height:49.937344px;}
.ha_c00298{height:49.944664px;}
.h1_c00298{height:50.315273px;}
.h2_c00298{height:56.320312px;}
.h5_c00298{height:60.257812px;}
.h6_c00298{height:65.130820px;}
.h7_c00298{height:65.131420px;}
.h3_c00298{height:72.160312px;}
.h4_c00298{height:75.093750px;}
.h0_c00298{height:1263.000000px;}
.w1_c00298{width:892.500000px;}
.w0_c00298{width:892.830000px;}
.x0_c00298{left:0.000000px;}
.x1_c00298{left:127.620000px;}
.x2_c00298{left:154.620000px;}
.x3_c00298{left:181.620000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.v1_c00298{vertical-align:14.080000pt;}
.v2_c00298{vertical-align:26.560000pt;}
.ls13_c00298{letter-spacing:-0.134400pt;}
.ls14_c00298{letter-spacing:-0.076800pt;}
.ls16_c00298{letter-spacing:-0.032000pt;}
.ls1b_c00298{letter-spacing:-0.025600pt;}
.ls17_c00298{letter-spacing:-0.019200pt;}
.ls18_c00298{letter-spacing:-0.012800pt;}
.ls1c_c00298{letter-spacing:-0.010368pt;}
.ls19_c00298{letter-spacing:-0.006400pt;}
.ls1d_c00298{letter-spacing:-0.003456pt;}
.ls12_c00298{letter-spacing:0.000000pt;}
.ls7_c00298{letter-spacing:0.006400pt;}
.lsc_c00298{letter-spacing:0.008512pt;}
.ls10_c00298{letter-spacing:0.012768pt;}
.ls9_c00298{letter-spacing:0.012800pt;}
.lsd_c00298{letter-spacing:0.017024pt;}
.ls5_c00298{letter-spacing:0.019200pt;}
.lsf_c00298{letter-spacing:0.025536pt;}
.ls4_c00298{letter-spacing:0.025600pt;}
.ls8_c00298{letter-spacing:0.032000pt;}
.ls11_c00298{letter-spacing:0.034048pt;}
.ls0_c00298{letter-spacing:0.042752pt;}
.ls6_c00298{letter-spacing:0.044800pt;}
.lsb_c00298{letter-spacing:0.048672pt;}
.ls1a_c00298{letter-spacing:0.083200pt;}
.ls2_c00298{letter-spacing:0.128000pt;}
.ls15_c00298{letter-spacing:0.236800pt;}
.lse_c00298{letter-spacing:0.412480pt;}
.ls3_c00298{letter-spacing:58.048000pt;}
.lsa_c00298{letter-spacing:58.688000pt;}
.ls1_c00298{letter-spacing:1077.440000pt;}
.ws3_c00298{word-spacing:-16.032000pt;}
.ws0_c00298{word-spacing:-16.006400pt;}
.ws2_c00298{word-spacing:-15.974400pt;}
.ws4_c00298{word-spacing:-9.604224pt;}
.ws1_c00298{word-spacing:-9.408672pt;}
.ws2d_c00298{word-spacing:-0.017024pt;}
.ws15_c00298{word-spacing:-0.012800pt;}
.ws2c_c00298{word-spacing:-0.008512pt;}
.ws6_c00298{word-spacing:0.000000pt;}
.ws2a_c00298{word-spacing:0.004256pt;}
.ws29_c00298{word-spacing:0.008512pt;}
.ws2b_c00298{word-spacing:0.017024pt;}
.ws16_c00298{word-spacing:0.019200pt;}
.ws5_c00298{word-spacing:0.037408pt;}
.ws10_c00298{word-spacing:0.070400pt;}
.ws28_c00298{word-spacing:0.083200pt;}
.ws17_c00298{word-spacing:0.204800pt;}
.ws25_c00298{word-spacing:0.576000pt;}
.ws24_c00298{word-spacing:0.640000pt;}
.ws1b_c00298{word-spacing:0.902400pt;}
.ws1c_c00298{word-spacing:1.004800pt;}
.ws1f_c00298{word-spacing:1.305600pt;}
.ws12_c00298{word-spacing:2.208000pt;}
.ws11_c00298{word-spacing:2.259200pt;}
.ws22_c00298{word-spacing:2.521600pt;}
.ws21_c00298{word-spacing:2.579200pt;}
.ws26_c00298{word-spacing:3.814400pt;}
.ws20_c00298{word-spacing:3.846400pt;}
.ws27_c00298{word-spacing:3.852800pt;}
.wse_c00298{word-spacing:4.819200pt;}
.wsf_c00298{word-spacing:4.864000pt;}
.ws23_c00298{word-spacing:4.896000pt;}
.ws1a_c00298{word-spacing:6.720000pt;}
.ws19_c00298{word-spacing:6.860800pt;}
.ws1d_c00298{word-spacing:7.059200pt;}
.ws1e_c00298{word-spacing:7.084800pt;}
.ws13_c00298{word-spacing:7.987200pt;}
.ws14_c00298{word-spacing:8.108800pt;}
.wsa_c00298{word-spacing:14.035200pt;}
.ws7_c00298{word-spacing:14.054400pt;}
.ws9_c00298{word-spacing:14.112000pt;}
.ws8_c00298{word-spacing:14.156800pt;}
.wsb_c00298{word-spacing:14.163200pt;}
.ws18_c00298{word-spacing:16.627200pt;}
.wsc_c00298{word-spacing:17.273600pt;}
.wsd_c00298{word-spacing:17.363200pt;}
._0_c00298{margin-left:-1.175680pt;}
._1_c00298{width:0.934400pt;}
.fs5_c00298{font-size:34.560000pt;}
.fs3_c00298{font-size:37.440000pt;}
.fs4_c00298{font-size:42.560000pt;}
.fs1_c00298{font-size:48.000000pt;}
.fs0_c00298{font-size:53.440000pt;}
.fs2_c00298{font-size:64.000000pt;}
.y0_c00298{bottom:0.000000pt;}
.y3_c00298{bottom:51.067067pt;}
.y21_c00298{bottom:101.068667pt;}
.y20_c00298{bottom:117.390427pt;}
.y1f_c00298{bottom:133.630427pt;}
.y1e_c00298{bottom:149.865440pt;}
.y1d_c00298{bottom:166.187200pt;}
.y1c_c00298{bottom:179.707067pt;}
.y1b_c00298{bottom:198.107067pt;}
.y1a_c00298{bottom:216.507067pt;}
.y19_c00298{bottom:315.787067pt;}
.y18_c00298{bottom:346.347067pt;}
.y17_c00298{bottom:376.987067pt;}
.y16_c00298{bottom:415.547200pt;}
.y15_c00298{bottom:446.187067pt;}
.y14_c00298{bottom:476.747067pt;}
.y13_c00298{bottom:507.387067pt;}
.y12_c00298{bottom:537.947067pt;}
.y11_c00298{bottom:568.587067pt;}
.y10_c00298{bottom:599.147067pt;}
.yf_c00298{bottom:645.787067pt;}
.ye_c00298{bottom:676.347067pt;}
.yd_c00298{bottom:706.987067pt;}
.yc_c00298{bottom:745.547067pt;}
.yb_c00298{bottom:784.187067pt;}
.ya_c00298{bottom:814.747067pt;}
.y9_c00298{bottom:845.387067pt;}
.y8_c00298{bottom:883.947067pt;}
.y7_c00298{bottom:914.587067pt;}
.y6_c00298{bottom:945.147067pt;}
.y5_c00298{bottom:983.787067pt;}
.y4_c00298{bottom:1014.347067pt;}
.y2_c00298{bottom:1046.987067pt;}
.y1_c00298{bottom:1063.867067pt;}
.h8_c00298{height:42.656250pt;}
.h9_c00298{height:44.388750pt;}
.ha_c00298{height:44.395257pt;}
.h1_c00298{height:44.724687pt;}
.h2_c00298{height:50.062500pt;}
.h5_c00298{height:53.562500pt;}
.h6_c00298{height:57.894062pt;}
.h7_c00298{height:57.894596pt;}
.h3_c00298{height:64.142500pt;}
.h4_c00298{height:66.750000pt;}
.h0_c00298{height:1122.666667pt;}
.w1_c00298{width:793.333333pt;}
.w0_c00298{width:793.626667pt;}
.x0_c00298{left:0.000000pt;}
.x1_c00298{left:113.440000pt;}
.x2_c00298{left:137.440000pt;}
.x3_c00298{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_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_7dd6da40551dcee918f497bd.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00299;src:url('chunks/assets/font_b279569c57afc57f103f17b7.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00299;src:url('chunks/assets/font_40212765e03e0b821f9244b9.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00299;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00299{font-family:ff5_c00299;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_c00299;src:url('chunks/assets/font_7f85e5f38790c349499718c7.woff2')format("woff");}.ff6_c00299{font-family:ff6_c00299;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00299;src:url('chunks/assets/font_6b0dcf65239c2491f85997bb.woff2')format("woff");}.ff7_c00299{font-family:ff7_c00299;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_c00299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.v1_c00299{vertical-align:29.880000px;}
.ls12_c00299{letter-spacing:-0.151200px;}
.ls1a_c00299{letter-spacing:-0.036000px;}
.ls18_c00299{letter-spacing:-0.028800px;}
.ls17_c00299{letter-spacing:-0.021600px;}
.ls13_c00299{letter-spacing:-0.015624px;}
.ls14_c00299{letter-spacing:-0.014400px;}
.ls1d_c00299{letter-spacing:-0.011664px;}
.ls15_c00299{letter-spacing:-0.007200px;}
.ls1c_c00299{letter-spacing:-0.003888px;}
.ls11_c00299{letter-spacing:0.000000px;}
.ls5_c00299{letter-spacing:0.007200px;}
.ls10_c00299{letter-spacing:0.009576px;}
.lsb_c00299{letter-spacing:0.014364px;}
.ls9_c00299{letter-spacing:0.014400px;}
.ls7_c00299{letter-spacing:0.021600px;}
.lsf_c00299{letter-spacing:0.028728px;}
.ls6_c00299{letter-spacing:0.028800px;}
.lse_c00299{letter-spacing:0.033516px;}
.ls0_c00299{letter-spacing:0.036072px;}
.lsd_c00299{letter-spacing:0.047880px;}
.ls2_c00299{letter-spacing:0.054756px;}
.ls8_c00299{letter-spacing:0.057600px;}
.ls1b_c00299{letter-spacing:0.072000px;}
.ls16_c00299{letter-spacing:0.093600px;}
.ls3_c00299{letter-spacing:0.144000px;}
.ls19_c00299{letter-spacing:0.266400px;}
.lsc_c00299{letter-spacing:0.464040px;}
.ls1_c00299{letter-spacing:31.560480px;}
.ls4_c00299{letter-spacing:65.304000px;}
.lsa_c00299{letter-spacing:66.024000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00299{word-spacing:-19.514376px;}
.ws3_c00299{word-spacing:-18.014400px;}
.ws2_c00299{word-spacing:-18.007200px;}
.ws4_c00299{word-spacing:-10.804752px;}
.ws1_c00299{word-spacing:-10.584756px;}
.ws5_c00299{word-spacing:-0.306612px;}
.ws7_c00299{word-spacing:-0.093744px;}
.wsa_c00299{word-spacing:-0.093600px;}
.ws27_c00299{word-spacing:-0.028728px;}
.ws28_c00299{word-spacing:-0.014364px;}
.ws2a_c00299{word-spacing:-0.009576px;}
.ws6_c00299{word-spacing:0.000000px;}
.ws25_c00299{word-spacing:0.004788px;}
.ws9_c00299{word-spacing:0.007200px;}
.ws2b_c00299{word-spacing:0.009576px;}
.ws29_c00299{word-spacing:0.019152px;}
.ws1f_c00299{word-spacing:0.021600px;}
.ws10_c00299{word-spacing:0.043200px;}
.ws20_c00299{word-spacing:0.230400px;}
.ws26_c00299{word-spacing:0.363888px;}
.ws24_c00299{word-spacing:1.728000px;}
.ws1c_c00299{word-spacing:1.771200px;}
.ws22_c00299{word-spacing:1.785600px;}
.ws1b_c00299{word-spacing:1.843200px;}
.ws23_c00299{word-spacing:1.944000px;}
.ws1a_c00299{word-spacing:2.462400px;}
.ws19_c00299{word-spacing:2.498400px;}
.wse_c00299{word-spacing:2.894400px;}
.wsd_c00299{word-spacing:3.600000px;}
.wsc_c00299{word-spacing:3.614400px;}
.ws8_c00299{word-spacing:4.003200px;}
.ws17_c00299{word-spacing:4.428000px;}
.ws18_c00299{word-spacing:4.456800px;}
.wsf_c00299{word-spacing:4.708800px;}
.ws1d_c00299{word-spacing:5.054400px;}
.ws1e_c00299{word-spacing:5.090400px;}
.ws21_c00299{word-spacing:6.156000px;}
.wsb_c00299{word-spacing:7.545600px;}
.ws16_c00299{word-spacing:9.727200px;}
.ws11_c00299{word-spacing:17.971200px;}
.ws12_c00299{word-spacing:18.007200px;}
.ws14_c00299{word-spacing:18.021600px;}
.ws13_c00299{word-spacing:18.036000px;}
.ws15_c00299{word-spacing:18.093600px;}
._0_c00299{margin-left:-1.022040px;}
._1_c00299{width:1.296000px;}
.fc0_c00299{color:rgb(0,0,0);}
.fs6_c00299{font-size:38.880000px;}
.fs4_c00299{font-size:42.120000px;}
.fs5_c00299{font-size:47.880000px;}
.fs2_c00299{font-size:54.000000px;}
.fs0_c00299{font-size:60.120000px;}
.fs1_c00299{font-size:72.000000px;}
.fs3_c00299{font-size:78.120000px;}
.y0_c00299{bottom:0.000000px;}
.y3_c00299{bottom:57.450450px;}
.y4_c00299{bottom:61.410450px;}
.y21_c00299{bottom:113.698470px;}
.y20_c00299{bottom:132.064230px;}
.y1f_c00299{bottom:150.330450px;}
.y1e_c00299{bottom:165.540450px;}
.y1d_c00299{bottom:186.240450px;}
.y1c_c00299{bottom:206.940450px;}
.y1b_c00299{bottom:308.910450px;}
.y1a_c00299{bottom:343.380450px;}
.y19_c00299{bottom:377.760450px;}
.y18_c00299{bottom:421.230450px;}
.y17_c00299{bottom:464.610450px;}
.y16_c00299{bottom:499.080450px;}
.y15_c00299{bottom:533.460450px;}
.y14_c00299{bottom:567.930450px;}
.y13_c00299{bottom:611.310450px;}
.y12_c00299{bottom:645.780450px;}
.y11_c00299{bottom:680.160450px;}
.y10_c00299{bottom:723.630450px;}
.yf_c00299{bottom:758.010450px;}
.ye_c00299{bottom:801.480450px;}
.yd_c00299{bottom:835.860450px;}
.yc_c00299{bottom:870.330450px;}
.yb_c00299{bottom:913.710450px;}
.ya_c00299{bottom:948.180450px;}
.y9_c00299{bottom:991.560450px;}
.y8_c00299{bottom:1026.030450px;}
.y7_c00299{bottom:1060.410450px;}
.y6_c00299{bottom:1094.880450px;}
.y5_c00299{bottom:1139.880450px;}
.y2_c00299{bottom:1173.810450px;}
.y1_c00299{bottom:1196.850450px;}
.h2_c00299{height:47.988281px;}
.ha_c00299{height:49.937344px;}
.h1_c00299{height:50.315273px;}
.h3_c00299{height:56.320312px;}
.h5_c00299{height:60.257812px;}
.h9_c00299{height:60.328125px;}
.h8_c00299{height:60.890625px;}
.h6_c00299{height:65.130820px;}
.h7_c00299{height:75.093750px;}
.h4_c00299{height:81.476719px;}
.h0_c00299{height:1263.000000px;}
.w1_c00299{width:892.500000px;}
.w0_c00299{width:892.830000px;}
.x0_c00299{left:0.000000px;}
.x2_c00299{left:127.620000px;}
.x6_c00299{left:154.620000px;}
.x5_c00299{left:180.720000px;}
.x4_c00299{left:435.240000px;}
.x3_c00299{left:446.490000px;}
.x1_c00299{left:490.770000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.v1_c00299{vertical-align:26.560000pt;}
.ls12_c00299{letter-spacing:-0.134400pt;}
.ls1a_c00299{letter-spacing:-0.032000pt;}
.ls18_c00299{letter-spacing:-0.025600pt;}
.ls17_c00299{letter-spacing:-0.019200pt;}
.ls13_c00299{letter-spacing:-0.013888pt;}
.ls14_c00299{letter-spacing:-0.012800pt;}
.ls1d_c00299{letter-spacing:-0.010368pt;}
.ls15_c00299{letter-spacing:-0.006400pt;}
.ls1c_c00299{letter-spacing:-0.003456pt;}
.ls11_c00299{letter-spacing:0.000000pt;}
.ls5_c00299{letter-spacing:0.006400pt;}
.ls10_c00299{letter-spacing:0.008512pt;}
.lsb_c00299{letter-spacing:0.012768pt;}
.ls9_c00299{letter-spacing:0.012800pt;}
.ls7_c00299{letter-spacing:0.019200pt;}
.lsf_c00299{letter-spacing:0.025536pt;}
.ls6_c00299{letter-spacing:0.025600pt;}
.lse_c00299{letter-spacing:0.029792pt;}
.ls0_c00299{letter-spacing:0.032064pt;}
.lsd_c00299{letter-spacing:0.042560pt;}
.ls2_c00299{letter-spacing:0.048672pt;}
.ls8_c00299{letter-spacing:0.051200pt;}
.ls1b_c00299{letter-spacing:0.064000pt;}
.ls16_c00299{letter-spacing:0.083200pt;}
.ls3_c00299{letter-spacing:0.128000pt;}
.ls19_c00299{letter-spacing:0.236800pt;}
.lsc_c00299{letter-spacing:0.412480pt;}
.ls1_c00299{letter-spacing:28.053760pt;}
.ls4_c00299{letter-spacing:58.048000pt;}
.lsa_c00299{letter-spacing:58.688000pt;}
.ws0_c00299{word-spacing:-17.346112pt;}
.ws3_c00299{word-spacing:-16.012800pt;}
.ws2_c00299{word-spacing:-16.006400pt;}
.ws4_c00299{word-spacing:-9.604224pt;}
.ws1_c00299{word-spacing:-9.408672pt;}
.ws5_c00299{word-spacing:-0.272544pt;}
.ws7_c00299{word-spacing:-0.083328pt;}
.wsa_c00299{word-spacing:-0.083200pt;}
.ws27_c00299{word-spacing:-0.025536pt;}
.ws28_c00299{word-spacing:-0.012768pt;}
.ws2a_c00299{word-spacing:-0.008512pt;}
.ws6_c00299{word-spacing:0.000000pt;}
.ws25_c00299{word-spacing:0.004256pt;}
.ws9_c00299{word-spacing:0.006400pt;}
.ws2b_c00299{word-spacing:0.008512pt;}
.ws29_c00299{word-spacing:0.017024pt;}
.ws1f_c00299{word-spacing:0.019200pt;}
.ws10_c00299{word-spacing:0.038400pt;}
.ws20_c00299{word-spacing:0.204800pt;}
.ws26_c00299{word-spacing:0.323456pt;}
.ws24_c00299{word-spacing:1.536000pt;}
.ws1c_c00299{word-spacing:1.574400pt;}
.ws22_c00299{word-spacing:1.587200pt;}
.ws1b_c00299{word-spacing:1.638400pt;}
.ws23_c00299{word-spacing:1.728000pt;}
.ws1a_c00299{word-spacing:2.188800pt;}
.ws19_c00299{word-spacing:2.220800pt;}
.wse_c00299{word-spacing:2.572800pt;}
.wsd_c00299{word-spacing:3.200000pt;}
.wsc_c00299{word-spacing:3.212800pt;}
.ws8_c00299{word-spacing:3.558400pt;}
.ws17_c00299{word-spacing:3.936000pt;}
.ws18_c00299{word-spacing:3.961600pt;}
.wsf_c00299{word-spacing:4.185600pt;}
.ws1d_c00299{word-spacing:4.492800pt;}
.ws1e_c00299{word-spacing:4.524800pt;}
.ws21_c00299{word-spacing:5.472000pt;}
.wsb_c00299{word-spacing:6.707200pt;}
.ws16_c00299{word-spacing:8.646400pt;}
.ws11_c00299{word-spacing:15.974400pt;}
.ws12_c00299{word-spacing:16.006400pt;}
.ws14_c00299{word-spacing:16.019200pt;}
.ws13_c00299{word-spacing:16.032000pt;}
.ws15_c00299{word-spacing:16.083200pt;}
._0_c00299{margin-left:-0.908480pt;}
._1_c00299{width:1.152000pt;}
.fs6_c00299{font-size:34.560000pt;}
.fs4_c00299{font-size:37.440000pt;}
.fs5_c00299{font-size:42.560000pt;}
.fs2_c00299{font-size:48.000000pt;}
.fs0_c00299{font-size:53.440000pt;}
.fs1_c00299{font-size:64.000000pt;}
.fs3_c00299{font-size:69.440000pt;}
.y0_c00299{bottom:0.000000pt;}
.y3_c00299{bottom:51.067067pt;}
.y4_c00299{bottom:54.587067pt;}
.y21_c00299{bottom:101.065307pt;}
.y20_c00299{bottom:117.390427pt;}
.y1f_c00299{bottom:133.627067pt;}
.y1e_c00299{bottom:147.147067pt;}
.y1d_c00299{bottom:165.547067pt;}
.y1c_c00299{bottom:183.947067pt;}
.y1b_c00299{bottom:274.587067pt;}
.y1a_c00299{bottom:305.227067pt;}
.y19_c00299{bottom:335.787067pt;}
.y18_c00299{bottom:374.427067pt;}
.y17_c00299{bottom:412.987067pt;}
.y16_c00299{bottom:443.627067pt;}
.y15_c00299{bottom:474.187067pt;}
.y14_c00299{bottom:504.827067pt;}
.y13_c00299{bottom:543.387067pt;}
.y12_c00299{bottom:574.027067pt;}
.y11_c00299{bottom:604.587067pt;}
.y10_c00299{bottom:643.227067pt;}
.yf_c00299{bottom:673.787067pt;}
.ye_c00299{bottom:712.427067pt;}
.yd_c00299{bottom:742.987067pt;}
.yc_c00299{bottom:773.627067pt;}
.yb_c00299{bottom:812.187067pt;}
.ya_c00299{bottom:842.827067pt;}
.y9_c00299{bottom:881.387067pt;}
.y8_c00299{bottom:912.027067pt;}
.y7_c00299{bottom:942.587067pt;}
.y6_c00299{bottom:973.227067pt;}
.y5_c00299{bottom:1013.227067pt;}
.y2_c00299{bottom:1043.387067pt;}
.y1_c00299{bottom:1063.867067pt;}
.h2_c00299{height:42.656250pt;}
.ha_c00299{height:44.388750pt;}
.h1_c00299{height:44.724687pt;}
.h3_c00299{height:50.062500pt;}
.h5_c00299{height:53.562500pt;}
.h9_c00299{height:53.625000pt;}
.h8_c00299{height:54.125000pt;}
.h6_c00299{height:57.894063pt;}
.h7_c00299{height:66.750000pt;}
.h4_c00299{height:72.423750pt;}
.h0_c00299{height:1122.666667pt;}
.w1_c00299{width:793.333333pt;}
.w0_c00299{width:793.626667pt;}
.x0_c00299{left:0.000000pt;}
.x2_c00299{left:113.440000pt;}
.x6_c00299{left:137.440000pt;}
.x5_c00299{left:160.640000pt;}
.x4_c00299{left:386.880000pt;}
.x3_c00299{left:396.880000pt;}
.x1_c00299{left:436.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_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_881620620220260f5029418f.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.100098;font-style:normal;font-weight:normal;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_f71943ed383d77357d36bc02.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;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_c00300;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_f31ef100b8bcb93091b0e914.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00300;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;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_c00300;src:url('chunks/assets/font_d32996b413a63bd4d091122f.woff2')format("woff");}.ff6_c00300{font-family:ff6_c00300;line-height:1.102051;font-style:normal;font-weight:normal;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_6b0dcf65239c2491f85997bb.woff2')format("woff");}.ff7_c00300{font-family:ff7_c00300;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_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;}
.v1_c00300{vertical-align:15.840000px;}
.v2_c00300{vertical-align:29.880000px;}
.ls11_c00300{letter-spacing:-0.151200px;}
.ls13_c00300{letter-spacing:-0.043200px;}
.ls1b_c00300{letter-spacing:-0.028800px;}
.ls14_c00300{letter-spacing:-0.021600px;}
.ls15_c00300{letter-spacing:-0.015624px;}
.ls18_c00300{letter-spacing:-0.014400px;}
.ls1d_c00300{letter-spacing:-0.011664px;}
.ls12_c00300{letter-spacing:-0.007200px;}
.ls1e_c00300{letter-spacing:-0.003888px;}
.ls10_c00300{letter-spacing:0.000000px;}
.lsf_c00300{letter-spacing:0.004788px;}
.ls19_c00300{letter-spacing:0.007200px;}
.ls9_c00300{letter-spacing:0.014364px;}
.ls7_c00300{letter-spacing:0.014400px;}
.lsb_c00300{letter-spacing:0.028728px;}
.ls8_c00300{letter-spacing:0.028800px;}
.lsd_c00300{letter-spacing:0.033516px;}
.ls1c_c00300{letter-spacing:0.036000px;}
.lsc_c00300{letter-spacing:0.047880px;}
.ls0_c00300{letter-spacing:0.048096px;}
.lse_c00300{letter-spacing:0.052668px;}
.ls2_c00300{letter-spacing:0.054756px;}
.ls16_c00300{letter-spacing:0.057600px;}
.ls17_c00300{letter-spacing:0.093600px;}
.ls4_c00300{letter-spacing:0.144000px;}
.ls1a_c00300{letter-spacing:0.266400px;}
.lsa_c00300{letter-spacing:0.464040px;}
.ls1f_c00300{letter-spacing:0.737352px;}
.ls3_c00300{letter-spacing:31.560480px;}
.ls5_c00300{letter-spacing:65.304000px;}
.ls6_c00300{letter-spacing:66.024000px;}
.ls1_c00300{letter-spacing:1212.120000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00300{word-spacing:-19.514376px;}
.ws3_c00300{word-spacing:-18.000000px;}
.ws0_c00300{word-spacing:-17.956800px;}
.ws4_c00300{word-spacing:-10.804752px;}
.ws1_c00300{word-spacing:-10.584756px;}
.wsc_c00300{word-spacing:-0.257796px;}
.wsd_c00300{word-spacing:-0.179676px;}
.ws29_c00300{word-spacing:-0.028728px;}
.ws2a_c00300{word-spacing:-0.014364px;}
.ws27_c00300{word-spacing:-0.009576px;}
.ws6_c00300{word-spacing:0.000000px;}
.ws25_c00300{word-spacing:0.004788px;}
.ws13_c00300{word-spacing:0.007200px;}
.ws1b_c00300{word-spacing:0.014400px;}
.ws26_c00300{word-spacing:0.019152px;}
.ws1e_c00300{word-spacing:0.028800px;}
.ws5_c00300{word-spacing:0.042084px;}
.wsb_c00300{word-spacing:0.115200px;}
.ws28_c00300{word-spacing:0.363888px;}
.ws1a_c00300{word-spacing:1.432800px;}
.ws19_c00300{word-spacing:1.447200px;}
.ws2e_c00300{word-spacing:1.766772px;}
.ws2f_c00300{word-spacing:1.785924px;}
.ws2c_c00300{word-spacing:1.796256px;}
.ws2b_c00300{word-spacing:1.805076px;}
.ws30_c00300{word-spacing:1.814652px;}
.ws2d_c00300{word-spacing:2.164176px;}
.ws15_c00300{word-spacing:3.254400px;}
.ws14_c00300{word-spacing:3.369600px;}
.ws17_c00300{word-spacing:4.428000px;}
.ws18_c00300{word-spacing:4.456800px;}
.ws1d_c00300{word-spacing:7.293600px;}
.ws1c_c00300{word-spacing:7.596000px;}
.ws8_c00300{word-spacing:8.560800px;}
.ws7_c00300{word-spacing:8.647200px;}
.ws20_c00300{word-spacing:8.985600px;}
.ws1f_c00300{word-spacing:9.079200px;}
.ws16_c00300{word-spacing:9.727200px;}
.ws9_c00300{word-spacing:9.748800px;}
.ws22_c00300{word-spacing:15.804000px;}
.ws21_c00300{word-spacing:15.825600px;}
.wsf_c00300{word-spacing:18.302400px;}
.wse_c00300{word-spacing:18.381600px;}
.ws12_c00300{word-spacing:18.763200px;}
.ws11_c00300{word-spacing:18.799200px;}
.ws24_c00300{word-spacing:22.867200px;}
.ws23_c00300{word-spacing:23.040000px;}
.ws10_c00300{word-spacing:24.501600px;}
.wsa_c00300{word-spacing:26.301600px;}
._0_c00300{margin-left:-1.322640px;}
._1_c00300{width:1.080000px;}
.fc0_c00300{color:rgb(0,0,0);}
.fs6_c00300{font-size:38.880000px;}
.fs3_c00300{font-size:42.120000px;}
.fs5_c00300{font-size:47.880000px;}
.fs1_c00300{font-size:54.000000px;}
.fs0_c00300{font-size:60.120000px;}
.fs2_c00300{font-size:72.000000px;}
.fs4_c00300{font-size:78.120000px;}
.y0_c00300{bottom:0.000000px;}
.y3_c00300{bottom:57.450450px;}
.y21_c00300{bottom:113.699190px;}
.y20_c00300{bottom:127.564230px;}
.y1f_c00300{bottom:145.834230px;}
.y1e_c00300{bottom:164.100450px;}
.y1d_c00300{bottom:179.310600px;}
.y1c_c00300{bottom:200.010600px;}
.y1b_c00300{bottom:220.710450px;}
.y1a_c00300{bottom:281.910450px;}
.y19_c00300{bottom:316.380450px;}
.y18_c00300{bottom:350.760450px;}
.y17_c00300{bottom:403.230450px;}
.y16_c00300{bottom:446.610450px;}
.y15_c00300{bottom:481.080450px;}
.y14_c00300{bottom:524.460450px;}
.y13_c00300{bottom:558.930450px;}
.y12_c00300{bottom:602.310450px;}
.y11_c00300{bottom:636.780450px;}
.y10_c00300{bottom:671.160450px;}
.yf_c00300{bottom:714.630450px;}
.ye_c00300{bottom:749.010450px;}
.yd_c00300{bottom:792.480450px;}
.yc_c00300{bottom:826.860450px;}
.yb_c00300{bottom:870.330450px;}
.ya_c00300{bottom:904.710450px;}
.y9_c00300{bottom:939.180450px;}
.y8_c00300{bottom:984.180450px;}
.y7_c00300{bottom:1037.910450px;}
.y6_c00300{bottom:1072.290450px;}
.y5_c00300{bottom:1106.760450px;}
.y4_c00300{bottom:1141.140450px;}
.y2_c00300{bottom:1177.860450px;}
.y1_c00300{bottom:1196.850450px;}
.h9_c00300{height:47.988281px;}
.h8_c00300{height:47.988881px;}
.ha_c00300{height:49.937344px;}
.h1_c00300{height:50.315273px;}
.h2_c00300{height:56.320312px;}
.h4_c00300{height:60.257812px;}
.h5_c00300{height:65.130820px;}
.h3_c00300{height:72.160312px;}
.h7_c00300{height:75.093750px;}
.h6_c00300{height:81.476719px;}
.h0_c00300{height:1263.000000px;}
.w1_c00300{width:892.500000px;}
.w0_c00300{width:892.830000px;}
.x0_c00300{left:0.000000px;}
.x1_c00300{left:127.620000px;}
.x3_c00300{left:154.620000px;}
.x2_c00300{left:180.810000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.v1_c00300{vertical-align:14.080000pt;}
.v2_c00300{vertical-align:26.560000pt;}
.ls11_c00300{letter-spacing:-0.134400pt;}
.ls13_c00300{letter-spacing:-0.038400pt;}
.ls1b_c00300{letter-spacing:-0.025600pt;}
.ls14_c00300{letter-spacing:-0.019200pt;}
.ls15_c00300{letter-spacing:-0.013888pt;}
.ls18_c00300{letter-spacing:-0.012800pt;}
.ls1d_c00300{letter-spacing:-0.010368pt;}
.ls12_c00300{letter-spacing:-0.006400pt;}
.ls1e_c00300{letter-spacing:-0.003456pt;}
.ls10_c00300{letter-spacing:0.000000pt;}
.lsf_c00300{letter-spacing:0.004256pt;}
.ls19_c00300{letter-spacing:0.006400pt;}
.ls9_c00300{letter-spacing:0.012768pt;}
.ls7_c00300{letter-spacing:0.012800pt;}
.lsb_c00300{letter-spacing:0.025536pt;}
.ls8_c00300{letter-spacing:0.025600pt;}
.lsd_c00300{letter-spacing:0.029792pt;}
.ls1c_c00300{letter-spacing:0.032000pt;}
.lsc_c00300{letter-spacing:0.042560pt;}
.ls0_c00300{letter-spacing:0.042752pt;}
.lse_c00300{letter-spacing:0.046816pt;}
.ls2_c00300{letter-spacing:0.048672pt;}
.ls16_c00300{letter-spacing:0.051200pt;}
.ls17_c00300{letter-spacing:0.083200pt;}
.ls4_c00300{letter-spacing:0.128000pt;}
.ls1a_c00300{letter-spacing:0.236800pt;}
.lsa_c00300{letter-spacing:0.412480pt;}
.ls1f_c00300{letter-spacing:0.655424pt;}
.ls3_c00300{letter-spacing:28.053760pt;}
.ls5_c00300{letter-spacing:58.048000pt;}
.ls6_c00300{letter-spacing:58.688000pt;}
.ls1_c00300{letter-spacing:1077.440000pt;}
.ws2_c00300{word-spacing:-17.346112pt;}
.ws3_c00300{word-spacing:-16.000000pt;}
.ws0_c00300{word-spacing:-15.961600pt;}
.ws4_c00300{word-spacing:-9.604224pt;}
.ws1_c00300{word-spacing:-9.408672pt;}
.wsc_c00300{word-spacing:-0.229152pt;}
.wsd_c00300{word-spacing:-0.159712pt;}
.ws29_c00300{word-spacing:-0.025536pt;}
.ws2a_c00300{word-spacing:-0.012768pt;}
.ws27_c00300{word-spacing:-0.008512pt;}
.ws6_c00300{word-spacing:0.000000pt;}
.ws25_c00300{word-spacing:0.004256pt;}
.ws13_c00300{word-spacing:0.006400pt;}
.ws1b_c00300{word-spacing:0.012800pt;}
.ws26_c00300{word-spacing:0.017024pt;}
.ws1e_c00300{word-spacing:0.025600pt;}
.ws5_c00300{word-spacing:0.037408pt;}
.wsb_c00300{word-spacing:0.102400pt;}
.ws28_c00300{word-spacing:0.323456pt;}
.ws1a_c00300{word-spacing:1.273600pt;}
.ws19_c00300{word-spacing:1.286400pt;}
.ws2e_c00300{word-spacing:1.570464pt;}
.ws2f_c00300{word-spacing:1.587488pt;}
.ws2c_c00300{word-spacing:1.596672pt;}
.ws2b_c00300{word-spacing:1.604512pt;}
.ws30_c00300{word-spacing:1.613024pt;}
.ws2d_c00300{word-spacing:1.923712pt;}
.ws15_c00300{word-spacing:2.892800pt;}
.ws14_c00300{word-spacing:2.995200pt;}
.ws17_c00300{word-spacing:3.936000pt;}
.ws18_c00300{word-spacing:3.961600pt;}
.ws1d_c00300{word-spacing:6.483200pt;}
.ws1c_c00300{word-spacing:6.752000pt;}
.ws8_c00300{word-spacing:7.609600pt;}
.ws7_c00300{word-spacing:7.686400pt;}
.ws20_c00300{word-spacing:7.987200pt;}
.ws1f_c00300{word-spacing:8.070400pt;}
.ws16_c00300{word-spacing:8.646400pt;}
.ws9_c00300{word-spacing:8.665600pt;}
.ws22_c00300{word-spacing:14.048000pt;}
.ws21_c00300{word-spacing:14.067200pt;}
.wsf_c00300{word-spacing:16.268800pt;}
.wse_c00300{word-spacing:16.339200pt;}
.ws12_c00300{word-spacing:16.678400pt;}
.ws11_c00300{word-spacing:16.710400pt;}
.ws24_c00300{word-spacing:20.326400pt;}
.ws23_c00300{word-spacing:20.480000pt;}
.ws10_c00300{word-spacing:21.779200pt;}
.wsa_c00300{word-spacing:23.379200pt;}
._0_c00300{margin-left:-1.175680pt;}
._1_c00300{width:0.960000pt;}
.fs6_c00300{font-size:34.560000pt;}
.fs3_c00300{font-size:37.440000pt;}
.fs5_c00300{font-size:42.560000pt;}
.fs1_c00300{font-size:48.000000pt;}
.fs0_c00300{font-size:53.440000pt;}
.fs2_c00300{font-size:64.000000pt;}
.fs4_c00300{font-size:69.440000pt;}
.y0_c00300{bottom:0.000000pt;}
.y3_c00300{bottom:51.067067pt;}
.y21_c00300{bottom:101.065947pt;}
.y20_c00300{bottom:113.390427pt;}
.y1f_c00300{bottom:129.630427pt;}
.y1e_c00300{bottom:145.867067pt;}
.y1d_c00300{bottom:159.387200pt;}
.y1c_c00300{bottom:177.787200pt;}
.y1b_c00300{bottom:196.187067pt;}
.y1a_c00300{bottom:250.587067pt;}
.y19_c00300{bottom:281.227067pt;}
.y18_c00300{bottom:311.787067pt;}
.y17_c00300{bottom:358.427067pt;}
.y16_c00300{bottom:396.987067pt;}
.y15_c00300{bottom:427.627067pt;}
.y14_c00300{bottom:466.187067pt;}
.y13_c00300{bottom:496.827067pt;}
.y12_c00300{bottom:535.387067pt;}
.y11_c00300{bottom:566.027067pt;}
.y10_c00300{bottom:596.587067pt;}
.yf_c00300{bottom:635.227067pt;}
.ye_c00300{bottom:665.787067pt;}
.yd_c00300{bottom:704.427067pt;}
.yc_c00300{bottom:734.987067pt;}
.yb_c00300{bottom:773.627067pt;}
.ya_c00300{bottom:804.187067pt;}
.y9_c00300{bottom:834.827067pt;}
.y8_c00300{bottom:874.827067pt;}
.y7_c00300{bottom:922.587067pt;}
.y6_c00300{bottom:953.147067pt;}
.y5_c00300{bottom:983.787067pt;}
.y4_c00300{bottom:1014.347067pt;}
.y2_c00300{bottom:1046.987067pt;}
.y1_c00300{bottom:1063.867067pt;}
.h9_c00300{height:42.656250pt;}
.h8_c00300{height:42.656783pt;}
.ha_c00300{height:44.388750pt;}
.h1_c00300{height:44.724687pt;}
.h2_c00300{height:50.062500pt;}
.h4_c00300{height:53.562500pt;}
.h5_c00300{height:57.894062pt;}
.h3_c00300{height:64.142500pt;}
.h7_c00300{height:66.750000pt;}
.h6_c00300{height:72.423750pt;}
.h0_c00300{height:1122.666667pt;}
.w1_c00300{width:793.333333pt;}
.w0_c00300{width:793.626667pt;}
.x0_c00300{left:0.000000pt;}
.x1_c00300{left:113.440000pt;}
.x3_c00300{left:137.440000pt;}
.x2_c00300{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_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_314cad951000b101772cb125.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00301;src:url('chunks/assets/font_bc4b8b7aeb1d0d7c4e4dda8e.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00301;src:url('chunks/assets/font_fdb5b0036a673bc4b1630744.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00301;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00301{font-family:ff5_c00301;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_c00301;src:url('chunks/assets/font_b4e165f04784b4f77c3979b3.woff2')format("woff");}.ff6_c00301{font-family:ff6_c00301;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_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;}
.v1_c00301{vertical-align:29.880000px;}
.ls12_c00301{letter-spacing:-0.151200px;}
.ls18_c00301{letter-spacing:-0.124992px;}
.ls1c_c00301{letter-spacing:-0.046872px;}
.ls1e_c00301{letter-spacing:-0.039060px;}
.ls17_c00301{letter-spacing:-0.031248px;}
.ls14_c00301{letter-spacing:-0.028800px;}
.ls19_c00301{letter-spacing:-0.021600px;}
.ls16_c00301{letter-spacing:-0.015624px;}
.ls1b_c00301{letter-spacing:-0.014400px;}
.ls1f_c00301{letter-spacing:-0.011664px;}
.ls1d_c00301{letter-spacing:-0.007812px;}
.ls13_c00301{letter-spacing:-0.007200px;}
.ls20_c00301{letter-spacing:-0.003888px;}
.ls11_c00301{letter-spacing:0.000000px;}
.ls7_c00301{letter-spacing:0.007200px;}
.lsc_c00301{letter-spacing:0.014364px;}
.ls1_c00301{letter-spacing:0.014400px;}
.ls4_c00301{letter-spacing:0.023436px;}
.lse_c00301{letter-spacing:0.028728px;}
.ls9_c00301{letter-spacing:0.028800px;}
.ls10_c00301{letter-spacing:0.033516px;}
.ls0_c00301{letter-spacing:0.036072px;}
.lsf_c00301{letter-spacing:0.047880px;}
.ls5_c00301{letter-spacing:0.050400px;}
.ls2_c00301{letter-spacing:0.054756px;}
.ls6_c00301{letter-spacing:0.064800px;}
.ls8_c00301{letter-spacing:0.072000px;}
.ls1a_c00301{letter-spacing:0.079200px;}
.ls15_c00301{letter-spacing:0.093600px;}
.lsa_c00301{letter-spacing:0.144000px;}
.lsd_c00301{letter-spacing:0.464040px;}
.ls3_c00301{letter-spacing:31.560480px;}
.lsb_c00301{letter-spacing:65.304000px;}
.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;}
}
.ws2_c00301{word-spacing:-19.514376px;}
.ws0_c00301{word-spacing:-17.971200px;}
.ws3_c00301{word-spacing:-10.804752px;}
.ws1_c00301{word-spacing:-10.584756px;}
.ws4_c00301{word-spacing:-0.306612px;}
.ws1e_c00301{word-spacing:-0.124992px;}
.wsa_c00301{word-spacing:-0.117180px;}
.ws17_c00301{word-spacing:-0.086400px;}
.ws2b_c00301{word-spacing:-0.028728px;}
.ws2c_c00301{word-spacing:-0.014364px;}
.ws29_c00301{word-spacing:-0.009576px;}
.ws5_c00301{word-spacing:0.000000px;}
.ws27_c00301{word-spacing:0.004788px;}
.ws16_c00301{word-spacing:0.014400px;}
.ws28_c00301{word-spacing:0.019152px;}
.ws22_c00301{word-spacing:0.050400px;}
.ws25_c00301{word-spacing:0.079200px;}
.wse_c00301{word-spacing:0.280800px;}
.ws14_c00301{word-spacing:0.288000px;}
.wsc_c00301{word-spacing:0.309600px;}
.ws2a_c00301{word-spacing:0.363888px;}
.wsd_c00301{word-spacing:0.367200px;}
.wsf_c00301{word-spacing:0.381600px;}
.ws15_c00301{word-spacing:0.432000px;}
.ws1a_c00301{word-spacing:1.771200px;}
.ws1b_c00301{word-spacing:1.864800px;}
.ws10_c00301{word-spacing:2.181600px;}
.ws11_c00301{word-spacing:2.210400px;}
.wsb_c00301{word-spacing:3.981600px;}
.ws1f_c00301{word-spacing:4.003200px;}
.ws9_c00301{word-spacing:5.976180px;}
.ws8_c00301{word-spacing:6.062112px;}
.ws12_c00301{word-spacing:8.337600px;}
.ws13_c00301{word-spacing:8.395200px;}
.ws7_c00301{word-spacing:14.385600px;}
.ws6_c00301{word-spacing:14.407200px;}
.ws26_c00301{word-spacing:15.141600px;}
.ws18_c00301{word-spacing:15.422400px;}
.ws19_c00301{word-spacing:15.487200px;}
.ws21_c00301{word-spacing:16.488000px;}
.ws20_c00301{word-spacing:16.689600px;}
.ws23_c00301{word-spacing:20.167200px;}
.ws24_c00301{word-spacing:20.246400px;}
.ws1d_c00301{word-spacing:31.115196px;}
.ws1c_c00301{word-spacing:31.279248px;}
._2_c00301{margin-left:-2.397600px;}
._0_c00301{margin-left:-1.022040px;}
._1_c00301{width:1.287648px;}
.fc0_c00301{color:rgb(0,0,0);}
.fs6_c00301{font-size:38.880000px;}
.fs3_c00301{font-size:42.120000px;}
.fs5_c00301{font-size:47.880000px;}
.fs2_c00301{font-size:54.000000px;}
.fs0_c00301{font-size:60.120000px;}
.fs1_c00301{font-size:72.000000px;}
.fs4_c00301{font-size:78.120000px;}
.y0_c00301{bottom:0.000000px;}
.y3_c00301{bottom:57.450450px;}
.y4_c00301{bottom:61.410450px;}
.y20_c00301{bottom:113.698470px;}
.y1f_c00301{bottom:132.060450px;}
.y1e_c00301{bottom:147.270450px;}
.y1d_c00301{bottom:167.970450px;}
.y1c_c00301{bottom:188.670450px;}
.y1b_c00301{bottom:282.360450px;}
.y1a_c00301{bottom:316.740450px;}
.y19_c00301{bottom:360.210450px;}
.y18_c00301{bottom:394.590450px;}
.y17_c00301{bottom:438.060450px;}
.y16_c00301{bottom:472.440450px;}
.y15_c00301{bottom:506.910450px;}
.y14_c00301{bottom:551.919090px;}
.y13_c00301{bottom:589.260450px;}
.y12_c00301{bottom:642.900450px;}
.y11_c00301{bottom:677.370450px;}
.y10_c00301{bottom:711.750450px;}
.yf_c00301{bottom:755.220450px;}
.ye_c00301{bottom:789.600450px;}
.yd_c00301{bottom:824.070450px;}
.yc_c00301{bottom:858.450450px;}
.yb_c00301{bottom:901.920450px;}
.ya_c00301{bottom:936.300450px;}
.y9_c00301{bottom:970.770450px;}
.y8_c00301{bottom:1015.767210px;}
.y7_c00301{bottom:1053.030450px;}
.y6_c00301{bottom:1106.760450px;}
.y5_c00301{bottom:1141.140450px;}
.y2_c00301{bottom:1173.810450px;}
.y1_c00301{bottom:1196.850450px;}
.h2_c00301{height:47.988281px;}
.h9_c00301{height:49.937344px;}
.ha_c00301{height:49.945264px;}
.h1_c00301{height:50.315273px;}
.h3_c00301{height:56.320312px;}
.h4_c00301{height:60.257812px;}
.h5_c00301{height:65.130820px;}
.h7_c00301{height:65.456016px;}
.h8_c00301{height:75.093750px;}
.h6_c00301{height:81.476719px;}
.h0_c00301{height:1263.000000px;}
.w1_c00301{width:892.500000px;}
.w0_c00301{width:892.830000px;}
.x0_c00301{left:0.000000px;}
.x2_c00301{left:127.620000px;}
.x7_c00301{left:154.620000px;}
.x6_c00301{left:180.720000px;}
.x5_c00301{left:224.820810px;}
.x4_c00301{left:435.240000px;}
.x3_c00301{left:446.490000px;}
.x1_c00301{left:490.770000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.v1_c00301{vertical-align:26.560000pt;}
.ls12_c00301{letter-spacing:-0.134400pt;}
.ls18_c00301{letter-spacing:-0.111104pt;}
.ls1c_c00301{letter-spacing:-0.041664pt;}
.ls1e_c00301{letter-spacing:-0.034720pt;}
.ls17_c00301{letter-spacing:-0.027776pt;}
.ls14_c00301{letter-spacing:-0.025600pt;}
.ls19_c00301{letter-spacing:-0.019200pt;}
.ls16_c00301{letter-spacing:-0.013888pt;}
.ls1b_c00301{letter-spacing:-0.012800pt;}
.ls1f_c00301{letter-spacing:-0.010368pt;}
.ls1d_c00301{letter-spacing:-0.006944pt;}
.ls13_c00301{letter-spacing:-0.006400pt;}
.ls20_c00301{letter-spacing:-0.003456pt;}
.ls11_c00301{letter-spacing:0.000000pt;}
.ls7_c00301{letter-spacing:0.006400pt;}
.lsc_c00301{letter-spacing:0.012768pt;}
.ls1_c00301{letter-spacing:0.012800pt;}
.ls4_c00301{letter-spacing:0.020832pt;}
.lse_c00301{letter-spacing:0.025536pt;}
.ls9_c00301{letter-spacing:0.025600pt;}
.ls10_c00301{letter-spacing:0.029792pt;}
.ls0_c00301{letter-spacing:0.032064pt;}
.lsf_c00301{letter-spacing:0.042560pt;}
.ls5_c00301{letter-spacing:0.044800pt;}
.ls2_c00301{letter-spacing:0.048672pt;}
.ls6_c00301{letter-spacing:0.057600pt;}
.ls8_c00301{letter-spacing:0.064000pt;}
.ls1a_c00301{letter-spacing:0.070400pt;}
.ls15_c00301{letter-spacing:0.083200pt;}
.lsa_c00301{letter-spacing:0.128000pt;}
.lsd_c00301{letter-spacing:0.412480pt;}
.ls3_c00301{letter-spacing:28.053760pt;}
.lsb_c00301{letter-spacing:58.048000pt;}
.ws2_c00301{word-spacing:-17.346112pt;}
.ws0_c00301{word-spacing:-15.974400pt;}
.ws3_c00301{word-spacing:-9.604224pt;}
.ws1_c00301{word-spacing:-9.408672pt;}
.ws4_c00301{word-spacing:-0.272544pt;}
.ws1e_c00301{word-spacing:-0.111104pt;}
.wsa_c00301{word-spacing:-0.104160pt;}
.ws17_c00301{word-spacing:-0.076800pt;}
.ws2b_c00301{word-spacing:-0.025536pt;}
.ws2c_c00301{word-spacing:-0.012768pt;}
.ws29_c00301{word-spacing:-0.008512pt;}
.ws5_c00301{word-spacing:0.000000pt;}
.ws27_c00301{word-spacing:0.004256pt;}
.ws16_c00301{word-spacing:0.012800pt;}
.ws28_c00301{word-spacing:0.017024pt;}
.ws22_c00301{word-spacing:0.044800pt;}
.ws25_c00301{word-spacing:0.070400pt;}
.wse_c00301{word-spacing:0.249600pt;}
.ws14_c00301{word-spacing:0.256000pt;}
.wsc_c00301{word-spacing:0.275200pt;}
.ws2a_c00301{word-spacing:0.323456pt;}
.wsd_c00301{word-spacing:0.326400pt;}
.wsf_c00301{word-spacing:0.339200pt;}
.ws15_c00301{word-spacing:0.384000pt;}
.ws1a_c00301{word-spacing:1.574400pt;}
.ws1b_c00301{word-spacing:1.657600pt;}
.ws10_c00301{word-spacing:1.939200pt;}
.ws11_c00301{word-spacing:1.964800pt;}
.wsb_c00301{word-spacing:3.539200pt;}
.ws1f_c00301{word-spacing:3.558400pt;}
.ws9_c00301{word-spacing:5.312160pt;}
.ws8_c00301{word-spacing:5.388544pt;}
.ws12_c00301{word-spacing:7.411200pt;}
.ws13_c00301{word-spacing:7.462400pt;}
.ws7_c00301{word-spacing:12.787200pt;}
.ws6_c00301{word-spacing:12.806400pt;}
.ws26_c00301{word-spacing:13.459200pt;}
.ws18_c00301{word-spacing:13.708800pt;}
.ws19_c00301{word-spacing:13.766400pt;}
.ws21_c00301{word-spacing:14.656000pt;}
.ws20_c00301{word-spacing:14.835200pt;}
.ws23_c00301{word-spacing:17.926400pt;}
.ws24_c00301{word-spacing:17.996800pt;}
.ws1d_c00301{word-spacing:27.657952pt;}
.ws1c_c00301{word-spacing:27.803776pt;}
._2_c00301{margin-left:-2.131200pt;}
._0_c00301{margin-left:-0.908480pt;}
._1_c00301{width:1.144576pt;}
.fs6_c00301{font-size:34.560000pt;}
.fs3_c00301{font-size:37.440000pt;}
.fs5_c00301{font-size:42.560000pt;}
.fs2_c00301{font-size:48.000000pt;}
.fs0_c00301{font-size:53.440000pt;}
.fs1_c00301{font-size:64.000000pt;}
.fs4_c00301{font-size:69.440000pt;}
.y0_c00301{bottom:0.000000pt;}
.y3_c00301{bottom:51.067067pt;}
.y4_c00301{bottom:54.587067pt;}
.y20_c00301{bottom:101.065307pt;}
.y1f_c00301{bottom:117.387067pt;}
.y1e_c00301{bottom:130.907067pt;}
.y1d_c00301{bottom:149.307067pt;}
.y1c_c00301{bottom:167.707067pt;}
.y1b_c00301{bottom:250.987067pt;}
.y1a_c00301{bottom:281.547067pt;}
.y19_c00301{bottom:320.187067pt;}
.y18_c00301{bottom:350.747067pt;}
.y17_c00301{bottom:389.387067pt;}
.y16_c00301{bottom:419.947067pt;}
.y15_c00301{bottom:450.587067pt;}
.y14_c00301{bottom:490.594747pt;}
.y13_c00301{bottom:523.787067pt;}
.y12_c00301{bottom:571.467067pt;}
.y11_c00301{bottom:602.107067pt;}
.y10_c00301{bottom:632.667067pt;}
.yf_c00301{bottom:671.307067pt;}
.ye_c00301{bottom:701.867067pt;}
.yd_c00301{bottom:732.507067pt;}
.yc_c00301{bottom:763.067067pt;}
.yb_c00301{bottom:801.707067pt;}
.ya_c00301{bottom:832.267067pt;}
.y9_c00301{bottom:862.907067pt;}
.y8_c00301{bottom:902.904187pt;}
.y7_c00301{bottom:936.027067pt;}
.y6_c00301{bottom:983.787067pt;}
.y5_c00301{bottom:1014.347067pt;}
.y2_c00301{bottom:1043.387067pt;}
.y1_c00301{bottom:1063.867067pt;}
.h2_c00301{height:42.656250pt;}
.h9_c00301{height:44.388750pt;}
.ha_c00301{height:44.395790pt;}
.h1_c00301{height:44.724687pt;}
.h3_c00301{height:50.062500pt;}
.h4_c00301{height:53.562500pt;}
.h5_c00301{height:57.894063pt;}
.h7_c00301{height:58.183125pt;}
.h8_c00301{height:66.750000pt;}
.h6_c00301{height:72.423750pt;}
.h0_c00301{height:1122.666667pt;}
.w1_c00301{width:793.333333pt;}
.w0_c00301{width:793.626667pt;}
.x0_c00301{left:0.000000pt;}
.x2_c00301{left:113.440000pt;}
.x7_c00301{left:137.440000pt;}
.x6_c00301{left:160.640000pt;}
.x5_c00301{left:199.840720pt;}
.x4_c00301{left:386.880000pt;}
.x3_c00301{left:396.880000pt;}
.x1_c00301{left:436.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_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_6ae3314d28cffa19005d748c.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.100098;font-style:normal;font-weight:normal;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_d4dde81d58513914d54fb653.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;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_c00302;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00302;src:url('chunks/assets/font_9b754b196ab68c5feeb92347.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:1.102051;font-style:normal;font-weight:normal;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_6b0dcf65239c2491f85997bb.woff2')format("woff");}.ff5_c00302{font-family:ff5_c00302;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_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;}
.v1_c00302{vertical-align:15.840000px;}
.v2_c00302{vertical-align:29.880000px;}
.ls11_c00302{letter-spacing:-0.151200px;}
.ls13_c00302{letter-spacing:-0.072000px;}
.ls18_c00302{letter-spacing:-0.064800px;}
.ls19_c00302{letter-spacing:-0.036000px;}
.ls17_c00302{letter-spacing:-0.028800px;}
.ls12_c00302{letter-spacing:-0.021600px;}
.ls16_c00302{letter-spacing:-0.014400px;}
.ls1b_c00302{letter-spacing:-0.011664px;}
.ls15_c00302{letter-spacing:-0.007200px;}
.ls1a_c00302{letter-spacing:-0.003888px;}
.ls10_c00302{letter-spacing:0.000000px;}
.ls7_c00302{letter-spacing:0.007200px;}
.lsd_c00302{letter-spacing:0.009576px;}
.ls9_c00302{letter-spacing:0.014364px;}
.ls4_c00302{letter-spacing:0.014400px;}
.lsc_c00302{letter-spacing:0.019152px;}
.lsf_c00302{letter-spacing:0.028728px;}
.ls8_c00302{letter-spacing:0.043200px;}
.ls0_c00302{letter-spacing:0.048096px;}
.lsb_c00302{letter-spacing:0.052668px;}
.ls5_c00302{letter-spacing:0.054756px;}
.ls14_c00302{letter-spacing:0.093600px;}
.lsa_c00302{letter-spacing:0.104040px;}
.ls2_c00302{letter-spacing:0.144000px;}
.lse_c00302{letter-spacing:0.464040px;}
.ls6_c00302{letter-spacing:65.304000px;}
.ls3_c00302{letter-spacing:66.024000px;}
.ls1_c00302{letter-spacing:1212.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;}
}
.ws4_c00302{word-spacing:-18.043200px;}
.ws2_c00302{word-spacing:-18.007200px;}
.ws3_c00302{word-spacing:-17.935200px;}
.ws0_c00302{word-spacing:-17.928000px;}
.ws6_c00302{word-spacing:-13.325004px;}
.ws5_c00302{word-spacing:-10.804752px;}
.ws1_c00302{word-spacing:-10.584756px;}
.ws26_c00302{word-spacing:-0.086400px;}
.ws25_c00302{word-spacing:-0.014400px;}
.ws30_c00302{word-spacing:-0.009576px;}
.ws8_c00302{word-spacing:0.000000px;}
.ws2e_c00302{word-spacing:0.004788px;}
.wsd_c00302{word-spacing:0.007200px;}
.ws2d_c00302{word-spacing:0.009576px;}
.ws2f_c00302{word-spacing:0.019152px;}
.ws7_c00302{word-spacing:0.042084px;}
.ws10_c00302{word-spacing:0.050400px;}
.ws1b_c00302{word-spacing:0.093600px;}
.ws22_c00302{word-spacing:1.836000px;}
.wse_c00302{word-spacing:2.109600px;}
.ws1a_c00302{word-spacing:2.181600px;}
.wsf_c00302{word-spacing:2.188800px;}
.ws19_c00302{word-spacing:2.203200px;}
.ws1c_c00302{word-spacing:2.548800px;}
.ws17_c00302{word-spacing:4.428000px;}
.ws18_c00302{word-spacing:4.456800px;}
.ws1e_c00302{word-spacing:5.407200px;}
.ws1d_c00302{word-spacing:5.428800px;}
.ws24_c00302{word-spacing:6.472800px;}
.ws23_c00302{word-spacing:6.559200px;}
.ws2a_c00302{word-spacing:7.526736px;}
.ws28_c00302{word-spacing:7.558272px;}
.ws2b_c00302{word-spacing:7.560252px;}
.ws27_c00302{word-spacing:7.565040px;}
.ws2c_c00302{word-spacing:7.579404px;}
.ws29_c00302{word-spacing:7.924140px;}
.ws21_c00302{word-spacing:9.950400px;}
.ws1f_c00302{word-spacing:10.036800px;}
.ws20_c00302{word-spacing:10.094400px;}
.ws12_c00302{word-spacing:12.902400px;}
.ws11_c00302{word-spacing:12.988800px;}
.wsa_c00302{word-spacing:15.408000px;}
.ws9_c00302{word-spacing:15.501600px;}
.wsc_c00302{word-spacing:17.683200px;}
.wsb_c00302{word-spacing:17.697600px;}
.ws16_c00302{word-spacing:25.120800px;}
.ws15_c00302{word-spacing:25.221600px;}
.ws13_c00302{word-spacing:28.792800px;}
.ws14_c00302{word-spacing:28.850400px;}
._0_c00302{margin-left:-1.322640px;}
._1_c00302{width:1.137600px;}
._2_c00302{width:2.203200px;}
.fc0_c00302{color:rgb(0,0,0);}
.fs5_c00302{font-size:38.880000px;}
.fs3_c00302{font-size:42.120000px;}
.fs4_c00302{font-size:47.880000px;}
.fs1_c00302{font-size:54.000000px;}
.fs0_c00302{font-size:60.120000px;}
.fs2_c00302{font-size:72.000000px;}
.y0_c00302{bottom:0.000000px;}
.y3_c00302{bottom:57.450450px;}
.y20_c00302{bottom:113.702970px;}
.y1f_c00302{bottom:132.064950px;}
.y1e_c00302{bottom:145.833120px;}
.y1d_c00302{bottom:164.099340px;}
.y1c_c00302{bottom:177.960600px;}
.y1b_c00302{bottom:193.170450px;}
.y1a_c00302{bottom:213.870450px;}
.y19_c00302{bottom:234.570450px;}
.y18_c00302{bottom:380.640450px;}
.y17_c00302{bottom:415.110450px;}
.y16_c00302{bottom:449.490450px;}
.y15_c00302{bottom:483.960450px;}
.y14_c00302{bottom:518.340450px;}
.y13_c00302{bottom:552.810450px;}
.y12_c00302{bottom:605.190450px;}
.y11_c00302{bottom:639.660450px;}
.y10_c00302{bottom:674.040450px;}
.yf_c00302{bottom:717.510450px;}
.ye_c00302{bottom:751.890450px;}
.yd_c00302{bottom:786.360450px;}
.yc_c00302{bottom:820.740450px;}
.yb_c00302{bottom:864.210450px;}
.ya_c00302{bottom:898.590450px;}
.y9_c00302{bottom:942.060450px;}
.y8_c00302{bottom:976.440450px;}
.y7_c00302{bottom:1019.910450px;}
.y6_c00302{bottom:1054.290450px;}
.y5_c00302{bottom:1106.760450px;}
.y4_c00302{bottom:1141.140450px;}
.y2_c00302{bottom:1177.860450px;}
.y1_c00302{bottom:1196.850450px;}
.h9_c00302{height:47.988281px;}
.ha_c00302{height:49.937344px;}
.h1_c00302{height:50.315273px;}
.h2_c00302{height:56.320312px;}
.h6_c00302{height:60.257812px;}
.h7_c00302{height:60.890625px;}
.h5_c00302{height:65.130820px;}
.h8_c00302{height:65.131420px;}
.h3_c00302{height:72.160312px;}
.h4_c00302{height:75.093750px;}
.h0_c00302{height:1263.000000px;}
.w1_c00302{width:892.500000px;}
.w0_c00302{width:892.830000px;}
.x0_c00302{left:0.000000px;}
.x1_c00302{left:127.620000px;}
.x2_c00302{left:154.440000px;}
.x3_c00302{left:181.170000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.v1_c00302{vertical-align:14.080000pt;}
.v2_c00302{vertical-align:26.560000pt;}
.ls11_c00302{letter-spacing:-0.134400pt;}
.ls13_c00302{letter-spacing:-0.064000pt;}
.ls18_c00302{letter-spacing:-0.057600pt;}
.ls19_c00302{letter-spacing:-0.032000pt;}
.ls17_c00302{letter-spacing:-0.025600pt;}
.ls12_c00302{letter-spacing:-0.019200pt;}
.ls16_c00302{letter-spacing:-0.012800pt;}
.ls1b_c00302{letter-spacing:-0.010368pt;}
.ls15_c00302{letter-spacing:-0.006400pt;}
.ls1a_c00302{letter-spacing:-0.003456pt;}
.ls10_c00302{letter-spacing:0.000000pt;}
.ls7_c00302{letter-spacing:0.006400pt;}
.lsd_c00302{letter-spacing:0.008512pt;}
.ls9_c00302{letter-spacing:0.012768pt;}
.ls4_c00302{letter-spacing:0.012800pt;}
.lsc_c00302{letter-spacing:0.017024pt;}
.lsf_c00302{letter-spacing:0.025536pt;}
.ls8_c00302{letter-spacing:0.038400pt;}
.ls0_c00302{letter-spacing:0.042752pt;}
.lsb_c00302{letter-spacing:0.046816pt;}
.ls5_c00302{letter-spacing:0.048672pt;}
.ls14_c00302{letter-spacing:0.083200pt;}
.lsa_c00302{letter-spacing:0.092480pt;}
.ls2_c00302{letter-spacing:0.128000pt;}
.lse_c00302{letter-spacing:0.412480pt;}
.ls6_c00302{letter-spacing:58.048000pt;}
.ls3_c00302{letter-spacing:58.688000pt;}
.ls1_c00302{letter-spacing:1077.440000pt;}
.ws4_c00302{word-spacing:-16.038400pt;}
.ws2_c00302{word-spacing:-16.006400pt;}
.ws3_c00302{word-spacing:-15.942400pt;}
.ws0_c00302{word-spacing:-15.936000pt;}
.ws6_c00302{word-spacing:-11.844448pt;}
.ws5_c00302{word-spacing:-9.604224pt;}
.ws1_c00302{word-spacing:-9.408672pt;}
.ws26_c00302{word-spacing:-0.076800pt;}
.ws25_c00302{word-spacing:-0.012800pt;}
.ws30_c00302{word-spacing:-0.008512pt;}
.ws8_c00302{word-spacing:0.000000pt;}
.ws2e_c00302{word-spacing:0.004256pt;}
.wsd_c00302{word-spacing:0.006400pt;}
.ws2d_c00302{word-spacing:0.008512pt;}
.ws2f_c00302{word-spacing:0.017024pt;}
.ws7_c00302{word-spacing:0.037408pt;}
.ws10_c00302{word-spacing:0.044800pt;}
.ws1b_c00302{word-spacing:0.083200pt;}
.ws22_c00302{word-spacing:1.632000pt;}
.wse_c00302{word-spacing:1.875200pt;}
.ws1a_c00302{word-spacing:1.939200pt;}
.wsf_c00302{word-spacing:1.945600pt;}
.ws19_c00302{word-spacing:1.958400pt;}
.ws1c_c00302{word-spacing:2.265600pt;}
.ws17_c00302{word-spacing:3.936000pt;}
.ws18_c00302{word-spacing:3.961600pt;}
.ws1e_c00302{word-spacing:4.806400pt;}
.ws1d_c00302{word-spacing:4.825600pt;}
.ws24_c00302{word-spacing:5.753600pt;}
.ws23_c00302{word-spacing:5.830400pt;}
.ws2a_c00302{word-spacing:6.690432pt;}
.ws28_c00302{word-spacing:6.718464pt;}
.ws2b_c00302{word-spacing:6.720224pt;}
.ws27_c00302{word-spacing:6.724480pt;}
.ws2c_c00302{word-spacing:6.737248pt;}
.ws29_c00302{word-spacing:7.043680pt;}
.ws21_c00302{word-spacing:8.844800pt;}
.ws1f_c00302{word-spacing:8.921600pt;}
.ws20_c00302{word-spacing:8.972800pt;}
.ws12_c00302{word-spacing:11.468800pt;}
.ws11_c00302{word-spacing:11.545600pt;}
.wsa_c00302{word-spacing:13.696000pt;}
.ws9_c00302{word-spacing:13.779200pt;}
.wsc_c00302{word-spacing:15.718400pt;}
.wsb_c00302{word-spacing:15.731200pt;}
.ws16_c00302{word-spacing:22.329600pt;}
.ws15_c00302{word-spacing:22.419200pt;}
.ws13_c00302{word-spacing:25.593600pt;}
.ws14_c00302{word-spacing:25.644800pt;}
._0_c00302{margin-left:-1.175680pt;}
._1_c00302{width:1.011200pt;}
._2_c00302{width:1.958400pt;}
.fs5_c00302{font-size:34.560000pt;}
.fs3_c00302{font-size:37.440000pt;}
.fs4_c00302{font-size:42.560000pt;}
.fs1_c00302{font-size:48.000000pt;}
.fs0_c00302{font-size:53.440000pt;}
.fs2_c00302{font-size:64.000000pt;}
.y0_c00302{bottom:0.000000pt;}
.y3_c00302{bottom:51.067067pt;}
.y20_c00302{bottom:101.069307pt;}
.y1f_c00302{bottom:117.391067pt;}
.y1e_c00302{bottom:129.629440pt;}
.y1d_c00302{bottom:145.866080pt;}
.y1c_c00302{bottom:158.187200pt;}
.y1b_c00302{bottom:171.707067pt;}
.y1a_c00302{bottom:190.107067pt;}
.y19_c00302{bottom:208.507067pt;}
.y18_c00302{bottom:338.347067pt;}
.y17_c00302{bottom:368.987067pt;}
.y16_c00302{bottom:399.547067pt;}
.y15_c00302{bottom:430.187067pt;}
.y14_c00302{bottom:460.747067pt;}
.y13_c00302{bottom:491.387067pt;}
.y12_c00302{bottom:537.947067pt;}
.y11_c00302{bottom:568.587067pt;}
.y10_c00302{bottom:599.147067pt;}
.yf_c00302{bottom:637.787067pt;}
.ye_c00302{bottom:668.347067pt;}
.yd_c00302{bottom:698.987067pt;}
.yc_c00302{bottom:729.547067pt;}
.yb_c00302{bottom:768.187067pt;}
.ya_c00302{bottom:798.747067pt;}
.y9_c00302{bottom:837.387067pt;}
.y8_c00302{bottom:867.947067pt;}
.y7_c00302{bottom:906.587067pt;}
.y6_c00302{bottom:937.147067pt;}
.y5_c00302{bottom:983.787067pt;}
.y4_c00302{bottom:1014.347067pt;}
.y2_c00302{bottom:1046.987067pt;}
.y1_c00302{bottom:1063.867067pt;}
.h9_c00302{height:42.656250pt;}
.ha_c00302{height:44.388750pt;}
.h1_c00302{height:44.724687pt;}
.h2_c00302{height:50.062500pt;}
.h6_c00302{height:53.562500pt;}
.h7_c00302{height:54.125000pt;}
.h5_c00302{height:57.894063pt;}
.h8_c00302{height:57.894596pt;}
.h3_c00302{height:64.142500pt;}
.h4_c00302{height:66.750000pt;}
.h0_c00302{height:1122.666667pt;}
.w1_c00302{width:793.333333pt;}
.w0_c00302{width:793.626667pt;}
.x0_c00302{left:0.000000pt;}
.x1_c00302{left:113.440000pt;}
.x2_c00302{left:137.280000pt;}
.x3_c00302{left:161.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eec01a90d19f881f560561e5.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00303;src:url('chunks/assets/font_c6fdcb0de779beeb359ed4ef.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00303;src:url('chunks/assets/font_50f45628d80ed2e76ffe71c3.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00303;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00303{font-family:ff5_c00303;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_c00303;src:url('chunks/assets/font_d0122d5bc6cb3d3fe4717764.woff2')format("woff");}.ff6_c00303{font-family:ff6_c00303;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00303;src:url('chunks/assets/font_6b0dcf65239c2491f85997bb.woff2')format("woff");}.ff7_c00303{font-family:ff7_c00303;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_c00303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.v1_c00303{vertical-align:29.880000px;}
.ls10_c00303{letter-spacing:-0.151200px;}
.ls17_c00303{letter-spacing:-0.057600px;}
.ls18_c00303{letter-spacing:-0.043200px;}
.ls19_c00303{letter-spacing:-0.028800px;}
.ls12_c00303{letter-spacing:-0.021600px;}
.ls11_c00303{letter-spacing:-0.015624px;}
.ls16_c00303{letter-spacing:-0.014400px;}
.ls1c_c00303{letter-spacing:-0.011664px;}
.ls14_c00303{letter-spacing:-0.007200px;}
.ls1b_c00303{letter-spacing:-0.004788px;}
.ls1a_c00303{letter-spacing:-0.003888px;}
.lsf_c00303{letter-spacing:0.000000px;}
.lsb_c00303{letter-spacing:0.004788px;}
.ls6_c00303{letter-spacing:0.007200px;}
.ls8_c00303{letter-spacing:0.014364px;}
.ls2_c00303{letter-spacing:0.014400px;}
.lsc_c00303{letter-spacing:0.019152px;}
.lse_c00303{letter-spacing:0.028728px;}
.ls15_c00303{letter-spacing:0.028800px;}
.ls0_c00303{letter-spacing:0.036072px;}
.lsa_c00303{letter-spacing:0.047880px;}
.ls3_c00303{letter-spacing:0.054756px;}
.ls13_c00303{letter-spacing:0.093600px;}
.ls4_c00303{letter-spacing:0.144000px;}
.lsd_c00303{letter-spacing:0.378252px;}
.ls9_c00303{letter-spacing:0.464040px;}
.ls1_c00303{letter-spacing:31.560480px;}
.ls5_c00303{letter-spacing:65.304000px;}
.ls7_c00303{letter-spacing:66.024000px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00303{word-spacing:-19.514376px;}
.ws3_c00303{word-spacing:-18.014400px;}
.ws2_c00303{word-spacing:-18.007200px;}
.ws4_c00303{word-spacing:-18.000000px;}
.ws5_c00303{word-spacing:-10.804752px;}
.ws1_c00303{word-spacing:-10.584756px;}
.ws27_c00303{word-spacing:-0.359100px;}
.ws6_c00303{word-spacing:-0.306612px;}
.ws8_c00303{word-spacing:-0.164052px;}
.ws11_c00303{word-spacing:-0.093600px;}
.ws1e_c00303{word-spacing:-0.078120px;}
.ws12_c00303{word-spacing:-0.028800px;}
.ws24_c00303{word-spacing:-0.028728px;}
.ws2a_c00303{word-spacing:-0.009576px;}
.ws7_c00303{word-spacing:0.000000px;}
.ws22_c00303{word-spacing:0.004788px;}
.wse_c00303{word-spacing:0.007200px;}
.ws25_c00303{word-spacing:0.014364px;}
.ws29_c00303{word-spacing:0.019152px;}
.wsb_c00303{word-spacing:0.021600px;}
.ws28_c00303{word-spacing:0.023940px;}
.ws26_c00303{word-spacing:0.357696px;}
.ws23_c00303{word-spacing:0.363888px;}
.ws1b_c00303{word-spacing:1.065600px;}
.ws1a_c00303{word-spacing:1.087200px;}
.wsa_c00303{word-spacing:1.785600px;}
.ws9_c00303{word-spacing:1.936800px;}
.ws14_c00303{word-spacing:4.428000px;}
.ws15_c00303{word-spacing:4.456800px;}
.ws16_c00303{word-spacing:4.687200px;}
.ws17_c00303{word-spacing:4.737600px;}
.ws1d_c00303{word-spacing:6.062400px;}
.ws1c_c00303{word-spacing:6.112800px;}
.ws19_c00303{word-spacing:6.134400px;}
.ws1f_c00303{word-spacing:6.163200px;}
.ws18_c00303{word-spacing:6.184800px;}
.ws21_c00303{word-spacing:6.883200px;}
.ws20_c00303{word-spacing:7.012800px;}
.ws13_c00303{word-spacing:9.727200px;}
.ws10_c00303{word-spacing:15.847200px;}
.wsf_c00303{word-spacing:15.919200px;}
.wsd_c00303{word-spacing:17.683200px;}
.wsc_c00303{word-spacing:17.697600px;}
._0_c00303{margin-left:-1.022040px;}
._1_c00303{width:1.368000px;}
.fc0_c00303{color:rgb(0,0,0);}
.fs6_c00303{font-size:38.880000px;}
.fs4_c00303{font-size:42.120000px;}
.fs5_c00303{font-size:47.880000px;}
.fs2_c00303{font-size:54.000000px;}
.fs0_c00303{font-size:60.120000px;}
.fs1_c00303{font-size:72.000000px;}
.fs3_c00303{font-size:78.120000px;}
.y0_c00303{bottom:0.000000px;}
.y3_c00303{bottom:57.450450px;}
.y4_c00303{bottom:61.410450px;}
.y20_c00303{bottom:113.702970px;}
.y1f_c00303{bottom:132.064950px;}
.y1e_c00303{bottom:145.834230px;}
.y1d_c00303{bottom:164.100450px;}
.y1c_c00303{bottom:179.310600px;}
.y1b_c00303{bottom:200.010600px;}
.y1a_c00303{bottom:220.710450px;}
.y19_c00303{bottom:338.970450px;}
.y18_c00303{bottom:373.350450px;}
.y17_c00303{bottom:418.350450px;}
.y16_c00303{bottom:472.080450px;}
.y15_c00303{bottom:506.460450px;}
.y14_c00303{bottom:540.930450px;}
.y13_c00303{bottom:593.310450px;}
.y12_c00303{bottom:627.780450px;}
.y11_c00303{bottom:671.160450px;}
.y10_c00303{bottom:705.630450px;}
.yf_c00303{bottom:749.010450px;}
.ye_c00303{bottom:783.480450px;}
.yd_c00303{bottom:817.860450px;}
.yc_c00303{bottom:861.330450px;}
.yb_c00303{bottom:904.710450px;}
.ya_c00303{bottom:939.180450px;}
.y9_c00303{bottom:982.560450px;}
.y8_c00303{bottom:1017.030450px;}
.y7_c00303{bottom:1060.410450px;}
.y6_c00303{bottom:1094.880450px;}
.y5_c00303{bottom:1139.880450px;}
.y2_c00303{bottom:1173.810450px;}
.y1_c00303{bottom:1196.850450px;}
.h2_c00303{height:47.988281px;}
.h9_c00303{height:47.988881px;}
.ha_c00303{height:49.937344px;}
.h1_c00303{height:50.315273px;}
.h3_c00303{height:56.320312px;}
.h5_c00303{height:60.257812px;}
.h8_c00303{height:60.890625px;}
.h6_c00303{height:65.130820px;}
.h7_c00303{height:75.093750px;}
.h4_c00303{height:81.476719px;}
.h0_c00303{height:1263.000000px;}
.w1_c00303{width:892.500000px;}
.w0_c00303{width:892.830000px;}
.x0_c00303{left:0.000000px;}
.x2_c00303{left:127.620000px;}
.x6_c00303{left:154.620000px;}
.x5_c00303{left:180.810000px;}
.x4_c00303{left:435.240000px;}
.x3_c00303{left:446.490000px;}
.x1_c00303{left:490.770000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.v1_c00303{vertical-align:26.560000pt;}
.ls10_c00303{letter-spacing:-0.134400pt;}
.ls17_c00303{letter-spacing:-0.051200pt;}
.ls18_c00303{letter-spacing:-0.038400pt;}
.ls19_c00303{letter-spacing:-0.025600pt;}
.ls12_c00303{letter-spacing:-0.019200pt;}
.ls11_c00303{letter-spacing:-0.013888pt;}
.ls16_c00303{letter-spacing:-0.012800pt;}
.ls1c_c00303{letter-spacing:-0.010368pt;}
.ls14_c00303{letter-spacing:-0.006400pt;}
.ls1b_c00303{letter-spacing:-0.004256pt;}
.ls1a_c00303{letter-spacing:-0.003456pt;}
.lsf_c00303{letter-spacing:0.000000pt;}
.lsb_c00303{letter-spacing:0.004256pt;}
.ls6_c00303{letter-spacing:0.006400pt;}
.ls8_c00303{letter-spacing:0.012768pt;}
.ls2_c00303{letter-spacing:0.012800pt;}
.lsc_c00303{letter-spacing:0.017024pt;}
.lse_c00303{letter-spacing:0.025536pt;}
.ls15_c00303{letter-spacing:0.025600pt;}
.ls0_c00303{letter-spacing:0.032064pt;}
.lsa_c00303{letter-spacing:0.042560pt;}
.ls3_c00303{letter-spacing:0.048672pt;}
.ls13_c00303{letter-spacing:0.083200pt;}
.ls4_c00303{letter-spacing:0.128000pt;}
.lsd_c00303{letter-spacing:0.336224pt;}
.ls9_c00303{letter-spacing:0.412480pt;}
.ls1_c00303{letter-spacing:28.053760pt;}
.ls5_c00303{letter-spacing:58.048000pt;}
.ls7_c00303{letter-spacing:58.688000pt;}
.ws0_c00303{word-spacing:-17.346112pt;}
.ws3_c00303{word-spacing:-16.012800pt;}
.ws2_c00303{word-spacing:-16.006400pt;}
.ws4_c00303{word-spacing:-16.000000pt;}
.ws5_c00303{word-spacing:-9.604224pt;}
.ws1_c00303{word-spacing:-9.408672pt;}
.ws27_c00303{word-spacing:-0.319200pt;}
.ws6_c00303{word-spacing:-0.272544pt;}
.ws8_c00303{word-spacing:-0.145824pt;}
.ws11_c00303{word-spacing:-0.083200pt;}
.ws1e_c00303{word-spacing:-0.069440pt;}
.ws12_c00303{word-spacing:-0.025600pt;}
.ws24_c00303{word-spacing:-0.025536pt;}
.ws2a_c00303{word-spacing:-0.008512pt;}
.ws7_c00303{word-spacing:0.000000pt;}
.ws22_c00303{word-spacing:0.004256pt;}
.wse_c00303{word-spacing:0.006400pt;}
.ws25_c00303{word-spacing:0.012768pt;}
.ws29_c00303{word-spacing:0.017024pt;}
.wsb_c00303{word-spacing:0.019200pt;}
.ws28_c00303{word-spacing:0.021280pt;}
.ws26_c00303{word-spacing:0.317952pt;}
.ws23_c00303{word-spacing:0.323456pt;}
.ws1b_c00303{word-spacing:0.947200pt;}
.ws1a_c00303{word-spacing:0.966400pt;}
.wsa_c00303{word-spacing:1.587200pt;}
.ws9_c00303{word-spacing:1.721600pt;}
.ws14_c00303{word-spacing:3.936000pt;}
.ws15_c00303{word-spacing:3.961600pt;}
.ws16_c00303{word-spacing:4.166400pt;}
.ws17_c00303{word-spacing:4.211200pt;}
.ws1d_c00303{word-spacing:5.388800pt;}
.ws1c_c00303{word-spacing:5.433600pt;}
.ws19_c00303{word-spacing:5.452800pt;}
.ws1f_c00303{word-spacing:5.478400pt;}
.ws18_c00303{word-spacing:5.497600pt;}
.ws21_c00303{word-spacing:6.118400pt;}
.ws20_c00303{word-spacing:6.233600pt;}
.ws13_c00303{word-spacing:8.646400pt;}
.ws10_c00303{word-spacing:14.086400pt;}
.wsf_c00303{word-spacing:14.150400pt;}
.wsd_c00303{word-spacing:15.718400pt;}
.wsc_c00303{word-spacing:15.731200pt;}
._0_c00303{margin-left:-0.908480pt;}
._1_c00303{width:1.216000pt;}
.fs6_c00303{font-size:34.560000pt;}
.fs4_c00303{font-size:37.440000pt;}
.fs5_c00303{font-size:42.560000pt;}
.fs2_c00303{font-size:48.000000pt;}
.fs0_c00303{font-size:53.440000pt;}
.fs1_c00303{font-size:64.000000pt;}
.fs3_c00303{font-size:69.440000pt;}
.y0_c00303{bottom:0.000000pt;}
.y3_c00303{bottom:51.067067pt;}
.y4_c00303{bottom:54.587067pt;}
.y20_c00303{bottom:101.069307pt;}
.y1f_c00303{bottom:117.391067pt;}
.y1e_c00303{bottom:129.630427pt;}
.y1d_c00303{bottom:145.867067pt;}
.y1c_c00303{bottom:159.387200pt;}
.y1b_c00303{bottom:177.787200pt;}
.y1a_c00303{bottom:196.187067pt;}
.y19_c00303{bottom:301.307067pt;}
.y18_c00303{bottom:331.867067pt;}
.y17_c00303{bottom:371.867067pt;}
.y16_c00303{bottom:419.627067pt;}
.y15_c00303{bottom:450.187067pt;}
.y14_c00303{bottom:480.827067pt;}
.y13_c00303{bottom:527.387067pt;}
.y12_c00303{bottom:558.027067pt;}
.y11_c00303{bottom:596.587067pt;}
.y10_c00303{bottom:627.227067pt;}
.yf_c00303{bottom:665.787067pt;}
.ye_c00303{bottom:696.427067pt;}
.yd_c00303{bottom:726.987067pt;}
.yc_c00303{bottom:765.627067pt;}
.yb_c00303{bottom:804.187067pt;}
.ya_c00303{bottom:834.827067pt;}
.y9_c00303{bottom:873.387067pt;}
.y8_c00303{bottom:904.027067pt;}
.y7_c00303{bottom:942.587067pt;}
.y6_c00303{bottom:973.227067pt;}
.y5_c00303{bottom:1013.227067pt;}
.y2_c00303{bottom:1043.387067pt;}
.y1_c00303{bottom:1063.867067pt;}
.h2_c00303{height:42.656250pt;}
.h9_c00303{height:42.656783pt;}
.ha_c00303{height:44.388750pt;}
.h1_c00303{height:44.724687pt;}
.h3_c00303{height:50.062500pt;}
.h5_c00303{height:53.562500pt;}
.h8_c00303{height:54.125000pt;}
.h6_c00303{height:57.894063pt;}
.h7_c00303{height:66.750000pt;}
.h4_c00303{height:72.423750pt;}
.h0_c00303{height:1122.666667pt;}
.w1_c00303{width:793.333333pt;}
.w0_c00303{width:793.626667pt;}
.x0_c00303{left:0.000000pt;}
.x2_c00303{left:113.440000pt;}
.x6_c00303{left:137.440000pt;}
.x5_c00303{left:160.720000pt;}
.x4_c00303{left:386.880000pt;}
.x3_c00303{left:396.880000pt;}
.x1_c00303{left:436.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_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_a5c19187c6f33481c35edf7c.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.100098;font-style:normal;font-weight:normal;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_13f11d97051825a7199bdff5.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;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_c00304;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00304;src:url('chunks/assets/font_795e327112b75fb69e845d8a.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:1.102051;font-style:normal;font-weight:normal;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_2da0e1d61d4e9f858cadecaf.woff2')format("woff");}.ff5_c00304{font-family:ff5_c00304;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00304;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00304{font-family:ff6_c00304;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00304;src:url('chunks/assets/font_6b0dcf65239c2491f85997bb.woff2')format("woff");}.ff7_c00304{font-family:ff7_c00304;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_c00304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.v1_c00304{vertical-align:15.840000px;}
.v2_c00304{vertical-align:29.880000px;}
.ls14_c00304{letter-spacing:-0.273600px;}
.ls12_c00304{letter-spacing:-0.151200px;}
.ls18_c00304{letter-spacing:-0.057600px;}
.ls1d_c00304{letter-spacing:-0.043200px;}
.ls1e_c00304{letter-spacing:-0.036000px;}
.ls1c_c00304{letter-spacing:-0.028800px;}
.ls1a_c00304{letter-spacing:-0.023436px;}
.ls15_c00304{letter-spacing:-0.021600px;}
.ls1b_c00304{letter-spacing:-0.015624px;}
.ls17_c00304{letter-spacing:-0.014400px;}
.ls21_c00304{letter-spacing:-0.011664px;}
.ls13_c00304{letter-spacing:-0.007200px;}
.ls1f_c00304{letter-spacing:-0.003888px;}
.ls11_c00304{letter-spacing:0.000000px;}
.lsf_c00304{letter-spacing:0.004788px;}
.ls2_c00304{letter-spacing:0.007200px;}
.lsa_c00304{letter-spacing:0.014364px;}
.ls6_c00304{letter-spacing:0.014400px;}
.ls8_c00304{letter-spacing:0.021600px;}
.ls10_c00304{letter-spacing:0.028728px;}
.ls16_c00304{letter-spacing:0.028800px;}
.lsd_c00304{letter-spacing:0.033516px;}
.lsc_c00304{letter-spacing:0.047880px;}
.ls0_c00304{letter-spacing:0.048096px;}
.lse_c00304{letter-spacing:0.052668px;}
.ls3_c00304{letter-spacing:0.054756px;}
.ls19_c00304{letter-spacing:0.093600px;}
.ls4_c00304{letter-spacing:0.144000px;}
.lsb_c00304{letter-spacing:0.464040px;}
.ls9_c00304{letter-spacing:0.624960px;}
.ls20_c00304{letter-spacing:0.737352px;}
.ls5_c00304{letter-spacing:65.304000px;}
.ls7_c00304{letter-spacing:66.024000px;}
.ls1_c00304{letter-spacing:1212.120000px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00304{word-spacing:-19.506564px;}
.ws3_c00304{word-spacing:-18.021600px;}
.ws2_c00304{word-spacing:-18.014400px;}
.ws1_c00304{word-spacing:-18.007200px;}
.ws5_c00304{word-spacing:-10.804752px;}
.ws0_c00304{word-spacing:-10.584756px;}
.ws1b_c00304{word-spacing:-0.109368px;}
.ws11_c00304{word-spacing:-0.028800px;}
.ws27_c00304{word-spacing:-0.028728px;}
.ws28_c00304{word-spacing:-0.014364px;}
.ws30_c00304{word-spacing:-0.009576px;}
.ws9_c00304{word-spacing:-0.007200px;}
.ws7_c00304{word-spacing:0.000000px;}
.ws25_c00304{word-spacing:0.004788px;}
.wsd_c00304{word-spacing:0.007200px;}
.ws2f_c00304{word-spacing:0.019152px;}
.ws10_c00304{word-spacing:0.021600px;}
.ws6_c00304{word-spacing:0.042084px;}
.wsa_c00304{word-spacing:0.273600px;}
.ws26_c00304{word-spacing:0.363888px;}
.ws2c_c00304{word-spacing:1.766772px;}
.ws2d_c00304{word-spacing:1.785924px;}
.ws19_c00304{word-spacing:1.792800px;}
.ws2a_c00304{word-spacing:1.796256px;}
.ws29_c00304{word-spacing:1.805076px;}
.ws2e_c00304{word-spacing:1.814652px;}
.ws1a_c00304{word-spacing:1.828800px;}
.ws2b_c00304{word-spacing:2.164176px;}
.ws21_c00304{word-spacing:4.399200px;}
.ws13_c00304{word-spacing:4.428000px;}
.ws22_c00304{word-spacing:4.435200px;}
.ws14_c00304{word-spacing:4.456800px;}
.ws20_c00304{word-spacing:4.514400px;}
.ws15_c00304{word-spacing:4.687200px;}
.ws16_c00304{word-spacing:4.737600px;}
.ws17_c00304{word-spacing:5.320800px;}
.ws18_c00304{word-spacing:5.407200px;}
.ws1c_c00304{word-spacing:5.760000px;}
.ws23_c00304{word-spacing:7.185600px;}
.ws12_c00304{word-spacing:9.727200px;}
.wsf_c00304{word-spacing:15.847200px;}
.wse_c00304{word-spacing:15.919200px;}
.ws24_c00304{word-spacing:15.933600px;}
.ws1e_c00304{word-spacing:16.214400px;}
.ws1d_c00304{word-spacing:16.221600px;}
.wsc_c00304{word-spacing:17.683200px;}
.wsb_c00304{word-spacing:17.697600px;}
.ws8_c00304{word-spacing:20.527200px;}
.ws1f_c00304{word-spacing:23.788800px;}
._0_c00304{margin-left:-1.322640px;}
._1_c00304{width:1.080000px;}
.fc0_c00304{color:rgb(0,0,0);}
.fs6_c00304{font-size:38.880000px;}
.fs3_c00304{font-size:42.120000px;}
.fs5_c00304{font-size:47.880000px;}
.fs1_c00304{font-size:54.000000px;}
.fs0_c00304{font-size:60.120000px;}
.fs2_c00304{font-size:72.000000px;}
.fs4_c00304{font-size:78.120000px;}
.y0_c00304{bottom:0.000000px;}
.y3_c00304{bottom:57.450450px;}
.y21_c00304{bottom:113.698470px;}
.y20_c00304{bottom:132.068730px;}
.y1f_c00304{bottom:150.334950px;}
.y1e_c00304{bottom:164.098620px;}
.y1d_c00304{bottom:182.460600px;}
.y1c_c00304{bottom:197.670450px;}
.y1b_c00304{bottom:218.370450px;}
.y1a_c00304{bottom:239.070450px;}
.y19_c00304{bottom:325.380450px;}
.y18_c00304{bottom:359.760450px;}
.y17_c00304{bottom:394.230600px;}
.y16_c00304{bottom:428.610600px;}
.y15_c00304{bottom:463.080600px;}
.y14_c00304{bottom:497.460600px;}
.y13_c00304{bottom:542.550450px;}
.y12_c00304{bottom:596.190450px;}
.y11_c00304{bottom:630.660450px;}
.y10_c00304{bottom:665.040450px;}
.yf_c00304{bottom:717.510450px;}
.ye_c00304{bottom:751.890450px;}
.yd_c00304{bottom:795.360450px;}
.yc_c00304{bottom:829.740450px;}
.yb_c00304{bottom:864.210450px;}
.ya_c00304{bottom:907.590450px;}
.y9_c00304{bottom:951.060450px;}
.y8_c00304{bottom:985.440450px;}
.y7_c00304{bottom:1028.910450px;}
.y6_c00304{bottom:1063.290450px;}
.y5_c00304{bottom:1106.760450px;}
.y4_c00304{bottom:1141.140450px;}
.y2_c00304{bottom:1177.860450px;}
.y1_c00304{bottom:1196.850450px;}
.h9_c00304{height:47.988281px;}
.ha_c00304{height:49.937344px;}
.hb_c00304{height:49.944664px;}
.hc_c00304{height:49.945264px;}
.h1_c00304{height:50.315273px;}
.h2_c00304{height:56.320312px;}
.h4_c00304{height:60.257812px;}
.h7_c00304{height:60.890625px;}
.h5_c00304{height:65.130820px;}
.h3_c00304{height:72.160312px;}
.h6_c00304{height:75.093750px;}
.h8_c00304{height:81.476719px;}
.h0_c00304{height:1263.000000px;}
.w1_c00304{width:892.500000px;}
.w0_c00304{width:892.830000px;}
.x0_c00304{left:0.000000px;}
.x1_c00304{left:127.620000px;}
.x3_c00304{left:154.620000px;}
.x2_c00304{left:180.810000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.v1_c00304{vertical-align:14.080000pt;}
.v2_c00304{vertical-align:26.560000pt;}
.ls14_c00304{letter-spacing:-0.243200pt;}
.ls12_c00304{letter-spacing:-0.134400pt;}
.ls18_c00304{letter-spacing:-0.051200pt;}
.ls1d_c00304{letter-spacing:-0.038400pt;}
.ls1e_c00304{letter-spacing:-0.032000pt;}
.ls1c_c00304{letter-spacing:-0.025600pt;}
.ls1a_c00304{letter-spacing:-0.020832pt;}
.ls15_c00304{letter-spacing:-0.019200pt;}
.ls1b_c00304{letter-spacing:-0.013888pt;}
.ls17_c00304{letter-spacing:-0.012800pt;}
.ls21_c00304{letter-spacing:-0.010368pt;}
.ls13_c00304{letter-spacing:-0.006400pt;}
.ls1f_c00304{letter-spacing:-0.003456pt;}
.ls11_c00304{letter-spacing:0.000000pt;}
.lsf_c00304{letter-spacing:0.004256pt;}
.ls2_c00304{letter-spacing:0.006400pt;}
.lsa_c00304{letter-spacing:0.012768pt;}
.ls6_c00304{letter-spacing:0.012800pt;}
.ls8_c00304{letter-spacing:0.019200pt;}
.ls10_c00304{letter-spacing:0.025536pt;}
.ls16_c00304{letter-spacing:0.025600pt;}
.lsd_c00304{letter-spacing:0.029792pt;}
.lsc_c00304{letter-spacing:0.042560pt;}
.ls0_c00304{letter-spacing:0.042752pt;}
.lse_c00304{letter-spacing:0.046816pt;}
.ls3_c00304{letter-spacing:0.048672pt;}
.ls19_c00304{letter-spacing:0.083200pt;}
.ls4_c00304{letter-spacing:0.128000pt;}
.lsb_c00304{letter-spacing:0.412480pt;}
.ls9_c00304{letter-spacing:0.555520pt;}
.ls20_c00304{letter-spacing:0.655424pt;}
.ls5_c00304{letter-spacing:58.048000pt;}
.ls7_c00304{letter-spacing:58.688000pt;}
.ls1_c00304{letter-spacing:1077.440000pt;}
.ws4_c00304{word-spacing:-17.339168pt;}
.ws3_c00304{word-spacing:-16.019200pt;}
.ws2_c00304{word-spacing:-16.012800pt;}
.ws1_c00304{word-spacing:-16.006400pt;}
.ws5_c00304{word-spacing:-9.604224pt;}
.ws0_c00304{word-spacing:-9.408672pt;}
.ws1b_c00304{word-spacing:-0.097216pt;}
.ws11_c00304{word-spacing:-0.025600pt;}
.ws27_c00304{word-spacing:-0.025536pt;}
.ws28_c00304{word-spacing:-0.012768pt;}
.ws30_c00304{word-spacing:-0.008512pt;}
.ws9_c00304{word-spacing:-0.006400pt;}
.ws7_c00304{word-spacing:0.000000pt;}
.ws25_c00304{word-spacing:0.004256pt;}
.wsd_c00304{word-spacing:0.006400pt;}
.ws2f_c00304{word-spacing:0.017024pt;}
.ws10_c00304{word-spacing:0.019200pt;}
.ws6_c00304{word-spacing:0.037408pt;}
.wsa_c00304{word-spacing:0.243200pt;}
.ws26_c00304{word-spacing:0.323456pt;}
.ws2c_c00304{word-spacing:1.570464pt;}
.ws2d_c00304{word-spacing:1.587488pt;}
.ws19_c00304{word-spacing:1.593600pt;}
.ws2a_c00304{word-spacing:1.596672pt;}
.ws29_c00304{word-spacing:1.604512pt;}
.ws2e_c00304{word-spacing:1.613024pt;}
.ws1a_c00304{word-spacing:1.625600pt;}
.ws2b_c00304{word-spacing:1.923712pt;}
.ws21_c00304{word-spacing:3.910400pt;}
.ws13_c00304{word-spacing:3.936000pt;}
.ws22_c00304{word-spacing:3.942400pt;}
.ws14_c00304{word-spacing:3.961600pt;}
.ws20_c00304{word-spacing:4.012800pt;}
.ws15_c00304{word-spacing:4.166400pt;}
.ws16_c00304{word-spacing:4.211200pt;}
.ws17_c00304{word-spacing:4.729600pt;}
.ws18_c00304{word-spacing:4.806400pt;}
.ws1c_c00304{word-spacing:5.120000pt;}
.ws23_c00304{word-spacing:6.387200pt;}
.ws12_c00304{word-spacing:8.646400pt;}
.wsf_c00304{word-spacing:14.086400pt;}
.wse_c00304{word-spacing:14.150400pt;}
.ws24_c00304{word-spacing:14.163200pt;}
.ws1e_c00304{word-spacing:14.412800pt;}
.ws1d_c00304{word-spacing:14.419200pt;}
.wsc_c00304{word-spacing:15.718400pt;}
.wsb_c00304{word-spacing:15.731200pt;}
.ws8_c00304{word-spacing:18.246400pt;}
.ws1f_c00304{word-spacing:21.145600pt;}
._0_c00304{margin-left:-1.175680pt;}
._1_c00304{width:0.960000pt;}
.fs6_c00304{font-size:34.560000pt;}
.fs3_c00304{font-size:37.440000pt;}
.fs5_c00304{font-size:42.560000pt;}
.fs1_c00304{font-size:48.000000pt;}
.fs0_c00304{font-size:53.440000pt;}
.fs2_c00304{font-size:64.000000pt;}
.fs4_c00304{font-size:69.440000pt;}
.y0_c00304{bottom:0.000000pt;}
.y3_c00304{bottom:51.067067pt;}
.y21_c00304{bottom:101.065307pt;}
.y20_c00304{bottom:117.394427pt;}
.y1f_c00304{bottom:133.631067pt;}
.y1e_c00304{bottom:145.865440pt;}
.y1d_c00304{bottom:162.187200pt;}
.y1c_c00304{bottom:175.707067pt;}
.y1b_c00304{bottom:194.107067pt;}
.y1a_c00304{bottom:212.507067pt;}
.y19_c00304{bottom:289.227067pt;}
.y18_c00304{bottom:319.787067pt;}
.y17_c00304{bottom:350.427200pt;}
.y16_c00304{bottom:380.987200pt;}
.y15_c00304{bottom:411.627200pt;}
.y14_c00304{bottom:442.187200pt;}
.y13_c00304{bottom:482.267067pt;}
.y12_c00304{bottom:529.947067pt;}
.y11_c00304{bottom:560.587067pt;}
.y10_c00304{bottom:591.147067pt;}
.yf_c00304{bottom:637.787067pt;}
.ye_c00304{bottom:668.347067pt;}
.yd_c00304{bottom:706.987067pt;}
.yc_c00304{bottom:737.547067pt;}
.yb_c00304{bottom:768.187067pt;}
.ya_c00304{bottom:806.747067pt;}
.y9_c00304{bottom:845.387067pt;}
.y8_c00304{bottom:875.947067pt;}
.y7_c00304{bottom:914.587067pt;}
.y6_c00304{bottom:945.147067pt;}
.y5_c00304{bottom:983.787067pt;}
.y4_c00304{bottom:1014.347067pt;}
.y2_c00304{bottom:1046.987067pt;}
.y1_c00304{bottom:1063.867067pt;}
.h9_c00304{height:42.656250pt;}
.ha_c00304{height:44.388750pt;}
.hb_c00304{height:44.395257pt;}
.hc_c00304{height:44.395790pt;}
.h1_c00304{height:44.724687pt;}
.h2_c00304{height:50.062500pt;}
.h4_c00304{height:53.562500pt;}
.h7_c00304{height:54.125000pt;}
.h5_c00304{height:57.894063pt;}
.h3_c00304{height:64.142500pt;}
.h6_c00304{height:66.750000pt;}
.h8_c00304{height:72.423750pt;}
.h0_c00304{height:1122.666667pt;}
.w1_c00304{width:793.333333pt;}
.w0_c00304{width:793.626667pt;}
.x0_c00304{left:0.000000pt;}
.x1_c00304{left:113.440000pt;}
.x3_c00304{left:137.440000pt;}
.x2_c00304{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_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_9304e4191a3a975071fbe2e6.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00305;src:url('chunks/assets/font_a12a99d1adeb6009f6c3ac59.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00305;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;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_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.v1_c00305{vertical-align:29.880000px;}
.lse_c00305{letter-spacing:-0.266400px;}
.lsb_c00305{letter-spacing:-0.151200px;}
.ls13_c00305{letter-spacing:-0.050400px;}
.ls10_c00305{letter-spacing:-0.043200px;}
.lsf_c00305{letter-spacing:-0.036000px;}
.ls11_c00305{letter-spacing:-0.021600px;}
.lsc_c00305{letter-spacing:-0.014400px;}
.lsd_c00305{letter-spacing:-0.007200px;}
.ls14_c00305{letter-spacing:-0.003888px;}
.lsa_c00305{letter-spacing:0.000000px;}
.ls9_c00305{letter-spacing:0.004788px;}
.ls2_c00305{letter-spacing:0.007200px;}
.ls5_c00305{letter-spacing:0.014364px;}
.ls3_c00305{letter-spacing:0.014400px;}
.ls4_c00305{letter-spacing:0.021600px;}
.ls8_c00305{letter-spacing:0.033516px;}
.ls0_c00305{letter-spacing:0.036072px;}
.ls7_c00305{letter-spacing:0.047880px;}
.ls1_c00305{letter-spacing:0.054756px;}
.ls12_c00305{letter-spacing:0.093600px;}
.ls6_c00305{letter-spacing:0.464040px;}
.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;}
}
.ws1_c00305{word-spacing:-17.956800px;}
.ws2_c00305{word-spacing:-17.949600px;}
.ws3_c00305{word-spacing:-10.804752px;}
.ws0_c00305{word-spacing:-10.584756px;}
.ws4_c00305{word-spacing:-0.306612px;}
.ws27_c00305{word-spacing:-0.028728px;}
.ws28_c00305{word-spacing:-0.014364px;}
.ws5_c00305{word-spacing:0.000000px;}
.ws25_c00305{word-spacing:0.004788px;}
.ws7_c00305{word-spacing:0.007200px;}
.ws2a_c00305{word-spacing:0.014364px;}
.ws29_c00305{word-spacing:0.019152px;}
.ws15_c00305{word-spacing:0.021600px;}
.ws1a_c00305{word-spacing:0.064800px;}
.ws1f_c00305{word-spacing:0.280800px;}
.ws20_c00305{word-spacing:0.331200px;}
.ws26_c00305{word-spacing:0.363888px;}
.ws21_c00305{word-spacing:1.108800px;}
.ws1c_c00305{word-spacing:1.483200px;}
.ws1b_c00305{word-spacing:1.548000px;}
.ws1d_c00305{word-spacing:2.851200px;}
.ws1e_c00305{word-spacing:2.894400px;}
.wsc_c00305{word-spacing:3.607200px;}
.ws11_c00305{word-spacing:4.341600px;}
.ws12_c00305{word-spacing:4.406400px;}
.ws19_c00305{word-spacing:6.890400px;}
.wsa_c00305{word-spacing:7.430400px;}
.ws9_c00305{word-spacing:7.567200px;}
.wsb_c00305{word-spacing:8.647200px;}
.ws16_c00305{word-spacing:9.360000px;}
.ws8_c00305{word-spacing:9.374400px;}
.ws17_c00305{word-spacing:9.417600px;}
.ws14_c00305{word-spacing:11.923200px;}
.ws13_c00305{word-spacing:11.930400px;}
.ws6_c00305{word-spacing:16.574400px;}
.ws10_c00305{word-spacing:17.272800px;}
.wsf_c00305{word-spacing:17.388000px;}
.wsd_c00305{word-spacing:18.763200px;}
.wse_c00305{word-spacing:18.871200px;}
.ws18_c00305{word-spacing:19.843200px;}
.ws22_c00305{word-spacing:20.160000px;}
.ws23_c00305{word-spacing:20.232000px;}
.ws24_c00305{word-spacing:20.541600px;}
._0_c00305{margin-left:-1.022040px;}
._1_c00305{width:1.008000px;}
.fc0_c00305{color:rgb(0,0,0);}
.fs5_c00305{font-size:38.880000px;}
.fs3_c00305{font-size:42.120000px;}
.fs4_c00305{font-size:47.880000px;}
.fs2_c00305{font-size:54.000000px;}
.fs0_c00305{font-size:60.120000px;}
.fs1_c00305{font-size:72.000000px;}
.y0_c00305{bottom:0.000000px;}
.y3_c00305{bottom:57.450450px;}
.y4_c00305{bottom:61.410450px;}
.y22_c00305{bottom:113.698470px;}
.y21_c00305{bottom:132.064230px;}
.y20_c00305{bottom:150.334230px;}
.y1f_c00305{bottom:168.598620px;}
.y1e_c00305{bottom:186.960600px;}
.y1d_c00305{bottom:202.170450px;}
.y1c_c00305{bottom:222.870450px;}
.y1b_c00305{bottom:243.570450px;}
.y1a_c00305{bottom:391.260450px;}
.y19_c00305{bottom:425.640450px;}
.y18_c00305{bottom:460.110450px;}
.y17_c00305{bottom:494.490450px;}
.y16_c00305{bottom:528.960450px;}
.y15_c00305{bottom:563.340450px;}
.y14_c00305{bottom:597.810450px;}
.y13_c00305{bottom:641.190450px;}
.y12_c00305{bottom:675.660450px;}
.y11_c00305{bottom:710.040450px;}
.y10_c00305{bottom:744.510450px;}
.yf_c00305{bottom:787.890450px;}
.ye_c00305{bottom:822.360450px;}
.yd_c00305{bottom:856.740450px;}
.yc_c00305{bottom:891.210450px;}
.yb_c00305{bottom:925.590450px;}
.ya_c00305{bottom:960.060450px;}
.y9_c00305{bottom:994.440450px;}
.y8_c00305{bottom:1028.910450px;}
.y7_c00305{bottom:1063.290450px;}
.y6_c00305{bottom:1106.760450px;}
.y5_c00305{bottom:1141.140450px;}
.y2_c00305{bottom:1173.810450px;}
.y1_c00305{bottom:1196.850450px;}
.h2_c00305{height:47.988281px;}
.h7_c00305{height:49.937344px;}
.h8_c00305{height:49.944664px;}
.h9_c00305{height:49.945264px;}
.h1_c00305{height:50.315273px;}
.h3_c00305{height:56.320312px;}
.h4_c00305{height:60.257812px;}
.h5_c00305{height:65.130820px;}
.h6_c00305{height:65.131420px;}
.h0_c00305{height:1263.000000px;}
.w1_c00305{width:892.500000px;}
.w0_c00305{width:892.830000px;}
.x0_c00305{left:0.000000px;}
.x2_c00305{left:127.620000px;}
.x5_c00305{left:180.810000px;}
.x4_c00305{left:435.240000px;}
.x3_c00305{left:446.490000px;}
.x1_c00305{left:490.770000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.v1_c00305{vertical-align:26.560000pt;}
.lse_c00305{letter-spacing:-0.236800pt;}
.lsb_c00305{letter-spacing:-0.134400pt;}
.ls13_c00305{letter-spacing:-0.044800pt;}
.ls10_c00305{letter-spacing:-0.038400pt;}
.lsf_c00305{letter-spacing:-0.032000pt;}
.ls11_c00305{letter-spacing:-0.019200pt;}
.lsc_c00305{letter-spacing:-0.012800pt;}
.lsd_c00305{letter-spacing:-0.006400pt;}
.ls14_c00305{letter-spacing:-0.003456pt;}
.lsa_c00305{letter-spacing:0.000000pt;}
.ls9_c00305{letter-spacing:0.004256pt;}
.ls2_c00305{letter-spacing:0.006400pt;}
.ls5_c00305{letter-spacing:0.012768pt;}
.ls3_c00305{letter-spacing:0.012800pt;}
.ls4_c00305{letter-spacing:0.019200pt;}
.ls8_c00305{letter-spacing:0.029792pt;}
.ls0_c00305{letter-spacing:0.032064pt;}
.ls7_c00305{letter-spacing:0.042560pt;}
.ls1_c00305{letter-spacing:0.048672pt;}
.ls12_c00305{letter-spacing:0.083200pt;}
.ls6_c00305{letter-spacing:0.412480pt;}
.ws1_c00305{word-spacing:-15.961600pt;}
.ws2_c00305{word-spacing:-15.955200pt;}
.ws3_c00305{word-spacing:-9.604224pt;}
.ws0_c00305{word-spacing:-9.408672pt;}
.ws4_c00305{word-spacing:-0.272544pt;}
.ws27_c00305{word-spacing:-0.025536pt;}
.ws28_c00305{word-spacing:-0.012768pt;}
.ws5_c00305{word-spacing:0.000000pt;}
.ws25_c00305{word-spacing:0.004256pt;}
.ws7_c00305{word-spacing:0.006400pt;}
.ws2a_c00305{word-spacing:0.012768pt;}
.ws29_c00305{word-spacing:0.017024pt;}
.ws15_c00305{word-spacing:0.019200pt;}
.ws1a_c00305{word-spacing:0.057600pt;}
.ws1f_c00305{word-spacing:0.249600pt;}
.ws20_c00305{word-spacing:0.294400pt;}
.ws26_c00305{word-spacing:0.323456pt;}
.ws21_c00305{word-spacing:0.985600pt;}
.ws1c_c00305{word-spacing:1.318400pt;}
.ws1b_c00305{word-spacing:1.376000pt;}
.ws1d_c00305{word-spacing:2.534400pt;}
.ws1e_c00305{word-spacing:2.572800pt;}
.wsc_c00305{word-spacing:3.206400pt;}
.ws11_c00305{word-spacing:3.859200pt;}
.ws12_c00305{word-spacing:3.916800pt;}
.ws19_c00305{word-spacing:6.124800pt;}
.wsa_c00305{word-spacing:6.604800pt;}
.ws9_c00305{word-spacing:6.726400pt;}
.wsb_c00305{word-spacing:7.686400pt;}
.ws16_c00305{word-spacing:8.320000pt;}
.ws8_c00305{word-spacing:8.332800pt;}
.ws17_c00305{word-spacing:8.371200pt;}
.ws14_c00305{word-spacing:10.598400pt;}
.ws13_c00305{word-spacing:10.604800pt;}
.ws6_c00305{word-spacing:14.732800pt;}
.ws10_c00305{word-spacing:15.353600pt;}
.wsf_c00305{word-spacing:15.456000pt;}
.wsd_c00305{word-spacing:16.678400pt;}
.wse_c00305{word-spacing:16.774400pt;}
.ws18_c00305{word-spacing:17.638400pt;}
.ws22_c00305{word-spacing:17.920000pt;}
.ws23_c00305{word-spacing:17.984000pt;}
.ws24_c00305{word-spacing:18.259200pt;}
._0_c00305{margin-left:-0.908480pt;}
._1_c00305{width:0.896000pt;}
.fs5_c00305{font-size:34.560000pt;}
.fs3_c00305{font-size:37.440000pt;}
.fs4_c00305{font-size:42.560000pt;}
.fs2_c00305{font-size:48.000000pt;}
.fs0_c00305{font-size:53.440000pt;}
.fs1_c00305{font-size:64.000000pt;}
.y0_c00305{bottom:0.000000pt;}
.y3_c00305{bottom:51.067067pt;}
.y4_c00305{bottom:54.587067pt;}
.y22_c00305{bottom:101.065307pt;}
.y21_c00305{bottom:117.390427pt;}
.y20_c00305{bottom:133.630427pt;}
.y1f_c00305{bottom:149.865440pt;}
.y1e_c00305{bottom:166.187200pt;}
.y1d_c00305{bottom:179.707067pt;}
.y1c_c00305{bottom:198.107067pt;}
.y1b_c00305{bottom:216.507067pt;}
.y1a_c00305{bottom:347.787067pt;}
.y19_c00305{bottom:378.347067pt;}
.y18_c00305{bottom:408.987067pt;}
.y17_c00305{bottom:439.547067pt;}
.y16_c00305{bottom:470.187067pt;}
.y15_c00305{bottom:500.747067pt;}
.y14_c00305{bottom:531.387067pt;}
.y13_c00305{bottom:569.947067pt;}
.y12_c00305{bottom:600.587067pt;}
.y11_c00305{bottom:631.147067pt;}
.y10_c00305{bottom:661.787067pt;}
.yf_c00305{bottom:700.347067pt;}
.ye_c00305{bottom:730.987067pt;}
.yd_c00305{bottom:761.547067pt;}
.yc_c00305{bottom:792.187067pt;}
.yb_c00305{bottom:822.747067pt;}
.ya_c00305{bottom:853.387067pt;}
.y9_c00305{bottom:883.947067pt;}
.y8_c00305{bottom:914.587067pt;}
.y7_c00305{bottom:945.147067pt;}
.y6_c00305{bottom:983.787067pt;}
.y5_c00305{bottom:1014.347067pt;}
.y2_c00305{bottom:1043.387067pt;}
.y1_c00305{bottom:1063.867067pt;}
.h2_c00305{height:42.656250pt;}
.h7_c00305{height:44.388750pt;}
.h8_c00305{height:44.395257pt;}
.h9_c00305{height:44.395790pt;}
.h1_c00305{height:44.724687pt;}
.h3_c00305{height:50.062500pt;}
.h4_c00305{height:53.562500pt;}
.h5_c00305{height:57.894063pt;}
.h6_c00305{height:57.894596pt;}
.h0_c00305{height:1122.666667pt;}
.w1_c00305{width:793.333333pt;}
.w0_c00305{width:793.626667pt;}
.x0_c00305{left:0.000000pt;}
.x2_c00305{left:113.440000pt;}
.x5_c00305{left:160.720000pt;}
.x4_c00305{left:386.880000pt;}
.x3_c00305{left:396.880000pt;}
.x1_c00305{left:436.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_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_5e5d5274da9ba52aaa691990.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.100098;font-style:normal;font-weight:normal;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_182fde2e8313985fbbbae975.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;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_c00306;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00306;src:url('chunks/assets/font_282ebe6fed607b85b4e96ae2.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00306;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;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_c00306;src:url('chunks/assets/font_9ce8bbed81cf1da3e63b8512.woff2')format("woff");}.ff6_c00306{font-family:ff6_c00306;line-height:1.102051;font-style:normal;font-weight:normal;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_6b0dcf65239c2491f85997bb.woff2')format("woff");}.ff7_c00306{font-family:ff7_c00306;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_c00306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.v1_c00306{vertical-align:15.840000px;}
.v2_c00306{vertical-align:29.880000px;}
.ls18_c00306{letter-spacing:-0.151200px;}
.ls1f_c00306{letter-spacing:-0.085932px;}
.ls23_c00306{letter-spacing:-0.057600px;}
.ls20_c00306{letter-spacing:-0.046872px;}
.ls19_c00306{letter-spacing:-0.043200px;}
.ls1b_c00306{letter-spacing:-0.036000px;}
.ls1d_c00306{letter-spacing:-0.031248px;}
.ls1a_c00306{letter-spacing:-0.021600px;}
.ls21_c00306{letter-spacing:-0.014400px;}
.ls25_c00306{letter-spacing:-0.011664px;}
.ls1e_c00306{letter-spacing:-0.007812px;}
.ls22_c00306{letter-spacing:-0.007200px;}
.ls24_c00306{letter-spacing:-0.003888px;}
.ls17_c00306{letter-spacing:0.000000px;}
.ls13_c00306{letter-spacing:0.003888px;}
.ls10_c00306{letter-spacing:0.004788px;}
.ls5_c00306{letter-spacing:0.007200px;}
.ls15_c00306{letter-spacing:0.009576px;}
.lsd_c00306{letter-spacing:0.014364px;}
.ls4_c00306{letter-spacing:0.014400px;}
.lsa_c00306{letter-spacing:0.021600px;}
.ls16_c00306{letter-spacing:0.028728px;}
.lsb_c00306{letter-spacing:0.028800px;}
.ls12_c00306{letter-spacing:0.038304px;}
.lsf_c00306{letter-spacing:0.047880px;}
.ls0_c00306{letter-spacing:0.048096px;}
.ls14_c00306{letter-spacing:0.052668px;}
.ls2_c00306{letter-spacing:0.054756px;}
.lsc_c00306{letter-spacing:0.064800px;}
.ls1c_c00306{letter-spacing:0.093600px;}
.ls11_c00306{letter-spacing:0.104040px;}
.ls7_c00306{letter-spacing:0.144000px;}
.ls26_c00306{letter-spacing:0.378252px;}
.lse_c00306{letter-spacing:0.464040px;}
.ls6_c00306{letter-spacing:4.590000px;}
.ls3_c00306{letter-spacing:6.327720px;}
.ls8_c00306{letter-spacing:65.304000px;}
.ls9_c00306{letter-spacing:66.024000px;}
.ls1_c00306{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00306{word-spacing:-19.498752px;}
.ws5_c00306{word-spacing:-18.021600px;}
.ws2_c00306{word-spacing:-18.014400px;}
.ws4_c00306{word-spacing:-18.007200px;}
.ws3_c00306{word-spacing:-17.992800px;}
.ws7_c00306{word-spacing:-10.808640px;}
.ws6_c00306{word-spacing:-10.804752px;}
.ws0_c00306{word-spacing:-10.584756px;}
.wsf_c00306{word-spacing:-0.093600px;}
.ws2d_c00306{word-spacing:-0.028728px;}
.ws36_c00306{word-spacing:-0.009576px;}
.ws23_c00306{word-spacing:-0.007200px;}
.ws9_c00306{word-spacing:0.000000px;}
.ws2b_c00306{word-spacing:0.004788px;}
.ws1e_c00306{word-spacing:0.007200px;}
.ws35_c00306{word-spacing:0.009576px;}
.ws2e_c00306{word-spacing:0.014364px;}
.ws20_c00306{word-spacing:0.014400px;}
.ws34_c00306{word-spacing:0.019152px;}
.ws8_c00306{word-spacing:0.042084px;}
.ws1f_c00306{word-spacing:0.086400px;}
.ws22_c00306{word-spacing:0.093600px;}
.wsd_c00306{word-spacing:0.115200px;}
.ws29_c00306{word-spacing:0.201600px;}
.wse_c00306{word-spacing:0.216000px;}
.ws2c_c00306{word-spacing:0.363888px;}
.ws28_c00306{word-spacing:0.367200px;}
.ws2a_c00306{word-spacing:0.396000px;}
.ws16_c00306{word-spacing:0.648000px;}
.ws17_c00306{word-spacing:0.655200px;}
.ws33_c00306{word-spacing:2.125872px;}
.ws31_c00306{word-spacing:2.140236px;}
.ws2f_c00306{word-spacing:2.164176px;}
.ws30_c00306{word-spacing:2.178540px;}
.ws32_c00306{word-spacing:2.515536px;}
.ws10_c00306{word-spacing:2.718576px;}
.ws11_c00306{word-spacing:2.749824px;}
.ws12_c00306{word-spacing:2.880000px;}
.ws13_c00306{word-spacing:2.916000px;}
.wsa_c00306{word-spacing:3.895200px;}
.ws27_c00306{word-spacing:3.909600px;}
.ws26_c00306{word-spacing:3.967200px;}
.wsb_c00306{word-spacing:4.003200px;}
.ws24_c00306{word-spacing:4.312800px;}
.ws15_c00306{word-spacing:4.327200px;}
.ws1b_c00306{word-spacing:4.687200px;}
.ws1a_c00306{word-spacing:4.694400px;}
.ws25_c00306{word-spacing:4.737600px;}
.ws14_c00306{word-spacing:6.494400px;}
.ws21_c00306{word-spacing:8.647200px;}
.wsc_c00306{word-spacing:10.821600px;}
.ws1d_c00306{word-spacing:17.683200px;}
.ws1c_c00306{word-spacing:17.697600px;}
.ws18_c00306{word-spacing:23.724000px;}
.ws19_c00306{word-spacing:23.803200px;}
._0_c00306{margin-left:-1.322640px;}
._1_c00306{width:1.497600px;}
.fc0_c00306{color:rgb(0,0,0);}
.fs6_c00306{font-size:38.880000px;}
.fs3_c00306{font-size:42.120000px;}
.fs5_c00306{font-size:47.880000px;}
.fs1_c00306{font-size:54.000000px;}
.fs0_c00306{font-size:60.120000px;}
.fs2_c00306{font-size:72.000000px;}
.fs4_c00306{font-size:78.120000px;}
.y0_c00306{bottom:0.000000px;}
.y3_c00306{bottom:57.450450px;}
.y22_c00306{bottom:113.702250px;}
.y21_c00306{bottom:132.064230px;}
.y20_c00306{bottom:150.333120px;}
.y1f_c00306{bottom:168.599340px;}
.y1e_c00306{bottom:182.464230px;}
.y1d_c00306{bottom:200.730450px;}
.y1c_c00306{bottom:215.940450px;}
.y1b_c00306{bottom:236.640450px;}
.y1a_c00306{bottom:257.340600px;}
.y19_c00306{bottom:322.500450px;}
.y18_c00306{bottom:356.970450px;}
.y17_c00306{bottom:409.350450px;}
.y16_c00306{bottom:443.820450px;}
.y15_c00306{bottom:487.200450px;}
.y14_c00306{bottom:521.670450px;}
.y13_c00306{bottom:565.050450px;}
.y12_c00306{bottom:608.520450px;}
.y11_c00306{bottom:642.900450px;}
.y10_c00306{bottom:686.370450px;}
.yf_c00306{bottom:720.750450px;}
.ye_c00306{bottom:755.220450px;}
.yd_c00306{bottom:789.600450px;}
.yc_c00306{bottom:833.070450px;}
.yb_c00306{bottom:867.450450px;}
.ya_c00306{bottom:901.920450px;}
.y9_c00306{bottom:936.300450px;}
.y8_c00306{bottom:981.309090px;}
.y7_c00306{bottom:1018.650450px;}
.y6_c00306{bottom:1072.290450px;}
.y5_c00306{bottom:1106.760450px;}
.y4_c00306{bottom:1141.140450px;}
.y2_c00306{bottom:1177.860450px;}
.y1_c00306{bottom:1196.850450px;}
.ha_c00306{height:47.988281px;}
.hb_c00306{height:49.937344px;}
.h1_c00306{height:50.315273px;}
.h2_c00306{height:56.320312px;}
.h4_c00306{height:60.257812px;}
.h5_c00306{height:65.130820px;}
.h8_c00306{height:65.131420px;}
.h7_c00306{height:65.456016px;}
.h3_c00306{height:72.160312px;}
.h9_c00306{height:75.093750px;}
.h6_c00306{height:81.476719px;}
.h0_c00306{height:1263.000000px;}
.w1_c00306{width:892.500000px;}
.w0_c00306{width:892.830000px;}
.x0_c00306{left:0.000000px;}
.x1_c00306{left:127.620000px;}
.x4_c00306{left:154.620000px;}
.x2_c00306{left:180.810000px;}
.x3_c00306{left:224.801280px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.v1_c00306{vertical-align:14.080000pt;}
.v2_c00306{vertical-align:26.560000pt;}
.ls18_c00306{letter-spacing:-0.134400pt;}
.ls1f_c00306{letter-spacing:-0.076384pt;}
.ls23_c00306{letter-spacing:-0.051200pt;}
.ls20_c00306{letter-spacing:-0.041664pt;}
.ls19_c00306{letter-spacing:-0.038400pt;}
.ls1b_c00306{letter-spacing:-0.032000pt;}
.ls1d_c00306{letter-spacing:-0.027776pt;}
.ls1a_c00306{letter-spacing:-0.019200pt;}
.ls21_c00306{letter-spacing:-0.012800pt;}
.ls25_c00306{letter-spacing:-0.010368pt;}
.ls1e_c00306{letter-spacing:-0.006944pt;}
.ls22_c00306{letter-spacing:-0.006400pt;}
.ls24_c00306{letter-spacing:-0.003456pt;}
.ls17_c00306{letter-spacing:0.000000pt;}
.ls13_c00306{letter-spacing:0.003456pt;}
.ls10_c00306{letter-spacing:0.004256pt;}
.ls5_c00306{letter-spacing:0.006400pt;}
.ls15_c00306{letter-spacing:0.008512pt;}
.lsd_c00306{letter-spacing:0.012768pt;}
.ls4_c00306{letter-spacing:0.012800pt;}
.lsa_c00306{letter-spacing:0.019200pt;}
.ls16_c00306{letter-spacing:0.025536pt;}
.lsb_c00306{letter-spacing:0.025600pt;}
.ls12_c00306{letter-spacing:0.034048pt;}
.lsf_c00306{letter-spacing:0.042560pt;}
.ls0_c00306{letter-spacing:0.042752pt;}
.ls14_c00306{letter-spacing:0.046816pt;}
.ls2_c00306{letter-spacing:0.048672pt;}
.lsc_c00306{letter-spacing:0.057600pt;}
.ls1c_c00306{letter-spacing:0.083200pt;}
.ls11_c00306{letter-spacing:0.092480pt;}
.ls7_c00306{letter-spacing:0.128000pt;}
.ls26_c00306{letter-spacing:0.336224pt;}
.lse_c00306{letter-spacing:0.412480pt;}
.ls6_c00306{letter-spacing:4.080000pt;}
.ls3_c00306{letter-spacing:5.624640pt;}
.ls8_c00306{letter-spacing:58.048000pt;}
.ls9_c00306{letter-spacing:58.688000pt;}
.ls1_c00306{letter-spacing:1077.440000pt;}
.ws1_c00306{word-spacing:-17.332224pt;}
.ws5_c00306{word-spacing:-16.019200pt;}
.ws2_c00306{word-spacing:-16.012800pt;}
.ws4_c00306{word-spacing:-16.006400pt;}
.ws3_c00306{word-spacing:-15.993600pt;}
.ws7_c00306{word-spacing:-9.607680pt;}
.ws6_c00306{word-spacing:-9.604224pt;}
.ws0_c00306{word-spacing:-9.408672pt;}
.wsf_c00306{word-spacing:-0.083200pt;}
.ws2d_c00306{word-spacing:-0.025536pt;}
.ws36_c00306{word-spacing:-0.008512pt;}
.ws23_c00306{word-spacing:-0.006400pt;}
.ws9_c00306{word-spacing:0.000000pt;}
.ws2b_c00306{word-spacing:0.004256pt;}
.ws1e_c00306{word-spacing:0.006400pt;}
.ws35_c00306{word-spacing:0.008512pt;}
.ws2e_c00306{word-spacing:0.012768pt;}
.ws20_c00306{word-spacing:0.012800pt;}
.ws34_c00306{word-spacing:0.017024pt;}
.ws8_c00306{word-spacing:0.037408pt;}
.ws1f_c00306{word-spacing:0.076800pt;}
.ws22_c00306{word-spacing:0.083200pt;}
.wsd_c00306{word-spacing:0.102400pt;}
.ws29_c00306{word-spacing:0.179200pt;}
.wse_c00306{word-spacing:0.192000pt;}
.ws2c_c00306{word-spacing:0.323456pt;}
.ws28_c00306{word-spacing:0.326400pt;}
.ws2a_c00306{word-spacing:0.352000pt;}
.ws16_c00306{word-spacing:0.576000pt;}
.ws17_c00306{word-spacing:0.582400pt;}
.ws33_c00306{word-spacing:1.889664pt;}
.ws31_c00306{word-spacing:1.902432pt;}
.ws2f_c00306{word-spacing:1.923712pt;}
.ws30_c00306{word-spacing:1.936480pt;}
.ws32_c00306{word-spacing:2.236032pt;}
.ws10_c00306{word-spacing:2.416512pt;}
.ws11_c00306{word-spacing:2.444288pt;}
.ws12_c00306{word-spacing:2.560000pt;}
.ws13_c00306{word-spacing:2.592000pt;}
.wsa_c00306{word-spacing:3.462400pt;}
.ws27_c00306{word-spacing:3.475200pt;}
.ws26_c00306{word-spacing:3.526400pt;}
.wsb_c00306{word-spacing:3.558400pt;}
.ws24_c00306{word-spacing:3.833600pt;}
.ws15_c00306{word-spacing:3.846400pt;}
.ws1b_c00306{word-spacing:4.166400pt;}
.ws1a_c00306{word-spacing:4.172800pt;}
.ws25_c00306{word-spacing:4.211200pt;}
.ws14_c00306{word-spacing:5.772800pt;}
.ws21_c00306{word-spacing:7.686400pt;}
.wsc_c00306{word-spacing:9.619200pt;}
.ws1d_c00306{word-spacing:15.718400pt;}
.ws1c_c00306{word-spacing:15.731200pt;}
.ws18_c00306{word-spacing:21.088000pt;}
.ws19_c00306{word-spacing:21.158400pt;}
._0_c00306{margin-left:-1.175680pt;}
._1_c00306{width:1.331200pt;}
.fs6_c00306{font-size:34.560000pt;}
.fs3_c00306{font-size:37.440000pt;}
.fs5_c00306{font-size:42.560000pt;}
.fs1_c00306{font-size:48.000000pt;}
.fs0_c00306{font-size:53.440000pt;}
.fs2_c00306{font-size:64.000000pt;}
.fs4_c00306{font-size:69.440000pt;}
.y0_c00306{bottom:0.000000pt;}
.y3_c00306{bottom:51.067067pt;}
.y22_c00306{bottom:101.068667pt;}
.y21_c00306{bottom:117.390427pt;}
.y20_c00306{bottom:133.629440pt;}
.y1f_c00306{bottom:149.866080pt;}
.y1e_c00306{bottom:162.190427pt;}
.y1d_c00306{bottom:178.427067pt;}
.y1c_c00306{bottom:191.947067pt;}
.y1b_c00306{bottom:210.347067pt;}
.y1a_c00306{bottom:228.747200pt;}
.y19_c00306{bottom:286.667067pt;}
.y18_c00306{bottom:317.307067pt;}
.y17_c00306{bottom:363.867067pt;}
.y16_c00306{bottom:394.507067pt;}
.y15_c00306{bottom:433.067067pt;}
.y14_c00306{bottom:463.707067pt;}
.y13_c00306{bottom:502.267067pt;}
.y12_c00306{bottom:540.907067pt;}
.y11_c00306{bottom:571.467067pt;}
.y10_c00306{bottom:610.107067pt;}
.yf_c00306{bottom:640.667067pt;}
.ye_c00306{bottom:671.307067pt;}
.yd_c00306{bottom:701.867067pt;}
.yc_c00306{bottom:740.507067pt;}
.yb_c00306{bottom:771.067067pt;}
.ya_c00306{bottom:801.707067pt;}
.y9_c00306{bottom:832.267067pt;}
.y8_c00306{bottom:872.274747pt;}
.y7_c00306{bottom:905.467067pt;}
.y6_c00306{bottom:953.147067pt;}
.y5_c00306{bottom:983.787067pt;}
.y4_c00306{bottom:1014.347067pt;}
.y2_c00306{bottom:1046.987067pt;}
.y1_c00306{bottom:1063.867067pt;}
.ha_c00306{height:42.656250pt;}
.hb_c00306{height:44.388750pt;}
.h1_c00306{height:44.724687pt;}
.h2_c00306{height:50.062500pt;}
.h4_c00306{height:53.562500pt;}
.h5_c00306{height:57.894062pt;}
.h8_c00306{height:57.894596pt;}
.h7_c00306{height:58.183125pt;}
.h3_c00306{height:64.142500pt;}
.h9_c00306{height:66.750000pt;}
.h6_c00306{height:72.423750pt;}
.h0_c00306{height:1122.666667pt;}
.w1_c00306{width:793.333333pt;}
.w0_c00306{width:793.626667pt;}
.x0_c00306{left:0.000000pt;}
.x1_c00306{left:113.440000pt;}
.x4_c00306{left:137.440000pt;}
.x2_c00306{left:160.720000pt;}
.x3_c00306{left:199.823360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1f5ab8a6197d63f1a8122a4.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00307;src:url('chunks/assets/font_45ad28910354e6e5c7e84d58.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00307;src:url('chunks/assets/font_5e0844c0a5ea05adc48477e7.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00307;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00307{font-family:ff5_c00307;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_c00307;src:url('chunks/assets/font_987ffbebe39331b456f0346b.woff2')format("woff");}.ff6_c00307{font-family:ff6_c00307;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00307;src:url('chunks/assets/font_9dd095e9e3cd5ad33493958a.woff2')format("woff");}.ff7_c00307{font-family:ff7_c00307;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_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.v1_c00307{vertical-align:29.880000px;}
.lsc_c00307{letter-spacing:-0.151200px;}
.ls11_c00307{letter-spacing:-0.070308px;}
.ls15_c00307{letter-spacing:-0.057600px;}
.ls10_c00307{letter-spacing:-0.039060px;}
.ls18_c00307{letter-spacing:-0.036000px;}
.ls16_c00307{letter-spacing:-0.031248px;}
.ls14_c00307{letter-spacing:-0.028800px;}
.ls12_c00307{letter-spacing:-0.021600px;}
.lsf_c00307{letter-spacing:-0.015624px;}
.lsd_c00307{letter-spacing:-0.014400px;}
.ls17_c00307{letter-spacing:-0.007812px;}
.ls1a_c00307{letter-spacing:-0.007776px;}
.lse_c00307{letter-spacing:-0.007200px;}
.lsb_c00307{letter-spacing:0.000000px;}
.lsa_c00307{letter-spacing:0.004788px;}
.ls2_c00307{letter-spacing:0.007200px;}
.ls7_c00307{letter-spacing:0.014364px;}
.ls3_c00307{letter-spacing:0.014400px;}
.ls8_c00307{letter-spacing:0.019152px;}
.ls4_c00307{letter-spacing:0.021600px;}
.ls0_c00307{letter-spacing:0.036072px;}
.ls9_c00307{letter-spacing:0.052668px;}
.ls6_c00307{letter-spacing:0.054756px;}
.ls19_c00307{letter-spacing:0.093600px;}
.ls13_c00307{letter-spacing:0.122400px;}
.ls5_c00307{letter-spacing:37.341360px;}
.ls1_c00307{letter-spacing:45.231480px;}
.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:-19.514376px;}
.ws1_c00307{word-spacing:-19.498752px;}
.ws3_c00307{word-spacing:-10.800864px;}
.ws2_c00307{word-spacing:-10.584756px;}
.ws4_c00307{word-spacing:-0.306612px;}
.ws1c_c00307{word-spacing:-0.132804px;}
.ws9_c00307{word-spacing:-0.054684px;}
.wsa_c00307{word-spacing:-0.023436px;}
.ws20_c00307{word-spacing:-0.021600px;}
.ws14_c00307{word-spacing:-0.014400px;}
.ws13_c00307{word-spacing:-0.007200px;}
.ws5_c00307{word-spacing:0.000000px;}
.ws16_c00307{word-spacing:0.007200px;}
.ws15_c00307{word-spacing:0.014400px;}
.ws1b_c00307{word-spacing:0.072000px;}
.ws8_c00307{word-spacing:0.122400px;}
.ws1a_c00307{word-spacing:0.136800px;}
.wse_c00307{word-spacing:1.029600px;}
.wsf_c00307{word-spacing:1.087200px;}
.ws1f_c00307{word-spacing:3.952800px;}
.wsd_c00307{word-spacing:3.981600px;}
.ws1e_c00307{word-spacing:3.996000px;}
.ws23_c00307{word-spacing:5.726448px;}
.ws22_c00307{word-spacing:5.759964px;}
.ws21_c00307{word-spacing:5.764752px;}
.ws24_c00307{word-spacing:5.774328px;}
.wsc_c00307{word-spacing:7.192800px;}
.wsb_c00307{word-spacing:7.200000px;}
.ws17_c00307{word-spacing:9.014400px;}
.ws18_c00307{word-spacing:9.093600px;}
.ws19_c00307{word-spacing:9.144000px;}
.ws1d_c00307{word-spacing:10.792800px;}
.ws12_c00307{word-spacing:10.864800px;}
.ws11_c00307{word-spacing:10.900800px;}
.ws10_c00307{word-spacing:11.188800px;}
.ws7_c00307{word-spacing:19.015200px;}
.ws6_c00307{word-spacing:19.094400px;}
._0_c00307{margin-left:-1.022040px;}
._1_c00307{width:1.080000px;}
.fc0_c00307{color:rgb(0,0,0);}
.fs6_c00307{font-size:38.880000px;}
.fs4_c00307{font-size:42.120000px;}
.fs5_c00307{font-size:47.880000px;}
.fs2_c00307{font-size:54.000000px;}
.fs0_c00307{font-size:60.120000px;}
.fs1_c00307{font-size:72.000000px;}
.fs3_c00307{font-size:78.120000px;}
.y0_c00307{bottom:0.000000px;}
.y3_c00307{bottom:57.450450px;}
.y4_c00307{bottom:61.410450px;}
.y1f_c00307{bottom:113.699190px;}
.y1e_c00307{bottom:127.560450px;}
.y1d_c00307{bottom:142.770450px;}
.y1c_c00307{bottom:163.470450px;}
.y1b_c00307{bottom:184.170450px;}
.y1a_c00307{bottom:277.500450px;}
.y19_c00307{bottom:311.970450px;}
.y18_c00307{bottom:346.350450px;}
.y17_c00307{bottom:391.350450px;}
.y16_c00307{bottom:445.080450px;}
.y15_c00307{bottom:479.460450px;}
.y14_c00307{bottom:522.930450px;}
.y13_c00307{bottom:566.310450px;}
.y12_c00307{bottom:609.780450px;}
.y11_c00307{bottom:653.160450px;}
.y10_c00307{bottom:696.630450px;}
.yf_c00307{bottom:740.010450px;}
.ye_c00307{bottom:783.480450px;}
.yd_c00307{bottom:826.860450px;}
.yc_c00307{bottom:870.330450px;}
.yb_c00307{bottom:904.710450px;}
.ya_c00307{bottom:939.180450px;}
.y9_c00307{bottom:973.560450px;}
.y8_c00307{bottom:1008.030450px;}
.y7_c00307{bottom:1053.030450px;}
.y6_c00307{bottom:1106.760450px;}
.y5_c00307{bottom:1141.140450px;}
.y2_c00307{bottom:1173.810450px;}
.y1_c00307{bottom:1196.850450px;}
.h2_c00307{height:47.988281px;}
.h8_c00307{height:49.937344px;}
.h1_c00307{height:50.315273px;}
.h3_c00307{height:56.320312px;}
.h4_c00307{height:60.257812px;}
.h6_c00307{height:60.890625px;}
.h7_c00307{height:65.130820px;}
.h5_c00307{height:81.476719px;}
.h0_c00307{height:1263.000000px;}
.w1_c00307{width:892.500000px;}
.w0_c00307{width:892.830000px;}
.x0_c00307{left:0.000000px;}
.x2_c00307{left:127.620000px;}
.x6_c00307{left:154.433340px;}
.x5_c00307{left:180.720000px;}
.x4_c00307{left:435.240000px;}
.x3_c00307{left:446.490000px;}
.x1_c00307{left:490.770000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.v1_c00307{vertical-align:26.560000pt;}
.lsc_c00307{letter-spacing:-0.134400pt;}
.ls11_c00307{letter-spacing:-0.062496pt;}
.ls15_c00307{letter-spacing:-0.051200pt;}
.ls10_c00307{letter-spacing:-0.034720pt;}
.ls18_c00307{letter-spacing:-0.032000pt;}
.ls16_c00307{letter-spacing:-0.027776pt;}
.ls14_c00307{letter-spacing:-0.025600pt;}
.ls12_c00307{letter-spacing:-0.019200pt;}
.lsf_c00307{letter-spacing:-0.013888pt;}
.lsd_c00307{letter-spacing:-0.012800pt;}
.ls17_c00307{letter-spacing:-0.006944pt;}
.ls1a_c00307{letter-spacing:-0.006912pt;}
.lse_c00307{letter-spacing:-0.006400pt;}
.lsb_c00307{letter-spacing:0.000000pt;}
.lsa_c00307{letter-spacing:0.004256pt;}
.ls2_c00307{letter-spacing:0.006400pt;}
.ls7_c00307{letter-spacing:0.012768pt;}
.ls3_c00307{letter-spacing:0.012800pt;}
.ls8_c00307{letter-spacing:0.017024pt;}
.ls4_c00307{letter-spacing:0.019200pt;}
.ls0_c00307{letter-spacing:0.032064pt;}
.ls9_c00307{letter-spacing:0.046816pt;}
.ls6_c00307{letter-spacing:0.048672pt;}
.ls19_c00307{letter-spacing:0.083200pt;}
.ls13_c00307{letter-spacing:0.108800pt;}
.ls5_c00307{letter-spacing:33.192320pt;}
.ls1_c00307{letter-spacing:40.205760pt;}
.ws0_c00307{word-spacing:-17.346112pt;}
.ws1_c00307{word-spacing:-17.332224pt;}
.ws3_c00307{word-spacing:-9.600768pt;}
.ws2_c00307{word-spacing:-9.408672pt;}
.ws4_c00307{word-spacing:-0.272544pt;}
.ws1c_c00307{word-spacing:-0.118048pt;}
.ws9_c00307{word-spacing:-0.048608pt;}
.wsa_c00307{word-spacing:-0.020832pt;}
.ws20_c00307{word-spacing:-0.019200pt;}
.ws14_c00307{word-spacing:-0.012800pt;}
.ws13_c00307{word-spacing:-0.006400pt;}
.ws5_c00307{word-spacing:0.000000pt;}
.ws16_c00307{word-spacing:0.006400pt;}
.ws15_c00307{word-spacing:0.012800pt;}
.ws1b_c00307{word-spacing:0.064000pt;}
.ws8_c00307{word-spacing:0.108800pt;}
.ws1a_c00307{word-spacing:0.121600pt;}
.wse_c00307{word-spacing:0.915200pt;}
.wsf_c00307{word-spacing:0.966400pt;}
.ws1f_c00307{word-spacing:3.513600pt;}
.wsd_c00307{word-spacing:3.539200pt;}
.ws1e_c00307{word-spacing:3.552000pt;}
.ws23_c00307{word-spacing:5.090176pt;}
.ws22_c00307{word-spacing:5.119968pt;}
.ws21_c00307{word-spacing:5.124224pt;}
.ws24_c00307{word-spacing:5.132736pt;}
.wsc_c00307{word-spacing:6.393600pt;}
.wsb_c00307{word-spacing:6.400000pt;}
.ws17_c00307{word-spacing:8.012800pt;}
.ws18_c00307{word-spacing:8.083200pt;}
.ws19_c00307{word-spacing:8.128000pt;}
.ws1d_c00307{word-spacing:9.593600pt;}
.ws12_c00307{word-spacing:9.657600pt;}
.ws11_c00307{word-spacing:9.689600pt;}
.ws10_c00307{word-spacing:9.945600pt;}
.ws7_c00307{word-spacing:16.902400pt;}
.ws6_c00307{word-spacing:16.972800pt;}
._0_c00307{margin-left:-0.908480pt;}
._1_c00307{width:0.960000pt;}
.fs6_c00307{font-size:34.560000pt;}
.fs4_c00307{font-size:37.440000pt;}
.fs5_c00307{font-size:42.560000pt;}
.fs2_c00307{font-size:48.000000pt;}
.fs0_c00307{font-size:53.440000pt;}
.fs1_c00307{font-size:64.000000pt;}
.fs3_c00307{font-size:69.440000pt;}
.y0_c00307{bottom:0.000000pt;}
.y3_c00307{bottom:51.067067pt;}
.y4_c00307{bottom:54.587067pt;}
.y1f_c00307{bottom:101.065947pt;}
.y1e_c00307{bottom:113.387067pt;}
.y1d_c00307{bottom:126.907067pt;}
.y1c_c00307{bottom:145.307067pt;}
.y1b_c00307{bottom:163.707067pt;}
.y1a_c00307{bottom:246.667067pt;}
.y19_c00307{bottom:277.307067pt;}
.y18_c00307{bottom:307.867067pt;}
.y17_c00307{bottom:347.867067pt;}
.y16_c00307{bottom:395.627067pt;}
.y15_c00307{bottom:426.187067pt;}
.y14_c00307{bottom:464.827067pt;}
.y13_c00307{bottom:503.387067pt;}
.y12_c00307{bottom:542.027067pt;}
.y11_c00307{bottom:580.587067pt;}
.y10_c00307{bottom:619.227067pt;}
.yf_c00307{bottom:657.787067pt;}
.ye_c00307{bottom:696.427067pt;}
.yd_c00307{bottom:734.987067pt;}
.yc_c00307{bottom:773.627067pt;}
.yb_c00307{bottom:804.187067pt;}
.ya_c00307{bottom:834.827067pt;}
.y9_c00307{bottom:865.387067pt;}
.y8_c00307{bottom:896.027067pt;}
.y7_c00307{bottom:936.027067pt;}
.y6_c00307{bottom:983.787067pt;}
.y5_c00307{bottom:1014.347067pt;}
.y2_c00307{bottom:1043.387067pt;}
.y1_c00307{bottom:1063.867067pt;}
.h2_c00307{height:42.656250pt;}
.h8_c00307{height:44.388750pt;}
.h1_c00307{height:44.724687pt;}
.h3_c00307{height:50.062500pt;}
.h4_c00307{height:53.562500pt;}
.h6_c00307{height:54.125000pt;}
.h7_c00307{height:57.894063pt;}
.h5_c00307{height:72.423750pt;}
.h0_c00307{height:1122.666667pt;}
.w1_c00307{width:793.333333pt;}
.w0_c00307{width:793.626667pt;}
.x0_c00307{left:0.000000pt;}
.x2_c00307{left:113.440000pt;}
.x6_c00307{left:137.274080pt;}
.x5_c00307{left:160.640000pt;}
.x4_c00307{left:386.880000pt;}
.x3_c00307{left:396.880000pt;}
.x1_c00307{left:436.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_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_b15cd8780cf5d985c8157ecf.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.100098;font-style:normal;font-weight:normal;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_1825456090139a15de46ba59.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;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_c00308;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;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_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;}
.v1_c00308{vertical-align:15.840000px;}
.v2_c00308{vertical-align:29.880000px;}
.ls16_c00308{letter-spacing:-0.151200px;}
.ls22_c00308{letter-spacing:-0.114228px;}
.ls1e_c00308{letter-spacing:-0.060120px;}
.ls23_c00308{letter-spacing:-0.054108px;}
.ls21_c00308{letter-spacing:-0.048096px;}
.ls18_c00308{letter-spacing:-0.036000px;}
.ls20_c00308{letter-spacing:-0.030060px;}
.ls17_c00308{letter-spacing:-0.028800px;}
.ls25_c00308{letter-spacing:-0.024048px;}
.ls1a_c00308{letter-spacing:-0.021600px;}
.ls19_c00308{letter-spacing:-0.014400px;}
.ls24_c00308{letter-spacing:-0.012024px;}
.ls1d_c00308{letter-spacing:-0.007200px;}
.ls1f_c00308{letter-spacing:-0.006012px;}
.ls26_c00308{letter-spacing:-0.003888px;}
.ls15_c00308{letter-spacing:0.000000px;}
.ls13_c00308{letter-spacing:0.004788px;}
.ls5_c00308{letter-spacing:0.007200px;}
.lsb_c00308{letter-spacing:0.012024px;}
.ls10_c00308{letter-spacing:0.014364px;}
.ls4_c00308{letter-spacing:0.014400px;}
.ls2_c00308{letter-spacing:0.021600px;}
.ls6_c00308{letter-spacing:0.024048px;}
.lsd_c00308{letter-spacing:0.030060px;}
.ls14_c00308{letter-spacing:0.033516px;}
.ls1c_c00308{letter-spacing:0.036000px;}
.ls7_c00308{letter-spacing:0.036072px;}
.ls12_c00308{letter-spacing:0.047880px;}
.ls0_c00308{letter-spacing:0.048096px;}
.lsc_c00308{letter-spacing:0.054108px;}
.ls3_c00308{letter-spacing:0.054756px;}
.ls9_c00308{letter-spacing:0.060120px;}
.lse_c00308{letter-spacing:0.066132px;}
.lsf_c00308{letter-spacing:0.072144px;}
.ls8_c00308{letter-spacing:0.084168px;}
.lsa_c00308{letter-spacing:0.090180px;}
.ls1b_c00308{letter-spacing:0.093600px;}
.ls11_c00308{letter-spacing:0.464040px;}
.ls1_c00308{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00308{word-spacing:-10.804752px;}
.ws0_c00308{word-spacing:-10.584756px;}
.ws3b_c00308{word-spacing:-0.324648px;}
.ws1e_c00308{word-spacing:-0.318636px;}
.wsc_c00308{word-spacing:-0.086400px;}
.ws45_c00308{word-spacing:-0.028728px;}
.ws47_c00308{word-spacing:-0.014364px;}
.ws48_c00308{word-spacing:-0.009576px;}
.ws3_c00308{word-spacing:0.000000px;}
.ws43_c00308{word-spacing:0.004788px;}
.ws25_c00308{word-spacing:0.006012px;}
.ws1b_c00308{word-spacing:0.007200px;}
.ws46_c00308{word-spacing:0.014364px;}
.wsb_c00308{word-spacing:0.014400px;}
.ws3f_c00308{word-spacing:0.018036px;}
.ws2_c00308{word-spacing:0.042084px;}
.ws40_c00308{word-spacing:0.060120px;}
.ws38_c00308{word-spacing:0.090180px;}
.wsa_c00308{word-spacing:0.100800px;}
.ws44_c00308{word-spacing:0.363888px;}
.ws3c_c00308{word-spacing:0.757512px;}
.ws23_c00308{word-spacing:0.775548px;}
.ws21_c00308{word-spacing:0.787572px;}
.ws22_c00308{word-spacing:0.811620px;}
.ws24_c00308{word-spacing:0.871740px;}
.ws31_c00308{word-spacing:1.118232px;}
.ws32_c00308{word-spacing:1.142280px;}
.ws8_c00308{word-spacing:1.461600px;}
.ws9_c00308{word-spacing:1.476000px;}
.ws20_c00308{word-spacing:2.200392px;}
.ws1f_c00308{word-spacing:2.248488px;}
.ws1d_c00308{word-spacing:2.491200px;}
.ws1c_c00308{word-spacing:2.520000px;}
.ws2e_c00308{word-spacing:2.543076px;}
.ws18_c00308{word-spacing:3.636000px;}
.ws3e_c00308{word-spacing:3.979944px;}
.ws3d_c00308{word-spacing:4.076136px;}
.ws28_c00308{word-spacing:4.412808px;}
.ws29_c00308{word-spacing:4.442868px;}
.ws2a_c00308{word-spacing:4.460904px;}
.ws15_c00308{word-spacing:4.708800px;}
.ws13_c00308{word-spacing:4.716000px;}
.ws14_c00308{word-spacing:4.831200px;}
.ws6_c00308{word-spacing:4.996800px;}
.ws7_c00308{word-spacing:5.076000px;}
.ws41_c00308{word-spacing:5.080140px;}
.ws42_c00308{word-spacing:5.116212px;}
.ws33_c00308{word-spacing:5.422824px;}
.ws39_c00308{word-spacing:5.476932px;}
.ws2c_c00308{word-spacing:5.759496px;}
.ws2d_c00308{word-spacing:5.789556px;}
.ws3a_c00308{word-spacing:5.861700px;}
.ws35_c00308{word-spacing:5.903784px;}
.ws34_c00308{word-spacing:5.963904px;}
.wsd_c00308{word-spacing:7.221600px;}
.ws26_c00308{word-spacing:7.587144px;}
.ws27_c00308{word-spacing:7.653276px;}
.wsf_c00308{word-spacing:7.884000px;}
.wse_c00308{word-spacing:7.905600px;}
.ws19_c00308{word-spacing:8.308800px;}
.ws16_c00308{word-spacing:8.632800px;}
.ws17_c00308{word-spacing:8.661600px;}
.ws30_c00308{word-spacing:9.426816px;}
.ws2f_c00308{word-spacing:9.438840px;}
.ws12_c00308{word-spacing:9.712800px;}
.ws11_c00308{word-spacing:9.784800px;}
.ws10_c00308{word-spacing:9.820800px;}
.ws2b_c00308{word-spacing:10.124208px;}
.ws37_c00308{word-spacing:10.160280px;}
.ws36_c00308{word-spacing:10.172304px;}
.ws4_c00308{word-spacing:13.291200px;}
.ws5_c00308{word-spacing:13.356000px;}
.ws1a_c00308{word-spacing:24.854400px;}
._0_c00308{margin-left:-1.322640px;}
._1_c00308{width:1.080000px;}
.fc0_c00308{color:rgb(0,0,0);}
.fs5_c00308{font-size:38.880000px;}
.fs3_c00308{font-size:42.120000px;}
.fs4_c00308{font-size:47.880000px;}
.fs1_c00308{font-size:54.000000px;}
.fs0_c00308{font-size:60.120000px;}
.fs2_c00308{font-size:72.000000px;}
.y0_c00308{bottom:0.000000px;}
.y3_c00308{bottom:57.450450px;}
.y2d_c00308{bottom:113.702250px;}
.y2c_c00308{bottom:132.064230px;}
.y2b_c00308{bottom:150.330450px;}
.y2a_c00308{bottom:165.540450px;}
.y29_c00308{bottom:186.240450px;}
.y28_c00308{bottom:206.940450px;}
.y27_c00308{bottom:244.840710px;}
.y26_c00308{bottom:261.674310px;}
.y25_c00308{bottom:278.598090px;}
.y24_c00308{bottom:295.431690px;}
.y23_c00308{bottom:321.358440px;}
.y22_c00308{bottom:338.192040px;}
.y21_c00308{bottom:355.115820px;}
.y20_c00308{bottom:371.949420px;}
.y1f_c00308{bottom:388.873200px;}
.y1e_c00308{bottom:405.706800px;}
.y1d_c00308{bottom:422.630580px;}
.y1c_c00308{bottom:439.464180px;}
.y1b_c00308{bottom:456.387960px;}
.y1a_c00308{bottom:473.221560px;}
.y19_c00308{bottom:490.145340px;}
.y18_c00308{bottom:506.978940px;}
.y17_c00308{bottom:523.902720px;}
.y16_c00308{bottom:540.736320px;}
.y15_c00308{bottom:557.660100px;}
.y14_c00308{bottom:574.493700px;}
.y13_c00308{bottom:600.420450px;}
.y12_c00308{bottom:641.190450px;}
.y11_c00308{bottom:675.660450px;}
.y10_c00308{bottom:719.040450px;}
.yf_c00308{bottom:753.510450px;}
.ye_c00308{bottom:787.890450px;}
.yd_c00308{bottom:822.360450px;}
.yc_c00308{bottom:856.740450px;}
.yb_c00308{bottom:891.210450px;}
.ya_c00308{bottom:925.590450px;}
.y9_c00308{bottom:960.060450px;}
.y8_c00308{bottom:994.440450px;}
.y7_c00308{bottom:1037.910450px;}
.y6_c00308{bottom:1072.290450px;}
.y5_c00308{bottom:1106.760450px;}
.y4_c00308{bottom:1141.140450px;}
.y2_c00308{bottom:1177.860450px;}
.y1_c00308{bottom:1196.850450px;}
.h6_c00308{height:47.988281px;}
.h7_c00308{height:49.937344px;}
.h1_c00308{height:50.315273px;}
.h2_c00308{height:56.320312px;}
.h4_c00308{height:60.257812px;}
.h5_c00308{height:65.130820px;}
.h3_c00308{height:72.160312px;}
.h0_c00308{height:1263.000000px;}
.w1_c00308{width:892.500000px;}
.w0_c00308{width:892.830000px;}
.x0_c00308{left:0.000000px;}
.x1_c00308{left:127.620000px;}
.x3_c00308{left:154.620000px;}
.x2_c00308{left:180.720000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.v1_c00308{vertical-align:14.080000pt;}
.v2_c00308{vertical-align:26.560000pt;}
.ls16_c00308{letter-spacing:-0.134400pt;}
.ls22_c00308{letter-spacing:-0.101536pt;}
.ls1e_c00308{letter-spacing:-0.053440pt;}
.ls23_c00308{letter-spacing:-0.048096pt;}
.ls21_c00308{letter-spacing:-0.042752pt;}
.ls18_c00308{letter-spacing:-0.032000pt;}
.ls20_c00308{letter-spacing:-0.026720pt;}
.ls17_c00308{letter-spacing:-0.025600pt;}
.ls25_c00308{letter-spacing:-0.021376pt;}
.ls1a_c00308{letter-spacing:-0.019200pt;}
.ls19_c00308{letter-spacing:-0.012800pt;}
.ls24_c00308{letter-spacing:-0.010688pt;}
.ls1d_c00308{letter-spacing:-0.006400pt;}
.ls1f_c00308{letter-spacing:-0.005344pt;}
.ls26_c00308{letter-spacing:-0.003456pt;}
.ls15_c00308{letter-spacing:0.000000pt;}
.ls13_c00308{letter-spacing:0.004256pt;}
.ls5_c00308{letter-spacing:0.006400pt;}
.lsb_c00308{letter-spacing:0.010688pt;}
.ls10_c00308{letter-spacing:0.012768pt;}
.ls4_c00308{letter-spacing:0.012800pt;}
.ls2_c00308{letter-spacing:0.019200pt;}
.ls6_c00308{letter-spacing:0.021376pt;}
.lsd_c00308{letter-spacing:0.026720pt;}
.ls14_c00308{letter-spacing:0.029792pt;}
.ls1c_c00308{letter-spacing:0.032000pt;}
.ls7_c00308{letter-spacing:0.032064pt;}
.ls12_c00308{letter-spacing:0.042560pt;}
.ls0_c00308{letter-spacing:0.042752pt;}
.lsc_c00308{letter-spacing:0.048096pt;}
.ls3_c00308{letter-spacing:0.048672pt;}
.ls9_c00308{letter-spacing:0.053440pt;}
.lse_c00308{letter-spacing:0.058784pt;}
.lsf_c00308{letter-spacing:0.064128pt;}
.ls8_c00308{letter-spacing:0.074816pt;}
.lsa_c00308{letter-spacing:0.080160pt;}
.ls1b_c00308{letter-spacing:0.083200pt;}
.ls11_c00308{letter-spacing:0.412480pt;}
.ls1_c00308{letter-spacing:1077.440000pt;}
.ws1_c00308{word-spacing:-9.604224pt;}
.ws0_c00308{word-spacing:-9.408672pt;}
.ws3b_c00308{word-spacing:-0.288576pt;}
.ws1e_c00308{word-spacing:-0.283232pt;}
.wsc_c00308{word-spacing:-0.076800pt;}
.ws45_c00308{word-spacing:-0.025536pt;}
.ws47_c00308{word-spacing:-0.012768pt;}
.ws48_c00308{word-spacing:-0.008512pt;}
.ws3_c00308{word-spacing:0.000000pt;}
.ws43_c00308{word-spacing:0.004256pt;}
.ws25_c00308{word-spacing:0.005344pt;}
.ws1b_c00308{word-spacing:0.006400pt;}
.ws46_c00308{word-spacing:0.012768pt;}
.wsb_c00308{word-spacing:0.012800pt;}
.ws3f_c00308{word-spacing:0.016032pt;}
.ws2_c00308{word-spacing:0.037408pt;}
.ws40_c00308{word-spacing:0.053440pt;}
.ws38_c00308{word-spacing:0.080160pt;}
.wsa_c00308{word-spacing:0.089600pt;}
.ws44_c00308{word-spacing:0.323456pt;}
.ws3c_c00308{word-spacing:0.673344pt;}
.ws23_c00308{word-spacing:0.689376pt;}
.ws21_c00308{word-spacing:0.700064pt;}
.ws22_c00308{word-spacing:0.721440pt;}
.ws24_c00308{word-spacing:0.774880pt;}
.ws31_c00308{word-spacing:0.993984pt;}
.ws32_c00308{word-spacing:1.015360pt;}
.ws8_c00308{word-spacing:1.299200pt;}
.ws9_c00308{word-spacing:1.312000pt;}
.ws20_c00308{word-spacing:1.955904pt;}
.ws1f_c00308{word-spacing:1.998656pt;}
.ws1d_c00308{word-spacing:2.214400pt;}
.ws1c_c00308{word-spacing:2.240000pt;}
.ws2e_c00308{word-spacing:2.260512pt;}
.ws18_c00308{word-spacing:3.232000pt;}
.ws3e_c00308{word-spacing:3.537728pt;}
.ws3d_c00308{word-spacing:3.623232pt;}
.ws28_c00308{word-spacing:3.922496pt;}
.ws29_c00308{word-spacing:3.949216pt;}
.ws2a_c00308{word-spacing:3.965248pt;}
.ws15_c00308{word-spacing:4.185600pt;}
.ws13_c00308{word-spacing:4.192000pt;}
.ws14_c00308{word-spacing:4.294400pt;}
.ws6_c00308{word-spacing:4.441600pt;}
.ws7_c00308{word-spacing:4.512000pt;}
.ws41_c00308{word-spacing:4.515680pt;}
.ws42_c00308{word-spacing:4.547744pt;}
.ws33_c00308{word-spacing:4.820288pt;}
.ws39_c00308{word-spacing:4.868384pt;}
.ws2c_c00308{word-spacing:5.119552pt;}
.ws2d_c00308{word-spacing:5.146272pt;}
.ws3a_c00308{word-spacing:5.210400pt;}
.ws35_c00308{word-spacing:5.247808pt;}
.ws34_c00308{word-spacing:5.301248pt;}
.wsd_c00308{word-spacing:6.419200pt;}
.ws26_c00308{word-spacing:6.744128pt;}
.ws27_c00308{word-spacing:6.802912pt;}
.wsf_c00308{word-spacing:7.008000pt;}
.wse_c00308{word-spacing:7.027200pt;}
.ws19_c00308{word-spacing:7.385600pt;}
.ws16_c00308{word-spacing:7.673600pt;}
.ws17_c00308{word-spacing:7.699200pt;}
.ws30_c00308{word-spacing:8.379392pt;}
.ws2f_c00308{word-spacing:8.390080pt;}
.ws12_c00308{word-spacing:8.633600pt;}
.ws11_c00308{word-spacing:8.697600pt;}
.ws10_c00308{word-spacing:8.729600pt;}
.ws2b_c00308{word-spacing:8.999296pt;}
.ws37_c00308{word-spacing:9.031360pt;}
.ws36_c00308{word-spacing:9.042048pt;}
.ws4_c00308{word-spacing:11.814400pt;}
.ws5_c00308{word-spacing:11.872000pt;}
.ws1a_c00308{word-spacing:22.092800pt;}
._0_c00308{margin-left:-1.175680pt;}
._1_c00308{width:0.960000pt;}
.fs5_c00308{font-size:34.560000pt;}
.fs3_c00308{font-size:37.440000pt;}
.fs4_c00308{font-size:42.560000pt;}
.fs1_c00308{font-size:48.000000pt;}
.fs0_c00308{font-size:53.440000pt;}
.fs2_c00308{font-size:64.000000pt;}
.y0_c00308{bottom:0.000000pt;}
.y3_c00308{bottom:51.067067pt;}
.y2d_c00308{bottom:101.068667pt;}
.y2c_c00308{bottom:117.390427pt;}
.y2b_c00308{bottom:133.627067pt;}
.y2a_c00308{bottom:147.147067pt;}
.y29_c00308{bottom:165.547067pt;}
.y28_c00308{bottom:183.947067pt;}
.y27_c00308{bottom:217.636187pt;}
.y26_c00308{bottom:232.599387pt;}
.y25_c00308{bottom:247.642747pt;}
.y24_c00308{bottom:262.605947pt;}
.y23_c00308{bottom:285.651947pt;}
.y22_c00308{bottom:300.615147pt;}
.y21_c00308{bottom:315.658507pt;}
.y20_c00308{bottom:330.621707pt;}
.y1f_c00308{bottom:345.665067pt;}
.y1e_c00308{bottom:360.628267pt;}
.y1d_c00308{bottom:375.671627pt;}
.y1c_c00308{bottom:390.634827pt;}
.y1b_c00308{bottom:405.678187pt;}
.y1a_c00308{bottom:420.641387pt;}
.y19_c00308{bottom:435.684747pt;}
.y18_c00308{bottom:450.647947pt;}
.y17_c00308{bottom:465.691307pt;}
.y16_c00308{bottom:480.654507pt;}
.y15_c00308{bottom:495.697867pt;}
.y14_c00308{bottom:510.661067pt;}
.y13_c00308{bottom:533.707067pt;}
.y12_c00308{bottom:569.947067pt;}
.y11_c00308{bottom:600.587067pt;}
.y10_c00308{bottom:639.147067pt;}
.yf_c00308{bottom:669.787067pt;}
.ye_c00308{bottom:700.347067pt;}
.yd_c00308{bottom:730.987067pt;}
.yc_c00308{bottom:761.547067pt;}
.yb_c00308{bottom:792.187067pt;}
.ya_c00308{bottom:822.747067pt;}
.y9_c00308{bottom:853.387067pt;}
.y8_c00308{bottom:883.947067pt;}
.y7_c00308{bottom:922.587067pt;}
.y6_c00308{bottom:953.147067pt;}
.y5_c00308{bottom:983.787067pt;}
.y4_c00308{bottom:1014.347067pt;}
.y2_c00308{bottom:1046.987067pt;}
.y1_c00308{bottom:1063.867067pt;}
.h6_c00308{height:42.656250pt;}
.h7_c00308{height:44.388750pt;}
.h1_c00308{height:44.724687pt;}
.h2_c00308{height:50.062500pt;}
.h4_c00308{height:53.562500pt;}
.h5_c00308{height:57.894063pt;}
.h3_c00308{height:64.142500pt;}
.h0_c00308{height:1122.666667pt;}
.w1_c00308{width:793.333333pt;}
.w0_c00308{width:793.626667pt;}
.x0_c00308{left:0.000000pt;}
.x1_c00308{left:113.440000pt;}
.x3_c00308{left:137.440000pt;}
.x2_c00308{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_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_6a4adda71735725080dcf1ac.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00309;src:url('chunks/assets/font_a3abeb9ba48ce1eefb9c8d9a.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00309;src:url('chunks/assets/font_7ffd006a2588593aa4742be3.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00309;src:url('chunks/assets/font_257212da52de21e0eae744b0.woff2')format("woff");}.ff5_c00309{font-family:ff5_c00309;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00309;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00309{font-family:ff6_c00309;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00309;src:url('chunks/assets/font_b4e165f04784b4f77c3979b3.woff2')format("woff");}.ff7_c00309{font-family:ff7_c00309;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_c00309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.v1_c00309{vertical-align:15.134400px;}
.v2_c00309{vertical-align:29.880000px;}
.ls13_c00309{letter-spacing:-0.151200px;}
.ls18_c00309{letter-spacing:-0.086400px;}
.ls17_c00309{letter-spacing:-0.036000px;}
.ls1c_c00309{letter-spacing:-0.028800px;}
.ls1b_c00309{letter-spacing:-0.021600px;}
.ls14_c00309{letter-spacing:-0.018036px;}
.ls1a_c00309{letter-spacing:-0.015624px;}
.ls16_c00309{letter-spacing:-0.014400px;}
.ls1e_c00309{letter-spacing:-0.011664px;}
.ls15_c00309{letter-spacing:-0.007200px;}
.ls1d_c00309{letter-spacing:-0.003888px;}
.ls12_c00309{letter-spacing:0.000000px;}
.ls10_c00309{letter-spacing:0.004788px;}
.ls1_c00309{letter-spacing:0.006012px;}
.ls6_c00309{letter-spacing:0.007200px;}
.lsd_c00309{letter-spacing:0.014364px;}
.ls5_c00309{letter-spacing:0.014400px;}
.ls11_c00309{letter-spacing:0.028728px;}
.lsc_c00309{letter-spacing:0.033516px;}
.ls0_c00309{letter-spacing:0.036072px;}
.ls7_c00309{letter-spacing:0.043200px;}
.lsf_c00309{letter-spacing:0.047880px;}
.ls4_c00309{letter-spacing:0.054756px;}
.ls19_c00309{letter-spacing:0.093600px;}
.ls2_c00309{letter-spacing:0.136080px;}
.lsa_c00309{letter-spacing:0.144000px;}
.ls3_c00309{letter-spacing:0.153720px;}
.ls8_c00309{letter-spacing:0.216000px;}
.lse_c00309{letter-spacing:0.464040px;}
.ls9_c00309{letter-spacing:31.560480px;}
.lsb_c00309{letter-spacing:65.304000px;}
.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;}
}
.ws3_c00309{word-spacing:-19.514376px;}
.ws2_c00309{word-spacing:-17.913600px;}
.ws4_c00309{word-spacing:-10.804752px;}
.ws1_c00309{word-spacing:-10.584756px;}
.ws0_c00309{word-spacing:-9.856080px;}
.ws5_c00309{word-spacing:-0.306612px;}
.ws21_c00309{word-spacing:-0.086400px;}
.ws16_c00309{word-spacing:-0.078120px;}
.ws2c_c00309{word-spacing:-0.028728px;}
.ws1c_c00309{word-spacing:-0.014400px;}
.ws29_c00309{word-spacing:-0.014364px;}
.ws2f_c00309{word-spacing:-0.009576px;}
.ws6_c00309{word-spacing:0.000000px;}
.ws2a_c00309{word-spacing:0.004788px;}
.ws20_c00309{word-spacing:0.007200px;}
.ws2d_c00309{word-spacing:0.014364px;}
.ws26_c00309{word-spacing:0.014400px;}
.ws2e_c00309{word-spacing:0.019152px;}
.ws8_c00309{word-spacing:0.108216px;}
.ws2b_c00309{word-spacing:0.363888px;}
.ws17_c00309{word-spacing:1.087200px;}
.ws18_c00309{word-spacing:1.116000px;}
.ws27_c00309{word-spacing:2.188800px;}
.ws13_c00309{word-spacing:2.880000px;}
.ws12_c00309{word-spacing:2.937600px;}
.ws11_c00309{word-spacing:3.535200px;}
.ws22_c00309{word-spacing:3.600000px;}
.ws10_c00309{word-spacing:3.614400px;}
.ws7_c00309{word-spacing:3.685356px;}
.wsa_c00309{word-spacing:3.902400px;}
.wsb_c00309{word-spacing:3.931200px;}
.ws19_c00309{word-spacing:4.312800px;}
.ws1a_c00309{word-spacing:4.384800px;}
.ws25_c00309{word-spacing:5.760000px;}
.ws9_c00309{word-spacing:9.007200px;}
.ws1f_c00309{word-spacing:9.734400px;}
.ws1b_c00309{word-spacing:12.621600px;}
.wsf_c00309{word-spacing:13.672800px;}
.wse_c00309{word-spacing:13.716000px;}
.ws24_c00309{word-spacing:15.120000px;}
.ws23_c00309{word-spacing:15.213600px;}
.ws1d_c00309{word-spacing:15.796800px;}
.ws1e_c00309{word-spacing:15.861600px;}
.ws15_c00309{word-spacing:22.636800px;}
.ws14_c00309{word-spacing:22.687200px;}
.ws28_c00309{word-spacing:27.360000px;}
.wsd_c00309{word-spacing:28.785600px;}
.wsc_c00309{word-spacing:28.879200px;}
._0_c00309{margin-left:-1.022040px;}
._1_c00309{width:1.296000px;}
.fc0_c00309{color:rgb(0,0,0);}
.fs3_c00309{font-size:38.880000px;}
.fs4_c00309{font-size:42.120000px;}
.fs6_c00309{font-size:47.880000px;}
.fs2_c00309{font-size:54.000000px;}
.fs0_c00309{font-size:60.120000px;}
.fs1_c00309{font-size:72.000000px;}
.fs5_c00309{font-size:78.120000px;}
.y0_c00309{bottom:0.000000px;}
.y3_c00309{bottom:57.450450px;}
.y4_c00309{bottom:61.410450px;}
.y25_c00309{bottom:113.698470px;}
.y24_c00309{bottom:132.064230px;}
.y23_c00309{bottom:150.332400px;}
.y22_c00309{bottom:168.598620px;}
.y21_c00309{bottom:186.960600px;}
.y20_c00309{bottom:202.170450px;}
.y1f_c00309{bottom:222.870450px;}
.y1e_c00309{bottom:243.570450px;}
.y1d_c00309{bottom:266.160450px;}
.y1c_c00309{bottom:300.630450px;}
.y1b_c00309{bottom:344.010600px;}
.y1a_c00309{bottom:378.480600px;}
.y19_c00309{bottom:412.860600px;}
.y18_c00309{bottom:447.330600px;}
.y17_c00309{bottom:490.710450px;}
.y16_c00309{bottom:525.180450px;}
.y15_c00309{bottom:559.560450px;}
.y14_c00309{bottom:603.030450px;}
.y13_c00309{bottom:637.410450px;}
.y12_c00309{bottom:671.880450px;}
.y11_c00309{bottom:706.260450px;}
.y10_c00309{bottom:751.350450px;}
.yf_c00309{bottom:804.990450px;}
.ye_c00309{bottom:839.460450px;}
.yd_c00309{bottom:873.840450px;}
.yc_c00309{bottom:908.310450px;}
.yb_c00309{bottom:951.690450px;}
.ya_c00309{bottom:986.160450px;}
.y9_c00309{bottom:1020.540450px;}
.y8_c00309{bottom:1055.010450px;}
.y7_c00309{bottom:1089.390450px;}
.y6_c00309{bottom:1126.916850px;}
.y5_c00309{bottom:1143.750450px;}
.y2_c00309{bottom:1173.810450px;}
.y1_c00309{bottom:1196.850450px;}
.h2_c00309{height:47.988281px;}
.hc_c00309{height:49.937344px;}
.hd_c00309{height:49.945264px;}
.h1_c00309{height:50.315273px;}
.h3_c00309{height:56.320312px;}
.h5_c00309{height:60.257812px;}
.h4_c00309{height:60.272213px;}
.h7_c00309{height:60.890625px;}
.hb_c00309{height:65.130220px;}
.h6_c00309{height:65.130820px;}
.ha_c00309{height:65.131420px;}
.h9_c00309{height:75.093750px;}
.h8_c00309{height:81.476719px;}
.h0_c00309{height:1263.000000px;}
.w1_c00309{width:892.500000px;}
.w0_c00309{width:892.830000px;}
.x0_c00309{left:0.000000px;}
.x2_c00309{left:127.620000px;}
.x6_c00309{left:154.620000px;}
.x5_c00309{left:180.810000px;}
.x7_c00309{left:207.810000px;}
.x4_c00309{left:435.240000px;}
.x3_c00309{left:446.490000px;}
.x1_c00309{left:490.770000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.v1_c00309{vertical-align:13.452800pt;}
.v2_c00309{vertical-align:26.560000pt;}
.ls13_c00309{letter-spacing:-0.134400pt;}
.ls18_c00309{letter-spacing:-0.076800pt;}
.ls17_c00309{letter-spacing:-0.032000pt;}
.ls1c_c00309{letter-spacing:-0.025600pt;}
.ls1b_c00309{letter-spacing:-0.019200pt;}
.ls14_c00309{letter-spacing:-0.016032pt;}
.ls1a_c00309{letter-spacing:-0.013888pt;}
.ls16_c00309{letter-spacing:-0.012800pt;}
.ls1e_c00309{letter-spacing:-0.010368pt;}
.ls15_c00309{letter-spacing:-0.006400pt;}
.ls1d_c00309{letter-spacing:-0.003456pt;}
.ls12_c00309{letter-spacing:0.000000pt;}
.ls10_c00309{letter-spacing:0.004256pt;}
.ls1_c00309{letter-spacing:0.005344pt;}
.ls6_c00309{letter-spacing:0.006400pt;}
.lsd_c00309{letter-spacing:0.012768pt;}
.ls5_c00309{letter-spacing:0.012800pt;}
.ls11_c00309{letter-spacing:0.025536pt;}
.lsc_c00309{letter-spacing:0.029792pt;}
.ls0_c00309{letter-spacing:0.032064pt;}
.ls7_c00309{letter-spacing:0.038400pt;}
.lsf_c00309{letter-spacing:0.042560pt;}
.ls4_c00309{letter-spacing:0.048672pt;}
.ls19_c00309{letter-spacing:0.083200pt;}
.ls2_c00309{letter-spacing:0.120960pt;}
.lsa_c00309{letter-spacing:0.128000pt;}
.ls3_c00309{letter-spacing:0.136640pt;}
.ls8_c00309{letter-spacing:0.192000pt;}
.lse_c00309{letter-spacing:0.412480pt;}
.ls9_c00309{letter-spacing:28.053760pt;}
.lsb_c00309{letter-spacing:58.048000pt;}
.ws3_c00309{word-spacing:-17.346112pt;}
.ws2_c00309{word-spacing:-15.923200pt;}
.ws4_c00309{word-spacing:-9.604224pt;}
.ws1_c00309{word-spacing:-9.408672pt;}
.ws0_c00309{word-spacing:-8.760960pt;}
.ws5_c00309{word-spacing:-0.272544pt;}
.ws21_c00309{word-spacing:-0.076800pt;}
.ws16_c00309{word-spacing:-0.069440pt;}
.ws2c_c00309{word-spacing:-0.025536pt;}
.ws1c_c00309{word-spacing:-0.012800pt;}
.ws29_c00309{word-spacing:-0.012768pt;}
.ws2f_c00309{word-spacing:-0.008512pt;}
.ws6_c00309{word-spacing:0.000000pt;}
.ws2a_c00309{word-spacing:0.004256pt;}
.ws20_c00309{word-spacing:0.006400pt;}
.ws2d_c00309{word-spacing:0.012768pt;}
.ws26_c00309{word-spacing:0.012800pt;}
.ws2e_c00309{word-spacing:0.017024pt;}
.ws8_c00309{word-spacing:0.096192pt;}
.ws2b_c00309{word-spacing:0.323456pt;}
.ws17_c00309{word-spacing:0.966400pt;}
.ws18_c00309{word-spacing:0.992000pt;}
.ws27_c00309{word-spacing:1.945600pt;}
.ws13_c00309{word-spacing:2.560000pt;}
.ws12_c00309{word-spacing:2.611200pt;}
.ws11_c00309{word-spacing:3.142400pt;}
.ws22_c00309{word-spacing:3.200000pt;}
.ws10_c00309{word-spacing:3.212800pt;}
.ws7_c00309{word-spacing:3.275872pt;}
.wsa_c00309{word-spacing:3.468800pt;}
.wsb_c00309{word-spacing:3.494400pt;}
.ws19_c00309{word-spacing:3.833600pt;}
.ws1a_c00309{word-spacing:3.897600pt;}
.ws25_c00309{word-spacing:5.120000pt;}
.ws9_c00309{word-spacing:8.006400pt;}
.ws1f_c00309{word-spacing:8.652800pt;}
.ws1b_c00309{word-spacing:11.219200pt;}
.wsf_c00309{word-spacing:12.153600pt;}
.wse_c00309{word-spacing:12.192000pt;}
.ws24_c00309{word-spacing:13.440000pt;}
.ws23_c00309{word-spacing:13.523200pt;}
.ws1d_c00309{word-spacing:14.041600pt;}
.ws1e_c00309{word-spacing:14.099200pt;}
.ws15_c00309{word-spacing:20.121600pt;}
.ws14_c00309{word-spacing:20.166400pt;}
.ws28_c00309{word-spacing:24.320000pt;}
.wsd_c00309{word-spacing:25.587200pt;}
.wsc_c00309{word-spacing:25.670400pt;}
._0_c00309{margin-left:-0.908480pt;}
._1_c00309{width:1.152000pt;}
.fs3_c00309{font-size:34.560000pt;}
.fs4_c00309{font-size:37.440000pt;}
.fs6_c00309{font-size:42.560000pt;}
.fs2_c00309{font-size:48.000000pt;}
.fs0_c00309{font-size:53.440000pt;}
.fs1_c00309{font-size:64.000000pt;}
.fs5_c00309{font-size:69.440000pt;}
.y0_c00309{bottom:0.000000pt;}
.y3_c00309{bottom:51.067067pt;}
.y4_c00309{bottom:54.587067pt;}
.y25_c00309{bottom:101.065307pt;}
.y24_c00309{bottom:117.390427pt;}
.y23_c00309{bottom:133.628800pt;}
.y22_c00309{bottom:149.865440pt;}
.y21_c00309{bottom:166.187200pt;}
.y20_c00309{bottom:179.707067pt;}
.y1f_c00309{bottom:198.107067pt;}
.y1e_c00309{bottom:216.507067pt;}
.y1d_c00309{bottom:236.587067pt;}
.y1c_c00309{bottom:267.227067pt;}
.y1b_c00309{bottom:305.787200pt;}
.y1a_c00309{bottom:336.427200pt;}
.y19_c00309{bottom:366.987200pt;}
.y18_c00309{bottom:397.627200pt;}
.y17_c00309{bottom:436.187067pt;}
.y16_c00309{bottom:466.827067pt;}
.y15_c00309{bottom:497.387067pt;}
.y14_c00309{bottom:536.027067pt;}
.y13_c00309{bottom:566.587067pt;}
.y12_c00309{bottom:597.227067pt;}
.y11_c00309{bottom:627.787067pt;}
.y10_c00309{bottom:667.867067pt;}
.yf_c00309{bottom:715.547067pt;}
.ye_c00309{bottom:746.187067pt;}
.yd_c00309{bottom:776.747067pt;}
.yc_c00309{bottom:807.387067pt;}
.yb_c00309{bottom:845.947067pt;}
.ya_c00309{bottom:876.587067pt;}
.y9_c00309{bottom:907.147067pt;}
.y8_c00309{bottom:937.787067pt;}
.y7_c00309{bottom:968.347067pt;}
.y6_c00309{bottom:1001.703867pt;}
.y5_c00309{bottom:1016.667067pt;}
.y2_c00309{bottom:1043.387067pt;}
.y1_c00309{bottom:1063.867067pt;}
.h2_c00309{height:42.656250pt;}
.hc_c00309{height:44.388750pt;}
.hd_c00309{height:44.395790pt;}
.h1_c00309{height:44.724687pt;}
.h3_c00309{height:50.062500pt;}
.h5_c00309{height:53.562500pt;}
.h4_c00309{height:53.575300pt;}
.h7_c00309{height:54.125000pt;}
.hb_c00309{height:57.893529pt;}
.h6_c00309{height:57.894062pt;}
.ha_c00309{height:57.894596pt;}
.h9_c00309{height:66.750000pt;}
.h8_c00309{height:72.423750pt;}
.h0_c00309{height:1122.666667pt;}
.w1_c00309{width:793.333333pt;}
.w0_c00309{width:793.626667pt;}
.x0_c00309{left:0.000000pt;}
.x2_c00309{left:113.440000pt;}
.x6_c00309{left:137.440000pt;}
.x5_c00309{left:160.720000pt;}
.x7_c00309{left:184.720000pt;}
.x4_c00309{left:386.880000pt;}
.x3_c00309{left:396.880000pt;}
.x1_c00309{left:436.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_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_bae76375cf699efe5562554d.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.100098;font-style:normal;font-weight:normal;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_8a12d76c0e16e021227d0453.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;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_c00310;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00310;src:url('chunks/assets/font_b4e165f04784b4f77c3979b3.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;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_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.v1_c00310{vertical-align:15.840000px;}
.v2_c00310{vertical-align:29.880000px;}
.ls16_c00310{letter-spacing:-0.266400px;}
.ls10_c00310{letter-spacing:-0.151200px;}
.ls13_c00310{letter-spacing:-0.036000px;}
.ls11_c00310{letter-spacing:-0.028800px;}
.ls14_c00310{letter-spacing:-0.021600px;}
.ls15_c00310{letter-spacing:-0.014400px;}
.ls18_c00310{letter-spacing:-0.011664px;}
.ls17_c00310{letter-spacing:-0.007200px;}
.ls19_c00310{letter-spacing:-0.003888px;}
.lsf_c00310{letter-spacing:0.000000px;}
.ls5_c00310{letter-spacing:0.007200px;}
.lsc_c00310{letter-spacing:0.009576px;}
.ls9_c00310{letter-spacing:0.014364px;}
.ls7_c00310{letter-spacing:0.014400px;}
.ls6_c00310{letter-spacing:0.021600px;}
.lsb_c00310{letter-spacing:0.028728px;}
.ls8_c00310{letter-spacing:0.043200px;}
.lsd_c00310{letter-spacing:0.047880px;}
.ls0_c00310{letter-spacing:0.048096px;}
.ls2_c00310{letter-spacing:0.054756px;}
.lse_c00310{letter-spacing:0.062244px;}
.ls12_c00310{letter-spacing:0.093600px;}
.ls3_c00310{letter-spacing:0.144000px;}
.lsa_c00310{letter-spacing:0.464040px;}
.ls4_c00310{letter-spacing:65.304000px;}
.ls1_c00310{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00310{word-spacing:-18.014400px;}
.ws0_c00310{word-spacing:-17.971200px;}
.ws4_c00310{word-spacing:-13.320216px;}
.ws5_c00310{word-spacing:-13.310640px;}
.ws6_c00310{word-spacing:-10.808640px;}
.ws3_c00310{word-spacing:-10.804752px;}
.ws1_c00310{word-spacing:-10.584756px;}
.wsa_c00310{word-spacing:-0.086400px;}
.ws30_c00310{word-spacing:-0.043092px;}
.ws2f_c00310{word-spacing:-0.028728px;}
.ws2d_c00310{word-spacing:-0.009576px;}
.ws8_c00310{word-spacing:0.000000px;}
.ws2b_c00310{word-spacing:0.004788px;}
.ws21_c00310{word-spacing:0.007200px;}
.ws11_c00310{word-spacing:0.014400px;}
.ws2c_c00310{word-spacing:0.019152px;}
.ws7_c00310{word-spacing:0.042084px;}
.wsd_c00310{word-spacing:0.050400px;}
.wse_c00310{word-spacing:0.072000px;}
.ws1d_c00310{word-spacing:0.266400px;}
.ws2e_c00310{word-spacing:0.363888px;}
.ws27_c00310{word-spacing:0.763200px;}
.ws2a_c00310{word-spacing:2.116800px;}
.ws28_c00310{word-spacing:2.145600px;}
.ws29_c00310{word-spacing:2.289600px;}
.ws17_c00310{word-spacing:6.206400px;}
.ws16_c00310{word-spacing:6.451200px;}
.ws26_c00310{word-spacing:7.927200px;}
.ws24_c00310{word-spacing:8.589600px;}
.ws25_c00310{word-spacing:8.668800px;}
.ws1c_c00310{word-spacing:9.374400px;}
.wsc_c00310{word-spacing:9.396000px;}
.wsb_c00310{word-spacing:9.403200px;}
.ws1e_c00310{word-spacing:11.858400px;}
.ws12_c00310{word-spacing:11.865600px;}
.ws13_c00310{word-spacing:11.952000px;}
.ws10_c00310{word-spacing:12.218400px;}
.wsf_c00310{word-spacing:12.276000px;}
.ws1a_c00310{word-spacing:12.945600px;}
.ws1b_c00310{word-spacing:12.952800px;}
.ws14_c00310{word-spacing:13.694400px;}
.ws15_c00310{word-spacing:13.708800px;}
.ws22_c00310{word-spacing:14.119200px;}
.ws23_c00310{word-spacing:14.241600px;}
.ws1f_c00310{word-spacing:14.378400px;}
.ws20_c00310{word-spacing:14.414400px;}
.ws18_c00310{word-spacing:16.898400px;}
.ws19_c00310{word-spacing:16.984800px;}
.ws9_c00310{word-spacing:22.384800px;}
._0_c00310{margin-left:-1.322640px;}
._1_c00310{width:1.008000px;}
._2_c00310{width:183.888000px;}
.fc0_c00310{color:rgb(0,0,0);}
.fs5_c00310{font-size:38.880000px;}
.fs3_c00310{font-size:42.120000px;}
.fs4_c00310{font-size:47.880000px;}
.fs1_c00310{font-size:54.000000px;}
.fs0_c00310{font-size:60.120000px;}
.fs2_c00310{font-size:72.000000px;}
.y0_c00310{bottom:0.000000px;}
.y3_c00310{bottom:57.450450px;}
.y22_c00310{bottom:113.698470px;}
.y21_c00310{bottom:132.064230px;}
.y20_c00310{bottom:150.334230px;}
.y1f_c00310{bottom:168.598620px;}
.y1e_c00310{bottom:186.960600px;}
.y1d_c00310{bottom:202.170450px;}
.y1c_c00310{bottom:222.870450px;}
.y1b_c00310{bottom:243.570450px;}
.y1a_c00310{bottom:320.790450px;}
.y19_c00310{bottom:355.260450px;}
.y18_c00310{bottom:389.640450px;}
.y17_c00310{bottom:424.110450px;}
.y16_c00310{bottom:458.490450px;}
.y15_c00310{bottom:510.960450px;}
.y14_c00310{bottom:545.340450px;}
.y13_c00310{bottom:579.810450px;}
.y12_c00310{bottom:623.190450px;}
.y11_c00310{bottom:657.660450px;}
.y10_c00310{bottom:701.040450px;}
.yf_c00310{bottom:735.510450px;}
.ye_c00310{bottom:769.890450px;}
.yd_c00310{bottom:804.360450px;}
.yc_c00310{bottom:847.740450px;}
.yb_c00310{bottom:882.210450px;}
.ya_c00310{bottom:916.590450px;}
.y9_c00310{bottom:960.060450px;}
.y8_c00310{bottom:994.440450px;}
.y7_c00310{bottom:1028.910450px;}
.y6_c00310{bottom:1063.290450px;}
.y5_c00310{bottom:1106.760450px;}
.y4_c00310{bottom:1141.140450px;}
.y2_c00310{bottom:1177.860450px;}
.y1_c00310{bottom:1196.850450px;}
.h8_c00310{height:47.988281px;}
.h9_c00310{height:49.937344px;}
.ha_c00310{height:49.944664px;}
.hb_c00310{height:49.945264px;}
.h1_c00310{height:50.315273px;}
.h2_c00310{height:56.320312px;}
.h4_c00310{height:60.257812px;}
.h5_c00310{height:65.130820px;}
.h7_c00310{height:65.131420px;}
.h3_c00310{height:72.160312px;}
.h6_c00310{height:75.093750px;}
.h0_c00310{height:1263.000000px;}
.w1_c00310{width:892.500000px;}
.w0_c00310{width:892.830000px;}
.x0_c00310{left:0.000000px;}
.x1_c00310{left:127.620000px;}
.x3_c00310{left:154.620000px;}
.x2_c00310{left:181.620000px;}
.x4_c00310{left:206.820000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.v1_c00310{vertical-align:14.080000pt;}
.v2_c00310{vertical-align:26.560000pt;}
.ls16_c00310{letter-spacing:-0.236800pt;}
.ls10_c00310{letter-spacing:-0.134400pt;}
.ls13_c00310{letter-spacing:-0.032000pt;}
.ls11_c00310{letter-spacing:-0.025600pt;}
.ls14_c00310{letter-spacing:-0.019200pt;}
.ls15_c00310{letter-spacing:-0.012800pt;}
.ls18_c00310{letter-spacing:-0.010368pt;}
.ls17_c00310{letter-spacing:-0.006400pt;}
.ls19_c00310{letter-spacing:-0.003456pt;}
.lsf_c00310{letter-spacing:0.000000pt;}
.ls5_c00310{letter-spacing:0.006400pt;}
.lsc_c00310{letter-spacing:0.008512pt;}
.ls9_c00310{letter-spacing:0.012768pt;}
.ls7_c00310{letter-spacing:0.012800pt;}
.ls6_c00310{letter-spacing:0.019200pt;}
.lsb_c00310{letter-spacing:0.025536pt;}
.ls8_c00310{letter-spacing:0.038400pt;}
.lsd_c00310{letter-spacing:0.042560pt;}
.ls0_c00310{letter-spacing:0.042752pt;}
.ls2_c00310{letter-spacing:0.048672pt;}
.lse_c00310{letter-spacing:0.055328pt;}
.ls12_c00310{letter-spacing:0.083200pt;}
.ls3_c00310{letter-spacing:0.128000pt;}
.lsa_c00310{letter-spacing:0.412480pt;}
.ls4_c00310{letter-spacing:58.048000pt;}
.ls1_c00310{letter-spacing:1077.440000pt;}
.ws2_c00310{word-spacing:-16.012800pt;}
.ws0_c00310{word-spacing:-15.974400pt;}
.ws4_c00310{word-spacing:-11.840192pt;}
.ws5_c00310{word-spacing:-11.831680pt;}
.ws6_c00310{word-spacing:-9.607680pt;}
.ws3_c00310{word-spacing:-9.604224pt;}
.ws1_c00310{word-spacing:-9.408672pt;}
.wsa_c00310{word-spacing:-0.076800pt;}
.ws30_c00310{word-spacing:-0.038304pt;}
.ws2f_c00310{word-spacing:-0.025536pt;}
.ws2d_c00310{word-spacing:-0.008512pt;}
.ws8_c00310{word-spacing:0.000000pt;}
.ws2b_c00310{word-spacing:0.004256pt;}
.ws21_c00310{word-spacing:0.006400pt;}
.ws11_c00310{word-spacing:0.012800pt;}
.ws2c_c00310{word-spacing:0.017024pt;}
.ws7_c00310{word-spacing:0.037408pt;}
.wsd_c00310{word-spacing:0.044800pt;}
.wse_c00310{word-spacing:0.064000pt;}
.ws1d_c00310{word-spacing:0.236800pt;}
.ws2e_c00310{word-spacing:0.323456pt;}
.ws27_c00310{word-spacing:0.678400pt;}
.ws2a_c00310{word-spacing:1.881600pt;}
.ws28_c00310{word-spacing:1.907200pt;}
.ws29_c00310{word-spacing:2.035200pt;}
.ws17_c00310{word-spacing:5.516800pt;}
.ws16_c00310{word-spacing:5.734400pt;}
.ws26_c00310{word-spacing:7.046400pt;}
.ws24_c00310{word-spacing:7.635200pt;}
.ws25_c00310{word-spacing:7.705600pt;}
.ws1c_c00310{word-spacing:8.332800pt;}
.wsc_c00310{word-spacing:8.352000pt;}
.wsb_c00310{word-spacing:8.358400pt;}
.ws1e_c00310{word-spacing:10.540800pt;}
.ws12_c00310{word-spacing:10.547200pt;}
.ws13_c00310{word-spacing:10.624000pt;}
.ws10_c00310{word-spacing:10.860800pt;}
.wsf_c00310{word-spacing:10.912000pt;}
.ws1a_c00310{word-spacing:11.507200pt;}
.ws1b_c00310{word-spacing:11.513600pt;}
.ws14_c00310{word-spacing:12.172800pt;}
.ws15_c00310{word-spacing:12.185600pt;}
.ws22_c00310{word-spacing:12.550400pt;}
.ws23_c00310{word-spacing:12.659200pt;}
.ws1f_c00310{word-spacing:12.780800pt;}
.ws20_c00310{word-spacing:12.812800pt;}
.ws18_c00310{word-spacing:15.020800pt;}
.ws19_c00310{word-spacing:15.097600pt;}
.ws9_c00310{word-spacing:19.897600pt;}
._0_c00310{margin-left:-1.175680pt;}
._1_c00310{width:0.896000pt;}
._2_c00310{width:163.456000pt;}
.fs5_c00310{font-size:34.560000pt;}
.fs3_c00310{font-size:37.440000pt;}
.fs4_c00310{font-size:42.560000pt;}
.fs1_c00310{font-size:48.000000pt;}
.fs0_c00310{font-size:53.440000pt;}
.fs2_c00310{font-size:64.000000pt;}
.y0_c00310{bottom:0.000000pt;}
.y3_c00310{bottom:51.067067pt;}
.y22_c00310{bottom:101.065307pt;}
.y21_c00310{bottom:117.390427pt;}
.y20_c00310{bottom:133.630427pt;}
.y1f_c00310{bottom:149.865440pt;}
.y1e_c00310{bottom:166.187200pt;}
.y1d_c00310{bottom:179.707067pt;}
.y1c_c00310{bottom:198.107067pt;}
.y1b_c00310{bottom:216.507067pt;}
.y1a_c00310{bottom:285.147067pt;}
.y19_c00310{bottom:315.787067pt;}
.y18_c00310{bottom:346.347067pt;}
.y17_c00310{bottom:376.987067pt;}
.y16_c00310{bottom:407.547067pt;}
.y15_c00310{bottom:454.187067pt;}
.y14_c00310{bottom:484.747067pt;}
.y13_c00310{bottom:515.387067pt;}
.y12_c00310{bottom:553.947067pt;}
.y11_c00310{bottom:584.587067pt;}
.y10_c00310{bottom:623.147067pt;}
.yf_c00310{bottom:653.787067pt;}
.ye_c00310{bottom:684.347067pt;}
.yd_c00310{bottom:714.987067pt;}
.yc_c00310{bottom:753.547067pt;}
.yb_c00310{bottom:784.187067pt;}
.ya_c00310{bottom:814.747067pt;}
.y9_c00310{bottom:853.387067pt;}
.y8_c00310{bottom:883.947067pt;}
.y7_c00310{bottom:914.587067pt;}
.y6_c00310{bottom:945.147067pt;}
.y5_c00310{bottom:983.787067pt;}
.y4_c00310{bottom:1014.347067pt;}
.y2_c00310{bottom:1046.987067pt;}
.y1_c00310{bottom:1063.867067pt;}
.h8_c00310{height:42.656250pt;}
.h9_c00310{height:44.388750pt;}
.ha_c00310{height:44.395257pt;}
.hb_c00310{height:44.395790pt;}
.h1_c00310{height:44.724687pt;}
.h2_c00310{height:50.062500pt;}
.h4_c00310{height:53.562500pt;}
.h5_c00310{height:57.894063pt;}
.h7_c00310{height:57.894596pt;}
.h3_c00310{height:64.142500pt;}
.h6_c00310{height:66.750000pt;}
.h0_c00310{height:1122.666667pt;}
.w1_c00310{width:793.333333pt;}
.w0_c00310{width:793.626667pt;}
.x0_c00310{left:0.000000pt;}
.x1_c00310{left:113.440000pt;}
.x3_c00310{left:137.440000pt;}
.x2_c00310{left:161.440000pt;}
.x4_c00310{left:183.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_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_32167e902fc3b1e404078b3b.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00311;src:url('chunks/assets/font_75fc12ccf76137148dec6ae1.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00311;src:url('chunks/assets/font_c1ea3b72905c0e39bddc07cb.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00311;src:url('chunks/assets/font_0c7a948922bf93e9a6effade.woff2')format("woff");}.ff5_c00311{font-family:ff5_c00311;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00311;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00311{font-family:ff6_c00311;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00311;src:url('chunks/assets/font_b4e165f04784b4f77c3979b3.woff2')format("woff");}.ff7_c00311{font-family:ff7_c00311;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_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.v1_c00311{vertical-align:29.880000px;}
.ls10_c00311{letter-spacing:-0.151200px;}
.ls17_c00311{letter-spacing:-0.043200px;}
.ls19_c00311{letter-spacing:-0.036000px;}
.ls16_c00311{letter-spacing:-0.028800px;}
.ls14_c00311{letter-spacing:-0.021600px;}
.ls15_c00311{letter-spacing:-0.015624px;}
.ls11_c00311{letter-spacing:-0.014400px;}
.ls1b_c00311{letter-spacing:-0.011664px;}
.ls18_c00311{letter-spacing:-0.007200px;}
.ls1a_c00311{letter-spacing:-0.003888px;}
.lsf_c00311{letter-spacing:0.000000px;}
.ls2_c00311{letter-spacing:0.007200px;}
.ls9_c00311{letter-spacing:0.014364px;}
.ls7_c00311{letter-spacing:0.014400px;}
.ls1_c00311{letter-spacing:0.021600px;}
.lse_c00311{letter-spacing:0.028728px;}
.lsd_c00311{letter-spacing:0.033516px;}
.ls8_c00311{letter-spacing:0.036000px;}
.ls0_c00311{letter-spacing:0.036072px;}
.lsb_c00311{letter-spacing:0.047880px;}
.ls3_c00311{letter-spacing:0.054756px;}
.lsc_c00311{letter-spacing:0.062244px;}
.ls12_c00311{letter-spacing:0.079200px;}
.ls13_c00311{letter-spacing:0.093600px;}
.ls5_c00311{letter-spacing:0.144000px;}
.lsa_c00311{letter-spacing:0.464040px;}
.ls4_c00311{letter-spacing:31.560480px;}
.ls6_c00311{letter-spacing:65.304000px;}
.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;}
}
.ws1_c00311{word-spacing:-19.514376px;}
.ws2_c00311{word-spacing:-10.804752px;}
.ws0_c00311{word-spacing:-10.584756px;}
.ws3_c00311{word-spacing:-0.306612px;}
.wsf_c00311{word-spacing:-0.140616px;}
.wsa_c00311{word-spacing:-0.086400px;}
.ws2a_c00311{word-spacing:-0.043092px;}
.ws29_c00311{word-spacing:-0.028728px;}
.wsc_c00311{word-spacing:-0.021600px;}
.ws2b_c00311{word-spacing:-0.014364px;}
.ws2d_c00311{word-spacing:-0.009576px;}
.ws9_c00311{word-spacing:-0.007200px;}
.ws4_c00311{word-spacing:0.000000px;}
.ws27_c00311{word-spacing:0.004788px;}
.ws17_c00311{word-spacing:0.014400px;}
.ws2c_c00311{word-spacing:0.019152px;}
.ws26_c00311{word-spacing:0.043200px;}
.wsb_c00311{word-spacing:0.057600px;}
.ws1a_c00311{word-spacing:0.064800px;}
.wse_c00311{word-spacing:0.086400px;}
.ws28_c00311{word-spacing:0.363888px;}
.ws14_c00311{word-spacing:2.138400px;}
.ws13_c00311{word-spacing:2.210400px;}
.ws21_c00311{word-spacing:2.548800px;}
.ws1e_c00311{word-spacing:2.880000px;}
.ws1d_c00311{word-spacing:2.894400px;}
.ws1c_c00311{word-spacing:3.240000px;}
.ws16_c00311{word-spacing:3.254400px;}
.ws1b_c00311{word-spacing:3.434400px;}
.ws10_c00311{word-spacing:5.068800px;}
.ws11_c00311{word-spacing:7.912800px;}
.ws12_c00311{word-spacing:7.963200px;}
.ws24_c00311{word-spacing:8.654400px;}
.ws25_c00311{word-spacing:8.683200px;}
.ws20_c00311{word-spacing:8.920800px;}
.ws1f_c00311{word-spacing:9.072000px;}
.ws23_c00311{word-spacing:9.345600px;}
.wsd_c00311{word-spacing:9.381600px;}
.ws22_c00311{word-spacing:9.453600px;}
.ws8_c00311{word-spacing:10.720800px;}
.ws5_c00311{word-spacing:10.778400px;}
.ws6_c00311{word-spacing:10.958400px;}
.ws7_c00311{word-spacing:10.994400px;}
.ws15_c00311{word-spacing:15.883200px;}
.ws19_c00311{word-spacing:16.207200px;}
.ws18_c00311{word-spacing:16.228800px;}
._0_c00311{margin-left:-1.022040px;}
._2_c00311{width:1.296000px;}
._1_c00311{width:197.928000px;}
.fc0_c00311{color:rgb(0,0,0);}
.fs6_c00311{font-size:38.880000px;}
.fs3_c00311{font-size:42.120000px;}
.fs5_c00311{font-size:47.880000px;}
.fs2_c00311{font-size:54.000000px;}
.fs0_c00311{font-size:60.120000px;}
.fs1_c00311{font-size:72.000000px;}
.fs4_c00311{font-size:78.120000px;}
.y0_c00311{bottom:0.000000px;}
.y3_c00311{bottom:57.450450px;}
.y4_c00311{bottom:61.410450px;}
.y23_c00311{bottom:113.698470px;}
.y22_c00311{bottom:132.064230px;}
.y21_c00311{bottom:150.334230px;}
.y20_c00311{bottom:168.598620px;}
.y1f_c00311{bottom:186.964230px;}
.y1e_c00311{bottom:205.230450px;}
.y1d_c00311{bottom:220.440450px;}
.y1c_c00311{bottom:241.140450px;}
.y1b_c00311{bottom:261.840450px;}
.y1a_c00311{bottom:352.380600px;}
.y19_c00311{bottom:386.760600px;}
.y18_c00311{bottom:421.230600px;}
.y17_c00311{bottom:464.610450px;}
.y16_c00311{bottom:499.080450px;}
.y15_c00311{bottom:533.460450px;}
.y14_c00311{bottom:567.930450px;}
.y13_c00311{bottom:602.310450px;}
.y12_c00311{bottom:645.780450px;}
.y11_c00311{bottom:680.160450px;}
.y10_c00311{bottom:723.630450px;}
.yf_c00311{bottom:758.010450px;}
.ye_c00311{bottom:792.480450px;}
.yd_c00311{bottom:826.860450px;}
.yc_c00311{bottom:861.330450px;}
.yb_c00311{bottom:895.710450px;}
.ya_c00311{bottom:940.800450px;}
.y9_c00311{bottom:994.440450px;}
.y8_c00311{bottom:1028.910450px;}
.y7_c00311{bottom:1063.290450px;}
.y6_c00311{bottom:1106.760450px;}
.y5_c00311{bottom:1141.140450px;}
.y2_c00311{bottom:1173.810450px;}
.y1_c00311{bottom:1196.850450px;}
.h2_c00311{height:47.988281px;}
.ha_c00311{height:49.937344px;}
.hb_c00311{height:49.944664px;}
.hc_c00311{height:49.945264px;}
.h1_c00311{height:50.315273px;}
.h3_c00311{height:56.320312px;}
.h6_c00311{height:60.257812px;}
.h4_c00311{height:60.890625px;}
.h9_c00311{height:65.130220px;}
.h5_c00311{height:65.130820px;}
.h8_c00311{height:75.093750px;}
.h7_c00311{height:81.476719px;}
.h0_c00311{height:1263.000000px;}
.w1_c00311{width:892.500000px;}
.w0_c00311{width:892.830000px;}
.x0_c00311{left:0.000000px;}
.x2_c00311{left:127.620000px;}
.x6_c00311{left:154.620000px;}
.x5_c00311{left:180.810000px;}
.x7_c00311{left:206.820000px;}
.x4_c00311{left:435.240000px;}
.x3_c00311{left:446.490000px;}
.x1_c00311{left:490.770000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.v1_c00311{vertical-align:26.560000pt;}
.ls10_c00311{letter-spacing:-0.134400pt;}
.ls17_c00311{letter-spacing:-0.038400pt;}
.ls19_c00311{letter-spacing:-0.032000pt;}
.ls16_c00311{letter-spacing:-0.025600pt;}
.ls14_c00311{letter-spacing:-0.019200pt;}
.ls15_c00311{letter-spacing:-0.013888pt;}
.ls11_c00311{letter-spacing:-0.012800pt;}
.ls1b_c00311{letter-spacing:-0.010368pt;}
.ls18_c00311{letter-spacing:-0.006400pt;}
.ls1a_c00311{letter-spacing:-0.003456pt;}
.lsf_c00311{letter-spacing:0.000000pt;}
.ls2_c00311{letter-spacing:0.006400pt;}
.ls9_c00311{letter-spacing:0.012768pt;}
.ls7_c00311{letter-spacing:0.012800pt;}
.ls1_c00311{letter-spacing:0.019200pt;}
.lse_c00311{letter-spacing:0.025536pt;}
.lsd_c00311{letter-spacing:0.029792pt;}
.ls8_c00311{letter-spacing:0.032000pt;}
.ls0_c00311{letter-spacing:0.032064pt;}
.lsb_c00311{letter-spacing:0.042560pt;}
.ls3_c00311{letter-spacing:0.048672pt;}
.lsc_c00311{letter-spacing:0.055328pt;}
.ls12_c00311{letter-spacing:0.070400pt;}
.ls13_c00311{letter-spacing:0.083200pt;}
.ls5_c00311{letter-spacing:0.128000pt;}
.lsa_c00311{letter-spacing:0.412480pt;}
.ls4_c00311{letter-spacing:28.053760pt;}
.ls6_c00311{letter-spacing:58.048000pt;}
.ws1_c00311{word-spacing:-17.346112pt;}
.ws2_c00311{word-spacing:-9.604224pt;}
.ws0_c00311{word-spacing:-9.408672pt;}
.ws3_c00311{word-spacing:-0.272544pt;}
.wsf_c00311{word-spacing:-0.124992pt;}
.wsa_c00311{word-spacing:-0.076800pt;}
.ws2a_c00311{word-spacing:-0.038304pt;}
.ws29_c00311{word-spacing:-0.025536pt;}
.wsc_c00311{word-spacing:-0.019200pt;}
.ws2b_c00311{word-spacing:-0.012768pt;}
.ws2d_c00311{word-spacing:-0.008512pt;}
.ws9_c00311{word-spacing:-0.006400pt;}
.ws4_c00311{word-spacing:0.000000pt;}
.ws27_c00311{word-spacing:0.004256pt;}
.ws17_c00311{word-spacing:0.012800pt;}
.ws2c_c00311{word-spacing:0.017024pt;}
.ws26_c00311{word-spacing:0.038400pt;}
.wsb_c00311{word-spacing:0.051200pt;}
.ws1a_c00311{word-spacing:0.057600pt;}
.wse_c00311{word-spacing:0.076800pt;}
.ws28_c00311{word-spacing:0.323456pt;}
.ws14_c00311{word-spacing:1.900800pt;}
.ws13_c00311{word-spacing:1.964800pt;}
.ws21_c00311{word-spacing:2.265600pt;}
.ws1e_c00311{word-spacing:2.560000pt;}
.ws1d_c00311{word-spacing:2.572800pt;}
.ws1c_c00311{word-spacing:2.880000pt;}
.ws16_c00311{word-spacing:2.892800pt;}
.ws1b_c00311{word-spacing:3.052800pt;}
.ws10_c00311{word-spacing:4.505600pt;}
.ws11_c00311{word-spacing:7.033600pt;}
.ws12_c00311{word-spacing:7.078400pt;}
.ws24_c00311{word-spacing:7.692800pt;}
.ws25_c00311{word-spacing:7.718400pt;}
.ws20_c00311{word-spacing:7.929600pt;}
.ws1f_c00311{word-spacing:8.064000pt;}
.ws23_c00311{word-spacing:8.307200pt;}
.wsd_c00311{word-spacing:8.339200pt;}
.ws22_c00311{word-spacing:8.403200pt;}
.ws8_c00311{word-spacing:9.529600pt;}
.ws5_c00311{word-spacing:9.580800pt;}
.ws6_c00311{word-spacing:9.740800pt;}
.ws7_c00311{word-spacing:9.772800pt;}
.ws15_c00311{word-spacing:14.118400pt;}
.ws19_c00311{word-spacing:14.406400pt;}
.ws18_c00311{word-spacing:14.425600pt;}
._0_c00311{margin-left:-0.908480pt;}
._2_c00311{width:1.152000pt;}
._1_c00311{width:175.936000pt;}
.fs6_c00311{font-size:34.560000pt;}
.fs3_c00311{font-size:37.440000pt;}
.fs5_c00311{font-size:42.560000pt;}
.fs2_c00311{font-size:48.000000pt;}
.fs0_c00311{font-size:53.440000pt;}
.fs1_c00311{font-size:64.000000pt;}
.fs4_c00311{font-size:69.440000pt;}
.y0_c00311{bottom:0.000000pt;}
.y3_c00311{bottom:51.067067pt;}
.y4_c00311{bottom:54.587067pt;}
.y23_c00311{bottom:101.065307pt;}
.y22_c00311{bottom:117.390427pt;}
.y21_c00311{bottom:133.630427pt;}
.y20_c00311{bottom:149.865440pt;}
.y1f_c00311{bottom:166.190427pt;}
.y1e_c00311{bottom:182.427067pt;}
.y1d_c00311{bottom:195.947067pt;}
.y1c_c00311{bottom:214.347067pt;}
.y1b_c00311{bottom:232.747067pt;}
.y1a_c00311{bottom:313.227200pt;}
.y19_c00311{bottom:343.787200pt;}
.y18_c00311{bottom:374.427200pt;}
.y17_c00311{bottom:412.987067pt;}
.y16_c00311{bottom:443.627067pt;}
.y15_c00311{bottom:474.187067pt;}
.y14_c00311{bottom:504.827067pt;}
.y13_c00311{bottom:535.387067pt;}
.y12_c00311{bottom:574.027067pt;}
.y11_c00311{bottom:604.587067pt;}
.y10_c00311{bottom:643.227067pt;}
.yf_c00311{bottom:673.787067pt;}
.ye_c00311{bottom:704.427067pt;}
.yd_c00311{bottom:734.987067pt;}
.yc_c00311{bottom:765.627067pt;}
.yb_c00311{bottom:796.187067pt;}
.ya_c00311{bottom:836.267067pt;}
.y9_c00311{bottom:883.947067pt;}
.y8_c00311{bottom:914.587067pt;}
.y7_c00311{bottom:945.147067pt;}
.y6_c00311{bottom:983.787067pt;}
.y5_c00311{bottom:1014.347067pt;}
.y2_c00311{bottom:1043.387067pt;}
.y1_c00311{bottom:1063.867067pt;}
.h2_c00311{height:42.656250pt;}
.ha_c00311{height:44.388750pt;}
.hb_c00311{height:44.395257pt;}
.hc_c00311{height:44.395790pt;}
.h1_c00311{height:44.724687pt;}
.h3_c00311{height:50.062500pt;}
.h6_c00311{height:53.562500pt;}
.h4_c00311{height:54.125000pt;}
.h9_c00311{height:57.893529pt;}
.h5_c00311{height:57.894063pt;}
.h8_c00311{height:66.750000pt;}
.h7_c00311{height:72.423750pt;}
.h0_c00311{height:1122.666667pt;}
.w1_c00311{width:793.333333pt;}
.w0_c00311{width:793.626667pt;}
.x0_c00311{left:0.000000pt;}
.x2_c00311{left:113.440000pt;}
.x6_c00311{left:137.440000pt;}
.x5_c00311{left:160.720000pt;}
.x7_c00311{left:183.840000pt;}
.x4_c00311{left:386.880000pt;}
.x3_c00311{left:396.880000pt;}
.x1_c00311{left:436.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_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_0dc868e193be0bb490d94984.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.100098;font-style:normal;font-weight:normal;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_55ae8ff1db7e0d487e093c60.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;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_c00312;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00312;src:url('chunks/assets/font_09e68ec80dcd1ee155bbf4ce.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:1.102051;font-style:normal;font-weight:normal;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_b4e165f04784b4f77c3979b3.woff2')format("woff");}.ff5_c00312{font-family:ff5_c00312;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_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;}
.v1_c00312{vertical-align:15.840000px;}
.v2_c00312{vertical-align:29.880000px;}
.ls10_c00312{letter-spacing:-0.151200px;}
.ls16_c00312{letter-spacing:-0.108000px;}
.ls1d_c00312{letter-spacing:-0.086400px;}
.ls1c_c00312{letter-spacing:-0.072000px;}
.ls1b_c00312{letter-spacing:-0.064800px;}
.ls14_c00312{letter-spacing:-0.050400px;}
.ls1a_c00312{letter-spacing:-0.043200px;}
.ls19_c00312{letter-spacing:-0.036000px;}
.ls17_c00312{letter-spacing:-0.028800px;}
.ls11_c00312{letter-spacing:-0.021600px;}
.ls13_c00312{letter-spacing:-0.014400px;}
.ls1f_c00312{letter-spacing:-0.011664px;}
.ls12_c00312{letter-spacing:-0.007200px;}
.ls1e_c00312{letter-spacing:-0.003888px;}
.lsf_c00312{letter-spacing:0.000000px;}
.ls2_c00312{letter-spacing:0.007200px;}
.ls9_c00312{letter-spacing:0.014364px;}
.ls7_c00312{letter-spacing:0.014400px;}
.lsc_c00312{letter-spacing:0.019152px;}
.lse_c00312{letter-spacing:0.028728px;}
.ls18_c00312{letter-spacing:0.028800px;}
.lsd_c00312{letter-spacing:0.033516px;}
.ls6_c00312{letter-spacing:0.036000px;}
.lsb_c00312{letter-spacing:0.047880px;}
.ls0_c00312{letter-spacing:0.048096px;}
.ls5_c00312{letter-spacing:0.054756px;}
.ls15_c00312{letter-spacing:0.093600px;}
.ls3_c00312{letter-spacing:0.144000px;}
.lsa_c00312{letter-spacing:0.464040px;}
.ls4_c00312{letter-spacing:0.504000px;}
.ls8_c00312{letter-spacing:19.710000px;}
.ls1_c00312{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00312{word-spacing:-17.992800px;}
.ws2_c00312{word-spacing:-10.804752px;}
.ws0_c00312{word-spacing:-10.584756px;}
.ws31_c00312{word-spacing:-0.028728px;}
.ws32_c00312{word-spacing:-0.014364px;}
.ws34_c00312{word-spacing:-0.009576px;}
.ws4_c00312{word-spacing:0.000000px;}
.ws2f_c00312{word-spacing:0.004788px;}
.ws33_c00312{word-spacing:0.019152px;}
.ws16_c00312{word-spacing:0.028800px;}
.ws3_c00312{word-spacing:0.042084px;}
.ws14_c00312{word-spacing:0.043200px;}
.ws17_c00312{word-spacing:0.064800px;}
.ws30_c00312{word-spacing:0.363888px;}
.ws2b_c00312{word-spacing:0.381600px;}
.wsd_c00312{word-spacing:2.563200px;}
.wse_c00312{word-spacing:2.635200px;}
.ws2a_c00312{word-spacing:3.261600px;}
.ws19_c00312{word-spacing:4.644000px;}
.ws18_c00312{word-spacing:4.723200px;}
.ws1a_c00312{word-spacing:4.888800px;}
.ws2c_c00312{word-spacing:5.032800px;}
.ws2d_c00312{word-spacing:5.119200px;}
.ws29_c00312{word-spacing:5.392800px;}
.ws26_c00312{word-spacing:5.414400px;}
.ws25_c00312{word-spacing:5.457600px;}
.ws6_c00312{word-spacing:7.142400px;}
.ws5_c00312{word-spacing:7.221600px;}
.ws20_c00312{word-spacing:7.560000px;}
.ws2e_c00312{word-spacing:7.603200px;}
.ws1e_c00312{word-spacing:7.668000px;}
.ws1c_c00312{word-spacing:7.876800px;}
.ws1b_c00312{word-spacing:7.927200px;}
.ws1f_c00312{word-spacing:7.941600px;}
.ws1d_c00312{word-spacing:7.992000px;}
.ws15_c00312{word-spacing:11.188800px;}
.ws9_c00312{word-spacing:11.901600px;}
.ws8_c00312{word-spacing:11.930400px;}
.wsa_c00312{word-spacing:11.988000px;}
.wsc_c00312{word-spacing:11.995200px;}
.ws7_c00312{word-spacing:12.074400px;}
.wsb_c00312{word-spacing:12.088800px;}
.ws13_c00312{word-spacing:12.456000px;}
.ws12_c00312{word-spacing:12.628800px;}
.ws11_c00312{word-spacing:13.896000px;}
.ws10_c00312{word-spacing:14.126400px;}
.ws21_c00312{word-spacing:16.200000px;}
.ws28_c00312{word-spacing:16.545600px;}
.ws27_c00312{word-spacing:16.552800px;}
.ws22_c00312{word-spacing:19.785600px;}
.ws23_c00312{word-spacing:19.807200px;}
.ws24_c00312{word-spacing:28.821600px;}
.wsf_c00312{word-spacing:30.614400px;}
._0_c00312{margin-left:-1.322640px;}
._2_c00312{width:1.404000px;}
._1_c00312{width:12.405600px;}
.fc0_c00312{color:rgb(0,0,0);}
.fs5_c00312{font-size:38.880000px;}
.fs3_c00312{font-size:42.120000px;}
.fs4_c00312{font-size:47.880000px;}
.fs1_c00312{font-size:54.000000px;}
.fs0_c00312{font-size:60.120000px;}
.fs2_c00312{font-size:72.000000px;}
.y0_c00312{bottom:0.000000px;}
.y3_c00312{bottom:57.450450px;}
.y23_c00312{bottom:113.698470px;}
.y22_c00312{bottom:132.064230px;}
.y21_c00312{bottom:150.334230px;}
.y20_c00312{bottom:168.600450px;}
.y1f_c00312{bottom:183.810600px;}
.y1e_c00312{bottom:204.510600px;}
.y1d_c00312{bottom:225.210450px;}
.y1c_c00312{bottom:287.940450px;}
.y1b_c00312{bottom:322.410450px;}
.y1a_c00312{bottom:356.790450px;}
.y19_c00312{bottom:391.260450px;}
.y18_c00312{bottom:425.640450px;}
.y17_c00312{bottom:460.110450px;}
.y16_c00312{bottom:494.490450px;}
.y15_c00312{bottom:528.960450px;}
.y14_c00312{bottom:572.340450px;}
.y13_c00312{bottom:606.810450px;}
.y12_c00312{bottom:641.190450px;}
.y11_c00312{bottom:675.660450px;}
.y10_c00312{bottom:710.040450px;}
.yf_c00312{bottom:744.510450px;}
.ye_c00312{bottom:778.890450px;}
.yd_c00312{bottom:813.360450px;}
.yc_c00312{bottom:856.740450px;}
.yb_c00312{bottom:891.210450px;}
.ya_c00312{bottom:934.590450px;}
.y9_c00312{bottom:969.060450px;}
.y8_c00312{bottom:1003.440450px;}
.y7_c00312{bottom:1037.910450px;}
.y6_c00312{bottom:1072.290450px;}
.y5_c00312{bottom:1106.760450px;}
.y4_c00312{bottom:1141.140450px;}
.y2_c00312{bottom:1177.860450px;}
.y1_c00312{bottom:1196.850450px;}
.h8_c00312{height:47.988281px;}
.h7_c00312{height:47.988881px;}
.h9_c00312{height:49.937344px;}
.ha_c00312{height:49.945264px;}
.h1_c00312{height:50.315273px;}
.h2_c00312{height:56.320312px;}
.h4_c00312{height:60.257812px;}
.h5_c00312{height:60.890625px;}
.h6_c00312{height:65.130820px;}
.h3_c00312{height:72.160312px;}
.h0_c00312{height:1263.000000px;}
.w1_c00312{width:892.500000px;}
.w0_c00312{width:892.830000px;}
.x0_c00312{left:0.000000px;}
.x1_c00312{left:127.620000px;}
.x3_c00312{left:180.720000px;}
.x2_c00312{left:206.820000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.v1_c00312{vertical-align:14.080000pt;}
.v2_c00312{vertical-align:26.560000pt;}
.ls10_c00312{letter-spacing:-0.134400pt;}
.ls16_c00312{letter-spacing:-0.096000pt;}
.ls1d_c00312{letter-spacing:-0.076800pt;}
.ls1c_c00312{letter-spacing:-0.064000pt;}
.ls1b_c00312{letter-spacing:-0.057600pt;}
.ls14_c00312{letter-spacing:-0.044800pt;}
.ls1a_c00312{letter-spacing:-0.038400pt;}
.ls19_c00312{letter-spacing:-0.032000pt;}
.ls17_c00312{letter-spacing:-0.025600pt;}
.ls11_c00312{letter-spacing:-0.019200pt;}
.ls13_c00312{letter-spacing:-0.012800pt;}
.ls1f_c00312{letter-spacing:-0.010368pt;}
.ls12_c00312{letter-spacing:-0.006400pt;}
.ls1e_c00312{letter-spacing:-0.003456pt;}
.lsf_c00312{letter-spacing:0.000000pt;}
.ls2_c00312{letter-spacing:0.006400pt;}
.ls9_c00312{letter-spacing:0.012768pt;}
.ls7_c00312{letter-spacing:0.012800pt;}
.lsc_c00312{letter-spacing:0.017024pt;}
.lse_c00312{letter-spacing:0.025536pt;}
.ls18_c00312{letter-spacing:0.025600pt;}
.lsd_c00312{letter-spacing:0.029792pt;}
.ls6_c00312{letter-spacing:0.032000pt;}
.lsb_c00312{letter-spacing:0.042560pt;}
.ls0_c00312{letter-spacing:0.042752pt;}
.ls5_c00312{letter-spacing:0.048672pt;}
.ls15_c00312{letter-spacing:0.083200pt;}
.ls3_c00312{letter-spacing:0.128000pt;}
.lsa_c00312{letter-spacing:0.412480pt;}
.ls4_c00312{letter-spacing:0.448000pt;}
.ls8_c00312{letter-spacing:17.520000pt;}
.ls1_c00312{letter-spacing:1077.440000pt;}
.ws1_c00312{word-spacing:-15.993600pt;}
.ws2_c00312{word-spacing:-9.604224pt;}
.ws0_c00312{word-spacing:-9.408672pt;}
.ws31_c00312{word-spacing:-0.025536pt;}
.ws32_c00312{word-spacing:-0.012768pt;}
.ws34_c00312{word-spacing:-0.008512pt;}
.ws4_c00312{word-spacing:0.000000pt;}
.ws2f_c00312{word-spacing:0.004256pt;}
.ws33_c00312{word-spacing:0.017024pt;}
.ws16_c00312{word-spacing:0.025600pt;}
.ws3_c00312{word-spacing:0.037408pt;}
.ws14_c00312{word-spacing:0.038400pt;}
.ws17_c00312{word-spacing:0.057600pt;}
.ws30_c00312{word-spacing:0.323456pt;}
.ws2b_c00312{word-spacing:0.339200pt;}
.wsd_c00312{word-spacing:2.278400pt;}
.wse_c00312{word-spacing:2.342400pt;}
.ws2a_c00312{word-spacing:2.899200pt;}
.ws19_c00312{word-spacing:4.128000pt;}
.ws18_c00312{word-spacing:4.198400pt;}
.ws1a_c00312{word-spacing:4.345600pt;}
.ws2c_c00312{word-spacing:4.473600pt;}
.ws2d_c00312{word-spacing:4.550400pt;}
.ws29_c00312{word-spacing:4.793600pt;}
.ws26_c00312{word-spacing:4.812800pt;}
.ws25_c00312{word-spacing:4.851200pt;}
.ws6_c00312{word-spacing:6.348800pt;}
.ws5_c00312{word-spacing:6.419200pt;}
.ws20_c00312{word-spacing:6.720000pt;}
.ws2e_c00312{word-spacing:6.758400pt;}
.ws1e_c00312{word-spacing:6.816000pt;}
.ws1c_c00312{word-spacing:7.001600pt;}
.ws1b_c00312{word-spacing:7.046400pt;}
.ws1f_c00312{word-spacing:7.059200pt;}
.ws1d_c00312{word-spacing:7.104000pt;}
.ws15_c00312{word-spacing:9.945600pt;}
.ws9_c00312{word-spacing:10.579200pt;}
.ws8_c00312{word-spacing:10.604800pt;}
.wsa_c00312{word-spacing:10.656000pt;}
.wsc_c00312{word-spacing:10.662400pt;}
.ws7_c00312{word-spacing:10.732800pt;}
.wsb_c00312{word-spacing:10.745600pt;}
.ws13_c00312{word-spacing:11.072000pt;}
.ws12_c00312{word-spacing:11.225600pt;}
.ws11_c00312{word-spacing:12.352000pt;}
.ws10_c00312{word-spacing:12.556800pt;}
.ws21_c00312{word-spacing:14.400000pt;}
.ws28_c00312{word-spacing:14.707200pt;}
.ws27_c00312{word-spacing:14.713600pt;}
.ws22_c00312{word-spacing:17.587200pt;}
.ws23_c00312{word-spacing:17.606400pt;}
.ws24_c00312{word-spacing:25.619200pt;}
.wsf_c00312{word-spacing:27.212800pt;}
._0_c00312{margin-left:-1.175680pt;}
._2_c00312{width:1.248000pt;}
._1_c00312{width:11.027200pt;}
.fs5_c00312{font-size:34.560000pt;}
.fs3_c00312{font-size:37.440000pt;}
.fs4_c00312{font-size:42.560000pt;}
.fs1_c00312{font-size:48.000000pt;}
.fs0_c00312{font-size:53.440000pt;}
.fs2_c00312{font-size:64.000000pt;}
.y0_c00312{bottom:0.000000pt;}
.y3_c00312{bottom:51.067067pt;}
.y23_c00312{bottom:101.065307pt;}
.y22_c00312{bottom:117.390427pt;}
.y21_c00312{bottom:133.630427pt;}
.y20_c00312{bottom:149.867067pt;}
.y1f_c00312{bottom:163.387200pt;}
.y1e_c00312{bottom:181.787200pt;}
.y1d_c00312{bottom:200.187067pt;}
.y1c_c00312{bottom:255.947067pt;}
.y1b_c00312{bottom:286.587067pt;}
.y1a_c00312{bottom:317.147067pt;}
.y19_c00312{bottom:347.787067pt;}
.y18_c00312{bottom:378.347067pt;}
.y17_c00312{bottom:408.987067pt;}
.y16_c00312{bottom:439.547067pt;}
.y15_c00312{bottom:470.187067pt;}
.y14_c00312{bottom:508.747067pt;}
.y13_c00312{bottom:539.387067pt;}
.y12_c00312{bottom:569.947067pt;}
.y11_c00312{bottom:600.587067pt;}
.y10_c00312{bottom:631.147067pt;}
.yf_c00312{bottom:661.787067pt;}
.ye_c00312{bottom:692.347067pt;}
.yd_c00312{bottom:722.987067pt;}
.yc_c00312{bottom:761.547067pt;}
.yb_c00312{bottom:792.187067pt;}
.ya_c00312{bottom:830.747067pt;}
.y9_c00312{bottom:861.387067pt;}
.y8_c00312{bottom:891.947067pt;}
.y7_c00312{bottom:922.587067pt;}
.y6_c00312{bottom:953.147067pt;}
.y5_c00312{bottom:983.787067pt;}
.y4_c00312{bottom:1014.347067pt;}
.y2_c00312{bottom:1046.987067pt;}
.y1_c00312{bottom:1063.867067pt;}
.h8_c00312{height:42.656250pt;}
.h7_c00312{height:42.656783pt;}
.h9_c00312{height:44.388750pt;}
.ha_c00312{height:44.395790pt;}
.h1_c00312{height:44.724687pt;}
.h2_c00312{height:50.062500pt;}
.h4_c00312{height:53.562500pt;}
.h5_c00312{height:54.125000pt;}
.h6_c00312{height:57.894062pt;}
.h3_c00312{height:64.142500pt;}
.h0_c00312{height:1122.666667pt;}
.w1_c00312{width:793.333333pt;}
.w0_c00312{width:793.626667pt;}
.x0_c00312{left:0.000000pt;}
.x1_c00312{left:113.440000pt;}
.x3_c00312{left:160.640000pt;}
.x2_c00312{left:183.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_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_504933dee5b45c1accf9c1de.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00313;src:url('chunks/assets/font_4058c1bebb3d27469c48c174.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00313;src:url('chunks/assets/font_0e1ffe92a63c085e001767a1.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00313;src:url('chunks/assets/font_a07176ef63ea8fc80c6cd2ef.woff2')format("woff");}.ff5_c00313{font-family:ff5_c00313;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00313;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff6_c00313{font-family:ff6_c00313;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_c00313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.v1_c00313{vertical-align:29.880000px;}
.lsd_c00313{letter-spacing:-0.151200px;}
.ls12_c00313{letter-spacing:-0.043200px;}
.ls10_c00313{letter-spacing:-0.036000px;}
.ls11_c00313{letter-spacing:-0.028800px;}
.ls14_c00313{letter-spacing:-0.021600px;}
.lse_c00313{letter-spacing:-0.014400px;}
.lsf_c00313{letter-spacing:-0.007200px;}
.ls15_c00313{letter-spacing:-0.003888px;}
.lsc_c00313{letter-spacing:0.000000px;}
.lsb_c00313{letter-spacing:0.004788px;}
.ls5_c00313{letter-spacing:0.007200px;}
.ls7_c00313{letter-spacing:0.014364px;}
.ls6_c00313{letter-spacing:0.014400px;}
.ls3_c00313{letter-spacing:0.021600px;}
.lsa_c00313{letter-spacing:0.033516px;}
.ls0_c00313{letter-spacing:0.036072px;}
.ls9_c00313{letter-spacing:0.047880px;}
.ls4_c00313{letter-spacing:0.054756px;}
.ls13_c00313{letter-spacing:0.093600px;}
.ls1_c00313{letter-spacing:0.144000px;}
.ls8_c00313{letter-spacing:0.464040px;}
.ls2_c00313{letter-spacing:65.304000px;}
.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;}
}
.ws1_c00313{word-spacing:-10.804752px;}
.ws0_c00313{word-spacing:-10.584756px;}
.ws2_c00313{word-spacing:-0.306612px;}
.wsf_c00313{word-spacing:-0.093600px;}
.ws2f_c00313{word-spacing:-0.028728px;}
.ws30_c00313{word-spacing:-0.014364px;}
.ws23_c00313{word-spacing:-0.007200px;}
.ws3_c00313{word-spacing:0.000000px;}
.ws2d_c00313{word-spacing:0.004788px;}
.wse_c00313{word-spacing:0.007200px;}
.ws31_c00313{word-spacing:0.014364px;}
.ws1b_c00313{word-spacing:0.014400px;}
.ws32_c00313{word-spacing:0.019152px;}
.ws1c_c00313{word-spacing:0.028800px;}
.ws1a_c00313{word-spacing:0.050400px;}
.ws1f_c00313{word-spacing:0.086400px;}
.ws24_c00313{word-spacing:0.180000px;}
.ws2e_c00313{word-spacing:0.363888px;}
.ws6_c00313{word-spacing:0.367200px;}
.ws7_c00313{word-spacing:0.396000px;}
.ws14_c00313{word-spacing:1.411200px;}
.ws13_c00313{word-spacing:1.468800px;}
.ws28_c00313{word-spacing:1.821600px;}
.ws29_c00313{word-spacing:1.872000px;}
.ws18_c00313{word-spacing:2.527200px;}
.ws19_c00313{word-spacing:2.541600px;}
.ws2b_c00313{word-spacing:2.851200px;}
.ws2a_c00313{word-spacing:2.908800px;}
.ws21_c00313{word-spacing:3.247200px;}
.ws22_c00313{word-spacing:3.283200px;}
.ws1e_c00313{word-spacing:3.945600px;}
.ws1d_c00313{word-spacing:3.960000px;}
.ws8_c00313{word-spacing:4.708800px;}
.ws9_c00313{word-spacing:4.737600px;}
.ws4_c00313{word-spacing:6.098400px;}
.ws5_c00313{word-spacing:6.134400px;}
.wsd_c00313{word-spacing:8.632800px;}
.wsc_c00313{word-spacing:8.798400px;}
.ws26_c00313{word-spacing:8.870400px;}
.ws25_c00313{word-spacing:8.956800px;}
.ws27_c00313{word-spacing:9.014400px;}
.wsb_c00313{word-spacing:10.389600px;}
.wsa_c00313{word-spacing:10.483200px;}
.ws20_c00313{word-spacing:11.901600px;}
.ws16_c00313{word-spacing:12.578400px;}
.ws15_c00313{word-spacing:12.650400px;}
.ws12_c00313{word-spacing:13.320000px;}
.ws17_c00313{word-spacing:14.068800px;}
.ws11_c00313{word-spacing:14.349600px;}
.ws10_c00313{word-spacing:14.364000px;}
.ws2c_c00313{word-spacing:29.887200px;}
._0_c00313{margin-left:-1.022040px;}
._1_c00313{width:1.080000px;}
._2_c00313{width:3.326400px;}
.fc0_c00313{color:rgb(0,0,0);}
.fs5_c00313{font-size:38.880000px;}
.fs3_c00313{font-size:42.120000px;}
.fs4_c00313{font-size:47.880000px;}
.fs2_c00313{font-size:54.000000px;}
.fs0_c00313{font-size:60.120000px;}
.fs1_c00313{font-size:72.000000px;}
.y0_c00313{bottom:0.000000px;}
.y3_c00313{bottom:57.450450px;}
.y4_c00313{bottom:61.410450px;}
.y23_c00313{bottom:113.698470px;}
.y22_c00313{bottom:132.064230px;}
.y21_c00313{bottom:150.334230px;}
.y20_c00313{bottom:168.600450px;}
.y1f_c00313{bottom:183.810600px;}
.y1e_c00313{bottom:204.510600px;}
.y1d_c00313{bottom:225.210450px;}
.y1c_c00313{bottom:322.410450px;}
.y1b_c00313{bottom:356.790450px;}
.y1a_c00313{bottom:391.260450px;}
.y19_c00313{bottom:425.640450px;}
.y18_c00313{bottom:460.110450px;}
.y17_c00313{bottom:503.490450px;}
.y16_c00313{bottom:537.960450px;}
.y15_c00313{bottom:572.340450px;}
.y14_c00313{bottom:606.810450px;}
.y13_c00313{bottom:641.190450px;}
.y12_c00313{bottom:675.660450px;}
.y11_c00313{bottom:719.040450px;}
.y10_c00313{bottom:753.510450px;}
.yf_c00313{bottom:787.890450px;}
.ye_c00313{bottom:822.360450px;}
.yd_c00313{bottom:856.740450px;}
.yc_c00313{bottom:891.210450px;}
.yb_c00313{bottom:925.590450px;}
.ya_c00313{bottom:969.060450px;}
.y9_c00313{bottom:1003.440450px;}
.y8_c00313{bottom:1037.910450px;}
.y7_c00313{bottom:1072.290450px;}
.y6_c00313{bottom:1106.760450px;}
.y5_c00313{bottom:1141.140450px;}
.y2_c00313{bottom:1173.810450px;}
.y1_c00313{bottom:1196.850450px;}
.h2_c00313{height:47.988281px;}
.h9_c00313{height:47.988881px;}
.ha_c00313{height:49.937344px;}
.hb_c00313{height:49.945264px;}
.h1_c00313{height:50.315273px;}
.h3_c00313{height:56.320312px;}
.h5_c00313{height:60.257812px;}
.h7_c00313{height:60.890625px;}
.h6_c00313{height:65.130820px;}
.h8_c00313{height:65.131420px;}
.h4_c00313{height:75.093750px;}
.h0_c00313{height:1263.000000px;}
.w1_c00313{width:892.500000px;}
.w0_c00313{width:892.830000px;}
.x0_c00313{left:0.000000px;}
.x2_c00313{left:127.620000px;}
.x5_c00313{left:154.620000px;}
.x6_c00313{left:181.620000px;}
.x7_c00313{left:206.820000px;}
.x4_c00313{left:435.240000px;}
.x3_c00313{left:446.490000px;}
.x1_c00313{left:490.770000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.v1_c00313{vertical-align:26.560000pt;}
.lsd_c00313{letter-spacing:-0.134400pt;}
.ls12_c00313{letter-spacing:-0.038400pt;}
.ls10_c00313{letter-spacing:-0.032000pt;}
.ls11_c00313{letter-spacing:-0.025600pt;}
.ls14_c00313{letter-spacing:-0.019200pt;}
.lse_c00313{letter-spacing:-0.012800pt;}
.lsf_c00313{letter-spacing:-0.006400pt;}
.ls15_c00313{letter-spacing:-0.003456pt;}
.lsc_c00313{letter-spacing:0.000000pt;}
.lsb_c00313{letter-spacing:0.004256pt;}
.ls5_c00313{letter-spacing:0.006400pt;}
.ls7_c00313{letter-spacing:0.012768pt;}
.ls6_c00313{letter-spacing:0.012800pt;}
.ls3_c00313{letter-spacing:0.019200pt;}
.lsa_c00313{letter-spacing:0.029792pt;}
.ls0_c00313{letter-spacing:0.032064pt;}
.ls9_c00313{letter-spacing:0.042560pt;}
.ls4_c00313{letter-spacing:0.048672pt;}
.ls13_c00313{letter-spacing:0.083200pt;}
.ls1_c00313{letter-spacing:0.128000pt;}
.ls8_c00313{letter-spacing:0.412480pt;}
.ls2_c00313{letter-spacing:58.048000pt;}
.ws1_c00313{word-spacing:-9.604224pt;}
.ws0_c00313{word-spacing:-9.408672pt;}
.ws2_c00313{word-spacing:-0.272544pt;}
.wsf_c00313{word-spacing:-0.083200pt;}
.ws2f_c00313{word-spacing:-0.025536pt;}
.ws30_c00313{word-spacing:-0.012768pt;}
.ws23_c00313{word-spacing:-0.006400pt;}
.ws3_c00313{word-spacing:0.000000pt;}
.ws2d_c00313{word-spacing:0.004256pt;}
.wse_c00313{word-spacing:0.006400pt;}
.ws31_c00313{word-spacing:0.012768pt;}
.ws1b_c00313{word-spacing:0.012800pt;}
.ws32_c00313{word-spacing:0.017024pt;}
.ws1c_c00313{word-spacing:0.025600pt;}
.ws1a_c00313{word-spacing:0.044800pt;}
.ws1f_c00313{word-spacing:0.076800pt;}
.ws24_c00313{word-spacing:0.160000pt;}
.ws2e_c00313{word-spacing:0.323456pt;}
.ws6_c00313{word-spacing:0.326400pt;}
.ws7_c00313{word-spacing:0.352000pt;}
.ws14_c00313{word-spacing:1.254400pt;}
.ws13_c00313{word-spacing:1.305600pt;}
.ws28_c00313{word-spacing:1.619200pt;}
.ws29_c00313{word-spacing:1.664000pt;}
.ws18_c00313{word-spacing:2.246400pt;}
.ws19_c00313{word-spacing:2.259200pt;}
.ws2b_c00313{word-spacing:2.534400pt;}
.ws2a_c00313{word-spacing:2.585600pt;}
.ws21_c00313{word-spacing:2.886400pt;}
.ws22_c00313{word-spacing:2.918400pt;}
.ws1e_c00313{word-spacing:3.507200pt;}
.ws1d_c00313{word-spacing:3.520000pt;}
.ws8_c00313{word-spacing:4.185600pt;}
.ws9_c00313{word-spacing:4.211200pt;}
.ws4_c00313{word-spacing:5.420800pt;}
.ws5_c00313{word-spacing:5.452800pt;}
.wsd_c00313{word-spacing:7.673600pt;}
.wsc_c00313{word-spacing:7.820800pt;}
.ws26_c00313{word-spacing:7.884800pt;}
.ws25_c00313{word-spacing:7.961600pt;}
.ws27_c00313{word-spacing:8.012800pt;}
.wsb_c00313{word-spacing:9.235200pt;}
.wsa_c00313{word-spacing:9.318400pt;}
.ws20_c00313{word-spacing:10.579200pt;}
.ws16_c00313{word-spacing:11.180800pt;}
.ws15_c00313{word-spacing:11.244800pt;}
.ws12_c00313{word-spacing:11.840000pt;}
.ws17_c00313{word-spacing:12.505600pt;}
.ws11_c00313{word-spacing:12.755200pt;}
.ws10_c00313{word-spacing:12.768000pt;}
.ws2c_c00313{word-spacing:26.566400pt;}
._0_c00313{margin-left:-0.908480pt;}
._1_c00313{width:0.960000pt;}
._2_c00313{width:2.956800pt;}
.fs5_c00313{font-size:34.560000pt;}
.fs3_c00313{font-size:37.440000pt;}
.fs4_c00313{font-size:42.560000pt;}
.fs2_c00313{font-size:48.000000pt;}
.fs0_c00313{font-size:53.440000pt;}
.fs1_c00313{font-size:64.000000pt;}
.y0_c00313{bottom:0.000000pt;}
.y3_c00313{bottom:51.067067pt;}
.y4_c00313{bottom:54.587067pt;}
.y23_c00313{bottom:101.065307pt;}
.y22_c00313{bottom:117.390427pt;}
.y21_c00313{bottom:133.630427pt;}
.y20_c00313{bottom:149.867067pt;}
.y1f_c00313{bottom:163.387200pt;}
.y1e_c00313{bottom:181.787200pt;}
.y1d_c00313{bottom:200.187067pt;}
.y1c_c00313{bottom:286.587067pt;}
.y1b_c00313{bottom:317.147067pt;}
.y1a_c00313{bottom:347.787067pt;}
.y19_c00313{bottom:378.347067pt;}
.y18_c00313{bottom:408.987067pt;}
.y17_c00313{bottom:447.547067pt;}
.y16_c00313{bottom:478.187067pt;}
.y15_c00313{bottom:508.747067pt;}
.y14_c00313{bottom:539.387067pt;}
.y13_c00313{bottom:569.947067pt;}
.y12_c00313{bottom:600.587067pt;}
.y11_c00313{bottom:639.147067pt;}
.y10_c00313{bottom:669.787067pt;}
.yf_c00313{bottom:700.347067pt;}
.ye_c00313{bottom:730.987067pt;}
.yd_c00313{bottom:761.547067pt;}
.yc_c00313{bottom:792.187067pt;}
.yb_c00313{bottom:822.747067pt;}
.ya_c00313{bottom:861.387067pt;}
.y9_c00313{bottom:891.947067pt;}
.y8_c00313{bottom:922.587067pt;}
.y7_c00313{bottom:953.147067pt;}
.y6_c00313{bottom:983.787067pt;}
.y5_c00313{bottom:1014.347067pt;}
.y2_c00313{bottom:1043.387067pt;}
.y1_c00313{bottom:1063.867067pt;}
.h2_c00313{height:42.656250pt;}
.h9_c00313{height:42.656783pt;}
.ha_c00313{height:44.388750pt;}
.hb_c00313{height:44.395790pt;}
.h1_c00313{height:44.724687pt;}
.h3_c00313{height:50.062500pt;}
.h5_c00313{height:53.562500pt;}
.h7_c00313{height:54.125000pt;}
.h6_c00313{height:57.894062pt;}
.h8_c00313{height:57.894596pt;}
.h4_c00313{height:66.750000pt;}
.h0_c00313{height:1122.666667pt;}
.w1_c00313{width:793.333333pt;}
.w0_c00313{width:793.626667pt;}
.x0_c00313{left:0.000000pt;}
.x2_c00313{left:113.440000pt;}
.x5_c00313{left:137.440000pt;}
.x6_c00313{left:161.440000pt;}
.x7_c00313{left:183.840000pt;}
.x4_c00313{left:386.880000pt;}
.x3_c00313{left:396.880000pt;}
.x1_c00313{left:436.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_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_0b394be026c97447a486c5fd.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.100098;font-style:normal;font-weight:normal;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_b460334252012d74200fac68.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;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_c00314;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00314;src:url('chunks/assets/font_7a6041b5bd29e5cfc6c4f241.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00314;src:url('chunks/assets/font_b4e165f04784b4f77c3979b3.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;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_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;}
.v1_c00314{vertical-align:15.840000px;}
.v2_c00314{vertical-align:29.880000px;}
.lse_c00314{letter-spacing:-0.151200px;}
.ls14_c00314{letter-spacing:-0.043200px;}
.ls13_c00314{letter-spacing:-0.036000px;}
.ls11_c00314{letter-spacing:-0.028800px;}
.ls12_c00314{letter-spacing:-0.021600px;}
.lsf_c00314{letter-spacing:-0.014400px;}
.ls16_c00314{letter-spacing:-0.011664px;}
.ls15_c00314{letter-spacing:-0.007200px;}
.ls17_c00314{letter-spacing:-0.003888px;}
.lsd_c00314{letter-spacing:0.000000px;}
.lsb_c00314{letter-spacing:0.004788px;}
.ls2_c00314{letter-spacing:0.007200px;}
.ls7_c00314{letter-spacing:0.014364px;}
.ls6_c00314{letter-spacing:0.014400px;}
.ls9_c00314{letter-spacing:0.028728px;}
.lsc_c00314{letter-spacing:0.033516px;}
.lsa_c00314{letter-spacing:0.047880px;}
.ls0_c00314{letter-spacing:0.048096px;}
.ls3_c00314{letter-spacing:0.054756px;}
.ls10_c00314{letter-spacing:0.093600px;}
.ls4_c00314{letter-spacing:0.144000px;}
.ls8_c00314{letter-spacing:0.464040px;}
.ls5_c00314{letter-spacing:65.304000px;}
.ls1_c00314{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00314{word-spacing:-17.985600px;}
.ws2_c00314{word-spacing:-17.978400px;}
.ws3_c00314{word-spacing:-10.804752px;}
.ws0_c00314{word-spacing:-10.584756px;}
.ws7_c00314{word-spacing:-0.093600px;}
.ws27_c00314{word-spacing:-0.028728px;}
.ws22_c00314{word-spacing:-0.014400px;}
.ws29_c00314{word-spacing:-0.014364px;}
.ws25_c00314{word-spacing:-0.009576px;}
.ws5_c00314{word-spacing:0.000000px;}
.ws23_c00314{word-spacing:0.004788px;}
.ws28_c00314{word-spacing:0.014364px;}
.ws24_c00314{word-spacing:0.019152px;}
.ws18_c00314{word-spacing:0.021600px;}
.ws4_c00314{word-spacing:0.042084px;}
.ws14_c00314{word-spacing:0.273600px;}
.ws26_c00314{word-spacing:0.363888px;}
.ws1d_c00314{word-spacing:0.381600px;}
.ws6_c00314{word-spacing:2.174400px;}
.wsd_c00314{word-spacing:2.534400px;}
.ws8_c00314{word-spacing:3.189600px;}
.ws9_c00314{word-spacing:3.268800px;}
.ws12_c00314{word-spacing:5.428800px;}
.ws21_c00314{word-spacing:5.796000px;}
.wsf_c00314{word-spacing:6.105600px;}
.ws10_c00314{word-spacing:6.141600px;}
.ws11_c00314{word-spacing:6.256800px;}
.ws20_c00314{word-spacing:8.647200px;}
.wsc_c00314{word-spacing:10.080000px;}
.ws1a_c00314{word-spacing:12.254400px;}
.ws17_c00314{word-spacing:15.883200px;}
.ws13_c00314{word-spacing:18.770400px;}
.ws16_c00314{word-spacing:19.454400px;}
.ws15_c00314{word-spacing:19.533600px;}
.ws1e_c00314{word-spacing:20.174400px;}
.ws1f_c00314{word-spacing:20.534400px;}
.wsb_c00314{word-spacing:21.600000px;}
.wsa_c00314{word-spacing:21.614400px;}
.ws19_c00314{word-spacing:21.628800px;}
.ws1c_c00314{word-spacing:29.217600px;}
.ws1b_c00314{word-spacing:29.275200px;}
.wse_c00314{word-spacing:37.432800px;}
._0_c00314{margin-left:-1.322640px;}
._1_c00314{width:1.425600px;}
._2_c00314{width:63.266400px;}
.fc0_c00314{color:rgb(0,0,0);}
.fs5_c00314{font-size:38.880000px;}
.fs3_c00314{font-size:42.120000px;}
.fs4_c00314{font-size:47.880000px;}
.fs1_c00314{font-size:54.000000px;}
.fs0_c00314{font-size:60.120000px;}
.fs2_c00314{font-size:72.000000px;}
.y0_c00314{bottom:0.000000px;}
.y3_c00314{bottom:57.450450px;}
.y22_c00314{bottom:113.698470px;}
.y21_c00314{bottom:132.064230px;}
.y20_c00314{bottom:150.334230px;}
.y1f_c00314{bottom:168.600450px;}
.y1e_c00314{bottom:183.810600px;}
.y1d_c00314{bottom:204.510600px;}
.y1c_c00314{bottom:225.210450px;}
.y1b_c00314{bottom:313.410450px;}
.y1a_c00314{bottom:347.790450px;}
.y19_c00314{bottom:382.260450px;}
.y18_c00314{bottom:416.640450px;}
.y17_c00314{bottom:451.110450px;}
.y16_c00314{bottom:485.490450px;}
.y15_c00314{bottom:519.960450px;}
.y14_c00314{bottom:554.340450px;}
.y13_c00314{bottom:588.810450px;}
.y12_c00314{bottom:632.190450px;}
.y11_c00314{bottom:666.660450px;}
.y10_c00314{bottom:701.040450px;}
.yf_c00314{bottom:744.510450px;}
.ye_c00314{bottom:778.890450px;}
.yd_c00314{bottom:813.360450px;}
.yc_c00314{bottom:847.740450px;}
.yb_c00314{bottom:891.210450px;}
.ya_c00314{bottom:925.590450px;}
.y9_c00314{bottom:960.060450px;}
.y8_c00314{bottom:994.440450px;}
.y7_c00314{bottom:1028.910450px;}
.y6_c00314{bottom:1063.290450px;}
.y5_c00314{bottom:1106.760450px;}
.y4_c00314{bottom:1141.140450px;}
.y2_c00314{bottom:1177.860450px;}
.y1_c00314{bottom:1196.850450px;}
.h8_c00314{height:47.988281px;}
.h7_c00314{height:47.988881px;}
.h9_c00314{height:49.937344px;}
.ha_c00314{height:49.945264px;}
.h1_c00314{height:50.315273px;}
.h2_c00314{height:56.320312px;}
.h4_c00314{height:60.257812px;}
.h5_c00314{height:65.130820px;}
.h3_c00314{height:72.160312px;}
.h6_c00314{height:75.093750px;}
.h0_c00314{height:1263.000000px;}
.w1_c00314{width:892.500000px;}
.w0_c00314{width:892.830000px;}
.x0_c00314{left:0.000000px;}
.x1_c00314{left:127.620000px;}
.x4_c00314{left:154.620000px;}
.x2_c00314{left:180.720000px;}
.x3_c00314{left:206.820000px;}
.x5_c00314{left:208.620000px;}
.x6_c00314{left:235.620000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.v1_c00314{vertical-align:14.080000pt;}
.v2_c00314{vertical-align:26.560000pt;}
.lse_c00314{letter-spacing:-0.134400pt;}
.ls14_c00314{letter-spacing:-0.038400pt;}
.ls13_c00314{letter-spacing:-0.032000pt;}
.ls11_c00314{letter-spacing:-0.025600pt;}
.ls12_c00314{letter-spacing:-0.019200pt;}
.lsf_c00314{letter-spacing:-0.012800pt;}
.ls16_c00314{letter-spacing:-0.010368pt;}
.ls15_c00314{letter-spacing:-0.006400pt;}
.ls17_c00314{letter-spacing:-0.003456pt;}
.lsd_c00314{letter-spacing:0.000000pt;}
.lsb_c00314{letter-spacing:0.004256pt;}
.ls2_c00314{letter-spacing:0.006400pt;}
.ls7_c00314{letter-spacing:0.012768pt;}
.ls6_c00314{letter-spacing:0.012800pt;}
.ls9_c00314{letter-spacing:0.025536pt;}
.lsc_c00314{letter-spacing:0.029792pt;}
.lsa_c00314{letter-spacing:0.042560pt;}
.ls0_c00314{letter-spacing:0.042752pt;}
.ls3_c00314{letter-spacing:0.048672pt;}
.ls10_c00314{letter-spacing:0.083200pt;}
.ls4_c00314{letter-spacing:0.128000pt;}
.ls8_c00314{letter-spacing:0.412480pt;}
.ls5_c00314{letter-spacing:58.048000pt;}
.ls1_c00314{letter-spacing:1077.440000pt;}
.ws1_c00314{word-spacing:-15.987200pt;}
.ws2_c00314{word-spacing:-15.980800pt;}
.ws3_c00314{word-spacing:-9.604224pt;}
.ws0_c00314{word-spacing:-9.408672pt;}
.ws7_c00314{word-spacing:-0.083200pt;}
.ws27_c00314{word-spacing:-0.025536pt;}
.ws22_c00314{word-spacing:-0.012800pt;}
.ws29_c00314{word-spacing:-0.012768pt;}
.ws25_c00314{word-spacing:-0.008512pt;}
.ws5_c00314{word-spacing:0.000000pt;}
.ws23_c00314{word-spacing:0.004256pt;}
.ws28_c00314{word-spacing:0.012768pt;}
.ws24_c00314{word-spacing:0.017024pt;}
.ws18_c00314{word-spacing:0.019200pt;}
.ws4_c00314{word-spacing:0.037408pt;}
.ws14_c00314{word-spacing:0.243200pt;}
.ws26_c00314{word-spacing:0.323456pt;}
.ws1d_c00314{word-spacing:0.339200pt;}
.ws6_c00314{word-spacing:1.932800pt;}
.wsd_c00314{word-spacing:2.252800pt;}
.ws8_c00314{word-spacing:2.835200pt;}
.ws9_c00314{word-spacing:2.905600pt;}
.ws12_c00314{word-spacing:4.825600pt;}
.ws21_c00314{word-spacing:5.152000pt;}
.wsf_c00314{word-spacing:5.427200pt;}
.ws10_c00314{word-spacing:5.459200pt;}
.ws11_c00314{word-spacing:5.561600pt;}
.ws20_c00314{word-spacing:7.686400pt;}
.wsc_c00314{word-spacing:8.960000pt;}
.ws1a_c00314{word-spacing:10.892800pt;}
.ws17_c00314{word-spacing:14.118400pt;}
.ws13_c00314{word-spacing:16.684800pt;}
.ws16_c00314{word-spacing:17.292800pt;}
.ws15_c00314{word-spacing:17.363200pt;}
.ws1e_c00314{word-spacing:17.932800pt;}
.ws1f_c00314{word-spacing:18.252800pt;}
.wsb_c00314{word-spacing:19.200000pt;}
.wsa_c00314{word-spacing:19.212800pt;}
.ws19_c00314{word-spacing:19.225600pt;}
.ws1c_c00314{word-spacing:25.971200pt;}
.ws1b_c00314{word-spacing:26.022400pt;}
.wse_c00314{word-spacing:33.273600pt;}
._0_c00314{margin-left:-1.175680pt;}
._1_c00314{width:1.267200pt;}
._2_c00314{width:56.236800pt;}
.fs5_c00314{font-size:34.560000pt;}
.fs3_c00314{font-size:37.440000pt;}
.fs4_c00314{font-size:42.560000pt;}
.fs1_c00314{font-size:48.000000pt;}
.fs0_c00314{font-size:53.440000pt;}
.fs2_c00314{font-size:64.000000pt;}
.y0_c00314{bottom:0.000000pt;}
.y3_c00314{bottom:51.067067pt;}
.y22_c00314{bottom:101.065307pt;}
.y21_c00314{bottom:117.390427pt;}
.y20_c00314{bottom:133.630427pt;}
.y1f_c00314{bottom:149.867067pt;}
.y1e_c00314{bottom:163.387200pt;}
.y1d_c00314{bottom:181.787200pt;}
.y1c_c00314{bottom:200.187067pt;}
.y1b_c00314{bottom:278.587067pt;}
.y1a_c00314{bottom:309.147067pt;}
.y19_c00314{bottom:339.787067pt;}
.y18_c00314{bottom:370.347067pt;}
.y17_c00314{bottom:400.987067pt;}
.y16_c00314{bottom:431.547067pt;}
.y15_c00314{bottom:462.187067pt;}
.y14_c00314{bottom:492.747067pt;}
.y13_c00314{bottom:523.387067pt;}
.y12_c00314{bottom:561.947067pt;}
.y11_c00314{bottom:592.587067pt;}
.y10_c00314{bottom:623.147067pt;}
.yf_c00314{bottom:661.787067pt;}
.ye_c00314{bottom:692.347067pt;}
.yd_c00314{bottom:722.987067pt;}
.yc_c00314{bottom:753.547067pt;}
.yb_c00314{bottom:792.187067pt;}
.ya_c00314{bottom:822.747067pt;}
.y9_c00314{bottom:853.387067pt;}
.y8_c00314{bottom:883.947067pt;}
.y7_c00314{bottom:914.587067pt;}
.y6_c00314{bottom:945.147067pt;}
.y5_c00314{bottom:983.787067pt;}
.y4_c00314{bottom:1014.347067pt;}
.y2_c00314{bottom:1046.987067pt;}
.y1_c00314{bottom:1063.867067pt;}
.h8_c00314{height:42.656250pt;}
.h7_c00314{height:42.656783pt;}
.h9_c00314{height:44.388750pt;}
.ha_c00314{height:44.395790pt;}
.h1_c00314{height:44.724687pt;}
.h2_c00314{height:50.062500pt;}
.h4_c00314{height:53.562500pt;}
.h5_c00314{height:57.894063pt;}
.h3_c00314{height:64.142500pt;}
.h6_c00314{height:66.750000pt;}
.h0_c00314{height:1122.666667pt;}
.w1_c00314{width:793.333333pt;}
.w0_c00314{width:793.626667pt;}
.x0_c00314{left:0.000000pt;}
.x1_c00314{left:113.440000pt;}
.x4_c00314{left:137.440000pt;}
.x2_c00314{left:160.640000pt;}
.x3_c00314{left:183.840000pt;}
.x5_c00314{left:185.440000pt;}
.x6_c00314{left:209.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_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_43877fcb8cd6753c4da62abc.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00315;src:url('chunks/assets/font_56c53e411d6bf1084833c5d8.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00315;src:url('chunks/assets/font_5fac5dd66f36b71051a69b74.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00315;src:url('chunks/assets/font_2b9f5d11ceb1849a2c1fda46.woff2')format("woff");}.ff5_c00315{font-family:ff5_c00315;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_c00315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.v1_c00315{vertical-align:29.880000px;}
.lsb_c00315{letter-spacing:-0.151200px;}
.ls14_c00315{letter-spacing:-0.064800px;}
.lsf_c00315{letter-spacing:-0.050400px;}
.ls12_c00315{letter-spacing:-0.036000px;}
.lse_c00315{letter-spacing:-0.028800px;}
.lsc_c00315{letter-spacing:-0.021600px;}
.lsd_c00315{letter-spacing:-0.014400px;}
.ls11_c00315{letter-spacing:-0.007200px;}
.ls16_c00315{letter-spacing:-0.003888px;}
.lsa_c00315{letter-spacing:0.000000px;}
.ls8_c00315{letter-spacing:0.004788px;}
.ls2_c00315{letter-spacing:0.007200px;}
.ls9_c00315{letter-spacing:0.009576px;}
.ls4_c00315{letter-spacing:0.014364px;}
.ls3_c00315{letter-spacing:0.014400px;}
.ls13_c00315{letter-spacing:0.021600px;}
.ls7_c00315{letter-spacing:0.033516px;}
.ls0_c00315{letter-spacing:0.036072px;}
.ls6_c00315{letter-spacing:0.047880px;}
.ls1_c00315{letter-spacing:0.054756px;}
.ls10_c00315{letter-spacing:0.093600px;}
.ls15_c00315{letter-spacing:0.108000px;}
.ls5_c00315{letter-spacing:0.464040px;}
.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;}
}
.ws1_c00315{word-spacing:-10.804752px;}
.ws0_c00315{word-spacing:-10.584756px;}
.ws2_c00315{word-spacing:-0.306612px;}
.ws2c_c00315{word-spacing:-0.028728px;}
.ws2d_c00315{word-spacing:-0.014364px;}
.ws3_c00315{word-spacing:0.000000px;}
.ws2a_c00315{word-spacing:0.004788px;}
.ws2f_c00315{word-spacing:0.009576px;}
.ws2e_c00315{word-spacing:0.014364px;}
.ws6_c00315{word-spacing:0.014400px;}
.ws1f_c00315{word-spacing:0.021600px;}
.ws8_c00315{word-spacing:0.028800px;}
.ws24_c00315{word-spacing:0.043200px;}
.ws9_c00315{word-spacing:0.050400px;}
.ws23_c00315{word-spacing:0.064800px;}
.ws14_c00315{word-spacing:0.180000px;}
.ws13_c00315{word-spacing:0.273600px;}
.ws2b_c00315{word-spacing:0.363888px;}
.ws1c_c00315{word-spacing:0.698400px;}
.ws1b_c00315{word-spacing:0.777600px;}
.ws4_c00315{word-spacing:0.813600px;}
.ws5_c00315{word-spacing:0.835200px;}
.ws26_c00315{word-spacing:1.065600px;}
.ws27_c00315{word-spacing:1.159200px;}
.ws1d_c00315{word-spacing:1.396800px;}
.ws1e_c00315{word-spacing:1.447200px;}
.wse_c00315{word-spacing:2.880000px;}
.wsf_c00315{word-spacing:2.980800px;}
.ws12_c00315{word-spacing:3.168000px;}
.ws7_c00315{word-spacing:3.240000px;}
.ws11_c00315{word-spacing:3.988800px;}
.wsc_c00315{word-spacing:4.024800px;}
.ws10_c00315{word-spacing:4.039200px;}
.wsd_c00315{word-spacing:4.125600px;}
.ws22_c00315{word-spacing:7.452000px;}
.ws20_c00315{word-spacing:7.552800px;}
.ws21_c00315{word-spacing:7.740000px;}
.wsb_c00315{word-spacing:9.360000px;}
.wsa_c00315{word-spacing:9.374400px;}
.ws1a_c00315{word-spacing:9.698400px;}
.ws19_c00315{word-spacing:9.741600px;}
.ws18_c00315{word-spacing:11.066400px;}
.ws17_c00315{word-spacing:11.188800px;}
.ws29_c00315{word-spacing:12.960000px;}
.ws28_c00315{word-spacing:12.996000px;}
.ws25_c00315{word-spacing:16.200000px;}
.ws16_c00315{word-spacing:18.381600px;}
.ws15_c00315{word-spacing:23.378400px;}
._0_c00315{margin-left:-1.022040px;}
._2_c00315{width:1.008000px;}
._1_c00315{width:63.284400px;}
.fc0_c00315{color:rgb(0,0,0);}
.fs5_c00315{font-size:38.880000px;}
.fs3_c00315{font-size:42.120000px;}
.fs4_c00315{font-size:47.880000px;}
.fs2_c00315{font-size:54.000000px;}
.fs0_c00315{font-size:60.120000px;}
.fs1_c00315{font-size:72.000000px;}
.y0_c00315{bottom:0.000000px;}
.y3_c00315{bottom:57.450450px;}
.y4_c00315{bottom:61.410450px;}
.y22_c00315{bottom:113.698470px;}
.y21_c00315{bottom:132.064230px;}
.y20_c00315{bottom:150.334230px;}
.y1f_c00315{bottom:168.600450px;}
.y1e_c00315{bottom:183.810600px;}
.y1d_c00315{bottom:204.510600px;}
.y1c_c00315{bottom:225.210600px;}
.y1b_c00315{bottom:328.980600px;}
.y1a_c00315{bottom:359.400600px;}
.y19_c00315{bottom:389.730600px;}
.y18_c00315{bottom:442.110600px;}
.y17_c00315{bottom:476.490600px;}
.y16_c00315{bottom:519.960600px;}
.y15_c00315{bottom:554.340600px;}
.y14_c00315{bottom:588.810600px;}
.y13_c00315{bottom:623.190600px;}
.y12_c00315{bottom:657.660600px;}
.y11_c00315{bottom:701.040600px;}
.y10_c00315{bottom:735.510600px;}
.yf_c00315{bottom:769.890600px;}
.ye_c00315{bottom:813.360450px;}
.yd_c00315{bottom:847.740450px;}
.yc_c00315{bottom:882.210450px;}
.yb_c00315{bottom:916.590450px;}
.ya_c00315{bottom:951.060450px;}
.y9_c00315{bottom:985.440450px;}
.y8_c00315{bottom:1028.910450px;}
.y7_c00315{bottom:1063.290450px;}
.y6_c00315{bottom:1106.760450px;}
.y5_c00315{bottom:1141.140450px;}
.y2_c00315{bottom:1173.810450px;}
.y1_c00315{bottom:1196.850450px;}
.h2_c00315{height:47.988281px;}
.h8_c00315{height:49.937344px;}
.h1_c00315{height:50.315273px;}
.h3_c00315{height:56.320312px;}
.h4_c00315{height:60.257812px;}
.h6_c00315{height:60.890625px;}
.h7_c00315{height:65.130220px;}
.h5_c00315{height:65.130820px;}
.h0_c00315{height:1263.000000px;}
.w1_c00315{width:892.500000px;}
.w0_c00315{width:892.830000px;}
.x0_c00315{left:0.000000px;}
.x2_c00315{left:127.620000px;}
.x7_c00315{left:180.720000px;}
.x8_c00315{left:206.730000px;}
.x5_c00315{left:208.615500px;}
.x6_c00315{left:235.620000px;}
.x4_c00315{left:435.240000px;}
.x3_c00315{left:446.490000px;}
.x1_c00315{left:490.770000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.v1_c00315{vertical-align:26.560000pt;}
.lsb_c00315{letter-spacing:-0.134400pt;}
.ls14_c00315{letter-spacing:-0.057600pt;}
.lsf_c00315{letter-spacing:-0.044800pt;}
.ls12_c00315{letter-spacing:-0.032000pt;}
.lse_c00315{letter-spacing:-0.025600pt;}
.lsc_c00315{letter-spacing:-0.019200pt;}
.lsd_c00315{letter-spacing:-0.012800pt;}
.ls11_c00315{letter-spacing:-0.006400pt;}
.ls16_c00315{letter-spacing:-0.003456pt;}
.lsa_c00315{letter-spacing:0.000000pt;}
.ls8_c00315{letter-spacing:0.004256pt;}
.ls2_c00315{letter-spacing:0.006400pt;}
.ls9_c00315{letter-spacing:0.008512pt;}
.ls4_c00315{letter-spacing:0.012768pt;}
.ls3_c00315{letter-spacing:0.012800pt;}
.ls13_c00315{letter-spacing:0.019200pt;}
.ls7_c00315{letter-spacing:0.029792pt;}
.ls0_c00315{letter-spacing:0.032064pt;}
.ls6_c00315{letter-spacing:0.042560pt;}
.ls1_c00315{letter-spacing:0.048672pt;}
.ls10_c00315{letter-spacing:0.083200pt;}
.ls15_c00315{letter-spacing:0.096000pt;}
.ls5_c00315{letter-spacing:0.412480pt;}
.ws1_c00315{word-spacing:-9.604224pt;}
.ws0_c00315{word-spacing:-9.408672pt;}
.ws2_c00315{word-spacing:-0.272544pt;}
.ws2c_c00315{word-spacing:-0.025536pt;}
.ws2d_c00315{word-spacing:-0.012768pt;}
.ws3_c00315{word-spacing:0.000000pt;}
.ws2a_c00315{word-spacing:0.004256pt;}
.ws2f_c00315{word-spacing:0.008512pt;}
.ws2e_c00315{word-spacing:0.012768pt;}
.ws6_c00315{word-spacing:0.012800pt;}
.ws1f_c00315{word-spacing:0.019200pt;}
.ws8_c00315{word-spacing:0.025600pt;}
.ws24_c00315{word-spacing:0.038400pt;}
.ws9_c00315{word-spacing:0.044800pt;}
.ws23_c00315{word-spacing:0.057600pt;}
.ws14_c00315{word-spacing:0.160000pt;}
.ws13_c00315{word-spacing:0.243200pt;}
.ws2b_c00315{word-spacing:0.323456pt;}
.ws1c_c00315{word-spacing:0.620800pt;}
.ws1b_c00315{word-spacing:0.691200pt;}
.ws4_c00315{word-spacing:0.723200pt;}
.ws5_c00315{word-spacing:0.742400pt;}
.ws26_c00315{word-spacing:0.947200pt;}
.ws27_c00315{word-spacing:1.030400pt;}
.ws1d_c00315{word-spacing:1.241600pt;}
.ws1e_c00315{word-spacing:1.286400pt;}
.wse_c00315{word-spacing:2.560000pt;}
.wsf_c00315{word-spacing:2.649600pt;}
.ws12_c00315{word-spacing:2.816000pt;}
.ws7_c00315{word-spacing:2.880000pt;}
.ws11_c00315{word-spacing:3.545600pt;}
.wsc_c00315{word-spacing:3.577600pt;}
.ws10_c00315{word-spacing:3.590400pt;}
.wsd_c00315{word-spacing:3.667200pt;}
.ws22_c00315{word-spacing:6.624000pt;}
.ws20_c00315{word-spacing:6.713600pt;}
.ws21_c00315{word-spacing:6.880000pt;}
.wsb_c00315{word-spacing:8.320000pt;}
.wsa_c00315{word-spacing:8.332800pt;}
.ws1a_c00315{word-spacing:8.620800pt;}
.ws19_c00315{word-spacing:8.659200pt;}
.ws18_c00315{word-spacing:9.836800pt;}
.ws17_c00315{word-spacing:9.945600pt;}
.ws29_c00315{word-spacing:11.520000pt;}
.ws28_c00315{word-spacing:11.552000pt;}
.ws25_c00315{word-spacing:14.400000pt;}
.ws16_c00315{word-spacing:16.339200pt;}
.ws15_c00315{word-spacing:20.780800pt;}
._0_c00315{margin-left:-0.908480pt;}
._2_c00315{width:0.896000pt;}
._1_c00315{width:56.252800pt;}
.fs5_c00315{font-size:34.560000pt;}
.fs3_c00315{font-size:37.440000pt;}
.fs4_c00315{font-size:42.560000pt;}
.fs2_c00315{font-size:48.000000pt;}
.fs0_c00315{font-size:53.440000pt;}
.fs1_c00315{font-size:64.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y3_c00315{bottom:51.067067pt;}
.y4_c00315{bottom:54.587067pt;}
.y22_c00315{bottom:101.065307pt;}
.y21_c00315{bottom:117.390427pt;}
.y20_c00315{bottom:133.630427pt;}
.y1f_c00315{bottom:149.867067pt;}
.y1e_c00315{bottom:163.387200pt;}
.y1d_c00315{bottom:181.787200pt;}
.y1c_c00315{bottom:200.187200pt;}
.y1b_c00315{bottom:292.427200pt;}
.y1a_c00315{bottom:319.467200pt;}
.y19_c00315{bottom:346.427200pt;}
.y18_c00315{bottom:392.987200pt;}
.y17_c00315{bottom:423.547200pt;}
.y16_c00315{bottom:462.187200pt;}
.y15_c00315{bottom:492.747200pt;}
.y14_c00315{bottom:523.387200pt;}
.y13_c00315{bottom:553.947200pt;}
.y12_c00315{bottom:584.587200pt;}
.y11_c00315{bottom:623.147200pt;}
.y10_c00315{bottom:653.787200pt;}
.yf_c00315{bottom:684.347200pt;}
.ye_c00315{bottom:722.987067pt;}
.yd_c00315{bottom:753.547067pt;}
.yc_c00315{bottom:784.187067pt;}
.yb_c00315{bottom:814.747067pt;}
.ya_c00315{bottom:845.387067pt;}
.y9_c00315{bottom:875.947067pt;}
.y8_c00315{bottom:914.587067pt;}
.y7_c00315{bottom:945.147067pt;}
.y6_c00315{bottom:983.787067pt;}
.y5_c00315{bottom:1014.347067pt;}
.y2_c00315{bottom:1043.387067pt;}
.y1_c00315{bottom:1063.867067pt;}
.h2_c00315{height:42.656250pt;}
.h8_c00315{height:44.388750pt;}
.h1_c00315{height:44.724687pt;}
.h3_c00315{height:50.062500pt;}
.h4_c00315{height:53.562500pt;}
.h6_c00315{height:54.125000pt;}
.h7_c00315{height:57.893529pt;}
.h5_c00315{height:57.894063pt;}
.h0_c00315{height:1122.666667pt;}
.w1_c00315{width:793.333333pt;}
.w0_c00315{width:793.626667pt;}
.x0_c00315{left:0.000000pt;}
.x2_c00315{left:113.440000pt;}
.x7_c00315{left:160.640000pt;}
.x8_c00315{left:183.760000pt;}
.x5_c00315{left:185.436000pt;}
.x6_c00315{left:209.440000pt;}
.x4_c00315{left:386.880000pt;}
.x3_c00315{left:396.880000pt;}
.x1_c00315{left:436.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_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_e8afe1193b78e0be96879516.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.100098;font-style:normal;font-weight:normal;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_a3abeb9ba48ce1eefb9c8d9a.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;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_c00316;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00316;src:url('chunks/assets/font_9aaa45ed9b23c0ba247cc078.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00316;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00316{font-family:ff5_c00316;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_c00316;src:url('chunks/assets/font_749e3934a6340b973d11615e.woff2')format("woff");}.ff6_c00316{font-family:ff6_c00316;line-height:1.102051;font-style:normal;font-weight:normal;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_6b0dcf65239c2491f85997bb.woff2')format("woff");}.ff7_c00316{font-family:ff7_c00316;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_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.v1_c00316{vertical-align:15.840000px;}
.v2_c00316{vertical-align:29.880000px;}
.ls14_c00316{letter-spacing:-0.151200px;}
.ls1d_c00316{letter-spacing:-0.057600px;}
.ls1a_c00316{letter-spacing:-0.036000px;}
.ls19_c00316{letter-spacing:-0.028800px;}
.ls1b_c00316{letter-spacing:-0.021600px;}
.ls18_c00316{letter-spacing:-0.015624px;}
.ls15_c00316{letter-spacing:-0.014400px;}
.ls1f_c00316{letter-spacing:-0.011664px;}
.ls17_c00316{letter-spacing:-0.007200px;}
.ls20_c00316{letter-spacing:-0.003888px;}
.ls13_c00316{letter-spacing:0.000000px;}
.ls12_c00316{letter-spacing:0.004788px;}
.ls8_c00316{letter-spacing:0.007200px;}
.ls5_c00316{letter-spacing:0.007812px;}
.lsc_c00316{letter-spacing:0.009576px;}
.lsf_c00316{letter-spacing:0.014364px;}
.ls3_c00316{letter-spacing:0.014400px;}
.lsa_c00316{letter-spacing:0.021600px;}
.lse_c00316{letter-spacing:0.028728px;}
.ls1c_c00316{letter-spacing:0.028800px;}
.ls10_c00316{letter-spacing:0.038304px;}
.ls11_c00316{letter-spacing:0.047880px;}
.ls0_c00316{letter-spacing:0.048096px;}
.ls2_c00316{letter-spacing:0.054756px;}
.lsb_c00316{letter-spacing:0.072000px;}
.ls16_c00316{letter-spacing:0.093600px;}
.ls6_c00316{letter-spacing:0.144000px;}
.ls1e_c00316{letter-spacing:0.446400px;}
.lsd_c00316{letter-spacing:0.464040px;}
.ls4_c00316{letter-spacing:31.560480px;}
.ls7_c00316{letter-spacing:65.304000px;}
.ls9_c00316{letter-spacing:66.024000px;}
.ls1_c00316{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00316{word-spacing:-19.514376px;}
.ws4_c00316{word-spacing:-18.021600px;}
.ws2_c00316{word-spacing:-18.014400px;}
.ws3_c00316{word-spacing:-18.007200px;}
.ws5_c00316{word-spacing:-13.320216px;}
.ws6_c00316{word-spacing:-13.310640px;}
.ws7_c00316{word-spacing:-10.808640px;}
.ws8_c00316{word-spacing:-10.804752px;}
.ws0_c00316{word-spacing:-10.584756px;}
.ws14_c00316{word-spacing:-0.140616px;}
.ws13_c00316{word-spacing:-0.093600px;}
.wsd_c00316{word-spacing:-0.086400px;}
.ws20_c00316{word-spacing:-0.028800px;}
.ws2d_c00316{word-spacing:-0.028728px;}
.ws2b_c00316{word-spacing:-0.019152px;}
.ws12_c00316{word-spacing:-0.014400px;}
.ws29_c00316{word-spacing:-0.009576px;}
.ws25_c00316{word-spacing:-0.007200px;}
.wsa_c00316{word-spacing:0.000000px;}
.ws2a_c00316{word-spacing:0.004788px;}
.ws1e_c00316{word-spacing:0.007200px;}
.ws2f_c00316{word-spacing:0.009576px;}
.ws2e_c00316{word-spacing:0.014364px;}
.wsc_c00316{word-spacing:0.014400px;}
.ws28_c00316{word-spacing:0.019152px;}
.ws1f_c00316{word-spacing:0.021600px;}
.ws1b_c00316{word-spacing:0.036000px;}
.ws9_c00316{word-spacing:0.042084px;}
.ws24_c00316{word-spacing:0.093600px;}
.ws2c_c00316{word-spacing:0.363888px;}
.ws1a_c00316{word-spacing:1.785600px;}
.ws19_c00316{word-spacing:1.929600px;}
.ws17_c00316{word-spacing:2.124000px;}
.ws18_c00316{word-spacing:2.145600px;}
.ws15_c00316{word-spacing:4.269600px;}
.ws16_c00316{word-spacing:4.348800px;}
.ws26_c00316{word-spacing:4.672800px;}
.ws10_c00316{word-spacing:4.687200px;}
.ws11_c00316{word-spacing:4.737600px;}
.ws23_c00316{word-spacing:8.647200px;}
.wsb_c00316{word-spacing:9.036000px;}
.wsf_c00316{word-spacing:11.088000px;}
.wse_c00316{word-spacing:11.102400px;}
.ws27_c00316{word-spacing:12.621600px;}
.ws22_c00316{word-spacing:15.847200px;}
.ws21_c00316{word-spacing:15.919200px;}
.ws1d_c00316{word-spacing:17.683200px;}
.ws1c_c00316{word-spacing:17.690400px;}
._0_c00316{margin-left:-1.322640px;}
._1_c00316{width:1.008000px;}
.fc0_c00316{color:rgb(0,0,0);}
.fs6_c00316{font-size:38.880000px;}
.fs3_c00316{font-size:42.120000px;}
.fs5_c00316{font-size:47.880000px;}
.fs1_c00316{font-size:54.000000px;}
.fs0_c00316{font-size:60.120000px;}
.fs2_c00316{font-size:72.000000px;}
.fs4_c00316{font-size:78.120000px;}
.y0_c00316{bottom:0.000000px;}
.y3_c00316{bottom:57.450450px;}
.y22_c00316{bottom:113.702250px;}
.y21_c00316{bottom:132.064230px;}
.y20_c00316{bottom:150.332400px;}
.y1f_c00316{bottom:168.598620px;}
.y1e_c00316{bottom:186.964230px;}
.y1d_c00316{bottom:205.230450px;}
.y1c_c00316{bottom:220.440450px;}
.y1b_c00316{bottom:241.140450px;}
.y1a_c00316{bottom:261.840450px;}
.y19_c00316{bottom:345.630450px;}
.y18_c00316{bottom:380.010450px;}
.y17_c00316{bottom:432.480450px;}
.y16_c00316{bottom:466.860450px;}
.y15_c00316{bottom:510.330450px;}
.y14_c00316{bottom:544.710450px;}
.y13_c00316{bottom:588.180450px;}
.y12_c00316{bottom:622.560450px;}
.y11_c00316{bottom:666.030450px;}
.y10_c00316{bottom:709.410450px;}
.yf_c00316{bottom:743.880450px;}
.ye_c00316{bottom:778.260450px;}
.yd_c00316{bottom:812.730450px;}
.yc_c00316{bottom:856.110450px;}
.yb_c00316{bottom:890.580450px;}
.ya_c00316{bottom:924.960450px;}
.y9_c00316{bottom:970.050450px;}
.y8_c00316{bottom:1019.730450px;}
.y7_c00316{bottom:1050.150450px;}
.y6_c00316{bottom:1080.480450px;}
.y5_c00316{bottom:1110.900450px;}
.y4_c00316{bottom:1141.230450px;}
.y2_c00316{bottom:1177.860450px;}
.y1_c00316{bottom:1196.850450px;}
.ha_c00316{height:47.988281px;}
.hb_c00316{height:49.937344px;}
.h1_c00316{height:50.315273px;}
.h2_c00316{height:56.320312px;}
.h4_c00316{height:60.257812px;}
.h8_c00316{height:60.890625px;}
.h5_c00316{height:65.130820px;}
.h9_c00316{height:65.131420px;}
.h3_c00316{height:72.160312px;}
.h7_c00316{height:75.093750px;}
.h6_c00316{height:81.476719px;}
.h0_c00316{height:1263.000000px;}
.w1_c00316{width:892.500000px;}
.w0_c00316{width:892.830000px;}
.x0_c00316{left:0.000000px;}
.x1_c00316{left:127.620000px;}
.x3_c00316{left:154.620000px;}
.x2_c00316{left:180.720000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.v1_c00316{vertical-align:14.080000pt;}
.v2_c00316{vertical-align:26.560000pt;}
.ls14_c00316{letter-spacing:-0.134400pt;}
.ls1d_c00316{letter-spacing:-0.051200pt;}
.ls1a_c00316{letter-spacing:-0.032000pt;}
.ls19_c00316{letter-spacing:-0.025600pt;}
.ls1b_c00316{letter-spacing:-0.019200pt;}
.ls18_c00316{letter-spacing:-0.013888pt;}
.ls15_c00316{letter-spacing:-0.012800pt;}
.ls1f_c00316{letter-spacing:-0.010368pt;}
.ls17_c00316{letter-spacing:-0.006400pt;}
.ls20_c00316{letter-spacing:-0.003456pt;}
.ls13_c00316{letter-spacing:0.000000pt;}
.ls12_c00316{letter-spacing:0.004256pt;}
.ls8_c00316{letter-spacing:0.006400pt;}
.ls5_c00316{letter-spacing:0.006944pt;}
.lsc_c00316{letter-spacing:0.008512pt;}
.lsf_c00316{letter-spacing:0.012768pt;}
.ls3_c00316{letter-spacing:0.012800pt;}
.lsa_c00316{letter-spacing:0.019200pt;}
.lse_c00316{letter-spacing:0.025536pt;}
.ls1c_c00316{letter-spacing:0.025600pt;}
.ls10_c00316{letter-spacing:0.034048pt;}
.ls11_c00316{letter-spacing:0.042560pt;}
.ls0_c00316{letter-spacing:0.042752pt;}
.ls2_c00316{letter-spacing:0.048672pt;}
.lsb_c00316{letter-spacing:0.064000pt;}
.ls16_c00316{letter-spacing:0.083200pt;}
.ls6_c00316{letter-spacing:0.128000pt;}
.ls1e_c00316{letter-spacing:0.396800pt;}
.lsd_c00316{letter-spacing:0.412480pt;}
.ls4_c00316{letter-spacing:28.053760pt;}
.ls7_c00316{letter-spacing:58.048000pt;}
.ls9_c00316{letter-spacing:58.688000pt;}
.ls1_c00316{letter-spacing:1077.440000pt;}
.ws1_c00316{word-spacing:-17.346112pt;}
.ws4_c00316{word-spacing:-16.019200pt;}
.ws2_c00316{word-spacing:-16.012800pt;}
.ws3_c00316{word-spacing:-16.006400pt;}
.ws5_c00316{word-spacing:-11.840192pt;}
.ws6_c00316{word-spacing:-11.831680pt;}
.ws7_c00316{word-spacing:-9.607680pt;}
.ws8_c00316{word-spacing:-9.604224pt;}
.ws0_c00316{word-spacing:-9.408672pt;}
.ws14_c00316{word-spacing:-0.124992pt;}
.ws13_c00316{word-spacing:-0.083200pt;}
.wsd_c00316{word-spacing:-0.076800pt;}
.ws20_c00316{word-spacing:-0.025600pt;}
.ws2d_c00316{word-spacing:-0.025536pt;}
.ws2b_c00316{word-spacing:-0.017024pt;}
.ws12_c00316{word-spacing:-0.012800pt;}
.ws29_c00316{word-spacing:-0.008512pt;}
.ws25_c00316{word-spacing:-0.006400pt;}
.wsa_c00316{word-spacing:0.000000pt;}
.ws2a_c00316{word-spacing:0.004256pt;}
.ws1e_c00316{word-spacing:0.006400pt;}
.ws2f_c00316{word-spacing:0.008512pt;}
.ws2e_c00316{word-spacing:0.012768pt;}
.wsc_c00316{word-spacing:0.012800pt;}
.ws28_c00316{word-spacing:0.017024pt;}
.ws1f_c00316{word-spacing:0.019200pt;}
.ws1b_c00316{word-spacing:0.032000pt;}
.ws9_c00316{word-spacing:0.037408pt;}
.ws24_c00316{word-spacing:0.083200pt;}
.ws2c_c00316{word-spacing:0.323456pt;}
.ws1a_c00316{word-spacing:1.587200pt;}
.ws19_c00316{word-spacing:1.715200pt;}
.ws17_c00316{word-spacing:1.888000pt;}
.ws18_c00316{word-spacing:1.907200pt;}
.ws15_c00316{word-spacing:3.795200pt;}
.ws16_c00316{word-spacing:3.865600pt;}
.ws26_c00316{word-spacing:4.153600pt;}
.ws10_c00316{word-spacing:4.166400pt;}
.ws11_c00316{word-spacing:4.211200pt;}
.ws23_c00316{word-spacing:7.686400pt;}
.wsb_c00316{word-spacing:8.032000pt;}
.wsf_c00316{word-spacing:9.856000pt;}
.wse_c00316{word-spacing:9.868800pt;}
.ws27_c00316{word-spacing:11.219200pt;}
.ws22_c00316{word-spacing:14.086400pt;}
.ws21_c00316{word-spacing:14.150400pt;}
.ws1d_c00316{word-spacing:15.718400pt;}
.ws1c_c00316{word-spacing:15.724800pt;}
._0_c00316{margin-left:-1.175680pt;}
._1_c00316{width:0.896000pt;}
.fs6_c00316{font-size:34.560000pt;}
.fs3_c00316{font-size:37.440000pt;}
.fs5_c00316{font-size:42.560000pt;}
.fs1_c00316{font-size:48.000000pt;}
.fs0_c00316{font-size:53.440000pt;}
.fs2_c00316{font-size:64.000000pt;}
.fs4_c00316{font-size:69.440000pt;}
.y0_c00316{bottom:0.000000pt;}
.y3_c00316{bottom:51.067067pt;}
.y22_c00316{bottom:101.068667pt;}
.y21_c00316{bottom:117.390427pt;}
.y20_c00316{bottom:133.628800pt;}
.y1f_c00316{bottom:149.865440pt;}
.y1e_c00316{bottom:166.190427pt;}
.y1d_c00316{bottom:182.427067pt;}
.y1c_c00316{bottom:195.947067pt;}
.y1b_c00316{bottom:214.347067pt;}
.y1a_c00316{bottom:232.747067pt;}
.y19_c00316{bottom:307.227067pt;}
.y18_c00316{bottom:337.787067pt;}
.y17_c00316{bottom:384.427067pt;}
.y16_c00316{bottom:414.987067pt;}
.y15_c00316{bottom:453.627067pt;}
.y14_c00316{bottom:484.187067pt;}
.y13_c00316{bottom:522.827067pt;}
.y12_c00316{bottom:553.387067pt;}
.y11_c00316{bottom:592.027067pt;}
.y10_c00316{bottom:630.587067pt;}
.yf_c00316{bottom:661.227067pt;}
.ye_c00316{bottom:691.787067pt;}
.yd_c00316{bottom:722.427067pt;}
.yc_c00316{bottom:760.987067pt;}
.yb_c00316{bottom:791.627067pt;}
.ya_c00316{bottom:822.187067pt;}
.y9_c00316{bottom:862.267067pt;}
.y8_c00316{bottom:906.427067pt;}
.y7_c00316{bottom:933.467067pt;}
.y6_c00316{bottom:960.427067pt;}
.y5_c00316{bottom:987.467067pt;}
.y4_c00316{bottom:1014.427067pt;}
.y2_c00316{bottom:1046.987067pt;}
.y1_c00316{bottom:1063.867067pt;}
.ha_c00316{height:42.656250pt;}
.hb_c00316{height:44.388750pt;}
.h1_c00316{height:44.724687pt;}
.h2_c00316{height:50.062500pt;}
.h4_c00316{height:53.562500pt;}
.h8_c00316{height:54.125000pt;}
.h5_c00316{height:57.894063pt;}
.h9_c00316{height:57.894596pt;}
.h3_c00316{height:64.142500pt;}
.h7_c00316{height:66.750000pt;}
.h6_c00316{height:72.423750pt;}
.h0_c00316{height:1122.666667pt;}
.w1_c00316{width:793.333333pt;}
.w0_c00316{width:793.626667pt;}
.x0_c00316{left:0.000000pt;}
.x1_c00316{left:113.440000pt;}
.x3_c00316{left:137.440000pt;}
.x2_c00316{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_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_6c0b42de494117041102b2ca.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00317;src:url('chunks/assets/font_6e30b65341802487ae874dc9.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00317;src:url('chunks/assets/font_9a965fed51f9386346838cb4.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00317;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;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_c00317;src:url('chunks/assets/font_9dbcae5256c37e8ab53ea48f.woff2')format("woff");}.ff6_c00317{font-family:ff6_c00317;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00317;src:url('chunks/assets/font_ccc5c5324fe435565b356e28.woff2')format("woff");}.ff7_c00317{font-family:ff7_c00317;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_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;}
.v1_c00317{vertical-align:29.880000px;}
.ls14_c00317{letter-spacing:-0.151200px;}
.ls1c_c00317{letter-spacing:-0.108000px;}
.ls1d_c00317{letter-spacing:-0.064800px;}
.ls1e_c00317{letter-spacing:-0.057600px;}
.ls17_c00317{letter-spacing:-0.028800px;}
.ls19_c00317{letter-spacing:-0.023436px;}
.ls1a_c00317{letter-spacing:-0.021600px;}
.ls18_c00317{letter-spacing:-0.015624px;}
.ls1b_c00317{letter-spacing:-0.014400px;}
.ls15_c00317{letter-spacing:-0.007200px;}
.ls1f_c00317{letter-spacing:-0.003888px;}
.ls13_c00317{letter-spacing:0.000000px;}
.ls12_c00317{letter-spacing:0.004788px;}
.ls5_c00317{letter-spacing:0.007200px;}
.lsd_c00317{letter-spacing:0.009576px;}
.ls10_c00317{letter-spacing:0.014364px;}
.ls3_c00317{letter-spacing:0.014400px;}
.ls1_c00317{letter-spacing:0.021600px;}
.lsb_c00317{letter-spacing:0.028728px;}
.ls0_c00317{letter-spacing:0.036072px;}
.lsc_c00317{letter-spacing:0.038304px;}
.ls11_c00317{letter-spacing:0.047880px;}
.ls2_c00317{letter-spacing:0.054756px;}
.ls9_c00317{letter-spacing:0.064800px;}
.ls16_c00317{letter-spacing:0.093600px;}
.lse_c00317{letter-spacing:0.104040px;}
.ls6_c00317{letter-spacing:0.144000px;}
.lsf_c00317{letter-spacing:0.464040px;}
.ls8_c00317{letter-spacing:18.720000px;}
.ls4_c00317{letter-spacing:31.560480px;}
.ls7_c00317{letter-spacing:65.304000px;}
.lsa_c00317{letter-spacing:66.024000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00317{word-spacing:-19.514376px;}
.ws4_c00317{word-spacing:-18.021600px;}
.ws2_c00317{word-spacing:-18.007200px;}
.ws3_c00317{word-spacing:-17.935200px;}
.ws5_c00317{word-spacing:-13.320216px;}
.ws6_c00317{word-spacing:-10.804752px;}
.ws0_c00317{word-spacing:-10.584756px;}
.ws7_c00317{word-spacing:-0.306612px;}
.ws12_c00317{word-spacing:-0.109368px;}
.ws17_c00317{word-spacing:-0.093600px;}
.wsc_c00317{word-spacing:-0.086400px;}
.ws2c_c00317{word-spacing:-0.028728px;}
.ws29_c00317{word-spacing:-0.019152px;}
.ws28_c00317{word-spacing:-0.009576px;}
.ws16_c00317{word-spacing:-0.007200px;}
.ws2a_c00317{word-spacing:-0.003888px;}
.ws8_c00317{word-spacing:0.000000px;}
.wsb_c00317{word-spacing:0.007200px;}
.ws2e_c00317{word-spacing:0.009576px;}
.ws2d_c00317{word-spacing:0.014364px;}
.ws20_c00317{word-spacing:0.014400px;}
.ws2b_c00317{word-spacing:0.363888px;}
.ws26_c00317{word-spacing:1.116000px;}
.ws13_c00317{word-spacing:3.960000px;}
.ws14_c00317{word-spacing:4.024800px;}
.ws22_c00317{word-spacing:4.428000px;}
.ws23_c00317{word-spacing:4.456800px;}
.ws24_c00317{word-spacing:4.687200px;}
.ws25_c00317{word-spacing:4.737600px;}
.wsa_c00317{word-spacing:6.508800px;}
.ws9_c00317{word-spacing:6.631200px;}
.wse_c00317{word-spacing:7.092000px;}
.wsd_c00317{word-spacing:7.207200px;}
.ws21_c00317{word-spacing:9.727200px;}
.ws15_c00317{word-spacing:10.087200px;}
.wsf_c00317{word-spacing:11.865600px;}
.ws10_c00317{word-spacing:11.880000px;}
.ws11_c00317{word-spacing:11.908800px;}
.ws27_c00317{word-spacing:14.061600px;}
.ws1b_c00317{word-spacing:15.847200px;}
.ws1a_c00317{word-spacing:15.919200px;}
.ws19_c00317{word-spacing:17.683200px;}
.ws18_c00317{word-spacing:17.690400px;}
.ws1f_c00317{word-spacing:18.655200px;}
.ws1e_c00317{word-spacing:18.849600px;}
.ws1d_c00317{word-spacing:18.921600px;}
.ws1c_c00317{word-spacing:20.203200px;}
._2_c00317{margin-left:-18.151200px;}
._0_c00317{margin-left:-1.022040px;}
._1_c00317{width:1.152000px;}
._3_c00317{width:19.332000px;}
.fc0_c00317{color:rgb(0,0,0);}
.fs6_c00317{font-size:38.880000px;}
.fs3_c00317{font-size:42.120000px;}
.fs5_c00317{font-size:47.880000px;}
.fs2_c00317{font-size:54.000000px;}
.fs0_c00317{font-size:60.120000px;}
.fs1_c00317{font-size:72.000000px;}
.fs4_c00317{font-size:78.120000px;}
.y0_c00317{bottom:0.000000px;}
.y3_c00317{bottom:57.450450px;}
.y4_c00317{bottom:61.410450px;}
.y23_c00317{bottom:113.698470px;}
.y22_c00317{bottom:132.066180px;}
.y21_c00317{bottom:150.332400px;}
.y20_c00317{bottom:168.598620px;}
.y1f_c00317{bottom:186.960600px;}
.y1e_c00317{bottom:202.170450px;}
.y1d_c00317{bottom:222.870450px;}
.y1c_c00317{bottom:243.570450px;}
.y1b_c00317{bottom:281.910450px;}
.y1a_c00317{bottom:316.380450px;}
.y19_c00317{bottom:368.760600px;}
.y18_c00317{bottom:403.230600px;}
.y17_c00317{bottom:446.610600px;}
.y16_c00317{bottom:481.080600px;}
.y15_c00317{bottom:515.460600px;}
.y14_c00317{bottom:558.930600px;}
.y13_c00317{bottom:593.310600px;}
.y12_c00317{bottom:627.780600px;}
.y11_c00317{bottom:671.160600px;}
.y10_c00317{bottom:705.630600px;}
.yf_c00317{bottom:749.010600px;}
.ye_c00317{bottom:783.480600px;}
.yd_c00317{bottom:826.860450px;}
.yc_c00317{bottom:861.330450px;}
.yb_c00317{bottom:895.710450px;}
.ya_c00317{bottom:940.800450px;}
.y9_c00317{bottom:994.440450px;}
.y8_c00317{bottom:1028.910450px;}
.y7_c00317{bottom:1063.290450px;}
.y6_c00317{bottom:1106.760450px;}
.y5_c00317{bottom:1141.140450px;}
.y2_c00317{bottom:1173.810450px;}
.y1_c00317{bottom:1196.850450px;}
.h2_c00317{height:47.988281px;}
.ha_c00317{height:49.937344px;}
.h1_c00317{height:50.315273px;}
.h3_c00317{height:56.320312px;}
.h4_c00317{height:60.257812px;}
.h8_c00317{height:60.890625px;}
.h9_c00317{height:65.130220px;}
.h5_c00317{height:65.130820px;}
.h7_c00317{height:75.093750px;}
.h6_c00317{height:81.476719px;}
.h0_c00317{height:1263.000000px;}
.w1_c00317{width:892.500000px;}
.w0_c00317{width:892.830000px;}
.x0_c00317{left:0.000000px;}
.x2_c00317{left:127.620000px;}
.x6_c00317{left:154.620000px;}
.x5_c00317{left:180.360000px;}
.x7_c00317{left:181.620000px;}
.x4_c00317{left:435.240000px;}
.x3_c00317{left:446.490000px;}
.x1_c00317{left:490.770000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.v1_c00317{vertical-align:26.560000pt;}
.ls14_c00317{letter-spacing:-0.134400pt;}
.ls1c_c00317{letter-spacing:-0.096000pt;}
.ls1d_c00317{letter-spacing:-0.057600pt;}
.ls1e_c00317{letter-spacing:-0.051200pt;}
.ls17_c00317{letter-spacing:-0.025600pt;}
.ls19_c00317{letter-spacing:-0.020832pt;}
.ls1a_c00317{letter-spacing:-0.019200pt;}
.ls18_c00317{letter-spacing:-0.013888pt;}
.ls1b_c00317{letter-spacing:-0.012800pt;}
.ls15_c00317{letter-spacing:-0.006400pt;}
.ls1f_c00317{letter-spacing:-0.003456pt;}
.ls13_c00317{letter-spacing:0.000000pt;}
.ls12_c00317{letter-spacing:0.004256pt;}
.ls5_c00317{letter-spacing:0.006400pt;}
.lsd_c00317{letter-spacing:0.008512pt;}
.ls10_c00317{letter-spacing:0.012768pt;}
.ls3_c00317{letter-spacing:0.012800pt;}
.ls1_c00317{letter-spacing:0.019200pt;}
.lsb_c00317{letter-spacing:0.025536pt;}
.ls0_c00317{letter-spacing:0.032064pt;}
.lsc_c00317{letter-spacing:0.034048pt;}
.ls11_c00317{letter-spacing:0.042560pt;}
.ls2_c00317{letter-spacing:0.048672pt;}
.ls9_c00317{letter-spacing:0.057600pt;}
.ls16_c00317{letter-spacing:0.083200pt;}
.lse_c00317{letter-spacing:0.092480pt;}
.ls6_c00317{letter-spacing:0.128000pt;}
.lsf_c00317{letter-spacing:0.412480pt;}
.ls8_c00317{letter-spacing:16.640000pt;}
.ls4_c00317{letter-spacing:28.053760pt;}
.ls7_c00317{letter-spacing:58.048000pt;}
.lsa_c00317{letter-spacing:58.688000pt;}
.ws1_c00317{word-spacing:-17.346112pt;}
.ws4_c00317{word-spacing:-16.019200pt;}
.ws2_c00317{word-spacing:-16.006400pt;}
.ws3_c00317{word-spacing:-15.942400pt;}
.ws5_c00317{word-spacing:-11.840192pt;}
.ws6_c00317{word-spacing:-9.604224pt;}
.ws0_c00317{word-spacing:-9.408672pt;}
.ws7_c00317{word-spacing:-0.272544pt;}
.ws12_c00317{word-spacing:-0.097216pt;}
.ws17_c00317{word-spacing:-0.083200pt;}
.wsc_c00317{word-spacing:-0.076800pt;}
.ws2c_c00317{word-spacing:-0.025536pt;}
.ws29_c00317{word-spacing:-0.017024pt;}
.ws28_c00317{word-spacing:-0.008512pt;}
.ws16_c00317{word-spacing:-0.006400pt;}
.ws2a_c00317{word-spacing:-0.003456pt;}
.ws8_c00317{word-spacing:0.000000pt;}
.wsb_c00317{word-spacing:0.006400pt;}
.ws2e_c00317{word-spacing:0.008512pt;}
.ws2d_c00317{word-spacing:0.012768pt;}
.ws20_c00317{word-spacing:0.012800pt;}
.ws2b_c00317{word-spacing:0.323456pt;}
.ws26_c00317{word-spacing:0.992000pt;}
.ws13_c00317{word-spacing:3.520000pt;}
.ws14_c00317{word-spacing:3.577600pt;}
.ws22_c00317{word-spacing:3.936000pt;}
.ws23_c00317{word-spacing:3.961600pt;}
.ws24_c00317{word-spacing:4.166400pt;}
.ws25_c00317{word-spacing:4.211200pt;}
.wsa_c00317{word-spacing:5.785600pt;}
.ws9_c00317{word-spacing:5.894400pt;}
.wse_c00317{word-spacing:6.304000pt;}
.wsd_c00317{word-spacing:6.406400pt;}
.ws21_c00317{word-spacing:8.646400pt;}
.ws15_c00317{word-spacing:8.966400pt;}
.wsf_c00317{word-spacing:10.547200pt;}
.ws10_c00317{word-spacing:10.560000pt;}
.ws11_c00317{word-spacing:10.585600pt;}
.ws27_c00317{word-spacing:12.499200pt;}
.ws1b_c00317{word-spacing:14.086400pt;}
.ws1a_c00317{word-spacing:14.150400pt;}
.ws19_c00317{word-spacing:15.718400pt;}
.ws18_c00317{word-spacing:15.724800pt;}
.ws1f_c00317{word-spacing:16.582400pt;}
.ws1e_c00317{word-spacing:16.755200pt;}
.ws1d_c00317{word-spacing:16.819200pt;}
.ws1c_c00317{word-spacing:17.958400pt;}
._2_c00317{margin-left:-16.134400pt;}
._0_c00317{margin-left:-0.908480pt;}
._1_c00317{width:1.024000pt;}
._3_c00317{width:17.184000pt;}
.fs6_c00317{font-size:34.560000pt;}
.fs3_c00317{font-size:37.440000pt;}
.fs5_c00317{font-size:42.560000pt;}
.fs2_c00317{font-size:48.000000pt;}
.fs0_c00317{font-size:53.440000pt;}
.fs1_c00317{font-size:64.000000pt;}
.fs4_c00317{font-size:69.440000pt;}
.y0_c00317{bottom:0.000000pt;}
.y3_c00317{bottom:51.067067pt;}
.y4_c00317{bottom:54.587067pt;}
.y23_c00317{bottom:101.065307pt;}
.y22_c00317{bottom:117.392160pt;}
.y21_c00317{bottom:133.628800pt;}
.y20_c00317{bottom:149.865440pt;}
.y1f_c00317{bottom:166.187200pt;}
.y1e_c00317{bottom:179.707067pt;}
.y1d_c00317{bottom:198.107067pt;}
.y1c_c00317{bottom:216.507067pt;}
.y1b_c00317{bottom:250.587067pt;}
.y1a_c00317{bottom:281.227067pt;}
.y19_c00317{bottom:327.787200pt;}
.y18_c00317{bottom:358.427200pt;}
.y17_c00317{bottom:396.987200pt;}
.y16_c00317{bottom:427.627200pt;}
.y15_c00317{bottom:458.187200pt;}
.y14_c00317{bottom:496.827200pt;}
.y13_c00317{bottom:527.387200pt;}
.y12_c00317{bottom:558.027200pt;}
.y11_c00317{bottom:596.587200pt;}
.y10_c00317{bottom:627.227200pt;}
.yf_c00317{bottom:665.787200pt;}
.ye_c00317{bottom:696.427200pt;}
.yd_c00317{bottom:734.987067pt;}
.yc_c00317{bottom:765.627067pt;}
.yb_c00317{bottom:796.187067pt;}
.ya_c00317{bottom:836.267067pt;}
.y9_c00317{bottom:883.947067pt;}
.y8_c00317{bottom:914.587067pt;}
.y7_c00317{bottom:945.147067pt;}
.y6_c00317{bottom:983.787067pt;}
.y5_c00317{bottom:1014.347067pt;}
.y2_c00317{bottom:1043.387067pt;}
.y1_c00317{bottom:1063.867067pt;}
.h2_c00317{height:42.656250pt;}
.ha_c00317{height:44.388750pt;}
.h1_c00317{height:44.724687pt;}
.h3_c00317{height:50.062500pt;}
.h4_c00317{height:53.562500pt;}
.h8_c00317{height:54.125000pt;}
.h9_c00317{height:57.893529pt;}
.h5_c00317{height:57.894063pt;}
.h7_c00317{height:66.750000pt;}
.h6_c00317{height:72.423750pt;}
.h0_c00317{height:1122.666667pt;}
.w1_c00317{width:793.333333pt;}
.w0_c00317{width:793.626667pt;}
.x0_c00317{left:0.000000pt;}
.x2_c00317{left:113.440000pt;}
.x6_c00317{left:137.440000pt;}
.x5_c00317{left:160.320000pt;}
.x7_c00317{left:161.440000pt;}
.x4_c00317{left:386.880000pt;}
.x3_c00317{left:396.880000pt;}
.x1_c00317{left:436.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_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_6fe15d794ef22b91cc23a81a.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.100098;font-style:normal;font-weight:normal;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_ddef5257e4a9f84a8a344031.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;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_c00318;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00318;src:url('chunks/assets/font_4692dfe83357f9b253c2d81a.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:1.102051;font-style:normal;font-weight:normal;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_61ce65c5d7ed580e722d3b58.woff2')format("woff");}.ff5_c00318{font-family:ff5_c00318;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00318;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00318{font-family:ff6_c00318;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00318;src:url('chunks/assets/font_b4e165f04784b4f77c3979b3.woff2')format("woff");}.ff7_c00318{font-family:ff7_c00318;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_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;}
.v1_c00318{vertical-align:15.840000px;}
.v2_c00318{vertical-align:29.880000px;}
.lsf_c00318{letter-spacing:-0.151200px;}
.ls12_c00318{letter-spacing:-0.050400px;}
.ls10_c00318{letter-spacing:-0.036000px;}
.ls13_c00318{letter-spacing:-0.028800px;}
.ls19_c00318{letter-spacing:-0.023436px;}
.ls11_c00318{letter-spacing:-0.021600px;}
.ls18_c00318{letter-spacing:-0.015624px;}
.ls1a_c00318{letter-spacing:-0.014400px;}
.ls1c_c00318{letter-spacing:-0.011664px;}
.ls14_c00318{letter-spacing:-0.007200px;}
.ls1b_c00318{letter-spacing:-0.003888px;}
.lse_c00318{letter-spacing:0.000000px;}
.lsa_c00318{letter-spacing:0.004788px;}
.ls17_c00318{letter-spacing:0.007200px;}
.ls7_c00318{letter-spacing:0.014364px;}
.ls4_c00318{letter-spacing:0.014400px;}
.ls3_c00318{letter-spacing:0.021600px;}
.lsb_c00318{letter-spacing:0.023940px;}
.lsc_c00318{letter-spacing:0.028728px;}
.ls6_c00318{letter-spacing:0.028800px;}
.lsd_c00318{letter-spacing:0.038304px;}
.ls9_c00318{letter-spacing:0.047880px;}
.ls0_c00318{letter-spacing:0.048096px;}
.ls2_c00318{letter-spacing:0.054756px;}
.ls15_c00318{letter-spacing:0.093600px;}
.ls16_c00318{letter-spacing:0.223200px;}
.ls8_c00318{letter-spacing:0.464040px;}
.ls5_c00318{letter-spacing:31.560480px;}
.ls1_c00318{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00318{word-spacing:-19.514376px;}
.ws2_c00318{word-spacing:-18.021600px;}
.ws3_c00318{word-spacing:-10.804752px;}
.ws0_c00318{word-spacing:-10.584756px;}
.ws27_c00318{word-spacing:-0.093600px;}
.ws11_c00318{word-spacing:-0.086400px;}
.ws1a_c00318{word-spacing:-0.070308px;}
.ws2a_c00318{word-spacing:-0.028728px;}
.ws2f_c00318{word-spacing:-0.019152px;}
.ws2e_c00318{word-spacing:-0.009576px;}
.ws2c_c00318{word-spacing:-0.004788px;}
.ws5_c00318{word-spacing:0.000000px;}
.ws28_c00318{word-spacing:0.004788px;}
.wsf_c00318{word-spacing:0.007200px;}
.ws2b_c00318{word-spacing:0.014364px;}
.ws2d_c00318{word-spacing:0.019152px;}
.ws20_c00318{word-spacing:0.028800px;}
.ws4_c00318{word-spacing:0.042084px;}
.ws26_c00318{word-spacing:0.043200px;}
.ws16_c00318{word-spacing:0.108000px;}
.wse_c00318{word-spacing:0.208800px;}
.ws10_c00318{word-spacing:0.216000px;}
.ws29_c00318{word-spacing:0.363888px;}
.ws19_c00318{word-spacing:2.887200px;}
.ws1c_c00318{word-spacing:2.908800px;}
.ws1d_c00318{word-spacing:2.966400px;}
.ws22_c00318{word-spacing:3.571200px;}
.ws23_c00318{word-spacing:3.636000px;}
.ws1b_c00318{word-spacing:4.341600px;}
.ws12_c00318{word-spacing:4.348800px;}
.ws15_c00318{word-spacing:4.456800px;}
.ws13_c00318{word-spacing:4.708800px;}
.ws14_c00318{word-spacing:4.716000px;}
.ws1f_c00318{word-spacing:5.414400px;}
.ws24_c00318{word-spacing:7.207200px;}
.ws25_c00318{word-spacing:7.279200px;}
.ws1e_c00318{word-spacing:7.567200px;}
.wsa_c00318{word-spacing:8.676000px;}
.ws17_c00318{word-spacing:10.440000px;}
.ws18_c00318{word-spacing:10.490400px;}
.wsb_c00318{word-spacing:12.218400px;}
.wsc_c00318{word-spacing:12.225600px;}
.wsd_c00318{word-spacing:12.290400px;}
.ws21_c00318{word-spacing:17.265600px;}
.ws7_c00318{word-spacing:17.280000px;}
.ws6_c00318{word-spacing:17.316000px;}
.ws9_c00318{word-spacing:19.029600px;}
.ws8_c00318{word-spacing:19.101600px;}
._0_c00318{margin-left:-1.322640px;}
._1_c00318{width:1.412892px;}
.fc0_c00318{color:rgb(0,0,0);}
.fs6_c00318{font-size:38.880000px;}
.fs3_c00318{font-size:42.120000px;}
.fs5_c00318{font-size:47.880000px;}
.fs1_c00318{font-size:54.000000px;}
.fs0_c00318{font-size:60.120000px;}
.fs2_c00318{font-size:72.000000px;}
.fs4_c00318{font-size:78.120000px;}
.y0_c00318{bottom:0.000000px;}
.y3_c00318{bottom:57.450450px;}
.y23_c00318{bottom:113.698470px;}
.y22_c00318{bottom:132.064230px;}
.y21_c00318{bottom:150.334230px;}
.y20_c00318{bottom:168.598620px;}
.y1f_c00318{bottom:186.964230px;}
.y1e_c00318{bottom:205.232400px;}
.y1d_c00318{bottom:223.498620px;}
.y1c_c00318{bottom:241.860600px;}
.y1b_c00318{bottom:257.070450px;}
.y1a_c00318{bottom:277.770450px;}
.y19_c00318{bottom:298.470450px;}
.y18_c00318{bottom:404.760450px;}
.y17_c00318{bottom:439.230450px;}
.y16_c00318{bottom:473.610450px;}
.y15_c00318{bottom:508.080450px;}
.y14_c00318{bottom:542.460450px;}
.y13_c00318{bottom:576.930450px;}
.y12_c00318{bottom:611.310450px;}
.y11_c00318{bottom:645.780450px;}
.y10_c00318{bottom:680.160450px;}
.yf_c00318{bottom:725.250450px;}
.ye_c00318{bottom:778.890450px;}
.yd_c00318{bottom:813.360450px;}
.yc_c00318{bottom:847.740450px;}
.yb_c00318{bottom:891.210450px;}
.ya_c00318{bottom:925.590450px;}
.y9_c00318{bottom:960.060450px;}
.y8_c00318{bottom:1003.440450px;}
.y7_c00318{bottom:1037.910450px;}
.y6_c00318{bottom:1072.290450px;}
.y5_c00318{bottom:1106.760450px;}
.y4_c00318{bottom:1141.140450px;}
.y2_c00318{bottom:1177.860450px;}
.y1_c00318{bottom:1196.850450px;}
.h9_c00318{height:47.988281px;}
.ha_c00318{height:49.937344px;}
.hb_c00318{height:49.944664px;}
.hc_c00318{height:49.945264px;}
.h1_c00318{height:50.315273px;}
.h2_c00318{height:56.320312px;}
.h4_c00318{height:60.257812px;}
.h6_c00318{height:60.890625px;}
.h5_c00318{height:65.130820px;}
.h7_c00318{height:65.131420px;}
.h3_c00318{height:72.160312px;}
.h8_c00318{height:81.476719px;}
.h0_c00318{height:1263.000000px;}
.w1_c00318{width:892.500000px;}
.w0_c00318{width:892.830000px;}
.x0_c00318{left:0.000000px;}
.x1_c00318{left:127.620000px;}
.x2_c00318{left:180.720000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.v1_c00318{vertical-align:14.080000pt;}
.v2_c00318{vertical-align:26.560000pt;}
.lsf_c00318{letter-spacing:-0.134400pt;}
.ls12_c00318{letter-spacing:-0.044800pt;}
.ls10_c00318{letter-spacing:-0.032000pt;}
.ls13_c00318{letter-spacing:-0.025600pt;}
.ls19_c00318{letter-spacing:-0.020832pt;}
.ls11_c00318{letter-spacing:-0.019200pt;}
.ls18_c00318{letter-spacing:-0.013888pt;}
.ls1a_c00318{letter-spacing:-0.012800pt;}
.ls1c_c00318{letter-spacing:-0.010368pt;}
.ls14_c00318{letter-spacing:-0.006400pt;}
.ls1b_c00318{letter-spacing:-0.003456pt;}
.lse_c00318{letter-spacing:0.000000pt;}
.lsa_c00318{letter-spacing:0.004256pt;}
.ls17_c00318{letter-spacing:0.006400pt;}
.ls7_c00318{letter-spacing:0.012768pt;}
.ls4_c00318{letter-spacing:0.012800pt;}
.ls3_c00318{letter-spacing:0.019200pt;}
.lsb_c00318{letter-spacing:0.021280pt;}
.lsc_c00318{letter-spacing:0.025536pt;}
.ls6_c00318{letter-spacing:0.025600pt;}
.lsd_c00318{letter-spacing:0.034048pt;}
.ls9_c00318{letter-spacing:0.042560pt;}
.ls0_c00318{letter-spacing:0.042752pt;}
.ls2_c00318{letter-spacing:0.048672pt;}
.ls15_c00318{letter-spacing:0.083200pt;}
.ls16_c00318{letter-spacing:0.198400pt;}
.ls8_c00318{letter-spacing:0.412480pt;}
.ls5_c00318{letter-spacing:28.053760pt;}
.ls1_c00318{letter-spacing:1077.440000pt;}
.ws1_c00318{word-spacing:-17.346112pt;}
.ws2_c00318{word-spacing:-16.019200pt;}
.ws3_c00318{word-spacing:-9.604224pt;}
.ws0_c00318{word-spacing:-9.408672pt;}
.ws27_c00318{word-spacing:-0.083200pt;}
.ws11_c00318{word-spacing:-0.076800pt;}
.ws1a_c00318{word-spacing:-0.062496pt;}
.ws2a_c00318{word-spacing:-0.025536pt;}
.ws2f_c00318{word-spacing:-0.017024pt;}
.ws2e_c00318{word-spacing:-0.008512pt;}
.ws2c_c00318{word-spacing:-0.004256pt;}
.ws5_c00318{word-spacing:0.000000pt;}
.ws28_c00318{word-spacing:0.004256pt;}
.wsf_c00318{word-spacing:0.006400pt;}
.ws2b_c00318{word-spacing:0.012768pt;}
.ws2d_c00318{word-spacing:0.017024pt;}
.ws20_c00318{word-spacing:0.025600pt;}
.ws4_c00318{word-spacing:0.037408pt;}
.ws26_c00318{word-spacing:0.038400pt;}
.ws16_c00318{word-spacing:0.096000pt;}
.wse_c00318{word-spacing:0.185600pt;}
.ws10_c00318{word-spacing:0.192000pt;}
.ws29_c00318{word-spacing:0.323456pt;}
.ws19_c00318{word-spacing:2.566400pt;}
.ws1c_c00318{word-spacing:2.585600pt;}
.ws1d_c00318{word-spacing:2.636800pt;}
.ws22_c00318{word-spacing:3.174400pt;}
.ws23_c00318{word-spacing:3.232000pt;}
.ws1b_c00318{word-spacing:3.859200pt;}
.ws12_c00318{word-spacing:3.865600pt;}
.ws15_c00318{word-spacing:3.961600pt;}
.ws13_c00318{word-spacing:4.185600pt;}
.ws14_c00318{word-spacing:4.192000pt;}
.ws1f_c00318{word-spacing:4.812800pt;}
.ws24_c00318{word-spacing:6.406400pt;}
.ws25_c00318{word-spacing:6.470400pt;}
.ws1e_c00318{word-spacing:6.726400pt;}
.wsa_c00318{word-spacing:7.712000pt;}
.ws17_c00318{word-spacing:9.280000pt;}
.ws18_c00318{word-spacing:9.324800pt;}
.wsb_c00318{word-spacing:10.860800pt;}
.wsc_c00318{word-spacing:10.867200pt;}
.wsd_c00318{word-spacing:10.924800pt;}
.ws21_c00318{word-spacing:15.347200pt;}
.ws7_c00318{word-spacing:15.360000pt;}
.ws6_c00318{word-spacing:15.392000pt;}
.ws9_c00318{word-spacing:16.915200pt;}
.ws8_c00318{word-spacing:16.979200pt;}
._0_c00318{margin-left:-1.175680pt;}
._1_c00318{width:1.255904pt;}
.fs6_c00318{font-size:34.560000pt;}
.fs3_c00318{font-size:37.440000pt;}
.fs5_c00318{font-size:42.560000pt;}
.fs1_c00318{font-size:48.000000pt;}
.fs0_c00318{font-size:53.440000pt;}
.fs2_c00318{font-size:64.000000pt;}
.fs4_c00318{font-size:69.440000pt;}
.y0_c00318{bottom:0.000000pt;}
.y3_c00318{bottom:51.067067pt;}
.y23_c00318{bottom:101.065307pt;}
.y22_c00318{bottom:117.390427pt;}
.y21_c00318{bottom:133.630427pt;}
.y20_c00318{bottom:149.865440pt;}
.y1f_c00318{bottom:166.190427pt;}
.y1e_c00318{bottom:182.428800pt;}
.y1d_c00318{bottom:198.665440pt;}
.y1c_c00318{bottom:214.987200pt;}
.y1b_c00318{bottom:228.507067pt;}
.y1a_c00318{bottom:246.907067pt;}
.y19_c00318{bottom:265.307067pt;}
.y18_c00318{bottom:359.787067pt;}
.y17_c00318{bottom:390.427067pt;}
.y16_c00318{bottom:420.987067pt;}
.y15_c00318{bottom:451.627067pt;}
.y14_c00318{bottom:482.187067pt;}
.y13_c00318{bottom:512.827067pt;}
.y12_c00318{bottom:543.387067pt;}
.y11_c00318{bottom:574.027067pt;}
.y10_c00318{bottom:604.587067pt;}
.yf_c00318{bottom:644.667067pt;}
.ye_c00318{bottom:692.347067pt;}
.yd_c00318{bottom:722.987067pt;}
.yc_c00318{bottom:753.547067pt;}
.yb_c00318{bottom:792.187067pt;}
.ya_c00318{bottom:822.747067pt;}
.y9_c00318{bottom:853.387067pt;}
.y8_c00318{bottom:891.947067pt;}
.y7_c00318{bottom:922.587067pt;}
.y6_c00318{bottom:953.147067pt;}
.y5_c00318{bottom:983.787067pt;}
.y4_c00318{bottom:1014.347067pt;}
.y2_c00318{bottom:1046.987067pt;}
.y1_c00318{bottom:1063.867067pt;}
.h9_c00318{height:42.656250pt;}
.ha_c00318{height:44.388750pt;}
.hb_c00318{height:44.395257pt;}
.hc_c00318{height:44.395790pt;}
.h1_c00318{height:44.724687pt;}
.h2_c00318{height:50.062500pt;}
.h4_c00318{height:53.562500pt;}
.h6_c00318{height:54.125000pt;}
.h5_c00318{height:57.894063pt;}
.h7_c00318{height:57.894596pt;}
.h3_c00318{height:64.142500pt;}
.h8_c00318{height:72.423750pt;}
.h0_c00318{height:1122.666667pt;}
.w1_c00318{width:793.333333pt;}
.w0_c00318{width:793.626667pt;}
.x0_c00318{left:0.000000pt;}
.x1_c00318{left:113.440000pt;}
.x2_c00318{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_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_727a6d8b25b3bc37acf46c1f.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00319;src:url('chunks/assets/font_904fc0827a535abbef0b67ef.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00319;src:url('chunks/assets/font_364bdeb57e9a99712f7822b1.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00319;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00319{font-family:ff5_c00319;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_c00319;src:url('chunks/assets/font_f2ae8d551ed18c24e715f718.woff2')format("woff");}.ff6_c00319{font-family:ff6_c00319;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00319;src:url('chunks/assets/font_6b0dcf65239c2491f85997bb.woff2')format("woff");}.ff7_c00319{font-family:ff7_c00319;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_c00319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.v1_c00319{vertical-align:29.880000px;}
.ls17_c00319{letter-spacing:-0.151200px;}
.ls1b_c00319{letter-spacing:-0.108000px;}
.ls19_c00319{letter-spacing:-0.046872px;}
.ls20_c00319{letter-spacing:-0.036000px;}
.ls1e_c00319{letter-spacing:-0.028800px;}
.ls1d_c00319{letter-spacing:-0.021600px;}
.ls18_c00319{letter-spacing:-0.015624px;}
.ls1c_c00319{letter-spacing:-0.014400px;}
.ls23_c00319{letter-spacing:-0.011664px;}
.ls1a_c00319{letter-spacing:-0.007200px;}
.ls22_c00319{letter-spacing:-0.004788px;}
.ls21_c00319{letter-spacing:-0.003888px;}
.ls16_c00319{letter-spacing:0.000000px;}
.lsf_c00319{letter-spacing:0.004788px;}
.ls4_c00319{letter-spacing:0.007200px;}
.lsa_c00319{letter-spacing:0.007812px;}
.ls15_c00319{letter-spacing:0.009576px;}
.lsc_c00319{letter-spacing:0.014364px;}
.ls9_c00319{letter-spacing:0.014400px;}
.ls10_c00319{letter-spacing:0.019152px;}
.ls12_c00319{letter-spacing:0.028728px;}
.ls7_c00319{letter-spacing:0.036000px;}
.ls0_c00319{letter-spacing:0.036072px;}
.ls2_c00319{letter-spacing:0.039060px;}
.lse_c00319{letter-spacing:0.047880px;}
.ls14_c00319{letter-spacing:0.052668px;}
.ls3_c00319{letter-spacing:0.054756px;}
.ls1f_c00319{letter-spacing:0.093600px;}
.ls13_c00319{letter-spacing:0.104040px;}
.ls5_c00319{letter-spacing:0.144000px;}
.ls11_c00319{letter-spacing:0.378252px;}
.lsd_c00319{letter-spacing:0.464040px;}
.lsb_c00319{letter-spacing:28.670040px;}
.ls1_c00319{letter-spacing:31.560480px;}
.ls6_c00319{letter-spacing:65.304000px;}
.ls8_c00319{letter-spacing:66.024000px;}
.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;}
}
.ws3_c00319{word-spacing:-19.537812px;}
.ws0_c00319{word-spacing:-19.514376px;}
.ws2_c00319{word-spacing:-18.007200px;}
.ws5_c00319{word-spacing:-13.325004px;}
.ws4_c00319{word-spacing:-10.804752px;}
.ws1_c00319{word-spacing:-10.584756px;}
.ws28_c00319{word-spacing:-0.359100px;}
.ws6_c00319{word-spacing:-0.306612px;}
.ws1a_c00319{word-spacing:-0.093744px;}
.ws19_c00319{word-spacing:-0.093600px;}
.ws14_c00319{word-spacing:-0.086400px;}
.ws25_c00319{word-spacing:-0.028728px;}
.ws2b_c00319{word-spacing:-0.009576px;}
.ws7_c00319{word-spacing:0.000000px;}
.ws23_c00319{word-spacing:0.004788px;}
.ws13_c00319{word-spacing:0.007200px;}
.ws32_c00319{word-spacing:0.009576px;}
.ws26_c00319{word-spacing:0.014364px;}
.ws2a_c00319{word-spacing:0.019152px;}
.ws29_c00319{word-spacing:0.023940px;}
.wsf_c00319{word-spacing:0.072000px;}
.ws18_c00319{word-spacing:0.079200px;}
.ws27_c00319{word-spacing:0.357696px;}
.ws24_c00319{word-spacing:0.363888px;}
.ws1f_c00319{word-spacing:1.108800px;}
.ws1e_c00319{word-spacing:1.202400px;}
.ws1d_c00319{word-spacing:3.254400px;}
.ws20_c00319{word-spacing:3.628800px;}
.ws9_c00319{word-spacing:5.407200px;}
.ws1c_c00319{word-spacing:5.457600px;}
.wsa_c00319{word-spacing:5.508000px;}
.ws22_c00319{word-spacing:5.860800px;}
.ws21_c00319{word-spacing:5.976000px;}
.ws10_c00319{word-spacing:6.854400px;}
.ws2f_c00319{word-spacing:7.526736px;}
.ws2d_c00319{word-spacing:7.558272px;}
.ws30_c00319{word-spacing:7.560252px;}
.ws2c_c00319{word-spacing:7.565040px;}
.ws31_c00319{word-spacing:7.579404px;}
.ws2e_c00319{word-spacing:7.924140px;}
.wse_c00319{word-spacing:11.512800px;}
.wsd_c00319{word-spacing:11.527200px;}
.ws12_c00319{word-spacing:15.487200px;}
.ws1b_c00319{word-spacing:15.501600px;}
.ws11_c00319{word-spacing:15.595200px;}
.ws8_c00319{word-spacing:16.991100px;}
.ws15_c00319{word-spacing:17.265600px;}
.wsb_c00319{word-spacing:18.000000px;}
.wsc_c00319{word-spacing:18.057600px;}
.ws16_c00319{word-spacing:30.470400px;}
.ws17_c00319{word-spacing:30.585600px;}
._0_c00319{margin-left:-1.022040px;}
._1_c00319{width:1.008000px;}
.fc0_c00319{color:rgb(0,0,0);}
.fs6_c00319{font-size:38.880000px;}
.fs4_c00319{font-size:42.120000px;}
.fs5_c00319{font-size:47.880000px;}
.fs2_c00319{font-size:54.000000px;}
.fs0_c00319{font-size:60.120000px;}
.fs1_c00319{font-size:72.000000px;}
.fs3_c00319{font-size:78.120000px;}
.y0_c00319{bottom:0.000000px;}
.y3_c00319{bottom:57.450450px;}
.y4_c00319{bottom:61.410450px;}
.y23_c00319{bottom:113.699190px;}
.y22_c00319{bottom:127.564230px;}
.y21_c00319{bottom:145.833120px;}
.y20_c00319{bottom:164.099340px;}
.y1f_c00319{bottom:177.964230px;}
.y1e_c00319{bottom:196.230450px;}
.y1d_c00319{bottom:211.440450px;}
.y1c_c00319{bottom:232.140450px;}
.y1b_c00319{bottom:252.840450px;}
.y1a_c00319{bottom:319.620450px;}
.y19_c00319{bottom:354.090450px;}
.y18_c00319{bottom:388.470450px;}
.y17_c00319{bottom:431.940450px;}
.y16_c00319{bottom:466.320450px;}
.y15_c00319{bottom:500.790450px;}
.y14_c00319{bottom:535.170450px;}
.y13_c00319{bottom:580.260450px;}
.y12_c00319{bottom:633.900450px;}
.y11_c00319{bottom:668.370450px;}
.y10_c00319{bottom:702.750450px;}
.yf_c00319{bottom:755.220450px;}
.ye_c00319{bottom:798.600450px;}
.yd_c00319{bottom:833.070450px;}
.yc_c00319{bottom:867.450450px;}
.yb_c00319{bottom:910.920450px;}
.ya_c00319{bottom:954.300450px;}
.y9_c00319{bottom:988.770450px;}
.y8_c00319{bottom:1023.150450px;}
.y7_c00319{bottom:1057.620450px;}
.y6_c00319{bottom:1102.617210px;}
.y5_c00319{bottom:1139.880450px;}
.y2_c00319{bottom:1173.810450px;}
.y1_c00319{bottom:1196.850450px;}
.h2_c00319{height:47.988281px;}
.h9_c00319{height:49.937344px;}
.h1_c00319{height:50.315273px;}
.h3_c00319{height:56.320312px;}
.h7_c00319{height:60.257812px;}
.h6_c00319{height:65.130820px;}
.h5_c00319{height:65.456016px;}
.h8_c00319{height:75.093750px;}
.h4_c00319{height:81.476719px;}
.h0_c00319{height:1263.000000px;}
.w1_c00319{width:892.500000px;}
.w0_c00319{width:892.830000px;}
.x0_c00319{left:0.000000px;}
.x2_c00319{left:127.620000px;}
.x7_c00319{left:154.620000px;}
.x6_c00319{left:180.810000px;}
.x5_c00319{left:224.820810px;}
.x4_c00319{left:435.240000px;}
.x3_c00319{left:446.490000px;}
.x1_c00319{left:490.770000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.v1_c00319{vertical-align:26.560000pt;}
.ls17_c00319{letter-spacing:-0.134400pt;}
.ls1b_c00319{letter-spacing:-0.096000pt;}
.ls19_c00319{letter-spacing:-0.041664pt;}
.ls20_c00319{letter-spacing:-0.032000pt;}
.ls1e_c00319{letter-spacing:-0.025600pt;}
.ls1d_c00319{letter-spacing:-0.019200pt;}
.ls18_c00319{letter-spacing:-0.013888pt;}
.ls1c_c00319{letter-spacing:-0.012800pt;}
.ls23_c00319{letter-spacing:-0.010368pt;}
.ls1a_c00319{letter-spacing:-0.006400pt;}
.ls22_c00319{letter-spacing:-0.004256pt;}
.ls21_c00319{letter-spacing:-0.003456pt;}
.ls16_c00319{letter-spacing:0.000000pt;}
.lsf_c00319{letter-spacing:0.004256pt;}
.ls4_c00319{letter-spacing:0.006400pt;}
.lsa_c00319{letter-spacing:0.006944pt;}
.ls15_c00319{letter-spacing:0.008512pt;}
.lsc_c00319{letter-spacing:0.012768pt;}
.ls9_c00319{letter-spacing:0.012800pt;}
.ls10_c00319{letter-spacing:0.017024pt;}
.ls12_c00319{letter-spacing:0.025536pt;}
.ls7_c00319{letter-spacing:0.032000pt;}
.ls0_c00319{letter-spacing:0.032064pt;}
.ls2_c00319{letter-spacing:0.034720pt;}
.lse_c00319{letter-spacing:0.042560pt;}
.ls14_c00319{letter-spacing:0.046816pt;}
.ls3_c00319{letter-spacing:0.048672pt;}
.ls1f_c00319{letter-spacing:0.083200pt;}
.ls13_c00319{letter-spacing:0.092480pt;}
.ls5_c00319{letter-spacing:0.128000pt;}
.ls11_c00319{letter-spacing:0.336224pt;}
.lsd_c00319{letter-spacing:0.412480pt;}
.lsb_c00319{letter-spacing:25.484480pt;}
.ls1_c00319{letter-spacing:28.053760pt;}
.ls6_c00319{letter-spacing:58.048000pt;}
.ls8_c00319{letter-spacing:58.688000pt;}
.ws3_c00319{word-spacing:-17.366944pt;}
.ws0_c00319{word-spacing:-17.346112pt;}
.ws2_c00319{word-spacing:-16.006400pt;}
.ws5_c00319{word-spacing:-11.844448pt;}
.ws4_c00319{word-spacing:-9.604224pt;}
.ws1_c00319{word-spacing:-9.408672pt;}
.ws28_c00319{word-spacing:-0.319200pt;}
.ws6_c00319{word-spacing:-0.272544pt;}
.ws1a_c00319{word-spacing:-0.083328pt;}
.ws19_c00319{word-spacing:-0.083200pt;}
.ws14_c00319{word-spacing:-0.076800pt;}
.ws25_c00319{word-spacing:-0.025536pt;}
.ws2b_c00319{word-spacing:-0.008512pt;}
.ws7_c00319{word-spacing:0.000000pt;}
.ws23_c00319{word-spacing:0.004256pt;}
.ws13_c00319{word-spacing:0.006400pt;}
.ws32_c00319{word-spacing:0.008512pt;}
.ws26_c00319{word-spacing:0.012768pt;}
.ws2a_c00319{word-spacing:0.017024pt;}
.ws29_c00319{word-spacing:0.021280pt;}
.wsf_c00319{word-spacing:0.064000pt;}
.ws18_c00319{word-spacing:0.070400pt;}
.ws27_c00319{word-spacing:0.317952pt;}
.ws24_c00319{word-spacing:0.323456pt;}
.ws1f_c00319{word-spacing:0.985600pt;}
.ws1e_c00319{word-spacing:1.068800pt;}
.ws1d_c00319{word-spacing:2.892800pt;}
.ws20_c00319{word-spacing:3.225600pt;}
.ws9_c00319{word-spacing:4.806400pt;}
.ws1c_c00319{word-spacing:4.851200pt;}
.wsa_c00319{word-spacing:4.896000pt;}
.ws22_c00319{word-spacing:5.209600pt;}
.ws21_c00319{word-spacing:5.312000pt;}
.ws10_c00319{word-spacing:6.092800pt;}
.ws2f_c00319{word-spacing:6.690432pt;}
.ws2d_c00319{word-spacing:6.718464pt;}
.ws30_c00319{word-spacing:6.720224pt;}
.ws2c_c00319{word-spacing:6.724480pt;}
.ws31_c00319{word-spacing:6.737248pt;}
.ws2e_c00319{word-spacing:7.043680pt;}
.wse_c00319{word-spacing:10.233600pt;}
.wsd_c00319{word-spacing:10.246400pt;}
.ws12_c00319{word-spacing:13.766400pt;}
.ws1b_c00319{word-spacing:13.779200pt;}
.ws11_c00319{word-spacing:13.862400pt;}
.ws8_c00319{word-spacing:15.103200pt;}
.ws15_c00319{word-spacing:15.347200pt;}
.wsb_c00319{word-spacing:16.000000pt;}
.wsc_c00319{word-spacing:16.051200pt;}
.ws16_c00319{word-spacing:27.084800pt;}
.ws17_c00319{word-spacing:27.187200pt;}
._0_c00319{margin-left:-0.908480pt;}
._1_c00319{width:0.896000pt;}
.fs6_c00319{font-size:34.560000pt;}
.fs4_c00319{font-size:37.440000pt;}
.fs5_c00319{font-size:42.560000pt;}
.fs2_c00319{font-size:48.000000pt;}
.fs0_c00319{font-size:53.440000pt;}
.fs1_c00319{font-size:64.000000pt;}
.fs3_c00319{font-size:69.440000pt;}
.y0_c00319{bottom:0.000000pt;}
.y3_c00319{bottom:51.067067pt;}
.y4_c00319{bottom:54.587067pt;}
.y23_c00319{bottom:101.065947pt;}
.y22_c00319{bottom:113.390427pt;}
.y21_c00319{bottom:129.629440pt;}
.y20_c00319{bottom:145.866080pt;}
.y1f_c00319{bottom:158.190427pt;}
.y1e_c00319{bottom:174.427067pt;}
.y1d_c00319{bottom:187.947067pt;}
.y1c_c00319{bottom:206.347067pt;}
.y1b_c00319{bottom:224.747067pt;}
.y1a_c00319{bottom:284.107067pt;}
.y19_c00319{bottom:314.747067pt;}
.y18_c00319{bottom:345.307067pt;}
.y17_c00319{bottom:383.947067pt;}
.y16_c00319{bottom:414.507067pt;}
.y15_c00319{bottom:445.147067pt;}
.y14_c00319{bottom:475.707067pt;}
.y13_c00319{bottom:515.787067pt;}
.y12_c00319{bottom:563.467067pt;}
.y11_c00319{bottom:594.107067pt;}
.y10_c00319{bottom:624.667067pt;}
.yf_c00319{bottom:671.307067pt;}
.ye_c00319{bottom:709.867067pt;}
.yd_c00319{bottom:740.507067pt;}
.yc_c00319{bottom:771.067067pt;}
.yb_c00319{bottom:809.707067pt;}
.ya_c00319{bottom:848.267067pt;}
.y9_c00319{bottom:878.907067pt;}
.y8_c00319{bottom:909.467067pt;}
.y7_c00319{bottom:940.107067pt;}
.y6_c00319{bottom:980.104187pt;}
.y5_c00319{bottom:1013.227067pt;}
.y2_c00319{bottom:1043.387067pt;}
.y1_c00319{bottom:1063.867067pt;}
.h2_c00319{height:42.656250pt;}
.h9_c00319{height:44.388750pt;}
.h1_c00319{height:44.724687pt;}
.h3_c00319{height:50.062500pt;}
.h7_c00319{height:53.562500pt;}
.h6_c00319{height:57.894062pt;}
.h5_c00319{height:58.183125pt;}
.h8_c00319{height:66.750000pt;}
.h4_c00319{height:72.423750pt;}
.h0_c00319{height:1122.666667pt;}
.w1_c00319{width:793.333333pt;}
.w0_c00319{width:793.626667pt;}
.x0_c00319{left:0.000000pt;}
.x2_c00319{left:113.440000pt;}
.x7_c00319{left:137.440000pt;}
.x6_c00319{left:160.720000pt;}
.x5_c00319{left:199.840720pt;}
.x4_c00319{left:386.880000pt;}
.x3_c00319{left:396.880000pt;}
.x1_c00319{left:436.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_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_058d6efc746c9d173f95ccc0.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.100098;font-style:normal;font-weight:normal;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_daec4382716456615d5591bf.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;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_c00320;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00320;src:url('chunks/assets/font_afd14a5a5fe690d544363da2.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00320;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00320{font-family:ff5_c00320;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_c00320;src:url('chunks/assets/font_14112d0bf50ff9b3b0ca6f06.woff2')format("woff");}.ff6_c00320{font-family:ff6_c00320;line-height:0.674805;font-style:normal;font-weight:normal;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_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff7_c00320{font-family:ff7_c00320;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_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.v1_c00320{vertical-align:15.840000px;}
.v2_c00320{vertical-align:29.880000px;}
.ls11_c00320{letter-spacing:-0.151200px;}
.ls15_c00320{letter-spacing:-0.046872px;}
.ls19_c00320{letter-spacing:-0.036000px;}
.ls12_c00320{letter-spacing:-0.028800px;}
.ls18_c00320{letter-spacing:-0.021600px;}
.ls16_c00320{letter-spacing:-0.015624px;}
.ls13_c00320{letter-spacing:-0.014400px;}
.ls17_c00320{letter-spacing:-0.007200px;}
.ls1a_c00320{letter-spacing:-0.003888px;}
.ls10_c00320{letter-spacing:0.000000px;}
.ls8_c00320{letter-spacing:0.007200px;}
.lsb_c00320{letter-spacing:0.014364px;}
.ls7_c00320{letter-spacing:0.014400px;}
.ls6_c00320{letter-spacing:0.021600px;}
.lsf_c00320{letter-spacing:0.023940px;}
.lsa_c00320{letter-spacing:0.028800px;}
.ls3_c00320{letter-spacing:0.031248px;}
.lse_c00320{letter-spacing:0.033516px;}
.ls9_c00320{letter-spacing:0.036000px;}
.lsd_c00320{letter-spacing:0.047880px;}
.ls0_c00320{letter-spacing:0.048096px;}
.ls5_c00320{letter-spacing:0.050400px;}
.ls2_c00320{letter-spacing:0.054756px;}
.ls14_c00320{letter-spacing:0.093600px;}
.lsc_c00320{letter-spacing:0.464040px;}
.ls4_c00320{letter-spacing:77.260680px;}
.ls1_c00320{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00320{word-spacing:-19.561248px;}
.ws0_c00320{word-spacing:-17.985600px;}
.ws3_c00320{word-spacing:-10.804752px;}
.ws1_c00320{word-spacing:-10.584756px;}
.ws30_c00320{word-spacing:-0.028728px;}
.ws31_c00320{word-spacing:-0.014364px;}
.ws32_c00320{word-spacing:-0.004788px;}
.ws5_c00320{word-spacing:0.000000px;}
.ws2e_c00320{word-spacing:0.004788px;}
.ws26_c00320{word-spacing:0.007200px;}
.ws4_c00320{word-spacing:0.042084px;}
.wsf_c00320{word-spacing:0.086400px;}
.ws18_c00320{word-spacing:0.100800px;}
.ws2f_c00320{word-spacing:0.363888px;}
.wse_c00320{word-spacing:0.727200px;}
.ws9_c00320{word-spacing:1.906128px;}
.ws8_c00320{word-spacing:2.117052px;}
.ws6_c00320{word-spacing:2.548800px;}
.ws7_c00320{word-spacing:2.620800px;}
.ws2d_c00320{word-spacing:3.225600px;}
.ws2c_c00320{word-spacing:3.348000px;}
.ws1f_c00320{word-spacing:3.520800px;}
.ws13_c00320{word-spacing:3.542400px;}
.ws12_c00320{word-spacing:3.621600px;}
.ws1e_c00320{word-spacing:3.729600px;}
.ws23_c00320{word-spacing:4.370400px;}
.ws29_c00320{word-spacing:5.752800px;}
.ws1a_c00320{word-spacing:5.760000px;}
.ws1b_c00320{word-spacing:5.781600px;}
.ws22_c00320{word-spacing:6.120000px;}
.ws20_c00320{word-spacing:7.156800px;}
.ws21_c00320{word-spacing:7.228800px;}
.ws2a_c00320{word-spacing:9.324000px;}
.ws2b_c00320{word-spacing:9.374400px;}
.ws17_c00320{word-spacing:10.080000px;}
.ws16_c00320{word-spacing:10.152000px;}
.ws1d_c00320{word-spacing:10.332000px;}
.ws1c_c00320{word-spacing:10.461600px;}
.ws11_c00320{word-spacing:11.138400px;}
.ws10_c00320{word-spacing:11.174400px;}
.ws14_c00320{word-spacing:12.225600px;}
.ws15_c00320{word-spacing:12.232800px;}
.wsc_c00320{word-spacing:12.931200px;}
.wsa_c00320{word-spacing:12.960000px;}
.wsb_c00320{word-spacing:12.996000px;}
.ws19_c00320{word-spacing:13.644000px;}
.ws25_c00320{word-spacing:14.724000px;}
.ws24_c00320{word-spacing:14.796000px;}
.ws27_c00320{word-spacing:20.541600px;}
.ws28_c00320{word-spacing:20.613600px;}
.wsd_c00320{word-spacing:22.327200px;}
._0_c00320{margin-left:-1.322640px;}
._1_c00320{width:1.224000px;}
.fc0_c00320{color:rgb(0,0,0);}
.fs6_c00320{font-size:38.880000px;}
.fs3_c00320{font-size:42.120000px;}
.fs5_c00320{font-size:47.880000px;}
.fs1_c00320{font-size:54.000000px;}
.fs0_c00320{font-size:60.120000px;}
.fs2_c00320{font-size:72.000000px;}
.fs4_c00320{font-size:78.120000px;}
.y0_c00320{bottom:0.000000px;}
.y3_c00320{bottom:57.450450px;}
.y23_c00320{bottom:108.370650px;}
.y22_c00320{bottom:126.732630px;}
.y21_c00320{bottom:144.998850px;}
.y20_c00320{bottom:160.208850px;}
.y1f_c00320{bottom:180.908850px;}
.y1e_c00320{bottom:201.609000px;}
.y1d_c00320{bottom:242.469000px;}
.y1c_c00320{bottom:276.939000px;}
.y1b_c00320{bottom:311.319000px;}
.y1a_c00320{bottom:345.789000px;}
.y19_c00320{bottom:380.168850px;}
.y18_c00320{bottom:414.638850px;}
.y17_c00320{bottom:449.018850px;}
.y16_c00320{bottom:483.488850px;}
.y15_c00320{bottom:517.868850px;}
.y14_c00320{bottom:552.338850px;}
.y13_c00320{bottom:586.718850px;}
.y12_c00320{bottom:621.188850px;}
.y11_c00320{bottom:655.568850px;}
.y10_c00320{bottom:690.038850px;}
.yf_c00320{bottom:724.418850px;}
.ye_c00320{bottom:758.888850px;}
.yd_c00320{bottom:793.268850px;}
.yc_c00320{bottom:827.738850px;}
.yb_c00320{bottom:862.118850px;}
.ya_c00320{bottom:896.588850px;}
.y9_c00320{bottom:930.968850px;}
.y8_c00320{bottom:965.438850px;}
.y7_c00320{bottom:1012.818180px;}
.y6_c00320{bottom:1053.030450px;}
.y5_c00320{bottom:1106.760450px;}
.y4_c00320{bottom:1141.140450px;}
.y2_c00320{bottom:1177.860450px;}
.y1_c00320{bottom:1196.850450px;}
.h9_c00320{height:49.937344px;}
.h1_c00320{height:50.315273px;}
.h2_c00320{height:56.320312px;}
.h4_c00320{height:60.257812px;}
.h5_c00320{height:65.130820px;}
.h7_c00320{height:65.456016px;}
.h8_c00320{height:70.664062px;}
.h3_c00320{height:72.160312px;}
.h6_c00320{height:81.476719px;}
.h0_c00320{height:1263.000000px;}
.w1_c00320{width:892.500000px;}
.w0_c00320{width:892.830000px;}
.x0_c00320{left:0.000000px;}
.x1_c00320{left:127.620000px;}
.x2_c00320{left:180.720000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.v1_c00320{vertical-align:14.080000pt;}
.v2_c00320{vertical-align:26.560000pt;}
.ls11_c00320{letter-spacing:-0.134400pt;}
.ls15_c00320{letter-spacing:-0.041664pt;}
.ls19_c00320{letter-spacing:-0.032000pt;}
.ls12_c00320{letter-spacing:-0.025600pt;}
.ls18_c00320{letter-spacing:-0.019200pt;}
.ls16_c00320{letter-spacing:-0.013888pt;}
.ls13_c00320{letter-spacing:-0.012800pt;}
.ls17_c00320{letter-spacing:-0.006400pt;}
.ls1a_c00320{letter-spacing:-0.003456pt;}
.ls10_c00320{letter-spacing:0.000000pt;}
.ls8_c00320{letter-spacing:0.006400pt;}
.lsb_c00320{letter-spacing:0.012768pt;}
.ls7_c00320{letter-spacing:0.012800pt;}
.ls6_c00320{letter-spacing:0.019200pt;}
.lsf_c00320{letter-spacing:0.021280pt;}
.lsa_c00320{letter-spacing:0.025600pt;}
.ls3_c00320{letter-spacing:0.027776pt;}
.lse_c00320{letter-spacing:0.029792pt;}
.ls9_c00320{letter-spacing:0.032000pt;}
.lsd_c00320{letter-spacing:0.042560pt;}
.ls0_c00320{letter-spacing:0.042752pt;}
.ls5_c00320{letter-spacing:0.044800pt;}
.ls2_c00320{letter-spacing:0.048672pt;}
.ls14_c00320{letter-spacing:0.083200pt;}
.lsc_c00320{letter-spacing:0.412480pt;}
.ls4_c00320{letter-spacing:68.676160pt;}
.ls1_c00320{letter-spacing:1077.440000pt;}
.ws2_c00320{word-spacing:-17.387776pt;}
.ws0_c00320{word-spacing:-15.987200pt;}
.ws3_c00320{word-spacing:-9.604224pt;}
.ws1_c00320{word-spacing:-9.408672pt;}
.ws30_c00320{word-spacing:-0.025536pt;}
.ws31_c00320{word-spacing:-0.012768pt;}
.ws32_c00320{word-spacing:-0.004256pt;}
.ws5_c00320{word-spacing:0.000000pt;}
.ws2e_c00320{word-spacing:0.004256pt;}
.ws26_c00320{word-spacing:0.006400pt;}
.ws4_c00320{word-spacing:0.037408pt;}
.wsf_c00320{word-spacing:0.076800pt;}
.ws18_c00320{word-spacing:0.089600pt;}
.ws2f_c00320{word-spacing:0.323456pt;}
.wse_c00320{word-spacing:0.646400pt;}
.ws9_c00320{word-spacing:1.694336pt;}
.ws8_c00320{word-spacing:1.881824pt;}
.ws6_c00320{word-spacing:2.265600pt;}
.ws7_c00320{word-spacing:2.329600pt;}
.ws2d_c00320{word-spacing:2.867200pt;}
.ws2c_c00320{word-spacing:2.976000pt;}
.ws1f_c00320{word-spacing:3.129600pt;}
.ws13_c00320{word-spacing:3.148800pt;}
.ws12_c00320{word-spacing:3.219200pt;}
.ws1e_c00320{word-spacing:3.315200pt;}
.ws23_c00320{word-spacing:3.884800pt;}
.ws29_c00320{word-spacing:5.113600pt;}
.ws1a_c00320{word-spacing:5.120000pt;}
.ws1b_c00320{word-spacing:5.139200pt;}
.ws22_c00320{word-spacing:5.440000pt;}
.ws20_c00320{word-spacing:6.361600pt;}
.ws21_c00320{word-spacing:6.425600pt;}
.ws2a_c00320{word-spacing:8.288000pt;}
.ws2b_c00320{word-spacing:8.332800pt;}
.ws17_c00320{word-spacing:8.960000pt;}
.ws16_c00320{word-spacing:9.024000pt;}
.ws1d_c00320{word-spacing:9.184000pt;}
.ws1c_c00320{word-spacing:9.299200pt;}
.ws11_c00320{word-spacing:9.900800pt;}
.ws10_c00320{word-spacing:9.932800pt;}
.ws14_c00320{word-spacing:10.867200pt;}
.ws15_c00320{word-spacing:10.873600pt;}
.wsc_c00320{word-spacing:11.494400pt;}
.wsa_c00320{word-spacing:11.520000pt;}
.wsb_c00320{word-spacing:11.552000pt;}
.ws19_c00320{word-spacing:12.128000pt;}
.ws25_c00320{word-spacing:13.088000pt;}
.ws24_c00320{word-spacing:13.152000pt;}
.ws27_c00320{word-spacing:18.259200pt;}
.ws28_c00320{word-spacing:18.323200pt;}
.wsd_c00320{word-spacing:19.846400pt;}
._0_c00320{margin-left:-1.175680pt;}
._1_c00320{width:1.088000pt;}
.fs6_c00320{font-size:34.560000pt;}
.fs3_c00320{font-size:37.440000pt;}
.fs5_c00320{font-size:42.560000pt;}
.fs1_c00320{font-size:48.000000pt;}
.fs0_c00320{font-size:53.440000pt;}
.fs2_c00320{font-size:64.000000pt;}
.fs4_c00320{font-size:69.440000pt;}
.y0_c00320{bottom:0.000000pt;}
.y3_c00320{bottom:51.067067pt;}
.y23_c00320{bottom:96.329467pt;}
.y22_c00320{bottom:112.651227pt;}
.y21_c00320{bottom:128.887867pt;}
.y20_c00320{bottom:142.407867pt;}
.y1f_c00320{bottom:160.807867pt;}
.y1e_c00320{bottom:179.208000pt;}
.y1d_c00320{bottom:215.528000pt;}
.y1c_c00320{bottom:246.168000pt;}
.y1b_c00320{bottom:276.728000pt;}
.y1a_c00320{bottom:307.368000pt;}
.y19_c00320{bottom:337.927867pt;}
.y18_c00320{bottom:368.567867pt;}
.y17_c00320{bottom:399.127867pt;}
.y16_c00320{bottom:429.767867pt;}
.y15_c00320{bottom:460.327867pt;}
.y14_c00320{bottom:490.967867pt;}
.y13_c00320{bottom:521.527867pt;}
.y12_c00320{bottom:552.167867pt;}
.y11_c00320{bottom:582.727867pt;}
.y10_c00320{bottom:613.367867pt;}
.yf_c00320{bottom:643.927867pt;}
.ye_c00320{bottom:674.567867pt;}
.yd_c00320{bottom:705.127867pt;}
.yc_c00320{bottom:735.767867pt;}
.yb_c00320{bottom:766.327867pt;}
.ya_c00320{bottom:796.967867pt;}
.y9_c00320{bottom:827.527867pt;}
.y8_c00320{bottom:858.167867pt;}
.y7_c00320{bottom:900.282827pt;}
.y6_c00320{bottom:936.027067pt;}
.y5_c00320{bottom:983.787067pt;}
.y4_c00320{bottom:1014.347067pt;}
.y2_c00320{bottom:1046.987067pt;}
.y1_c00320{bottom:1063.867067pt;}
.h9_c00320{height:44.388750pt;}
.h1_c00320{height:44.724687pt;}
.h2_c00320{height:50.062500pt;}
.h4_c00320{height:53.562500pt;}
.h5_c00320{height:57.894063pt;}
.h7_c00320{height:58.183125pt;}
.h8_c00320{height:62.812500pt;}
.h3_c00320{height:64.142500pt;}
.h6_c00320{height:72.423750pt;}
.h0_c00320{height:1122.666667pt;}
.w1_c00320{width:793.333333pt;}
.w0_c00320{width:793.626667pt;}
.x0_c00320{left:0.000000pt;}
.x1_c00320{left:113.440000pt;}
.x2_c00320{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_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_ca947be0b8be72f6b61ee46a.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00321;src:url('chunks/assets/font_4b3184dd077a0485798de485.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00321;src:url('chunks/assets/font_8bc462665a36e452e0e18efa.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00321;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00321{font-family:ff5_c00321;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_c00321;src:url('chunks/assets/font_18e903d3ae7c000509e0d392.woff2')format("woff");}.ff6_c00321{font-family:ff6_c00321;line-height:0.674805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00321;src:url('chunks/assets/font_9b0ef3de34d6dd94c62b546a.woff2')format("woff");}.ff7_c00321{font-family:ff7_c00321;line-height:0.674805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.v1_c00321{vertical-align:29.880000px;}
.ls8_c00321{letter-spacing:-0.151200px;}
.lsb_c00321{letter-spacing:-0.075492px;}
.ls12_c00321{letter-spacing:-0.043200px;}
.ls11_c00321{letter-spacing:-0.036000px;}
.lsf_c00321{letter-spacing:-0.028800px;}
.ls9_c00321{letter-spacing:-0.021600px;}
.ls10_c00321{letter-spacing:-0.014400px;}
.lse_c00321{letter-spacing:-0.007200px;}
.ls7_c00321{letter-spacing:0.000000px;}
.ls1_c00321{letter-spacing:0.007200px;}
.ls5_c00321{letter-spacing:0.014400px;}
.ls13_c00321{letter-spacing:0.028800px;}
.ls0_c00321{letter-spacing:0.036072px;}
.ls6_c00321{letter-spacing:0.043092px;}
.ls2_c00321{letter-spacing:0.054756px;}
.lsc_c00321{letter-spacing:0.058716px;}
.ls4_c00321{letter-spacing:0.067104px;}
.lsa_c00321{letter-spacing:0.093600px;}
.lsd_c00321{letter-spacing:0.109044px;}
.ls3_c00321{letter-spacing:17.363160px;}
.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;}
}
.ws1_c00321{word-spacing:-20.894508px;}
.ws0_c00321{word-spacing:-10.584756px;}
.ws2_c00321{word-spacing:-0.306612px;}
.ws26_c00321{word-spacing:-0.023940px;}
.ws10_c00321{word-spacing:-0.007200px;}
.ws3_c00321{word-spacing:0.000000px;}
.ws25_c00321{word-spacing:0.007200px;}
.ws9_c00321{word-spacing:0.093600px;}
.ws19_c00321{word-spacing:0.756000px;}
.ws1c_c00321{word-spacing:1.051200px;}
.ws1d_c00321{word-spacing:1.101600px;}
.ws5_c00321{word-spacing:1.821600px;}
.ws6_c00321{word-spacing:1.886400px;}
.ws24_c00321{word-spacing:3.160800px;}
.wsd_c00321{word-spacing:3.247200px;}
.ws23_c00321{word-spacing:3.254400px;}
.wsc_c00321{word-spacing:3.621600px;}
.ws1e_c00321{word-spacing:4.708800px;}
.ws18_c00321{word-spacing:4.723200px;}
.ws15_c00321{word-spacing:5.054400px;}
.ws14_c00321{word-spacing:5.068800px;}
.ws8_c00321{word-spacing:8.258400px;}
.ws7_c00321{word-spacing:8.359200px;}
.wsb_c00321{word-spacing:9.931392px;}
.wsa_c00321{word-spacing:9.990108px;}
.ws4_c00321{word-spacing:10.432800px;}
.ws13_c00321{word-spacing:12.621600px;}
.ws12_c00321{word-spacing:12.672000px;}
.ws11_c00321{word-spacing:12.686400px;}
.ws17_c00321{word-spacing:12.960000px;}
.ws21_c00321{word-spacing:12.981600px;}
.ws16_c00321{word-spacing:12.988800px;}
.ws22_c00321{word-spacing:12.996000px;}
.wse_c00321{word-spacing:18.345600px;}
.wsf_c00321{word-spacing:18.453600px;}
.ws1f_c00321{word-spacing:20.160000px;}
.ws20_c00321{word-spacing:20.188800px;}
.ws1a_c00321{word-spacing:22.255200px;}
.ws1b_c00321{word-spacing:22.363200px;}
._0_c00321{margin-left:-1.022040px;}
._1_c00321{width:1.152000px;}
.fc0_c00321{color:rgb(0,0,0);}
.fs3_c00321{font-size:42.120000px;}
.fs5_c00321{font-size:47.880000px;}
.fs2_c00321{font-size:54.000000px;}
.fs0_c00321{font-size:60.120000px;}
.fs1_c00321{font-size:72.000000px;}
.fs4_c00321{font-size:83.880000px;}
.y0_c00321{bottom:0.000000px;}
.y3_c00321{bottom:57.450450px;}
.y4_c00321{bottom:61.410450px;}
.y22_c00321{bottom:107.975700px;}
.y21_c00321{bottom:123.185700px;}
.y20_c00321{bottom:143.885700px;}
.y1f_c00321{bottom:164.585700px;}
.y1e_c00321{bottom:236.315700px;}
.y1d_c00321{bottom:270.785700px;}
.y1c_c00321{bottom:305.165700px;}
.y1b_c00321{bottom:339.635700px;}
.y1a_c00321{bottom:374.015700px;}
.y19_c00321{bottom:408.485700px;}
.y18_c00321{bottom:442.865700px;}
.y17_c00321{bottom:477.335700px;}
.y16_c00321{bottom:511.715700px;}
.y15_c00321{bottom:546.185700px;}
.y14_c00321{bottom:580.565700px;}
.y13_c00321{bottom:615.035700px;}
.y12_c00321{bottom:649.415700px;}
.y11_c00321{bottom:683.885700px;}
.y10_c00321{bottom:718.265700px;}
.yf_c00321{bottom:752.735700px;}
.ye_c00321{bottom:787.115700px;}
.yd_c00321{bottom:821.585700px;}
.yc_c00321{bottom:855.965700px;}
.yb_c00321{bottom:890.435700px;}
.ya_c00321{bottom:939.527400px;}
.y9_c00321{bottom:982.830450px;}
.y8_c00321{bottom:1037.910450px;}
.y7_c00321{bottom:1072.290450px;}
.y6_c00321{bottom:1106.760450px;}
.y5_c00321{bottom:1141.140450px;}
.y2_c00321{bottom:1173.810450px;}
.y1_c00321{bottom:1196.850450px;}
.h2_c00321{height:47.988281px;}
.h8_c00321{height:49.937344px;}
.h1_c00321{height:50.315273px;}
.h3_c00321{height:56.320312px;}
.h4_c00321{height:60.257812px;}
.h5_c00321{height:65.130820px;}
.h7_c00321{height:70.282266px;}
.h6_c00321{height:87.484219px;}
.h0_c00321{height:1263.000000px;}
.w1_c00321{width:892.500000px;}
.w0_c00321{width:892.830000px;}
.x0_c00321{left:0.000000px;}
.x2_c00321{left:127.620000px;}
.x5_c00321{left:180.720000px;}
.x4_c00321{left:435.240000px;}
.x3_c00321{left:446.490000px;}
.x1_c00321{left:490.770000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.v1_c00321{vertical-align:26.560000pt;}
.ls8_c00321{letter-spacing:-0.134400pt;}
.lsb_c00321{letter-spacing:-0.067104pt;}
.ls12_c00321{letter-spacing:-0.038400pt;}
.ls11_c00321{letter-spacing:-0.032000pt;}
.lsf_c00321{letter-spacing:-0.025600pt;}
.ls9_c00321{letter-spacing:-0.019200pt;}
.ls10_c00321{letter-spacing:-0.012800pt;}
.lse_c00321{letter-spacing:-0.006400pt;}
.ls7_c00321{letter-spacing:0.000000pt;}
.ls1_c00321{letter-spacing:0.006400pt;}
.ls5_c00321{letter-spacing:0.012800pt;}
.ls13_c00321{letter-spacing:0.025600pt;}
.ls0_c00321{letter-spacing:0.032064pt;}
.ls6_c00321{letter-spacing:0.038304pt;}
.ls2_c00321{letter-spacing:0.048672pt;}
.lsc_c00321{letter-spacing:0.052192pt;}
.ls4_c00321{letter-spacing:0.059648pt;}
.lsa_c00321{letter-spacing:0.083200pt;}
.lsd_c00321{letter-spacing:0.096928pt;}
.ls3_c00321{letter-spacing:15.433920pt;}
.ws1_c00321{word-spacing:-18.572896pt;}
.ws0_c00321{word-spacing:-9.408672pt;}
.ws2_c00321{word-spacing:-0.272544pt;}
.ws26_c00321{word-spacing:-0.021280pt;}
.ws10_c00321{word-spacing:-0.006400pt;}
.ws3_c00321{word-spacing:0.000000pt;}
.ws25_c00321{word-spacing:0.006400pt;}
.ws9_c00321{word-spacing:0.083200pt;}
.ws19_c00321{word-spacing:0.672000pt;}
.ws1c_c00321{word-spacing:0.934400pt;}
.ws1d_c00321{word-spacing:0.979200pt;}
.ws5_c00321{word-spacing:1.619200pt;}
.ws6_c00321{word-spacing:1.676800pt;}
.ws24_c00321{word-spacing:2.809600pt;}
.wsd_c00321{word-spacing:2.886400pt;}
.ws23_c00321{word-spacing:2.892800pt;}
.wsc_c00321{word-spacing:3.219200pt;}
.ws1e_c00321{word-spacing:4.185600pt;}
.ws18_c00321{word-spacing:4.198400pt;}
.ws15_c00321{word-spacing:4.492800pt;}
.ws14_c00321{word-spacing:4.505600pt;}
.ws8_c00321{word-spacing:7.340800pt;}
.ws7_c00321{word-spacing:7.430400pt;}
.wsb_c00321{word-spacing:8.827904pt;}
.wsa_c00321{word-spacing:8.880096pt;}
.ws4_c00321{word-spacing:9.273600pt;}
.ws13_c00321{word-spacing:11.219200pt;}
.ws12_c00321{word-spacing:11.264000pt;}
.ws11_c00321{word-spacing:11.276800pt;}
.ws17_c00321{word-spacing:11.520000pt;}
.ws21_c00321{word-spacing:11.539200pt;}
.ws16_c00321{word-spacing:11.545600pt;}
.ws22_c00321{word-spacing:11.552000pt;}
.wse_c00321{word-spacing:16.307200pt;}
.wsf_c00321{word-spacing:16.403200pt;}
.ws1f_c00321{word-spacing:17.920000pt;}
.ws20_c00321{word-spacing:17.945600pt;}
.ws1a_c00321{word-spacing:19.782400pt;}
.ws1b_c00321{word-spacing:19.878400pt;}
._0_c00321{margin-left:-0.908480pt;}
._1_c00321{width:1.024000pt;}
.fs3_c00321{font-size:37.440000pt;}
.fs5_c00321{font-size:42.560000pt;}
.fs2_c00321{font-size:48.000000pt;}
.fs0_c00321{font-size:53.440000pt;}
.fs1_c00321{font-size:64.000000pt;}
.fs4_c00321{font-size:74.560000pt;}
.y0_c00321{bottom:0.000000pt;}
.y3_c00321{bottom:51.067067pt;}
.y4_c00321{bottom:54.587067pt;}
.y22_c00321{bottom:95.978400pt;}
.y21_c00321{bottom:109.498400pt;}
.y20_c00321{bottom:127.898400pt;}
.y1f_c00321{bottom:146.298400pt;}
.y1e_c00321{bottom:210.058400pt;}
.y1d_c00321{bottom:240.698400pt;}
.y1c_c00321{bottom:271.258400pt;}
.y1b_c00321{bottom:301.898400pt;}
.y1a_c00321{bottom:332.458400pt;}
.y19_c00321{bottom:363.098400pt;}
.y18_c00321{bottom:393.658400pt;}
.y17_c00321{bottom:424.298400pt;}
.y16_c00321{bottom:454.858400pt;}
.y15_c00321{bottom:485.498400pt;}
.y14_c00321{bottom:516.058400pt;}
.y13_c00321{bottom:546.698400pt;}
.y12_c00321{bottom:577.258400pt;}
.y11_c00321{bottom:607.898400pt;}
.y10_c00321{bottom:638.458400pt;}
.yf_c00321{bottom:669.098400pt;}
.ye_c00321{bottom:699.658400pt;}
.yd_c00321{bottom:730.298400pt;}
.yc_c00321{bottom:760.858400pt;}
.yb_c00321{bottom:791.498400pt;}
.ya_c00321{bottom:835.135467pt;}
.y9_c00321{bottom:873.627067pt;}
.y8_c00321{bottom:922.587067pt;}
.y7_c00321{bottom:953.147067pt;}
.y6_c00321{bottom:983.787067pt;}
.y5_c00321{bottom:1014.347067pt;}
.y2_c00321{bottom:1043.387067pt;}
.y1_c00321{bottom:1063.867067pt;}
.h2_c00321{height:42.656250pt;}
.h8_c00321{height:44.388750pt;}
.h1_c00321{height:44.724687pt;}
.h3_c00321{height:50.062500pt;}
.h4_c00321{height:53.562500pt;}
.h5_c00321{height:57.894063pt;}
.h7_c00321{height:62.473125pt;}
.h6_c00321{height:77.763750pt;}
.h0_c00321{height:1122.666667pt;}
.w1_c00321{width:793.333333pt;}
.w0_c00321{width:793.626667pt;}
.x0_c00321{left:0.000000pt;}
.x2_c00321{left:113.440000pt;}
.x5_c00321{left:160.640000pt;}
.x4_c00321{left:386.880000pt;}
.x3_c00321{left:396.880000pt;}
.x1_c00321{left:436.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_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_f74ef30b5b1eaf325987663a.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.100098;font-style:normal;font-weight:normal;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_3c80274c13a5f07e873ed4f1.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;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_c00322;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00322;src:url('chunks/assets/font_2678a15591b959ebdaa52728.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00322;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;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_c00322;src:url('chunks/assets/font_f5bcd51d24b986241a4758cf.woff2')format("woff");}.ff6_c00322{font-family:ff6_c00322;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_c00322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.v1_c00322{vertical-align:15.840000px;}
.v2_c00322{vertical-align:29.880000px;}
.ls11_c00322{letter-spacing:-0.151200px;}
.ls19_c00322{letter-spacing:-0.062496px;}
.ls13_c00322{letter-spacing:-0.046872px;}
.ls17_c00322{letter-spacing:-0.036000px;}
.ls14_c00322{letter-spacing:-0.031248px;}
.ls16_c00322{letter-spacing:-0.028800px;}
.ls1a_c00322{letter-spacing:-0.021600px;}
.ls22_c00322{letter-spacing:-0.019440px;}
.ls15_c00322{letter-spacing:-0.014400px;}
.ls21_c00322{letter-spacing:-0.011664px;}
.ls12_c00322{letter-spacing:-0.007812px;}
.ls1e_c00322{letter-spacing:-0.007776px;}
.ls18_c00322{letter-spacing:-0.007200px;}
.ls1f_c00322{letter-spacing:-0.003888px;}
.ls10_c00322{letter-spacing:0.000000px;}
.ls6_c00322{letter-spacing:0.007200px;}
.ls8_c00322{letter-spacing:0.009576px;}
.lsd_c00322{letter-spacing:0.014364px;}
.lsb_c00322{letter-spacing:0.019152px;}
.ls5_c00322{letter-spacing:0.021600px;}
.lsc_c00322{letter-spacing:0.028728px;}
.ls1d_c00322{letter-spacing:0.028800px;}
.ls7_c00322{letter-spacing:0.033516px;}
.lsf_c00322{letter-spacing:0.038304px;}
.ls1c_c00322{letter-spacing:0.043200px;}
.ls0_c00322{letter-spacing:0.048096px;}
.ls4_c00322{letter-spacing:0.054756px;}
.ls9_c00322{letter-spacing:0.075960px;}
.ls1b_c00322{letter-spacing:0.093600px;}
.lse_c00322{letter-spacing:0.104040px;}
.lsa_c00322{letter-spacing:0.351360px;}
.ls20_c00322{letter-spacing:0.353808px;}
.ls3_c00322{letter-spacing:40.231800px;}
.ls2_c00322{letter-spacing:83.041560px;}
.ls1_c00322{letter-spacing:1212.120000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:-19.522188px;}
.ws1_c00322{word-spacing:-19.498752px;}
.ws3_c00322{word-spacing:-13.320216px;}
.ws4_c00322{word-spacing:-13.310640px;}
.ws5_c00322{word-spacing:-11.162448px;}
.ws6_c00322{word-spacing:-10.789200px;}
.ws2_c00322{word-spacing:-10.584756px;}
.wsa_c00322{word-spacing:-0.132804px;}
.ws1b_c00322{word-spacing:-0.117180px;}
.ws9_c00322{word-spacing:-0.046872px;}
.ws35_c00322{word-spacing:-0.019152px;}
.ws31_c00322{word-spacing:-0.014364px;}
.ws32_c00322{word-spacing:-0.009576px;}
.ws23_c00322{word-spacing:-0.007200px;}
.ws8_c00322{word-spacing:0.000000px;}
.ws33_c00322{word-spacing:0.004788px;}
.ws2c_c00322{word-spacing:0.007200px;}
.ws34_c00322{word-spacing:0.009576px;}
.ws1a_c00322{word-spacing:0.014400px;}
.ws7_c00322{word-spacing:0.042084px;}
.ws21_c00322{word-spacing:0.079200px;}
.ws22_c00322{word-spacing:0.230400px;}
.ws29_c00322{word-spacing:2.534400px;}
.ws28_c00322{word-spacing:2.541600px;}
.wse_c00322{word-spacing:2.548800px;}
.wsb_c00322{word-spacing:3.679200px;}
.ws13_c00322{word-spacing:4.687200px;}
.ws14_c00322{word-spacing:4.788000px;}
.ws2e_c00322{word-spacing:4.996800px;}
.ws2d_c00322{word-spacing:5.032800px;}
.ws1e_c00322{word-spacing:7.207200px;}
.ws1d_c00322{word-spacing:7.228800px;}
.ws2f_c00322{word-spacing:7.912800px;}
.ws30_c00322{word-spacing:7.963200px;}
.ws17_c00322{word-spacing:8.611200px;}
.ws16_c00322{word-spacing:8.668800px;}
.ws10_c00322{word-spacing:9.302400px;}
.ws12_c00322{word-spacing:9.374400px;}
.wsf_c00322{word-spacing:9.381600px;}
.ws11_c00322{word-spacing:9.396000px;}
.ws18_c00322{word-spacing:9.734400px;}
.ws19_c00322{word-spacing:9.777600px;}
.wsd_c00322{word-spacing:10.080000px;}
.ws15_c00322{word-spacing:10.807200px;}
.ws20_c00322{word-spacing:12.254400px;}
.ws1f_c00322{word-spacing:12.312000px;}
.ws1c_c00322{word-spacing:15.134400px;}
.ws26_c00322{word-spacing:16.272000px;}
.ws27_c00322{word-spacing:16.286400px;}
.wsc_c00322{word-spacing:16.560000px;}
.ws2b_c00322{word-spacing:21.952800px;}
.ws2a_c00322{word-spacing:22.039200px;}
.ws25_c00322{word-spacing:27.633600px;}
.ws24_c00322{word-spacing:27.741600px;}
._0_c00322{margin-left:-1.322640px;}
._1_c00322{width:1.008000px;}
.fc0_c00322{color:rgb(0,0,0);}
.fs6_c00322{font-size:38.880000px;}
.fs4_c00322{font-size:42.120000px;}
.fs5_c00322{font-size:47.880000px;}
.fs1_c00322{font-size:54.000000px;}
.fs0_c00322{font-size:60.120000px;}
.fs2_c00322{font-size:72.000000px;}
.fs3_c00322{font-size:78.120000px;}
.y0_c00322{bottom:0.000000px;}
.y3_c00322{bottom:57.450450px;}
.y22_c00322{bottom:113.698470px;}
.y21_c00322{bottom:132.064230px;}
.y20_c00322{bottom:150.330450px;}
.y1f_c00322{bottom:165.540450px;}
.y1e_c00322{bottom:186.240450px;}
.y1d_c00322{bottom:206.940450px;}
.y1c_c00322{bottom:282.270450px;}
.y1b_c00322{bottom:316.650450px;}
.y1a_c00322{bottom:351.120450px;}
.y19_c00322{bottom:385.500450px;}
.y18_c00322{bottom:419.970450px;}
.y17_c00322{bottom:454.350450px;}
.y16_c00322{bottom:488.820450px;}
.y15_c00322{bottom:523.200450px;}
.y14_c00322{bottom:557.670450px;}
.y13_c00322{bottom:592.050450px;}
.y12_c00322{bottom:626.520450px;}
.y11_c00322{bottom:662.520450px;}
.y10_c00322{bottom:716.160450px;}
.yf_c00322{bottom:750.630450px;}
.ye_c00322{bottom:785.010450px;}
.yd_c00322{bottom:819.480450px;}
.yc_c00322{bottom:853.860450px;}
.yb_c00322{bottom:888.330450px;}
.ya_c00322{bottom:922.710450px;}
.y9_c00322{bottom:957.180450px;}
.y8_c00322{bottom:991.560450px;}
.y7_c00322{bottom:1026.030450px;}
.y6_c00322{bottom:1060.410450px;}
.y5_c00322{bottom:1094.880450px;}
.y4_c00322{bottom:1139.880450px;}
.y2_c00322{bottom:1177.860450px;}
.y1_c00322{bottom:1196.850450px;}
.h8_c00322{height:47.988281px;}
.h9_c00322{height:49.937344px;}
.ha_c00322{height:49.945264px;}
.h1_c00322{height:50.315273px;}
.h2_c00322{height:56.320312px;}
.h5_c00322{height:60.257812px;}
.h6_c00322{height:65.130820px;}
.h7_c00322{height:65.131420px;}
.h3_c00322{height:72.160312px;}
.h4_c00322{height:81.476719px;}
.h0_c00322{height:1263.000000px;}
.w1_c00322{width:892.500000px;}
.w0_c00322{width:892.830000px;}
.x0_c00322{left:0.000000px;}
.x1_c00322{left:127.620000px;}
.x2_c00322{left:180.720000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.v1_c00322{vertical-align:14.080000pt;}
.v2_c00322{vertical-align:26.560000pt;}
.ls11_c00322{letter-spacing:-0.134400pt;}
.ls19_c00322{letter-spacing:-0.055552pt;}
.ls13_c00322{letter-spacing:-0.041664pt;}
.ls17_c00322{letter-spacing:-0.032000pt;}
.ls14_c00322{letter-spacing:-0.027776pt;}
.ls16_c00322{letter-spacing:-0.025600pt;}
.ls1a_c00322{letter-spacing:-0.019200pt;}
.ls22_c00322{letter-spacing:-0.017280pt;}
.ls15_c00322{letter-spacing:-0.012800pt;}
.ls21_c00322{letter-spacing:-0.010368pt;}
.ls12_c00322{letter-spacing:-0.006944pt;}
.ls1e_c00322{letter-spacing:-0.006912pt;}
.ls18_c00322{letter-spacing:-0.006400pt;}
.ls1f_c00322{letter-spacing:-0.003456pt;}
.ls10_c00322{letter-spacing:0.000000pt;}
.ls6_c00322{letter-spacing:0.006400pt;}
.ls8_c00322{letter-spacing:0.008512pt;}
.lsd_c00322{letter-spacing:0.012768pt;}
.lsb_c00322{letter-spacing:0.017024pt;}
.ls5_c00322{letter-spacing:0.019200pt;}
.lsc_c00322{letter-spacing:0.025536pt;}
.ls1d_c00322{letter-spacing:0.025600pt;}
.ls7_c00322{letter-spacing:0.029792pt;}
.lsf_c00322{letter-spacing:0.034048pt;}
.ls1c_c00322{letter-spacing:0.038400pt;}
.ls0_c00322{letter-spacing:0.042752pt;}
.ls4_c00322{letter-spacing:0.048672pt;}
.ls9_c00322{letter-spacing:0.067520pt;}
.ls1b_c00322{letter-spacing:0.083200pt;}
.lse_c00322{letter-spacing:0.092480pt;}
.lsa_c00322{letter-spacing:0.312320pt;}
.ls20_c00322{letter-spacing:0.314496pt;}
.ls3_c00322{letter-spacing:35.761600pt;}
.ls2_c00322{letter-spacing:73.814720pt;}
.ls1_c00322{letter-spacing:1077.440000pt;}
.ws0_c00322{word-spacing:-17.353056pt;}
.ws1_c00322{word-spacing:-17.332224pt;}
.ws3_c00322{word-spacing:-11.840192pt;}
.ws4_c00322{word-spacing:-11.831680pt;}
.ws5_c00322{word-spacing:-9.922176pt;}
.ws6_c00322{word-spacing:-9.590400pt;}
.ws2_c00322{word-spacing:-9.408672pt;}
.wsa_c00322{word-spacing:-0.118048pt;}
.ws1b_c00322{word-spacing:-0.104160pt;}
.ws9_c00322{word-spacing:-0.041664pt;}
.ws35_c00322{word-spacing:-0.017024pt;}
.ws31_c00322{word-spacing:-0.012768pt;}
.ws32_c00322{word-spacing:-0.008512pt;}
.ws23_c00322{word-spacing:-0.006400pt;}
.ws8_c00322{word-spacing:0.000000pt;}
.ws33_c00322{word-spacing:0.004256pt;}
.ws2c_c00322{word-spacing:0.006400pt;}
.ws34_c00322{word-spacing:0.008512pt;}
.ws1a_c00322{word-spacing:0.012800pt;}
.ws7_c00322{word-spacing:0.037408pt;}
.ws21_c00322{word-spacing:0.070400pt;}
.ws22_c00322{word-spacing:0.204800pt;}
.ws29_c00322{word-spacing:2.252800pt;}
.ws28_c00322{word-spacing:2.259200pt;}
.wse_c00322{word-spacing:2.265600pt;}
.wsb_c00322{word-spacing:3.270400pt;}
.ws13_c00322{word-spacing:4.166400pt;}
.ws14_c00322{word-spacing:4.256000pt;}
.ws2e_c00322{word-spacing:4.441600pt;}
.ws2d_c00322{word-spacing:4.473600pt;}
.ws1e_c00322{word-spacing:6.406400pt;}
.ws1d_c00322{word-spacing:6.425600pt;}
.ws2f_c00322{word-spacing:7.033600pt;}
.ws30_c00322{word-spacing:7.078400pt;}
.ws17_c00322{word-spacing:7.654400pt;}
.ws16_c00322{word-spacing:7.705600pt;}
.ws10_c00322{word-spacing:8.268800pt;}
.ws12_c00322{word-spacing:8.332800pt;}
.wsf_c00322{word-spacing:8.339200pt;}
.ws11_c00322{word-spacing:8.352000pt;}
.ws18_c00322{word-spacing:8.652800pt;}
.ws19_c00322{word-spacing:8.691200pt;}
.wsd_c00322{word-spacing:8.960000pt;}
.ws15_c00322{word-spacing:9.606400pt;}
.ws20_c00322{word-spacing:10.892800pt;}
.ws1f_c00322{word-spacing:10.944000pt;}
.ws1c_c00322{word-spacing:13.452800pt;}
.ws26_c00322{word-spacing:14.464000pt;}
.ws27_c00322{word-spacing:14.476800pt;}
.wsc_c00322{word-spacing:14.720000pt;}
.ws2b_c00322{word-spacing:19.513600pt;}
.ws2a_c00322{word-spacing:19.590400pt;}
.ws25_c00322{word-spacing:24.563200pt;}
.ws24_c00322{word-spacing:24.659200pt;}
._0_c00322{margin-left:-1.175680pt;}
._1_c00322{width:0.896000pt;}
.fs6_c00322{font-size:34.560000pt;}
.fs4_c00322{font-size:37.440000pt;}
.fs5_c00322{font-size:42.560000pt;}
.fs1_c00322{font-size:48.000000pt;}
.fs0_c00322{font-size:53.440000pt;}
.fs2_c00322{font-size:64.000000pt;}
.fs3_c00322{font-size:69.440000pt;}
.y0_c00322{bottom:0.000000pt;}
.y3_c00322{bottom:51.067067pt;}
.y22_c00322{bottom:101.065307pt;}
.y21_c00322{bottom:117.390427pt;}
.y20_c00322{bottom:133.627067pt;}
.y1f_c00322{bottom:147.147067pt;}
.y1e_c00322{bottom:165.547067pt;}
.y1d_c00322{bottom:183.947067pt;}
.y1c_c00322{bottom:250.907067pt;}
.y1b_c00322{bottom:281.467067pt;}
.y1a_c00322{bottom:312.107067pt;}
.y19_c00322{bottom:342.667067pt;}
.y18_c00322{bottom:373.307067pt;}
.y17_c00322{bottom:403.867067pt;}
.y16_c00322{bottom:434.507067pt;}
.y15_c00322{bottom:465.067067pt;}
.y14_c00322{bottom:495.707067pt;}
.y13_c00322{bottom:526.267067pt;}
.y12_c00322{bottom:556.907067pt;}
.y11_c00322{bottom:588.907067pt;}
.y10_c00322{bottom:636.587067pt;}
.yf_c00322{bottom:667.227067pt;}
.ye_c00322{bottom:697.787067pt;}
.yd_c00322{bottom:728.427067pt;}
.yc_c00322{bottom:758.987067pt;}
.yb_c00322{bottom:789.627067pt;}
.ya_c00322{bottom:820.187067pt;}
.y9_c00322{bottom:850.827067pt;}
.y8_c00322{bottom:881.387067pt;}
.y7_c00322{bottom:912.027067pt;}
.y6_c00322{bottom:942.587067pt;}
.y5_c00322{bottom:973.227067pt;}
.y4_c00322{bottom:1013.227067pt;}
.y2_c00322{bottom:1046.987067pt;}
.y1_c00322{bottom:1063.867067pt;}
.h8_c00322{height:42.656250pt;}
.h9_c00322{height:44.388750pt;}
.ha_c00322{height:44.395790pt;}
.h1_c00322{height:44.724687pt;}
.h2_c00322{height:50.062500pt;}
.h5_c00322{height:53.562500pt;}
.h6_c00322{height:57.894063pt;}
.h7_c00322{height:57.894596pt;}
.h3_c00322{height:64.142500pt;}
.h4_c00322{height:72.423750pt;}
.h0_c00322{height:1122.666667pt;}
.w1_c00322{width:793.333333pt;}
.w0_c00322{width:793.626667pt;}
.x0_c00322{left:0.000000pt;}
.x1_c00322{left:113.440000pt;}
.x2_c00322{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_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_f405a2f7ce491964d431411a.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00323;src:url('chunks/assets/font_d4857ea447ade161616fcc71.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00323;src:url('chunks/assets/font_e2805f60c01d1295af047757.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00323;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00323{font-family:ff5_c00323;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_c00323;src:url('chunks/assets/font_70a93908cb1127ef59d5bec6.woff2')format("woff");}.ff6_c00323{font-family:ff6_c00323;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_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.v1_c00323{vertical-align:29.880000px;}
.ls9_c00323{letter-spacing:-0.151200px;}
.ls11_c00323{letter-spacing:-0.046872px;}
.lsd_c00323{letter-spacing:-0.043200px;}
.ls10_c00323{letter-spacing:-0.039060px;}
.lsb_c00323{letter-spacing:-0.028800px;}
.lse_c00323{letter-spacing:-0.021600px;}
.ls14_c00323{letter-spacing:-0.019440px;}
.lsc_c00323{letter-spacing:-0.014400px;}
.ls13_c00323{letter-spacing:-0.011664px;}
.lsa_c00323{letter-spacing:-0.007200px;}
.ls8_c00323{letter-spacing:0.000000px;}
.ls2_c00323{letter-spacing:0.007200px;}
.ls15_c00323{letter-spacing:0.009576px;}
.ls5_c00323{letter-spacing:0.014364px;}
.ls4_c00323{letter-spacing:0.014400px;}
.ls12_c00323{letter-spacing:0.021600px;}
.ls0_c00323{letter-spacing:0.036072px;}
.ls7_c00323{letter-spacing:0.038304px;}
.ls1_c00323{letter-spacing:0.054756px;}
.lsf_c00323{letter-spacing:0.093600px;}
.ls6_c00323{letter-spacing:0.104040px;}
.ls3_c00323{letter-spacing:34.450920px;}
.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;}
}
.ws1_c00323{word-spacing:-19.530000px;}
.ws2_c00323{word-spacing:-10.789200px;}
.ws0_c00323{word-spacing:-10.584756px;}
.ws3_c00323{word-spacing:-0.306612px;}
.ws16_c00323{word-spacing:-0.226548px;}
.ws14_c00323{word-spacing:-0.079200px;}
.ws15_c00323{word-spacing:-0.054684px;}
.ws32_c00323{word-spacing:-0.019152px;}
.ws4_c00323{word-spacing:0.000000px;}
.ws30_c00323{word-spacing:0.004788px;}
.ws7_c00323{word-spacing:0.007200px;}
.ws31_c00323{word-spacing:0.009576px;}
.ws26_c00323{word-spacing:0.050400px;}
.ws13_c00323{word-spacing:0.093600px;}
.ws8_c00323{word-spacing:0.129600px;}
.ws2e_c00323{word-spacing:1.080000px;}
.ws2f_c00323{word-spacing:1.195200px;}
.ws11_c00323{word-spacing:1.447200px;}
.ws21_c00323{word-spacing:1.814400px;}
.ws22_c00323{word-spacing:1.936800px;}
.ws19_c00323{word-spacing:2.541600px;}
.ws1a_c00323{word-spacing:2.628000px;}
.ws2b_c00323{word-spacing:2.829600px;}
.ws2c_c00323{word-spacing:2.923200px;}
.ws9_c00323{word-spacing:3.204000px;}
.wsa_c00323{word-spacing:3.261600px;}
.ws1b_c00323{word-spacing:3.297600px;}
.ws25_c00323{word-spacing:3.585600px;}
.ws1f_c00323{word-spacing:3.600000px;}
.ws1e_c00323{word-spacing:3.657600px;}
.ws6_c00323{word-spacing:3.952800px;}
.ws5_c00323{word-spacing:3.967200px;}
.ws23_c00323{word-spacing:4.680000px;}
.ws24_c00323{word-spacing:4.687200px;}
.ws1d_c00323{word-spacing:5.018400px;}
.ws1c_c00323{word-spacing:5.097600px;}
.ws29_c00323{word-spacing:9.734400px;}
.ws2a_c00323{word-spacing:9.756000px;}
.ws27_c00323{word-spacing:11.174400px;}
.ws28_c00323{word-spacing:11.289600px;}
.ws12_c00323{word-spacing:11.887200px;}
.wsb_c00323{word-spacing:11.944800px;}
.wsc_c00323{word-spacing:11.995200px;}
.ws18_c00323{word-spacing:12.232800px;}
.ws17_c00323{word-spacing:12.312000px;}
.wsf_c00323{word-spacing:16.884000px;}
.ws10_c00323{word-spacing:17.006400px;}
.ws2d_c00323{word-spacing:18.388800px;}
.ws20_c00323{word-spacing:19.814400px;}
.wse_c00323{word-spacing:30.247200px;}
.wsd_c00323{word-spacing:30.333600px;}
._0_c00323{margin-left:-1.022040px;}
._1_c00323{width:1.000800px;}
.fc0_c00323{color:rgb(0,0,0);}
.fs6_c00323{font-size:38.880000px;}
.fs3_c00323{font-size:42.120000px;}
.fs5_c00323{font-size:47.880000px;}
.fs2_c00323{font-size:54.000000px;}
.fs0_c00323{font-size:60.120000px;}
.fs1_c00323{font-size:72.000000px;}
.fs4_c00323{font-size:78.120000px;}
.y0_c00323{bottom:0.000000px;}
.y3_c00323{bottom:57.450450px;}
.y4_c00323{bottom:61.410450px;}
.y23_c00323{bottom:113.700450px;}
.y22_c00323{bottom:128.910450px;}
.y21_c00323{bottom:149.610450px;}
.y20_c00323{bottom:170.310450px;}
.y1f_c00323{bottom:225.210450px;}
.y1e_c00323{bottom:259.680450px;}
.y1d_c00323{bottom:294.060450px;}
.y1c_c00323{bottom:328.530450px;}
.y1b_c00323{bottom:362.910450px;}
.y1a_c00323{bottom:397.380450px;}
.y19_c00323{bottom:431.760450px;}
.y18_c00323{bottom:466.230450px;}
.y17_c00323{bottom:500.610450px;}
.y16_c00323{bottom:535.080450px;}
.y15_c00323{bottom:569.460450px;}
.y14_c00323{bottom:603.930450px;}
.y13_c00323{bottom:638.310450px;}
.y12_c00323{bottom:672.780450px;}
.y11_c00323{bottom:707.160450px;}
.y10_c00323{bottom:741.630450px;}
.yf_c00323{bottom:777.630450px;}
.ye_c00323{bottom:831.360450px;}
.yd_c00323{bottom:865.740450px;}
.yc_c00323{bottom:900.210450px;}
.yb_c00323{bottom:934.590450px;}
.ya_c00323{bottom:969.060450px;}
.y9_c00323{bottom:1003.440450px;}
.y8_c00323{bottom:1037.910450px;}
.y7_c00323{bottom:1072.290450px;}
.y6_c00323{bottom:1106.760450px;}
.y5_c00323{bottom:1141.140450px;}
.y2_c00323{bottom:1173.810450px;}
.y1_c00323{bottom:1196.850450px;}
.h2_c00323{height:47.988281px;}
.h7_c00323{height:49.937344px;}
.h1_c00323{height:50.315273px;}
.h3_c00323{height:56.320312px;}
.h4_c00323{height:60.257812px;}
.h5_c00323{height:65.130820px;}
.h6_c00323{height:81.476719px;}
.h0_c00323{height:1263.000000px;}
.w1_c00323{width:892.500000px;}
.w0_c00323{width:892.830000px;}
.x0_c00323{left:0.000000px;}
.x2_c00323{left:127.620000px;}
.x5_c00323{left:180.720000px;}
.x4_c00323{left:435.240000px;}
.x3_c00323{left:446.490000px;}
.x1_c00323{left:490.770000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.v1_c00323{vertical-align:26.560000pt;}
.ls9_c00323{letter-spacing:-0.134400pt;}
.ls11_c00323{letter-spacing:-0.041664pt;}
.lsd_c00323{letter-spacing:-0.038400pt;}
.ls10_c00323{letter-spacing:-0.034720pt;}
.lsb_c00323{letter-spacing:-0.025600pt;}
.lse_c00323{letter-spacing:-0.019200pt;}
.ls14_c00323{letter-spacing:-0.017280pt;}
.lsc_c00323{letter-spacing:-0.012800pt;}
.ls13_c00323{letter-spacing:-0.010368pt;}
.lsa_c00323{letter-spacing:-0.006400pt;}
.ls8_c00323{letter-spacing:0.000000pt;}
.ls2_c00323{letter-spacing:0.006400pt;}
.ls15_c00323{letter-spacing:0.008512pt;}
.ls5_c00323{letter-spacing:0.012768pt;}
.ls4_c00323{letter-spacing:0.012800pt;}
.ls12_c00323{letter-spacing:0.019200pt;}
.ls0_c00323{letter-spacing:0.032064pt;}
.ls7_c00323{letter-spacing:0.034048pt;}
.ls1_c00323{letter-spacing:0.048672pt;}
.lsf_c00323{letter-spacing:0.083200pt;}
.ls6_c00323{letter-spacing:0.092480pt;}
.ls3_c00323{letter-spacing:30.623040pt;}
.ws1_c00323{word-spacing:-17.360000pt;}
.ws2_c00323{word-spacing:-9.590400pt;}
.ws0_c00323{word-spacing:-9.408672pt;}
.ws3_c00323{word-spacing:-0.272544pt;}
.ws16_c00323{word-spacing:-0.201376pt;}
.ws14_c00323{word-spacing:-0.070400pt;}
.ws15_c00323{word-spacing:-0.048608pt;}
.ws32_c00323{word-spacing:-0.017024pt;}
.ws4_c00323{word-spacing:0.000000pt;}
.ws30_c00323{word-spacing:0.004256pt;}
.ws7_c00323{word-spacing:0.006400pt;}
.ws31_c00323{word-spacing:0.008512pt;}
.ws26_c00323{word-spacing:0.044800pt;}
.ws13_c00323{word-spacing:0.083200pt;}
.ws8_c00323{word-spacing:0.115200pt;}
.ws2e_c00323{word-spacing:0.960000pt;}
.ws2f_c00323{word-spacing:1.062400pt;}
.ws11_c00323{word-spacing:1.286400pt;}
.ws21_c00323{word-spacing:1.612800pt;}
.ws22_c00323{word-spacing:1.721600pt;}
.ws19_c00323{word-spacing:2.259200pt;}
.ws1a_c00323{word-spacing:2.336000pt;}
.ws2b_c00323{word-spacing:2.515200pt;}
.ws2c_c00323{word-spacing:2.598400pt;}
.ws9_c00323{word-spacing:2.848000pt;}
.wsa_c00323{word-spacing:2.899200pt;}
.ws1b_c00323{word-spacing:2.931200pt;}
.ws25_c00323{word-spacing:3.187200pt;}
.ws1f_c00323{word-spacing:3.200000pt;}
.ws1e_c00323{word-spacing:3.251200pt;}
.ws6_c00323{word-spacing:3.513600pt;}
.ws5_c00323{word-spacing:3.526400pt;}
.ws23_c00323{word-spacing:4.160000pt;}
.ws24_c00323{word-spacing:4.166400pt;}
.ws1d_c00323{word-spacing:4.460800pt;}
.ws1c_c00323{word-spacing:4.531200pt;}
.ws29_c00323{word-spacing:8.652800pt;}
.ws2a_c00323{word-spacing:8.672000pt;}
.ws27_c00323{word-spacing:9.932800pt;}
.ws28_c00323{word-spacing:10.035200pt;}
.ws12_c00323{word-spacing:10.566400pt;}
.wsb_c00323{word-spacing:10.617600pt;}
.wsc_c00323{word-spacing:10.662400pt;}
.ws18_c00323{word-spacing:10.873600pt;}
.ws17_c00323{word-spacing:10.944000pt;}
.wsf_c00323{word-spacing:15.008000pt;}
.ws10_c00323{word-spacing:15.116800pt;}
.ws2d_c00323{word-spacing:16.345600pt;}
.ws20_c00323{word-spacing:17.612800pt;}
.wse_c00323{word-spacing:26.886400pt;}
.wsd_c00323{word-spacing:26.963200pt;}
._0_c00323{margin-left:-0.908480pt;}
._1_c00323{width:0.889600pt;}
.fs6_c00323{font-size:34.560000pt;}
.fs3_c00323{font-size:37.440000pt;}
.fs5_c00323{font-size:42.560000pt;}
.fs2_c00323{font-size:48.000000pt;}
.fs0_c00323{font-size:53.440000pt;}
.fs1_c00323{font-size:64.000000pt;}
.fs4_c00323{font-size:69.440000pt;}
.y0_c00323{bottom:0.000000pt;}
.y3_c00323{bottom:51.067067pt;}
.y4_c00323{bottom:54.587067pt;}
.y23_c00323{bottom:101.067067pt;}
.y22_c00323{bottom:114.587067pt;}
.y21_c00323{bottom:132.987067pt;}
.y20_c00323{bottom:151.387067pt;}
.y1f_c00323{bottom:200.187067pt;}
.y1e_c00323{bottom:230.827067pt;}
.y1d_c00323{bottom:261.387067pt;}
.y1c_c00323{bottom:292.027067pt;}
.y1b_c00323{bottom:322.587067pt;}
.y1a_c00323{bottom:353.227067pt;}
.y19_c00323{bottom:383.787067pt;}
.y18_c00323{bottom:414.427067pt;}
.y17_c00323{bottom:444.987067pt;}
.y16_c00323{bottom:475.627067pt;}
.y15_c00323{bottom:506.187067pt;}
.y14_c00323{bottom:536.827067pt;}
.y13_c00323{bottom:567.387067pt;}
.y12_c00323{bottom:598.027067pt;}
.y11_c00323{bottom:628.587067pt;}
.y10_c00323{bottom:659.227067pt;}
.yf_c00323{bottom:691.227067pt;}
.ye_c00323{bottom:738.987067pt;}
.yd_c00323{bottom:769.547067pt;}
.yc_c00323{bottom:800.187067pt;}
.yb_c00323{bottom:830.747067pt;}
.ya_c00323{bottom:861.387067pt;}
.y9_c00323{bottom:891.947067pt;}
.y8_c00323{bottom:922.587067pt;}
.y7_c00323{bottom:953.147067pt;}
.y6_c00323{bottom:983.787067pt;}
.y5_c00323{bottom:1014.347067pt;}
.y2_c00323{bottom:1043.387067pt;}
.y1_c00323{bottom:1063.867067pt;}
.h2_c00323{height:42.656250pt;}
.h7_c00323{height:44.388750pt;}
.h1_c00323{height:44.724687pt;}
.h3_c00323{height:50.062500pt;}
.h4_c00323{height:53.562500pt;}
.h5_c00323{height:57.894062pt;}
.h6_c00323{height:72.423750pt;}
.h0_c00323{height:1122.666667pt;}
.w1_c00323{width:793.333333pt;}
.w0_c00323{width:793.626667pt;}
.x0_c00323{left:0.000000pt;}
.x2_c00323{left:113.440000pt;}
.x5_c00323{left:160.640000pt;}
.x4_c00323{left:386.880000pt;}
.x3_c00323{left:396.880000pt;}
.x1_c00323{left:436.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_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_0b7dbed733c22c3e27f838a6.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.100098;font-style:normal;font-weight:normal;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_3211f8d1ef293741f1b40124.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;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_c00324;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.v1_c00324{vertical-align:15.840000px;}
.v2_c00324{vertical-align:29.880000px;}
.ls9_c00324{letter-spacing:-0.151200px;}
.lsf_c00324{letter-spacing:-0.036000px;}
.lse_c00324{letter-spacing:-0.028800px;}
.lsb_c00324{letter-spacing:-0.021600px;}
.lsa_c00324{letter-spacing:-0.014400px;}
.lsc_c00324{letter-spacing:-0.007200px;}
.ls8_c00324{letter-spacing:0.000000px;}
.ls2_c00324{letter-spacing:0.007200px;}
.ls6_c00324{letter-spacing:0.014364px;}
.ls5_c00324{letter-spacing:0.014400px;}
.ls10_c00324{letter-spacing:0.021600px;}
.ls7_c00324{letter-spacing:0.028728px;}
.ls4_c00324{letter-spacing:0.028800px;}
.ls0_c00324{letter-spacing:0.048096px;}
.ls3_c00324{letter-spacing:0.054756px;}
.lsd_c00324{letter-spacing:0.093600px;}
.ls1_c00324{letter-spacing:1212.120000px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00324{word-spacing:-10.584756px;}
.ws27_c00324{word-spacing:-0.086400px;}
.ws25_c00324{word-spacing:-0.014400px;}
.ws29_c00324{word-spacing:-0.009576px;}
.ws2_c00324{word-spacing:0.000000px;}
.ws28_c00324{word-spacing:0.004788px;}
.ws18_c00324{word-spacing:0.014400px;}
.ws26_c00324{word-spacing:0.021600px;}
.wsf_c00324{word-spacing:0.036000px;}
.ws1_c00324{word-spacing:0.042084px;}
.wsc_c00324{word-spacing:0.057600px;}
.ws24_c00324{word-spacing:0.079200px;}
.wsb_c00324{word-spacing:0.100800px;}
.ws8_c00324{word-spacing:0.295200px;}
.ws17_c00324{word-spacing:0.360000px;}
.ws7_c00324{word-spacing:0.367200px;}
.ws1d_c00324{word-spacing:0.482400px;}
.ws1c_c00324{word-spacing:0.496800px;}
.ws9_c00324{word-spacing:1.454400px;}
.wsa_c00324{word-spacing:1.490400px;}
.ws15_c00324{word-spacing:2.894400px;}
.ws13_c00324{word-spacing:2.923200px;}
.ws14_c00324{word-spacing:2.966400px;}
.ws16_c00324{word-spacing:3.268800px;}
.wsd_c00324{word-spacing:4.687200px;}
.wse_c00324{word-spacing:4.694400px;}
.ws1e_c00324{word-spacing:5.040000px;}
.ws10_c00324{word-spacing:5.047200px;}
.ws1f_c00324{word-spacing:5.133600px;}
.ws6_c00324{word-spacing:6.840000px;}
.ws5_c00324{word-spacing:6.868800px;}
.ws20_c00324{word-spacing:7.956000px;}
.ws3_c00324{word-spacing:8.294400px;}
.ws11_c00324{word-spacing:9.028800px;}
.ws12_c00324{word-spacing:9.079200px;}
.ws23_c00324{word-spacing:10.101600px;}
.ws21_c00324{word-spacing:10.828800px;}
.ws22_c00324{word-spacing:10.879200px;}
.ws4_c00324{word-spacing:12.981600px;}
.ws1a_c00324{word-spacing:14.738400px;}
.ws19_c00324{word-spacing:14.767200px;}
.ws1b_c00324{word-spacing:16.214400px;}
._0_c00324{margin-left:-1.322640px;}
._1_c00324{width:1.008000px;}
.fc0_c00324{color:rgb(0,0,0);}
.fs3_c00324{font-size:42.120000px;}
.fs4_c00324{font-size:47.880000px;}
.fs1_c00324{font-size:54.000000px;}
.fs0_c00324{font-size:60.120000px;}
.fs2_c00324{font-size:72.000000px;}
.y0_c00324{bottom:0.000000px;}
.y3_c00324{bottom:57.450450px;}
.y22_c00324{bottom:113.706030px;}
.y21_c00324{bottom:132.068010px;}
.y20_c00324{bottom:150.334230px;}
.y1f_c00324{bottom:168.600450px;}
.y1e_c00324{bottom:183.810600px;}
.y1d_c00324{bottom:204.510600px;}
.y1c_c00324{bottom:225.210450px;}
.y1b_c00324{bottom:349.410450px;}
.y1a_c00324{bottom:383.790450px;}
.y19_c00324{bottom:418.260450px;}
.y18_c00324{bottom:452.640450px;}
.y17_c00324{bottom:487.110450px;}
.y16_c00324{bottom:521.490450px;}
.y15_c00324{bottom:555.960450px;}
.y14_c00324{bottom:590.340450px;}
.y13_c00324{bottom:624.810450px;}
.y12_c00324{bottom:659.190450px;}
.y11_c00324{bottom:693.660450px;}
.y10_c00324{bottom:728.040450px;}
.yf_c00324{bottom:762.510450px;}
.ye_c00324{bottom:796.890450px;}
.yd_c00324{bottom:831.360450px;}
.yc_c00324{bottom:865.740450px;}
.yb_c00324{bottom:900.210450px;}
.ya_c00324{bottom:934.590450px;}
.y9_c00324{bottom:969.060450px;}
.y8_c00324{bottom:1003.440450px;}
.y7_c00324{bottom:1037.910450px;}
.y6_c00324{bottom:1072.290450px;}
.y5_c00324{bottom:1106.760450px;}
.y4_c00324{bottom:1141.140450px;}
.y2_c00324{bottom:1177.860450px;}
.y1_c00324{bottom:1196.850450px;}
.h7_c00324{height:47.988281px;}
.h6_c00324{height:47.988881px;}
.h8_c00324{height:49.937344px;}
.h1_c00324{height:50.315273px;}
.h2_c00324{height:56.320312px;}
.h4_c00324{height:60.257812px;}
.h5_c00324{height:65.130820px;}
.h3_c00324{height:72.160312px;}
.h0_c00324{height:1263.000000px;}
.w1_c00324{width:892.500000px;}
.w0_c00324{width:892.830000px;}
.x0_c00324{left:0.000000px;}
.x1_c00324{left:127.620000px;}
.x2_c00324{left:180.720000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.v1_c00324{vertical-align:14.080000pt;}
.v2_c00324{vertical-align:26.560000pt;}
.ls9_c00324{letter-spacing:-0.134400pt;}
.lsf_c00324{letter-spacing:-0.032000pt;}
.lse_c00324{letter-spacing:-0.025600pt;}
.lsb_c00324{letter-spacing:-0.019200pt;}
.lsa_c00324{letter-spacing:-0.012800pt;}
.lsc_c00324{letter-spacing:-0.006400pt;}
.ls8_c00324{letter-spacing:0.000000pt;}
.ls2_c00324{letter-spacing:0.006400pt;}
.ls6_c00324{letter-spacing:0.012768pt;}
.ls5_c00324{letter-spacing:0.012800pt;}
.ls10_c00324{letter-spacing:0.019200pt;}
.ls7_c00324{letter-spacing:0.025536pt;}
.ls4_c00324{letter-spacing:0.025600pt;}
.ls0_c00324{letter-spacing:0.042752pt;}
.ls3_c00324{letter-spacing:0.048672pt;}
.lsd_c00324{letter-spacing:0.083200pt;}
.ls1_c00324{letter-spacing:1077.440000pt;}
.ws0_c00324{word-spacing:-9.408672pt;}
.ws27_c00324{word-spacing:-0.076800pt;}
.ws25_c00324{word-spacing:-0.012800pt;}
.ws29_c00324{word-spacing:-0.008512pt;}
.ws2_c00324{word-spacing:0.000000pt;}
.ws28_c00324{word-spacing:0.004256pt;}
.ws18_c00324{word-spacing:0.012800pt;}
.ws26_c00324{word-spacing:0.019200pt;}
.wsf_c00324{word-spacing:0.032000pt;}
.ws1_c00324{word-spacing:0.037408pt;}
.wsc_c00324{word-spacing:0.051200pt;}
.ws24_c00324{word-spacing:0.070400pt;}
.wsb_c00324{word-spacing:0.089600pt;}
.ws8_c00324{word-spacing:0.262400pt;}
.ws17_c00324{word-spacing:0.320000pt;}
.ws7_c00324{word-spacing:0.326400pt;}
.ws1d_c00324{word-spacing:0.428800pt;}
.ws1c_c00324{word-spacing:0.441600pt;}
.ws9_c00324{word-spacing:1.292800pt;}
.wsa_c00324{word-spacing:1.324800pt;}
.ws15_c00324{word-spacing:2.572800pt;}
.ws13_c00324{word-spacing:2.598400pt;}
.ws14_c00324{word-spacing:2.636800pt;}
.ws16_c00324{word-spacing:2.905600pt;}
.wsd_c00324{word-spacing:4.166400pt;}
.wse_c00324{word-spacing:4.172800pt;}
.ws1e_c00324{word-spacing:4.480000pt;}
.ws10_c00324{word-spacing:4.486400pt;}
.ws1f_c00324{word-spacing:4.563200pt;}
.ws6_c00324{word-spacing:6.080000pt;}
.ws5_c00324{word-spacing:6.105600pt;}
.ws20_c00324{word-spacing:7.072000pt;}
.ws3_c00324{word-spacing:7.372800pt;}
.ws11_c00324{word-spacing:8.025600pt;}
.ws12_c00324{word-spacing:8.070400pt;}
.ws23_c00324{word-spacing:8.979200pt;}
.ws21_c00324{word-spacing:9.625600pt;}
.ws22_c00324{word-spacing:9.670400pt;}
.ws4_c00324{word-spacing:11.539200pt;}
.ws1a_c00324{word-spacing:13.100800pt;}
.ws19_c00324{word-spacing:13.126400pt;}
.ws1b_c00324{word-spacing:14.412800pt;}
._0_c00324{margin-left:-1.175680pt;}
._1_c00324{width:0.896000pt;}
.fs3_c00324{font-size:37.440000pt;}
.fs4_c00324{font-size:42.560000pt;}
.fs1_c00324{font-size:48.000000pt;}
.fs0_c00324{font-size:53.440000pt;}
.fs2_c00324{font-size:64.000000pt;}
.y0_c00324{bottom:0.000000pt;}
.y3_c00324{bottom:51.067067pt;}
.y22_c00324{bottom:101.072027pt;}
.y21_c00324{bottom:117.393787pt;}
.y20_c00324{bottom:133.630427pt;}
.y1f_c00324{bottom:149.867067pt;}
.y1e_c00324{bottom:163.387200pt;}
.y1d_c00324{bottom:181.787200pt;}
.y1c_c00324{bottom:200.187067pt;}
.y1b_c00324{bottom:310.587067pt;}
.y1a_c00324{bottom:341.147067pt;}
.y19_c00324{bottom:371.787067pt;}
.y18_c00324{bottom:402.347067pt;}
.y17_c00324{bottom:432.987067pt;}
.y16_c00324{bottom:463.547067pt;}
.y15_c00324{bottom:494.187067pt;}
.y14_c00324{bottom:524.747067pt;}
.y13_c00324{bottom:555.387067pt;}
.y12_c00324{bottom:585.947067pt;}
.y11_c00324{bottom:616.587067pt;}
.y10_c00324{bottom:647.147067pt;}
.yf_c00324{bottom:677.787067pt;}
.ye_c00324{bottom:708.347067pt;}
.yd_c00324{bottom:738.987067pt;}
.yc_c00324{bottom:769.547067pt;}
.yb_c00324{bottom:800.187067pt;}
.ya_c00324{bottom:830.747067pt;}
.y9_c00324{bottom:861.387067pt;}
.y8_c00324{bottom:891.947067pt;}
.y7_c00324{bottom:922.587067pt;}
.y6_c00324{bottom:953.147067pt;}
.y5_c00324{bottom:983.787067pt;}
.y4_c00324{bottom:1014.347067pt;}
.y2_c00324{bottom:1046.987067pt;}
.y1_c00324{bottom:1063.867067pt;}
.h7_c00324{height:42.656250pt;}
.h6_c00324{height:42.656783pt;}
.h8_c00324{height:44.388750pt;}
.h1_c00324{height:44.724687pt;}
.h2_c00324{height:50.062500pt;}
.h4_c00324{height:53.562500pt;}
.h5_c00324{height:57.894063pt;}
.h3_c00324{height:64.142500pt;}
.h0_c00324{height:1122.666667pt;}
.w1_c00324{width:793.333333pt;}
.w0_c00324{width:793.626667pt;}
.x0_c00324{left:0.000000pt;}
.x1_c00324{left:113.440000pt;}
.x2_c00324{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_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_45d2c2b62287bc0d6f204f5f.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_6ec96a9fe4e59b2d3feb1c41.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;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_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.v1_c00325{vertical-align:29.880000px;}
.ls8_c00325{letter-spacing:-0.151200px;}
.lsc_c00325{letter-spacing:-0.036000px;}
.lsd_c00325{letter-spacing:-0.028800px;}
.lse_c00325{letter-spacing:-0.021600px;}
.ls9_c00325{letter-spacing:-0.014400px;}
.lsb_c00325{letter-spacing:-0.007200px;}
.ls7_c00325{letter-spacing:0.000000px;}
.ls2_c00325{letter-spacing:0.007200px;}
.ls1_c00325{letter-spacing:0.014400px;}
.ls5_c00325{letter-spacing:0.019152px;}
.ls6_c00325{letter-spacing:0.028728px;}
.ls10_c00325{letter-spacing:0.036000px;}
.ls0_c00325{letter-spacing:0.036072px;}
.ls4_c00325{letter-spacing:0.043200px;}
.ls3_c00325{letter-spacing:0.054756px;}
.lsf_c00325{letter-spacing:0.064800px;}
.lsa_c00325{letter-spacing:0.093600px;}
.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:-10.584756px;}
.ws1_c00325{word-spacing:-0.306612px;}
.ws10_c00325{word-spacing:-0.093600px;}
.ws1f_c00325{word-spacing:-0.064800px;}
.ws1e_c00325{word-spacing:-0.043200px;}
.ws23_c00325{word-spacing:-0.036000px;}
.ws27_c00325{word-spacing:-0.009576px;}
.ws2_c00325{word-spacing:0.000000px;}
.ws7_c00325{word-spacing:0.014400px;}
.ws3_c00325{word-spacing:0.028800px;}
.wsf_c00325{word-spacing:0.050400px;}
.ws4_c00325{word-spacing:0.079200px;}
.ws1d_c00325{word-spacing:0.108000px;}
.ws11_c00325{word-spacing:0.720000px;}
.ws14_c00325{word-spacing:1.800000px;}
.ws15_c00325{word-spacing:1.879200px;}
.ws26_c00325{word-spacing:2.203200px;}
.ws25_c00325{word-spacing:2.224800px;}
.ws19_c00325{word-spacing:2.944800px;}
.ws18_c00325{word-spacing:3.196800px;}
.ws6_c00325{word-spacing:3.232800px;}
.ws5_c00325{word-spacing:3.369600px;}
.wsc_c00325{word-spacing:4.334400px;}
.wsd_c00325{word-spacing:4.406400px;}
.ws22_c00325{word-spacing:4.730400px;}
.ws8_c00325{word-spacing:5.061600px;}
.ws9_c00325{word-spacing:5.407200px;}
.wsa_c00325{word-spacing:5.436000px;}
.ws1b_c00325{word-spacing:5.724000px;}
.ws1a_c00325{word-spacing:5.781600px;}
.ws17_c00325{word-spacing:6.436800px;}
.ws16_c00325{word-spacing:6.530400px;}
.wsb_c00325{word-spacing:7.588800px;}
.ws1c_c00325{word-spacing:8.294400px;}
.ws20_c00325{word-spacing:12.592800px;}
.ws21_c00325{word-spacing:12.664800px;}
.ws24_c00325{word-spacing:13.687200px;}
.wse_c00325{word-spacing:14.407200px;}
.ws13_c00325{word-spacing:17.625600px;}
.ws12_c00325{word-spacing:17.647200px;}
._0_c00325{margin-left:-1.022040px;}
._1_c00325{width:1.267200px;}
.fc0_c00325{color:rgb(0,0,0);}
.fs3_c00325{font-size:42.120000px;}
.fs4_c00325{font-size:47.880000px;}
.fs2_c00325{font-size:54.000000px;}
.fs0_c00325{font-size:60.120000px;}
.fs1_c00325{font-size:72.000000px;}
.y0_c00325{bottom:0.000000px;}
.y3_c00325{bottom:57.450450px;}
.y4_c00325{bottom:61.410450px;}
.y23_c00325{bottom:113.702250px;}
.y22_c00325{bottom:132.064230px;}
.y21_c00325{bottom:150.330450px;}
.y20_c00325{bottom:165.540450px;}
.y1f_c00325{bottom:186.240450px;}
.y1e_c00325{bottom:206.940450px;}
.y1d_c00325{bottom:314.940450px;}
.y1c_c00325{bottom:349.410450px;}
.y1b_c00325{bottom:383.790450px;}
.y1a_c00325{bottom:418.260450px;}
.y19_c00325{bottom:452.640450px;}
.y18_c00325{bottom:487.110450px;}
.y17_c00325{bottom:521.490450px;}
.y16_c00325{bottom:555.960450px;}
.y15_c00325{bottom:590.340450px;}
.y14_c00325{bottom:624.810450px;}
.y13_c00325{bottom:659.190450px;}
.y12_c00325{bottom:693.660450px;}
.y11_c00325{bottom:728.040450px;}
.y10_c00325{bottom:762.510450px;}
.yf_c00325{bottom:796.890450px;}
.ye_c00325{bottom:831.360450px;}
.yd_c00325{bottom:865.740450px;}
.yc_c00325{bottom:900.210450px;}
.yb_c00325{bottom:934.590450px;}
.ya_c00325{bottom:969.060450px;}
.y9_c00325{bottom:1003.440450px;}
.y8_c00325{bottom:1037.910450px;}
.y7_c00325{bottom:1072.290450px;}
.y6_c00325{bottom:1106.760450px;}
.y5_c00325{bottom:1141.140450px;}
.y2_c00325{bottom:1173.810450px;}
.y1_c00325{bottom:1196.850450px;}
.h2_c00325{height:47.988281px;}
.h6_c00325{height:49.937344px;}
.h1_c00325{height:50.315273px;}
.h3_c00325{height:56.320312px;}
.h4_c00325{height:60.257812px;}
.h5_c00325{height:65.130820px;}
.h0_c00325{height:1263.000000px;}
.w1_c00325{width:892.500000px;}
.w0_c00325{width:892.830000px;}
.x0_c00325{left:0.000000px;}
.x2_c00325{left:127.620000px;}
.x5_c00325{left:180.720000px;}
.x4_c00325{left:435.240000px;}
.x3_c00325{left:446.490000px;}
.x1_c00325{left:490.770000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.v1_c00325{vertical-align:26.560000pt;}
.ls8_c00325{letter-spacing:-0.134400pt;}
.lsc_c00325{letter-spacing:-0.032000pt;}
.lsd_c00325{letter-spacing:-0.025600pt;}
.lse_c00325{letter-spacing:-0.019200pt;}
.ls9_c00325{letter-spacing:-0.012800pt;}
.lsb_c00325{letter-spacing:-0.006400pt;}
.ls7_c00325{letter-spacing:0.000000pt;}
.ls2_c00325{letter-spacing:0.006400pt;}
.ls1_c00325{letter-spacing:0.012800pt;}
.ls5_c00325{letter-spacing:0.017024pt;}
.ls6_c00325{letter-spacing:0.025536pt;}
.ls10_c00325{letter-spacing:0.032000pt;}
.ls0_c00325{letter-spacing:0.032064pt;}
.ls4_c00325{letter-spacing:0.038400pt;}
.ls3_c00325{letter-spacing:0.048672pt;}
.lsf_c00325{letter-spacing:0.057600pt;}
.lsa_c00325{letter-spacing:0.083200pt;}
.ws0_c00325{word-spacing:-9.408672pt;}
.ws1_c00325{word-spacing:-0.272544pt;}
.ws10_c00325{word-spacing:-0.083200pt;}
.ws1f_c00325{word-spacing:-0.057600pt;}
.ws1e_c00325{word-spacing:-0.038400pt;}
.ws23_c00325{word-spacing:-0.032000pt;}
.ws27_c00325{word-spacing:-0.008512pt;}
.ws2_c00325{word-spacing:0.000000pt;}
.ws7_c00325{word-spacing:0.012800pt;}
.ws3_c00325{word-spacing:0.025600pt;}
.wsf_c00325{word-spacing:0.044800pt;}
.ws4_c00325{word-spacing:0.070400pt;}
.ws1d_c00325{word-spacing:0.096000pt;}
.ws11_c00325{word-spacing:0.640000pt;}
.ws14_c00325{word-spacing:1.600000pt;}
.ws15_c00325{word-spacing:1.670400pt;}
.ws26_c00325{word-spacing:1.958400pt;}
.ws25_c00325{word-spacing:1.977600pt;}
.ws19_c00325{word-spacing:2.617600pt;}
.ws18_c00325{word-spacing:2.841600pt;}
.ws6_c00325{word-spacing:2.873600pt;}
.ws5_c00325{word-spacing:2.995200pt;}
.wsc_c00325{word-spacing:3.852800pt;}
.wsd_c00325{word-spacing:3.916800pt;}
.ws22_c00325{word-spacing:4.204800pt;}
.ws8_c00325{word-spacing:4.499200pt;}
.ws9_c00325{word-spacing:4.806400pt;}
.wsa_c00325{word-spacing:4.832000pt;}
.ws1b_c00325{word-spacing:5.088000pt;}
.ws1a_c00325{word-spacing:5.139200pt;}
.ws17_c00325{word-spacing:5.721600pt;}
.ws16_c00325{word-spacing:5.804800pt;}
.wsb_c00325{word-spacing:6.745600pt;}
.ws1c_c00325{word-spacing:7.372800pt;}
.ws20_c00325{word-spacing:11.193600pt;}
.ws21_c00325{word-spacing:11.257600pt;}
.ws24_c00325{word-spacing:12.166400pt;}
.wse_c00325{word-spacing:12.806400pt;}
.ws13_c00325{word-spacing:15.667200pt;}
.ws12_c00325{word-spacing:15.686400pt;}
._0_c00325{margin-left:-0.908480pt;}
._1_c00325{width:1.126400pt;}
.fs3_c00325{font-size:37.440000pt;}
.fs4_c00325{font-size:42.560000pt;}
.fs2_c00325{font-size:48.000000pt;}
.fs0_c00325{font-size:53.440000pt;}
.fs1_c00325{font-size:64.000000pt;}
.y0_c00325{bottom:0.000000pt;}
.y3_c00325{bottom:51.067067pt;}
.y4_c00325{bottom:54.587067pt;}
.y23_c00325{bottom:101.068667pt;}
.y22_c00325{bottom:117.390427pt;}
.y21_c00325{bottom:133.627067pt;}
.y20_c00325{bottom:147.147067pt;}
.y1f_c00325{bottom:165.547067pt;}
.y1e_c00325{bottom:183.947067pt;}
.y1d_c00325{bottom:279.947067pt;}
.y1c_c00325{bottom:310.587067pt;}
.y1b_c00325{bottom:341.147067pt;}
.y1a_c00325{bottom:371.787067pt;}
.y19_c00325{bottom:402.347067pt;}
.y18_c00325{bottom:432.987067pt;}
.y17_c00325{bottom:463.547067pt;}
.y16_c00325{bottom:494.187067pt;}
.y15_c00325{bottom:524.747067pt;}
.y14_c00325{bottom:555.387067pt;}
.y13_c00325{bottom:585.947067pt;}
.y12_c00325{bottom:616.587067pt;}
.y11_c00325{bottom:647.147067pt;}
.y10_c00325{bottom:677.787067pt;}
.yf_c00325{bottom:708.347067pt;}
.ye_c00325{bottom:738.987067pt;}
.yd_c00325{bottom:769.547067pt;}
.yc_c00325{bottom:800.187067pt;}
.yb_c00325{bottom:830.747067pt;}
.ya_c00325{bottom:861.387067pt;}
.y9_c00325{bottom:891.947067pt;}
.y8_c00325{bottom:922.587067pt;}
.y7_c00325{bottom:953.147067pt;}
.y6_c00325{bottom:983.787067pt;}
.y5_c00325{bottom:1014.347067pt;}
.y2_c00325{bottom:1043.387067pt;}
.y1_c00325{bottom:1063.867067pt;}
.h2_c00325{height:42.656250pt;}
.h6_c00325{height:44.388750pt;}
.h1_c00325{height:44.724687pt;}
.h3_c00325{height:50.062500pt;}
.h4_c00325{height:53.562500pt;}
.h5_c00325{height:57.894062pt;}
.h0_c00325{height:1122.666667pt;}
.w1_c00325{width:793.333333pt;}
.w0_c00325{width:793.626667pt;}
.x0_c00325{left:0.000000pt;}
.x2_c00325{left:113.440000pt;}
.x5_c00325{left:160.640000pt;}
.x4_c00325{left:386.880000pt;}
.x3_c00325{left:396.880000pt;}
.x1_c00325{left:436.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_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_5a1dc0eb5df5a54644d0c5d8.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.100098;font-style:normal;font-weight:normal;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_326ba5cc0330a862fb6ccb68.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;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_c00326;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_2012ae6705eda405ac2c7487.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;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_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.v1_c00326{vertical-align:15.840000px;}
.v2_c00326{vertical-align:29.880000px;}
.ls10_c00326{letter-spacing:-0.151200px;}
.ls14_c00326{letter-spacing:-0.043200px;}
.ls16_c00326{letter-spacing:-0.036000px;}
.ls15_c00326{letter-spacing:-0.028800px;}
.ls13_c00326{letter-spacing:-0.021600px;}
.ls11_c00326{letter-spacing:-0.014400px;}
.ls17_c00326{letter-spacing:-0.009576px;}
.ls12_c00326{letter-spacing:-0.007200px;}
.lsf_c00326{letter-spacing:0.000000px;}
.ls7_c00326{letter-spacing:0.007200px;}
.lsa_c00326{letter-spacing:0.014364px;}
.ls2_c00326{letter-spacing:0.021600px;}
.ls6_c00326{letter-spacing:0.028800px;}
.ls8_c00326{letter-spacing:0.033516px;}
.ls9_c00326{letter-spacing:0.047880px;}
.ls0_c00326{letter-spacing:0.048096px;}
.lsc_c00326{letter-spacing:0.052668px;}
.ls3_c00326{letter-spacing:0.054756px;}
.lse_c00326{letter-spacing:0.076608px;}
.lsb_c00326{letter-spacing:0.104040px;}
.ls4_c00326{letter-spacing:0.144000px;}
.lsd_c00326{letter-spacing:0.158004px;}
.ls5_c00326{letter-spacing:66.024000px;}
.ls1_c00326{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00326{word-spacing:-18.000000px;}
.ws2_c00326{word-spacing:-10.808640px;}
.ws0_c00326{word-spacing:-10.584756px;}
.ws2d_c00326{word-spacing:-0.028728px;}
.ws7_c00326{word-spacing:-0.021600px;}
.ws2c_c00326{word-spacing:-0.014364px;}
.ws8_c00326{word-spacing:-0.007200px;}
.ws4_c00326{word-spacing:0.000000px;}
.ws34_c00326{word-spacing:0.028728px;}
.ws3_c00326{word-spacing:0.042084px;}
.ws15_c00326{word-spacing:0.064800px;}
.ws1e_c00326{word-spacing:0.273600px;}
.ws27_c00326{word-spacing:1.418400px;}
.ws26_c00326{word-spacing:1.454400px;}
.ws21_c00326{word-spacing:2.188800px;}
.ws22_c00326{word-spacing:2.217600px;}
.wsb_c00326{word-spacing:3.297600px;}
.wsc_c00326{word-spacing:3.398400px;}
.ws10_c00326{word-spacing:3.952800px;}
.ws28_c00326{word-spacing:4.240800px;}
.ws31_c00326{word-spacing:4.261320px;}
.ws32_c00326{word-spacing:4.285260px;}
.ws33_c00326{word-spacing:4.323564px;}
.ws29_c00326{word-spacing:4.334400px;}
.ws24_c00326{word-spacing:4.730400px;}
.ws23_c00326{word-spacing:4.752000px;}
.ws20_c00326{word-spacing:5.018400px;}
.ws16_c00326{word-spacing:5.040000px;}
.ws1f_c00326{word-spacing:5.047200px;}
.ws17_c00326{word-spacing:5.133600px;}
.ws9_c00326{word-spacing:5.342400px;}
.wsa_c00326{word-spacing:5.400000px;}
.ws6_c00326{word-spacing:5.767200px;}
.ws5_c00326{word-spacing:5.774400px;}
.ws12_c00326{word-spacing:5.983200px;}
.ws11_c00326{word-spacing:6.163200px;}
.ws13_c00326{word-spacing:6.480000px;}
.ws14_c00326{word-spacing:6.624000px;}
.wsd_c00326{word-spacing:7.207200px;}
.ws30_c00326{word-spacing:8.139600px;}
.ws2f_c00326{word-spacing:8.244936px;}
.ws2e_c00326{word-spacing:8.283240px;}
.ws1d_c00326{word-spacing:9.021600px;}
.ws2b_c00326{word-spacing:10.800000px;}
.ws2a_c00326{word-spacing:10.886400px;}
.ws1b_c00326{word-spacing:11.116800px;}
.ws1a_c00326{word-spacing:11.188800px;}
.ws1c_c00326{word-spacing:11.520000px;}
.ws18_c00326{word-spacing:11.822400px;}
.ws19_c00326{word-spacing:11.894400px;}
.ws25_c00326{word-spacing:13.334400px;}
.wsf_c00326{word-spacing:16.934400px;}
.wse_c00326{word-spacing:23.061600px;}
._0_c00326{margin-left:-1.322640px;}
._1_c00326{width:1.080000px;}
._2_c00326{width:8.607456px;}
.fc0_c00326{color:rgb(0,0,0);}
.fs5_c00326{font-size:38.880000px;}
.fs3_c00326{font-size:42.120000px;}
.fs4_c00326{font-size:47.880000px;}
.fs1_c00326{font-size:54.000000px;}
.fs0_c00326{font-size:60.120000px;}
.fs2_c00326{font-size:72.000000px;}
.y0_c00326{bottom:0.000000px;}
.y3_c00326{bottom:57.450450px;}
.y24_c00326{bottom:113.703690px;}
.y23_c00326{bottom:127.564950px;}
.y22_c00326{bottom:141.334230px;}
.y21_c00326{bottom:159.600450px;}
.y20_c00326{bottom:174.810600px;}
.y1f_c00326{bottom:195.510600px;}
.y1e_c00326{bottom:216.210450px;}
.y1d_c00326{bottom:244.560450px;}
.y1c_c00326{bottom:278.940450px;}
.y1b_c00326{bottom:313.410450px;}
.y1a_c00326{bottom:347.790450px;}
.y19_c00326{bottom:382.260450px;}
.y18_c00326{bottom:416.640450px;}
.y17_c00326{bottom:451.110450px;}
.y16_c00326{bottom:494.490450px;}
.y15_c00326{bottom:528.960450px;}
.y14_c00326{bottom:563.340450px;}
.y13_c00326{bottom:597.810450px;}
.y12_c00326{bottom:632.190450px;}
.y11_c00326{bottom:666.660450px;}
.y10_c00326{bottom:701.040450px;}
.yf_c00326{bottom:744.510450px;}
.ye_c00326{bottom:778.890450px;}
.yd_c00326{bottom:813.360450px;}
.yc_c00326{bottom:847.740450px;}
.yb_c00326{bottom:882.210450px;}
.ya_c00326{bottom:925.590450px;}
.y9_c00326{bottom:960.060450px;}
.y8_c00326{bottom:994.440450px;}
.y7_c00326{bottom:1028.910450px;}
.y6_c00326{bottom:1063.290450px;}
.y5_c00326{bottom:1106.760450px;}
.y4_c00326{bottom:1141.140450px;}
.y2_c00326{bottom:1177.860450px;}
.y1_c00326{bottom:1196.850450px;}
.h8_c00326{height:47.988281px;}
.h7_c00326{height:47.988881px;}
.h9_c00326{height:49.937344px;}
.h1_c00326{height:50.315273px;}
.h2_c00326{height:56.320312px;}
.h4_c00326{height:60.257812px;}
.h5_c00326{height:65.130820px;}
.h3_c00326{height:72.160312px;}
.h6_c00326{height:75.093750px;}
.h0_c00326{height:1263.000000px;}
.w1_c00326{width:892.500000px;}
.w0_c00326{width:892.830000px;}
.x0_c00326{left:0.000000px;}
.x1_c00326{left:127.620000px;}
.x2_c00326{left:154.440000px;}
.x3_c00326{left:181.170000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.v1_c00326{vertical-align:14.080000pt;}
.v2_c00326{vertical-align:26.560000pt;}
.ls10_c00326{letter-spacing:-0.134400pt;}
.ls14_c00326{letter-spacing:-0.038400pt;}
.ls16_c00326{letter-spacing:-0.032000pt;}
.ls15_c00326{letter-spacing:-0.025600pt;}
.ls13_c00326{letter-spacing:-0.019200pt;}
.ls11_c00326{letter-spacing:-0.012800pt;}
.ls17_c00326{letter-spacing:-0.008512pt;}
.ls12_c00326{letter-spacing:-0.006400pt;}
.lsf_c00326{letter-spacing:0.000000pt;}
.ls7_c00326{letter-spacing:0.006400pt;}
.lsa_c00326{letter-spacing:0.012768pt;}
.ls2_c00326{letter-spacing:0.019200pt;}
.ls6_c00326{letter-spacing:0.025600pt;}
.ls8_c00326{letter-spacing:0.029792pt;}
.ls9_c00326{letter-spacing:0.042560pt;}
.ls0_c00326{letter-spacing:0.042752pt;}
.lsc_c00326{letter-spacing:0.046816pt;}
.ls3_c00326{letter-spacing:0.048672pt;}
.lse_c00326{letter-spacing:0.068096pt;}
.lsb_c00326{letter-spacing:0.092480pt;}
.ls4_c00326{letter-spacing:0.128000pt;}
.lsd_c00326{letter-spacing:0.140448pt;}
.ls5_c00326{letter-spacing:58.688000pt;}
.ls1_c00326{letter-spacing:1077.440000pt;}
.ws1_c00326{word-spacing:-16.000000pt;}
.ws2_c00326{word-spacing:-9.607680pt;}
.ws0_c00326{word-spacing:-9.408672pt;}
.ws2d_c00326{word-spacing:-0.025536pt;}
.ws7_c00326{word-spacing:-0.019200pt;}
.ws2c_c00326{word-spacing:-0.012768pt;}
.ws8_c00326{word-spacing:-0.006400pt;}
.ws4_c00326{word-spacing:0.000000pt;}
.ws34_c00326{word-spacing:0.025536pt;}
.ws3_c00326{word-spacing:0.037408pt;}
.ws15_c00326{word-spacing:0.057600pt;}
.ws1e_c00326{word-spacing:0.243200pt;}
.ws27_c00326{word-spacing:1.260800pt;}
.ws26_c00326{word-spacing:1.292800pt;}
.ws21_c00326{word-spacing:1.945600pt;}
.ws22_c00326{word-spacing:1.971200pt;}
.wsb_c00326{word-spacing:2.931200pt;}
.wsc_c00326{word-spacing:3.020800pt;}
.ws10_c00326{word-spacing:3.513600pt;}
.ws28_c00326{word-spacing:3.769600pt;}
.ws31_c00326{word-spacing:3.787840pt;}
.ws32_c00326{word-spacing:3.809120pt;}
.ws33_c00326{word-spacing:3.843168pt;}
.ws29_c00326{word-spacing:3.852800pt;}
.ws24_c00326{word-spacing:4.204800pt;}
.ws23_c00326{word-spacing:4.224000pt;}
.ws20_c00326{word-spacing:4.460800pt;}
.ws16_c00326{word-spacing:4.480000pt;}
.ws1f_c00326{word-spacing:4.486400pt;}
.ws17_c00326{word-spacing:4.563200pt;}
.ws9_c00326{word-spacing:4.748800pt;}
.wsa_c00326{word-spacing:4.800000pt;}
.ws6_c00326{word-spacing:5.126400pt;}
.ws5_c00326{word-spacing:5.132800pt;}
.ws12_c00326{word-spacing:5.318400pt;}
.ws11_c00326{word-spacing:5.478400pt;}
.ws13_c00326{word-spacing:5.760000pt;}
.ws14_c00326{word-spacing:5.888000pt;}
.wsd_c00326{word-spacing:6.406400pt;}
.ws30_c00326{word-spacing:7.235200pt;}
.ws2f_c00326{word-spacing:7.328832pt;}
.ws2e_c00326{word-spacing:7.362880pt;}
.ws1d_c00326{word-spacing:8.019200pt;}
.ws2b_c00326{word-spacing:9.600000pt;}
.ws2a_c00326{word-spacing:9.676800pt;}
.ws1b_c00326{word-spacing:9.881600pt;}
.ws1a_c00326{word-spacing:9.945600pt;}
.ws1c_c00326{word-spacing:10.240000pt;}
.ws18_c00326{word-spacing:10.508800pt;}
.ws19_c00326{word-spacing:10.572800pt;}
.ws25_c00326{word-spacing:11.852800pt;}
.wsf_c00326{word-spacing:15.052800pt;}
.wse_c00326{word-spacing:20.499200pt;}
._0_c00326{margin-left:-1.175680pt;}
._1_c00326{width:0.960000pt;}
._2_c00326{width:7.651072pt;}
.fs5_c00326{font-size:34.560000pt;}
.fs3_c00326{font-size:37.440000pt;}
.fs4_c00326{font-size:42.560000pt;}
.fs1_c00326{font-size:48.000000pt;}
.fs0_c00326{font-size:53.440000pt;}
.fs2_c00326{font-size:64.000000pt;}
.y0_c00326{bottom:0.000000pt;}
.y3_c00326{bottom:51.067067pt;}
.y24_c00326{bottom:101.069947pt;}
.y23_c00326{bottom:113.391067pt;}
.y22_c00326{bottom:125.630427pt;}
.y21_c00326{bottom:141.867067pt;}
.y20_c00326{bottom:155.387200pt;}
.y1f_c00326{bottom:173.787200pt;}
.y1e_c00326{bottom:192.187067pt;}
.y1d_c00326{bottom:217.387067pt;}
.y1c_c00326{bottom:247.947067pt;}
.y1b_c00326{bottom:278.587067pt;}
.y1a_c00326{bottom:309.147067pt;}
.y19_c00326{bottom:339.787067pt;}
.y18_c00326{bottom:370.347067pt;}
.y17_c00326{bottom:400.987067pt;}
.y16_c00326{bottom:439.547067pt;}
.y15_c00326{bottom:470.187067pt;}
.y14_c00326{bottom:500.747067pt;}
.y13_c00326{bottom:531.387067pt;}
.y12_c00326{bottom:561.947067pt;}
.y11_c00326{bottom:592.587067pt;}
.y10_c00326{bottom:623.147067pt;}
.yf_c00326{bottom:661.787067pt;}
.ye_c00326{bottom:692.347067pt;}
.yd_c00326{bottom:722.987067pt;}
.yc_c00326{bottom:753.547067pt;}
.yb_c00326{bottom:784.187067pt;}
.ya_c00326{bottom:822.747067pt;}
.y9_c00326{bottom:853.387067pt;}
.y8_c00326{bottom:883.947067pt;}
.y7_c00326{bottom:914.587067pt;}
.y6_c00326{bottom:945.147067pt;}
.y5_c00326{bottom:983.787067pt;}
.y4_c00326{bottom:1014.347067pt;}
.y2_c00326{bottom:1046.987067pt;}
.y1_c00326{bottom:1063.867067pt;}
.h8_c00326{height:42.656250pt;}
.h7_c00326{height:42.656783pt;}
.h9_c00326{height:44.388750pt;}
.h1_c00326{height:44.724687pt;}
.h2_c00326{height:50.062500pt;}
.h4_c00326{height:53.562500pt;}
.h5_c00326{height:57.894063pt;}
.h3_c00326{height:64.142500pt;}
.h6_c00326{height:66.750000pt;}
.h0_c00326{height:1122.666667pt;}
.w1_c00326{width:793.333333pt;}
.w0_c00326{width:793.626667pt;}
.x0_c00326{left:0.000000pt;}
.x1_c00326{left:113.440000pt;}
.x2_c00326{left:137.280000pt;}
.x3_c00326{left:161.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_36fa75d239bb07b893ed8d5b.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00327;src:url('chunks/assets/font_176a52cf12c20aa9293c84fe.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;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_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00327{vertical-align:-29.880000px;}
.v0_c00327{vertical-align:0.000000px;}
.v1_c00327{vertical-align:29.880000px;}
.lsf_c00327{letter-spacing:-0.151200px;}
.ls15_c00327{letter-spacing:-0.050400px;}
.ls11_c00327{letter-spacing:-0.028800px;}
.ls12_c00327{letter-spacing:-0.021600px;}
.ls10_c00327{letter-spacing:-0.014400px;}
.ls13_c00327{letter-spacing:-0.007200px;}
.lse_c00327{letter-spacing:0.000000px;}
.ls1_c00327{letter-spacing:0.007200px;}
.ls5_c00327{letter-spacing:0.014400px;}
.ls14_c00327{letter-spacing:0.021600px;}
.lsd_c00327{letter-spacing:0.028728px;}
.ls17_c00327{letter-spacing:0.028800px;}
.lsa_c00327{letter-spacing:0.033516px;}
.ls2_c00327{letter-spacing:0.036000px;}
.ls0_c00327{letter-spacing:0.036072px;}
.lsc_c00327{letter-spacing:0.047880px;}
.ls8_c00327{letter-spacing:0.050400px;}
.ls9_c00327{letter-spacing:0.054756px;}
.lsb_c00327{letter-spacing:0.062244px;}
.ls18_c00327{letter-spacing:0.067032px;}
.ls7_c00327{letter-spacing:0.079200px;}
.ls16_c00327{letter-spacing:0.093600px;}
.ls3_c00327{letter-spacing:0.144000px;}
.ls4_c00327{letter-spacing:66.024000px;}
.ls6_c00327{letter-spacing:85.104000px;}
.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:-10.584756px;}
.ws1_c00327{word-spacing:-0.306612px;}
.ws1f_c00327{word-spacing:-0.064800px;}
.ws30_c00327{word-spacing:-0.014364px;}
.ws5_c00327{word-spacing:-0.007200px;}
.ws2_c00327{word-spacing:0.000000px;}
.ws15_c00327{word-spacing:0.007200px;}
.ws20_c00327{word-spacing:0.021600px;}
.wsb_c00327{word-spacing:0.028800px;}
.ws24_c00327{word-spacing:0.043200px;}
.ws21_c00327{word-spacing:0.259200px;}
.ws18_c00327{word-spacing:0.280800px;}
.ws19_c00327{word-spacing:0.309600px;}
.ws22_c00327{word-spacing:0.352800px;}
.ws1a_c00327{word-spacing:0.468000px;}
.ws13_c00327{word-spacing:0.604800px;}
.ws10_c00327{word-spacing:0.712800px;}
.wsf_c00327{word-spacing:0.813600px;}
.wse_c00327{word-spacing:0.842400px;}
.ws23_c00327{word-spacing:1.094400px;}
.ws1d_c00327{word-spacing:1.440000px;}
.ws1e_c00327{word-spacing:1.454400px;}
.ws16_c00327{word-spacing:2.152800px;}
.ws17_c00327{word-spacing:2.181600px;}
.ws6_c00327{word-spacing:3.564000px;}
.ws7_c00327{word-spacing:3.614400px;}
.ws4_c00327{word-spacing:4.672800px;}
.ws3_c00327{word-spacing:4.737600px;}
.ws2f_c00327{word-spacing:5.027400px;}
.ws9_c00327{word-spacing:5.695200px;}
.ws2d_c00327{word-spacing:5.716872px;}
.ws2e_c00327{word-spacing:5.731236px;}
.ws2c_c00327{word-spacing:5.745600px;}
.ws14_c00327{word-spacing:5.803200px;}
.ws8_c00327{word-spacing:5.846400px;}
.ws26_c00327{word-spacing:7.884000px;}
.ws25_c00327{word-spacing:8.078400px;}
.ws11_c00327{word-spacing:11.628000px;}
.ws12_c00327{word-spacing:11.685600px;}
.ws27_c00327{word-spacing:11.880000px;}
.ws28_c00327{word-spacing:11.959200px;}
.wsa_c00327{word-spacing:12.261600px;}
.ws2a_c00327{word-spacing:12.931200px;}
.ws29_c00327{word-spacing:13.024800px;}
.ws1c_c00327{word-spacing:15.048000px;}
.ws1b_c00327{word-spacing:15.141600px;}
.ws2b_c00327{word-spacing:18.007200px;}
.wsc_c00327{word-spacing:29.174400px;}
.wsd_c00327{word-spacing:29.260800px;}
._0_c00327{margin-left:-1.022040px;}
._1_c00327{width:1.080000px;}
.fc0_c00327{color:rgb(0,0,0);}
.fs3_c00327{font-size:42.120000px;}
.fs4_c00327{font-size:47.880000px;}
.fs2_c00327{font-size:54.000000px;}
.fs0_c00327{font-size:60.120000px;}
.fs1_c00327{font-size:72.000000px;}
.y0_c00327{bottom:0.000000px;}
.y3_c00327{bottom:57.450450px;}
.y4_c00327{bottom:61.410450px;}
.y24_c00327{bottom:113.707470px;}
.y23_c00327{bottom:132.069450px;}
.y22_c00327{bottom:145.834950px;}
.y21_c00327{bottom:159.600450px;}
.y20_c00327{bottom:174.810600px;}
.y1f_c00327{bottom:195.510600px;}
.y1e_c00327{bottom:216.210450px;}
.y1d_c00327{bottom:269.940450px;}
.y1c_c00327{bottom:304.410450px;}
.y1b_c00327{bottom:338.790450px;}
.y1a_c00327{bottom:373.260450px;}
.y19_c00327{bottom:407.640450px;}
.y18_c00327{bottom:451.110450px;}
.y17_c00327{bottom:485.490450px;}
.y16_c00327{bottom:519.960450px;}
.y15_c00327{bottom:563.340450px;}
.y14_c00327{bottom:597.810450px;}
.y13_c00327{bottom:632.190450px;}
.y12_c00327{bottom:666.660450px;}
.y11_c00327{bottom:701.040450px;}
.y10_c00327{bottom:744.510450px;}
.yf_c00327{bottom:778.890450px;}
.ye_c00327{bottom:813.360450px;}
.yd_c00327{bottom:847.740450px;}
.yc_c00327{bottom:882.210450px;}
.yb_c00327{bottom:916.590450px;}
.ya_c00327{bottom:960.060450px;}
.y9_c00327{bottom:994.440450px;}
.y8_c00327{bottom:1028.910450px;}
.y7_c00327{bottom:1063.290450px;}
.y6_c00327{bottom:1106.760450px;}
.y5_c00327{bottom:1141.140450px;}
.y2_c00327{bottom:1173.810450px;}
.y1_c00327{bottom:1196.850450px;}
.h2_c00327{height:47.988281px;}
.h7_c00327{height:47.988881px;}
.h8_c00327{height:49.937344px;}
.h1_c00327{height:50.315273px;}
.h3_c00327{height:56.320312px;}
.h4_c00327{height:60.257812px;}
.h6_c00327{height:65.130820px;}
.h5_c00327{height:75.093750px;}
.h0_c00327{height:1263.000000px;}
.w1_c00327{width:892.500000px;}
.w0_c00327{width:892.830000px;}
.x0_c00327{left:0.000000px;}
.x2_c00327{left:127.620000px;}
.x7_c00327{left:154.440000px;}
.x5_c00327{left:181.170000px;}
.x6_c00327{left:207.180000px;}
.x4_c00327{left:435.240000px;}
.x3_c00327{left:446.490000px;}
.x1_c00327{left:490.770000px;}
@media print{
.v2_c00327{vertical-align:-26.560000pt;}
.v0_c00327{vertical-align:0.000000pt;}
.v1_c00327{vertical-align:26.560000pt;}
.lsf_c00327{letter-spacing:-0.134400pt;}
.ls15_c00327{letter-spacing:-0.044800pt;}
.ls11_c00327{letter-spacing:-0.025600pt;}
.ls12_c00327{letter-spacing:-0.019200pt;}
.ls10_c00327{letter-spacing:-0.012800pt;}
.ls13_c00327{letter-spacing:-0.006400pt;}
.lse_c00327{letter-spacing:0.000000pt;}
.ls1_c00327{letter-spacing:0.006400pt;}
.ls5_c00327{letter-spacing:0.012800pt;}
.ls14_c00327{letter-spacing:0.019200pt;}
.lsd_c00327{letter-spacing:0.025536pt;}
.ls17_c00327{letter-spacing:0.025600pt;}
.lsa_c00327{letter-spacing:0.029792pt;}
.ls2_c00327{letter-spacing:0.032000pt;}
.ls0_c00327{letter-spacing:0.032064pt;}
.lsc_c00327{letter-spacing:0.042560pt;}
.ls8_c00327{letter-spacing:0.044800pt;}
.ls9_c00327{letter-spacing:0.048672pt;}
.lsb_c00327{letter-spacing:0.055328pt;}
.ls18_c00327{letter-spacing:0.059584pt;}
.ls7_c00327{letter-spacing:0.070400pt;}
.ls16_c00327{letter-spacing:0.083200pt;}
.ls3_c00327{letter-spacing:0.128000pt;}
.ls4_c00327{letter-spacing:58.688000pt;}
.ls6_c00327{letter-spacing:75.648000pt;}
.ws0_c00327{word-spacing:-9.408672pt;}
.ws1_c00327{word-spacing:-0.272544pt;}
.ws1f_c00327{word-spacing:-0.057600pt;}
.ws30_c00327{word-spacing:-0.012768pt;}
.ws5_c00327{word-spacing:-0.006400pt;}
.ws2_c00327{word-spacing:0.000000pt;}
.ws15_c00327{word-spacing:0.006400pt;}
.ws20_c00327{word-spacing:0.019200pt;}
.wsb_c00327{word-spacing:0.025600pt;}
.ws24_c00327{word-spacing:0.038400pt;}
.ws21_c00327{word-spacing:0.230400pt;}
.ws18_c00327{word-spacing:0.249600pt;}
.ws19_c00327{word-spacing:0.275200pt;}
.ws22_c00327{word-spacing:0.313600pt;}
.ws1a_c00327{word-spacing:0.416000pt;}
.ws13_c00327{word-spacing:0.537600pt;}
.ws10_c00327{word-spacing:0.633600pt;}
.wsf_c00327{word-spacing:0.723200pt;}
.wse_c00327{word-spacing:0.748800pt;}
.ws23_c00327{word-spacing:0.972800pt;}
.ws1d_c00327{word-spacing:1.280000pt;}
.ws1e_c00327{word-spacing:1.292800pt;}
.ws16_c00327{word-spacing:1.913600pt;}
.ws17_c00327{word-spacing:1.939200pt;}
.ws6_c00327{word-spacing:3.168000pt;}
.ws7_c00327{word-spacing:3.212800pt;}
.ws4_c00327{word-spacing:4.153600pt;}
.ws3_c00327{word-spacing:4.211200pt;}
.ws2f_c00327{word-spacing:4.468800pt;}
.ws9_c00327{word-spacing:5.062400pt;}
.ws2d_c00327{word-spacing:5.081664pt;}
.ws2e_c00327{word-spacing:5.094432pt;}
.ws2c_c00327{word-spacing:5.107200pt;}
.ws14_c00327{word-spacing:5.158400pt;}
.ws8_c00327{word-spacing:5.196800pt;}
.ws26_c00327{word-spacing:7.008000pt;}
.ws25_c00327{word-spacing:7.180800pt;}
.ws11_c00327{word-spacing:10.336000pt;}
.ws12_c00327{word-spacing:10.387200pt;}
.ws27_c00327{word-spacing:10.560000pt;}
.ws28_c00327{word-spacing:10.630400pt;}
.wsa_c00327{word-spacing:10.899200pt;}
.ws2a_c00327{word-spacing:11.494400pt;}
.ws29_c00327{word-spacing:11.577600pt;}
.ws1c_c00327{word-spacing:13.376000pt;}
.ws1b_c00327{word-spacing:13.459200pt;}
.ws2b_c00327{word-spacing:16.006400pt;}
.wsc_c00327{word-spacing:25.932800pt;}
.wsd_c00327{word-spacing:26.009600pt;}
._0_c00327{margin-left:-0.908480pt;}
._1_c00327{width:0.960000pt;}
.fs3_c00327{font-size:37.440000pt;}
.fs4_c00327{font-size:42.560000pt;}
.fs2_c00327{font-size:48.000000pt;}
.fs0_c00327{font-size:53.440000pt;}
.fs1_c00327{font-size:64.000000pt;}
.y0_c00327{bottom:0.000000pt;}
.y3_c00327{bottom:51.067067pt;}
.y4_c00327{bottom:54.587067pt;}
.y24_c00327{bottom:101.073307pt;}
.y23_c00327{bottom:117.395067pt;}
.y22_c00327{bottom:129.631067pt;}
.y21_c00327{bottom:141.867067pt;}
.y20_c00327{bottom:155.387200pt;}
.y1f_c00327{bottom:173.787200pt;}
.y1e_c00327{bottom:192.187067pt;}
.y1d_c00327{bottom:239.947067pt;}
.y1c_c00327{bottom:270.587067pt;}
.y1b_c00327{bottom:301.147067pt;}
.y1a_c00327{bottom:331.787067pt;}
.y19_c00327{bottom:362.347067pt;}
.y18_c00327{bottom:400.987067pt;}
.y17_c00327{bottom:431.547067pt;}
.y16_c00327{bottom:462.187067pt;}
.y15_c00327{bottom:500.747067pt;}
.y14_c00327{bottom:531.387067pt;}
.y13_c00327{bottom:561.947067pt;}
.y12_c00327{bottom:592.587067pt;}
.y11_c00327{bottom:623.147067pt;}
.y10_c00327{bottom:661.787067pt;}
.yf_c00327{bottom:692.347067pt;}
.ye_c00327{bottom:722.987067pt;}
.yd_c00327{bottom:753.547067pt;}
.yc_c00327{bottom:784.187067pt;}
.yb_c00327{bottom:814.747067pt;}
.ya_c00327{bottom:853.387067pt;}
.y9_c00327{bottom:883.947067pt;}
.y8_c00327{bottom:914.587067pt;}
.y7_c00327{bottom:945.147067pt;}
.y6_c00327{bottom:983.787067pt;}
.y5_c00327{bottom:1014.347067pt;}
.y2_c00327{bottom:1043.387067pt;}
.y1_c00327{bottom:1063.867067pt;}
.h2_c00327{height:42.656250pt;}
.h7_c00327{height:42.656783pt;}
.h8_c00327{height:44.388750pt;}
.h1_c00327{height:44.724687pt;}
.h3_c00327{height:50.062500pt;}
.h4_c00327{height:53.562500pt;}
.h6_c00327{height:57.894062pt;}
.h5_c00327{height:66.750000pt;}
.h0_c00327{height:1122.666667pt;}
.w1_c00327{width:793.333333pt;}
.w0_c00327{width:793.626667pt;}
.x0_c00327{left:0.000000pt;}
.x2_c00327{left:113.440000pt;}
.x7_c00327{left:137.280000pt;}
.x5_c00327{left:161.040000pt;}
.x6_c00327{left:184.160000pt;}
.x4_c00327{left:386.880000pt;}
.x3_c00327{left:396.880000pt;}
.x1_c00327{left:436.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_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_ae4116b70f97e5469eb5ce62.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.100098;font-style:normal;font-weight:normal;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_756e2389c3e259d993141d62.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;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_c00328;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00328{vertical-align:15.840000px;}
.v2_c00328{vertical-align:29.844720px;}
.lse_c00328{letter-spacing:-0.151200px;}
.ls1a_c00328{letter-spacing:-0.131760px;}
.ls12_c00328{letter-spacing:-0.059292px;}
.ls13_c00328{letter-spacing:-0.046116px;}
.ls1c_c00328{letter-spacing:-0.043200px;}
.ls18_c00328{letter-spacing:-0.039528px;}
.ls16_c00328{letter-spacing:-0.032940px;}
.ls1e_c00328{letter-spacing:-0.028800px;}
.ls19_c00328{letter-spacing:-0.026352px;}
.ls10_c00328{letter-spacing:-0.019764px;}
.ls1d_c00328{letter-spacing:-0.014400px;}
.ls17_c00328{letter-spacing:-0.013176px;}
.lsf_c00328{letter-spacing:-0.007200px;}
.ls14_c00328{letter-spacing:-0.006588px;}
.lsd_c00328{letter-spacing:0.000000px;}
.lsc_c00328{letter-spacing:0.023940px;}
.ls7_c00328{letter-spacing:0.026352px;}
.ls1b_c00328{letter-spacing:0.028800px;}
.ls8_c00328{letter-spacing:0.032940px;}
.lsb_c00328{letter-spacing:0.033516px;}
.ls6_c00328{letter-spacing:0.046116px;}
.ls0_c00328{letter-spacing:0.048096px;}
.ls2_c00328{letter-spacing:0.052704px;}
.ls3_c00328{letter-spacing:0.054756px;}
.ls15_c00328{letter-spacing:0.059292px;}
.ls11_c00328{letter-spacing:0.065880px;}
.ls9_c00328{letter-spacing:0.144000px;}
.lsa_c00328{letter-spacing:85.104000px;}
.ls5_c00328{letter-spacing:511.650000px;}
.ls4_c00328{letter-spacing:609.210000px;}
.ls1_c00328{letter-spacing:1212.120000px;}
.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:-10.584756px;}
.ws1d_c00328{word-spacing:-0.014364px;}
.ws1c_c00328{word-spacing:-0.004788px;}
.ws2_c00328{word-spacing:0.000000px;}
.ws4_c00328{word-spacing:0.007200px;}
.ws1a_c00328{word-spacing:0.021600px;}
.ws8_c00328{word-spacing:0.039528px;}
.ws1_c00328{word-spacing:0.042084px;}
.ws10_c00328{word-spacing:0.046116px;}
.ws12_c00328{word-spacing:0.059292px;}
.ws11_c00328{word-spacing:0.065880px;}
.wsf_c00328{word-spacing:0.092232px;}
.ws9_c00328{word-spacing:0.098820px;}
.wsb_c00328{word-spacing:0.105408px;}
.wsc_c00328{word-spacing:0.111996px;}
.wse_c00328{word-spacing:0.118584px;}
.wsa_c00328{word-spacing:0.125172px;}
.wsd_c00328{word-spacing:0.131760px;}
.ws7_c00328{word-spacing:0.138348px;}
.ws6_c00328{word-spacing:0.151524px;}
.ws5_c00328{word-spacing:0.467748px;}
.ws14_c00328{word-spacing:2.131200px;}
.ws13_c00328{word-spacing:2.275200px;}
.ws1b_c00328{word-spacing:3.945312px;}
.ws3_c00328{word-spacing:4.320000px;}
.ws18_c00328{word-spacing:14.349600px;}
.ws17_c00328{word-spacing:14.407200px;}
.ws16_c00328{word-spacing:16.905600px;}
.ws15_c00328{word-spacing:16.927200px;}
.ws19_c00328{word-spacing:21.290400px;}
._0_c00328{margin-left:-1.322640px;}
._2_c00328{width:1.185840px;}
._3_c00328{width:425.136816px;}
._8_c00328{width:430.611444px;}
._7_c00328{width:458.722440px;}
._e_c00328{width:516.433320px;}
._6_c00328{width:557.443620px;}
._11_c00328{width:559.815300px;}
._5_c00328{width:576.298476px;}
._9_c00328{width:610.127856px;}
._4_c00328{width:622.506708px;}
._a_c00328{width:632.401884px;}
._1_c00328{width:648.790452px;}
._c_c00328{width:666.666072px;}
._b_c00328{width:731.379996px;}
._d_c00328{width:737.263080px;}
._f_c00328{width:1262.379384px;}
._10_c00328{width:1264.355784px;}
._12_c00328{width:1388.289240px;}
.fc0_c00328{color:rgb(0,0,0);}
.fs4_c00328{font-size:42.120000px;}
.fs5_c00328{font-size:47.880000px;}
.fs1_c00328{font-size:54.000000px;}
.fs0_c00328{font-size:60.120000px;}
.fs3_c00328{font-size:65.880000px;}
.fs2_c00328{font-size:72.000000px;}
.y0_c00328{bottom:0.000000px;}
.y3_c00328{bottom:57.450450px;}
.y26_c00328{bottom:113.707470px;}
.y25_c00328{bottom:127.568730px;}
.y24_c00328{bottom:145.834950px;}
.y23_c00328{bottom:159.600450px;}
.y22_c00328{bottom:174.810600px;}
.y21_c00328{bottom:195.510600px;}
.y20_c00328{bottom:216.210600px;}
.y1f_c00328{bottom:251.670600px;}
.y1e_c00328{bottom:286.140600px;}
.y1d_c00328{bottom:320.520600px;}
.y1c_c00328{bottom:354.990600px;}
.y1b_c00328{bottom:398.370600px;}
.y1a_c00328{bottom:432.840600px;}
.y19_c00328{bottom:474.601140px;}
.y18_c00328{bottom:506.190990px;}
.y17_c00328{bottom:537.768120px;}
.y16_c00328{bottom:556.313340px;}
.y15_c00328{bottom:587.820990px;}
.y14_c00328{bottom:619.410990px;}
.y13_c00328{bottom:650.993340px;}
.y12_c00328{bottom:682.500990px;}
.y11_c00328{bottom:714.088650px;}
.y10_c00328{bottom:746.049270px;}
.yf_c00328{bottom:778.890990px;}
.ye_c00328{bottom:810.478800px;}
.yd_c00328{bottom:842.439270px;}
.yc_c00328{bottom:875.273340px;}
.yb_c00328{bottom:906.780990px;}
.ya_c00328{bottom:938.363340px;}
.y9_c00328{bottom:969.870990px;}
.y8_c00328{bottom:1001.460990px;}
.y7_c00328{bottom:1033.043340px;}
.y6_c00328{bottom:1064.550450px;}
.y5_c00328{bottom:1106.760450px;}
.y4_c00328{bottom:1141.140450px;}
.y2_c00328{bottom:1177.860450px;}
.y1_c00328{bottom:1196.850450px;}
.hc_c00328{height:47.988281px;}
.hd_c00328{height:49.937344px;}
.h1_c00328{height:50.315273px;}
.h5_c00328{height:55.135898px;}
.h8_c00328{height:55.142498px;}
.h9_c00328{height:55.143098px;}
.h6_c00328{height:55.164338px;}
.ha_c00328{height:55.185218px;}
.h2_c00328{height:56.320312px;}
.h4_c00328{height:60.257812px;}
.h7_c00328{height:65.095540px;}
.h3_c00328{height:72.160312px;}
.hb_c00328{height:75.093750px;}
.h0_c00328{height:1263.000000px;}
.w1_c00328{width:892.500000px;}
.w0_c00328{width:892.830000px;}
.x0_c00328{left:0.000000px;}
.x1_c00328{left:127.620000px;}
.x5_c00328{left:154.440000px;}
.x2_c00328{left:180.810000px;}
.x4_c00328{left:207.180000px;}
.x3_c00328{left:262.620000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.v1_c00328{vertical-align:14.080000pt;}
.v2_c00328{vertical-align:26.528640pt;}
.lse_c00328{letter-spacing:-0.134400pt;}
.ls1a_c00328{letter-spacing:-0.117120pt;}
.ls12_c00328{letter-spacing:-0.052704pt;}
.ls13_c00328{letter-spacing:-0.040992pt;}
.ls1c_c00328{letter-spacing:-0.038400pt;}
.ls18_c00328{letter-spacing:-0.035136pt;}
.ls16_c00328{letter-spacing:-0.029280pt;}
.ls1e_c00328{letter-spacing:-0.025600pt;}
.ls19_c00328{letter-spacing:-0.023424pt;}
.ls10_c00328{letter-spacing:-0.017568pt;}
.ls1d_c00328{letter-spacing:-0.012800pt;}
.ls17_c00328{letter-spacing:-0.011712pt;}
.lsf_c00328{letter-spacing:-0.006400pt;}
.ls14_c00328{letter-spacing:-0.005856pt;}
.lsd_c00328{letter-spacing:0.000000pt;}
.lsc_c00328{letter-spacing:0.021280pt;}
.ls7_c00328{letter-spacing:0.023424pt;}
.ls1b_c00328{letter-spacing:0.025600pt;}
.ls8_c00328{letter-spacing:0.029280pt;}
.lsb_c00328{letter-spacing:0.029792pt;}
.ls6_c00328{letter-spacing:0.040992pt;}
.ls0_c00328{letter-spacing:0.042752pt;}
.ls2_c00328{letter-spacing:0.046848pt;}
.ls3_c00328{letter-spacing:0.048672pt;}
.ls15_c00328{letter-spacing:0.052704pt;}
.ls11_c00328{letter-spacing:0.058560pt;}
.ls9_c00328{letter-spacing:0.128000pt;}
.lsa_c00328{letter-spacing:75.648000pt;}
.ls5_c00328{letter-spacing:454.800000pt;}
.ls4_c00328{letter-spacing:541.520000pt;}
.ls1_c00328{letter-spacing:1077.440000pt;}
.ws0_c00328{word-spacing:-9.408672pt;}
.ws1d_c00328{word-spacing:-0.012768pt;}
.ws1c_c00328{word-spacing:-0.004256pt;}
.ws2_c00328{word-spacing:0.000000pt;}
.ws4_c00328{word-spacing:0.006400pt;}
.ws1a_c00328{word-spacing:0.019200pt;}
.ws8_c00328{word-spacing:0.035136pt;}
.ws1_c00328{word-spacing:0.037408pt;}
.ws10_c00328{word-spacing:0.040992pt;}
.ws12_c00328{word-spacing:0.052704pt;}
.ws11_c00328{word-spacing:0.058560pt;}
.wsf_c00328{word-spacing:0.081984pt;}
.ws9_c00328{word-spacing:0.087840pt;}
.wsb_c00328{word-spacing:0.093696pt;}
.wsc_c00328{word-spacing:0.099552pt;}
.wse_c00328{word-spacing:0.105408pt;}
.wsa_c00328{word-spacing:0.111264pt;}
.wsd_c00328{word-spacing:0.117120pt;}
.ws7_c00328{word-spacing:0.122976pt;}
.ws6_c00328{word-spacing:0.134688pt;}
.ws5_c00328{word-spacing:0.415776pt;}
.ws14_c00328{word-spacing:1.894400pt;}
.ws13_c00328{word-spacing:2.022400pt;}
.ws1b_c00328{word-spacing:3.506944pt;}
.ws3_c00328{word-spacing:3.840000pt;}
.ws18_c00328{word-spacing:12.755200pt;}
.ws17_c00328{word-spacing:12.806400pt;}
.ws16_c00328{word-spacing:15.027200pt;}
.ws15_c00328{word-spacing:15.046400pt;}
.ws19_c00328{word-spacing:18.924800pt;}
._0_c00328{margin-left:-1.175680pt;}
._2_c00328{width:1.054080pt;}
._3_c00328{width:377.899392pt;}
._8_c00328{width:382.765728pt;}
._7_c00328{width:407.753280pt;}
._e_c00328{width:459.051840pt;}
._6_c00328{width:495.505440pt;}
._11_c00328{width:497.613600pt;}
._5_c00328{width:512.265312pt;}
._9_c00328{width:542.335872pt;}
._4_c00328{width:553.339296pt;}
._a_c00328{width:562.135008pt;}
._1_c00328{width:576.702624pt;}
._c_c00328{width:592.592064pt;}
._b_c00328{width:650.115552pt;}
._d_c00328{width:655.344960pt;}
._f_c00328{width:1122.115008pt;}
._10_c00328{width:1123.871808pt;}
._12_c00328{width:1234.034880pt;}
.fs4_c00328{font-size:37.440000pt;}
.fs5_c00328{font-size:42.560000pt;}
.fs1_c00328{font-size:48.000000pt;}
.fs0_c00328{font-size:53.440000pt;}
.fs3_c00328{font-size:58.560000pt;}
.fs2_c00328{font-size:64.000000pt;}
.y0_c00328{bottom:0.000000pt;}
.y3_c00328{bottom:51.067067pt;}
.y26_c00328{bottom:101.073307pt;}
.y25_c00328{bottom:113.394427pt;}
.y24_c00328{bottom:129.631067pt;}
.y23_c00328{bottom:141.867067pt;}
.y22_c00328{bottom:155.387200pt;}
.y21_c00328{bottom:173.787200pt;}
.y20_c00328{bottom:192.187200pt;}
.y1f_c00328{bottom:223.707200pt;}
.y1e_c00328{bottom:254.347200pt;}
.y1d_c00328{bottom:284.907200pt;}
.y1c_c00328{bottom:315.547200pt;}
.y1b_c00328{bottom:354.107200pt;}
.y1a_c00328{bottom:384.747200pt;}
.y19_c00328{bottom:421.867680pt;}
.y18_c00328{bottom:449.947547pt;}
.y17_c00328{bottom:478.016107pt;}
.y16_c00328{bottom:494.500747pt;}
.y15_c00328{bottom:522.507547pt;}
.y14_c00328{bottom:550.587547pt;}
.y13_c00328{bottom:578.660747pt;}
.y12_c00328{bottom:606.667547pt;}
.y11_c00328{bottom:634.745467pt;}
.y10_c00328{bottom:663.154907pt;}
.yf_c00328{bottom:692.347547pt;}
.ye_c00328{bottom:720.425600pt;}
.yd_c00328{bottom:748.834907pt;}
.yc_c00328{bottom:778.020747pt;}
.yb_c00328{bottom:806.027547pt;}
.ya_c00328{bottom:834.100747pt;}
.y9_c00328{bottom:862.107547pt;}
.y8_c00328{bottom:890.187547pt;}
.y7_c00328{bottom:918.260747pt;}
.y6_c00328{bottom:946.267067pt;}
.y5_c00328{bottom:983.787067pt;}
.y4_c00328{bottom:1014.347067pt;}
.y2_c00328{bottom:1046.987067pt;}
.y1_c00328{bottom:1063.867067pt;}
.hc_c00328{height:42.656250pt;}
.hd_c00328{height:44.388750pt;}
.h1_c00328{height:44.724687pt;}
.h5_c00328{height:49.009687pt;}
.h8_c00328{height:49.015554pt;}
.h9_c00328{height:49.016088pt;}
.h6_c00328{height:49.034968pt;}
.ha_c00328{height:49.053528pt;}
.h2_c00328{height:50.062500pt;}
.h4_c00328{height:53.562500pt;}
.h7_c00328{height:57.862703pt;}
.h3_c00328{height:64.142500pt;}
.hb_c00328{height:66.750000pt;}
.h0_c00328{height:1122.666667pt;}
.w1_c00328{width:793.333333pt;}
.w0_c00328{width:793.626667pt;}
.x0_c00328{left:0.000000pt;}
.x1_c00328{left:113.440000pt;}
.x5_c00328{left:137.280000pt;}
.x2_c00328{left:160.720000pt;}
.x4_c00328{left:184.160000pt;}
.x3_c00328{left:233.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_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_23f5185d749ba6e92dd54e0b.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00329;src:url('chunks/assets/font_7f73af9a4db8d90bdc220722.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;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_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.v1_c00329{vertical-align:29.880000px;}
.ls19_c00329{letter-spacing:-0.266400px;}
.lsf_c00329{letter-spacing:-0.151200px;}
.ls14_c00329{letter-spacing:-0.050400px;}
.ls16_c00329{letter-spacing:-0.043200px;}
.ls18_c00329{letter-spacing:-0.036000px;}
.ls15_c00329{letter-spacing:-0.028800px;}
.ls13_c00329{letter-spacing:-0.021600px;}
.ls10_c00329{letter-spacing:-0.014400px;}
.ls11_c00329{letter-spacing:-0.007200px;}
.lse_c00329{letter-spacing:0.000000px;}
.ls4_c00329{letter-spacing:0.007200px;}
.lsa_c00329{letter-spacing:0.014364px;}
.ls17_c00329{letter-spacing:0.014400px;}
.ls9_c00329{letter-spacing:0.019152px;}
.ls5_c00329{letter-spacing:0.021600px;}
.lsc_c00329{letter-spacing:0.023940px;}
.ls12_c00329{letter-spacing:0.028800px;}
.ls8_c00329{letter-spacing:0.033516px;}
.ls3_c00329{letter-spacing:0.036000px;}
.ls0_c00329{letter-spacing:0.036072px;}
.lsb_c00329{letter-spacing:0.038304px;}
.ls7_c00329{letter-spacing:0.043092px;}
.lsd_c00329{letter-spacing:0.047880px;}
.ls6_c00329{letter-spacing:0.054756px;}
.ls1_c00329{letter-spacing:0.144000px;}
.ls2_c00329{letter-spacing:85.104000px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00329{word-spacing:-17.985600px;}
.ws0_c00329{word-spacing:-10.584756px;}
.ws2_c00329{word-spacing:-0.306612px;}
.ws2e_c00329{word-spacing:-0.023940px;}
.ws30_c00329{word-spacing:-0.014364px;}
.ws2f_c00329{word-spacing:-0.004788px;}
.ws3_c00329{word-spacing:0.000000px;}
.ws7_c00329{word-spacing:0.007200px;}
.wsf_c00329{word-spacing:0.014400px;}
.ws15_c00329{word-spacing:0.028800px;}
.ws23_c00329{word-spacing:0.734400px;}
.ws20_c00329{word-spacing:1.130400px;}
.ws1f_c00329{word-spacing:1.202400px;}
.ws27_c00329{word-spacing:1.422036px;}
.ws26_c00329{word-spacing:1.436400px;}
.ws12_c00329{word-spacing:1.735200px;}
.ws13_c00329{word-spacing:1.792800px;}
.ws16_c00329{word-spacing:1.850400px;}
.ws5_c00329{word-spacing:2.484000px;}
.ws1d_c00329{word-spacing:2.512800px;}
.ws4_c00329{word-spacing:2.592000px;}
.ws1c_c00329{word-spacing:2.606400px;}
.ws14_c00329{word-spacing:2.872800px;}
.ws2d_c00329{word-spacing:3.571848px;}
.ws9_c00329{word-spacing:3.578400px;}
.ws2b_c00329{word-spacing:3.581424px;}
.ws2c_c00329{word-spacing:3.595788px;}
.ws8_c00329{word-spacing:3.693600px;}
.ws19_c00329{word-spacing:5.025600px;}
.ws18_c00329{word-spacing:5.198400px;}
.ws24_c00329{word-spacing:6.095124px;}
.ws25_c00329{word-spacing:6.104700px;}
.ws28_c00329{word-spacing:6.822900px;}
.ws22_c00329{word-spacing:6.876000px;}
.ws21_c00329{word-spacing:6.940800px;}
.ws17_c00329{word-spacing:9.410400px;}
.ws6_c00329{word-spacing:10.087200px;}
.ws29_c00329{word-spacing:12.223764px;}
.ws2a_c00329{word-spacing:12.242916px;}
.wsb_c00329{word-spacing:12.960000px;}
.wsc_c00329{word-spacing:13.046400px;}
.ws11_c00329{word-spacing:13.651200px;}
.ws10_c00329{word-spacing:13.672800px;}
.ws1a_c00329{word-spacing:13.708800px;}
.ws1b_c00329{word-spacing:13.752000px;}
.wsd_c00329{word-spacing:17.272800px;}
.wse_c00329{word-spacing:17.344800px;}
.wsa_c00329{word-spacing:20.887200px;}
.ws1e_c00329{word-spacing:21.960000px;}
._0_c00329{margin-left:-1.022040px;}
._1_c00329{width:1.224000px;}
.fc0_c00329{color:rgb(0,0,0);}
.fs3_c00329{font-size:42.120000px;}
.fs4_c00329{font-size:47.880000px;}
.fs2_c00329{font-size:54.000000px;}
.fs0_c00329{font-size:60.120000px;}
.fs1_c00329{font-size:72.000000px;}
.y0_c00329{bottom:0.000000px;}
.y3_c00329{bottom:57.450450px;}
.y4_c00329{bottom:61.410450px;}
.y26_c00329{bottom:113.713230px;}
.y25_c00329{bottom:132.075210px;}
.y24_c00329{bottom:150.341430px;}
.y23_c00329{bottom:164.106930px;}
.y22_c00329{bottom:177.968190px;}
.y21_c00329{bottom:191.733690px;}
.y20_c00329{bottom:205.499190px;}
.y1f_c00329{bottom:219.360450px;}
.y1e_c00329{bottom:234.570450px;}
.y1d_c00329{bottom:255.270450px;}
.y1c_c00329{bottom:275.970450px;}
.y1b_c00329{bottom:329.790600px;}
.y1a_c00329{bottom:364.260600px;}
.y19_c00329{bottom:398.640600px;}
.y18_c00329{bottom:451.110450px;}
.y17_c00329{bottom:485.490450px;}
.y16_c00329{bottom:519.960450px;}
.y15_c00329{bottom:554.340450px;}
.y14_c00329{bottom:588.810450px;}
.y13_c00329{bottom:632.190450px;}
.y12_c00329{bottom:666.660450px;}
.y11_c00329{bottom:701.040450px;}
.y10_c00329{bottom:744.510450px;}
.yf_c00329{bottom:778.890450px;}
.ye_c00329{bottom:813.360450px;}
.yd_c00329{bottom:847.740450px;}
.yc_c00329{bottom:891.210450px;}
.yb_c00329{bottom:925.590450px;}
.ya_c00329{bottom:960.060450px;}
.y9_c00329{bottom:994.440450px;}
.y8_c00329{bottom:1028.910450px;}
.y7_c00329{bottom:1072.290450px;}
.y6_c00329{bottom:1106.760450px;}
.y5_c00329{bottom:1141.140450px;}
.y2_c00329{bottom:1173.810450px;}
.y1_c00329{bottom:1196.850450px;}
.h2_c00329{height:47.988281px;}
.h8_c00329{height:49.937344px;}
.h1_c00329{height:50.315273px;}
.h3_c00329{height:56.320312px;}
.h5_c00329{height:60.257812px;}
.h7_c00329{height:65.130220px;}
.h6_c00329{height:65.130820px;}
.h4_c00329{height:75.093750px;}
.h0_c00329{height:1263.000000px;}
.w1_c00329{width:892.500000px;}
.w0_c00329{width:892.830000px;}
.x0_c00329{left:0.000000px;}
.x2_c00329{left:127.620000px;}
.x5_c00329{left:154.440000px;}
.x6_c00329{left:181.170000px;}
.x7_c00329{left:207.180000px;}
.x4_c00329{left:435.240000px;}
.x3_c00329{left:446.490000px;}
.x1_c00329{left:490.770000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.v1_c00329{vertical-align:26.560000pt;}
.ls19_c00329{letter-spacing:-0.236800pt;}
.lsf_c00329{letter-spacing:-0.134400pt;}
.ls14_c00329{letter-spacing:-0.044800pt;}
.ls16_c00329{letter-spacing:-0.038400pt;}
.ls18_c00329{letter-spacing:-0.032000pt;}
.ls15_c00329{letter-spacing:-0.025600pt;}
.ls13_c00329{letter-spacing:-0.019200pt;}
.ls10_c00329{letter-spacing:-0.012800pt;}
.ls11_c00329{letter-spacing:-0.006400pt;}
.lse_c00329{letter-spacing:0.000000pt;}
.ls4_c00329{letter-spacing:0.006400pt;}
.lsa_c00329{letter-spacing:0.012768pt;}
.ls17_c00329{letter-spacing:0.012800pt;}
.ls9_c00329{letter-spacing:0.017024pt;}
.ls5_c00329{letter-spacing:0.019200pt;}
.lsc_c00329{letter-spacing:0.021280pt;}
.ls12_c00329{letter-spacing:0.025600pt;}
.ls8_c00329{letter-spacing:0.029792pt;}
.ls3_c00329{letter-spacing:0.032000pt;}
.ls0_c00329{letter-spacing:0.032064pt;}
.lsb_c00329{letter-spacing:0.034048pt;}
.ls7_c00329{letter-spacing:0.038304pt;}
.lsd_c00329{letter-spacing:0.042560pt;}
.ls6_c00329{letter-spacing:0.048672pt;}
.ls1_c00329{letter-spacing:0.128000pt;}
.ls2_c00329{letter-spacing:75.648000pt;}
.ws1_c00329{word-spacing:-15.987200pt;}
.ws0_c00329{word-spacing:-9.408672pt;}
.ws2_c00329{word-spacing:-0.272544pt;}
.ws2e_c00329{word-spacing:-0.021280pt;}
.ws30_c00329{word-spacing:-0.012768pt;}
.ws2f_c00329{word-spacing:-0.004256pt;}
.ws3_c00329{word-spacing:0.000000pt;}
.ws7_c00329{word-spacing:0.006400pt;}
.wsf_c00329{word-spacing:0.012800pt;}
.ws15_c00329{word-spacing:0.025600pt;}
.ws23_c00329{word-spacing:0.652800pt;}
.ws20_c00329{word-spacing:1.004800pt;}
.ws1f_c00329{word-spacing:1.068800pt;}
.ws27_c00329{word-spacing:1.264032pt;}
.ws26_c00329{word-spacing:1.276800pt;}
.ws12_c00329{word-spacing:1.542400pt;}
.ws13_c00329{word-spacing:1.593600pt;}
.ws16_c00329{word-spacing:1.644800pt;}
.ws5_c00329{word-spacing:2.208000pt;}
.ws1d_c00329{word-spacing:2.233600pt;}
.ws4_c00329{word-spacing:2.304000pt;}
.ws1c_c00329{word-spacing:2.316800pt;}
.ws14_c00329{word-spacing:2.553600pt;}
.ws2d_c00329{word-spacing:3.174976pt;}
.ws9_c00329{word-spacing:3.180800pt;}
.ws2b_c00329{word-spacing:3.183488pt;}
.ws2c_c00329{word-spacing:3.196256pt;}
.ws8_c00329{word-spacing:3.283200pt;}
.ws19_c00329{word-spacing:4.467200pt;}
.ws18_c00329{word-spacing:4.620800pt;}
.ws24_c00329{word-spacing:5.417888pt;}
.ws25_c00329{word-spacing:5.426400pt;}
.ws28_c00329{word-spacing:6.064800pt;}
.ws22_c00329{word-spacing:6.112000pt;}
.ws21_c00329{word-spacing:6.169600pt;}
.ws17_c00329{word-spacing:8.364800pt;}
.ws6_c00329{word-spacing:8.966400pt;}
.ws29_c00329{word-spacing:10.865568pt;}
.ws2a_c00329{word-spacing:10.882592pt;}
.wsb_c00329{word-spacing:11.520000pt;}
.wsc_c00329{word-spacing:11.596800pt;}
.ws11_c00329{word-spacing:12.134400pt;}
.ws10_c00329{word-spacing:12.153600pt;}
.ws1a_c00329{word-spacing:12.185600pt;}
.ws1b_c00329{word-spacing:12.224000pt;}
.wsd_c00329{word-spacing:15.353600pt;}
.wse_c00329{word-spacing:15.417600pt;}
.wsa_c00329{word-spacing:18.566400pt;}
.ws1e_c00329{word-spacing:19.520000pt;}
._0_c00329{margin-left:-0.908480pt;}
._1_c00329{width:1.088000pt;}
.fs3_c00329{font-size:37.440000pt;}
.fs4_c00329{font-size:42.560000pt;}
.fs2_c00329{font-size:48.000000pt;}
.fs0_c00329{font-size:53.440000pt;}
.fs1_c00329{font-size:64.000000pt;}
.y0_c00329{bottom:0.000000pt;}
.y3_c00329{bottom:51.067067pt;}
.y4_c00329{bottom:54.587067pt;}
.y26_c00329{bottom:101.078427pt;}
.y25_c00329{bottom:117.400187pt;}
.y24_c00329{bottom:133.636827pt;}
.y23_c00329{bottom:145.872827pt;}
.y22_c00329{bottom:158.193947pt;}
.y21_c00329{bottom:170.429947pt;}
.y20_c00329{bottom:182.665947pt;}
.y1f_c00329{bottom:194.987067pt;}
.y1e_c00329{bottom:208.507067pt;}
.y1d_c00329{bottom:226.907067pt;}
.y1c_c00329{bottom:245.307067pt;}
.y1b_c00329{bottom:293.147200pt;}
.y1a_c00329{bottom:323.787200pt;}
.y19_c00329{bottom:354.347200pt;}
.y18_c00329{bottom:400.987067pt;}
.y17_c00329{bottom:431.547067pt;}
.y16_c00329{bottom:462.187067pt;}
.y15_c00329{bottom:492.747067pt;}
.y14_c00329{bottom:523.387067pt;}
.y13_c00329{bottom:561.947067pt;}
.y12_c00329{bottom:592.587067pt;}
.y11_c00329{bottom:623.147067pt;}
.y10_c00329{bottom:661.787067pt;}
.yf_c00329{bottom:692.347067pt;}
.ye_c00329{bottom:722.987067pt;}
.yd_c00329{bottom:753.547067pt;}
.yc_c00329{bottom:792.187067pt;}
.yb_c00329{bottom:822.747067pt;}
.ya_c00329{bottom:853.387067pt;}
.y9_c00329{bottom:883.947067pt;}
.y8_c00329{bottom:914.587067pt;}
.y7_c00329{bottom:953.147067pt;}
.y6_c00329{bottom:983.787067pt;}
.y5_c00329{bottom:1014.347067pt;}
.y2_c00329{bottom:1043.387067pt;}
.y1_c00329{bottom:1063.867067pt;}
.h2_c00329{height:42.656250pt;}
.h8_c00329{height:44.388750pt;}
.h1_c00329{height:44.724687pt;}
.h3_c00329{height:50.062500pt;}
.h5_c00329{height:53.562500pt;}
.h7_c00329{height:57.893529pt;}
.h6_c00329{height:57.894063pt;}
.h4_c00329{height:66.750000pt;}
.h0_c00329{height:1122.666667pt;}
.w1_c00329{width:793.333333pt;}
.w0_c00329{width:793.626667pt;}
.x0_c00329{left:0.000000pt;}
.x2_c00329{left:113.440000pt;}
.x5_c00329{left:137.280000pt;}
.x6_c00329{left:161.040000pt;}
.x7_c00329{left:184.160000pt;}
.x4_c00329{left:386.880000pt;}
.x3_c00329{left:396.880000pt;}
.x1_c00329{left:436.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_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_504484c70852e1260b17724c.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.100098;font-style:normal;font-weight:normal;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_355cdbbed3e71b4dd02cf479.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;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_c00330;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00330;src:url('chunks/assets/font_330d77c6b678269d5958073c.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00330;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00330{font-family:ff5_c00330;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_c00330;src:url('chunks/assets/font_70a93908cb1127ef59d5bec6.woff2')format("woff");}.ff6_c00330{font-family:ff6_c00330;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_c00330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.v1_c00330{vertical-align:15.840000px;}
.v2_c00330{vertical-align:29.879400px;}
.ls10_c00330{letter-spacing:-0.151200px;}
.ls12_c00330{letter-spacing:-0.046872px;}
.ls17_c00330{letter-spacing:-0.043200px;}
.ls19_c00330{letter-spacing:-0.039060px;}
.ls14_c00330{letter-spacing:-0.036000px;}
.ls15_c00330{letter-spacing:-0.028800px;}
.ls16_c00330{letter-spacing:-0.021600px;}
.ls1c_c00330{letter-spacing:-0.019440px;}
.ls13_c00330{letter-spacing:-0.014400px;}
.ls1b_c00330{letter-spacing:-0.011664px;}
.ls11_c00330{letter-spacing:-0.007200px;}
.lsf_c00330{letter-spacing:0.000000px;}
.lsa_c00330{letter-spacing:0.007200px;}
.ls1d_c00330{letter-spacing:0.009576px;}
.lsc_c00330{letter-spacing:0.014364px;}
.ls2_c00330{letter-spacing:0.014400px;}
.lsb_c00330{letter-spacing:0.023940px;}
.ls5_c00330{letter-spacing:0.031248px;}
.lse_c00330{letter-spacing:0.038304px;}
.ls1a_c00330{letter-spacing:0.043200px;}
.ls0_c00330{letter-spacing:0.048096px;}
.ls7_c00330{letter-spacing:0.054756px;}
.ls18_c00330{letter-spacing:0.093600px;}
.lsd_c00330{letter-spacing:0.104040px;}
.ls4_c00330{letter-spacing:0.136080px;}
.ls8_c00330{letter-spacing:0.144000px;}
.ls6_c00330{letter-spacing:26.560800px;}
.ls3_c00330{letter-spacing:34.450920px;}
.ls9_c00330{letter-spacing:65.304000px;}
.ls1_c00330{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00330{word-spacing:-19.561248px;}
.ws0_c00330{word-spacing:-19.530000px;}
.ws4_c00330{word-spacing:-10.789200px;}
.ws3_c00330{word-spacing:-10.584756px;}
.ws1_c00330{word-spacing:-9.856080px;}
.ws1d_c00330{word-spacing:-0.085932px;}
.wsa_c00330{word-spacing:-0.046872px;}
.ws2d_c00330{word-spacing:-0.019152px;}
.ws17_c00330{word-spacing:-0.007200px;}
.ws2a_c00330{word-spacing:-0.004788px;}
.ws6_c00330{word-spacing:0.000000px;}
.ws2b_c00330{word-spacing:0.004788px;}
.ws9_c00330{word-spacing:0.007200px;}
.ws2c_c00330{word-spacing:0.009576px;}
.ws5_c00330{word-spacing:0.042084px;}
.ws1c_c00330{word-spacing:0.064800px;}
.ws23_c00330{word-spacing:0.108000px;}
.ws7_c00330{word-spacing:0.705600px;}
.ws8_c00330{word-spacing:0.727200px;}
.ws20_c00330{word-spacing:0.734400px;}
.ws15_c00330{word-spacing:1.468800px;}
.ws13_c00330{word-spacing:4.348800px;}
.ws12_c00330{word-spacing:4.377600px;}
.ws21_c00330{word-spacing:4.680000px;}
.ws22_c00330{word-spacing:4.701600px;}
.ws24_c00330{word-spacing:4.960800px;}
.wsf_c00330{word-spacing:5.263200px;}
.ws25_c00330{word-spacing:5.349600px;}
.ws26_c00330{word-spacing:5.392800px;}
.wse_c00330{word-spacing:5.436000px;}
.ws1f_c00330{word-spacing:5.716800px;}
.ws1e_c00330{word-spacing:5.760000px;}
.ws14_c00330{word-spacing:6.832800px;}
.ws11_c00330{word-spacing:7.948800px;}
.ws10_c00330{word-spacing:7.984800px;}
.ws16_c00330{word-spacing:8.661600px;}
.ws28_c00330{word-spacing:11.152800px;}
.ws29_c00330{word-spacing:11.174400px;}
.ws19_c00330{word-spacing:15.422400px;}
.ws18_c00330{word-spacing:15.501600px;}
.ws27_c00330{word-spacing:15.508800px;}
.ws1a_c00330{word-spacing:18.309600px;}
.ws1b_c00330{word-spacing:18.403200px;}
.wsb_c00330{word-spacing:26.668800px;}
.wsc_c00330{word-spacing:38.952000px;}
.wsd_c00330{word-spacing:38.966400px;}
._0_c00330{margin-left:-1.322640px;}
._1_c00330{width:1.267200px;}
.fc0_c00330{color:rgb(0,0,0);}
.fs4_c00330{font-size:38.880000px;}
.fs5_c00330{font-size:42.120000px;}
.fs6_c00330{font-size:47.880000px;}
.fs1_c00330{font-size:54.000000px;}
.fs0_c00330{font-size:60.120000px;}
.fs2_c00330{font-size:72.000000px;}
.fs3_c00330{font-size:78.120000px;}
.y0_c00330{bottom:0.000000px;}
.y3_c00330{bottom:57.450450px;}
.y22_c00330{bottom:113.698470px;}
.y21_c00330{bottom:132.060450px;}
.y20_c00330{bottom:147.270450px;}
.y1f_c00330{bottom:167.970450px;}
.y1e_c00330{bottom:188.670450px;}
.y1d_c00330{bottom:229.800450px;}
.y1c_c00330{bottom:264.270450px;}
.y1b_c00330{bottom:298.650450px;}
.y1a_c00330{bottom:333.120450px;}
.y19_c00330{bottom:367.500450px;}
.y18_c00330{bottom:401.970450px;}
.y17_c00330{bottom:436.350600px;}
.y16_c00330{bottom:470.820600px;}
.y15_c00330{bottom:505.200600px;}
.y14_c00330{bottom:550.200450px;}
.y13_c00330{bottom:603.930450px;}
.y12_c00330{bottom:638.310450px;}
.y11_c00330{bottom:672.780450px;}
.y10_c00330{bottom:707.160450px;}
.yf_c00330{bottom:741.630450px;}
.ye_c00330{bottom:776.010450px;}
.yd_c00330{bottom:810.480450px;}
.yc_c00330{bottom:844.860450px;}
.yb_c00330{bottom:879.330450px;}
.ya_c00330{bottom:913.710450px;}
.y9_c00330{bottom:948.180450px;}
.y8_c00330{bottom:982.560450px;}
.y7_c00330{bottom:1017.030450px;}
.y6_c00330{bottom:1053.030450px;}
.y5_c00330{bottom:1106.760450px;}
.y4_c00330{bottom:1141.140450px;}
.y2_c00330{bottom:1177.860450px;}
.y1_c00330{bottom:1196.850450px;}
.h8_c00330{height:47.988281px;}
.h9_c00330{height:49.937344px;}
.ha_c00330{height:49.945264px;}
.h1_c00330{height:50.315273px;}
.h2_c00330{height:56.320312px;}
.h4_c00330{height:60.257812px;}
.h6_c00330{height:65.130220px;}
.h3_c00330{height:72.160312px;}
.h7_c00330{height:75.093750px;}
.h5_c00330{height:81.476719px;}
.h0_c00330{height:1263.000000px;}
.w1_c00330{width:892.500000px;}
.w0_c00330{width:892.830000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:127.620000px;}
.x3_c00330{left:159.390000px;}
.x2_c00330{left:180.720000px;}
.x4_c00330{left:186.390000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.v1_c00330{vertical-align:14.080000pt;}
.v2_c00330{vertical-align:26.559467pt;}
.ls10_c00330{letter-spacing:-0.134400pt;}
.ls12_c00330{letter-spacing:-0.041664pt;}
.ls17_c00330{letter-spacing:-0.038400pt;}
.ls19_c00330{letter-spacing:-0.034720pt;}
.ls14_c00330{letter-spacing:-0.032000pt;}
.ls15_c00330{letter-spacing:-0.025600pt;}
.ls16_c00330{letter-spacing:-0.019200pt;}
.ls1c_c00330{letter-spacing:-0.017280pt;}
.ls13_c00330{letter-spacing:-0.012800pt;}
.ls1b_c00330{letter-spacing:-0.010368pt;}
.ls11_c00330{letter-spacing:-0.006400pt;}
.lsf_c00330{letter-spacing:0.000000pt;}
.lsa_c00330{letter-spacing:0.006400pt;}
.ls1d_c00330{letter-spacing:0.008512pt;}
.lsc_c00330{letter-spacing:0.012768pt;}
.ls2_c00330{letter-spacing:0.012800pt;}
.lsb_c00330{letter-spacing:0.021280pt;}
.ls5_c00330{letter-spacing:0.027776pt;}
.lse_c00330{letter-spacing:0.034048pt;}
.ls1a_c00330{letter-spacing:0.038400pt;}
.ls0_c00330{letter-spacing:0.042752pt;}
.ls7_c00330{letter-spacing:0.048672pt;}
.ls18_c00330{letter-spacing:0.083200pt;}
.lsd_c00330{letter-spacing:0.092480pt;}
.ls4_c00330{letter-spacing:0.120960pt;}
.ls8_c00330{letter-spacing:0.128000pt;}
.ls6_c00330{letter-spacing:23.609600pt;}
.ls3_c00330{letter-spacing:30.623040pt;}
.ls9_c00330{letter-spacing:58.048000pt;}
.ls1_c00330{letter-spacing:1077.440000pt;}
.ws2_c00330{word-spacing:-17.387776pt;}
.ws0_c00330{word-spacing:-17.360000pt;}
.ws4_c00330{word-spacing:-9.590400pt;}
.ws3_c00330{word-spacing:-9.408672pt;}
.ws1_c00330{word-spacing:-8.760960pt;}
.ws1d_c00330{word-spacing:-0.076384pt;}
.wsa_c00330{word-spacing:-0.041664pt;}
.ws2d_c00330{word-spacing:-0.017024pt;}
.ws17_c00330{word-spacing:-0.006400pt;}
.ws2a_c00330{word-spacing:-0.004256pt;}
.ws6_c00330{word-spacing:0.000000pt;}
.ws2b_c00330{word-spacing:0.004256pt;}
.ws9_c00330{word-spacing:0.006400pt;}
.ws2c_c00330{word-spacing:0.008512pt;}
.ws5_c00330{word-spacing:0.037408pt;}
.ws1c_c00330{word-spacing:0.057600pt;}
.ws23_c00330{word-spacing:0.096000pt;}
.ws7_c00330{word-spacing:0.627200pt;}
.ws8_c00330{word-spacing:0.646400pt;}
.ws20_c00330{word-spacing:0.652800pt;}
.ws15_c00330{word-spacing:1.305600pt;}
.ws13_c00330{word-spacing:3.865600pt;}
.ws12_c00330{word-spacing:3.891200pt;}
.ws21_c00330{word-spacing:4.160000pt;}
.ws22_c00330{word-spacing:4.179200pt;}
.ws24_c00330{word-spacing:4.409600pt;}
.wsf_c00330{word-spacing:4.678400pt;}
.ws25_c00330{word-spacing:4.755200pt;}
.ws26_c00330{word-spacing:4.793600pt;}
.wse_c00330{word-spacing:4.832000pt;}
.ws1f_c00330{word-spacing:5.081600pt;}
.ws1e_c00330{word-spacing:5.120000pt;}
.ws14_c00330{word-spacing:6.073600pt;}
.ws11_c00330{word-spacing:7.065600pt;}
.ws10_c00330{word-spacing:7.097600pt;}
.ws16_c00330{word-spacing:7.699200pt;}
.ws28_c00330{word-spacing:9.913600pt;}
.ws29_c00330{word-spacing:9.932800pt;}
.ws19_c00330{word-spacing:13.708800pt;}
.ws18_c00330{word-spacing:13.779200pt;}
.ws27_c00330{word-spacing:13.785600pt;}
.ws1a_c00330{word-spacing:16.275200pt;}
.ws1b_c00330{word-spacing:16.358400pt;}
.wsb_c00330{word-spacing:23.705600pt;}
.wsc_c00330{word-spacing:34.624000pt;}
.wsd_c00330{word-spacing:34.636800pt;}
._0_c00330{margin-left:-1.175680pt;}
._1_c00330{width:1.126400pt;}
.fs4_c00330{font-size:34.560000pt;}
.fs5_c00330{font-size:37.440000pt;}
.fs6_c00330{font-size:42.560000pt;}
.fs1_c00330{font-size:48.000000pt;}
.fs0_c00330{font-size:53.440000pt;}
.fs2_c00330{font-size:64.000000pt;}
.fs3_c00330{font-size:69.440000pt;}
.y0_c00330{bottom:0.000000pt;}
.y3_c00330{bottom:51.067067pt;}
.y22_c00330{bottom:101.065307pt;}
.y21_c00330{bottom:117.387067pt;}
.y20_c00330{bottom:130.907067pt;}
.y1f_c00330{bottom:149.307067pt;}
.y1e_c00330{bottom:167.707067pt;}
.y1d_c00330{bottom:204.267067pt;}
.y1c_c00330{bottom:234.907067pt;}
.y1b_c00330{bottom:265.467067pt;}
.y1a_c00330{bottom:296.107067pt;}
.y19_c00330{bottom:326.667067pt;}
.y18_c00330{bottom:357.307067pt;}
.y17_c00330{bottom:387.867200pt;}
.y16_c00330{bottom:418.507200pt;}
.y15_c00330{bottom:449.067200pt;}
.y14_c00330{bottom:489.067067pt;}
.y13_c00330{bottom:536.827067pt;}
.y12_c00330{bottom:567.387067pt;}
.y11_c00330{bottom:598.027067pt;}
.y10_c00330{bottom:628.587067pt;}
.yf_c00330{bottom:659.227067pt;}
.ye_c00330{bottom:689.787067pt;}
.yd_c00330{bottom:720.427067pt;}
.yc_c00330{bottom:750.987067pt;}
.yb_c00330{bottom:781.627067pt;}
.ya_c00330{bottom:812.187067pt;}
.y9_c00330{bottom:842.827067pt;}
.y8_c00330{bottom:873.387067pt;}
.y7_c00330{bottom:904.027067pt;}
.y6_c00330{bottom:936.027067pt;}
.y5_c00330{bottom:983.787067pt;}
.y4_c00330{bottom:1014.347067pt;}
.y2_c00330{bottom:1046.987067pt;}
.y1_c00330{bottom:1063.867067pt;}
.h8_c00330{height:42.656250pt;}
.h9_c00330{height:44.388750pt;}
.ha_c00330{height:44.395790pt;}
.h1_c00330{height:44.724687pt;}
.h2_c00330{height:50.062500pt;}
.h4_c00330{height:53.562500pt;}
.h6_c00330{height:57.893529pt;}
.h3_c00330{height:64.142500pt;}
.h7_c00330{height:66.750000pt;}
.h5_c00330{height:72.423750pt;}
.h0_c00330{height:1122.666667pt;}
.w1_c00330{width:793.333333pt;}
.w0_c00330{width:793.626667pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:113.440000pt;}
.x3_c00330{left:141.680000pt;}
.x2_c00330{left:160.640000pt;}
.x4_c00330{left:165.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_879842379974a7ba6827f598.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00331;src:url('chunks/assets/font_463697752665291fd2360a2c.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00331;src:url('chunks/assets/font_30591ea42d23da6f131e0764.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00331;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00331{font-family:ff5_c00331;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_c00331;src:url('chunks/assets/font_70a93908cb1127ef59d5bec6.woff2')format("woff");}.ff6_c00331{font-family:ff6_c00331;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_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;}
.v1_c00331{vertical-align:29.880000px;}
.ls10_c00331{letter-spacing:-0.151200px;}
.ls12_c00331{letter-spacing:-0.036000px;}
.ls14_c00331{letter-spacing:-0.021600px;}
.ls18_c00331{letter-spacing:-0.019440px;}
.ls16_c00331{letter-spacing:-0.015624px;}
.ls11_c00331{letter-spacing:-0.014400px;}
.ls17_c00331{letter-spacing:-0.011664px;}
.ls15_c00331{letter-spacing:-0.007200px;}
.lsf_c00331{letter-spacing:0.000000px;}
.ls6_c00331{letter-spacing:0.007200px;}
.ls19_c00331{letter-spacing:0.009576px;}
.lsb_c00331{letter-spacing:0.014364px;}
.ls3_c00331{letter-spacing:0.014400px;}
.ls9_c00331{letter-spacing:0.021600px;}
.lse_c00331{letter-spacing:0.028728px;}
.ls0_c00331{letter-spacing:0.036072px;}
.lsd_c00331{letter-spacing:0.038304px;}
.ls4_c00331{letter-spacing:0.050400px;}
.ls5_c00331{letter-spacing:0.054756px;}
.lsa_c00331{letter-spacing:0.079200px;}
.ls13_c00331{letter-spacing:0.093600px;}
.lsc_c00331{letter-spacing:0.104040px;}
.ls1_c00331{letter-spacing:0.144000px;}
.ls7_c00331{letter-spacing:34.450920px;}
.ls2_c00331{letter-spacing:65.304000px;}
.ls8_c00331{letter-spacing:66.024000px;}
.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;}
}
.ws1_c00331{word-spacing:-19.514376px;}
.ws2_c00331{word-spacing:-10.789200px;}
.ws0_c00331{word-spacing:-10.584756px;}
.ws3_c00331{word-spacing:-0.306612px;}
.ws20_c00331{word-spacing:-0.164052px;}
.ws2b_c00331{word-spacing:-0.019152px;}
.ws2c_c00331{word-spacing:-0.009576px;}
.ws1f_c00331{word-spacing:-0.007200px;}
.ws4_c00331{word-spacing:0.000000px;}
.ws29_c00331{word-spacing:0.004788px;}
.ws13_c00331{word-spacing:0.007200px;}
.ws2a_c00331{word-spacing:0.009576px;}
.ws25_c00331{word-spacing:0.021600px;}
.wsb_c00331{word-spacing:0.072000px;}
.ws27_c00331{word-spacing:0.280800px;}
.ws26_c00331{word-spacing:0.338400px;}
.ws11_c00331{word-spacing:0.374400px;}
.wsa_c00331{word-spacing:1.000800px;}
.ws9_c00331{word-spacing:1.029600px;}
.ws5_c00331{word-spacing:1.080000px;}
.ws8_c00331{word-spacing:1.159200px;}
.wsf_c00331{word-spacing:1.857600px;}
.ws10_c00331{word-spacing:1.936800px;}
.wsc_c00331{word-spacing:2.181600px;}
.ws1e_c00331{word-spacing:2.887200px;}
.ws1d_c00331{word-spacing:2.937600px;}
.ws17_c00331{word-spacing:3.247200px;}
.ws18_c00331{word-spacing:3.290400px;}
.wsd_c00331{word-spacing:4.312800px;}
.wse_c00331{word-spacing:4.334400px;}
.ws28_c00331{word-spacing:5.414400px;}
.ws19_c00331{word-spacing:7.185600px;}
.ws1a_c00331{word-spacing:7.272000px;}
.ws21_c00331{word-spacing:10.843200px;}
.ws16_c00331{word-spacing:12.189600px;}
.ws15_c00331{word-spacing:12.312000px;}
.ws12_c00331{word-spacing:14.054400px;}
.ws14_c00331{word-spacing:14.803200px;}
.ws23_c00331{word-spacing:14.810400px;}
.ws22_c00331{word-spacing:14.947200px;}
.ws1c_c00331{word-spacing:15.825600px;}
.ws1b_c00331{word-spacing:15.912000px;}
.ws7_c00331{word-spacing:16.905600px;}
.ws6_c00331{word-spacing:17.114400px;}
.ws24_c00331{word-spacing:30.607200px;}
._2_c00331{margin-left:-2.109960px;}
._0_c00331{margin-left:-1.022040px;}
._1_c00331{width:1.224000px;}
.fc0_c00331{color:rgb(0,0,0);}
.fs6_c00331{font-size:38.880000px;}
.fs3_c00331{font-size:42.120000px;}
.fs5_c00331{font-size:47.880000px;}
.fs2_c00331{font-size:54.000000px;}
.fs0_c00331{font-size:60.120000px;}
.fs1_c00331{font-size:72.000000px;}
.fs4_c00331{font-size:78.120000px;}
.y0_c00331{bottom:0.000000px;}
.y3_c00331{bottom:57.450450px;}
.y4_c00331{bottom:61.410450px;}
.y24_c00331{bottom:113.698470px;}
.y23_c00331{bottom:132.064230px;}
.y22_c00331{bottom:150.330450px;}
.y21_c00331{bottom:165.540450px;}
.y20_c00331{bottom:186.240450px;}
.y1f_c00331{bottom:206.940450px;}
.y1e_c00331{bottom:232.680450px;}
.y1d_c00331{bottom:267.060450px;}
.y1c_c00331{bottom:301.530450px;}
.y1b_c00331{bottom:344.910450px;}
.y1a_c00331{bottom:379.380450px;}
.y19_c00331{bottom:413.760450px;}
.y18_c00331{bottom:448.230450px;}
.y17_c00331{bottom:484.230450px;}
.y16_c00331{bottom:537.960450px;}
.y15_c00331{bottom:572.340450px;}
.y14_c00331{bottom:606.810450px;}
.y13_c00331{bottom:641.190450px;}
.y12_c00331{bottom:675.660450px;}
.y11_c00331{bottom:710.040450px;}
.y10_c00331{bottom:744.510450px;}
.yf_c00331{bottom:778.890450px;}
.ye_c00331{bottom:813.360450px;}
.yd_c00331{bottom:847.740450px;}
.yc_c00331{bottom:882.210450px;}
.yb_c00331{bottom:916.590450px;}
.ya_c00331{bottom:951.060450px;}
.y9_c00331{bottom:1003.440450px;}
.y8_c00331{bottom:1037.910450px;}
.y7_c00331{bottom:1072.290450px;}
.y6_c00331{bottom:1106.760450px;}
.y5_c00331{bottom:1141.140450px;}
.y2_c00331{bottom:1173.810450px;}
.y1_c00331{bottom:1196.850450px;}
.h2_c00331{height:47.988281px;}
.h9_c00331{height:49.937344px;}
.h1_c00331{height:50.315273px;}
.h3_c00331{height:56.320312px;}
.h5_c00331{height:60.257812px;}
.h6_c00331{height:65.130820px;}
.h7_c00331{height:65.131420px;}
.h4_c00331{height:75.093750px;}
.h8_c00331{height:81.476719px;}
.h0_c00331{height:1263.000000px;}
.w1_c00331{width:892.500000px;}
.w0_c00331{width:892.830000px;}
.x0_c00331{left:0.000000px;}
.x2_c00331{left:127.620000px;}
.x9_c00331{left:154.440000px;}
.x5_c00331{left:159.390000px;}
.x8_c00331{left:180.810000px;}
.x6_c00331{left:186.390000px;}
.x7_c00331{left:207.180000px;}
.x4_c00331{left:435.240000px;}
.x3_c00331{left:446.490000px;}
.x1_c00331{left:490.770000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.v1_c00331{vertical-align:26.560000pt;}
.ls10_c00331{letter-spacing:-0.134400pt;}
.ls12_c00331{letter-spacing:-0.032000pt;}
.ls14_c00331{letter-spacing:-0.019200pt;}
.ls18_c00331{letter-spacing:-0.017280pt;}
.ls16_c00331{letter-spacing:-0.013888pt;}
.ls11_c00331{letter-spacing:-0.012800pt;}
.ls17_c00331{letter-spacing:-0.010368pt;}
.ls15_c00331{letter-spacing:-0.006400pt;}
.lsf_c00331{letter-spacing:0.000000pt;}
.ls6_c00331{letter-spacing:0.006400pt;}
.ls19_c00331{letter-spacing:0.008512pt;}
.lsb_c00331{letter-spacing:0.012768pt;}
.ls3_c00331{letter-spacing:0.012800pt;}
.ls9_c00331{letter-spacing:0.019200pt;}
.lse_c00331{letter-spacing:0.025536pt;}
.ls0_c00331{letter-spacing:0.032064pt;}
.lsd_c00331{letter-spacing:0.034048pt;}
.ls4_c00331{letter-spacing:0.044800pt;}
.ls5_c00331{letter-spacing:0.048672pt;}
.lsa_c00331{letter-spacing:0.070400pt;}
.ls13_c00331{letter-spacing:0.083200pt;}
.lsc_c00331{letter-spacing:0.092480pt;}
.ls1_c00331{letter-spacing:0.128000pt;}
.ls7_c00331{letter-spacing:30.623040pt;}
.ls2_c00331{letter-spacing:58.048000pt;}
.ls8_c00331{letter-spacing:58.688000pt;}
.ws1_c00331{word-spacing:-17.346112pt;}
.ws2_c00331{word-spacing:-9.590400pt;}
.ws0_c00331{word-spacing:-9.408672pt;}
.ws3_c00331{word-spacing:-0.272544pt;}
.ws20_c00331{word-spacing:-0.145824pt;}
.ws2b_c00331{word-spacing:-0.017024pt;}
.ws2c_c00331{word-spacing:-0.008512pt;}
.ws1f_c00331{word-spacing:-0.006400pt;}
.ws4_c00331{word-spacing:0.000000pt;}
.ws29_c00331{word-spacing:0.004256pt;}
.ws13_c00331{word-spacing:0.006400pt;}
.ws2a_c00331{word-spacing:0.008512pt;}
.ws25_c00331{word-spacing:0.019200pt;}
.wsb_c00331{word-spacing:0.064000pt;}
.ws27_c00331{word-spacing:0.249600pt;}
.ws26_c00331{word-spacing:0.300800pt;}
.ws11_c00331{word-spacing:0.332800pt;}
.wsa_c00331{word-spacing:0.889600pt;}
.ws9_c00331{word-spacing:0.915200pt;}
.ws5_c00331{word-spacing:0.960000pt;}
.ws8_c00331{word-spacing:1.030400pt;}
.wsf_c00331{word-spacing:1.651200pt;}
.ws10_c00331{word-spacing:1.721600pt;}
.wsc_c00331{word-spacing:1.939200pt;}
.ws1e_c00331{word-spacing:2.566400pt;}
.ws1d_c00331{word-spacing:2.611200pt;}
.ws17_c00331{word-spacing:2.886400pt;}
.ws18_c00331{word-spacing:2.924800pt;}
.wsd_c00331{word-spacing:3.833600pt;}
.wse_c00331{word-spacing:3.852800pt;}
.ws28_c00331{word-spacing:4.812800pt;}
.ws19_c00331{word-spacing:6.387200pt;}
.ws1a_c00331{word-spacing:6.464000pt;}
.ws21_c00331{word-spacing:9.638400pt;}
.ws16_c00331{word-spacing:10.835200pt;}
.ws15_c00331{word-spacing:10.944000pt;}
.ws12_c00331{word-spacing:12.492800pt;}
.ws14_c00331{word-spacing:13.158400pt;}
.ws23_c00331{word-spacing:13.164800pt;}
.ws22_c00331{word-spacing:13.286400pt;}
.ws1c_c00331{word-spacing:14.067200pt;}
.ws1b_c00331{word-spacing:14.144000pt;}
.ws7_c00331{word-spacing:15.027200pt;}
.ws6_c00331{word-spacing:15.212800pt;}
.ws24_c00331{word-spacing:27.206400pt;}
._2_c00331{margin-left:-1.875520pt;}
._0_c00331{margin-left:-0.908480pt;}
._1_c00331{width:1.088000pt;}
.fs6_c00331{font-size:34.560000pt;}
.fs3_c00331{font-size:37.440000pt;}
.fs5_c00331{font-size:42.560000pt;}
.fs2_c00331{font-size:48.000000pt;}
.fs0_c00331{font-size:53.440000pt;}
.fs1_c00331{font-size:64.000000pt;}
.fs4_c00331{font-size:69.440000pt;}
.y0_c00331{bottom:0.000000pt;}
.y3_c00331{bottom:51.067067pt;}
.y4_c00331{bottom:54.587067pt;}
.y24_c00331{bottom:101.065307pt;}
.y23_c00331{bottom:117.390427pt;}
.y22_c00331{bottom:133.627067pt;}
.y21_c00331{bottom:147.147067pt;}
.y20_c00331{bottom:165.547067pt;}
.y1f_c00331{bottom:183.947067pt;}
.y1e_c00331{bottom:206.827067pt;}
.y1d_c00331{bottom:237.387067pt;}
.y1c_c00331{bottom:268.027067pt;}
.y1b_c00331{bottom:306.587067pt;}
.y1a_c00331{bottom:337.227067pt;}
.y19_c00331{bottom:367.787067pt;}
.y18_c00331{bottom:398.427067pt;}
.y17_c00331{bottom:430.427067pt;}
.y16_c00331{bottom:478.187067pt;}
.y15_c00331{bottom:508.747067pt;}
.y14_c00331{bottom:539.387067pt;}
.y13_c00331{bottom:569.947067pt;}
.y12_c00331{bottom:600.587067pt;}
.y11_c00331{bottom:631.147067pt;}
.y10_c00331{bottom:661.787067pt;}
.yf_c00331{bottom:692.347067pt;}
.ye_c00331{bottom:722.987067pt;}
.yd_c00331{bottom:753.547067pt;}
.yc_c00331{bottom:784.187067pt;}
.yb_c00331{bottom:814.747067pt;}
.ya_c00331{bottom:845.387067pt;}
.y9_c00331{bottom:891.947067pt;}
.y8_c00331{bottom:922.587067pt;}
.y7_c00331{bottom:953.147067pt;}
.y6_c00331{bottom:983.787067pt;}
.y5_c00331{bottom:1014.347067pt;}
.y2_c00331{bottom:1043.387067pt;}
.y1_c00331{bottom:1063.867067pt;}
.h2_c00331{height:42.656250pt;}
.h9_c00331{height:44.388750pt;}
.h1_c00331{height:44.724687pt;}
.h3_c00331{height:50.062500pt;}
.h5_c00331{height:53.562500pt;}
.h6_c00331{height:57.894062pt;}
.h7_c00331{height:57.894596pt;}
.h4_c00331{height:66.750000pt;}
.h8_c00331{height:72.423750pt;}
.h0_c00331{height:1122.666667pt;}
.w1_c00331{width:793.333333pt;}
.w0_c00331{width:793.626667pt;}
.x0_c00331{left:0.000000pt;}
.x2_c00331{left:113.440000pt;}
.x9_c00331{left:137.280000pt;}
.x5_c00331{left:141.680000pt;}
.x8_c00331{left:160.720000pt;}
.x6_c00331{left:165.680000pt;}
.x7_c00331{left:184.160000pt;}
.x4_c00331{left:386.880000pt;}
.x3_c00331{left:396.880000pt;}
.x1_c00331{left:436.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_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_bad69eaba3dd3a3e848c4041.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.100098;font-style:normal;font-weight:normal;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_d2e43fc65695051afb395cad.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;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_c00332;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00332;src:url('chunks/assets/font_7c58efc3bc5e0aa4ef958dec.woff2')format("woff");}.ff4_c00332{font-family:ff4_c00332;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00332;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00332{font-family:ff5_c00332;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_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;}
.v1_c00332{vertical-align:15.840000px;}
.v2_c00332{vertical-align:29.880000px;}
.lsf_c00332{letter-spacing:-0.151200px;}
.ls14_c00332{letter-spacing:-0.028800px;}
.ls13_c00332{letter-spacing:-0.021600px;}
.ls11_c00332{letter-spacing:-0.014400px;}
.ls15_c00332{letter-spacing:-0.007812px;}
.ls10_c00332{letter-spacing:-0.007200px;}
.lse_c00332{letter-spacing:0.000000px;}
.ls4_c00332{letter-spacing:0.007200px;}
.ls8_c00332{letter-spacing:0.007812px;}
.ls6_c00332{letter-spacing:0.014400px;}
.lsb_c00332{letter-spacing:0.019152px;}
.ls7_c00332{letter-spacing:0.021600px;}
.lsd_c00332{letter-spacing:0.023940px;}
.lsa_c00332{letter-spacing:0.028728px;}
.ls16_c00332{letter-spacing:0.028800px;}
.lsc_c00332{letter-spacing:0.038304px;}
.ls0_c00332{letter-spacing:0.048096px;}
.ls5_c00332{letter-spacing:0.054756px;}
.ls12_c00332{letter-spacing:0.093600px;}
.ls2_c00332{letter-spacing:0.144000px;}
.ls9_c00332{letter-spacing:28.670040px;}
.ls3_c00332{letter-spacing:66.024000px;}
.ls1_c00332{letter-spacing:1212.120000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00332{word-spacing:-19.537812px;}
.ws0_c00332{word-spacing:-10.584756px;}
.wsa_c00332{word-spacing:-0.093600px;}
.ws1c_c00332{word-spacing:-0.085932px;}
.ws1b_c00332{word-spacing:-0.021600px;}
.ws2d_c00332{word-spacing:-0.014364px;}
.ws2c_c00332{word-spacing:-0.009576px;}
.ws3_c00332{word-spacing:0.000000px;}
.ws9_c00332{word-spacing:0.007200px;}
.ws7_c00332{word-spacing:0.014400px;}
.ws21_c00332{word-spacing:0.036000px;}
.ws2_c00332{word-spacing:0.042084px;}
.wsc_c00332{word-spacing:0.050400px;}
.ws29_c00332{word-spacing:1.781136px;}
.ws28_c00332{word-spacing:1.790712px;}
.ws26_c00332{word-spacing:2.149812px;}
.ws19_c00332{word-spacing:2.505600px;}
.ws1a_c00332{word-spacing:2.577600px;}
.ws14_c00332{word-spacing:3.578400px;}
.ws13_c00332{word-spacing:3.643200px;}
.ws2a_c00332{word-spacing:4.313988px;}
.ws4_c00332{word-spacing:4.320000px;}
.ws5_c00332{word-spacing:4.370400px;}
.wsb_c00332{word-spacing:5.047200px;}
.ws27_c00332{word-spacing:5.396076px;}
.ws1d_c00332{word-spacing:5.738400px;}
.ws2b_c00332{word-spacing:5.755176px;}
.ws1e_c00332{word-spacing:5.760000px;}
.ws17_c00332{word-spacing:6.120000px;}
.ws6_c00332{word-spacing:6.127200px;}
.ws18_c00332{word-spacing:6.285600px;}
.ws8_c00332{word-spacing:6.847200px;}
.wse_c00332{word-spacing:8.258400px;}
.wsd_c00332{word-spacing:8.352000px;}
.ws15_c00332{word-spacing:8.683200px;}
.ws16_c00332{word-spacing:8.748000px;}
.ws1f_c00332{word-spacing:9.424800px;}
.ws20_c00332{word-spacing:9.482400px;}
.ws23_c00332{word-spacing:11.534400px;}
.ws25_c00332{word-spacing:11.606400px;}
.ws24_c00332{word-spacing:11.613600px;}
.ws11_c00332{word-spacing:13.413600px;}
.ws12_c00332{word-spacing:13.420800px;}
.ws10_c00332{word-spacing:15.854400px;}
.wsf_c00332{word-spacing:15.861600px;}
.ws22_c00332{word-spacing:40.680000px;}
._0_c00332{margin-left:-1.322640px;}
._1_c00332{width:1.440000px;}
.fc0_c00332{color:rgb(0,0,0);}
.fs3_c00332{font-size:42.120000px;}
.fs5_c00332{font-size:47.880000px;}
.fs1_c00332{font-size:54.000000px;}
.fs0_c00332{font-size:60.120000px;}
.fs2_c00332{font-size:72.000000px;}
.fs4_c00332{font-size:78.120000px;}
.y0_c00332{bottom:0.000000px;}
.y3_c00332{bottom:57.450450px;}
.y26_c00332{bottom:113.717730px;}
.y25_c00332{bottom:132.079710px;}
.y24_c00332{bottom:150.345930px;}
.y23_c00332{bottom:164.111430px;}
.y22_c00332{bottom:177.972690px;}
.y21_c00332{bottom:191.738190px;}
.y20_c00332{bottom:205.503690px;}
.y1f_c00332{bottom:219.364950px;}
.y1e_c00332{bottom:233.130450px;}
.y1d_c00332{bottom:248.340450px;}
.y1c_c00332{bottom:269.040450px;}
.y1b_c00332{bottom:289.740450px;}
.y1a_c00332{bottom:335.910450px;}
.y19_c00332{bottom:370.380450px;}
.y18_c00332{bottom:404.760450px;}
.y17_c00332{bottom:439.230450px;}
.y16_c00332{bottom:473.610450px;}
.y15_c00332{bottom:508.080450px;}
.y14_c00332{bottom:544.080450px;}
.y13_c00332{bottom:597.810450px;}
.y12_c00332{bottom:632.190450px;}
.y11_c00332{bottom:666.660450px;}
.y10_c00332{bottom:701.040450px;}
.yf_c00332{bottom:735.510450px;}
.ye_c00332{bottom:769.890450px;}
.yd_c00332{bottom:804.360450px;}
.yc_c00332{bottom:838.740450px;}
.yb_c00332{bottom:873.210450px;}
.ya_c00332{bottom:907.590450px;}
.y9_c00332{bottom:942.060450px;}
.y8_c00332{bottom:994.440450px;}
.y7_c00332{bottom:1028.910450px;}
.y6_c00332{bottom:1072.290450px;}
.y5_c00332{bottom:1106.760450px;}
.y4_c00332{bottom:1141.140450px;}
.y2_c00332{bottom:1177.860450px;}
.y1_c00332{bottom:1196.850450px;}
.h8_c00332{height:47.988281px;}
.h9_c00332{height:49.937344px;}
.h1_c00332{height:50.315273px;}
.h2_c00332{height:56.320312px;}
.h5_c00332{height:60.257812px;}
.h6_c00332{height:65.130820px;}
.h3_c00332{height:72.160312px;}
.h4_c00332{height:75.093750px;}
.h7_c00332{height:81.476719px;}
.h0_c00332{height:1263.000000px;}
.w1_c00332{width:892.500000px;}
.w0_c00332{width:892.830000px;}
.x0_c00332{left:0.000000px;}
.x1_c00332{left:127.620000px;}
.x2_c00332{left:154.440000px;}
.x3_c00332{left:181.170000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.v1_c00332{vertical-align:14.080000pt;}
.v2_c00332{vertical-align:26.560000pt;}
.lsf_c00332{letter-spacing:-0.134400pt;}
.ls14_c00332{letter-spacing:-0.025600pt;}
.ls13_c00332{letter-spacing:-0.019200pt;}
.ls11_c00332{letter-spacing:-0.012800pt;}
.ls15_c00332{letter-spacing:-0.006944pt;}
.ls10_c00332{letter-spacing:-0.006400pt;}
.lse_c00332{letter-spacing:0.000000pt;}
.ls4_c00332{letter-spacing:0.006400pt;}
.ls8_c00332{letter-spacing:0.006944pt;}
.ls6_c00332{letter-spacing:0.012800pt;}
.lsb_c00332{letter-spacing:0.017024pt;}
.ls7_c00332{letter-spacing:0.019200pt;}
.lsd_c00332{letter-spacing:0.021280pt;}
.lsa_c00332{letter-spacing:0.025536pt;}
.ls16_c00332{letter-spacing:0.025600pt;}
.lsc_c00332{letter-spacing:0.034048pt;}
.ls0_c00332{letter-spacing:0.042752pt;}
.ls5_c00332{letter-spacing:0.048672pt;}
.ls12_c00332{letter-spacing:0.083200pt;}
.ls2_c00332{letter-spacing:0.128000pt;}
.ls9_c00332{letter-spacing:25.484480pt;}
.ls3_c00332{letter-spacing:58.688000pt;}
.ls1_c00332{letter-spacing:1077.440000pt;}
.ws1_c00332{word-spacing:-17.366944pt;}
.ws0_c00332{word-spacing:-9.408672pt;}
.wsa_c00332{word-spacing:-0.083200pt;}
.ws1c_c00332{word-spacing:-0.076384pt;}
.ws1b_c00332{word-spacing:-0.019200pt;}
.ws2d_c00332{word-spacing:-0.012768pt;}
.ws2c_c00332{word-spacing:-0.008512pt;}
.ws3_c00332{word-spacing:0.000000pt;}
.ws9_c00332{word-spacing:0.006400pt;}
.ws7_c00332{word-spacing:0.012800pt;}
.ws21_c00332{word-spacing:0.032000pt;}
.ws2_c00332{word-spacing:0.037408pt;}
.wsc_c00332{word-spacing:0.044800pt;}
.ws29_c00332{word-spacing:1.583232pt;}
.ws28_c00332{word-spacing:1.591744pt;}
.ws26_c00332{word-spacing:1.910944pt;}
.ws19_c00332{word-spacing:2.227200pt;}
.ws1a_c00332{word-spacing:2.291200pt;}
.ws14_c00332{word-spacing:3.180800pt;}
.ws13_c00332{word-spacing:3.238400pt;}
.ws2a_c00332{word-spacing:3.834656pt;}
.ws4_c00332{word-spacing:3.840000pt;}
.ws5_c00332{word-spacing:3.884800pt;}
.wsb_c00332{word-spacing:4.486400pt;}
.ws27_c00332{word-spacing:4.796512pt;}
.ws1d_c00332{word-spacing:5.100800pt;}
.ws2b_c00332{word-spacing:5.115712pt;}
.ws1e_c00332{word-spacing:5.120000pt;}
.ws17_c00332{word-spacing:5.440000pt;}
.ws6_c00332{word-spacing:5.446400pt;}
.ws18_c00332{word-spacing:5.587200pt;}
.ws8_c00332{word-spacing:6.086400pt;}
.wse_c00332{word-spacing:7.340800pt;}
.wsd_c00332{word-spacing:7.424000pt;}
.ws15_c00332{word-spacing:7.718400pt;}
.ws16_c00332{word-spacing:7.776000pt;}
.ws1f_c00332{word-spacing:8.377600pt;}
.ws20_c00332{word-spacing:8.428800pt;}
.ws23_c00332{word-spacing:10.252800pt;}
.ws25_c00332{word-spacing:10.316800pt;}
.ws24_c00332{word-spacing:10.323200pt;}
.ws11_c00332{word-spacing:11.923200pt;}
.ws12_c00332{word-spacing:11.929600pt;}
.ws10_c00332{word-spacing:14.092800pt;}
.wsf_c00332{word-spacing:14.099200pt;}
.ws22_c00332{word-spacing:36.160000pt;}
._0_c00332{margin-left:-1.175680pt;}
._1_c00332{width:1.280000pt;}
.fs3_c00332{font-size:37.440000pt;}
.fs5_c00332{font-size:42.560000pt;}
.fs1_c00332{font-size:48.000000pt;}
.fs0_c00332{font-size:53.440000pt;}
.fs2_c00332{font-size:64.000000pt;}
.fs4_c00332{font-size:69.440000pt;}
.y0_c00332{bottom:0.000000pt;}
.y3_c00332{bottom:51.067067pt;}
.y26_c00332{bottom:101.082427pt;}
.y25_c00332{bottom:117.404187pt;}
.y24_c00332{bottom:133.640827pt;}
.y23_c00332{bottom:145.876827pt;}
.y22_c00332{bottom:158.197947pt;}
.y21_c00332{bottom:170.433947pt;}
.y20_c00332{bottom:182.669947pt;}
.y1f_c00332{bottom:194.991067pt;}
.y1e_c00332{bottom:207.227067pt;}
.y1d_c00332{bottom:220.747067pt;}
.y1c_c00332{bottom:239.147067pt;}
.y1b_c00332{bottom:257.547067pt;}
.y1a_c00332{bottom:298.587067pt;}
.y19_c00332{bottom:329.227067pt;}
.y18_c00332{bottom:359.787067pt;}
.y17_c00332{bottom:390.427067pt;}
.y16_c00332{bottom:420.987067pt;}
.y15_c00332{bottom:451.627067pt;}
.y14_c00332{bottom:483.627067pt;}
.y13_c00332{bottom:531.387067pt;}
.y12_c00332{bottom:561.947067pt;}
.y11_c00332{bottom:592.587067pt;}
.y10_c00332{bottom:623.147067pt;}
.yf_c00332{bottom:653.787067pt;}
.ye_c00332{bottom:684.347067pt;}
.yd_c00332{bottom:714.987067pt;}
.yc_c00332{bottom:745.547067pt;}
.yb_c00332{bottom:776.187067pt;}
.ya_c00332{bottom:806.747067pt;}
.y9_c00332{bottom:837.387067pt;}
.y8_c00332{bottom:883.947067pt;}
.y7_c00332{bottom:914.587067pt;}
.y6_c00332{bottom:953.147067pt;}
.y5_c00332{bottom:983.787067pt;}
.y4_c00332{bottom:1014.347067pt;}
.y2_c00332{bottom:1046.987067pt;}
.y1_c00332{bottom:1063.867067pt;}
.h8_c00332{height:42.656250pt;}
.h9_c00332{height:44.388750pt;}
.h1_c00332{height:44.724687pt;}
.h2_c00332{height:50.062500pt;}
.h5_c00332{height:53.562500pt;}
.h6_c00332{height:57.894062pt;}
.h3_c00332{height:64.142500pt;}
.h4_c00332{height:66.750000pt;}
.h7_c00332{height:72.423750pt;}
.h0_c00332{height:1122.666667pt;}
.w1_c00332{width:793.333333pt;}
.w0_c00332{width:793.626667pt;}
.x0_c00332{left:0.000000pt;}
.x1_c00332{left:113.440000pt;}
.x2_c00332{left:137.280000pt;}
.x3_c00332{left:161.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b6b093e35dd61396c88d023d.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_5343f94b64de2a5981ad24df.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00333;src:url('chunks/assets/font_56a481e509790c3b758103f7.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00333;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00333{font-family:ff5_c00333;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_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;}
.v1_c00333{vertical-align:15.223680px;}
.v2_c00333{vertical-align:29.880000px;}
.ls10_c00333{letter-spacing:-0.151200px;}
.ls1a_c00333{letter-spacing:-0.078120px;}
.ls16_c00333{letter-spacing:-0.072144px;}
.ls13_c00333{letter-spacing:-0.030060px;}
.ls11_c00333{letter-spacing:-0.021600px;}
.ls17_c00333{letter-spacing:-0.018036px;}
.ls18_c00333{letter-spacing:-0.014400px;}
.ls14_c00333{letter-spacing:-0.012024px;}
.ls12_c00333{letter-spacing:-0.007200px;}
.ls15_c00333{letter-spacing:-0.006012px;}
.lsf_c00333{letter-spacing:0.000000px;}
.lsa_c00333{letter-spacing:0.007200px;}
.ls8_c00333{letter-spacing:0.007812px;}
.ls4_c00333{letter-spacing:0.012024px;}
.ls3_c00333{letter-spacing:0.018036px;}
.ls1b_c00333{letter-spacing:0.021600px;}
.lsd_c00333{letter-spacing:0.023940px;}
.ls2_c00333{letter-spacing:0.024048px;}
.lse_c00333{letter-spacing:0.028728px;}
.ls6_c00333{letter-spacing:0.036000px;}
.ls0_c00333{letter-spacing:0.036072px;}
.ls1_c00333{letter-spacing:0.054108px;}
.ls7_c00333{letter-spacing:0.054756px;}
.ls1c_c00333{letter-spacing:0.064800px;}
.ls19_c00333{letter-spacing:0.093600px;}
.ls5_c00333{letter-spacing:0.136080px;}
.lsb_c00333{letter-spacing:0.144000px;}
.ls9_c00333{letter-spacing:28.670040px;}
.lsc_c00333{letter-spacing:66.024000px;}
.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:-19.537812px;}
.ws1_c00333{word-spacing:-10.584756px;}
.ws0_c00333{word-spacing:-9.856080px;}
.ws3_c00333{word-spacing:-0.306612px;}
.ws11_c00333{word-spacing:-0.252504px;}
.ws26_c00333{word-spacing:-0.093600px;}
.ws24_c00333{word-spacing:-0.021600px;}
.ws15_c00333{word-spacing:-0.015624px;}
.ws2a_c00333{word-spacing:-0.009576px;}
.ws28_c00333{word-spacing:-0.007200px;}
.ws29_c00333{word-spacing:-0.004788px;}
.ws4_c00333{word-spacing:0.000000px;}
.ws25_c00333{word-spacing:0.007200px;}
.ws1b_c00333{word-spacing:0.021600px;}
.ws7_c00333{word-spacing:0.036072px;}
.ws6_c00333{word-spacing:0.064800px;}
.ws1a_c00333{word-spacing:0.072000px;}
.ws5_c00333{word-spacing:0.079200px;}
.ws27_c00333{word-spacing:0.093600px;}
.ws10_c00333{word-spacing:0.162324px;}
.ws1e_c00333{word-spacing:0.720000px;}
.wse_c00333{word-spacing:1.527048px;}
.wsd_c00333{word-spacing:1.539072px;}
.ws23_c00333{word-spacing:2.455200px;}
.ws21_c00333{word-spacing:2.527200px;}
.ws22_c00333{word-spacing:2.584800px;}
.wsc_c00333{word-spacing:2.933856px;}
.wsb_c00333{word-spacing:3.673332px;}
.wsa_c00333{word-spacing:3.721428px;}
.ws1f_c00333{word-spacing:3.952800px;}
.ws20_c00333{word-spacing:4.003200px;}
.ws1c_c00333{word-spacing:4.636800px;}
.ws1d_c00333{word-spacing:4.708800px;}
.ws14_c00333{word-spacing:6.084000px;}
.ws13_c00333{word-spacing:6.127200px;}
.ws12_c00333{word-spacing:6.883200px;}
.ws17_c00333{word-spacing:7.596000px;}
.ws16_c00333{word-spacing:7.639200px;}
.ws18_c00333{word-spacing:7.912800px;}
.ws19_c00333{word-spacing:7.927200px;}
.wsf_c00333{word-spacing:8.717400px;}
.ws8_c00333{word-spacing:13.743432px;}
.ws9_c00333{word-spacing:13.767480px;}
._0_c00333{margin-left:-1.022040px;}
._1_c00333{width:1.173600px;}
.fc0_c00333{color:rgb(0,0,0);}
.fs3_c00333{font-size:38.880000px;}
.fs4_c00333{font-size:42.120000px;}
.fs6_c00333{font-size:47.880000px;}
.fs2_c00333{font-size:54.000000px;}
.fs0_c00333{font-size:60.120000px;}
.fs1_c00333{font-size:72.000000px;}
.fs5_c00333{font-size:78.120000px;}
.y0_c00333{bottom:0.000000px;}
.y3_c00333{bottom:57.450450px;}
.y4_c00333{bottom:61.410450px;}
.y25_c00333{bottom:113.698470px;}
.y24_c00333{bottom:132.060450px;}
.y23_c00333{bottom:147.270450px;}
.y22_c00333{bottom:167.970450px;}
.y21_c00333{bottom:188.670450px;}
.y20_c00333{bottom:250.230450px;}
.y1f_c00333{bottom:293.610450px;}
.y1e_c00333{bottom:337.080450px;}
.y1d_c00333{bottom:380.460450px;}
.y1c_c00333{bottom:423.930450px;}
.y1b_c00333{bottom:467.310450px;}
.y1a_c00333{bottom:510.780450px;}
.y19_c00333{bottom:554.160450px;}
.y18_c00333{bottom:588.630450px;}
.y17_c00333{bottom:623.010450px;}
.y16_c00333{bottom:657.480450px;}
.y15_c00333{bottom:691.860450px;}
.y14_c00333{bottom:726.330450px;}
.y13_c00333{bottom:760.710450px;}
.y12_c00333{bottom:795.180450px;}
.y11_c00333{bottom:831.180600px;}
.y10_c00333{bottom:884.910450px;}
.yf_c00333{bottom:919.290450px;}
.ye_c00333{bottom:953.760450px;}
.yd_c00333{bottom:991.174530px;}
.yc_c00333{bottom:1008.098310px;}
.yb_c00333{bottom:1024.931910px;}
.ya_c00333{bottom:1041.855690px;}
.y9_c00333{bottom:1058.689290px;}
.y8_c00333{bottom:1075.613070px;}
.y7_c00333{bottom:1092.446670px;}
.y6_c00333{bottom:1109.370450px;}
.y5_c00333{bottom:1141.140450px;}
.y2_c00333{bottom:1173.810450px;}
.y1_c00333{bottom:1196.850450px;}
.h2_c00333{height:47.988281px;}
.h9_c00333{height:49.937344px;}
.h1_c00333{height:50.315273px;}
.h5_c00333{height:50.418953px;}
.h3_c00333{height:56.320312px;}
.h4_c00333{height:60.257812px;}
.h6_c00333{height:65.130820px;}
.h8_c00333{height:75.093750px;}
.h7_c00333{height:81.476719px;}
.h0_c00333{height:1263.000000px;}
.w1_c00333{width:892.500000px;}
.w0_c00333{width:892.830000px;}
.x0_c00333{left:0.000000px;}
.x2_c00333{left:127.620000px;}
.x6_c00333{left:154.620000px;}
.x5_c00333{left:180.720000px;}
.x4_c00333{left:435.240000px;}
.x3_c00333{left:446.490000px;}
.x1_c00333{left:490.770000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.v1_c00333{vertical-align:13.532160pt;}
.v2_c00333{vertical-align:26.560000pt;}
.ls10_c00333{letter-spacing:-0.134400pt;}
.ls1a_c00333{letter-spacing:-0.069440pt;}
.ls16_c00333{letter-spacing:-0.064128pt;}
.ls13_c00333{letter-spacing:-0.026720pt;}
.ls11_c00333{letter-spacing:-0.019200pt;}
.ls17_c00333{letter-spacing:-0.016032pt;}
.ls18_c00333{letter-spacing:-0.012800pt;}
.ls14_c00333{letter-spacing:-0.010688pt;}
.ls12_c00333{letter-spacing:-0.006400pt;}
.ls15_c00333{letter-spacing:-0.005344pt;}
.lsf_c00333{letter-spacing:0.000000pt;}
.lsa_c00333{letter-spacing:0.006400pt;}
.ls8_c00333{letter-spacing:0.006944pt;}
.ls4_c00333{letter-spacing:0.010688pt;}
.ls3_c00333{letter-spacing:0.016032pt;}
.ls1b_c00333{letter-spacing:0.019200pt;}
.lsd_c00333{letter-spacing:0.021280pt;}
.ls2_c00333{letter-spacing:0.021376pt;}
.lse_c00333{letter-spacing:0.025536pt;}
.ls6_c00333{letter-spacing:0.032000pt;}
.ls0_c00333{letter-spacing:0.032064pt;}
.ls1_c00333{letter-spacing:0.048096pt;}
.ls7_c00333{letter-spacing:0.048672pt;}
.ls1c_c00333{letter-spacing:0.057600pt;}
.ls19_c00333{letter-spacing:0.083200pt;}
.ls5_c00333{letter-spacing:0.120960pt;}
.lsb_c00333{letter-spacing:0.128000pt;}
.ls9_c00333{letter-spacing:25.484480pt;}
.lsc_c00333{letter-spacing:58.688000pt;}
.ws2_c00333{word-spacing:-17.366944pt;}
.ws1_c00333{word-spacing:-9.408672pt;}
.ws0_c00333{word-spacing:-8.760960pt;}
.ws3_c00333{word-spacing:-0.272544pt;}
.ws11_c00333{word-spacing:-0.224448pt;}
.ws26_c00333{word-spacing:-0.083200pt;}
.ws24_c00333{word-spacing:-0.019200pt;}
.ws15_c00333{word-spacing:-0.013888pt;}
.ws2a_c00333{word-spacing:-0.008512pt;}
.ws28_c00333{word-spacing:-0.006400pt;}
.ws29_c00333{word-spacing:-0.004256pt;}
.ws4_c00333{word-spacing:0.000000pt;}
.ws25_c00333{word-spacing:0.006400pt;}
.ws1b_c00333{word-spacing:0.019200pt;}
.ws7_c00333{word-spacing:0.032064pt;}
.ws6_c00333{word-spacing:0.057600pt;}
.ws1a_c00333{word-spacing:0.064000pt;}
.ws5_c00333{word-spacing:0.070400pt;}
.ws27_c00333{word-spacing:0.083200pt;}
.ws10_c00333{word-spacing:0.144288pt;}
.ws1e_c00333{word-spacing:0.640000pt;}
.wse_c00333{word-spacing:1.357376pt;}
.wsd_c00333{word-spacing:1.368064pt;}
.ws23_c00333{word-spacing:2.182400pt;}
.ws21_c00333{word-spacing:2.246400pt;}
.ws22_c00333{word-spacing:2.297600pt;}
.wsc_c00333{word-spacing:2.607872pt;}
.wsb_c00333{word-spacing:3.265184pt;}
.wsa_c00333{word-spacing:3.307936pt;}
.ws1f_c00333{word-spacing:3.513600pt;}
.ws20_c00333{word-spacing:3.558400pt;}
.ws1c_c00333{word-spacing:4.121600pt;}
.ws1d_c00333{word-spacing:4.185600pt;}
.ws14_c00333{word-spacing:5.408000pt;}
.ws13_c00333{word-spacing:5.446400pt;}
.ws12_c00333{word-spacing:6.118400pt;}
.ws17_c00333{word-spacing:6.752000pt;}
.ws16_c00333{word-spacing:6.790400pt;}
.ws18_c00333{word-spacing:7.033600pt;}
.ws19_c00333{word-spacing:7.046400pt;}
.wsf_c00333{word-spacing:7.748800pt;}
.ws8_c00333{word-spacing:12.216384pt;}
.ws9_c00333{word-spacing:12.237760pt;}
._0_c00333{margin-left:-0.908480pt;}
._1_c00333{width:1.043200pt;}
.fs3_c00333{font-size:34.560000pt;}
.fs4_c00333{font-size:37.440000pt;}
.fs6_c00333{font-size:42.560000pt;}
.fs2_c00333{font-size:48.000000pt;}
.fs0_c00333{font-size:53.440000pt;}
.fs1_c00333{font-size:64.000000pt;}
.fs5_c00333{font-size:69.440000pt;}
.y0_c00333{bottom:0.000000pt;}
.y3_c00333{bottom:51.067067pt;}
.y4_c00333{bottom:54.587067pt;}
.y25_c00333{bottom:101.065307pt;}
.y24_c00333{bottom:117.387067pt;}
.y23_c00333{bottom:130.907067pt;}
.y22_c00333{bottom:149.307067pt;}
.y21_c00333{bottom:167.707067pt;}
.y20_c00333{bottom:222.427067pt;}
.y1f_c00333{bottom:260.987067pt;}
.y1e_c00333{bottom:299.627067pt;}
.y1d_c00333{bottom:338.187067pt;}
.y1c_c00333{bottom:376.827067pt;}
.y1b_c00333{bottom:415.387067pt;}
.y1a_c00333{bottom:454.027067pt;}
.y19_c00333{bottom:492.587067pt;}
.y18_c00333{bottom:523.227067pt;}
.y17_c00333{bottom:553.787067pt;}
.y16_c00333{bottom:584.427067pt;}
.y15_c00333{bottom:614.987067pt;}
.y14_c00333{bottom:645.627067pt;}
.y13_c00333{bottom:676.187067pt;}
.y12_c00333{bottom:706.827067pt;}
.y11_c00333{bottom:738.827200pt;}
.y10_c00333{bottom:786.587067pt;}
.yf_c00333{bottom:817.147067pt;}
.ye_c00333{bottom:847.787067pt;}
.yd_c00333{bottom:881.044027pt;}
.yc_c00333{bottom:896.087387pt;}
.yb_c00333{bottom:911.050587pt;}
.ya_c00333{bottom:926.093947pt;}
.y9_c00333{bottom:941.057147pt;}
.y8_c00333{bottom:956.100507pt;}
.y7_c00333{bottom:971.063707pt;}
.y6_c00333{bottom:986.107067pt;}
.y5_c00333{bottom:1014.347067pt;}
.y2_c00333{bottom:1043.387067pt;}
.y1_c00333{bottom:1063.867067pt;}
.h2_c00333{height:42.656250pt;}
.h9_c00333{height:44.388750pt;}
.h1_c00333{height:44.724687pt;}
.h5_c00333{height:44.816848pt;}
.h3_c00333{height:50.062500pt;}
.h4_c00333{height:53.562500pt;}
.h6_c00333{height:57.894063pt;}
.h8_c00333{height:66.750000pt;}
.h7_c00333{height:72.423750pt;}
.h0_c00333{height:1122.666667pt;}
.w1_c00333{width:793.333333pt;}
.w0_c00333{width:793.626667pt;}
.x0_c00333{left:0.000000pt;}
.x2_c00333{left:113.440000pt;}
.x6_c00333{left:137.440000pt;}
.x5_c00333{left:160.640000pt;}
.x4_c00333{left:386.880000pt;}
.x3_c00333{left:396.880000pt;}
.x1_c00333{left:436.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_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_19adcb71916b754bae9d543f.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.100098;font-style:normal;font-weight:normal;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_b6bf461208e9002490f93b7c.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;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_c00334;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00334{transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.v1_c00334{vertical-align:15.840000px;}
.v2_c00334{vertical-align:29.875291px;}
.ls11_c00334{letter-spacing:-1.379627px;}
.ls14_c00334{letter-spacing:-0.899757px;}
.lsf_c00334{letter-spacing:-0.828515px;}
.lsb_c00334{letter-spacing:-0.151200px;}
.ls17_c00334{letter-spacing:-0.066132px;}
.ls16_c00334{letter-spacing:-0.036072px;}
.ls18_c00334{letter-spacing:-0.021600px;}
.ls15_c00334{letter-spacing:-0.018036px;}
.lsd_c00334{letter-spacing:-0.014400px;}
.lsc_c00334{letter-spacing:-0.007200px;}
.lsa_c00334{letter-spacing:0.000000px;}
.ls1a_c00334{letter-spacing:0.007200px;}
.ls5_c00334{letter-spacing:0.014400px;}
.ls1b_c00334{letter-spacing:0.028800px;}
.ls7_c00334{letter-spacing:0.033516px;}
.ls9_c00334{letter-spacing:0.043092px;}
.ls0_c00334{letter-spacing:0.048096px;}
.ls8_c00334{letter-spacing:0.052668px;}
.ls6_c00334{letter-spacing:0.054756px;}
.lse_c00334{letter-spacing:0.079200px;}
.ls19_c00334{letter-spacing:0.093600px;}
.ls4_c00334{letter-spacing:0.136080px;}
.ls2_c00334{letter-spacing:0.144000px;}
.ls13_c00334{letter-spacing:0.395893px;}
.ls12_c00334{letter-spacing:0.425885px;}
.ls10_c00334{letter-spacing:0.473872px;}
.ls3_c00334{letter-spacing:66.024000px;}
.ls1_c00334{letter-spacing:1212.120000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00334{word-spacing:-12.720148px;}
.ws4_c00334{word-spacing:-10.584756px;}
.ws3_c00334{word-spacing:-9.856080px;}
.wse_c00334{word-spacing:-2.303378px;}
.wsf_c00334{word-spacing:-2.297380px;}
.wsb_c00334{word-spacing:-2.021454px;}
.wsd_c00334{word-spacing:-1.973467px;}
.ws10_c00334{word-spacing:-0.647825px;}
.ws12_c00334{word-spacing:-0.234468px;}
.wsc_c00334{word-spacing:-0.167955px;}
.ws29_c00334{word-spacing:-0.023940px;}
.ws2a_c00334{word-spacing:-0.014364px;}
.ws1e_c00334{word-spacing:-0.007200px;}
.ws6_c00334{word-spacing:0.000000px;}
.ws1b_c00334{word-spacing:0.007200px;}
.ws5_c00334{word-spacing:0.042084px;}
.ws1c_c00334{word-spacing:0.050400px;}
.ws11_c00334{word-spacing:0.108216px;}
.ws13_c00334{word-spacing:0.156312px;}
.ws21_c00334{word-spacing:1.015200px;}
.ws22_c00334{word-spacing:1.036800px;}
.ws9_c00334{word-spacing:1.389600px;}
.wsa_c00334{word-spacing:1.454400px;}
.ws18_c00334{word-spacing:1.749600px;}
.ws17_c00334{word-spacing:1.821600px;}
.ws20_c00334{word-spacing:4.651200px;}
.ws1f_c00334{word-spacing:4.759200px;}
.ws7_c00334{word-spacing:5.342400px;}
.ws14_c00334{word-spacing:5.371200px;}
.ws8_c00334{word-spacing:5.385600px;}
.ws15_c00334{word-spacing:7.581600px;}
.ws28_c00334{word-spacing:8.244936px;}
.ws27_c00334{word-spacing:8.264088px;}
.ws26_c00334{word-spacing:9.367200px;}
.ws25_c00334{word-spacing:9.468000px;}
.ws1a_c00334{word-spacing:9.705600px;}
.ws16_c00334{word-spacing:9.734400px;}
.ws19_c00334{word-spacing:9.777600px;}
.ws23_c00334{word-spacing:11.786400px;}
.ws24_c00334{word-spacing:11.944800px;}
.ws1d_c00334{word-spacing:15.141600px;}
.ws1_c00334{word-spacing:72.178312px;}
.ws2_c00334{word-spacing:799.655554px;}
._4_c00334{margin-left:-6.157301px;}
._2_c00334{margin-left:-3.958931px;}
._1_c00334{margin-left:-2.324386px;}
._0_c00334{margin-left:-1.322640px;}
._3_c00334{width:1.319644px;}
._5_c00334{width:2.759255px;}
._6_c00334{width:189.360000px;}
.fc0_c00334{color:rgb(0,0,0);}
.fs6_c00334{font-size:38.880000px;}
.fs7_c00334{font-size:42.120000px;}
.fs5_c00334{font-size:47.880000px;}
.fs3_c00334{font-size:48.736200px;}
.fs1_c00334{font-size:54.000000px;}
.fs4_c00334{font-size:59.983800px;}
.fs0_c00334{font-size:60.120000px;}
.fs2_c00334{font-size:72.000000px;}
.y0_c00334{bottom:0.000000px;}
.y3_c00334{bottom:57.450450px;}
.y2b_c00334{bottom:113.706750px;}
.y2a_c00334{bottom:132.068730px;}
.y29_c00334{bottom:150.334950px;}
.y28_c00334{bottom:164.100450px;}
.y27_c00334{bottom:179.310600px;}
.y26_c00334{bottom:200.010600px;}
.y25_c00334{bottom:220.710450px;}
.y24_c00334{bottom:321.240450px;}
.y23_c00334{bottom:355.710450px;}
.y22_c00334{bottom:390.090450px;}
.y21_c00334{bottom:424.560450px;}
.y20_c00334{bottom:458.940450px;}
.y1f_c00334{bottom:493.410450px;}
.y1e_c00334{bottom:527.790450px;}
.y1d_c00334{bottom:562.260450px;}
.y1c_c00334{bottom:596.640450px;}
.y1b_c00334{bottom:631.110450px;}
.y1a_c00334{bottom:665.490450px;}
.y19_c00334{bottom:699.960450px;}
.y18_c00334{bottom:734.340450px;}
.y17_c00334{bottom:753.870450px;}
.y16_c00334{bottom:776.190450px;}
.yc_c00334{bottom:790.590770px;}
.yb_c00334{bottom:791.492390px;}
.y15_c00334{bottom:796.350450px;}
.y14_c00334{bottom:821.640450px;}
.y13_c00334{bottom:847.020450px;}
.ya_c00334{bottom:854.313352px;}
.y12_c00334{bottom:872.310450px;}
.y11_c00334{bottom:897.600450px;}
.y10_c00334{bottom:922.890450px;}
.y9_c00334{bottom:933.960487px;}
.yd_c00334{bottom:941.429309px;}
.yf_c00334{bottom:948.180450px;}
.ye_c00334{bottom:969.598833px;}
.y8_c00334{bottom:973.290600px;}
.y7_c00334{bottom:1019.910450px;}
.y6_c00334{bottom:1054.290450px;}
.y5_c00334{bottom:1088.760450px;}
.y4_c00334{bottom:1141.140450px;}
.y2_c00334{bottom:1177.860450px;}
.y1_c00334{bottom:1196.850450px;}
.h9_c00334{height:40.071445px;}
.hc_c00334{height:47.988281px;}
.hb_c00334{height:47.988881px;}
.hd_c00334{height:49.937344px;}
.h1_c00334{height:50.315273px;}
.h6_c00334{height:50.830334px;}
.h2_c00334{height:56.320312px;}
.h5_c00334{height:60.257812px;}
.h8_c00334{height:62.561229px;}
.ha_c00334{height:65.130820px;}
.h3_c00334{height:72.160312px;}
.h4_c00334{height:75.093750px;}
.h7_c00334{height:80.705624px;}
.h0_c00334{height:1263.000000px;}
.w1_c00334{width:892.500000px;}
.w0_c00334{width:892.830000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:127.620000px;}
.x2_c00334{left:154.440000px;}
.x8_c00334{left:158.929169px;}
.x3_c00334{left:180.810000px;}
.x9_c00334{left:191.687557px;}
.xc_c00334{left:199.350000px;}
.x4_c00334{left:281.700000px;}
.x7_c00334{left:319.223465px;}
.x5_c00334{left:331.373804px;}
.x6_c00334{left:347.302083px;}
.xa_c00334{left:450.450000px;}
.xb_c00334{left:757.080000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.v1_c00334{vertical-align:14.080000pt;}
.v2_c00334{vertical-align:26.555814pt;}
.ls11_c00334{letter-spacing:-1.226335pt;}
.ls14_c00334{letter-spacing:-0.799784pt;}
.lsf_c00334{letter-spacing:-0.736458pt;}
.lsb_c00334{letter-spacing:-0.134400pt;}
.ls17_c00334{letter-spacing:-0.058784pt;}
.ls16_c00334{letter-spacing:-0.032064pt;}
.ls18_c00334{letter-spacing:-0.019200pt;}
.ls15_c00334{letter-spacing:-0.016032pt;}
.lsd_c00334{letter-spacing:-0.012800pt;}
.lsc_c00334{letter-spacing:-0.006400pt;}
.lsa_c00334{letter-spacing:0.000000pt;}
.ls1a_c00334{letter-spacing:0.006400pt;}
.ls5_c00334{letter-spacing:0.012800pt;}
.ls1b_c00334{letter-spacing:0.025600pt;}
.ls7_c00334{letter-spacing:0.029792pt;}
.ls9_c00334{letter-spacing:0.038304pt;}
.ls0_c00334{letter-spacing:0.042752pt;}
.ls8_c00334{letter-spacing:0.046816pt;}
.ls6_c00334{letter-spacing:0.048672pt;}
.lse_c00334{letter-spacing:0.070400pt;}
.ls19_c00334{letter-spacing:0.083200pt;}
.ls4_c00334{letter-spacing:0.120960pt;}
.ls2_c00334{letter-spacing:0.128000pt;}
.ls13_c00334{letter-spacing:0.351905pt;}
.ls12_c00334{letter-spacing:0.378564pt;}
.ls10_c00334{letter-spacing:0.421220pt;}
.ls3_c00334{letter-spacing:58.688000pt;}
.ls1_c00334{letter-spacing:1077.440000pt;}
.ws0_c00334{word-spacing:-11.306798pt;}
.ws4_c00334{word-spacing:-9.408672pt;}
.ws3_c00334{word-spacing:-8.760960pt;}
.wse_c00334{word-spacing:-2.047447pt;}
.wsf_c00334{word-spacing:-2.042115pt;}
.wsb_c00334{word-spacing:-1.796848pt;}
.wsd_c00334{word-spacing:-1.754193pt;}
.ws10_c00334{word-spacing:-0.575844pt;}
.ws12_c00334{word-spacing:-0.208416pt;}
.wsc_c00334{word-spacing:-0.149293pt;}
.ws29_c00334{word-spacing:-0.021280pt;}
.ws2a_c00334{word-spacing:-0.012768pt;}
.ws1e_c00334{word-spacing:-0.006400pt;}
.ws6_c00334{word-spacing:0.000000pt;}
.ws1b_c00334{word-spacing:0.006400pt;}
.ws5_c00334{word-spacing:0.037408pt;}
.ws1c_c00334{word-spacing:0.044800pt;}
.ws11_c00334{word-spacing:0.096192pt;}
.ws13_c00334{word-spacing:0.138944pt;}
.ws21_c00334{word-spacing:0.902400pt;}
.ws22_c00334{word-spacing:0.921600pt;}
.ws9_c00334{word-spacing:1.235200pt;}
.wsa_c00334{word-spacing:1.292800pt;}
.ws18_c00334{word-spacing:1.555200pt;}
.ws17_c00334{word-spacing:1.619200pt;}
.ws20_c00334{word-spacing:4.134400pt;}
.ws1f_c00334{word-spacing:4.230400pt;}
.ws7_c00334{word-spacing:4.748800pt;}
.ws14_c00334{word-spacing:4.774400pt;}
.ws8_c00334{word-spacing:4.787200pt;}
.ws15_c00334{word-spacing:6.739200pt;}
.ws28_c00334{word-spacing:7.328832pt;}
.ws27_c00334{word-spacing:7.345856pt;}
.ws26_c00334{word-spacing:8.326400pt;}
.ws25_c00334{word-spacing:8.416000pt;}
.ws1a_c00334{word-spacing:8.627200pt;}
.ws16_c00334{word-spacing:8.652800pt;}
.ws19_c00334{word-spacing:8.691200pt;}
.ws23_c00334{word-spacing:10.476800pt;}
.ws24_c00334{word-spacing:10.617600pt;}
.ws1d_c00334{word-spacing:13.459200pt;}
.ws1_c00334{word-spacing:64.158500pt;}
.ws2_c00334{word-spacing:710.804937pt;}
._4_c00334{margin-left:-5.473156pt;}
._2_c00334{margin-left:-3.519050pt;}
._1_c00334{margin-left:-2.066121pt;}
._0_c00334{margin-left:-1.175680pt;}
._3_c00334{width:1.173017pt;}
._5_c00334{width:2.452671pt;}
._6_c00334{width:168.320000pt;}
.fs6_c00334{font-size:34.560000pt;}
.fs7_c00334{font-size:37.440000pt;}
.fs5_c00334{font-size:42.560000pt;}
.fs3_c00334{font-size:43.321067pt;}
.fs1_c00334{font-size:48.000000pt;}
.fs4_c00334{font-size:53.318933pt;}
.fs0_c00334{font-size:53.440000pt;}
.fs2_c00334{font-size:64.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y3_c00334{bottom:51.067067pt;}
.y2b_c00334{bottom:101.072667pt;}
.y2a_c00334{bottom:117.394427pt;}
.y29_c00334{bottom:133.631067pt;}
.y28_c00334{bottom:145.867067pt;}
.y27_c00334{bottom:159.387200pt;}
.y26_c00334{bottom:177.787200pt;}
.y25_c00334{bottom:196.187067pt;}
.y24_c00334{bottom:285.547067pt;}
.y23_c00334{bottom:316.187067pt;}
.y22_c00334{bottom:346.747067pt;}
.y21_c00334{bottom:377.387067pt;}
.y20_c00334{bottom:407.947067pt;}
.y1f_c00334{bottom:438.587067pt;}
.y1e_c00334{bottom:469.147067pt;}
.y1d_c00334{bottom:499.787067pt;}
.y1c_c00334{bottom:530.347067pt;}
.y1b_c00334{bottom:560.987067pt;}
.y1a_c00334{bottom:591.547067pt;}
.y19_c00334{bottom:622.187067pt;}
.y18_c00334{bottom:652.747067pt;}
.y17_c00334{bottom:670.107067pt;}
.y16_c00334{bottom:689.947067pt;}
.yc_c00334{bottom:702.747351pt;}
.yb_c00334{bottom:703.548791pt;}
.y15_c00334{bottom:707.867067pt;}
.y14_c00334{bottom:730.347067pt;}
.y13_c00334{bottom:752.907067pt;}
.ya_c00334{bottom:759.389646pt;}
.y12_c00334{bottom:775.387067pt;}
.y11_c00334{bottom:797.867067pt;}
.y10_c00334{bottom:820.347067pt;}
.y9_c00334{bottom:830.187099pt;}
.yd_c00334{bottom:836.826053pt;}
.yf_c00334{bottom:842.827067pt;}
.ye_c00334{bottom:861.865629pt;}
.y8_c00334{bottom:865.147200pt;}
.y7_c00334{bottom:906.587067pt;}
.y6_c00334{bottom:937.147067pt;}
.y5_c00334{bottom:967.787067pt;}
.y4_c00334{bottom:1014.347067pt;}
.y2_c00334{bottom:1046.987067pt;}
.y1_c00334{bottom:1063.867067pt;}
.h9_c00334{height:35.619062pt;}
.hc_c00334{height:42.656250pt;}
.hb_c00334{height:42.656783pt;}
.hd_c00334{height:44.388750pt;}
.h1_c00334{height:44.724687pt;}
.h6_c00334{height:45.182519pt;}
.h2_c00334{height:50.062500pt;}
.h5_c00334{height:53.562500pt;}
.h8_c00334{height:55.609981pt;}
.ha_c00334{height:57.894063pt;}
.h3_c00334{height:64.142500pt;}
.h4_c00334{height:66.750000pt;}
.h7_c00334{height:71.738333pt;}
.h0_c00334{height:1122.666667pt;}
.w1_c00334{width:793.333333pt;}
.w0_c00334{width:793.626667pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:113.440000pt;}
.x2_c00334{left:137.280000pt;}
.x8_c00334{left:141.270373pt;}
.x3_c00334{left:160.720000pt;}
.x9_c00334{left:170.388939pt;}
.xc_c00334{left:177.200000pt;}
.x4_c00334{left:250.400000pt;}
.x7_c00334{left:283.754191pt;}
.x5_c00334{left:294.554493pt;}
.x6_c00334{left:308.712962pt;}
.xa_c00334{left:400.400000pt;}
.xb_c00334{left:672.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b5d2a694be54ef1341c230cc.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_d312e92c80609e2ad15e8730.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;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_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);}
.m1_c00335{transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);}
.m2_c00335{transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.v1_c00335{vertical-align:15.120000px;}
.v2_c00335{vertical-align:29.880600px;}
.lsf_c00335{letter-spacing:-1.446337px;}
.lse_c00335{letter-spacing:-1.092420px;}
.lsd_c00335{letter-spacing:-1.085994px;}
.ls10_c00335{letter-spacing:-0.450806px;}
.ls9_c00335{letter-spacing:-0.151200px;}
.ls13_c00335{letter-spacing:-0.048096px;}
.ls15_c00335{letter-spacing:-0.043200px;}
.ls12_c00335{letter-spacing:-0.036072px;}
.ls17_c00335{letter-spacing:-0.036000px;}
.ls16_c00335{letter-spacing:-0.028800px;}
.ls14_c00335{letter-spacing:-0.021600px;}
.lsc_c00335{letter-spacing:-0.014400px;}
.lsa_c00335{letter-spacing:-0.007200px;}
.ls8_c00335{letter-spacing:0.000000px;}
.ls6_c00335{letter-spacing:0.007200px;}
.ls1_c00335{letter-spacing:0.014400px;}
.ls7_c00335{letter-spacing:0.028728px;}
.ls4_c00335{letter-spacing:0.028800px;}
.ls0_c00335{letter-spacing:0.036072px;}
.ls5_c00335{letter-spacing:0.054756px;}
.lsb_c00335{letter-spacing:0.093600px;}
.ls2_c00335{letter-spacing:0.136080px;}
.ls11_c00335{letter-spacing:0.624555px;}
.ls3_c00335{letter-spacing:1.033098px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00335{word-spacing:-13.679157px;}
.ws2_c00335{word-spacing:-10.584756px;}
.ws0_c00335{word-spacing:-9.856080px;}
.wsd_c00335{word-spacing:-1.577822px;}
.ws3_c00335{word-spacing:-0.306612px;}
.wsf_c00335{word-spacing:-0.093918px;}
.ws25_c00335{word-spacing:-0.014364px;}
.ws24_c00335{word-spacing:-0.009576px;}
.wsc_c00335{word-spacing:-0.007200px;}
.ws4_c00335{word-spacing:0.000000px;}
.ws7_c00335{word-spacing:0.007200px;}
.ws10_c00335{word-spacing:0.126252px;}
.ws1b_c00335{word-spacing:0.129600px;}
.ws11_c00335{word-spacing:0.138276px;}
.wse_c00335{word-spacing:0.901613px;}
.ws18_c00335{word-spacing:1.425600px;}
.ws19_c00335{word-spacing:1.454400px;}
.wsb_c00335{word-spacing:2.887200px;}
.ws23_c00335{word-spacing:3.232800px;}
.wsa_c00335{word-spacing:3.283200px;}
.ws22_c00335{word-spacing:3.340800px;}
.ws16_c00335{word-spacing:4.377600px;}
.ws17_c00335{word-spacing:4.420800px;}
.ws8_c00335{word-spacing:4.572000px;}
.ws9_c00335{word-spacing:4.608000px;}
.ws1e_c00335{word-spacing:5.788800px;}
.ws12_c00335{word-spacing:6.127200px;}
.ws13_c00335{word-spacing:6.256800px;}
.ws1c_c00335{word-spacing:10.396800px;}
.ws1a_c00335{word-spacing:11.541600px;}
.ws1d_c00335{word-spacing:11.894400px;}
.ws14_c00335{word-spacing:12.571200px;}
.ws15_c00335{word-spacing:12.657600px;}
.ws5_c00335{word-spacing:16.855200px;}
.ws6_c00335{word-spacing:16.927200px;}
.ws1f_c00335{word-spacing:25.293600px;}
.ws20_c00335{word-spacing:25.336800px;}
.ws21_c00335{word-spacing:29.505600px;}
._2_c00335{margin-left:-3.157311px;}
._0_c00335{margin-left:-1.022040px;}
._1_c00335{width:1.152000px;}
._3_c00335{width:3.027351px;}
.fc0_c00335{color:rgb(0,0,0);}
.fs3_c00335{font-size:38.880000px;}
.fs6_c00335{font-size:42.120000px;}
.fs5_c00335{font-size:46.959000px;}
.fs7_c00335{font-size:47.880000px;}
.fs2_c00335{font-size:54.000000px;}
.fs0_c00335{font-size:60.120000px;}
.fs4_c00335{font-size:64.260000px;}
.fs1_c00335{font-size:72.000000px;}
.y0_c00335{bottom:0.000000px;}
.y3_c00335{bottom:57.450450px;}
.y4_c00335{bottom:61.410450px;}
.y28_c00335{bottom:113.702250px;}
.y27_c00335{bottom:132.064230px;}
.y26_c00335{bottom:150.330450px;}
.y25_c00335{bottom:165.540450px;}
.y24_c00335{bottom:186.240450px;}
.y23_c00335{bottom:206.940450px;}
.y22_c00335{bottom:239.790450px;}
.y21_c00335{bottom:274.260450px;}
.y20_c00335{bottom:308.640450px;}
.y1f_c00335{bottom:343.110450px;}
.y1e_c00335{bottom:377.490450px;}
.y1d_c00335{bottom:411.960450px;}
.y1c_c00335{bottom:446.340450px;}
.y1b_c00335{bottom:480.810450px;}
.y1a_c00335{bottom:515.190450px;}
.y19_c00335{bottom:549.660450px;}
.y18_c00335{bottom:584.040450px;}
.y17_c00335{bottom:618.510450px;}
.y16_c00335{bottom:652.890450px;}
.y15_c00335{bottom:690.420450px;}
.y14_c00335{bottom:708.060450px;}
.y13_c00335{bottom:723.540450px;}
.yc_c00335{bottom:735.603690px;}
.y12_c00335{bottom:793.920450px;}
.y11_c00335{bottom:819.840450px;}
.yb_c00335{bottom:840.090450px;}
.y10_c00335{bottom:846.390450px;}
.yd_c00335{bottom:862.324410px;}
.yf_c00335{bottom:872.940450px;}
.ye_c00335{bottom:926.584410px;}
.ya_c00335{bottom:969.060450px;}
.y9_c00335{bottom:1003.440450px;}
.y8_c00335{bottom:1037.910450px;}
.y7_c00335{bottom:1072.290450px;}
.y6_c00335{bottom:1106.760450px;}
.y5_c00335{bottom:1141.140450px;}
.y2_c00335{bottom:1173.810450px;}
.y1_c00335{bottom:1196.850450px;}
.h2_c00335{height:47.988281px;}
.h6_c00335{height:48.976770px;}
.h8_c00335{height:49.937344px;}
.h1_c00335{height:50.315273px;}
.h3_c00335{height:56.320312px;}
.h4_c00335{height:60.257812px;}
.h7_c00335{height:65.131420px;}
.h5_c00335{height:67.021172px;}
.h0_c00335{height:1263.000000px;}
.w1_c00335{width:892.500000px;}
.w0_c00335{width:892.830000px;}
.x0_c00335{left:0.000000px;}
.x2_c00335{left:127.620000px;}
.x5_c00335{left:180.810000px;}
.xb_c00335{left:185.400000px;}
.x8_c00335{left:223.281436px;}
.x7_c00335{left:266.218774px;}
.x9_c00335{left:297.984633px;}
.x6_c00335{left:430.650000px;}
.x4_c00335{left:435.240000px;}
.x3_c00335{left:446.490000px;}
.x1_c00335{left:490.770000px;}
.xa_c00335{left:679.140000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.v1_c00335{vertical-align:13.440000pt;}
.v2_c00335{vertical-align:26.560533pt;}
.lsf_c00335{letter-spacing:-1.285633pt;}
.lse_c00335{letter-spacing:-0.971040pt;}
.lsd_c00335{letter-spacing:-0.965328pt;}
.ls10_c00335{letter-spacing:-0.400717pt;}
.ls9_c00335{letter-spacing:-0.134400pt;}
.ls13_c00335{letter-spacing:-0.042752pt;}
.ls15_c00335{letter-spacing:-0.038400pt;}
.ls12_c00335{letter-spacing:-0.032064pt;}
.ls17_c00335{letter-spacing:-0.032000pt;}
.ls16_c00335{letter-spacing:-0.025600pt;}
.ls14_c00335{letter-spacing:-0.019200pt;}
.lsc_c00335{letter-spacing:-0.012800pt;}
.lsa_c00335{letter-spacing:-0.006400pt;}
.ls8_c00335{letter-spacing:0.000000pt;}
.ls6_c00335{letter-spacing:0.006400pt;}
.ls1_c00335{letter-spacing:0.012800pt;}
.ls7_c00335{letter-spacing:0.025536pt;}
.ls4_c00335{letter-spacing:0.025600pt;}
.ls0_c00335{letter-spacing:0.032064pt;}
.ls5_c00335{letter-spacing:0.048672pt;}
.lsb_c00335{letter-spacing:0.083200pt;}
.ls2_c00335{letter-spacing:0.120960pt;}
.ls11_c00335{letter-spacing:0.555160pt;}
.ls3_c00335{letter-spacing:0.918309pt;}
.ws1_c00335{word-spacing:-12.159250pt;}
.ws2_c00335{word-spacing:-9.408672pt;}
.ws0_c00335{word-spacing:-8.760960pt;}
.wsd_c00335{word-spacing:-1.402509pt;}
.ws3_c00335{word-spacing:-0.272544pt;}
.wsf_c00335{word-spacing:-0.083483pt;}
.ws25_c00335{word-spacing:-0.012768pt;}
.ws24_c00335{word-spacing:-0.008512pt;}
.wsc_c00335{word-spacing:-0.006400pt;}
.ws4_c00335{word-spacing:0.000000pt;}
.ws7_c00335{word-spacing:0.006400pt;}
.ws10_c00335{word-spacing:0.112224pt;}
.ws1b_c00335{word-spacing:0.115200pt;}
.ws11_c00335{word-spacing:0.122912pt;}
.wse_c00335{word-spacing:0.801434pt;}
.ws18_c00335{word-spacing:1.267200pt;}
.ws19_c00335{word-spacing:1.292800pt;}
.wsb_c00335{word-spacing:2.566400pt;}
.ws23_c00335{word-spacing:2.873600pt;}
.wsa_c00335{word-spacing:2.918400pt;}
.ws22_c00335{word-spacing:2.969600pt;}
.ws16_c00335{word-spacing:3.891200pt;}
.ws17_c00335{word-spacing:3.929600pt;}
.ws8_c00335{word-spacing:4.064000pt;}
.ws9_c00335{word-spacing:4.096000pt;}
.ws1e_c00335{word-spacing:5.145600pt;}
.ws12_c00335{word-spacing:5.446400pt;}
.ws13_c00335{word-spacing:5.561600pt;}
.ws1c_c00335{word-spacing:9.241600pt;}
.ws1a_c00335{word-spacing:10.259200pt;}
.ws1d_c00335{word-spacing:10.572800pt;}
.ws14_c00335{word-spacing:11.174400pt;}
.ws15_c00335{word-spacing:11.251200pt;}
.ws5_c00335{word-spacing:14.982400pt;}
.ws6_c00335{word-spacing:15.046400pt;}
.ws1f_c00335{word-spacing:22.483200pt;}
.ws20_c00335{word-spacing:22.521600pt;}
.ws21_c00335{word-spacing:26.227200pt;}
._2_c00335{margin-left:-2.806499pt;}
._0_c00335{margin-left:-0.908480pt;}
._1_c00335{width:1.024000pt;}
._3_c00335{width:2.690979pt;}
.fs3_c00335{font-size:34.560000pt;}
.fs6_c00335{font-size:37.440000pt;}
.fs5_c00335{font-size:41.741333pt;}
.fs7_c00335{font-size:42.560000pt;}
.fs2_c00335{font-size:48.000000pt;}
.fs0_c00335{font-size:53.440000pt;}
.fs4_c00335{font-size:57.120000pt;}
.fs1_c00335{font-size:64.000000pt;}
.y0_c00335{bottom:0.000000pt;}
.y3_c00335{bottom:51.067067pt;}
.y4_c00335{bottom:54.587067pt;}
.y28_c00335{bottom:101.068667pt;}
.y27_c00335{bottom:117.390427pt;}
.y26_c00335{bottom:133.627067pt;}
.y25_c00335{bottom:147.147067pt;}
.y24_c00335{bottom:165.547067pt;}
.y23_c00335{bottom:183.947067pt;}
.y22_c00335{bottom:213.147067pt;}
.y21_c00335{bottom:243.787067pt;}
.y20_c00335{bottom:274.347067pt;}
.y1f_c00335{bottom:304.987067pt;}
.y1e_c00335{bottom:335.547067pt;}
.y1d_c00335{bottom:366.187067pt;}
.y1c_c00335{bottom:396.747067pt;}
.y1b_c00335{bottom:427.387067pt;}
.y1a_c00335{bottom:457.947067pt;}
.y19_c00335{bottom:488.587067pt;}
.y18_c00335{bottom:519.147067pt;}
.y17_c00335{bottom:549.787067pt;}
.y16_c00335{bottom:580.347067pt;}
.y15_c00335{bottom:613.707067pt;}
.y14_c00335{bottom:629.387067pt;}
.y13_c00335{bottom:643.147067pt;}
.yc_c00335{bottom:653.869947pt;}
.y12_c00335{bottom:705.707067pt;}
.y11_c00335{bottom:728.747067pt;}
.yb_c00335{bottom:746.747067pt;}
.y10_c00335{bottom:752.347067pt;}
.yd_c00335{bottom:766.510587pt;}
.yf_c00335{bottom:775.947067pt;}
.ye_c00335{bottom:823.630587pt;}
.ya_c00335{bottom:861.387067pt;}
.y9_c00335{bottom:891.947067pt;}
.y8_c00335{bottom:922.587067pt;}
.y7_c00335{bottom:953.147067pt;}
.y6_c00335{bottom:983.787067pt;}
.y5_c00335{bottom:1014.347067pt;}
.y2_c00335{bottom:1043.387067pt;}
.y1_c00335{bottom:1063.867067pt;}
.h2_c00335{height:42.656250pt;}
.h6_c00335{height:43.534906pt;}
.h8_c00335{height:44.388750pt;}
.h1_c00335{height:44.724687pt;}
.h3_c00335{height:50.062500pt;}
.h4_c00335{height:53.562500pt;}
.h7_c00335{height:57.894596pt;}
.h5_c00335{height:59.574375pt;}
.h0_c00335{height:1122.666667pt;}
.w1_c00335{width:793.333333pt;}
.w0_c00335{width:793.626667pt;}
.x0_c00335{left:0.000000pt;}
.x2_c00335{left:113.440000pt;}
.x5_c00335{left:160.720000pt;}
.xb_c00335{left:164.800000pt;}
.x8_c00335{left:198.472387pt;}
.x7_c00335{left:236.638910pt;}
.x9_c00335{left:264.875230pt;}
.x6_c00335{left:382.800000pt;}
.x4_c00335{left:386.880000pt;}
.x3_c00335{left:396.880000pt;}
.x1_c00335{left:436.240000pt;}
.xa_c00335{left:603.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_256236f54b09e91258ad6b30.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.100098;font-style:normal;font-weight:normal;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_94d857beb27120141f3a7258.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;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_c00336;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00336;src:url('chunks/assets/font_02d66f898a8737cc00156281.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00336;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00336{font-family:ff5_c00336;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_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;}
.v1_c00336{vertical-align:15.840000px;}
.v2_c00336{vertical-align:29.880000px;}
.lsb_c00336{letter-spacing:-0.151200px;}
.lsd_c00336{letter-spacing:-0.054684px;}
.ls15_c00336{letter-spacing:-0.046872px;}
.ls13_c00336{letter-spacing:-0.043200px;}
.lsc_c00336{letter-spacing:-0.039060px;}
.ls16_c00336{letter-spacing:-0.028800px;}
.ls10_c00336{letter-spacing:-0.021600px;}
.ls14_c00336{letter-spacing:-0.015624px;}
.lsf_c00336{letter-spacing:-0.014400px;}
.lse_c00336{letter-spacing:-0.007200px;}
.lsa_c00336{letter-spacing:0.000000px;}
.ls4_c00336{letter-spacing:0.007200px;}
.ls6_c00336{letter-spacing:0.014400px;}
.ls8_c00336{letter-spacing:0.021600px;}
.ls9_c00336{letter-spacing:0.028728px;}
.ls12_c00336{letter-spacing:0.028800px;}
.ls2_c00336{letter-spacing:0.031248px;}
.ls0_c00336{letter-spacing:0.048096px;}
.ls5_c00336{letter-spacing:0.054756px;}
.ls11_c00336{letter-spacing:0.093600px;}
.ls3_c00336{letter-spacing:26.560800px;}
.ls7_c00336{letter-spacing:34.450920px;}
.ls1_c00336{letter-spacing:1212.120000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00336{word-spacing:-19.561248px;}
.ws2_c00336{word-spacing:-19.514376px;}
.ws1_c00336{word-spacing:-10.584756px;}
.ws1e_c00336{word-spacing:-0.140616px;}
.ws5_c00336{word-spacing:-0.124992px;}
.wsd_c00336{word-spacing:-0.086400px;}
.ws1f_c00336{word-spacing:-0.046872px;}
.ws6_c00336{word-spacing:-0.039060px;}
.ws2a_c00336{word-spacing:-0.014364px;}
.ws29_c00336{word-spacing:-0.009576px;}
.wsc_c00336{word-spacing:-0.007200px;}
.ws4_c00336{word-spacing:0.000000px;}
.ws1d_c00336{word-spacing:0.007200px;}
.ws3_c00336{word-spacing:0.042084px;}
.ws1c_c00336{word-spacing:0.086400px;}
.wsb_c00336{word-spacing:1.490400px;}
.wsa_c00336{word-spacing:1.555200px;}
.wse_c00336{word-spacing:1.800000px;}
.wsf_c00336{word-spacing:1.814400px;}
.ws7_c00336{word-spacing:2.520000px;}
.ws27_c00336{word-spacing:3.952800px;}
.ws28_c00336{word-spacing:4.017600px;}
.ws23_c00336{word-spacing:5.392800px;}
.ws22_c00336{word-spacing:5.464800px;}
.ws16_c00336{word-spacing:5.745600px;}
.ws15_c00336{word-spacing:5.767200px;}
.ws14_c00336{word-spacing:5.817600px;}
.ws26_c00336{word-spacing:6.112800px;}
.ws17_c00336{word-spacing:7.552800px;}
.ws18_c00336{word-spacing:7.596000px;}
.ws8_c00336{word-spacing:7.948800px;}
.ws1a_c00336{word-spacing:9.000000px;}
.ws1b_c00336{word-spacing:9.014400px;}
.ws25_c00336{word-spacing:9.727200px;}
.ws12_c00336{word-spacing:11.520000px;}
.ws13_c00336{word-spacing:11.534400px;}
.ws24_c00336{word-spacing:14.788800px;}
.ws20_c00336{word-spacing:16.135200px;}
.ws21_c00336{word-spacing:16.243200px;}
.ws9_c00336{word-spacing:20.174400px;}
.ws11_c00336{word-spacing:22.651200px;}
.ws10_c00336{word-spacing:22.730400px;}
.ws19_c00336{word-spacing:25.214400px;}
._0_c00336{margin-left:-1.322640px;}
._1_c00336{width:1.080000px;}
.fc0_c00336{color:rgb(0,0,0);}
.fs4_c00336{font-size:42.120000px;}
.fs5_c00336{font-size:47.880000px;}
.fs1_c00336{font-size:54.000000px;}
.fs0_c00336{font-size:60.120000px;}
.fs2_c00336{font-size:72.000000px;}
.fs3_c00336{font-size:78.120000px;}
.y0_c00336{bottom:0.000000px;}
.y3_c00336{bottom:57.450450px;}
.y21_c00336{bottom:113.702250px;}
.y20_c00336{bottom:132.064230px;}
.y1f_c00336{bottom:150.330450px;}
.y1e_c00336{bottom:165.540450px;}
.y1d_c00336{bottom:186.240450px;}
.y1c_c00336{bottom:206.940600px;}
.y1b_c00336{bottom:316.650600px;}
.y1a_c00336{bottom:351.120600px;}
.y19_c00336{bottom:385.500600px;}
.y18_c00336{bottom:419.970600px;}
.y17_c00336{bottom:454.350600px;}
.y16_c00336{bottom:488.820600px;}
.y15_c00336{bottom:523.200600px;}
.y14_c00336{bottom:559.200450px;}
.y13_c00336{bottom:612.930450px;}
.y12_c00336{bottom:647.310450px;}
.y11_c00336{bottom:681.780450px;}
.y10_c00336{bottom:716.160450px;}
.yf_c00336{bottom:750.630450px;}
.ye_c00336{bottom:785.010450px;}
.yd_c00336{bottom:819.480450px;}
.yc_c00336{bottom:853.860450px;}
.yb_c00336{bottom:888.330450px;}
.ya_c00336{bottom:922.710450px;}
.y9_c00336{bottom:957.180450px;}
.y8_c00336{bottom:991.560450px;}
.y7_c00336{bottom:1026.030450px;}
.y6_c00336{bottom:1060.410450px;}
.y5_c00336{bottom:1094.880450px;}
.y4_c00336{bottom:1139.880450px;}
.y2_c00336{bottom:1177.860450px;}
.y1_c00336{bottom:1196.850450px;}
.h8_c00336{height:47.988281px;}
.h9_c00336{height:49.937344px;}
.h1_c00336{height:50.315273px;}
.h2_c00336{height:56.320312px;}
.h5_c00336{height:60.257812px;}
.h7_c00336{height:65.130220px;}
.h6_c00336{height:65.130820px;}
.h3_c00336{height:72.160312px;}
.h4_c00336{height:81.476719px;}
.h0_c00336{height:1263.000000px;}
.w1_c00336{width:892.500000px;}
.w0_c00336{width:892.830000px;}
.x0_c00336{left:0.000000px;}
.x1_c00336{left:127.620000px;}
.x2_c00336{left:180.810000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.v1_c00336{vertical-align:14.080000pt;}
.v2_c00336{vertical-align:26.560000pt;}
.lsb_c00336{letter-spacing:-0.134400pt;}
.lsd_c00336{letter-spacing:-0.048608pt;}
.ls15_c00336{letter-spacing:-0.041664pt;}
.ls13_c00336{letter-spacing:-0.038400pt;}
.lsc_c00336{letter-spacing:-0.034720pt;}
.ls16_c00336{letter-spacing:-0.025600pt;}
.ls10_c00336{letter-spacing:-0.019200pt;}
.ls14_c00336{letter-spacing:-0.013888pt;}
.lsf_c00336{letter-spacing:-0.012800pt;}
.lse_c00336{letter-spacing:-0.006400pt;}
.lsa_c00336{letter-spacing:0.000000pt;}
.ls4_c00336{letter-spacing:0.006400pt;}
.ls6_c00336{letter-spacing:0.012800pt;}
.ls8_c00336{letter-spacing:0.019200pt;}
.ls9_c00336{letter-spacing:0.025536pt;}
.ls12_c00336{letter-spacing:0.025600pt;}
.ls2_c00336{letter-spacing:0.027776pt;}
.ls0_c00336{letter-spacing:0.042752pt;}
.ls5_c00336{letter-spacing:0.048672pt;}
.ls11_c00336{letter-spacing:0.083200pt;}
.ls3_c00336{letter-spacing:23.609600pt;}
.ls7_c00336{letter-spacing:30.623040pt;}
.ls1_c00336{letter-spacing:1077.440000pt;}
.ws0_c00336{word-spacing:-17.387776pt;}
.ws2_c00336{word-spacing:-17.346112pt;}
.ws1_c00336{word-spacing:-9.408672pt;}
.ws1e_c00336{word-spacing:-0.124992pt;}
.ws5_c00336{word-spacing:-0.111104pt;}
.wsd_c00336{word-spacing:-0.076800pt;}
.ws1f_c00336{word-spacing:-0.041664pt;}
.ws6_c00336{word-spacing:-0.034720pt;}
.ws2a_c00336{word-spacing:-0.012768pt;}
.ws29_c00336{word-spacing:-0.008512pt;}
.wsc_c00336{word-spacing:-0.006400pt;}
.ws4_c00336{word-spacing:0.000000pt;}
.ws1d_c00336{word-spacing:0.006400pt;}
.ws3_c00336{word-spacing:0.037408pt;}
.ws1c_c00336{word-spacing:0.076800pt;}
.wsb_c00336{word-spacing:1.324800pt;}
.wsa_c00336{word-spacing:1.382400pt;}
.wse_c00336{word-spacing:1.600000pt;}
.wsf_c00336{word-spacing:1.612800pt;}
.ws7_c00336{word-spacing:2.240000pt;}
.ws27_c00336{word-spacing:3.513600pt;}
.ws28_c00336{word-spacing:3.571200pt;}
.ws23_c00336{word-spacing:4.793600pt;}
.ws22_c00336{word-spacing:4.857600pt;}
.ws16_c00336{word-spacing:5.107200pt;}
.ws15_c00336{word-spacing:5.126400pt;}
.ws14_c00336{word-spacing:5.171200pt;}
.ws26_c00336{word-spacing:5.433600pt;}
.ws17_c00336{word-spacing:6.713600pt;}
.ws18_c00336{word-spacing:6.752000pt;}
.ws8_c00336{word-spacing:7.065600pt;}
.ws1a_c00336{word-spacing:8.000000pt;}
.ws1b_c00336{word-spacing:8.012800pt;}
.ws25_c00336{word-spacing:8.646400pt;}
.ws12_c00336{word-spacing:10.240000pt;}
.ws13_c00336{word-spacing:10.252800pt;}
.ws24_c00336{word-spacing:13.145600pt;}
.ws20_c00336{word-spacing:14.342400pt;}
.ws21_c00336{word-spacing:14.438400pt;}
.ws9_c00336{word-spacing:17.932800pt;}
.ws11_c00336{word-spacing:20.134400pt;}
.ws10_c00336{word-spacing:20.204800pt;}
.ws19_c00336{word-spacing:22.412800pt;}
._0_c00336{margin-left:-1.175680pt;}
._1_c00336{width:0.960000pt;}
.fs4_c00336{font-size:37.440000pt;}
.fs5_c00336{font-size:42.560000pt;}
.fs1_c00336{font-size:48.000000pt;}
.fs0_c00336{font-size:53.440000pt;}
.fs2_c00336{font-size:64.000000pt;}
.fs3_c00336{font-size:69.440000pt;}
.y0_c00336{bottom:0.000000pt;}
.y3_c00336{bottom:51.067067pt;}
.y21_c00336{bottom:101.068667pt;}
.y20_c00336{bottom:117.390427pt;}
.y1f_c00336{bottom:133.627067pt;}
.y1e_c00336{bottom:147.147067pt;}
.y1d_c00336{bottom:165.547067pt;}
.y1c_c00336{bottom:183.947200pt;}
.y1b_c00336{bottom:281.467200pt;}
.y1a_c00336{bottom:312.107200pt;}
.y19_c00336{bottom:342.667200pt;}
.y18_c00336{bottom:373.307200pt;}
.y17_c00336{bottom:403.867200pt;}
.y16_c00336{bottom:434.507200pt;}
.y15_c00336{bottom:465.067200pt;}
.y14_c00336{bottom:497.067067pt;}
.y13_c00336{bottom:544.827067pt;}
.y12_c00336{bottom:575.387067pt;}
.y11_c00336{bottom:606.027067pt;}
.y10_c00336{bottom:636.587067pt;}
.yf_c00336{bottom:667.227067pt;}
.ye_c00336{bottom:697.787067pt;}
.yd_c00336{bottom:728.427067pt;}
.yc_c00336{bottom:758.987067pt;}
.yb_c00336{bottom:789.627067pt;}
.ya_c00336{bottom:820.187067pt;}
.y9_c00336{bottom:850.827067pt;}
.y8_c00336{bottom:881.387067pt;}
.y7_c00336{bottom:912.027067pt;}
.y6_c00336{bottom:942.587067pt;}
.y5_c00336{bottom:973.227067pt;}
.y4_c00336{bottom:1013.227067pt;}
.y2_c00336{bottom:1046.987067pt;}
.y1_c00336{bottom:1063.867067pt;}
.h8_c00336{height:42.656250pt;}
.h9_c00336{height:44.388750pt;}
.h1_c00336{height:44.724687pt;}
.h2_c00336{height:50.062500pt;}
.h5_c00336{height:53.562500pt;}
.h7_c00336{height:57.893529pt;}
.h6_c00336{height:57.894063pt;}
.h3_c00336{height:64.142500pt;}
.h4_c00336{height:72.423750pt;}
.h0_c00336{height:1122.666667pt;}
.w1_c00336{width:793.333333pt;}
.w0_c00336{width:793.626667pt;}
.x0_c00336{left:0.000000pt;}
.x1_c00336{left:113.440000pt;}
.x2_c00336{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_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_74fa2d4fd3b50340fbe43446.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00337;src:url('chunks/assets/font_c2408d93ee7871ffd70a36ea.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00337;src:url('chunks/assets/font_70a93908cb1127ef59d5bec6.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;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_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;}
.v1_c00337{vertical-align:29.880000px;}
.lsc_c00337{letter-spacing:-0.151200px;}
.ls13_c00337{letter-spacing:-0.043200px;}
.ls12_c00337{letter-spacing:-0.028800px;}
.lsf_c00337{letter-spacing:-0.021600px;}
.ls15_c00337{letter-spacing:-0.019440px;}
.lse_c00337{letter-spacing:-0.014400px;}
.ls14_c00337{letter-spacing:-0.011664px;}
.lsd_c00337{letter-spacing:-0.007200px;}
.lsb_c00337{letter-spacing:0.000000px;}
.ls2_c00337{letter-spacing:0.007200px;}
.ls16_c00337{letter-spacing:0.009576px;}
.ls7_c00337{letter-spacing:0.014364px;}
.ls4_c00337{letter-spacing:0.014400px;}
.ls3_c00337{letter-spacing:0.021600px;}
.lsa_c00337{letter-spacing:0.023940px;}
.ls6_c00337{letter-spacing:0.028728px;}
.ls5_c00337{letter-spacing:0.028800px;}
.ls0_c00337{letter-spacing:0.036072px;}
.ls9_c00337{letter-spacing:0.038304px;}
.ls1_c00337{letter-spacing:0.054756px;}
.ls11_c00337{letter-spacing:0.057600px;}
.ls10_c00337{letter-spacing:0.093600px;}
.ls8_c00337{letter-spacing:0.104040px;}
.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;}
}
.ws1_c00337{word-spacing:-17.978400px;}
.ws2_c00337{word-spacing:-17.956800px;}
.ws3_c00337{word-spacing:-10.789200px;}
.ws0_c00337{word-spacing:-10.584756px;}
.ws4_c00337{word-spacing:-0.306612px;}
.ws1b_c00337{word-spacing:-0.093600px;}
.ws12_c00337{word-spacing:-0.028800px;}
.ws27_c00337{word-spacing:-0.019152px;}
.ws24_c00337{word-spacing:-0.009576px;}
.ws28_c00337{word-spacing:-0.004788px;}
.ws5_c00337{word-spacing:0.000000px;}
.ws25_c00337{word-spacing:0.004788px;}
.wsd_c00337{word-spacing:0.007200px;}
.ws26_c00337{word-spacing:0.009576px;}
.ws14_c00337{word-spacing:0.021600px;}
.ws11_c00337{word-spacing:0.028800px;}
.ws1c_c00337{word-spacing:0.072000px;}
.ws10_c00337{word-spacing:1.072800px;}
.wsf_c00337{word-spacing:1.101600px;}
.wsc_c00337{word-spacing:1.461600px;}
.ws22_c00337{word-spacing:2.160000px;}
.ws20_c00337{word-spacing:2.210400px;}
.ws23_c00337{word-spacing:2.282400px;}
.wsb_c00337{word-spacing:2.901600px;}
.ws9_c00337{word-spacing:3.909600px;}
.wsa_c00337{word-spacing:3.960000px;}
.ws7_c00337{word-spacing:5.032800px;}
.ws16_c00337{word-spacing:5.047200px;}
.ws6_c00337{word-spacing:5.126400px;}
.ws1f_c00337{word-spacing:5.342400px;}
.ws1d_c00337{word-spacing:5.378400px;}
.ws13_c00337{word-spacing:5.443200px;}
.ws1e_c00337{word-spacing:5.500800px;}
.ws17_c00337{word-spacing:6.847200px;}
.wse_c00337{word-spacing:8.301600px;}
.ws15_c00337{word-spacing:9.748800px;}
.ws18_c00337{word-spacing:10.461600px;}
.ws8_c00337{word-spacing:11.894400px;}
.ws19_c00337{word-spacing:12.614400px;}
.ws1a_c00337{word-spacing:12.621600px;}
.ws21_c00337{word-spacing:14.803200px;}
._0_c00337{margin-left:-1.022040px;}
._1_c00337{width:1.355292px;}
.fc0_c00337{color:rgb(0,0,0);}
.fs5_c00337{font-size:38.880000px;}
.fs3_c00337{font-size:42.120000px;}
.fs4_c00337{font-size:47.880000px;}
.fs2_c00337{font-size:54.000000px;}
.fs0_c00337{font-size:60.120000px;}
.fs1_c00337{font-size:72.000000px;}
.y0_c00337{bottom:0.000000px;}
.y3_c00337{bottom:57.450450px;}
.y4_c00337{bottom:61.410450px;}
.y26_c00337{bottom:113.698470px;}
.y25_c00337{bottom:132.064230px;}
.y24_c00337{bottom:150.334230px;}
.y23_c00337{bottom:168.602250px;}
.y22_c00337{bottom:186.964230px;}
.y21_c00337{bottom:205.234230px;}
.y20_c00337{bottom:223.500450px;}
.y1f_c00337{bottom:238.710450px;}
.y1e_c00337{bottom:259.410450px;}
.y1d_c00337{bottom:280.110450px;}
.y1c_c00337{bottom:349.410450px;}
.y1b_c00337{bottom:383.790450px;}
.y1a_c00337{bottom:418.260450px;}
.y19_c00337{bottom:452.640450px;}
.y18_c00337{bottom:487.110450px;}
.y17_c00337{bottom:521.490450px;}
.y16_c00337{bottom:555.960450px;}
.y15_c00337{bottom:590.340450px;}
.y14_c00337{bottom:624.810450px;}
.y13_c00337{bottom:659.190450px;}
.y12_c00337{bottom:693.660450px;}
.y11_c00337{bottom:728.040450px;}
.y10_c00337{bottom:762.510450px;}
.yf_c00337{bottom:796.890450px;}
.ye_c00337{bottom:831.360450px;}
.yd_c00337{bottom:865.740450px;}
.yc_c00337{bottom:900.210450px;}
.yb_c00337{bottom:934.590450px;}
.ya_c00337{bottom:969.060450px;}
.y9_c00337{bottom:1003.440450px;}
.y8_c00337{bottom:1037.910450px;}
.y7_c00337{bottom:1072.290450px;}
.y6_c00337{bottom:1106.760450px;}
.y5_c00337{bottom:1141.140450px;}
.y2_c00337{bottom:1173.810450px;}
.y1_c00337{bottom:1196.850450px;}
.h2_c00337{height:47.988281px;}
.h6_c00337{height:49.937344px;}
.h1_c00337{height:50.315273px;}
.h3_c00337{height:56.320312px;}
.h5_c00337{height:60.257812px;}
.h4_c00337{height:65.130820px;}
.h0_c00337{height:1263.000000px;}
.w1_c00337{width:892.500000px;}
.w0_c00337{width:892.830000px;}
.x0_c00337{left:0.000000px;}
.x2_c00337{left:127.620000px;}
.x5_c00337{left:180.810000px;}
.x4_c00337{left:435.240000px;}
.x3_c00337{left:446.490000px;}
.x1_c00337{left:490.770000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.v1_c00337{vertical-align:26.560000pt;}
.lsc_c00337{letter-spacing:-0.134400pt;}
.ls13_c00337{letter-spacing:-0.038400pt;}
.ls12_c00337{letter-spacing:-0.025600pt;}
.lsf_c00337{letter-spacing:-0.019200pt;}
.ls15_c00337{letter-spacing:-0.017280pt;}
.lse_c00337{letter-spacing:-0.012800pt;}
.ls14_c00337{letter-spacing:-0.010368pt;}
.lsd_c00337{letter-spacing:-0.006400pt;}
.lsb_c00337{letter-spacing:0.000000pt;}
.ls2_c00337{letter-spacing:0.006400pt;}
.ls16_c00337{letter-spacing:0.008512pt;}
.ls7_c00337{letter-spacing:0.012768pt;}
.ls4_c00337{letter-spacing:0.012800pt;}
.ls3_c00337{letter-spacing:0.019200pt;}
.lsa_c00337{letter-spacing:0.021280pt;}
.ls6_c00337{letter-spacing:0.025536pt;}
.ls5_c00337{letter-spacing:0.025600pt;}
.ls0_c00337{letter-spacing:0.032064pt;}
.ls9_c00337{letter-spacing:0.034048pt;}
.ls1_c00337{letter-spacing:0.048672pt;}
.ls11_c00337{letter-spacing:0.051200pt;}
.ls10_c00337{letter-spacing:0.083200pt;}
.ls8_c00337{letter-spacing:0.092480pt;}
.ws1_c00337{word-spacing:-15.980800pt;}
.ws2_c00337{word-spacing:-15.961600pt;}
.ws3_c00337{word-spacing:-9.590400pt;}
.ws0_c00337{word-spacing:-9.408672pt;}
.ws4_c00337{word-spacing:-0.272544pt;}
.ws1b_c00337{word-spacing:-0.083200pt;}
.ws12_c00337{word-spacing:-0.025600pt;}
.ws27_c00337{word-spacing:-0.017024pt;}
.ws24_c00337{word-spacing:-0.008512pt;}
.ws28_c00337{word-spacing:-0.004256pt;}
.ws5_c00337{word-spacing:0.000000pt;}
.ws25_c00337{word-spacing:0.004256pt;}
.wsd_c00337{word-spacing:0.006400pt;}
.ws26_c00337{word-spacing:0.008512pt;}
.ws14_c00337{word-spacing:0.019200pt;}
.ws11_c00337{word-spacing:0.025600pt;}
.ws1c_c00337{word-spacing:0.064000pt;}
.ws10_c00337{word-spacing:0.953600pt;}
.wsf_c00337{word-spacing:0.979200pt;}
.wsc_c00337{word-spacing:1.299200pt;}
.ws22_c00337{word-spacing:1.920000pt;}
.ws20_c00337{word-spacing:1.964800pt;}
.ws23_c00337{word-spacing:2.028800pt;}
.wsb_c00337{word-spacing:2.579200pt;}
.ws9_c00337{word-spacing:3.475200pt;}
.wsa_c00337{word-spacing:3.520000pt;}
.ws7_c00337{word-spacing:4.473600pt;}
.ws16_c00337{word-spacing:4.486400pt;}
.ws6_c00337{word-spacing:4.556800pt;}
.ws1f_c00337{word-spacing:4.748800pt;}
.ws1d_c00337{word-spacing:4.780800pt;}
.ws13_c00337{word-spacing:4.838400pt;}
.ws1e_c00337{word-spacing:4.889600pt;}
.ws17_c00337{word-spacing:6.086400pt;}
.wse_c00337{word-spacing:7.379200pt;}
.ws15_c00337{word-spacing:8.665600pt;}
.ws18_c00337{word-spacing:9.299200pt;}
.ws8_c00337{word-spacing:10.572800pt;}
.ws19_c00337{word-spacing:11.212800pt;}
.ws1a_c00337{word-spacing:11.219200pt;}
.ws21_c00337{word-spacing:13.158400pt;}
._0_c00337{margin-left:-0.908480pt;}
._1_c00337{width:1.204704pt;}
.fs5_c00337{font-size:34.560000pt;}
.fs3_c00337{font-size:37.440000pt;}
.fs4_c00337{font-size:42.560000pt;}
.fs2_c00337{font-size:48.000000pt;}
.fs0_c00337{font-size:53.440000pt;}
.fs1_c00337{font-size:64.000000pt;}
.y0_c00337{bottom:0.000000pt;}
.y3_c00337{bottom:51.067067pt;}
.y4_c00337{bottom:54.587067pt;}
.y26_c00337{bottom:101.065307pt;}
.y25_c00337{bottom:117.390427pt;}
.y24_c00337{bottom:133.630427pt;}
.y23_c00337{bottom:149.868667pt;}
.y22_c00337{bottom:166.190427pt;}
.y21_c00337{bottom:182.430427pt;}
.y20_c00337{bottom:198.667067pt;}
.y1f_c00337{bottom:212.187067pt;}
.y1e_c00337{bottom:230.587067pt;}
.y1d_c00337{bottom:248.987067pt;}
.y1c_c00337{bottom:310.587067pt;}
.y1b_c00337{bottom:341.147067pt;}
.y1a_c00337{bottom:371.787067pt;}
.y19_c00337{bottom:402.347067pt;}
.y18_c00337{bottom:432.987067pt;}
.y17_c00337{bottom:463.547067pt;}
.y16_c00337{bottom:494.187067pt;}
.y15_c00337{bottom:524.747067pt;}
.y14_c00337{bottom:555.387067pt;}
.y13_c00337{bottom:585.947067pt;}
.y12_c00337{bottom:616.587067pt;}
.y11_c00337{bottom:647.147067pt;}
.y10_c00337{bottom:677.787067pt;}
.yf_c00337{bottom:708.347067pt;}
.ye_c00337{bottom:738.987067pt;}
.yd_c00337{bottom:769.547067pt;}
.yc_c00337{bottom:800.187067pt;}
.yb_c00337{bottom:830.747067pt;}
.ya_c00337{bottom:861.387067pt;}
.y9_c00337{bottom:891.947067pt;}
.y8_c00337{bottom:922.587067pt;}
.y7_c00337{bottom:953.147067pt;}
.y6_c00337{bottom:983.787067pt;}
.y5_c00337{bottom:1014.347067pt;}
.y2_c00337{bottom:1043.387067pt;}
.y1_c00337{bottom:1063.867067pt;}
.h2_c00337{height:42.656250pt;}
.h6_c00337{height:44.388750pt;}
.h1_c00337{height:44.724687pt;}
.h3_c00337{height:50.062500pt;}
.h5_c00337{height:53.562500pt;}
.h4_c00337{height:57.894063pt;}
.h0_c00337{height:1122.666667pt;}
.w1_c00337{width:793.333333pt;}
.w0_c00337{width:793.626667pt;}
.x0_c00337{left:0.000000pt;}
.x2_c00337{left:113.440000pt;}
.x5_c00337{left:160.720000pt;}
.x4_c00337{left:386.880000pt;}
.x3_c00337{left:396.880000pt;}
.x1_c00337{left:436.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_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_78252972d8f11e5bea955a06.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.100098;font-style:normal;font-weight:normal;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_9aa849763f524eaf56afd513.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;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_c00338;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00338;src:url('chunks/assets/font_5d6774b268e53ca9fe6059b1.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00338;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;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_c00338;src:url('chunks/assets/font_70a93908cb1127ef59d5bec6.woff2')format("woff");}.ff6_c00338{font-family:ff6_c00338;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_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;}
.v1_c00338{vertical-align:15.840000px;}
.v2_c00338{vertical-align:29.880000px;}
.ls15_c00338{letter-spacing:-0.151200px;}
.ls1b_c00338{letter-spacing:-0.054684px;}
.ls1c_c00338{letter-spacing:-0.043200px;}
.ls19_c00338{letter-spacing:-0.036000px;}
.ls1d_c00338{letter-spacing:-0.028800px;}
.ls18_c00338{letter-spacing:-0.021600px;}
.ls1f_c00338{letter-spacing:-0.019440px;}
.ls16_c00338{letter-spacing:-0.014400px;}
.ls1e_c00338{letter-spacing:-0.011664px;}
.ls17_c00338{letter-spacing:-0.007200px;}
.ls14_c00338{letter-spacing:0.000000px;}
.lsc_c00338{letter-spacing:0.007200px;}
.ls3_c00338{letter-spacing:0.007812px;}
.ls20_c00338{letter-spacing:0.009576px;}
.lsf_c00338{letter-spacing:0.014364px;}
.ls7_c00338{letter-spacing:0.014400px;}
.ls5_c00338{letter-spacing:0.021600px;}
.ls13_c00338{letter-spacing:0.023940px;}
.ls12_c00338{letter-spacing:0.028728px;}
.ls6_c00338{letter-spacing:0.028800px;}
.ls1a_c00338{letter-spacing:0.036000px;}
.ls11_c00338{letter-spacing:0.038304px;}
.lse_c00338{letter-spacing:0.043200px;}
.ls0_c00338{letter-spacing:0.048096px;}
.ls2_c00338{letter-spacing:0.054756px;}
.lsa_c00338{letter-spacing:0.072000px;}
.lsd_c00338{letter-spacing:0.093600px;}
.ls10_c00338{letter-spacing:0.104040px;}
.ls8_c00338{letter-spacing:0.144000px;}
.lsb_c00338{letter-spacing:10.800000px;}
.ls4_c00338{letter-spacing:28.670040px;}
.ls9_c00338{letter-spacing:66.024000px;}
.ls1_c00338{letter-spacing:1212.120000px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00338{word-spacing:-19.537812px;}
.ws4_c00338{word-spacing:-18.093600px;}
.ws3_c00338{word-spacing:-18.000000px;}
.ws2_c00338{word-spacing:-17.956800px;}
.ws5_c00338{word-spacing:-10.789200px;}
.ws0_c00338{word-spacing:-10.584756px;}
.ws11_c00338{word-spacing:-0.109368px;}
.ws18_c00338{word-spacing:-0.093600px;}
.ws12_c00338{word-spacing:-0.039060px;}
.ws14_c00338{word-spacing:-0.036000px;}
.ws13_c00338{word-spacing:-0.021600px;}
.ws2d_c00338{word-spacing:-0.019152px;}
.ws2f_c00338{word-spacing:-0.014364px;}
.ws22_c00338{word-spacing:-0.007200px;}
.ws30_c00338{word-spacing:-0.004788px;}
.ws7_c00338{word-spacing:0.000000px;}
.ws2b_c00338{word-spacing:0.004788px;}
.ws1a_c00338{word-spacing:0.007200px;}
.ws2c_c00338{word-spacing:0.009576px;}
.ws10_c00338{word-spacing:0.021600px;}
.ws6_c00338{word-spacing:0.042084px;}
.ws2e_c00338{word-spacing:1.426824px;}
.ws2a_c00338{word-spacing:1.756800px;}
.ws28_c00338{word-spacing:1.807200px;}
.ws29_c00338{word-spacing:1.900800px;}
.ws23_c00338{word-spacing:2.527200px;}
.ws24_c00338{word-spacing:2.606400px;}
.ws1f_c00338{word-spacing:3.240000px;}
.wsd_c00338{word-spacing:4.248000px;}
.wsc_c00338{word-spacing:4.356000px;}
.ws8_c00338{word-spacing:4.363200px;}
.ws17_c00338{word-spacing:6.494400px;}
.ws15_c00338{word-spacing:6.811200px;}
.ws16_c00338{word-spacing:6.825600px;}
.wsb_c00338{word-spacing:8.661600px;}
.ws26_c00338{word-spacing:9.712800px;}
.ws25_c00338{word-spacing:9.784800px;}
.ws1e_c00338{word-spacing:10.807200px;}
.ws1d_c00338{word-spacing:10.836000px;}
.ws27_c00338{word-spacing:11.217600px;}
.wsa_c00338{word-spacing:12.621600px;}
.ws9_c00338{word-spacing:12.664800px;}
.wsf_c00338{word-spacing:12.924000px;}
.wse_c00338{word-spacing:12.967200px;}
.ws20_c00338{word-spacing:14.760000px;}
.ws21_c00338{word-spacing:14.774400px;}
.ws19_c00338{word-spacing:15.134400px;}
.ws1c_c00338{word-spacing:29.901600px;}
.ws1b_c00338{word-spacing:29.908800px;}
._0_c00338{margin-left:-1.322640px;}
._1_c00338{width:1.224000px;}
._2_c00338{width:29.491200px;}
.fc0_c00338{color:rgb(0,0,0);}
.fs6_c00338{font-size:38.880000px;}
.fs3_c00338{font-size:42.120000px;}
.fs5_c00338{font-size:47.880000px;}
.fs1_c00338{font-size:54.000000px;}
.fs0_c00338{font-size:60.120000px;}
.fs2_c00338{font-size:72.000000px;}
.fs4_c00338{font-size:78.120000px;}
.y0_c00338{bottom:0.000000px;}
.y3_c00338{bottom:57.450450px;}
.y25_c00338{bottom:113.172480px;}
.y24_c00338{bottom:131.438700px;}
.y23_c00338{bottom:149.704920px;}
.y22_c00338{bottom:163.566180px;}
.y21_c00338{bottom:181.832400px;}
.y20_c00338{bottom:200.098620px;}
.y1f_c00338{bottom:218.460600px;}
.y1e_c00338{bottom:233.670450px;}
.y1d_c00338{bottom:254.280450px;}
.y1c_c00338{bottom:274.980450px;}
.y1b_c00338{bottom:310.530450px;}
.y1a_c00338{bottom:344.910450px;}
.y19_c00338{bottom:379.380450px;}
.y18_c00338{bottom:413.760450px;}
.y17_c00338{bottom:448.230450px;}
.y16_c00338{bottom:482.610450px;}
.y15_c00338{bottom:517.080450px;}
.y14_c00338{bottom:551.460450px;}
.y13_c00338{bottom:585.930450px;}
.y12_c00338{bottom:620.310450px;}
.y11_c00338{bottom:654.780450px;}
.y10_c00338{bottom:707.160450px;}
.yf_c00338{bottom:741.630450px;}
.ye_c00338{bottom:776.010450px;}
.yd_c00338{bottom:810.480450px;}
.yc_c00338{bottom:844.860450px;}
.yb_c00338{bottom:879.330450px;}
.ya_c00338{bottom:915.330450px;}
.y9_c00338{bottom:969.060450px;}
.y8_c00338{bottom:1003.440450px;}
.y7_c00338{bottom:1037.910450px;}
.y6_c00338{bottom:1072.290450px;}
.y5_c00338{bottom:1106.760450px;}
.y4_c00338{bottom:1141.140450px;}
.y2_c00338{bottom:1177.860450px;}
.y1_c00338{bottom:1196.850450px;}
.ha_c00338{height:47.988281px;}
.hb_c00338{height:49.937344px;}
.h1_c00338{height:50.315273px;}
.h2_c00338{height:56.320312px;}
.h4_c00338{height:60.257812px;}
.h8_c00338{height:60.328125px;}
.h5_c00338{height:65.130820px;}
.h9_c00338{height:65.131420px;}
.h3_c00338{height:72.160312px;}
.h7_c00338{height:75.093750px;}
.h6_c00338{height:81.476719px;}
.h0_c00338{height:1263.000000px;}
.w1_c00338{width:892.500000px;}
.w0_c00338{width:892.830000px;}
.x0_c00338{left:0.000000px;}
.x1_c00338{left:127.620000px;}
.x3_c00338{left:154.440000px;}
.x2_c00338{left:180.810000px;}
.x4_c00338{left:207.090000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.v1_c00338{vertical-align:14.080000pt;}
.v2_c00338{vertical-align:26.560000pt;}
.ls15_c00338{letter-spacing:-0.134400pt;}
.ls1b_c00338{letter-spacing:-0.048608pt;}
.ls1c_c00338{letter-spacing:-0.038400pt;}
.ls19_c00338{letter-spacing:-0.032000pt;}
.ls1d_c00338{letter-spacing:-0.025600pt;}
.ls18_c00338{letter-spacing:-0.019200pt;}
.ls1f_c00338{letter-spacing:-0.017280pt;}
.ls16_c00338{letter-spacing:-0.012800pt;}
.ls1e_c00338{letter-spacing:-0.010368pt;}
.ls17_c00338{letter-spacing:-0.006400pt;}
.ls14_c00338{letter-spacing:0.000000pt;}
.lsc_c00338{letter-spacing:0.006400pt;}
.ls3_c00338{letter-spacing:0.006944pt;}
.ls20_c00338{letter-spacing:0.008512pt;}
.lsf_c00338{letter-spacing:0.012768pt;}
.ls7_c00338{letter-spacing:0.012800pt;}
.ls5_c00338{letter-spacing:0.019200pt;}
.ls13_c00338{letter-spacing:0.021280pt;}
.ls12_c00338{letter-spacing:0.025536pt;}
.ls6_c00338{letter-spacing:0.025600pt;}
.ls1a_c00338{letter-spacing:0.032000pt;}
.ls11_c00338{letter-spacing:0.034048pt;}
.lse_c00338{letter-spacing:0.038400pt;}
.ls0_c00338{letter-spacing:0.042752pt;}
.ls2_c00338{letter-spacing:0.048672pt;}
.lsa_c00338{letter-spacing:0.064000pt;}
.lsd_c00338{letter-spacing:0.083200pt;}
.ls10_c00338{letter-spacing:0.092480pt;}
.ls8_c00338{letter-spacing:0.128000pt;}
.lsb_c00338{letter-spacing:9.600000pt;}
.ls4_c00338{letter-spacing:25.484480pt;}
.ls9_c00338{letter-spacing:58.688000pt;}
.ls1_c00338{letter-spacing:1077.440000pt;}
.ws1_c00338{word-spacing:-17.366944pt;}
.ws4_c00338{word-spacing:-16.083200pt;}
.ws3_c00338{word-spacing:-16.000000pt;}
.ws2_c00338{word-spacing:-15.961600pt;}
.ws5_c00338{word-spacing:-9.590400pt;}
.ws0_c00338{word-spacing:-9.408672pt;}
.ws11_c00338{word-spacing:-0.097216pt;}
.ws18_c00338{word-spacing:-0.083200pt;}
.ws12_c00338{word-spacing:-0.034720pt;}
.ws14_c00338{word-spacing:-0.032000pt;}
.ws13_c00338{word-spacing:-0.019200pt;}
.ws2d_c00338{word-spacing:-0.017024pt;}
.ws2f_c00338{word-spacing:-0.012768pt;}
.ws22_c00338{word-spacing:-0.006400pt;}
.ws30_c00338{word-spacing:-0.004256pt;}
.ws7_c00338{word-spacing:0.000000pt;}
.ws2b_c00338{word-spacing:0.004256pt;}
.ws1a_c00338{word-spacing:0.006400pt;}
.ws2c_c00338{word-spacing:0.008512pt;}
.ws10_c00338{word-spacing:0.019200pt;}
.ws6_c00338{word-spacing:0.037408pt;}
.ws2e_c00338{word-spacing:1.268288pt;}
.ws2a_c00338{word-spacing:1.561600pt;}
.ws28_c00338{word-spacing:1.606400pt;}
.ws29_c00338{word-spacing:1.689600pt;}
.ws23_c00338{word-spacing:2.246400pt;}
.ws24_c00338{word-spacing:2.316800pt;}
.ws1f_c00338{word-spacing:2.880000pt;}
.wsd_c00338{word-spacing:3.776000pt;}
.wsc_c00338{word-spacing:3.872000pt;}
.ws8_c00338{word-spacing:3.878400pt;}
.ws17_c00338{word-spacing:5.772800pt;}
.ws15_c00338{word-spacing:6.054400pt;}
.ws16_c00338{word-spacing:6.067200pt;}
.wsb_c00338{word-spacing:7.699200pt;}
.ws26_c00338{word-spacing:8.633600pt;}
.ws25_c00338{word-spacing:8.697600pt;}
.ws1e_c00338{word-spacing:9.606400pt;}
.ws1d_c00338{word-spacing:9.632000pt;}
.ws27_c00338{word-spacing:9.971200pt;}
.wsa_c00338{word-spacing:11.219200pt;}
.ws9_c00338{word-spacing:11.257600pt;}
.wsf_c00338{word-spacing:11.488000pt;}
.wse_c00338{word-spacing:11.526400pt;}
.ws20_c00338{word-spacing:13.120000pt;}
.ws21_c00338{word-spacing:13.132800pt;}
.ws19_c00338{word-spacing:13.452800pt;}
.ws1c_c00338{word-spacing:26.579200pt;}
.ws1b_c00338{word-spacing:26.585600pt;}
._0_c00338{margin-left:-1.175680pt;}
._1_c00338{width:1.088000pt;}
._2_c00338{width:26.214400pt;}
.fs6_c00338{font-size:34.560000pt;}
.fs3_c00338{font-size:37.440000pt;}
.fs5_c00338{font-size:42.560000pt;}
.fs1_c00338{font-size:48.000000pt;}
.fs0_c00338{font-size:53.440000pt;}
.fs2_c00338{font-size:64.000000pt;}
.fs4_c00338{font-size:69.440000pt;}
.y0_c00338{bottom:0.000000pt;}
.y3_c00338{bottom:51.067067pt;}
.y25_c00338{bottom:100.597760pt;}
.y24_c00338{bottom:116.834400pt;}
.y23_c00338{bottom:133.071040pt;}
.y22_c00338{bottom:145.392160pt;}
.y21_c00338{bottom:161.628800pt;}
.y20_c00338{bottom:177.865440pt;}
.y1f_c00338{bottom:194.187200pt;}
.y1e_c00338{bottom:207.707067pt;}
.y1d_c00338{bottom:226.027067pt;}
.y1c_c00338{bottom:244.427067pt;}
.y1b_c00338{bottom:276.027067pt;}
.y1a_c00338{bottom:306.587067pt;}
.y19_c00338{bottom:337.227067pt;}
.y18_c00338{bottom:367.787067pt;}
.y17_c00338{bottom:398.427067pt;}
.y16_c00338{bottom:428.987067pt;}
.y15_c00338{bottom:459.627067pt;}
.y14_c00338{bottom:490.187067pt;}
.y13_c00338{bottom:520.827067pt;}
.y12_c00338{bottom:551.387067pt;}
.y11_c00338{bottom:582.027067pt;}
.y10_c00338{bottom:628.587067pt;}
.yf_c00338{bottom:659.227067pt;}
.ye_c00338{bottom:689.787067pt;}
.yd_c00338{bottom:720.427067pt;}
.yc_c00338{bottom:750.987067pt;}
.yb_c00338{bottom:781.627067pt;}
.ya_c00338{bottom:813.627067pt;}
.y9_c00338{bottom:861.387067pt;}
.y8_c00338{bottom:891.947067pt;}
.y7_c00338{bottom:922.587067pt;}
.y6_c00338{bottom:953.147067pt;}
.y5_c00338{bottom:983.787067pt;}
.y4_c00338{bottom:1014.347067pt;}
.y2_c00338{bottom:1046.987067pt;}
.y1_c00338{bottom:1063.867067pt;}
.ha_c00338{height:42.656250pt;}
.hb_c00338{height:44.388750pt;}
.h1_c00338{height:44.724687pt;}
.h2_c00338{height:50.062500pt;}
.h4_c00338{height:53.562500pt;}
.h8_c00338{height:53.625000pt;}
.h5_c00338{height:57.894062pt;}
.h9_c00338{height:57.894596pt;}
.h3_c00338{height:64.142500pt;}
.h7_c00338{height:66.750000pt;}
.h6_c00338{height:72.423750pt;}
.h0_c00338{height:1122.666667pt;}
.w1_c00338{width:793.333333pt;}
.w0_c00338{width:793.626667pt;}
.x0_c00338{left:0.000000pt;}
.x1_c00338{left:113.440000pt;}
.x3_c00338{left:137.280000pt;}
.x2_c00338{left:160.720000pt;}
.x4_c00338{left:184.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b18b0cc9cf9a60b323cf4c54.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_9aa849763f524eaf56afd513.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00339;src:url('chunks/assets/font_30772873fb1c1ab00a0f8e04.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00339;src:url('chunks/assets/font_70a93908cb1127ef59d5bec6.woff2')format("woff");}.ff5_c00339{font-family:ff5_c00339;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_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00339{vertical-align:-29.880000px;}
.v0_c00339{vertical-align:0.000000px;}
.v1_c00339{vertical-align:29.880000px;}
.ls16_c00339{letter-spacing:-0.266400px;}
.lse_c00339{letter-spacing:-0.151200px;}
.ls15_c00339{letter-spacing:-0.050400px;}
.ls12_c00339{letter-spacing:-0.036000px;}
.ls14_c00339{letter-spacing:-0.021600px;}
.ls18_c00339{letter-spacing:-0.019440px;}
.ls11_c00339{letter-spacing:-0.014400px;}
.ls17_c00339{letter-spacing:-0.011664px;}
.ls10_c00339{letter-spacing:-0.007200px;}
.lsd_c00339{letter-spacing:0.000000px;}
.ls1_c00339{letter-spacing:0.007200px;}
.ls19_c00339{letter-spacing:0.009576px;}
.lsb_c00339{letter-spacing:0.014364px;}
.ls2_c00339{letter-spacing:0.014400px;}
.ls3_c00339{letter-spacing:0.021600px;}
.ls7_c00339{letter-spacing:0.023940px;}
.ls8_c00339{letter-spacing:0.028728px;}
.ls5_c00339{letter-spacing:0.028800px;}
.lsa_c00339{letter-spacing:0.033516px;}
.lsf_c00339{letter-spacing:0.036000px;}
.ls0_c00339{letter-spacing:0.036072px;}
.ls9_c00339{letter-spacing:0.038304px;}
.ls4_c00339{letter-spacing:0.054756px;}
.ls6_c00339{letter-spacing:0.072000px;}
.ls13_c00339{letter-spacing:0.093600px;}
.lsc_c00339{letter-spacing:0.104040px;}
.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;}
}
.ws1_c00339{word-spacing:-10.789200px;}
.ws0_c00339{word-spacing:-10.584756px;}
.ws2_c00339{word-spacing:-0.306612px;}
.ws10_c00339{word-spacing:-0.208800px;}
.ws2a_c00339{word-spacing:-0.019152px;}
.ws25_c00339{word-spacing:-0.009576px;}
.wsf_c00339{word-spacing:-0.007200px;}
.ws24_c00339{word-spacing:-0.004788px;}
.ws3_c00339{word-spacing:0.000000px;}
.ws2b_c00339{word-spacing:0.004788px;}
.ws16_c00339{word-spacing:0.007200px;}
.ws2c_c00339{word-spacing:0.009576px;}
.ws27_c00339{word-spacing:0.699048px;}
.ws1a_c00339{word-spacing:1.418400px;}
.ws29_c00339{word-spacing:1.422036px;}
.ws19_c00339{word-spacing:1.440000px;}
.ws6_c00339{word-spacing:1.483200px;}
.ws28_c00339{word-spacing:2.154600px;}
.ws5_c00339{word-spacing:3.564000px;}
.ws4_c00339{word-spacing:3.592800px;}
.ws26_c00339{word-spacing:4.313988px;}
.ws14_c00339{word-spacing:5.839200px;}
.ws15_c00339{word-spacing:5.918400px;}
.ws17_c00339{word-spacing:6.501600px;}
.ws18_c00339{word-spacing:6.566400px;}
.ws1e_c00339{word-spacing:8.971200px;}
.ws20_c00339{word-spacing:8.985600px;}
.ws1d_c00339{word-spacing:8.992800px;}
.ws1f_c00339{word-spacing:9.115200px;}
.ws8_c00339{word-spacing:11.916000px;}
.ws7_c00339{word-spacing:11.988000px;}
.wsa_c00339{word-spacing:12.938400px;}
.ws9_c00339{word-spacing:12.967200px;}
.wsb_c00339{word-spacing:12.974400px;}
.ws23_c00339{word-spacing:14.738400px;}
.ws21_c00339{word-spacing:14.774400px;}
.ws22_c00339{word-spacing:14.868000px;}
.wsc_c00339{word-spacing:17.647200px;}
.ws12_c00339{word-spacing:21.261600px;}
.ws13_c00339{word-spacing:21.290400px;}
.wse_c00339{word-spacing:22.982400px;}
.wsd_c00339{word-spacing:23.047200px;}
.ws11_c00339{word-spacing:23.767200px;}
.ws1c_c00339{word-spacing:29.872800px;}
.ws1b_c00339{word-spacing:29.880000px;}
._0_c00339{margin-left:-1.022040px;}
._1_c00339{width:1.281600px;}
.fc0_c00339{color:rgb(0,0,0);}
.fs5_c00339{font-size:38.880000px;}
.fs3_c00339{font-size:42.120000px;}
.fs4_c00339{font-size:47.880000px;}
.fs2_c00339{font-size:54.000000px;}
.fs0_c00339{font-size:60.120000px;}
.fs1_c00339{font-size:72.000000px;}
.y0_c00339{bottom:0.000000px;}
.y3_c00339{bottom:57.450450px;}
.y4_c00339{bottom:61.410450px;}
.y2d_c00339{bottom:113.722770px;}
.y2c_c00339{bottom:132.084750px;}
.y2b_c00339{bottom:150.350970px;}
.y2a_c00339{bottom:168.617190px;}
.y29_c00339{bottom:186.979170px;}
.y28_c00339{bottom:205.245390px;}
.y27_c00339{bottom:223.511610px;}
.y26_c00339{bottom:241.873590px;}
.y25_c00339{bottom:260.139810px;}
.y24_c00339{bottom:278.406030px;}
.y23_c00339{bottom:296.768010px;}
.y22_c00339{bottom:315.034230px;}
.y21_c00339{bottom:333.320940px;}
.y20_c00339{bottom:351.587160px;}
.y1f_c00339{bottom:365.448420px;}
.y1e_c00339{bottom:379.213920px;}
.y1d_c00339{bottom:392.979420px;}
.y1c_c00339{bottom:406.840680px;}
.y1b_c00339{bottom:420.606180px;}
.y1a_c00339{bottom:438.872400px;}
.y19_c00339{bottom:457.234380px;}
.y18_c00339{bottom:475.500600px;}
.y17_c00339{bottom:490.710450px;}
.y16_c00339{bottom:511.410450px;}
.y15_c00339{bottom:532.110450px;}
.y14_c00339{bottom:624.810450px;}
.y13_c00339{bottom:659.190450px;}
.y12_c00339{bottom:693.660450px;}
.y11_c00339{bottom:728.040450px;}
.y10_c00339{bottom:762.510450px;}
.yf_c00339{bottom:796.890450px;}
.ye_c00339{bottom:831.360450px;}
.yd_c00339{bottom:865.740450px;}
.yc_c00339{bottom:900.210450px;}
.yb_c00339{bottom:934.590450px;}
.ya_c00339{bottom:969.060450px;}
.y9_c00339{bottom:1003.440450px;}
.y8_c00339{bottom:1037.910450px;}
.y7_c00339{bottom:1072.290450px;}
.y6_c00339{bottom:1106.760450px;}
.y5_c00339{bottom:1141.140450px;}
.y2_c00339{bottom:1173.810450px;}
.y1_c00339{bottom:1196.850450px;}
.h2_c00339{height:47.988281px;}
.h7_c00339{height:49.937344px;}
.h1_c00339{height:50.315273px;}
.h3_c00339{height:56.320312px;}
.h4_c00339{height:60.257812px;}
.h5_c00339{height:65.130820px;}
.h6_c00339{height:65.131420px;}
.h0_c00339{height:1263.000000px;}
.w1_c00339{width:892.500000px;}
.w0_c00339{width:892.830000px;}
.x0_c00339{left:0.000000px;}
.x2_c00339{left:127.620000px;}
.x7_c00339{left:154.444770px;}
.x5_c00339{left:180.720000px;}
.x6_c00339{left:207.090000px;}
.x4_c00339{left:435.240000px;}
.x3_c00339{left:446.490000px;}
.x1_c00339{left:490.770000px;}
@media print{
.v2_c00339{vertical-align:-26.560000pt;}
.v0_c00339{vertical-align:0.000000pt;}
.v1_c00339{vertical-align:26.560000pt;}
.ls16_c00339{letter-spacing:-0.236800pt;}
.lse_c00339{letter-spacing:-0.134400pt;}
.ls15_c00339{letter-spacing:-0.044800pt;}
.ls12_c00339{letter-spacing:-0.032000pt;}
.ls14_c00339{letter-spacing:-0.019200pt;}
.ls18_c00339{letter-spacing:-0.017280pt;}
.ls11_c00339{letter-spacing:-0.012800pt;}
.ls17_c00339{letter-spacing:-0.010368pt;}
.ls10_c00339{letter-spacing:-0.006400pt;}
.lsd_c00339{letter-spacing:0.000000pt;}
.ls1_c00339{letter-spacing:0.006400pt;}
.ls19_c00339{letter-spacing:0.008512pt;}
.lsb_c00339{letter-spacing:0.012768pt;}
.ls2_c00339{letter-spacing:0.012800pt;}
.ls3_c00339{letter-spacing:0.019200pt;}
.ls7_c00339{letter-spacing:0.021280pt;}
.ls8_c00339{letter-spacing:0.025536pt;}
.ls5_c00339{letter-spacing:0.025600pt;}
.lsa_c00339{letter-spacing:0.029792pt;}
.lsf_c00339{letter-spacing:0.032000pt;}
.ls0_c00339{letter-spacing:0.032064pt;}
.ls9_c00339{letter-spacing:0.034048pt;}
.ls4_c00339{letter-spacing:0.048672pt;}
.ls6_c00339{letter-spacing:0.064000pt;}
.ls13_c00339{letter-spacing:0.083200pt;}
.lsc_c00339{letter-spacing:0.092480pt;}
.ws1_c00339{word-spacing:-9.590400pt;}
.ws0_c00339{word-spacing:-9.408672pt;}
.ws2_c00339{word-spacing:-0.272544pt;}
.ws10_c00339{word-spacing:-0.185600pt;}
.ws2a_c00339{word-spacing:-0.017024pt;}
.ws25_c00339{word-spacing:-0.008512pt;}
.wsf_c00339{word-spacing:-0.006400pt;}
.ws24_c00339{word-spacing:-0.004256pt;}
.ws3_c00339{word-spacing:0.000000pt;}
.ws2b_c00339{word-spacing:0.004256pt;}
.ws16_c00339{word-spacing:0.006400pt;}
.ws2c_c00339{word-spacing:0.008512pt;}
.ws27_c00339{word-spacing:0.621376pt;}
.ws1a_c00339{word-spacing:1.260800pt;}
.ws29_c00339{word-spacing:1.264032pt;}
.ws19_c00339{word-spacing:1.280000pt;}
.ws6_c00339{word-spacing:1.318400pt;}
.ws28_c00339{word-spacing:1.915200pt;}
.ws5_c00339{word-spacing:3.168000pt;}
.ws4_c00339{word-spacing:3.193600pt;}
.ws26_c00339{word-spacing:3.834656pt;}
.ws14_c00339{word-spacing:5.190400pt;}
.ws15_c00339{word-spacing:5.260800pt;}
.ws17_c00339{word-spacing:5.779200pt;}
.ws18_c00339{word-spacing:5.836800pt;}
.ws1e_c00339{word-spacing:7.974400pt;}
.ws20_c00339{word-spacing:7.987200pt;}
.ws1d_c00339{word-spacing:7.993600pt;}
.ws1f_c00339{word-spacing:8.102400pt;}
.ws8_c00339{word-spacing:10.592000pt;}
.ws7_c00339{word-spacing:10.656000pt;}
.wsa_c00339{word-spacing:11.500800pt;}
.ws9_c00339{word-spacing:11.526400pt;}
.wsb_c00339{word-spacing:11.532800pt;}
.ws23_c00339{word-spacing:13.100800pt;}
.ws21_c00339{word-spacing:13.132800pt;}
.ws22_c00339{word-spacing:13.216000pt;}
.wsc_c00339{word-spacing:15.686400pt;}
.ws12_c00339{word-spacing:18.899200pt;}
.ws13_c00339{word-spacing:18.924800pt;}
.wse_c00339{word-spacing:20.428800pt;}
.wsd_c00339{word-spacing:20.486400pt;}
.ws11_c00339{word-spacing:21.126400pt;}
.ws1c_c00339{word-spacing:26.553600pt;}
.ws1b_c00339{word-spacing:26.560000pt;}
._0_c00339{margin-left:-0.908480pt;}
._1_c00339{width:1.139200pt;}
.fs5_c00339{font-size:34.560000pt;}
.fs3_c00339{font-size:37.440000pt;}
.fs4_c00339{font-size:42.560000pt;}
.fs2_c00339{font-size:48.000000pt;}
.fs0_c00339{font-size:53.440000pt;}
.fs1_c00339{font-size:64.000000pt;}
.y0_c00339{bottom:0.000000pt;}
.y3_c00339{bottom:51.067067pt;}
.y4_c00339{bottom:54.587067pt;}
.y2d_c00339{bottom:101.086907pt;}
.y2c_c00339{bottom:117.408667pt;}
.y2b_c00339{bottom:133.645307pt;}
.y2a_c00339{bottom:149.881947pt;}
.y29_c00339{bottom:166.203707pt;}
.y28_c00339{bottom:182.440347pt;}
.y27_c00339{bottom:198.676987pt;}
.y26_c00339{bottom:214.998747pt;}
.y25_c00339{bottom:231.235387pt;}
.y24_c00339{bottom:247.472027pt;}
.y23_c00339{bottom:263.793787pt;}
.y22_c00339{bottom:280.030427pt;}
.y21_c00339{bottom:296.285280pt;}
.y20_c00339{bottom:312.521920pt;}
.y1f_c00339{bottom:324.843040pt;}
.y1e_c00339{bottom:337.079040pt;}
.y1d_c00339{bottom:349.315040pt;}
.y1c_c00339{bottom:361.636160pt;}
.y1b_c00339{bottom:373.872160pt;}
.y1a_c00339{bottom:390.108800pt;}
.y19_c00339{bottom:406.430560pt;}
.y18_c00339{bottom:422.667200pt;}
.y17_c00339{bottom:436.187067pt;}
.y16_c00339{bottom:454.587067pt;}
.y15_c00339{bottom:472.987067pt;}
.y14_c00339{bottom:555.387067pt;}
.y13_c00339{bottom:585.947067pt;}
.y12_c00339{bottom:616.587067pt;}
.y11_c00339{bottom:647.147067pt;}
.y10_c00339{bottom:677.787067pt;}
.yf_c00339{bottom:708.347067pt;}
.ye_c00339{bottom:738.987067pt;}
.yd_c00339{bottom:769.547067pt;}
.yc_c00339{bottom:800.187067pt;}
.yb_c00339{bottom:830.747067pt;}
.ya_c00339{bottom:861.387067pt;}
.y9_c00339{bottom:891.947067pt;}
.y8_c00339{bottom:922.587067pt;}
.y7_c00339{bottom:953.147067pt;}
.y6_c00339{bottom:983.787067pt;}
.y5_c00339{bottom:1014.347067pt;}
.y2_c00339{bottom:1043.387067pt;}
.y1_c00339{bottom:1063.867067pt;}
.h2_c00339{height:42.656250pt;}
.h7_c00339{height:44.388750pt;}
.h1_c00339{height:44.724687pt;}
.h3_c00339{height:50.062500pt;}
.h4_c00339{height:53.562500pt;}
.h5_c00339{height:57.894063pt;}
.h6_c00339{height:57.894596pt;}
.h0_c00339{height:1122.666667pt;}
.w1_c00339{width:793.333333pt;}
.w0_c00339{width:793.626667pt;}
.x0_c00339{left:0.000000pt;}
.x2_c00339{left:113.440000pt;}
.x7_c00339{left:137.284240pt;}
.x5_c00339{left:160.640000pt;}
.x6_c00339{left:184.080000pt;}
.x4_c00339{left:386.880000pt;}
.x3_c00339{left:396.880000pt;}
.x1_c00339{left:436.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_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_1b16f58b2ebc55cbc73104da.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.100098;font-style:normal;font-weight:normal;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_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;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_c00340;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00340;src:url('chunks/assets/font_41746d6d77db26e83f691806.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.v1_c00340{vertical-align:15.840000px;}
.v2_c00340{vertical-align:29.880000px;}
.ls15_c00340{letter-spacing:-0.273600px;}
.lsd_c00340{letter-spacing:-0.151200px;}
.lsf_c00340{letter-spacing:-0.129600px;}
.lse_c00340{letter-spacing:-0.079200px;}
.ls16_c00340{letter-spacing:-0.072000px;}
.ls18_c00340{letter-spacing:-0.043200px;}
.ls10_c00340{letter-spacing:-0.036000px;}
.ls14_c00340{letter-spacing:-0.028800px;}
.ls12_c00340{letter-spacing:-0.021600px;}
.ls17_c00340{letter-spacing:-0.014400px;}
.ls13_c00340{letter-spacing:-0.007200px;}
.lsc_c00340{letter-spacing:0.000000px;}
.ls3_c00340{letter-spacing:0.007200px;}
.ls4_c00340{letter-spacing:0.014400px;}
.lsb_c00340{letter-spacing:0.019152px;}
.ls8_c00340{letter-spacing:0.021600px;}
.lsa_c00340{letter-spacing:0.023940px;}
.ls9_c00340{letter-spacing:0.028728px;}
.ls0_c00340{letter-spacing:0.048096px;}
.ls2_c00340{letter-spacing:0.054756px;}
.ls7_c00340{letter-spacing:0.079200px;}
.ls11_c00340{letter-spacing:0.093600px;}
.ls5_c00340{letter-spacing:0.144000px;}
.ls6_c00340{letter-spacing:65.304000px;}
.ls1_c00340{letter-spacing:1212.120000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00340{word-spacing:-17.971200px;}
.ws2_c00340{word-spacing:-17.928000px;}
.ws0_c00340{word-spacing:-17.920800px;}
.ws1_c00340{word-spacing:-10.584756px;}
.wsa_c00340{word-spacing:-0.086400px;}
.ws26_c00340{word-spacing:-0.009576px;}
.ws27_c00340{word-spacing:-0.004788px;}
.ws5_c00340{word-spacing:0.000000px;}
.ws14_c00340{word-spacing:0.021600px;}
.ws9_c00340{word-spacing:0.036000px;}
.ws4_c00340{word-spacing:0.042084px;}
.ws1a_c00340{word-spacing:0.338400px;}
.ws19_c00340{word-spacing:0.525600px;}
.ws25_c00340{word-spacing:0.705600px;}
.wsd_c00340{word-spacing:0.792000px;}
.wse_c00340{word-spacing:0.806400px;}
.ws1d_c00340{word-spacing:2.520000px;}
.ws1e_c00340{word-spacing:2.584800px;}
.ws13_c00340{word-spacing:2.916000px;}
.ws7_c00340{word-spacing:3.153600px;}
.ws6_c00340{word-spacing:3.232800px;}
.ws8_c00340{word-spacing:3.369600px;}
.wsc_c00340{word-spacing:3.967200px;}
.wsb_c00340{word-spacing:3.981600px;}
.wsf_c00340{word-spacing:3.996000px;}
.ws10_c00340{word-spacing:4.068000px;}
.ws24_c00340{word-spacing:4.658400px;}
.ws23_c00340{word-spacing:4.824000px;}
.ws12_c00340{word-spacing:5.680800px;}
.ws11_c00340{word-spacing:5.817600px;}
.ws1b_c00340{word-spacing:6.501600px;}
.ws1c_c00340{word-spacing:6.559200px;}
.ws15_c00340{word-spacing:12.988800px;}
.ws21_c00340{word-spacing:13.298400px;}
.ws1f_c00340{word-spacing:13.341600px;}
.ws20_c00340{word-spacing:13.363200px;}
.ws22_c00340{word-spacing:13.471200px;}
.ws18_c00340{word-spacing:24.069600px;}
.ws17_c00340{word-spacing:24.156000px;}
.ws16_c00340{word-spacing:28.144800px;}
._0_c00340{margin-left:-1.322640px;}
._1_c00340{width:1.159200px;}
.fc0_c00340{color:rgb(0,0,0);}
.fs3_c00340{font-size:42.120000px;}
.fs4_c00340{font-size:47.880000px;}
.fs1_c00340{font-size:54.000000px;}
.fs0_c00340{font-size:60.120000px;}
.fs2_c00340{font-size:72.000000px;}
.y0_c00340{bottom:0.000000px;}
.y3_c00340{bottom:57.450450px;}
.y28_c00340{bottom:113.726550px;}
.y27_c00340{bottom:132.088530px;}
.y26_c00340{bottom:150.354750px;}
.y25_c00340{bottom:168.620970px;}
.y24_c00340{bottom:186.982950px;}
.y23_c00340{bottom:205.249170px;}
.y22_c00340{bottom:223.515390px;}
.y21_c00340{bottom:241.877370px;}
.y20_c00340{bottom:260.143590px;}
.y1f_c00340{bottom:278.409810px;}
.y1e_c00340{bottom:296.771790px;}
.y1d_c00340{bottom:315.038010px;}
.y1c_c00340{bottom:333.304230px;}
.y1b_c00340{bottom:351.570450px;}
.y1a_c00340{bottom:366.780600px;}
.y19_c00340{bottom:387.480600px;}
.y18_c00340{bottom:408.180600px;}
.y17_c00340{bottom:451.110450px;}
.y16_c00340{bottom:485.490450px;}
.y15_c00340{bottom:519.960450px;}
.y14_c00340{bottom:572.340450px;}
.y13_c00340{bottom:606.810450px;}
.y12_c00340{bottom:641.190450px;}
.y11_c00340{bottom:675.660450px;}
.y10_c00340{bottom:710.040450px;}
.yf_c00340{bottom:744.510450px;}
.ye_c00340{bottom:778.890450px;}
.yd_c00340{bottom:813.360450px;}
.yc_c00340{bottom:847.740450px;}
.yb_c00340{bottom:882.210450px;}
.ya_c00340{bottom:916.590450px;}
.y9_c00340{bottom:951.060450px;}
.y8_c00340{bottom:985.440450px;}
.y7_c00340{bottom:1019.910450px;}
.y6_c00340{bottom:1054.290450px;}
.y5_c00340{bottom:1106.760450px;}
.y4_c00340{bottom:1141.140450px;}
.y2_c00340{bottom:1177.860450px;}
.y1_c00340{bottom:1196.850450px;}
.h8_c00340{height:47.988281px;}
.h9_c00340{height:49.937344px;}
.h1_c00340{height:50.315273px;}
.h2_c00340{height:56.320312px;}
.h6_c00340{height:60.257812px;}
.h4_c00340{height:65.130820px;}
.h7_c00340{height:65.131420px;}
.h3_c00340{height:72.160312px;}
.h5_c00340{height:75.093750px;}
.h0_c00340{height:1263.000000px;}
.w1_c00340{width:892.500000px;}
.w0_c00340{width:892.830000px;}
.x0_c00340{left:0.000000px;}
.x1_c00340{left:127.620000px;}
.x3_c00340{left:154.620000px;}
.x2_c00340{left:180.720000px;}
.x4_c00340{left:207.180000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.v1_c00340{vertical-align:14.080000pt;}
.v2_c00340{vertical-align:26.560000pt;}
.ls15_c00340{letter-spacing:-0.243200pt;}
.lsd_c00340{letter-spacing:-0.134400pt;}
.lsf_c00340{letter-spacing:-0.115200pt;}
.lse_c00340{letter-spacing:-0.070400pt;}
.ls16_c00340{letter-spacing:-0.064000pt;}
.ls18_c00340{letter-spacing:-0.038400pt;}
.ls10_c00340{letter-spacing:-0.032000pt;}
.ls14_c00340{letter-spacing:-0.025600pt;}
.ls12_c00340{letter-spacing:-0.019200pt;}
.ls17_c00340{letter-spacing:-0.012800pt;}
.ls13_c00340{letter-spacing:-0.006400pt;}
.lsc_c00340{letter-spacing:0.000000pt;}
.ls3_c00340{letter-spacing:0.006400pt;}
.ls4_c00340{letter-spacing:0.012800pt;}
.lsb_c00340{letter-spacing:0.017024pt;}
.ls8_c00340{letter-spacing:0.019200pt;}
.lsa_c00340{letter-spacing:0.021280pt;}
.ls9_c00340{letter-spacing:0.025536pt;}
.ls0_c00340{letter-spacing:0.042752pt;}
.ls2_c00340{letter-spacing:0.048672pt;}
.ls7_c00340{letter-spacing:0.070400pt;}
.ls11_c00340{letter-spacing:0.083200pt;}
.ls5_c00340{letter-spacing:0.128000pt;}
.ls6_c00340{letter-spacing:58.048000pt;}
.ls1_c00340{letter-spacing:1077.440000pt;}
.ws3_c00340{word-spacing:-15.974400pt;}
.ws2_c00340{word-spacing:-15.936000pt;}
.ws0_c00340{word-spacing:-15.929600pt;}
.ws1_c00340{word-spacing:-9.408672pt;}
.wsa_c00340{word-spacing:-0.076800pt;}
.ws26_c00340{word-spacing:-0.008512pt;}
.ws27_c00340{word-spacing:-0.004256pt;}
.ws5_c00340{word-spacing:0.000000pt;}
.ws14_c00340{word-spacing:0.019200pt;}
.ws9_c00340{word-spacing:0.032000pt;}
.ws4_c00340{word-spacing:0.037408pt;}
.ws1a_c00340{word-spacing:0.300800pt;}
.ws19_c00340{word-spacing:0.467200pt;}
.ws25_c00340{word-spacing:0.627200pt;}
.wsd_c00340{word-spacing:0.704000pt;}
.wse_c00340{word-spacing:0.716800pt;}
.ws1d_c00340{word-spacing:2.240000pt;}
.ws1e_c00340{word-spacing:2.297600pt;}
.ws13_c00340{word-spacing:2.592000pt;}
.ws7_c00340{word-spacing:2.803200pt;}
.ws6_c00340{word-spacing:2.873600pt;}
.ws8_c00340{word-spacing:2.995200pt;}
.wsc_c00340{word-spacing:3.526400pt;}
.wsb_c00340{word-spacing:3.539200pt;}
.wsf_c00340{word-spacing:3.552000pt;}
.ws10_c00340{word-spacing:3.616000pt;}
.ws24_c00340{word-spacing:4.140800pt;}
.ws23_c00340{word-spacing:4.288000pt;}
.ws12_c00340{word-spacing:5.049600pt;}
.ws11_c00340{word-spacing:5.171200pt;}
.ws1b_c00340{word-spacing:5.779200pt;}
.ws1c_c00340{word-spacing:5.830400pt;}
.ws15_c00340{word-spacing:11.545600pt;}
.ws21_c00340{word-spacing:11.820800pt;}
.ws1f_c00340{word-spacing:11.859200pt;}
.ws20_c00340{word-spacing:11.878400pt;}
.ws22_c00340{word-spacing:11.974400pt;}
.ws18_c00340{word-spacing:21.395200pt;}
.ws17_c00340{word-spacing:21.472000pt;}
.ws16_c00340{word-spacing:25.017600pt;}
._0_c00340{margin-left:-1.175680pt;}
._1_c00340{width:1.030400pt;}
.fs3_c00340{font-size:37.440000pt;}
.fs4_c00340{font-size:42.560000pt;}
.fs1_c00340{font-size:48.000000pt;}
.fs0_c00340{font-size:53.440000pt;}
.fs2_c00340{font-size:64.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.y3_c00340{bottom:51.067067pt;}
.y28_c00340{bottom:101.090267pt;}
.y27_c00340{bottom:117.412027pt;}
.y26_c00340{bottom:133.648667pt;}
.y25_c00340{bottom:149.885307pt;}
.y24_c00340{bottom:166.207067pt;}
.y23_c00340{bottom:182.443707pt;}
.y22_c00340{bottom:198.680347pt;}
.y21_c00340{bottom:215.002107pt;}
.y20_c00340{bottom:231.238747pt;}
.y1f_c00340{bottom:247.475387pt;}
.y1e_c00340{bottom:263.797147pt;}
.y1d_c00340{bottom:280.033787pt;}
.y1c_c00340{bottom:296.270427pt;}
.y1b_c00340{bottom:312.507067pt;}
.y1a_c00340{bottom:326.027200pt;}
.y19_c00340{bottom:344.427200pt;}
.y18_c00340{bottom:362.827200pt;}
.y17_c00340{bottom:400.987067pt;}
.y16_c00340{bottom:431.547067pt;}
.y15_c00340{bottom:462.187067pt;}
.y14_c00340{bottom:508.747067pt;}
.y13_c00340{bottom:539.387067pt;}
.y12_c00340{bottom:569.947067pt;}
.y11_c00340{bottom:600.587067pt;}
.y10_c00340{bottom:631.147067pt;}
.yf_c00340{bottom:661.787067pt;}
.ye_c00340{bottom:692.347067pt;}
.yd_c00340{bottom:722.987067pt;}
.yc_c00340{bottom:753.547067pt;}
.yb_c00340{bottom:784.187067pt;}
.ya_c00340{bottom:814.747067pt;}
.y9_c00340{bottom:845.387067pt;}
.y8_c00340{bottom:875.947067pt;}
.y7_c00340{bottom:906.587067pt;}
.y6_c00340{bottom:937.147067pt;}
.y5_c00340{bottom:983.787067pt;}
.y4_c00340{bottom:1014.347067pt;}
.y2_c00340{bottom:1046.987067pt;}
.y1_c00340{bottom:1063.867067pt;}
.h8_c00340{height:42.656250pt;}
.h9_c00340{height:44.388750pt;}
.h1_c00340{height:44.724687pt;}
.h2_c00340{height:50.062500pt;}
.h6_c00340{height:53.562500pt;}
.h4_c00340{height:57.894063pt;}
.h7_c00340{height:57.894596pt;}
.h3_c00340{height:64.142500pt;}
.h5_c00340{height:66.750000pt;}
.h0_c00340{height:1122.666667pt;}
.w1_c00340{width:793.333333pt;}
.w0_c00340{width:793.626667pt;}
.x0_c00340{left:0.000000pt;}
.x1_c00340{left:113.440000pt;}
.x3_c00340{left:137.440000pt;}
.x2_c00340{left:160.640000pt;}
.x4_c00340{left:184.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cf680ca6576c6d0f437a38b7.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00341;src:url('chunks/assets/font_015627b126738282bb3e605b.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.v1_c00341{vertical-align:29.880000px;}
.ls14_c00341{letter-spacing:-0.266400px;}
.lse_c00341{letter-spacing:-0.151200px;}
.ls10_c00341{letter-spacing:-0.072000px;}
.lsf_c00341{letter-spacing:-0.028800px;}
.ls13_c00341{letter-spacing:-0.021600px;}
.ls11_c00341{letter-spacing:-0.014400px;}
.ls12_c00341{letter-spacing:-0.007200px;}
.lsd_c00341{letter-spacing:0.000000px;}
.ls5_c00341{letter-spacing:0.007200px;}
.ls6_c00341{letter-spacing:0.014400px;}
.lsa_c00341{letter-spacing:0.019152px;}
.ls7_c00341{letter-spacing:0.021600px;}
.lsc_c00341{letter-spacing:0.023940px;}
.lsb_c00341{letter-spacing:0.028728px;}
.ls2_c00341{letter-spacing:0.028800px;}
.ls8_c00341{letter-spacing:0.036000px;}
.ls0_c00341{letter-spacing:0.036072px;}
.ls1_c00341{letter-spacing:0.054756px;}
.ls9_c00341{letter-spacing:0.093600px;}
.ls3_c00341{letter-spacing:0.144000px;}
.ls4_c00341{letter-spacing:65.304000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00341{word-spacing:-18.028800px;}
.ws0_c00341{word-spacing:-17.928000px;}
.ws1_c00341{word-spacing:-10.584756px;}
.ws3_c00341{word-spacing:-0.306612px;}
.ws13_c00341{word-spacing:-0.093600px;}
.ws24_c00341{word-spacing:-0.057600px;}
.ws23_c00341{word-spacing:-0.036000px;}
.ws25_c00341{word-spacing:-0.009576px;}
.ws26_c00341{word-spacing:-0.004788px;}
.ws4_c00341{word-spacing:0.000000px;}
.wsd_c00341{word-spacing:0.014400px;}
.ws1a_c00341{word-spacing:0.057600px;}
.ws8_c00341{word-spacing:0.079200px;}
.wse_c00341{word-spacing:0.122400px;}
.ws19_c00341{word-spacing:1.749600px;}
.ws18_c00341{word-spacing:1.807200px;}
.ws12_c00341{word-spacing:1.821600px;}
.wsf_c00341{word-spacing:4.348800px;}
.ws7_c00341{word-spacing:4.356000px;}
.ws10_c00341{word-spacing:4.384800px;}
.ws15_c00341{word-spacing:5.436000px;}
.wsb_c00341{word-spacing:5.781600px;}
.ws17_c00341{word-spacing:6.148800px;}
.ws16_c00341{word-spacing:6.177600px;}
.ws1b_c00341{word-spacing:6.501600px;}
.ws1c_c00341{word-spacing:6.559200px;}
.ws9_c00341{word-spacing:7.250400px;}
.wsa_c00341{word-spacing:9.331200px;}
.wsc_c00341{word-spacing:10.087200px;}
.ws14_c00341{word-spacing:12.276000px;}
.ws5_c00341{word-spacing:12.988800px;}
.ws22_c00341{word-spacing:13.579200px;}
.ws21_c00341{word-spacing:13.644000px;}
.ws20_c00341{word-spacing:13.658400px;}
.ws1f_c00341{word-spacing:13.665600px;}
.ws11_c00341{word-spacing:20.548800px;}
.ws6_c00341{word-spacing:28.144800px;}
.ws1e_c00341{word-spacing:29.865600px;}
.ws1d_c00341{word-spacing:29.995200px;}
._0_c00341{margin-left:-1.022040px;}
._1_c00341{width:1.152000px;}
.fc0_c00341{color:rgb(0,0,0);}
.fs3_c00341{font-size:42.120000px;}
.fs4_c00341{font-size:47.880000px;}
.fs2_c00341{font-size:54.000000px;}
.fs0_c00341{font-size:60.120000px;}
.fs1_c00341{font-size:72.000000px;}
.y0_c00341{bottom:0.000000px;}
.y3_c00341{bottom:57.450450px;}
.y4_c00341{bottom:61.410450px;}
.y27_c00341{bottom:111.195390px;}
.y26_c00341{bottom:129.461610px;}
.y25_c00341{bottom:147.823590px;}
.y24_c00341{bottom:166.089810px;}
.y23_c00341{bottom:184.356030px;}
.y22_c00341{bottom:202.718010px;}
.y21_c00341{bottom:220.984230px;}
.y20_c00341{bottom:239.250450px;}
.y1f_c00341{bottom:254.460450px;}
.y1e_c00341{bottom:275.160450px;}
.y1d_c00341{bottom:295.860450px;}
.y1c_c00341{bottom:331.410600px;}
.y1b_c00341{bottom:365.790450px;}
.y1a_c00341{bottom:400.260600px;}
.y19_c00341{bottom:434.640600px;}
.y18_c00341{bottom:469.110450px;}
.y17_c00341{bottom:503.490450px;}
.y16_c00341{bottom:537.960450px;}
.y15_c00341{bottom:572.340450px;}
.y14_c00341{bottom:606.810450px;}
.y13_c00341{bottom:641.190450px;}
.y12_c00341{bottom:675.660450px;}
.y11_c00341{bottom:710.040450px;}
.y10_c00341{bottom:744.510450px;}
.yf_c00341{bottom:778.890450px;}
.ye_c00341{bottom:813.360450px;}
.yd_c00341{bottom:865.740450px;}
.yc_c00341{bottom:900.210450px;}
.yb_c00341{bottom:934.590450px;}
.ya_c00341{bottom:969.060450px;}
.y9_c00341{bottom:1003.440450px;}
.y8_c00341{bottom:1037.910450px;}
.y7_c00341{bottom:1072.290450px;}
.y6_c00341{bottom:1106.760450px;}
.y5_c00341{bottom:1141.140450px;}
.y2_c00341{bottom:1173.810450px;}
.y1_c00341{bottom:1196.850450px;}
.h2_c00341{height:47.988281px;}
.h8_c00341{height:49.937344px;}
.h1_c00341{height:50.315273px;}
.h3_c00341{height:56.320312px;}
.h4_c00341{height:60.257812px;}
.h7_c00341{height:65.130220px;}
.h5_c00341{height:65.130820px;}
.h6_c00341{height:75.093750px;}
.h0_c00341{height:1263.000000px;}
.w1_c00341{width:892.500000px;}
.w0_c00341{width:892.830000px;}
.x0_c00341{left:0.000000px;}
.x2_c00341{left:127.620000px;}
.x7_c00341{left:154.620000px;}
.x6_c00341{left:180.810000px;}
.x5_c00341{left:207.180000px;}
.x8_c00341{left:208.620000px;}
.x4_c00341{left:435.240000px;}
.x3_c00341{left:446.490000px;}
.x1_c00341{left:490.770000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.v1_c00341{vertical-align:26.560000pt;}
.ls14_c00341{letter-spacing:-0.236800pt;}
.lse_c00341{letter-spacing:-0.134400pt;}
.ls10_c00341{letter-spacing:-0.064000pt;}
.lsf_c00341{letter-spacing:-0.025600pt;}
.ls13_c00341{letter-spacing:-0.019200pt;}
.ls11_c00341{letter-spacing:-0.012800pt;}
.ls12_c00341{letter-spacing:-0.006400pt;}
.lsd_c00341{letter-spacing:0.000000pt;}
.ls5_c00341{letter-spacing:0.006400pt;}
.ls6_c00341{letter-spacing:0.012800pt;}
.lsa_c00341{letter-spacing:0.017024pt;}
.ls7_c00341{letter-spacing:0.019200pt;}
.lsc_c00341{letter-spacing:0.021280pt;}
.lsb_c00341{letter-spacing:0.025536pt;}
.ls2_c00341{letter-spacing:0.025600pt;}
.ls8_c00341{letter-spacing:0.032000pt;}
.ls0_c00341{letter-spacing:0.032064pt;}
.ls1_c00341{letter-spacing:0.048672pt;}
.ls9_c00341{letter-spacing:0.083200pt;}
.ls3_c00341{letter-spacing:0.128000pt;}
.ls4_c00341{letter-spacing:58.048000pt;}
.ws2_c00341{word-spacing:-16.025600pt;}
.ws0_c00341{word-spacing:-15.936000pt;}
.ws1_c00341{word-spacing:-9.408672pt;}
.ws3_c00341{word-spacing:-0.272544pt;}
.ws13_c00341{word-spacing:-0.083200pt;}
.ws24_c00341{word-spacing:-0.051200pt;}
.ws23_c00341{word-spacing:-0.032000pt;}
.ws25_c00341{word-spacing:-0.008512pt;}
.ws26_c00341{word-spacing:-0.004256pt;}
.ws4_c00341{word-spacing:0.000000pt;}
.wsd_c00341{word-spacing:0.012800pt;}
.ws1a_c00341{word-spacing:0.051200pt;}
.ws8_c00341{word-spacing:0.070400pt;}
.wse_c00341{word-spacing:0.108800pt;}
.ws19_c00341{word-spacing:1.555200pt;}
.ws18_c00341{word-spacing:1.606400pt;}
.ws12_c00341{word-spacing:1.619200pt;}
.wsf_c00341{word-spacing:3.865600pt;}
.ws7_c00341{word-spacing:3.872000pt;}
.ws10_c00341{word-spacing:3.897600pt;}
.ws15_c00341{word-spacing:4.832000pt;}
.wsb_c00341{word-spacing:5.139200pt;}
.ws17_c00341{word-spacing:5.465600pt;}
.ws16_c00341{word-spacing:5.491200pt;}
.ws1b_c00341{word-spacing:5.779200pt;}
.ws1c_c00341{word-spacing:5.830400pt;}
.ws9_c00341{word-spacing:6.444800pt;}
.wsa_c00341{word-spacing:8.294400pt;}
.wsc_c00341{word-spacing:8.966400pt;}
.ws14_c00341{word-spacing:10.912000pt;}
.ws5_c00341{word-spacing:11.545600pt;}
.ws22_c00341{word-spacing:12.070400pt;}
.ws21_c00341{word-spacing:12.128000pt;}
.ws20_c00341{word-spacing:12.140800pt;}
.ws1f_c00341{word-spacing:12.147200pt;}
.ws11_c00341{word-spacing:18.265600pt;}
.ws6_c00341{word-spacing:25.017600pt;}
.ws1e_c00341{word-spacing:26.547200pt;}
.ws1d_c00341{word-spacing:26.662400pt;}
._0_c00341{margin-left:-0.908480pt;}
._1_c00341{width:1.024000pt;}
.fs3_c00341{font-size:37.440000pt;}
.fs4_c00341{font-size:42.560000pt;}
.fs2_c00341{font-size:48.000000pt;}
.fs0_c00341{font-size:53.440000pt;}
.fs1_c00341{font-size:64.000000pt;}
.y0_c00341{bottom:0.000000pt;}
.y3_c00341{bottom:51.067067pt;}
.y4_c00341{bottom:54.587067pt;}
.y27_c00341{bottom:98.840347pt;}
.y26_c00341{bottom:115.076987pt;}
.y25_c00341{bottom:131.398747pt;}
.y24_c00341{bottom:147.635387pt;}
.y23_c00341{bottom:163.872027pt;}
.y22_c00341{bottom:180.193787pt;}
.y21_c00341{bottom:196.430427pt;}
.y20_c00341{bottom:212.667067pt;}
.y1f_c00341{bottom:226.187067pt;}
.y1e_c00341{bottom:244.587067pt;}
.y1d_c00341{bottom:262.987067pt;}
.y1c_c00341{bottom:294.587200pt;}
.y1b_c00341{bottom:325.147067pt;}
.y1a_c00341{bottom:355.787200pt;}
.y19_c00341{bottom:386.347200pt;}
.y18_c00341{bottom:416.987067pt;}
.y17_c00341{bottom:447.547067pt;}
.y16_c00341{bottom:478.187067pt;}
.y15_c00341{bottom:508.747067pt;}
.y14_c00341{bottom:539.387067pt;}
.y13_c00341{bottom:569.947067pt;}
.y12_c00341{bottom:600.587067pt;}
.y11_c00341{bottom:631.147067pt;}
.y10_c00341{bottom:661.787067pt;}
.yf_c00341{bottom:692.347067pt;}
.ye_c00341{bottom:722.987067pt;}
.yd_c00341{bottom:769.547067pt;}
.yc_c00341{bottom:800.187067pt;}
.yb_c00341{bottom:830.747067pt;}
.ya_c00341{bottom:861.387067pt;}
.y9_c00341{bottom:891.947067pt;}
.y8_c00341{bottom:922.587067pt;}
.y7_c00341{bottom:953.147067pt;}
.y6_c00341{bottom:983.787067pt;}
.y5_c00341{bottom:1014.347067pt;}
.y2_c00341{bottom:1043.387067pt;}
.y1_c00341{bottom:1063.867067pt;}
.h2_c00341{height:42.656250pt;}
.h8_c00341{height:44.388750pt;}
.h1_c00341{height:44.724687pt;}
.h3_c00341{height:50.062500pt;}
.h4_c00341{height:53.562500pt;}
.h7_c00341{height:57.893529pt;}
.h5_c00341{height:57.894062pt;}
.h6_c00341{height:66.750000pt;}
.h0_c00341{height:1122.666667pt;}
.w1_c00341{width:793.333333pt;}
.w0_c00341{width:793.626667pt;}
.x0_c00341{left:0.000000pt;}
.x2_c00341{left:113.440000pt;}
.x7_c00341{left:137.440000pt;}
.x6_c00341{left:160.720000pt;}
.x5_c00341{left:184.160000pt;}
.x8_c00341{left:185.440000pt;}
.x4_c00341{left:386.880000pt;}
.x3_c00341{left:396.880000pt;}
.x1_c00341{left:436.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_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_fbaa5ff92ae7a64959375c0d.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.100098;font-style:normal;font-weight:normal;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_9aa849763f524eaf56afd513.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;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_c00342;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00342;src:url('chunks/assets/font_1782c1725837d0877fe7bc30.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00342;src:url('chunks/assets/font_70a93908cb1127ef59d5bec6.woff2')format("woff");}.ff5_c00342{font-family:ff5_c00342;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_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;}
.v1_c00342{vertical-align:15.840000px;}
.v2_c00342{vertical-align:29.880000px;}
.ls16_c00342{letter-spacing:-0.273600px;}
.ls13_c00342{letter-spacing:-0.151200px;}
.ls1d_c00342{letter-spacing:-0.144000px;}
.ls1c_c00342{letter-spacing:-0.043200px;}
.ls1b_c00342{letter-spacing:-0.036000px;}
.ls18_c00342{letter-spacing:-0.028800px;}
.ls17_c00342{letter-spacing:-0.021600px;}
.ls1f_c00342{letter-spacing:-0.019440px;}
.ls15_c00342{letter-spacing:-0.014400px;}
.ls1e_c00342{letter-spacing:-0.011664px;}
.ls14_c00342{letter-spacing:-0.007200px;}
.ls12_c00342{letter-spacing:0.000000px;}
.lsa_c00342{letter-spacing:0.007200px;}
.ls20_c00342{letter-spacing:0.009576px;}
.lse_c00342{letter-spacing:0.014364px;}
.lsb_c00342{letter-spacing:0.014400px;}
.ls11_c00342{letter-spacing:0.019152px;}
.lsc_c00342{letter-spacing:0.023940px;}
.lsd_c00342{letter-spacing:0.028728px;}
.ls4_c00342{letter-spacing:0.036000px;}
.ls10_c00342{letter-spacing:0.038304px;}
.ls1a_c00342{letter-spacing:0.043200px;}
.ls0_c00342{letter-spacing:0.048096px;}
.ls5_c00342{letter-spacing:0.054756px;}
.ls19_c00342{letter-spacing:0.093600px;}
.lsf_c00342{letter-spacing:0.104040px;}
.ls2_c00342{letter-spacing:0.144000px;}
.ls9_c00342{letter-spacing:0.151200px;}
.ls6_c00342{letter-spacing:0.187200px;}
.ls8_c00342{letter-spacing:0.720000px;}
.ls7_c00342{letter-spacing:62.064000px;}
.ls3_c00342{letter-spacing:65.304000px;}
.ls1_c00342{letter-spacing:1212.120000px;}
.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.151200px;}
.ws2_c00342{word-spacing:-10.789200px;}
.ws0_c00342{word-spacing:-10.584756px;}
.wsd_c00342{word-spacing:-0.093600px;}
.ws22_c00342{word-spacing:-0.019152px;}
.ws1f_c00342{word-spacing:-0.009576px;}
.ws1e_c00342{word-spacing:-0.004788px;}
.ws4_c00342{word-spacing:0.000000px;}
.ws20_c00342{word-spacing:0.004788px;}
.ws9_c00342{word-spacing:0.007200px;}
.ws21_c00342{word-spacing:0.009576px;}
.ws16_c00342{word-spacing:0.014400px;}
.ws3_c00342{word-spacing:0.042084px;}
.ws10_c00342{word-spacing:0.050400px;}
.wsc_c00342{word-spacing:0.252000px;}
.wsf_c00342{word-spacing:0.316800px;}
.wse_c00342{word-spacing:0.432000px;}
.wsb_c00342{word-spacing:0.475200px;}
.ws14_c00342{word-spacing:0.748800px;}
.ws12_c00342{word-spacing:0.756000px;}
.ws13_c00342{word-spacing:0.849600px;}
.ws11_c00342{word-spacing:0.907200px;}
.wsa_c00342{word-spacing:1.519200px;}
.ws18_c00342{word-spacing:2.923200px;}
.ws17_c00342{word-spacing:2.952000px;}
.ws1b_c00342{word-spacing:4.334400px;}
.ws1a_c00342{word-spacing:4.348800px;}
.ws1c_c00342{word-spacing:4.464000px;}
.ws19_c00342{word-spacing:9.079200px;}
.ws5_c00342{word-spacing:9.727200px;}
.ws1d_c00342{word-spacing:10.461600px;}
.ws6_c00342{word-spacing:15.084000px;}
.ws7_c00342{word-spacing:15.134400px;}
.ws8_c00342{word-spacing:15.854400px;}
.ws15_c00342{word-spacing:18.741600px;}
._2_c00342{margin-left:-4.680000px;}
._0_c00342{margin-left:-1.322640px;}
._1_c00342{width:1.008000px;}
.fc0_c00342{color:rgb(0,0,0);}
.fs5_c00342{font-size:38.880000px;}
.fs3_c00342{font-size:42.120000px;}
.fs4_c00342{font-size:47.880000px;}
.fs1_c00342{font-size:54.000000px;}
.fs0_c00342{font-size:60.120000px;}
.fs2_c00342{font-size:72.000000px;}
.y0_c00342{bottom:0.000000px;}
.y3_c00342{bottom:57.450450px;}
.y25_c00342{bottom:113.702250px;}
.y24_c00342{bottom:132.064230px;}
.y23_c00342{bottom:150.332400px;}
.y22_c00342{bottom:168.598620px;}
.y21_c00342{bottom:186.975390px;}
.y20_c00342{bottom:205.241610px;}
.y1f_c00342{bottom:223.507830px;}
.y1e_c00342{bottom:241.869810px;}
.y1d_c00342{bottom:260.136030px;}
.y1c_c00342{bottom:278.402250px;}
.y1b_c00342{bottom:296.764230px;}
.y1a_c00342{bottom:315.030450px;}
.y19_c00342{bottom:330.240450px;}
.y18_c00342{bottom:350.940450px;}
.y17_c00342{bottom:371.640450px;}
.y16_c00342{bottom:503.490450px;}
.y15_c00342{bottom:537.960450px;}
.y14_c00342{bottom:572.340450px;}
.y13_c00342{bottom:606.810450px;}
.y12_c00342{bottom:641.190450px;}
.y11_c00342{bottom:675.660450px;}
.y10_c00342{bottom:710.040450px;}
.yf_c00342{bottom:744.510450px;}
.ye_c00342{bottom:778.890450px;}
.yd_c00342{bottom:813.360450px;}
.yc_c00342{bottom:865.740450px;}
.yb_c00342{bottom:900.210450px;}
.ya_c00342{bottom:934.590450px;}
.y9_c00342{bottom:969.060450px;}
.y8_c00342{bottom:1003.440450px;}
.y7_c00342{bottom:1037.910450px;}
.y6_c00342{bottom:1072.290450px;}
.y5_c00342{bottom:1106.760450px;}
.y4_c00342{bottom:1141.140450px;}
.y2_c00342{bottom:1177.860450px;}
.y1_c00342{bottom:1196.850450px;}
.h8_c00342{height:47.988281px;}
.h9_c00342{height:49.937344px;}
.h1_c00342{height:50.315273px;}
.h2_c00342{height:56.320312px;}
.h5_c00342{height:60.257812px;}
.h6_c00342{height:65.130820px;}
.h7_c00342{height:65.131420px;}
.h3_c00342{height:72.160312px;}
.h4_c00342{height:75.093750px;}
.h0_c00342{height:1263.000000px;}
.w1_c00342{width:892.500000px;}
.w0_c00342{width:892.830000px;}
.x0_c00342{left:0.000000px;}
.x1_c00342{left:127.620000px;}
.x2_c00342{left:154.620000px;}
.x3_c00342{left:181.620000px;}
.x4_c00342{left:207.180000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.v1_c00342{vertical-align:14.080000pt;}
.v2_c00342{vertical-align:26.560000pt;}
.ls16_c00342{letter-spacing:-0.243200pt;}
.ls13_c00342{letter-spacing:-0.134400pt;}
.ls1d_c00342{letter-spacing:-0.128000pt;}
.ls1c_c00342{letter-spacing:-0.038400pt;}
.ls1b_c00342{letter-spacing:-0.032000pt;}
.ls18_c00342{letter-spacing:-0.025600pt;}
.ls17_c00342{letter-spacing:-0.019200pt;}
.ls1f_c00342{letter-spacing:-0.017280pt;}
.ls15_c00342{letter-spacing:-0.012800pt;}
.ls1e_c00342{letter-spacing:-0.010368pt;}
.ls14_c00342{letter-spacing:-0.006400pt;}
.ls12_c00342{letter-spacing:0.000000pt;}
.lsa_c00342{letter-spacing:0.006400pt;}
.ls20_c00342{letter-spacing:0.008512pt;}
.lse_c00342{letter-spacing:0.012768pt;}
.lsb_c00342{letter-spacing:0.012800pt;}
.ls11_c00342{letter-spacing:0.017024pt;}
.lsc_c00342{letter-spacing:0.021280pt;}
.lsd_c00342{letter-spacing:0.025536pt;}
.ls4_c00342{letter-spacing:0.032000pt;}
.ls10_c00342{letter-spacing:0.034048pt;}
.ls1a_c00342{letter-spacing:0.038400pt;}
.ls0_c00342{letter-spacing:0.042752pt;}
.ls5_c00342{letter-spacing:0.048672pt;}
.ls19_c00342{letter-spacing:0.083200pt;}
.lsf_c00342{letter-spacing:0.092480pt;}
.ls2_c00342{letter-spacing:0.128000pt;}
.ls9_c00342{letter-spacing:0.134400pt;}
.ls6_c00342{letter-spacing:0.166400pt;}
.ls8_c00342{letter-spacing:0.640000pt;}
.ls7_c00342{letter-spacing:55.168000pt;}
.ls3_c00342{letter-spacing:58.048000pt;}
.ls1_c00342{letter-spacing:1077.440000pt;}
.ws1_c00342{word-spacing:-16.134400pt;}
.ws2_c00342{word-spacing:-9.590400pt;}
.ws0_c00342{word-spacing:-9.408672pt;}
.wsd_c00342{word-spacing:-0.083200pt;}
.ws22_c00342{word-spacing:-0.017024pt;}
.ws1f_c00342{word-spacing:-0.008512pt;}
.ws1e_c00342{word-spacing:-0.004256pt;}
.ws4_c00342{word-spacing:0.000000pt;}
.ws20_c00342{word-spacing:0.004256pt;}
.ws9_c00342{word-spacing:0.006400pt;}
.ws21_c00342{word-spacing:0.008512pt;}
.ws16_c00342{word-spacing:0.012800pt;}
.ws3_c00342{word-spacing:0.037408pt;}
.ws10_c00342{word-spacing:0.044800pt;}
.wsc_c00342{word-spacing:0.224000pt;}
.wsf_c00342{word-spacing:0.281600pt;}
.wse_c00342{word-spacing:0.384000pt;}
.wsb_c00342{word-spacing:0.422400pt;}
.ws14_c00342{word-spacing:0.665600pt;}
.ws12_c00342{word-spacing:0.672000pt;}
.ws13_c00342{word-spacing:0.755200pt;}
.ws11_c00342{word-spacing:0.806400pt;}
.wsa_c00342{word-spacing:1.350400pt;}
.ws18_c00342{word-spacing:2.598400pt;}
.ws17_c00342{word-spacing:2.624000pt;}
.ws1b_c00342{word-spacing:3.852800pt;}
.ws1a_c00342{word-spacing:3.865600pt;}
.ws1c_c00342{word-spacing:3.968000pt;}
.ws19_c00342{word-spacing:8.070400pt;}
.ws5_c00342{word-spacing:8.646400pt;}
.ws1d_c00342{word-spacing:9.299200pt;}
.ws6_c00342{word-spacing:13.408000pt;}
.ws7_c00342{word-spacing:13.452800pt;}
.ws8_c00342{word-spacing:14.092800pt;}
.ws15_c00342{word-spacing:16.659200pt;}
._2_c00342{margin-left:-4.160000pt;}
._0_c00342{margin-left:-1.175680pt;}
._1_c00342{width:0.896000pt;}
.fs5_c00342{font-size:34.560000pt;}
.fs3_c00342{font-size:37.440000pt;}
.fs4_c00342{font-size:42.560000pt;}
.fs1_c00342{font-size:48.000000pt;}
.fs0_c00342{font-size:53.440000pt;}
.fs2_c00342{font-size:64.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y3_c00342{bottom:51.067067pt;}
.y25_c00342{bottom:101.068667pt;}
.y24_c00342{bottom:117.390427pt;}
.y23_c00342{bottom:133.628800pt;}
.y22_c00342{bottom:149.865440pt;}
.y21_c00342{bottom:166.200347pt;}
.y20_c00342{bottom:182.436987pt;}
.y1f_c00342{bottom:198.673627pt;}
.y1e_c00342{bottom:214.995387pt;}
.y1d_c00342{bottom:231.232027pt;}
.y1c_c00342{bottom:247.468667pt;}
.y1b_c00342{bottom:263.790427pt;}
.y1a_c00342{bottom:280.027067pt;}
.y19_c00342{bottom:293.547067pt;}
.y18_c00342{bottom:311.947067pt;}
.y17_c00342{bottom:330.347067pt;}
.y16_c00342{bottom:447.547067pt;}
.y15_c00342{bottom:478.187067pt;}
.y14_c00342{bottom:508.747067pt;}
.y13_c00342{bottom:539.387067pt;}
.y12_c00342{bottom:569.947067pt;}
.y11_c00342{bottom:600.587067pt;}
.y10_c00342{bottom:631.147067pt;}
.yf_c00342{bottom:661.787067pt;}
.ye_c00342{bottom:692.347067pt;}
.yd_c00342{bottom:722.987067pt;}
.yc_c00342{bottom:769.547067pt;}
.yb_c00342{bottom:800.187067pt;}
.ya_c00342{bottom:830.747067pt;}
.y9_c00342{bottom:861.387067pt;}
.y8_c00342{bottom:891.947067pt;}
.y7_c00342{bottom:922.587067pt;}
.y6_c00342{bottom:953.147067pt;}
.y5_c00342{bottom:983.787067pt;}
.y4_c00342{bottom:1014.347067pt;}
.y2_c00342{bottom:1046.987067pt;}
.y1_c00342{bottom:1063.867067pt;}
.h8_c00342{height:42.656250pt;}
.h9_c00342{height:44.388750pt;}
.h1_c00342{height:44.724687pt;}
.h2_c00342{height:50.062500pt;}
.h5_c00342{height:53.562500pt;}
.h6_c00342{height:57.894063pt;}
.h7_c00342{height:57.894596pt;}
.h3_c00342{height:64.142500pt;}
.h4_c00342{height:66.750000pt;}
.h0_c00342{height:1122.666667pt;}
.w1_c00342{width:793.333333pt;}
.w0_c00342{width:793.626667pt;}
.x0_c00342{left:0.000000pt;}
.x1_c00342{left:113.440000pt;}
.x2_c00342{left:137.440000pt;}
.x3_c00342{left:161.440000pt;}
.x4_c00342{left:184.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_37b053b9b9f7b1aad52100ba.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_726a2ffb41cd5eee12fdc375.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_99eaf5a7f5889653885829d5.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00343;src:url('chunks/assets/font_793eebb75a715d90efd3bf01.woff2')format("woff");}.ff5_c00343{font-family:ff5_c00343;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_c00343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.v1_c00343{vertical-align:29.880000px;}
.ls14_c00343{letter-spacing:-0.151200px;}
.ls15_c00343{letter-spacing:-0.050400px;}
.ls1c_c00343{letter-spacing:-0.036000px;}
.ls16_c00343{letter-spacing:-0.028800px;}
.ls19_c00343{letter-spacing:-0.021600px;}
.ls1a_c00343{letter-spacing:-0.014400px;}
.ls1e_c00343{letter-spacing:-0.011664px;}
.ls1d_c00343{letter-spacing:-0.007776px;}
.ls17_c00343{letter-spacing:-0.007200px;}
.ls20_c00343{letter-spacing:-0.003888px;}
.ls13_c00343{letter-spacing:0.000000px;}
.ls21_c00343{letter-spacing:0.003888px;}
.ls10_c00343{letter-spacing:0.004788px;}
.ls4_c00343{letter-spacing:0.007200px;}
.ls12_c00343{letter-spacing:0.019152px;}
.ls5_c00343{letter-spacing:0.021600px;}
.ls8_c00343{letter-spacing:0.023940px;}
.ls7_c00343{letter-spacing:0.028728px;}
.ls6_c00343{letter-spacing:0.028800px;}
.ls1b_c00343{letter-spacing:0.036000px;}
.ls0_c00343{letter-spacing:0.036072px;}
.lsc_c00343{letter-spacing:0.038304px;}
.lsa_c00343{letter-spacing:0.043092px;}
.lsb_c00343{letter-spacing:0.047880px;}
.ls9_c00343{letter-spacing:0.052668px;}
.ls3_c00343{letter-spacing:0.054756px;}
.lsd_c00343{letter-spacing:0.062244px;}
.ls11_c00343{letter-spacing:0.067032px;}
.ls18_c00343{letter-spacing:0.093600px;}
.lse_c00343{letter-spacing:0.104040px;}
.ls1_c00343{letter-spacing:0.144000px;}
.lsf_c00343{letter-spacing:0.350640px;}
.ls1f_c00343{letter-spacing:0.361584px;}
.ls2_c00343{letter-spacing:62.064000px;}
.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;}
}
.ws1_c00343{word-spacing:-18.028800px;}
.ws4_c00343{word-spacing:-13.310640px;}
.ws3_c00343{word-spacing:-11.170224px;}
.ws5_c00343{word-spacing:-10.812528px;}
.ws2_c00343{word-spacing:-10.800864px;}
.ws0_c00343{word-spacing:-10.584756px;}
.ws6_c00343{word-spacing:-0.306612px;}
.ws1e_c00343{word-spacing:-0.093600px;}
.ws36_c00343{word-spacing:-0.028728px;}
.ws2a_c00343{word-spacing:-0.009576px;}
.ws2b_c00343{word-spacing:-0.004788px;}
.ws7_c00343{word-spacing:0.000000px;}
.ws1d_c00343{word-spacing:0.007200px;}
.ws13_c00343{word-spacing:0.014400px;}
.ws37_c00343{word-spacing:0.019152px;}
.wsd_c00343{word-spacing:0.021600px;}
.ws31_c00343{word-spacing:0.316008px;}
.ws32_c00343{word-spacing:0.354312px;}
.ws33_c00343{word-spacing:0.373464px;}
.ws23_c00343{word-spacing:0.432000px;}
.ws24_c00343{word-spacing:0.482400px;}
.ws2c_c00343{word-spacing:3.567060px;}
.ws2d_c00343{word-spacing:3.571848px;}
.ws12_c00343{word-spacing:3.628800px;}
.ws11_c00343{word-spacing:3.722400px;}
.ws22_c00343{word-spacing:3.974400px;}
.ws21_c00343{word-spacing:4.010400px;}
.wsf_c00343{word-spacing:4.672800px;}
.ws10_c00343{word-spacing:4.737600px;}
.wsb_c00343{word-spacing:5.047200px;}
.wsa_c00343{word-spacing:5.061600px;}
.ws9_c00343{word-spacing:5.428800px;}
.ws8_c00343{word-spacing:5.522400px;}
.ws19_c00343{word-spacing:6.501600px;}
.ws1a_c00343{word-spacing:6.559200px;}
.ws28_c00343{word-spacing:6.854400px;}
.ws29_c00343{word-spacing:6.876000px;}
.ws18_c00343{word-spacing:7.567200px;}
.ws16_c00343{word-spacing:7.977600px;}
.ws17_c00343{word-spacing:7.999200px;}
.ws2e_c00343{word-spacing:8.249724px;}
.ws2f_c00343{word-spacing:8.259300px;}
.ws30_c00343{word-spacing:8.273664px;}
.ws34_c00343{word-spacing:10.389960px;}
.ws35_c00343{word-spacing:10.418688px;}
.ws25_c00343{word-spacing:11.570400px;}
.ws15_c00343{word-spacing:12.931200px;}
.ws14_c00343{word-spacing:12.996000px;}
.ws1b_c00343{word-spacing:13.672800px;}
.ws1c_c00343{word-spacing:13.680000px;}
.ws20_c00343{word-spacing:19.432800px;}
.ws1f_c00343{word-spacing:19.548000px;}
.ws27_c00343{word-spacing:19.864800px;}
.ws26_c00343{word-spacing:19.893600px;}
.wsc_c00343{word-spacing:21.988800px;}
.wse_c00343{word-spacing:24.141600px;}
._0_c00343{margin-left:-1.022040px;}
._1_c00343{width:1.231200px;}
.fc0_c00343{color:rgb(0,0,0);}
.fs5_c00343{font-size:38.880000px;}
.fs3_c00343{font-size:42.120000px;}
.fs4_c00343{font-size:47.880000px;}
.fs2_c00343{font-size:54.000000px;}
.fs0_c00343{font-size:60.120000px;}
.fs1_c00343{font-size:72.000000px;}
.y0_c00343{bottom:0.000000px;}
.y3_c00343{bottom:57.450450px;}
.y4_c00343{bottom:61.410450px;}
.y2a_c00343{bottom:113.710350px;}
.y29_c00343{bottom:132.072330px;}
.y28_c00343{bottom:150.338550px;}
.y27_c00343{bottom:168.604770px;}
.y26_c00343{bottom:186.966750px;}
.y25_c00343{bottom:205.232970px;}
.y24_c00343{bottom:223.499190px;}
.y23_c00343{bottom:237.364950px;}
.y22_c00343{bottom:251.141250px;}
.y21_c00343{bottom:264.906750px;}
.y20_c00343{bottom:278.768010px;}
.y1f_c00343{bottom:297.034230px;}
.y1e_c00343{bottom:315.300450px;}
.y1d_c00343{bottom:330.510450px;}
.y1c_c00343{bottom:351.210450px;}
.y1b_c00343{bottom:371.910600px;}
.y1a_c00343{bottom:400.260600px;}
.y19_c00343{bottom:434.640600px;}
.y18_c00343{bottom:469.110450px;}
.y17_c00343{bottom:503.490450px;}
.y16_c00343{bottom:537.960450px;}
.y15_c00343{bottom:572.340450px;}
.y14_c00343{bottom:606.810450px;}
.y13_c00343{bottom:659.190450px;}
.y12_c00343{bottom:693.660450px;}
.y11_c00343{bottom:728.040450px;}
.y10_c00343{bottom:762.510450px;}
.yf_c00343{bottom:796.890450px;}
.ye_c00343{bottom:831.360450px;}
.yd_c00343{bottom:865.740450px;}
.yc_c00343{bottom:900.210450px;}
.yb_c00343{bottom:934.590450px;}
.ya_c00343{bottom:969.060450px;}
.y9_c00343{bottom:1003.440450px;}
.y8_c00343{bottom:1037.910450px;}
.y7_c00343{bottom:1072.290450px;}
.y6_c00343{bottom:1106.760450px;}
.y5_c00343{bottom:1141.140450px;}
.y2_c00343{bottom:1173.810450px;}
.y1_c00343{bottom:1196.850450px;}
.h2_c00343{height:47.988281px;}
.h7_c00343{height:49.937344px;}
.h1_c00343{height:50.315273px;}
.h3_c00343{height:56.320312px;}
.h6_c00343{height:60.257812px;}
.h5_c00343{height:65.130820px;}
.h4_c00343{height:75.093750px;}
.h0_c00343{height:1263.000000px;}
.w1_c00343{width:892.500000px;}
.w0_c00343{width:892.830000px;}
.x0_c00343{left:0.000000px;}
.x2_c00343{left:127.620000px;}
.x5_c00343{left:154.620000px;}
.x6_c00343{left:181.620000px;}
.x7_c00343{left:207.180000px;}
.x4_c00343{left:435.240000px;}
.x3_c00343{left:446.490000px;}
.x1_c00343{left:490.770000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.v1_c00343{vertical-align:26.560000pt;}
.ls14_c00343{letter-spacing:-0.134400pt;}
.ls15_c00343{letter-spacing:-0.044800pt;}
.ls1c_c00343{letter-spacing:-0.032000pt;}
.ls16_c00343{letter-spacing:-0.025600pt;}
.ls19_c00343{letter-spacing:-0.019200pt;}
.ls1a_c00343{letter-spacing:-0.012800pt;}
.ls1e_c00343{letter-spacing:-0.010368pt;}
.ls1d_c00343{letter-spacing:-0.006912pt;}
.ls17_c00343{letter-spacing:-0.006400pt;}
.ls20_c00343{letter-spacing:-0.003456pt;}
.ls13_c00343{letter-spacing:0.000000pt;}
.ls21_c00343{letter-spacing:0.003456pt;}
.ls10_c00343{letter-spacing:0.004256pt;}
.ls4_c00343{letter-spacing:0.006400pt;}
.ls12_c00343{letter-spacing:0.017024pt;}
.ls5_c00343{letter-spacing:0.019200pt;}
.ls8_c00343{letter-spacing:0.021280pt;}
.ls7_c00343{letter-spacing:0.025536pt;}
.ls6_c00343{letter-spacing:0.025600pt;}
.ls1b_c00343{letter-spacing:0.032000pt;}
.ls0_c00343{letter-spacing:0.032064pt;}
.lsc_c00343{letter-spacing:0.034048pt;}
.lsa_c00343{letter-spacing:0.038304pt;}
.lsb_c00343{letter-spacing:0.042560pt;}
.ls9_c00343{letter-spacing:0.046816pt;}
.ls3_c00343{letter-spacing:0.048672pt;}
.lsd_c00343{letter-spacing:0.055328pt;}
.ls11_c00343{letter-spacing:0.059584pt;}
.ls18_c00343{letter-spacing:0.083200pt;}
.lse_c00343{letter-spacing:0.092480pt;}
.ls1_c00343{letter-spacing:0.128000pt;}
.lsf_c00343{letter-spacing:0.311680pt;}
.ls1f_c00343{letter-spacing:0.321408pt;}
.ls2_c00343{letter-spacing:55.168000pt;}
.ws1_c00343{word-spacing:-16.025600pt;}
.ws4_c00343{word-spacing:-11.831680pt;}
.ws3_c00343{word-spacing:-9.929088pt;}
.ws5_c00343{word-spacing:-9.611136pt;}
.ws2_c00343{word-spacing:-9.600768pt;}
.ws0_c00343{word-spacing:-9.408672pt;}
.ws6_c00343{word-spacing:-0.272544pt;}
.ws1e_c00343{word-spacing:-0.083200pt;}
.ws36_c00343{word-spacing:-0.025536pt;}
.ws2a_c00343{word-spacing:-0.008512pt;}
.ws2b_c00343{word-spacing:-0.004256pt;}
.ws7_c00343{word-spacing:0.000000pt;}
.ws1d_c00343{word-spacing:0.006400pt;}
.ws13_c00343{word-spacing:0.012800pt;}
.ws37_c00343{word-spacing:0.017024pt;}
.wsd_c00343{word-spacing:0.019200pt;}
.ws31_c00343{word-spacing:0.280896pt;}
.ws32_c00343{word-spacing:0.314944pt;}
.ws33_c00343{word-spacing:0.331968pt;}
.ws23_c00343{word-spacing:0.384000pt;}
.ws24_c00343{word-spacing:0.428800pt;}
.ws2c_c00343{word-spacing:3.170720pt;}
.ws2d_c00343{word-spacing:3.174976pt;}
.ws12_c00343{word-spacing:3.225600pt;}
.ws11_c00343{word-spacing:3.308800pt;}
.ws22_c00343{word-spacing:3.532800pt;}
.ws21_c00343{word-spacing:3.564800pt;}
.wsf_c00343{word-spacing:4.153600pt;}
.ws10_c00343{word-spacing:4.211200pt;}
.wsb_c00343{word-spacing:4.486400pt;}
.wsa_c00343{word-spacing:4.499200pt;}
.ws9_c00343{word-spacing:4.825600pt;}
.ws8_c00343{word-spacing:4.908800pt;}
.ws19_c00343{word-spacing:5.779200pt;}
.ws1a_c00343{word-spacing:5.830400pt;}
.ws28_c00343{word-spacing:6.092800pt;}
.ws29_c00343{word-spacing:6.112000pt;}
.ws18_c00343{word-spacing:6.726400pt;}
.ws16_c00343{word-spacing:7.091200pt;}
.ws17_c00343{word-spacing:7.110400pt;}
.ws2e_c00343{word-spacing:7.333088pt;}
.ws2f_c00343{word-spacing:7.341600pt;}
.ws30_c00343{word-spacing:7.354368pt;}
.ws34_c00343{word-spacing:9.235520pt;}
.ws35_c00343{word-spacing:9.261056pt;}
.ws25_c00343{word-spacing:10.284800pt;}
.ws15_c00343{word-spacing:11.494400pt;}
.ws14_c00343{word-spacing:11.552000pt;}
.ws1b_c00343{word-spacing:12.153600pt;}
.ws1c_c00343{word-spacing:12.160000pt;}
.ws20_c00343{word-spacing:17.273600pt;}
.ws1f_c00343{word-spacing:17.376000pt;}
.ws27_c00343{word-spacing:17.657600pt;}
.ws26_c00343{word-spacing:17.683200pt;}
.wsc_c00343{word-spacing:19.545600pt;}
.wse_c00343{word-spacing:21.459200pt;}
._0_c00343{margin-left:-0.908480pt;}
._1_c00343{width:1.094400pt;}
.fs5_c00343{font-size:34.560000pt;}
.fs3_c00343{font-size:37.440000pt;}
.fs4_c00343{font-size:42.560000pt;}
.fs2_c00343{font-size:48.000000pt;}
.fs0_c00343{font-size:53.440000pt;}
.fs1_c00343{font-size:64.000000pt;}
.y0_c00343{bottom:0.000000pt;}
.y3_c00343{bottom:51.067067pt;}
.y4_c00343{bottom:54.587067pt;}
.y2a_c00343{bottom:101.075867pt;}
.y29_c00343{bottom:117.397627pt;}
.y28_c00343{bottom:133.634267pt;}
.y27_c00343{bottom:149.870907pt;}
.y26_c00343{bottom:166.192667pt;}
.y25_c00343{bottom:182.429307pt;}
.y24_c00343{bottom:198.665947pt;}
.y23_c00343{bottom:210.991067pt;}
.y22_c00343{bottom:223.236667pt;}
.y21_c00343{bottom:235.472667pt;}
.y20_c00343{bottom:247.793787pt;}
.y1f_c00343{bottom:264.030427pt;}
.y1e_c00343{bottom:280.267067pt;}
.y1d_c00343{bottom:293.787067pt;}
.y1c_c00343{bottom:312.187067pt;}
.y1b_c00343{bottom:330.587200pt;}
.y1a_c00343{bottom:355.787200pt;}
.y19_c00343{bottom:386.347200pt;}
.y18_c00343{bottom:416.987067pt;}
.y17_c00343{bottom:447.547067pt;}
.y16_c00343{bottom:478.187067pt;}
.y15_c00343{bottom:508.747067pt;}
.y14_c00343{bottom:539.387067pt;}
.y13_c00343{bottom:585.947067pt;}
.y12_c00343{bottom:616.587067pt;}
.y11_c00343{bottom:647.147067pt;}
.y10_c00343{bottom:677.787067pt;}
.yf_c00343{bottom:708.347067pt;}
.ye_c00343{bottom:738.987067pt;}
.yd_c00343{bottom:769.547067pt;}
.yc_c00343{bottom:800.187067pt;}
.yb_c00343{bottom:830.747067pt;}
.ya_c00343{bottom:861.387067pt;}
.y9_c00343{bottom:891.947067pt;}
.y8_c00343{bottom:922.587067pt;}
.y7_c00343{bottom:953.147067pt;}
.y6_c00343{bottom:983.787067pt;}
.y5_c00343{bottom:1014.347067pt;}
.y2_c00343{bottom:1043.387067pt;}
.y1_c00343{bottom:1063.867067pt;}
.h2_c00343{height:42.656250pt;}
.h7_c00343{height:44.388750pt;}
.h1_c00343{height:44.724687pt;}
.h3_c00343{height:50.062500pt;}
.h6_c00343{height:53.562500pt;}
.h5_c00343{height:57.894063pt;}
.h4_c00343{height:66.750000pt;}
.h0_c00343{height:1122.666667pt;}
.w1_c00343{width:793.333333pt;}
.w0_c00343{width:793.626667pt;}
.x0_c00343{left:0.000000pt;}
.x2_c00343{left:113.440000pt;}
.x5_c00343{left:137.440000pt;}
.x6_c00343{left:161.440000pt;}
.x7_c00343{left:184.160000pt;}
.x4_c00343{left:386.880000pt;}
.x3_c00343{left:396.880000pt;}
.x1_c00343{left:436.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_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_6129cc1de1403ae04dd1ce6d.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.100098;font-style:normal;font-weight:normal;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_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;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_c00344;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00344;src:url('chunks/assets/font_6f22dc3479550cd77977868a.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:1.102051;font-style:normal;font-weight:normal;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_6331ea38b92f8142964e217c.woff2')format("woff");}.ff5_c00344{font-family:ff5_c00344;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00344{vertical-align:15.840000px;}
.v2_c00344{vertical-align:29.880000px;}
.lsc_c00344{letter-spacing:-0.151200px;}
.ls14_c00344{letter-spacing:-0.108000px;}
.ls15_c00344{letter-spacing:-0.064800px;}
.ls13_c00344{letter-spacing:-0.057600px;}
.ls12_c00344{letter-spacing:-0.043200px;}
.lsf_c00344{letter-spacing:-0.036000px;}
.ls17_c00344{letter-spacing:-0.028800px;}
.lsd_c00344{letter-spacing:-0.021600px;}
.ls11_c00344{letter-spacing:-0.014400px;}
.lse_c00344{letter-spacing:-0.007200px;}
.lsb_c00344{letter-spacing:0.000000px;}
.ls2_c00344{letter-spacing:0.007200px;}
.ls16_c00344{letter-spacing:0.014400px;}
.lsa_c00344{letter-spacing:0.019152px;}
.ls9_c00344{letter-spacing:0.023940px;}
.ls8_c00344{letter-spacing:0.028728px;}
.ls3_c00344{letter-spacing:0.028800px;}
.ls0_c00344{letter-spacing:0.048096px;}
.ls4_c00344{letter-spacing:0.054756px;}
.ls10_c00344{letter-spacing:0.093600px;}
.ls6_c00344{letter-spacing:0.144000px;}
.ls5_c00344{letter-spacing:0.360000px;}
.ls7_c00344{letter-spacing:65.304000px;}
.ls1_c00344{letter-spacing:1212.120000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00344{word-spacing:-17.942400px;}
.ws2_c00344{word-spacing:-17.935200px;}
.ws0_c00344{word-spacing:-10.584756px;}
.ws29_c00344{word-spacing:-0.009576px;}
.ws2a_c00344{word-spacing:-0.004788px;}
.ws4_c00344{word-spacing:0.000000px;}
.wsc_c00344{word-spacing:0.007200px;}
.ws14_c00344{word-spacing:0.014400px;}
.ws3_c00344{word-spacing:0.042084px;}
.wsb_c00344{word-spacing:0.396000px;}
.ws27_c00344{word-spacing:0.403200px;}
.ws28_c00344{word-spacing:0.439200px;}
.wsa_c00344{word-spacing:0.453600px;}
.ws11_c00344{word-spacing:1.828800px;}
.ws19_c00344{word-spacing:2.541600px;}
.ws5_c00344{word-spacing:3.232800px;}
.ws6_c00344{word-spacing:3.261600px;}
.ws7_c00344{word-spacing:3.441600px;}
.wse_c00344{word-spacing:5.061600px;}
.wsd_c00344{word-spacing:5.126400px;}
.wsf_c00344{word-spacing:5.724000px;}
.ws18_c00344{word-spacing:5.752800px;}
.ws10_c00344{word-spacing:5.788800px;}
.ws22_c00344{word-spacing:6.825600px;}
.ws21_c00344{word-spacing:6.854400px;}
.ws23_c00344{word-spacing:8.258400px;}
.ws24_c00344{word-spacing:8.308800px;}
.ws26_c00344{word-spacing:8.719200px;}
.ws25_c00344{word-spacing:8.726400px;}
.ws17_c00344{word-spacing:10.072800px;}
.ws8_c00344{word-spacing:13.672800px;}
.ws9_c00344{word-spacing:13.687200px;}
.ws1c_c00344{word-spacing:14.011200px;}
.ws1b_c00344{word-spacing:14.054400px;}
.ws1a_c00344{word-spacing:14.140800px;}
.ws12_c00344{word-spacing:22.579200px;}
.ws13_c00344{word-spacing:22.629600px;}
.ws16_c00344{word-spacing:25.480800px;}
.ws15_c00344{word-spacing:25.596000px;}
.ws1f_c00344{word-spacing:25.941600px;}
.ws20_c00344{word-spacing:26.028000px;}
.ws1e_c00344{word-spacing:27.000000px;}
.ws1d_c00344{word-spacing:27.007200px;}
._0_c00344{margin-left:-1.322640px;}
._1_c00344{width:1.000800px;}
.fc0_c00344{color:rgb(0,0,0);}
.fs3_c00344{font-size:42.120000px;}
.fs4_c00344{font-size:47.880000px;}
.fs1_c00344{font-size:54.000000px;}
.fs0_c00344{font-size:60.120000px;}
.fs2_c00344{font-size:72.000000px;}
.y0_c00344{bottom:0.000000px;}
.y3_c00344{bottom:57.450450px;}
.y27_c00344{bottom:113.715210px;}
.y26_c00344{bottom:132.077190px;}
.y25_c00344{bottom:150.343410px;}
.y24_c00344{bottom:168.609630px;}
.y23_c00344{bottom:186.971610px;}
.y22_c00344{bottom:205.237830px;}
.y21_c00344{bottom:223.504050px;}
.y20_c00344{bottom:241.866030px;}
.y1f_c00344{bottom:260.132250px;}
.y1e_c00344{bottom:278.398470px;}
.y1d_c00344{bottom:296.760450px;}
.y1c_c00344{bottom:311.970450px;}
.y1b_c00344{bottom:332.580450px;}
.y1a_c00344{bottom:353.280450px;}
.y19_c00344{bottom:400.260450px;}
.y18_c00344{bottom:434.640450px;}
.y17_c00344{bottom:469.110450px;}
.y16_c00344{bottom:503.490450px;}
.y15_c00344{bottom:555.960450px;}
.y14_c00344{bottom:590.340450px;}
.y13_c00344{bottom:624.810450px;}
.y12_c00344{bottom:659.190450px;}
.y11_c00344{bottom:693.660450px;}
.y10_c00344{bottom:728.040450px;}
.yf_c00344{bottom:762.510450px;}
.ye_c00344{bottom:796.890450px;}
.yd_c00344{bottom:831.360450px;}
.yc_c00344{bottom:865.740450px;}
.yb_c00344{bottom:900.210450px;}
.ya_c00344{bottom:934.590450px;}
.y9_c00344{bottom:969.060450px;}
.y8_c00344{bottom:1003.440450px;}
.y7_c00344{bottom:1037.910450px;}
.y6_c00344{bottom:1072.290450px;}
.y5_c00344{bottom:1106.760450px;}
.y4_c00344{bottom:1141.140450px;}
.y2_c00344{bottom:1177.860450px;}
.y1_c00344{bottom:1196.850450px;}
.h8_c00344{height:47.988281px;}
.h9_c00344{height:49.937344px;}
.h1_c00344{height:50.315273px;}
.h2_c00344{height:56.320312px;}
.h5_c00344{height:60.257812px;}
.h6_c00344{height:60.890625px;}
.h4_c00344{height:65.130820px;}
.h3_c00344{height:72.160312px;}
.h7_c00344{height:75.093750px;}
.h0_c00344{height:1263.000000px;}
.w1_c00344{width:892.500000px;}
.w0_c00344{width:892.830000px;}
.x0_c00344{left:0.000000px;}
.x1_c00344{left:127.620000px;}
.x4_c00344{left:154.620000px;}
.x2_c00344{left:180.810000px;}
.x3_c00344{left:207.180000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.v1_c00344{vertical-align:14.080000pt;}
.v2_c00344{vertical-align:26.560000pt;}
.lsc_c00344{letter-spacing:-0.134400pt;}
.ls14_c00344{letter-spacing:-0.096000pt;}
.ls15_c00344{letter-spacing:-0.057600pt;}
.ls13_c00344{letter-spacing:-0.051200pt;}
.ls12_c00344{letter-spacing:-0.038400pt;}
.lsf_c00344{letter-spacing:-0.032000pt;}
.ls17_c00344{letter-spacing:-0.025600pt;}
.lsd_c00344{letter-spacing:-0.019200pt;}
.ls11_c00344{letter-spacing:-0.012800pt;}
.lse_c00344{letter-spacing:-0.006400pt;}
.lsb_c00344{letter-spacing:0.000000pt;}
.ls2_c00344{letter-spacing:0.006400pt;}
.ls16_c00344{letter-spacing:0.012800pt;}
.lsa_c00344{letter-spacing:0.017024pt;}
.ls9_c00344{letter-spacing:0.021280pt;}
.ls8_c00344{letter-spacing:0.025536pt;}
.ls3_c00344{letter-spacing:0.025600pt;}
.ls0_c00344{letter-spacing:0.042752pt;}
.ls4_c00344{letter-spacing:0.048672pt;}
.ls10_c00344{letter-spacing:0.083200pt;}
.ls6_c00344{letter-spacing:0.128000pt;}
.ls5_c00344{letter-spacing:0.320000pt;}
.ls7_c00344{letter-spacing:58.048000pt;}
.ls1_c00344{letter-spacing:1077.440000pt;}
.ws1_c00344{word-spacing:-15.948800pt;}
.ws2_c00344{word-spacing:-15.942400pt;}
.ws0_c00344{word-spacing:-9.408672pt;}
.ws29_c00344{word-spacing:-0.008512pt;}
.ws2a_c00344{word-spacing:-0.004256pt;}
.ws4_c00344{word-spacing:0.000000pt;}
.wsc_c00344{word-spacing:0.006400pt;}
.ws14_c00344{word-spacing:0.012800pt;}
.ws3_c00344{word-spacing:0.037408pt;}
.wsb_c00344{word-spacing:0.352000pt;}
.ws27_c00344{word-spacing:0.358400pt;}
.ws28_c00344{word-spacing:0.390400pt;}
.wsa_c00344{word-spacing:0.403200pt;}
.ws11_c00344{word-spacing:1.625600pt;}
.ws19_c00344{word-spacing:2.259200pt;}
.ws5_c00344{word-spacing:2.873600pt;}
.ws6_c00344{word-spacing:2.899200pt;}
.ws7_c00344{word-spacing:3.059200pt;}
.wse_c00344{word-spacing:4.499200pt;}
.wsd_c00344{word-spacing:4.556800pt;}
.wsf_c00344{word-spacing:5.088000pt;}
.ws18_c00344{word-spacing:5.113600pt;}
.ws10_c00344{word-spacing:5.145600pt;}
.ws22_c00344{word-spacing:6.067200pt;}
.ws21_c00344{word-spacing:6.092800pt;}
.ws23_c00344{word-spacing:7.340800pt;}
.ws24_c00344{word-spacing:7.385600pt;}
.ws26_c00344{word-spacing:7.750400pt;}
.ws25_c00344{word-spacing:7.756800pt;}
.ws17_c00344{word-spacing:8.953600pt;}
.ws8_c00344{word-spacing:12.153600pt;}
.ws9_c00344{word-spacing:12.166400pt;}
.ws1c_c00344{word-spacing:12.454400pt;}
.ws1b_c00344{word-spacing:12.492800pt;}
.ws1a_c00344{word-spacing:12.569600pt;}
.ws12_c00344{word-spacing:20.070400pt;}
.ws13_c00344{word-spacing:20.115200pt;}
.ws16_c00344{word-spacing:22.649600pt;}
.ws15_c00344{word-spacing:22.752000pt;}
.ws1f_c00344{word-spacing:23.059200pt;}
.ws20_c00344{word-spacing:23.136000pt;}
.ws1e_c00344{word-spacing:24.000000pt;}
.ws1d_c00344{word-spacing:24.006400pt;}
._0_c00344{margin-left:-1.175680pt;}
._1_c00344{width:0.889600pt;}
.fs3_c00344{font-size:37.440000pt;}
.fs4_c00344{font-size:42.560000pt;}
.fs1_c00344{font-size:48.000000pt;}
.fs0_c00344{font-size:53.440000pt;}
.fs2_c00344{font-size:64.000000pt;}
.y0_c00344{bottom:0.000000pt;}
.y3_c00344{bottom:51.067067pt;}
.y27_c00344{bottom:101.080187pt;}
.y26_c00344{bottom:117.401947pt;}
.y25_c00344{bottom:133.638587pt;}
.y24_c00344{bottom:149.875227pt;}
.y23_c00344{bottom:166.196987pt;}
.y22_c00344{bottom:182.433627pt;}
.y21_c00344{bottom:198.670267pt;}
.y20_c00344{bottom:214.992027pt;}
.y1f_c00344{bottom:231.228667pt;}
.y1e_c00344{bottom:247.465307pt;}
.y1d_c00344{bottom:263.787067pt;}
.y1c_c00344{bottom:277.307067pt;}
.y1b_c00344{bottom:295.627067pt;}
.y1a_c00344{bottom:314.027067pt;}
.y19_c00344{bottom:355.787067pt;}
.y18_c00344{bottom:386.347067pt;}
.y17_c00344{bottom:416.987067pt;}
.y16_c00344{bottom:447.547067pt;}
.y15_c00344{bottom:494.187067pt;}
.y14_c00344{bottom:524.747067pt;}
.y13_c00344{bottom:555.387067pt;}
.y12_c00344{bottom:585.947067pt;}
.y11_c00344{bottom:616.587067pt;}
.y10_c00344{bottom:647.147067pt;}
.yf_c00344{bottom:677.787067pt;}
.ye_c00344{bottom:708.347067pt;}
.yd_c00344{bottom:738.987067pt;}
.yc_c00344{bottom:769.547067pt;}
.yb_c00344{bottom:800.187067pt;}
.ya_c00344{bottom:830.747067pt;}
.y9_c00344{bottom:861.387067pt;}
.y8_c00344{bottom:891.947067pt;}
.y7_c00344{bottom:922.587067pt;}
.y6_c00344{bottom:953.147067pt;}
.y5_c00344{bottom:983.787067pt;}
.y4_c00344{bottom:1014.347067pt;}
.y2_c00344{bottom:1046.987067pt;}
.y1_c00344{bottom:1063.867067pt;}
.h8_c00344{height:42.656250pt;}
.h9_c00344{height:44.388750pt;}
.h1_c00344{height:44.724687pt;}
.h2_c00344{height:50.062500pt;}
.h5_c00344{height:53.562500pt;}
.h6_c00344{height:54.125000pt;}
.h4_c00344{height:57.894063pt;}
.h3_c00344{height:64.142500pt;}
.h7_c00344{height:66.750000pt;}
.h0_c00344{height:1122.666667pt;}
.w1_c00344{width:793.333333pt;}
.w0_c00344{width:793.626667pt;}
.x0_c00344{left:0.000000pt;}
.x1_c00344{left:113.440000pt;}
.x4_c00344{left:137.440000pt;}
.x2_c00344{left:160.720000pt;}
.x3_c00344{left:184.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b41c70574828c42ae28446e4.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_547cee8cbd08498afaad0f56.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00345;src:url('chunks/assets/font_9048be887158d78566587ccb.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v2_c00345{vertical-align:-29.880000px;}
.v0_c00345{vertical-align:0.000000px;}
.v1_c00345{vertical-align:29.880000px;}
.ls12_c00345{letter-spacing:-0.468000px;}
.lsb_c00345{letter-spacing:-0.151200px;}
.lse_c00345{letter-spacing:-0.050400px;}
.ls13_c00345{letter-spacing:-0.036000px;}
.lsc_c00345{letter-spacing:-0.028800px;}
.lsf_c00345{letter-spacing:-0.021600px;}
.lsd_c00345{letter-spacing:-0.014400px;}
.ls10_c00345{letter-spacing:-0.007200px;}
.lsa_c00345{letter-spacing:0.000000px;}
.ls4_c00345{letter-spacing:0.007200px;}
.ls3_c00345{letter-spacing:0.014400px;}
.ls8_c00345{letter-spacing:0.019152px;}
.ls5_c00345{letter-spacing:0.021600px;}
.ls9_c00345{letter-spacing:0.023940px;}
.ls2_c00345{letter-spacing:0.036000px;}
.ls0_c00345{letter-spacing:0.036072px;}
.ls14_c00345{letter-spacing:0.043200px;}
.ls1_c00345{letter-spacing:0.054756px;}
.ls11_c00345{letter-spacing:0.093600px;}
.ls6_c00345{letter-spacing:0.144000px;}
.ls7_c00345{letter-spacing:65.304000px;}
.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;}
}
.ws2_c00345{word-spacing:-17.985600px;}
.ws0_c00345{word-spacing:-17.971200px;}
.ws1_c00345{word-spacing:-10.584756px;}
.ws3_c00345{word-spacing:-0.306612px;}
.wsf_c00345{word-spacing:-0.007200px;}
.ws26_c00345{word-spacing:-0.004788px;}
.ws4_c00345{word-spacing:0.000000px;}
.ws7_c00345{word-spacing:0.014400px;}
.ws22_c00345{word-spacing:0.021600px;}
.ws13_c00345{word-spacing:0.028800px;}
.ws8_c00345{word-spacing:0.129600px;}
.wsc_c00345{word-spacing:1.087200px;}
.wsd_c00345{word-spacing:1.137600px;}
.ws1c_c00345{word-spacing:2.138400px;}
.ws12_c00345{word-spacing:2.174400px;}
.ws1d_c00345{word-spacing:2.253600px;}
.ws1b_c00345{word-spacing:2.282400px;}
.ws21_c00345{word-spacing:4.276800px;}
.ws1f_c00345{word-spacing:4.320000px;}
.ws20_c00345{word-spacing:4.428000px;}
.ws23_c00345{word-spacing:5.407200px;}
.ws14_c00345{word-spacing:6.141600px;}
.ws1a_c00345{word-spacing:6.163200px;}
.ws5_c00345{word-spacing:10.094400px;}
.ws6_c00345{word-spacing:10.166400px;}
.ws11_c00345{word-spacing:11.109600px;}
.ws10_c00345{word-spacing:11.181600px;}
.ws1e_c00345{word-spacing:11.880000px;}
.ws9_c00345{word-spacing:12.614400px;}
.wsa_c00345{word-spacing:12.650400px;}
.ws17_c00345{word-spacing:14.378400px;}
.ws18_c00345{word-spacing:14.392800px;}
.ws19_c00345{word-spacing:14.508000px;}
.wse_c00345{word-spacing:15.854400px;}
.ws24_c00345{word-spacing:20.088000px;}
.ws25_c00345{word-spacing:20.181600px;}
.ws16_c00345{word-spacing:23.025600px;}
.ws15_c00345{word-spacing:23.076000px;}
.wsb_c00345{word-spacing:27.784800px;}
._0_c00345{margin-left:-1.022040px;}
._1_c00345{width:1.202400px;}
.fc0_c00345{color:rgb(0,0,0);}
.fs3_c00345{font-size:42.120000px;}
.fs4_c00345{font-size:47.880000px;}
.fs2_c00345{font-size:54.000000px;}
.fs0_c00345{font-size:60.120000px;}
.fs1_c00345{font-size:72.000000px;}
.y0_c00345{bottom:0.000000px;}
.y3_c00345{bottom:57.450450px;}
.y4_c00345{bottom:61.410450px;}
.y28_c00345{bottom:113.717190px;}
.y27_c00345{bottom:132.079170px;}
.y26_c00345{bottom:150.345390px;}
.y25_c00345{bottom:168.611610px;}
.y24_c00345{bottom:186.973590px;}
.y23_c00345{bottom:205.239810px;}
.y22_c00345{bottom:223.506030px;}
.y21_c00345{bottom:241.868010px;}
.y20_c00345{bottom:260.134230px;}
.y1f_c00345{bottom:278.400450px;}
.y1e_c00345{bottom:293.610450px;}
.y1d_c00345{bottom:314.310450px;}
.y1c_c00345{bottom:335.010600px;}
.y1b_c00345{bottom:365.790450px;}
.y1a_c00345{bottom:400.260450px;}
.y19_c00345{bottom:434.640450px;}
.y18_c00345{bottom:469.110450px;}
.y17_c00345{bottom:503.490450px;}
.y16_c00345{bottom:537.960450px;}
.y15_c00345{bottom:572.340450px;}
.y14_c00345{bottom:606.810450px;}
.y13_c00345{bottom:659.190450px;}
.y12_c00345{bottom:693.660450px;}
.y11_c00345{bottom:728.040450px;}
.y10_c00345{bottom:762.510450px;}
.yf_c00345{bottom:796.890450px;}
.ye_c00345{bottom:831.360450px;}
.yd_c00345{bottom:865.740450px;}
.yc_c00345{bottom:900.210450px;}
.yb_c00345{bottom:934.590450px;}
.ya_c00345{bottom:969.060450px;}
.y9_c00345{bottom:1003.440450px;}
.y8_c00345{bottom:1037.910450px;}
.y7_c00345{bottom:1072.290450px;}
.y6_c00345{bottom:1106.760450px;}
.y5_c00345{bottom:1141.140450px;}
.y2_c00345{bottom:1173.810450px;}
.y1_c00345{bottom:1196.850450px;}
.h2_c00345{height:47.988281px;}
.h8_c00345{height:49.937344px;}
.h1_c00345{height:50.315273px;}
.h3_c00345{height:56.320312px;}
.h5_c00345{height:60.257812px;}
.h4_c00345{height:65.130820px;}
.h7_c00345{height:65.131420px;}
.h6_c00345{height:75.093750px;}
.h0_c00345{height:1263.000000px;}
.w1_c00345{width:892.500000px;}
.w0_c00345{width:892.830000px;}
.x0_c00345{left:0.000000px;}
.x2_c00345{left:127.620000px;}
.x7_c00345{left:154.620000px;}
.x5_c00345{left:181.620000px;}
.x8_c00345{left:207.180000px;}
.x6_c00345{left:208.440000px;}
.x4_c00345{left:435.240000px;}
.x3_c00345{left:446.490000px;}
.x1_c00345{left:490.770000px;}
@media print{
.v2_c00345{vertical-align:-26.560000pt;}
.v0_c00345{vertical-align:0.000000pt;}
.v1_c00345{vertical-align:26.560000pt;}
.ls12_c00345{letter-spacing:-0.416000pt;}
.lsb_c00345{letter-spacing:-0.134400pt;}
.lse_c00345{letter-spacing:-0.044800pt;}
.ls13_c00345{letter-spacing:-0.032000pt;}
.lsc_c00345{letter-spacing:-0.025600pt;}
.lsf_c00345{letter-spacing:-0.019200pt;}
.lsd_c00345{letter-spacing:-0.012800pt;}
.ls10_c00345{letter-spacing:-0.006400pt;}
.lsa_c00345{letter-spacing:0.000000pt;}
.ls4_c00345{letter-spacing:0.006400pt;}
.ls3_c00345{letter-spacing:0.012800pt;}
.ls8_c00345{letter-spacing:0.017024pt;}
.ls5_c00345{letter-spacing:0.019200pt;}
.ls9_c00345{letter-spacing:0.021280pt;}
.ls2_c00345{letter-spacing:0.032000pt;}
.ls0_c00345{letter-spacing:0.032064pt;}
.ls14_c00345{letter-spacing:0.038400pt;}
.ls1_c00345{letter-spacing:0.048672pt;}
.ls11_c00345{letter-spacing:0.083200pt;}
.ls6_c00345{letter-spacing:0.128000pt;}
.ls7_c00345{letter-spacing:58.048000pt;}
.ws2_c00345{word-spacing:-15.987200pt;}
.ws0_c00345{word-spacing:-15.974400pt;}
.ws1_c00345{word-spacing:-9.408672pt;}
.ws3_c00345{word-spacing:-0.272544pt;}
.wsf_c00345{word-spacing:-0.006400pt;}
.ws26_c00345{word-spacing:-0.004256pt;}
.ws4_c00345{word-spacing:0.000000pt;}
.ws7_c00345{word-spacing:0.012800pt;}
.ws22_c00345{word-spacing:0.019200pt;}
.ws13_c00345{word-spacing:0.025600pt;}
.ws8_c00345{word-spacing:0.115200pt;}
.wsc_c00345{word-spacing:0.966400pt;}
.wsd_c00345{word-spacing:1.011200pt;}
.ws1c_c00345{word-spacing:1.900800pt;}
.ws12_c00345{word-spacing:1.932800pt;}
.ws1d_c00345{word-spacing:2.003200pt;}
.ws1b_c00345{word-spacing:2.028800pt;}
.ws21_c00345{word-spacing:3.801600pt;}
.ws1f_c00345{word-spacing:3.840000pt;}
.ws20_c00345{word-spacing:3.936000pt;}
.ws23_c00345{word-spacing:4.806400pt;}
.ws14_c00345{word-spacing:5.459200pt;}
.ws1a_c00345{word-spacing:5.478400pt;}
.ws5_c00345{word-spacing:8.972800pt;}
.ws6_c00345{word-spacing:9.036800pt;}
.ws11_c00345{word-spacing:9.875200pt;}
.ws10_c00345{word-spacing:9.939200pt;}
.ws1e_c00345{word-spacing:10.560000pt;}
.ws9_c00345{word-spacing:11.212800pt;}
.wsa_c00345{word-spacing:11.244800pt;}
.ws17_c00345{word-spacing:12.780800pt;}
.ws18_c00345{word-spacing:12.793600pt;}
.ws19_c00345{word-spacing:12.896000pt;}
.wse_c00345{word-spacing:14.092800pt;}
.ws24_c00345{word-spacing:17.856000pt;}
.ws25_c00345{word-spacing:17.939200pt;}
.ws16_c00345{word-spacing:20.467200pt;}
.ws15_c00345{word-spacing:20.512000pt;}
.wsb_c00345{word-spacing:24.697600pt;}
._0_c00345{margin-left:-0.908480pt;}
._1_c00345{width:1.068800pt;}
.fs3_c00345{font-size:37.440000pt;}
.fs4_c00345{font-size:42.560000pt;}
.fs2_c00345{font-size:48.000000pt;}
.fs0_c00345{font-size:53.440000pt;}
.fs1_c00345{font-size:64.000000pt;}
.y0_c00345{bottom:0.000000pt;}
.y3_c00345{bottom:51.067067pt;}
.y4_c00345{bottom:54.587067pt;}
.y28_c00345{bottom:101.081947pt;}
.y27_c00345{bottom:117.403707pt;}
.y26_c00345{bottom:133.640347pt;}
.y25_c00345{bottom:149.876987pt;}
.y24_c00345{bottom:166.198747pt;}
.y23_c00345{bottom:182.435387pt;}
.y22_c00345{bottom:198.672027pt;}
.y21_c00345{bottom:214.993787pt;}
.y20_c00345{bottom:231.230427pt;}
.y1f_c00345{bottom:247.467067pt;}
.y1e_c00345{bottom:260.987067pt;}
.y1d_c00345{bottom:279.387067pt;}
.y1c_c00345{bottom:297.787200pt;}
.y1b_c00345{bottom:325.147067pt;}
.y1a_c00345{bottom:355.787067pt;}
.y19_c00345{bottom:386.347067pt;}
.y18_c00345{bottom:416.987067pt;}
.y17_c00345{bottom:447.547067pt;}
.y16_c00345{bottom:478.187067pt;}
.y15_c00345{bottom:508.747067pt;}
.y14_c00345{bottom:539.387067pt;}
.y13_c00345{bottom:585.947067pt;}
.y12_c00345{bottom:616.587067pt;}
.y11_c00345{bottom:647.147067pt;}
.y10_c00345{bottom:677.787067pt;}
.yf_c00345{bottom:708.347067pt;}
.ye_c00345{bottom:738.987067pt;}
.yd_c00345{bottom:769.547067pt;}
.yc_c00345{bottom:800.187067pt;}
.yb_c00345{bottom:830.747067pt;}
.ya_c00345{bottom:861.387067pt;}
.y9_c00345{bottom:891.947067pt;}
.y8_c00345{bottom:922.587067pt;}
.y7_c00345{bottom:953.147067pt;}
.y6_c00345{bottom:983.787067pt;}
.y5_c00345{bottom:1014.347067pt;}
.y2_c00345{bottom:1043.387067pt;}
.y1_c00345{bottom:1063.867067pt;}
.h2_c00345{height:42.656250pt;}
.h8_c00345{height:44.388750pt;}
.h1_c00345{height:44.724687pt;}
.h3_c00345{height:50.062500pt;}
.h5_c00345{height:53.562500pt;}
.h4_c00345{height:57.894063pt;}
.h7_c00345{height:57.894596pt;}
.h6_c00345{height:66.750000pt;}
.h0_c00345{height:1122.666667pt;}
.w1_c00345{width:793.333333pt;}
.w0_c00345{width:793.626667pt;}
.x0_c00345{left:0.000000pt;}
.x2_c00345{left:113.440000pt;}
.x7_c00345{left:137.440000pt;}
.x5_c00345{left:161.440000pt;}
.x8_c00345{left:184.160000pt;}
.x6_c00345{left:185.280000pt;}
.x4_c00345{left:386.880000pt;}
.x3_c00345{left:396.880000pt;}
.x1_c00345{left:436.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_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_abebd88170242c65123883b1.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.100098;font-style:normal;font-weight:normal;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_b83e3d550678bd5f14b627d4.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;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_c00346;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00346;src:url('chunks/assets/font_0a37980494ae88325047062e.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00346{vertical-align:15.840000px;}
.v2_c00346{vertical-align:29.880000px;}
.lsc_c00346{letter-spacing:-0.151200px;}
.ls11_c00346{letter-spacing:-0.057600px;}
.ls14_c00346{letter-spacing:-0.050400px;}
.ls15_c00346{letter-spacing:-0.036000px;}
.ls13_c00346{letter-spacing:-0.028800px;}
.lse_c00346{letter-spacing:-0.021600px;}
.lsd_c00346{letter-spacing:-0.014400px;}
.lsf_c00346{letter-spacing:-0.007200px;}
.lsb_c00346{letter-spacing:0.000000px;}
.ls10_c00346{letter-spacing:0.007200px;}
.ls9_c00346{letter-spacing:0.014400px;}
.lsa_c00346{letter-spacing:0.019152px;}
.ls7_c00346{letter-spacing:0.021600px;}
.ls8_c00346{letter-spacing:0.028800px;}
.ls6_c00346{letter-spacing:0.043200px;}
.ls0_c00346{letter-spacing:0.048096px;}
.ls4_c00346{letter-spacing:0.054756px;}
.ls5_c00346{letter-spacing:0.072000px;}
.ls12_c00346{letter-spacing:0.093600px;}
.ls2_c00346{letter-spacing:0.144000px;}
.ls3_c00346{letter-spacing:65.304000px;}
.ls1_c00346{letter-spacing:1212.120000px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00346{word-spacing:-17.992800px;}
.ws0_c00346{word-spacing:-17.942400px;}
.ws1_c00346{word-spacing:-10.584756px;}
.ws4_c00346{word-spacing:0.000000px;}
.ws11_c00346{word-spacing:0.007200px;}
.ws1a_c00346{word-spacing:0.014400px;}
.wsd_c00346{word-spacing:0.036000px;}
.ws3_c00346{word-spacing:0.042084px;}
.ws10_c00346{word-spacing:0.093600px;}
.wse_c00346{word-spacing:0.374400px;}
.wsf_c00346{word-spacing:0.410400px;}
.ws6_c00346{word-spacing:0.806400px;}
.ws7_c00346{word-spacing:0.820800px;}
.ws5_c00346{word-spacing:0.972000px;}
.ws13_c00346{word-spacing:2.239200px;}
.ws12_c00346{word-spacing:2.368800px;}
.ws14_c00346{word-spacing:2.491200px;}
.ws15_c00346{word-spacing:2.541600px;}
.wsc_c00346{word-spacing:3.945600px;}
.wsb_c00346{word-spacing:4.032000px;}
.ws21_c00346{word-spacing:4.327200px;}
.ws18_c00346{word-spacing:4.334400px;}
.ws22_c00346{word-spacing:4.348800px;}
.ws17_c00346{word-spacing:4.413600px;}
.ws1d_c00346{word-spacing:5.047200px;}
.wsa_c00346{word-spacing:5.392800px;}
.ws9_c00346{word-spacing:5.407200px;}
.ws16_c00346{word-spacing:10.130400px;}
.ws23_c00346{word-spacing:10.461600px;}
.ws1e_c00346{word-spacing:12.967200px;}
.ws8_c00346{word-spacing:15.141600px;}
.ws20_c00346{word-spacing:18.021600px;}
.ws1f_c00346{word-spacing:18.036000px;}
.ws1b_c00346{word-spacing:24.825600px;}
.ws1c_c00346{word-spacing:24.832800px;}
.ws19_c00346{word-spacing:27.057600px;}
._2_c00346{margin-left:-4.680000px;}
._0_c00346{margin-left:-1.322640px;}
._1_c00346{width:1.008000px;}
.fc0_c00346{color:rgb(0,0,0);}
.fs3_c00346{font-size:42.120000px;}
.fs4_c00346{font-size:47.880000px;}
.fs1_c00346{font-size:54.000000px;}
.fs0_c00346{font-size:60.120000px;}
.fs2_c00346{font-size:72.000000px;}
.y0_c00346{bottom:0.000000px;}
.y3_c00346{bottom:57.450450px;}
.y24_c00346{bottom:113.709780px;}
.y23_c00346{bottom:132.071760px;}
.y22_c00346{bottom:150.337980px;}
.y21_c00346{bottom:168.604200px;}
.y20_c00346{bottom:186.966180px;}
.y1f_c00346{bottom:205.232400px;}
.y1e_c00346{bottom:223.498620px;}
.y1d_c00346{bottom:241.860600px;}
.y1c_c00346{bottom:257.070450px;}
.y1b_c00346{bottom:277.770450px;}
.y1a_c00346{bottom:298.470450px;}
.y19_c00346{bottom:382.260450px;}
.y18_c00346{bottom:416.640450px;}
.y17_c00346{bottom:451.110450px;}
.y16_c00346{bottom:503.490450px;}
.y15_c00346{bottom:537.960450px;}
.y14_c00346{bottom:572.340450px;}
.y13_c00346{bottom:606.810450px;}
.y12_c00346{bottom:641.190450px;}
.y11_c00346{bottom:675.660450px;}
.y10_c00346{bottom:710.040450px;}
.yf_c00346{bottom:744.510450px;}
.ye_c00346{bottom:778.890450px;}
.yd_c00346{bottom:813.360450px;}
.yc_c00346{bottom:847.740450px;}
.yb_c00346{bottom:900.210450px;}
.ya_c00346{bottom:934.590450px;}
.y9_c00346{bottom:969.060450px;}
.y8_c00346{bottom:1003.440450px;}
.y7_c00346{bottom:1037.910450px;}
.y6_c00346{bottom:1072.290450px;}
.y5_c00346{bottom:1106.760450px;}
.y4_c00346{bottom:1141.140450px;}
.y2_c00346{bottom:1177.860450px;}
.y1_c00346{bottom:1196.850450px;}
.h8_c00346{height:47.988281px;}
.h9_c00346{height:49.937344px;}
.h1_c00346{height:50.315273px;}
.h2_c00346{height:56.320312px;}
.h5_c00346{height:60.257812px;}
.h6_c00346{height:65.130820px;}
.h7_c00346{height:65.131420px;}
.h3_c00346{height:72.160312px;}
.h4_c00346{height:75.093750px;}
.h0_c00346{height:1263.000000px;}
.w1_c00346{width:892.500000px;}
.w0_c00346{width:892.830000px;}
.x0_c00346{left:0.000000px;}
.x1_c00346{left:127.620000px;}
.x2_c00346{left:154.620000px;}
.x3_c00346{left:181.620000px;}
.x4_c00346{left:207.180000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.v1_c00346{vertical-align:14.080000pt;}
.v2_c00346{vertical-align:26.560000pt;}
.lsc_c00346{letter-spacing:-0.134400pt;}
.ls11_c00346{letter-spacing:-0.051200pt;}
.ls14_c00346{letter-spacing:-0.044800pt;}
.ls15_c00346{letter-spacing:-0.032000pt;}
.ls13_c00346{letter-spacing:-0.025600pt;}
.lse_c00346{letter-spacing:-0.019200pt;}
.lsd_c00346{letter-spacing:-0.012800pt;}
.lsf_c00346{letter-spacing:-0.006400pt;}
.lsb_c00346{letter-spacing:0.000000pt;}
.ls10_c00346{letter-spacing:0.006400pt;}
.ls9_c00346{letter-spacing:0.012800pt;}
.lsa_c00346{letter-spacing:0.017024pt;}
.ls7_c00346{letter-spacing:0.019200pt;}
.ls8_c00346{letter-spacing:0.025600pt;}
.ls6_c00346{letter-spacing:0.038400pt;}
.ls0_c00346{letter-spacing:0.042752pt;}
.ls4_c00346{letter-spacing:0.048672pt;}
.ls5_c00346{letter-spacing:0.064000pt;}
.ls12_c00346{letter-spacing:0.083200pt;}
.ls2_c00346{letter-spacing:0.128000pt;}
.ls3_c00346{letter-spacing:58.048000pt;}
.ls1_c00346{letter-spacing:1077.440000pt;}
.ws2_c00346{word-spacing:-15.993600pt;}
.ws0_c00346{word-spacing:-15.948800pt;}
.ws1_c00346{word-spacing:-9.408672pt;}
.ws4_c00346{word-spacing:0.000000pt;}
.ws11_c00346{word-spacing:0.006400pt;}
.ws1a_c00346{word-spacing:0.012800pt;}
.wsd_c00346{word-spacing:0.032000pt;}
.ws3_c00346{word-spacing:0.037408pt;}
.ws10_c00346{word-spacing:0.083200pt;}
.wse_c00346{word-spacing:0.332800pt;}
.wsf_c00346{word-spacing:0.364800pt;}
.ws6_c00346{word-spacing:0.716800pt;}
.ws7_c00346{word-spacing:0.729600pt;}
.ws5_c00346{word-spacing:0.864000pt;}
.ws13_c00346{word-spacing:1.990400pt;}
.ws12_c00346{word-spacing:2.105600pt;}
.ws14_c00346{word-spacing:2.214400pt;}
.ws15_c00346{word-spacing:2.259200pt;}
.wsc_c00346{word-spacing:3.507200pt;}
.wsb_c00346{word-spacing:3.584000pt;}
.ws21_c00346{word-spacing:3.846400pt;}
.ws18_c00346{word-spacing:3.852800pt;}
.ws22_c00346{word-spacing:3.865600pt;}
.ws17_c00346{word-spacing:3.923200pt;}
.ws1d_c00346{word-spacing:4.486400pt;}
.wsa_c00346{word-spacing:4.793600pt;}
.ws9_c00346{word-spacing:4.806400pt;}
.ws16_c00346{word-spacing:9.004800pt;}
.ws23_c00346{word-spacing:9.299200pt;}
.ws1e_c00346{word-spacing:11.526400pt;}
.ws8_c00346{word-spacing:13.459200pt;}
.ws20_c00346{word-spacing:16.019200pt;}
.ws1f_c00346{word-spacing:16.032000pt;}
.ws1b_c00346{word-spacing:22.067200pt;}
.ws1c_c00346{word-spacing:22.073600pt;}
.ws19_c00346{word-spacing:24.051200pt;}
._2_c00346{margin-left:-4.160000pt;}
._0_c00346{margin-left:-1.175680pt;}
._1_c00346{width:0.896000pt;}
.fs3_c00346{font-size:37.440000pt;}
.fs4_c00346{font-size:42.560000pt;}
.fs1_c00346{font-size:48.000000pt;}
.fs0_c00346{font-size:53.440000pt;}
.fs2_c00346{font-size:64.000000pt;}
.y0_c00346{bottom:0.000000pt;}
.y3_c00346{bottom:51.067067pt;}
.y24_c00346{bottom:101.075360pt;}
.y23_c00346{bottom:117.397120pt;}
.y22_c00346{bottom:133.633760pt;}
.y21_c00346{bottom:149.870400pt;}
.y20_c00346{bottom:166.192160pt;}
.y1f_c00346{bottom:182.428800pt;}
.y1e_c00346{bottom:198.665440pt;}
.y1d_c00346{bottom:214.987200pt;}
.y1c_c00346{bottom:228.507067pt;}
.y1b_c00346{bottom:246.907067pt;}
.y1a_c00346{bottom:265.307067pt;}
.y19_c00346{bottom:339.787067pt;}
.y18_c00346{bottom:370.347067pt;}
.y17_c00346{bottom:400.987067pt;}
.y16_c00346{bottom:447.547067pt;}
.y15_c00346{bottom:478.187067pt;}
.y14_c00346{bottom:508.747067pt;}
.y13_c00346{bottom:539.387067pt;}
.y12_c00346{bottom:569.947067pt;}
.y11_c00346{bottom:600.587067pt;}
.y10_c00346{bottom:631.147067pt;}
.yf_c00346{bottom:661.787067pt;}
.ye_c00346{bottom:692.347067pt;}
.yd_c00346{bottom:722.987067pt;}
.yc_c00346{bottom:753.547067pt;}
.yb_c00346{bottom:800.187067pt;}
.ya_c00346{bottom:830.747067pt;}
.y9_c00346{bottom:861.387067pt;}
.y8_c00346{bottom:891.947067pt;}
.y7_c00346{bottom:922.587067pt;}
.y6_c00346{bottom:953.147067pt;}
.y5_c00346{bottom:983.787067pt;}
.y4_c00346{bottom:1014.347067pt;}
.y2_c00346{bottom:1046.987067pt;}
.y1_c00346{bottom:1063.867067pt;}
.h8_c00346{height:42.656250pt;}
.h9_c00346{height:44.388750pt;}
.h1_c00346{height:44.724687pt;}
.h2_c00346{height:50.062500pt;}
.h5_c00346{height:53.562500pt;}
.h6_c00346{height:57.894063pt;}
.h7_c00346{height:57.894596pt;}
.h3_c00346{height:64.142500pt;}
.h4_c00346{height:66.750000pt;}
.h0_c00346{height:1122.666667pt;}
.w1_c00346{width:793.333333pt;}
.w0_c00346{width:793.626667pt;}
.x0_c00346{left:0.000000pt;}
.x1_c00346{left:113.440000pt;}
.x2_c00346{left:137.440000pt;}
.x3_c00346{left:161.440000pt;}
.x4_c00346{left:184.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a10f7e7e0371bf6612e28811.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_97f8ab5aeab8c876184fd82b.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00347;src:url('chunks/assets/font_812ac1cea35c70e79e1fecf6.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00347{vertical-align:29.880000px;}
.lsb_c00347{letter-spacing:-0.151200px;}
.lse_c00347{letter-spacing:-0.057600px;}
.ls12_c00347{letter-spacing:-0.036000px;}
.lsd_c00347{letter-spacing:-0.028800px;}
.ls10_c00347{letter-spacing:-0.021600px;}
.lsc_c00347{letter-spacing:-0.014400px;}
.ls11_c00347{letter-spacing:-0.007200px;}
.lsa_c00347{letter-spacing:0.000000px;}
.ls3_c00347{letter-spacing:0.007200px;}
.ls2_c00347{letter-spacing:0.014400px;}
.ls6_c00347{letter-spacing:0.019152px;}
.ls8_c00347{letter-spacing:0.023940px;}
.ls7_c00347{letter-spacing:0.028728px;}
.ls0_c00347{letter-spacing:0.036072px;}
.ls9_c00347{letter-spacing:0.038304px;}
.ls1_c00347{letter-spacing:0.054756px;}
.lsf_c00347{letter-spacing:0.093600px;}
.ls4_c00347{letter-spacing:0.144000px;}
.ls5_c00347{letter-spacing:65.304000px;}
.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:-17.942400px;}
.ws1_c00347{word-spacing:-10.584756px;}
.ws2_c00347{word-spacing:-0.306612px;}
.ws28_c00347{word-spacing:-0.019152px;}
.ws26_c00347{word-spacing:-0.009576px;}
.ws16_c00347{word-spacing:-0.007200px;}
.ws27_c00347{word-spacing:-0.004788px;}
.ws3_c00347{word-spacing:0.000000px;}
.ws17_c00347{word-spacing:0.014400px;}
.ws7_c00347{word-spacing:0.064800px;}
.ws10_c00347{word-spacing:0.734400px;}
.ws1b_c00347{word-spacing:1.468800px;}
.ws1a_c00347{word-spacing:1.476000px;}
.wsc_c00347{word-spacing:2.217600px;}
.wsd_c00347{word-spacing:2.289600px;}
.ws18_c00347{word-spacing:3.276000px;}
.ws19_c00347{word-spacing:3.355200px;}
.ws1d_c00347{word-spacing:3.945600px;}
.ws1c_c00347{word-spacing:3.996000px;}
.ws25_c00347{word-spacing:5.040000px;}
.ws22_c00347{word-spacing:5.068800px;}
.ws23_c00347{word-spacing:5.076000px;}
.ws24_c00347{word-spacing:5.097600px;}
.ws4_c00347{word-spacing:6.480000px;}
.ws12_c00347{word-spacing:6.501600px;}
.ws13_c00347{word-spacing:6.559200px;}
.ws6_c00347{word-spacing:6.580800px;}
.ws5_c00347{word-spacing:6.609600px;}
.ws9_c00347{word-spacing:7.171200px;}
.ws20_c00347{word-spacing:8.280000px;}
.ws21_c00347{word-spacing:8.294400px;}
.ws1f_c00347{word-spacing:10.461600px;}
.ws1e_c00347{word-spacing:10.468800px;}
.wsf_c00347{word-spacing:11.872800px;}
.wse_c00347{word-spacing:11.908800px;}
.ws11_c00347{word-spacing:12.967200px;}
.ws8_c00347{word-spacing:12.988800px;}
.wsb_c00347{word-spacing:14.025600px;}
.wsa_c00347{word-spacing:14.133600px;}
.ws15_c00347{word-spacing:24.465600px;}
.ws14_c00347{word-spacing:24.530400px;}
._0_c00347{margin-left:-1.022040px;}
._1_c00347{width:1.180800px;}
.fc0_c00347{color:rgb(0,0,0);}
.fs3_c00347{font-size:42.120000px;}
.fs4_c00347{font-size:47.880000px;}
.fs2_c00347{font-size:54.000000px;}
.fs0_c00347{font-size:60.120000px;}
.fs1_c00347{font-size:72.000000px;}
.y0_c00347{bottom:0.000000px;}
.y3_c00347{bottom:57.450450px;}
.y4_c00347{bottom:61.410450px;}
.y28_c00347{bottom:113.717190px;}
.y27_c00347{bottom:132.079170px;}
.y26_c00347{bottom:150.345390px;}
.y25_c00347{bottom:168.611610px;}
.y24_c00347{bottom:186.973590px;}
.y23_c00347{bottom:205.239810px;}
.y22_c00347{bottom:223.506030px;}
.y21_c00347{bottom:241.868010px;}
.y20_c00347{bottom:260.134230px;}
.y1f_c00347{bottom:278.400450px;}
.y1e_c00347{bottom:293.610450px;}
.y1d_c00347{bottom:314.310450px;}
.y1c_c00347{bottom:335.010450px;}
.y1b_c00347{bottom:365.790450px;}
.y1a_c00347{bottom:400.260450px;}
.y19_c00347{bottom:434.640600px;}
.y18_c00347{bottom:469.110450px;}
.y17_c00347{bottom:503.490450px;}
.y16_c00347{bottom:537.960450px;}
.y15_c00347{bottom:572.340450px;}
.y14_c00347{bottom:606.810450px;}
.y13_c00347{bottom:641.190450px;}
.y12_c00347{bottom:693.660450px;}
.y11_c00347{bottom:728.040450px;}
.y10_c00347{bottom:762.510450px;}
.yf_c00347{bottom:796.890450px;}
.ye_c00347{bottom:831.360450px;}
.yd_c00347{bottom:865.740450px;}
.yc_c00347{bottom:900.210450px;}
.yb_c00347{bottom:934.590450px;}
.ya_c00347{bottom:969.060450px;}
.y9_c00347{bottom:1003.440450px;}
.y8_c00347{bottom:1037.910450px;}
.y7_c00347{bottom:1072.290450px;}
.y6_c00347{bottom:1106.760450px;}
.y5_c00347{bottom:1141.140450px;}
.y2_c00347{bottom:1173.810450px;}
.y1_c00347{bottom:1196.850450px;}
.h2_c00347{height:47.988281px;}
.h8_c00347{height:49.937344px;}
.h1_c00347{height:50.315273px;}
.h3_c00347{height:56.320312px;}
.h4_c00347{height:60.257812px;}
.h5_c00347{height:65.130820px;}
.h6_c00347{height:65.131420px;}
.h7_c00347{height:75.093750px;}
.h0_c00347{height:1263.000000px;}
.w1_c00347{width:892.500000px;}
.w0_c00347{width:892.830000px;}
.x0_c00347{left:0.000000px;}
.x2_c00347{left:127.620000px;}
.x7_c00347{left:154.620000px;}
.x5_c00347{left:181.620000px;}
.x6_c00347{left:207.180000px;}
.x4_c00347{left:435.240000px;}
.x3_c00347{left:446.490000px;}
.x1_c00347{left:490.770000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.v1_c00347{vertical-align:26.560000pt;}
.lsb_c00347{letter-spacing:-0.134400pt;}
.lse_c00347{letter-spacing:-0.051200pt;}
.ls12_c00347{letter-spacing:-0.032000pt;}
.lsd_c00347{letter-spacing:-0.025600pt;}
.ls10_c00347{letter-spacing:-0.019200pt;}
.lsc_c00347{letter-spacing:-0.012800pt;}
.ls11_c00347{letter-spacing:-0.006400pt;}
.lsa_c00347{letter-spacing:0.000000pt;}
.ls3_c00347{letter-spacing:0.006400pt;}
.ls2_c00347{letter-spacing:0.012800pt;}
.ls6_c00347{letter-spacing:0.017024pt;}
.ls8_c00347{letter-spacing:0.021280pt;}
.ls7_c00347{letter-spacing:0.025536pt;}
.ls0_c00347{letter-spacing:0.032064pt;}
.ls9_c00347{letter-spacing:0.034048pt;}
.ls1_c00347{letter-spacing:0.048672pt;}
.lsf_c00347{letter-spacing:0.083200pt;}
.ls4_c00347{letter-spacing:0.128000pt;}
.ls5_c00347{letter-spacing:58.048000pt;}
.ws0_c00347{word-spacing:-15.948800pt;}
.ws1_c00347{word-spacing:-9.408672pt;}
.ws2_c00347{word-spacing:-0.272544pt;}
.ws28_c00347{word-spacing:-0.017024pt;}
.ws26_c00347{word-spacing:-0.008512pt;}
.ws16_c00347{word-spacing:-0.006400pt;}
.ws27_c00347{word-spacing:-0.004256pt;}
.ws3_c00347{word-spacing:0.000000pt;}
.ws17_c00347{word-spacing:0.012800pt;}
.ws7_c00347{word-spacing:0.057600pt;}
.ws10_c00347{word-spacing:0.652800pt;}
.ws1b_c00347{word-spacing:1.305600pt;}
.ws1a_c00347{word-spacing:1.312000pt;}
.wsc_c00347{word-spacing:1.971200pt;}
.wsd_c00347{word-spacing:2.035200pt;}
.ws18_c00347{word-spacing:2.912000pt;}
.ws19_c00347{word-spacing:2.982400pt;}
.ws1d_c00347{word-spacing:3.507200pt;}
.ws1c_c00347{word-spacing:3.552000pt;}
.ws25_c00347{word-spacing:4.480000pt;}
.ws22_c00347{word-spacing:4.505600pt;}
.ws23_c00347{word-spacing:4.512000pt;}
.ws24_c00347{word-spacing:4.531200pt;}
.ws4_c00347{word-spacing:5.760000pt;}
.ws12_c00347{word-spacing:5.779200pt;}
.ws13_c00347{word-spacing:5.830400pt;}
.ws6_c00347{word-spacing:5.849600pt;}
.ws5_c00347{word-spacing:5.875200pt;}
.ws9_c00347{word-spacing:6.374400pt;}
.ws20_c00347{word-spacing:7.360000pt;}
.ws21_c00347{word-spacing:7.372800pt;}
.ws1f_c00347{word-spacing:9.299200pt;}
.ws1e_c00347{word-spacing:9.305600pt;}
.wsf_c00347{word-spacing:10.553600pt;}
.wse_c00347{word-spacing:10.585600pt;}
.ws11_c00347{word-spacing:11.526400pt;}
.ws8_c00347{word-spacing:11.545600pt;}
.wsb_c00347{word-spacing:12.467200pt;}
.wsa_c00347{word-spacing:12.563200pt;}
.ws15_c00347{word-spacing:21.747200pt;}
.ws14_c00347{word-spacing:21.804800pt;}
._0_c00347{margin-left:-0.908480pt;}
._1_c00347{width:1.049600pt;}
.fs3_c00347{font-size:37.440000pt;}
.fs4_c00347{font-size:42.560000pt;}
.fs2_c00347{font-size:48.000000pt;}
.fs0_c00347{font-size:53.440000pt;}
.fs1_c00347{font-size:64.000000pt;}
.y0_c00347{bottom:0.000000pt;}
.y3_c00347{bottom:51.067067pt;}
.y4_c00347{bottom:54.587067pt;}
.y28_c00347{bottom:101.081947pt;}
.y27_c00347{bottom:117.403707pt;}
.y26_c00347{bottom:133.640347pt;}
.y25_c00347{bottom:149.876987pt;}
.y24_c00347{bottom:166.198747pt;}
.y23_c00347{bottom:182.435387pt;}
.y22_c00347{bottom:198.672027pt;}
.y21_c00347{bottom:214.993787pt;}
.y20_c00347{bottom:231.230427pt;}
.y1f_c00347{bottom:247.467067pt;}
.y1e_c00347{bottom:260.987067pt;}
.y1d_c00347{bottom:279.387067pt;}
.y1c_c00347{bottom:297.787067pt;}
.y1b_c00347{bottom:325.147067pt;}
.y1a_c00347{bottom:355.787067pt;}
.y19_c00347{bottom:386.347200pt;}
.y18_c00347{bottom:416.987067pt;}
.y17_c00347{bottom:447.547067pt;}
.y16_c00347{bottom:478.187067pt;}
.y15_c00347{bottom:508.747067pt;}
.y14_c00347{bottom:539.387067pt;}
.y13_c00347{bottom:569.947067pt;}
.y12_c00347{bottom:616.587067pt;}
.y11_c00347{bottom:647.147067pt;}
.y10_c00347{bottom:677.787067pt;}
.yf_c00347{bottom:708.347067pt;}
.ye_c00347{bottom:738.987067pt;}
.yd_c00347{bottom:769.547067pt;}
.yc_c00347{bottom:800.187067pt;}
.yb_c00347{bottom:830.747067pt;}
.ya_c00347{bottom:861.387067pt;}
.y9_c00347{bottom:891.947067pt;}
.y8_c00347{bottom:922.587067pt;}
.y7_c00347{bottom:953.147067pt;}
.y6_c00347{bottom:983.787067pt;}
.y5_c00347{bottom:1014.347067pt;}
.y2_c00347{bottom:1043.387067pt;}
.y1_c00347{bottom:1063.867067pt;}
.h2_c00347{height:42.656250pt;}
.h8_c00347{height:44.388750pt;}
.h1_c00347{height:44.724687pt;}
.h3_c00347{height:50.062500pt;}
.h4_c00347{height:53.562500pt;}
.h5_c00347{height:57.894062pt;}
.h6_c00347{height:57.894596pt;}
.h7_c00347{height:66.750000pt;}
.h0_c00347{height:1122.666667pt;}
.w1_c00347{width:793.333333pt;}
.w0_c00347{width:793.626667pt;}
.x0_c00347{left:0.000000pt;}
.x2_c00347{left:113.440000pt;}
.x7_c00347{left:137.440000pt;}
.x5_c00347{left:161.440000pt;}
.x6_c00347{left:184.160000pt;}
.x4_c00347{left:386.880000pt;}
.x3_c00347{left:396.880000pt;}
.x1_c00347{left:436.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_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_e7c15ee9c8ba4448b56803e6.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.100098;font-style:normal;font-weight:normal;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_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;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_c00348;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00348;src:url('chunks/assets/font_51b40f7736d30f503bd1c2ea.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00348{vertical-align:15.840000px;}
.v2_c00348{vertical-align:29.880000px;}
.ls13_c00348{letter-spacing:-0.266400px;}
.lsd_c00348{letter-spacing:-0.151200px;}
.ls14_c00348{letter-spacing:-0.064800px;}
.ls16_c00348{letter-spacing:-0.050400px;}
.ls15_c00348{letter-spacing:-0.036000px;}
.lse_c00348{letter-spacing:-0.028800px;}
.lsf_c00348{letter-spacing:-0.021600px;}
.ls10_c00348{letter-spacing:-0.014400px;}
.ls12_c00348{letter-spacing:-0.007200px;}
.lsc_c00348{letter-spacing:0.000000px;}
.ls8_c00348{letter-spacing:0.007200px;}
.lsb_c00348{letter-spacing:0.014364px;}
.ls4_c00348{letter-spacing:0.014400px;}
.ls3_c00348{letter-spacing:0.021600px;}
.lsa_c00348{letter-spacing:0.023940px;}
.ls9_c00348{letter-spacing:0.028728px;}
.ls0_c00348{letter-spacing:0.048096px;}
.ls5_c00348{letter-spacing:0.050400px;}
.ls2_c00348{letter-spacing:0.054756px;}
.ls11_c00348{letter-spacing:0.093600px;}
.ls6_c00348{letter-spacing:0.144000px;}
.ls7_c00348{letter-spacing:65.304000px;}
.ls1_c00348{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00348{word-spacing:-18.050400px;}
.ws1_c00348{word-spacing:-17.985600px;}
.ws4_c00348{word-spacing:-17.964000px;}
.ws3_c00348{word-spacing:-17.935200px;}
.ws0_c00348{word-spacing:-10.584756px;}
.ws25_c00348{word-spacing:-0.009576px;}
.ws26_c00348{word-spacing:-0.004788px;}
.ws6_c00348{word-spacing:0.000000px;}
.ws27_c00348{word-spacing:0.004788px;}
.ws24_c00348{word-spacing:0.007200px;}
.ws5_c00348{word-spacing:0.042084px;}
.ws17_c00348{word-spacing:1.058400px;}
.ws23_c00348{word-spacing:1.080000px;}
.ws22_c00348{word-spacing:1.094400px;}
.ws16_c00348{word-spacing:1.159200px;}
.ws20_c00348{word-spacing:2.102400px;}
.ws21_c00348{word-spacing:2.282400px;}
.ws13_c00348{word-spacing:2.505600px;}
.ws11_c00348{word-spacing:2.541600px;}
.ws12_c00348{word-spacing:2.620800px;}
.ws1e_c00348{word-spacing:3.232800px;}
.ws1d_c00348{word-spacing:3.240000px;}
.ws10_c00348{word-spacing:3.578400px;}
.wsf_c00348{word-spacing:3.600000px;}
.ws9_c00348{word-spacing:3.621600px;}
.ws8_c00348{word-spacing:3.628800px;}
.ws1f_c00348{word-spacing:3.643200px;}
.ws1b_c00348{word-spacing:4.298400px;}
.ws1c_c00348{word-spacing:4.348800px;}
.ws19_c00348{word-spacing:5.774400px;}
.ws18_c00348{word-spacing:5.803200px;}
.wsd_c00348{word-spacing:6.501600px;}
.wse_c00348{word-spacing:6.559200px;}
.wsa_c00348{word-spacing:6.840000px;}
.ws1a_c00348{word-spacing:8.978400px;}
.ws7_c00348{word-spacing:10.425600px;}
.wsb_c00348{word-spacing:10.800000px;}
.wsc_c00348{word-spacing:10.850400px;}
.ws14_c00348{word-spacing:15.134400px;}
.ws15_c00348{word-spacing:15.148800px;}
._0_c00348{margin-left:-1.322640px;}
._1_c00348{width:1.080000px;}
.fc0_c00348{color:rgb(0,0,0);}
.fs3_c00348{font-size:42.120000px;}
.fs4_c00348{font-size:47.880000px;}
.fs1_c00348{font-size:54.000000px;}
.fs0_c00348{font-size:60.120000px;}
.fs2_c00348{font-size:72.000000px;}
.y0_c00348{bottom:0.000000px;}
.y3_c00348{bottom:57.450450px;}
.y27_c00348{bottom:113.722770px;}
.y26_c00348{bottom:132.084750px;}
.y25_c00348{bottom:150.350970px;}
.y24_c00348{bottom:168.617190px;}
.y23_c00348{bottom:186.979170px;}
.y22_c00348{bottom:205.245390px;}
.y21_c00348{bottom:223.511610px;}
.y20_c00348{bottom:241.873590px;}
.y1f_c00348{bottom:260.139810px;}
.y1e_c00348{bottom:278.406030px;}
.y1d_c00348{bottom:296.768010px;}
.y1c_c00348{bottom:315.034230px;}
.y1b_c00348{bottom:333.300450px;}
.y1a_c00348{bottom:348.510450px;}
.y19_c00348{bottom:369.210450px;}
.y18_c00348{bottom:389.910600px;}
.y17_c00348{bottom:469.110450px;}
.y16_c00348{bottom:503.490450px;}
.y15_c00348{bottom:537.960450px;}
.y14_c00348{bottom:572.340450px;}
.y13_c00348{bottom:606.810450px;}
.y12_c00348{bottom:641.190450px;}
.y11_c00348{bottom:675.660450px;}
.y10_c00348{bottom:710.040450px;}
.yf_c00348{bottom:744.510600px;}
.ye_c00348{bottom:778.890600px;}
.yd_c00348{bottom:831.360450px;}
.yc_c00348{bottom:865.740450px;}
.yb_c00348{bottom:900.210450px;}
.ya_c00348{bottom:934.590450px;}
.y9_c00348{bottom:969.060450px;}
.y8_c00348{bottom:1003.440450px;}
.y7_c00348{bottom:1037.910450px;}
.y6_c00348{bottom:1072.290450px;}
.y5_c00348{bottom:1106.760450px;}
.y4_c00348{bottom:1141.140450px;}
.y2_c00348{bottom:1177.860450px;}
.y1_c00348{bottom:1196.850450px;}
.h8_c00348{height:47.988281px;}
.h9_c00348{height:49.937344px;}
.h1_c00348{height:50.315273px;}
.h2_c00348{height:56.320312px;}
.h4_c00348{height:60.257812px;}
.h7_c00348{height:65.130220px;}
.h5_c00348{height:65.130820px;}
.h3_c00348{height:72.160312px;}
.h6_c00348{height:75.093750px;}
.h0_c00348{height:1263.000000px;}
.w1_c00348{width:892.500000px;}
.w0_c00348{width:892.830000px;}
.x0_c00348{left:0.000000px;}
.x1_c00348{left:127.620000px;}
.x4_c00348{left:154.620000px;}
.x2_c00348{left:180.810000px;}
.x3_c00348{left:207.180000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.v1_c00348{vertical-align:14.080000pt;}
.v2_c00348{vertical-align:26.560000pt;}
.ls13_c00348{letter-spacing:-0.236800pt;}
.lsd_c00348{letter-spacing:-0.134400pt;}
.ls14_c00348{letter-spacing:-0.057600pt;}
.ls16_c00348{letter-spacing:-0.044800pt;}
.ls15_c00348{letter-spacing:-0.032000pt;}
.lse_c00348{letter-spacing:-0.025600pt;}
.lsf_c00348{letter-spacing:-0.019200pt;}
.ls10_c00348{letter-spacing:-0.012800pt;}
.ls12_c00348{letter-spacing:-0.006400pt;}
.lsc_c00348{letter-spacing:0.000000pt;}
.ls8_c00348{letter-spacing:0.006400pt;}
.lsb_c00348{letter-spacing:0.012768pt;}
.ls4_c00348{letter-spacing:0.012800pt;}
.ls3_c00348{letter-spacing:0.019200pt;}
.lsa_c00348{letter-spacing:0.021280pt;}
.ls9_c00348{letter-spacing:0.025536pt;}
.ls0_c00348{letter-spacing:0.042752pt;}
.ls5_c00348{letter-spacing:0.044800pt;}
.ls2_c00348{letter-spacing:0.048672pt;}
.ls11_c00348{letter-spacing:0.083200pt;}
.ls6_c00348{letter-spacing:0.128000pt;}
.ls7_c00348{letter-spacing:58.048000pt;}
.ls1_c00348{letter-spacing:1077.440000pt;}
.ws2_c00348{word-spacing:-16.044800pt;}
.ws1_c00348{word-spacing:-15.987200pt;}
.ws4_c00348{word-spacing:-15.968000pt;}
.ws3_c00348{word-spacing:-15.942400pt;}
.ws0_c00348{word-spacing:-9.408672pt;}
.ws25_c00348{word-spacing:-0.008512pt;}
.ws26_c00348{word-spacing:-0.004256pt;}
.ws6_c00348{word-spacing:0.000000pt;}
.ws27_c00348{word-spacing:0.004256pt;}
.ws24_c00348{word-spacing:0.006400pt;}
.ws5_c00348{word-spacing:0.037408pt;}
.ws17_c00348{word-spacing:0.940800pt;}
.ws23_c00348{word-spacing:0.960000pt;}
.ws22_c00348{word-spacing:0.972800pt;}
.ws16_c00348{word-spacing:1.030400pt;}
.ws20_c00348{word-spacing:1.868800pt;}
.ws21_c00348{word-spacing:2.028800pt;}
.ws13_c00348{word-spacing:2.227200pt;}
.ws11_c00348{word-spacing:2.259200pt;}
.ws12_c00348{word-spacing:2.329600pt;}
.ws1e_c00348{word-spacing:2.873600pt;}
.ws1d_c00348{word-spacing:2.880000pt;}
.ws10_c00348{word-spacing:3.180800pt;}
.wsf_c00348{word-spacing:3.200000pt;}
.ws9_c00348{word-spacing:3.219200pt;}
.ws8_c00348{word-spacing:3.225600pt;}
.ws1f_c00348{word-spacing:3.238400pt;}
.ws1b_c00348{word-spacing:3.820800pt;}
.ws1c_c00348{word-spacing:3.865600pt;}
.ws19_c00348{word-spacing:5.132800pt;}
.ws18_c00348{word-spacing:5.158400pt;}
.wsd_c00348{word-spacing:5.779200pt;}
.wse_c00348{word-spacing:5.830400pt;}
.wsa_c00348{word-spacing:6.080000pt;}
.ws1a_c00348{word-spacing:7.980800pt;}
.ws7_c00348{word-spacing:9.267200pt;}
.wsb_c00348{word-spacing:9.600000pt;}
.wsc_c00348{word-spacing:9.644800pt;}
.ws14_c00348{word-spacing:13.452800pt;}
.ws15_c00348{word-spacing:13.465600pt;}
._0_c00348{margin-left:-1.175680pt;}
._1_c00348{width:0.960000pt;}
.fs3_c00348{font-size:37.440000pt;}
.fs4_c00348{font-size:42.560000pt;}
.fs1_c00348{font-size:48.000000pt;}
.fs0_c00348{font-size:53.440000pt;}
.fs2_c00348{font-size:64.000000pt;}
.y0_c00348{bottom:0.000000pt;}
.y3_c00348{bottom:51.067067pt;}
.y27_c00348{bottom:101.086907pt;}
.y26_c00348{bottom:117.408667pt;}
.y25_c00348{bottom:133.645307pt;}
.y24_c00348{bottom:149.881947pt;}
.y23_c00348{bottom:166.203707pt;}
.y22_c00348{bottom:182.440347pt;}
.y21_c00348{bottom:198.676987pt;}
.y20_c00348{bottom:214.998747pt;}
.y1f_c00348{bottom:231.235387pt;}
.y1e_c00348{bottom:247.472027pt;}
.y1d_c00348{bottom:263.793787pt;}
.y1c_c00348{bottom:280.030427pt;}
.y1b_c00348{bottom:296.267067pt;}
.y1a_c00348{bottom:309.787067pt;}
.y19_c00348{bottom:328.187067pt;}
.y18_c00348{bottom:346.587200pt;}
.y17_c00348{bottom:416.987067pt;}
.y16_c00348{bottom:447.547067pt;}
.y15_c00348{bottom:478.187067pt;}
.y14_c00348{bottom:508.747067pt;}
.y13_c00348{bottom:539.387067pt;}
.y12_c00348{bottom:569.947067pt;}
.y11_c00348{bottom:600.587067pt;}
.y10_c00348{bottom:631.147067pt;}
.yf_c00348{bottom:661.787200pt;}
.ye_c00348{bottom:692.347200pt;}
.yd_c00348{bottom:738.987067pt;}
.yc_c00348{bottom:769.547067pt;}
.yb_c00348{bottom:800.187067pt;}
.ya_c00348{bottom:830.747067pt;}
.y9_c00348{bottom:861.387067pt;}
.y8_c00348{bottom:891.947067pt;}
.y7_c00348{bottom:922.587067pt;}
.y6_c00348{bottom:953.147067pt;}
.y5_c00348{bottom:983.787067pt;}
.y4_c00348{bottom:1014.347067pt;}
.y2_c00348{bottom:1046.987067pt;}
.y1_c00348{bottom:1063.867067pt;}
.h8_c00348{height:42.656250pt;}
.h9_c00348{height:44.388750pt;}
.h1_c00348{height:44.724687pt;}
.h2_c00348{height:50.062500pt;}
.h4_c00348{height:53.562500pt;}
.h7_c00348{height:57.893529pt;}
.h5_c00348{height:57.894063pt;}
.h3_c00348{height:64.142500pt;}
.h6_c00348{height:66.750000pt;}
.h0_c00348{height:1122.666667pt;}
.w1_c00348{width:793.333333pt;}
.w0_c00348{width:793.626667pt;}
.x0_c00348{left:0.000000pt;}
.x1_c00348{left:113.440000pt;}
.x4_c00348{left:137.440000pt;}
.x2_c00348{left:160.720000pt;}
.x3_c00348{left:184.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_23c8ae0d9b5cae2fc6d9787a.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00349;src:url('chunks/assets/font_9aa849763f524eaf56afd513.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00349;src:url('chunks/assets/font_74fed0e25b9b21586400927b.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00349;src:url('chunks/assets/font_70a93908cb1127ef59d5bec6.woff2')format("woff");}.ff5_c00349{font-family:ff5_c00349;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_c00349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.v1_c00349{vertical-align:29.880000px;}
.lse_c00349{letter-spacing:-0.151200px;}
.ls15_c00349{letter-spacing:-0.050400px;}
.ls13_c00349{letter-spacing:-0.043200px;}
.ls16_c00349{letter-spacing:-0.028800px;}
.ls14_c00349{letter-spacing:-0.021600px;}
.ls19_c00349{letter-spacing:-0.019440px;}
.ls11_c00349{letter-spacing:-0.014400px;}
.ls18_c00349{letter-spacing:-0.011664px;}
.lsf_c00349{letter-spacing:-0.007200px;}
.ls17_c00349{letter-spacing:-0.004788px;}
.lsd_c00349{letter-spacing:0.000000px;}
.ls2_c00349{letter-spacing:0.007200px;}
.ls1a_c00349{letter-spacing:0.009576px;}
.ls9_c00349{letter-spacing:0.014364px;}
.ls1_c00349{letter-spacing:0.014400px;}
.lsc_c00349{letter-spacing:0.019152px;}
.ls10_c00349{letter-spacing:0.021600px;}
.ls6_c00349{letter-spacing:0.023940px;}
.lsa_c00349{letter-spacing:0.028728px;}
.ls8_c00349{letter-spacing:0.033516px;}
.ls0_c00349{letter-spacing:0.036072px;}
.lsb_c00349{letter-spacing:0.038304px;}
.ls3_c00349{letter-spacing:0.054756px;}
.ls12_c00349{letter-spacing:0.093600px;}
.ls7_c00349{letter-spacing:0.104040px;}
.ls4_c00349{letter-spacing:0.144000px;}
.ls5_c00349{letter-spacing:65.304000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00349{word-spacing:-17.992800px;}
.ws2_c00349{word-spacing:-10.789200px;}
.ws0_c00349{word-spacing:-10.584756px;}
.ws3_c00349{word-spacing:-0.306612px;}
.ws18_c00349{word-spacing:-0.093600px;}
.ws11_c00349{word-spacing:-0.086400px;}
.ws30_c00349{word-spacing:-0.019152px;}
.ws2c_c00349{word-spacing:-0.014364px;}
.ws2f_c00349{word-spacing:-0.009576px;}
.wse_c00349{word-spacing:-0.007200px;}
.ws2e_c00349{word-spacing:-0.004788px;}
.ws4_c00349{word-spacing:0.000000px;}
.ws2d_c00349{word-spacing:0.004788px;}
.ws10_c00349{word-spacing:0.007200px;}
.ws2b_c00349{word-spacing:0.009576px;}
.ws9_c00349{word-spacing:0.014400px;}
.wsf_c00349{word-spacing:0.021600px;}
.ws2a_c00349{word-spacing:0.023940px;}
.wsd_c00349{word-spacing:0.043200px;}
.ws17_c00349{word-spacing:0.057600px;}
.ws14_c00349{word-spacing:0.064800px;}
.ws1b_c00349{word-spacing:2.160000px;}
.ws1c_c00349{word-spacing:2.203200px;}
.wsc_c00349{word-spacing:2.520000px;}
.wsb_c00349{word-spacing:2.563200px;}
.ws29_c00349{word-spacing:2.872800px;}
.ws23_c00349{word-spacing:2.887200px;}
.ws24_c00349{word-spacing:2.944800px;}
.ws28_c00349{word-spacing:3.657600px;}
.ws27_c00349{word-spacing:3.736800px;}
.ws6_c00349{word-spacing:5.378400px;}
.ws5_c00349{word-spacing:5.522400px;}
.ws19_c00349{word-spacing:6.501600px;}
.ws1a_c00349{word-spacing:6.559200px;}
.ws25_c00349{word-spacing:7.632000px;}
.ws26_c00349{word-spacing:7.660800px;}
.wsa_c00349{word-spacing:9.079200px;}
.ws20_c00349{word-spacing:11.592000px;}
.ws1f_c00349{word-spacing:11.808000px;}
.ws16_c00349{word-spacing:14.025600px;}
.ws15_c00349{word-spacing:14.133600px;}
.ws21_c00349{word-spacing:16.192800px;}
.ws22_c00349{word-spacing:16.279200px;}
.ws7_c00349{word-spacing:17.985600px;}
.ws8_c00349{word-spacing:18.079200px;}
.ws1e_c00349{word-spacing:28.130400px;}
.ws1d_c00349{word-spacing:28.152000px;}
.ws13_c00349{word-spacing:30.909600px;}
.ws12_c00349{word-spacing:30.974400px;}
._0_c00349{margin-left:-1.022040px;}
._1_c00349{width:1.224000px;}
.fc0_c00349{color:rgb(0,0,0);}
.fs5_c00349{font-size:38.880000px;}
.fs3_c00349{font-size:42.120000px;}
.fs4_c00349{font-size:47.880000px;}
.fs2_c00349{font-size:54.000000px;}
.fs0_c00349{font-size:60.120000px;}
.fs1_c00349{font-size:72.000000px;}
.y0_c00349{bottom:0.000000px;}
.y3_c00349{bottom:57.450450px;}
.y4_c00349{bottom:61.410450px;}
.y27_c00349{bottom:109.479810px;}
.y26_c00349{bottom:127.746030px;}
.y25_c00349{bottom:146.108010px;}
.y24_c00349{bottom:164.374230px;}
.y23_c00349{bottom:182.649630px;}
.y22_c00349{bottom:201.011610px;}
.y21_c00349{bottom:219.277830px;}
.y20_c00349{bottom:237.544050px;}
.y1f_c00349{bottom:255.906030px;}
.y1e_c00349{bottom:274.172250px;}
.y1d_c00349{bottom:292.438470px;}
.y1c_c00349{bottom:310.804950px;}
.y1b_c00349{bottom:324.570450px;}
.y1a_c00349{bottom:339.780450px;}
.y19_c00349{bottom:360.480450px;}
.y18_c00349{bottom:381.180450px;}
.y17_c00349{bottom:485.490450px;}
.y16_c00349{bottom:519.960450px;}
.y15_c00349{bottom:554.340450px;}
.y14_c00349{bottom:588.810450px;}
.y13_c00349{bottom:623.190450px;}
.y12_c00349{bottom:675.660450px;}
.y11_c00349{bottom:710.040600px;}
.y10_c00349{bottom:744.510600px;}
.yf_c00349{bottom:778.890600px;}
.ye_c00349{bottom:813.360450px;}
.yd_c00349{bottom:847.740450px;}
.yc_c00349{bottom:882.210450px;}
.yb_c00349{bottom:916.590450px;}
.ya_c00349{bottom:969.060450px;}
.y9_c00349{bottom:1003.440450px;}
.y8_c00349{bottom:1037.910450px;}
.y7_c00349{bottom:1072.290450px;}
.y6_c00349{bottom:1106.760450px;}
.y5_c00349{bottom:1141.140450px;}
.y2_c00349{bottom:1173.810450px;}
.y1_c00349{bottom:1196.850450px;}
.h2_c00349{height:47.988281px;}
.h9_c00349{height:49.937344px;}
.h1_c00349{height:50.315273px;}
.h3_c00349{height:56.320312px;}
.h4_c00349{height:60.257812px;}
.h8_c00349{height:65.130220px;}
.h5_c00349{height:65.130820px;}
.h7_c00349{height:65.131420px;}
.h6_c00349{height:75.093750px;}
.h0_c00349{height:1263.000000px;}
.w1_c00349{width:892.500000px;}
.w0_c00349{width:892.830000px;}
.x0_c00349{left:0.000000px;}
.x2_c00349{left:127.620000px;}
.x7_c00349{left:154.620000px;}
.x6_c00349{left:180.810000px;}
.x5_c00349{left:207.180000px;}
.x4_c00349{left:435.240000px;}
.x3_c00349{left:446.490000px;}
.x1_c00349{left:490.770000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.v1_c00349{vertical-align:26.560000pt;}
.lse_c00349{letter-spacing:-0.134400pt;}
.ls15_c00349{letter-spacing:-0.044800pt;}
.ls13_c00349{letter-spacing:-0.038400pt;}
.ls16_c00349{letter-spacing:-0.025600pt;}
.ls14_c00349{letter-spacing:-0.019200pt;}
.ls19_c00349{letter-spacing:-0.017280pt;}
.ls11_c00349{letter-spacing:-0.012800pt;}
.ls18_c00349{letter-spacing:-0.010368pt;}
.lsf_c00349{letter-spacing:-0.006400pt;}
.ls17_c00349{letter-spacing:-0.004256pt;}
.lsd_c00349{letter-spacing:0.000000pt;}
.ls2_c00349{letter-spacing:0.006400pt;}
.ls1a_c00349{letter-spacing:0.008512pt;}
.ls9_c00349{letter-spacing:0.012768pt;}
.ls1_c00349{letter-spacing:0.012800pt;}
.lsc_c00349{letter-spacing:0.017024pt;}
.ls10_c00349{letter-spacing:0.019200pt;}
.ls6_c00349{letter-spacing:0.021280pt;}
.lsa_c00349{letter-spacing:0.025536pt;}
.ls8_c00349{letter-spacing:0.029792pt;}
.ls0_c00349{letter-spacing:0.032064pt;}
.lsb_c00349{letter-spacing:0.034048pt;}
.ls3_c00349{letter-spacing:0.048672pt;}
.ls12_c00349{letter-spacing:0.083200pt;}
.ls7_c00349{letter-spacing:0.092480pt;}
.ls4_c00349{letter-spacing:0.128000pt;}
.ls5_c00349{letter-spacing:58.048000pt;}
.ws1_c00349{word-spacing:-15.993600pt;}
.ws2_c00349{word-spacing:-9.590400pt;}
.ws0_c00349{word-spacing:-9.408672pt;}
.ws3_c00349{word-spacing:-0.272544pt;}
.ws18_c00349{word-spacing:-0.083200pt;}
.ws11_c00349{word-spacing:-0.076800pt;}
.ws30_c00349{word-spacing:-0.017024pt;}
.ws2c_c00349{word-spacing:-0.012768pt;}
.ws2f_c00349{word-spacing:-0.008512pt;}
.wse_c00349{word-spacing:-0.006400pt;}
.ws2e_c00349{word-spacing:-0.004256pt;}
.ws4_c00349{word-spacing:0.000000pt;}
.ws2d_c00349{word-spacing:0.004256pt;}
.ws10_c00349{word-spacing:0.006400pt;}
.ws2b_c00349{word-spacing:0.008512pt;}
.ws9_c00349{word-spacing:0.012800pt;}
.wsf_c00349{word-spacing:0.019200pt;}
.ws2a_c00349{word-spacing:0.021280pt;}
.wsd_c00349{word-spacing:0.038400pt;}
.ws17_c00349{word-spacing:0.051200pt;}
.ws14_c00349{word-spacing:0.057600pt;}
.ws1b_c00349{word-spacing:1.920000pt;}
.ws1c_c00349{word-spacing:1.958400pt;}
.wsc_c00349{word-spacing:2.240000pt;}
.wsb_c00349{word-spacing:2.278400pt;}
.ws29_c00349{word-spacing:2.553600pt;}
.ws23_c00349{word-spacing:2.566400pt;}
.ws24_c00349{word-spacing:2.617600pt;}
.ws28_c00349{word-spacing:3.251200pt;}
.ws27_c00349{word-spacing:3.321600pt;}
.ws6_c00349{word-spacing:4.780800pt;}
.ws5_c00349{word-spacing:4.908800pt;}
.ws19_c00349{word-spacing:5.779200pt;}
.ws1a_c00349{word-spacing:5.830400pt;}
.ws25_c00349{word-spacing:6.784000pt;}
.ws26_c00349{word-spacing:6.809600pt;}
.wsa_c00349{word-spacing:8.070400pt;}
.ws20_c00349{word-spacing:10.304000pt;}
.ws1f_c00349{word-spacing:10.496000pt;}
.ws16_c00349{word-spacing:12.467200pt;}
.ws15_c00349{word-spacing:12.563200pt;}
.ws21_c00349{word-spacing:14.393600pt;}
.ws22_c00349{word-spacing:14.470400pt;}
.ws7_c00349{word-spacing:15.987200pt;}
.ws8_c00349{word-spacing:16.070400pt;}
.ws1e_c00349{word-spacing:25.004800pt;}
.ws1d_c00349{word-spacing:25.024000pt;}
.ws13_c00349{word-spacing:27.475200pt;}
.ws12_c00349{word-spacing:27.532800pt;}
._0_c00349{margin-left:-0.908480pt;}
._1_c00349{width:1.088000pt;}
.fs5_c00349{font-size:34.560000pt;}
.fs3_c00349{font-size:37.440000pt;}
.fs4_c00349{font-size:42.560000pt;}
.fs2_c00349{font-size:48.000000pt;}
.fs0_c00349{font-size:53.440000pt;}
.fs1_c00349{font-size:64.000000pt;}
.y0_c00349{bottom:0.000000pt;}
.y3_c00349{bottom:51.067067pt;}
.y4_c00349{bottom:54.587067pt;}
.y27_c00349{bottom:97.315387pt;}
.y26_c00349{bottom:113.552027pt;}
.y25_c00349{bottom:129.873787pt;}
.y24_c00349{bottom:146.110427pt;}
.y23_c00349{bottom:162.355227pt;}
.y22_c00349{bottom:178.676987pt;}
.y21_c00349{bottom:194.913627pt;}
.y20_c00349{bottom:211.150267pt;}
.y1f_c00349{bottom:227.472027pt;}
.y1e_c00349{bottom:243.708667pt;}
.y1d_c00349{bottom:259.945307pt;}
.y1c_c00349{bottom:276.271067pt;}
.y1b_c00349{bottom:288.507067pt;}
.y1a_c00349{bottom:302.027067pt;}
.y19_c00349{bottom:320.427067pt;}
.y18_c00349{bottom:338.827067pt;}
.y17_c00349{bottom:431.547067pt;}
.y16_c00349{bottom:462.187067pt;}
.y15_c00349{bottom:492.747067pt;}
.y14_c00349{bottom:523.387067pt;}
.y13_c00349{bottom:553.947067pt;}
.y12_c00349{bottom:600.587067pt;}
.y11_c00349{bottom:631.147200pt;}
.y10_c00349{bottom:661.787200pt;}
.yf_c00349{bottom:692.347200pt;}
.ye_c00349{bottom:722.987067pt;}
.yd_c00349{bottom:753.547067pt;}
.yc_c00349{bottom:784.187067pt;}
.yb_c00349{bottom:814.747067pt;}
.ya_c00349{bottom:861.387067pt;}
.y9_c00349{bottom:891.947067pt;}
.y8_c00349{bottom:922.587067pt;}
.y7_c00349{bottom:953.147067pt;}
.y6_c00349{bottom:983.787067pt;}
.y5_c00349{bottom:1014.347067pt;}
.y2_c00349{bottom:1043.387067pt;}
.y1_c00349{bottom:1063.867067pt;}
.h2_c00349{height:42.656250pt;}
.h9_c00349{height:44.388750pt;}
.h1_c00349{height:44.724687pt;}
.h3_c00349{height:50.062500pt;}
.h4_c00349{height:53.562500pt;}
.h8_c00349{height:57.893529pt;}
.h5_c00349{height:57.894062pt;}
.h7_c00349{height:57.894596pt;}
.h6_c00349{height:66.750000pt;}
.h0_c00349{height:1122.666667pt;}
.w1_c00349{width:793.333333pt;}
.w0_c00349{width:793.626667pt;}
.x0_c00349{left:0.000000pt;}
.x2_c00349{left:113.440000pt;}
.x7_c00349{left:137.440000pt;}
.x6_c00349{left:160.720000pt;}
.x5_c00349{left:184.160000pt;}
.x4_c00349{left:386.880000pt;}
.x3_c00349{left:396.880000pt;}
.x1_c00349{left:436.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_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_79f1ecb248fef8dabef73e4f.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.100098;font-style:normal;font-weight:normal;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_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;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_c00350;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00350;src:url('chunks/assets/font_6d85901e2e7da0744bf0e604.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00350{vertical-align:15.840000px;}
.v2_c00350{vertical-align:29.880000px;}
.ls12_c00350{letter-spacing:-0.468000px;}
.lsd_c00350{letter-spacing:-0.151200px;}
.ls18_c00350{letter-spacing:-0.108000px;}
.ls17_c00350{letter-spacing:-0.057600px;}
.ls13_c00350{letter-spacing:-0.050400px;}
.ls16_c00350{letter-spacing:-0.028800px;}
.lsf_c00350{letter-spacing:-0.021600px;}
.ls10_c00350{letter-spacing:-0.014400px;}
.lse_c00350{letter-spacing:-0.007200px;}
.lsc_c00350{letter-spacing:0.000000px;}
.ls2_c00350{letter-spacing:0.007200px;}
.ls4_c00350{letter-spacing:0.014400px;}
.ls9_c00350{letter-spacing:0.019152px;}
.ls5_c00350{letter-spacing:0.021600px;}
.lsb_c00350{letter-spacing:0.023940px;}
.lsa_c00350{letter-spacing:0.028728px;}
.ls14_c00350{letter-spacing:0.028800px;}
.ls6_c00350{letter-spacing:0.036000px;}
.ls0_c00350{letter-spacing:0.048096px;}
.ls3_c00350{letter-spacing:0.054756px;}
.ls19_c00350{letter-spacing:0.064800px;}
.ls11_c00350{letter-spacing:0.093600px;}
.ls7_c00350{letter-spacing:0.144000px;}
.ls15_c00350{letter-spacing:14.400000px;}
.ls8_c00350{letter-spacing:65.304000px;}
.ls1_c00350{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00350{word-spacing:-17.942400px;}
.ws0_c00350{word-spacing:-10.584756px;}
.ws12_c00350{word-spacing:-0.086400px;}
.ws11_c00350{word-spacing:-0.036000px;}
.ws25_c00350{word-spacing:-0.009576px;}
.ws20_c00350{word-spacing:-0.007200px;}
.ws26_c00350{word-spacing:-0.004788px;}
.ws3_c00350{word-spacing:0.000000px;}
.ws6_c00350{word-spacing:0.007200px;}
.ws8_c00350{word-spacing:0.014400px;}
.ws19_c00350{word-spacing:0.028800px;}
.ws2_c00350{word-spacing:0.042084px;}
.ws17_c00350{word-spacing:2.232000px;}
.ws16_c00350{word-spacing:2.253600px;}
.ws7_c00350{word-spacing:4.341600px;}
.ws1c_c00350{word-spacing:5.796000px;}
.ws1b_c00350{word-spacing:5.803200px;}
.ws1e_c00350{word-spacing:7.905600px;}
.ws1d_c00350{word-spacing:7.977600px;}
.ws1f_c00350{word-spacing:8.028000px;}
.ws4_c00350{word-spacing:8.632800px;}
.ws5_c00350{word-spacing:8.640000px;}
.ws9_c00350{word-spacing:9.079200px;}
.wse_c00350{word-spacing:10.087200px;}
.wsd_c00350{word-spacing:10.094400px;}
.wsf_c00350{word-spacing:10.101600px;}
.ws10_c00350{word-spacing:10.188000px;}
.ws24_c00350{word-spacing:10.735200px;}
.ws23_c00350{word-spacing:10.850400px;}
.ws18_c00350{word-spacing:14.414400px;}
.wsc_c00350{word-spacing:15.458400px;}
.wsb_c00350{word-spacing:15.465600px;}
.wsa_c00350{word-spacing:15.559200px;}
.ws15_c00350{word-spacing:18.943200px;}
.ws14_c00350{word-spacing:19.087200px;}
.ws13_c00350{word-spacing:19.216800px;}
.ws22_c00350{word-spacing:19.425600px;}
.ws21_c00350{word-spacing:19.526400px;}
.ws1a_c00350{word-spacing:35.668800px;}
._3_c00350{margin-left:-14.934492px;}
._2_c00350{margin-left:-13.865508px;}
._0_c00350{margin-left:-1.322640px;}
._1_c00350{width:1.000800px;}
.fc0_c00350{color:rgb(0,0,0);}
.fs3_c00350{font-size:42.120000px;}
.fs4_c00350{font-size:47.880000px;}
.fs1_c00350{font-size:54.000000px;}
.fs0_c00350{font-size:60.120000px;}
.fs2_c00350{font-size:72.000000px;}
.y0_c00350{bottom:0.000000px;}
.y3_c00350{bottom:57.450450px;}
.y28_c00350{bottom:113.722770px;}
.y27_c00350{bottom:132.084750px;}
.y26_c00350{bottom:150.350970px;}
.y25_c00350{bottom:168.617190px;}
.y24_c00350{bottom:186.979170px;}
.y23_c00350{bottom:205.245390px;}
.y22_c00350{bottom:223.511610px;}
.y21_c00350{bottom:241.873590px;}
.y20_c00350{bottom:260.139810px;}
.y1f_c00350{bottom:278.406030px;}
.y1e_c00350{bottom:296.768010px;}
.y1d_c00350{bottom:315.034230px;}
.y1c_c00350{bottom:333.300450px;}
.y1b_c00350{bottom:348.510450px;}
.y1a_c00350{bottom:369.210450px;}
.y19_c00350{bottom:389.910450px;}
.y18_c00350{bottom:434.640450px;}
.y17_c00350{bottom:469.110450px;}
.y16_c00350{bottom:521.490450px;}
.y15_c00350{bottom:555.960450px;}
.y14_c00350{bottom:590.340450px;}
.y13_c00350{bottom:624.810450px;}
.y12_c00350{bottom:659.190450px;}
.y11_c00350{bottom:693.660450px;}
.y10_c00350{bottom:728.040450px;}
.yf_c00350{bottom:762.510450px;}
.ye_c00350{bottom:796.890450px;}
.yd_c00350{bottom:831.360450px;}
.yc_c00350{bottom:865.740450px;}
.yb_c00350{bottom:900.210450px;}
.ya_c00350{bottom:934.590450px;}
.y9_c00350{bottom:969.060450px;}
.y8_c00350{bottom:1003.440450px;}
.y7_c00350{bottom:1037.910450px;}
.y6_c00350{bottom:1072.290450px;}
.y5_c00350{bottom:1106.760450px;}
.y4_c00350{bottom:1141.140450px;}
.y2_c00350{bottom:1177.860450px;}
.y1_c00350{bottom:1196.850450px;}
.h8_c00350{height:47.988281px;}
.h9_c00350{height:49.937344px;}
.h1_c00350{height:50.315273px;}
.h2_c00350{height:56.320312px;}
.h5_c00350{height:60.257812px;}
.h4_c00350{height:65.130820px;}
.h7_c00350{height:65.131420px;}
.h3_c00350{height:72.160312px;}
.h6_c00350{height:75.093750px;}
.h0_c00350{height:1263.000000px;}
.w1_c00350{width:892.500000px;}
.w0_c00350{width:892.830000px;}
.x0_c00350{left:0.000000px;}
.x1_c00350{left:127.620000px;}
.x4_c00350{left:154.620000px;}
.x2_c00350{left:181.620000px;}
.x3_c00350{left:207.180000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.v1_c00350{vertical-align:14.080000pt;}
.v2_c00350{vertical-align:26.560000pt;}
.ls12_c00350{letter-spacing:-0.416000pt;}
.lsd_c00350{letter-spacing:-0.134400pt;}
.ls18_c00350{letter-spacing:-0.096000pt;}
.ls17_c00350{letter-spacing:-0.051200pt;}
.ls13_c00350{letter-spacing:-0.044800pt;}
.ls16_c00350{letter-spacing:-0.025600pt;}
.lsf_c00350{letter-spacing:-0.019200pt;}
.ls10_c00350{letter-spacing:-0.012800pt;}
.lse_c00350{letter-spacing:-0.006400pt;}
.lsc_c00350{letter-spacing:0.000000pt;}
.ls2_c00350{letter-spacing:0.006400pt;}
.ls4_c00350{letter-spacing:0.012800pt;}
.ls9_c00350{letter-spacing:0.017024pt;}
.ls5_c00350{letter-spacing:0.019200pt;}
.lsb_c00350{letter-spacing:0.021280pt;}
.lsa_c00350{letter-spacing:0.025536pt;}
.ls14_c00350{letter-spacing:0.025600pt;}
.ls6_c00350{letter-spacing:0.032000pt;}
.ls0_c00350{letter-spacing:0.042752pt;}
.ls3_c00350{letter-spacing:0.048672pt;}
.ls19_c00350{letter-spacing:0.057600pt;}
.ls11_c00350{letter-spacing:0.083200pt;}
.ls7_c00350{letter-spacing:0.128000pt;}
.ls15_c00350{letter-spacing:12.800000pt;}
.ls8_c00350{letter-spacing:58.048000pt;}
.ls1_c00350{letter-spacing:1077.440000pt;}
.ws1_c00350{word-spacing:-15.948800pt;}
.ws0_c00350{word-spacing:-9.408672pt;}
.ws12_c00350{word-spacing:-0.076800pt;}
.ws11_c00350{word-spacing:-0.032000pt;}
.ws25_c00350{word-spacing:-0.008512pt;}
.ws20_c00350{word-spacing:-0.006400pt;}
.ws26_c00350{word-spacing:-0.004256pt;}
.ws3_c00350{word-spacing:0.000000pt;}
.ws6_c00350{word-spacing:0.006400pt;}
.ws8_c00350{word-spacing:0.012800pt;}
.ws19_c00350{word-spacing:0.025600pt;}
.ws2_c00350{word-spacing:0.037408pt;}
.ws17_c00350{word-spacing:1.984000pt;}
.ws16_c00350{word-spacing:2.003200pt;}
.ws7_c00350{word-spacing:3.859200pt;}
.ws1c_c00350{word-spacing:5.152000pt;}
.ws1b_c00350{word-spacing:5.158400pt;}
.ws1e_c00350{word-spacing:7.027200pt;}
.ws1d_c00350{word-spacing:7.091200pt;}
.ws1f_c00350{word-spacing:7.136000pt;}
.ws4_c00350{word-spacing:7.673600pt;}
.ws5_c00350{word-spacing:7.680000pt;}
.ws9_c00350{word-spacing:8.070400pt;}
.wse_c00350{word-spacing:8.966400pt;}
.wsd_c00350{word-spacing:8.972800pt;}
.wsf_c00350{word-spacing:8.979200pt;}
.ws10_c00350{word-spacing:9.056000pt;}
.ws24_c00350{word-spacing:9.542400pt;}
.ws23_c00350{word-spacing:9.644800pt;}
.ws18_c00350{word-spacing:12.812800pt;}
.wsc_c00350{word-spacing:13.740800pt;}
.wsb_c00350{word-spacing:13.747200pt;}
.wsa_c00350{word-spacing:13.830400pt;}
.ws15_c00350{word-spacing:16.838400pt;}
.ws14_c00350{word-spacing:16.966400pt;}
.ws13_c00350{word-spacing:17.081600pt;}
.ws22_c00350{word-spacing:17.267200pt;}
.ws21_c00350{word-spacing:17.356800pt;}
.ws1a_c00350{word-spacing:31.705600pt;}
._3_c00350{margin-left:-13.275104pt;}
._2_c00350{margin-left:-12.324896pt;}
._0_c00350{margin-left:-1.175680pt;}
._1_c00350{width:0.889600pt;}
.fs3_c00350{font-size:37.440000pt;}
.fs4_c00350{font-size:42.560000pt;}
.fs1_c00350{font-size:48.000000pt;}
.fs0_c00350{font-size:53.440000pt;}
.fs2_c00350{font-size:64.000000pt;}
.y0_c00350{bottom:0.000000pt;}
.y3_c00350{bottom:51.067067pt;}
.y28_c00350{bottom:101.086907pt;}
.y27_c00350{bottom:117.408667pt;}
.y26_c00350{bottom:133.645307pt;}
.y25_c00350{bottom:149.881947pt;}
.y24_c00350{bottom:166.203707pt;}
.y23_c00350{bottom:182.440347pt;}
.y22_c00350{bottom:198.676987pt;}
.y21_c00350{bottom:214.998747pt;}
.y20_c00350{bottom:231.235387pt;}
.y1f_c00350{bottom:247.472027pt;}
.y1e_c00350{bottom:263.793787pt;}
.y1d_c00350{bottom:280.030427pt;}
.y1c_c00350{bottom:296.267067pt;}
.y1b_c00350{bottom:309.787067pt;}
.y1a_c00350{bottom:328.187067pt;}
.y19_c00350{bottom:346.587067pt;}
.y18_c00350{bottom:386.347067pt;}
.y17_c00350{bottom:416.987067pt;}
.y16_c00350{bottom:463.547067pt;}
.y15_c00350{bottom:494.187067pt;}
.y14_c00350{bottom:524.747067pt;}
.y13_c00350{bottom:555.387067pt;}
.y12_c00350{bottom:585.947067pt;}
.y11_c00350{bottom:616.587067pt;}
.y10_c00350{bottom:647.147067pt;}
.yf_c00350{bottom:677.787067pt;}
.ye_c00350{bottom:708.347067pt;}
.yd_c00350{bottom:738.987067pt;}
.yc_c00350{bottom:769.547067pt;}
.yb_c00350{bottom:800.187067pt;}
.ya_c00350{bottom:830.747067pt;}
.y9_c00350{bottom:861.387067pt;}
.y8_c00350{bottom:891.947067pt;}
.y7_c00350{bottom:922.587067pt;}
.y6_c00350{bottom:953.147067pt;}
.y5_c00350{bottom:983.787067pt;}
.y4_c00350{bottom:1014.347067pt;}
.y2_c00350{bottom:1046.987067pt;}
.y1_c00350{bottom:1063.867067pt;}
.h8_c00350{height:42.656250pt;}
.h9_c00350{height:44.388750pt;}
.h1_c00350{height:44.724687pt;}
.h2_c00350{height:50.062500pt;}
.h5_c00350{height:53.562500pt;}
.h4_c00350{height:57.894063pt;}
.h7_c00350{height:57.894596pt;}
.h3_c00350{height:64.142500pt;}
.h6_c00350{height:66.750000pt;}
.h0_c00350{height:1122.666667pt;}
.w1_c00350{width:793.333333pt;}
.w0_c00350{width:793.626667pt;}
.x0_c00350{left:0.000000pt;}
.x1_c00350{left:113.440000pt;}
.x4_c00350{left:137.440000pt;}
.x2_c00350{left:161.440000pt;}
.x3_c00350{left:184.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_26f4d3840766922fc2e1f7f6.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00351;src:url('chunks/assets/font_e530ef3c965efc48aacc7aab.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00351{vertical-align:29.880000px;}
.lsd_c00351{letter-spacing:-0.151200px;}
.ls13_c00351{letter-spacing:-0.057600px;}
.ls18_c00351{letter-spacing:-0.050400px;}
.ls12_c00351{letter-spacing:-0.043200px;}
.ls11_c00351{letter-spacing:-0.036000px;}
.lsf_c00351{letter-spacing:-0.021600px;}
.ls10_c00351{letter-spacing:-0.014400px;}
.ls16_c00351{letter-spacing:-0.007200px;}
.lsc_c00351{letter-spacing:0.000000px;}
.ls1_c00351{letter-spacing:0.007200px;}
.ls4_c00351{letter-spacing:0.014400px;}
.lsb_c00351{letter-spacing:0.019152px;}
.ls3_c00351{letter-spacing:0.021600px;}
.lsa_c00351{letter-spacing:0.023940px;}
.ls9_c00351{letter-spacing:0.028728px;}
.ls5_c00351{letter-spacing:0.028800px;}
.ls17_c00351{letter-spacing:0.036000px;}
.ls0_c00351{letter-spacing:0.036072px;}
.lse_c00351{letter-spacing:0.050400px;}
.ls2_c00351{letter-spacing:0.054756px;}
.ls8_c00351{letter-spacing:0.057600px;}
.ls15_c00351{letter-spacing:0.064800px;}
.ls14_c00351{letter-spacing:0.093600px;}
.ls6_c00351{letter-spacing:0.144000px;}
.ls7_c00351{letter-spacing:65.304000px;}
.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.007200px;}
.ws3_c00351{word-spacing:-17.992800px;}
.ws0_c00351{word-spacing:-17.978400px;}
.ws2_c00351{word-spacing:-17.942400px;}
.ws1_c00351{word-spacing:-10.584756px;}
.ws5_c00351{word-spacing:-0.306612px;}
.ws28_c00351{word-spacing:-0.093600px;}
.ws14_c00351{word-spacing:-0.086400px;}
.ws29_c00351{word-spacing:-0.009576px;}
.ws2a_c00351{word-spacing:-0.004788px;}
.ws6_c00351{word-spacing:0.000000px;}
.ws13_c00351{word-spacing:0.021600px;}
.ws27_c00351{word-spacing:0.122400px;}
.ws22_c00351{word-spacing:0.230400px;}
.ws23_c00351{word-spacing:0.403200px;}
.ws24_c00351{word-spacing:0.410400px;}
.ws9_c00351{word-spacing:0.734400px;}
.ws21_c00351{word-spacing:2.102400px;}
.ws20_c00351{word-spacing:2.167200px;}
.wsf_c00351{word-spacing:2.800800px;}
.wse_c00351{word-spacing:2.894400px;}
.ws12_c00351{word-spacing:4.010400px;}
.ws10_c00351{word-spacing:4.032000px;}
.ws11_c00351{word-spacing:4.089600px;}
.ws19_c00351{word-spacing:5.745600px;}
.ws1a_c00351{word-spacing:5.781600px;}
.ws15_c00351{word-spacing:6.501600px;}
.ws16_c00351{word-spacing:6.559200px;}
.wsd_c00351{word-spacing:6.811200px;}
.ws25_c00351{word-spacing:7.632000px;}
.ws26_c00351{word-spacing:7.660800px;}
.ws1d_c00351{word-spacing:8.640000px;}
.ws1c_c00351{word-spacing:8.748000px;}
.ws1f_c00351{word-spacing:9.741600px;}
.ws1e_c00351{word-spacing:9.813600px;}
.wsb_c00351{word-spacing:10.836000px;}
.wsc_c00351{word-spacing:10.843200px;}
.ws1b_c00351{word-spacing:16.941600px;}
.ws8_c00351{word-spacing:18.309600px;}
.ws7_c00351{word-spacing:18.403200px;}
.wsa_c00351{word-spacing:22.017600px;}
.ws18_c00351{word-spacing:24.444000px;}
.ws17_c00351{word-spacing:24.516000px;}
._2_c00351{margin-left:-4.680000px;}
._0_c00351{margin-left:-1.022040px;}
._1_c00351{width:1.008000px;}
.fc0_c00351{color:rgb(0,0,0);}
.fs3_c00351{font-size:42.120000px;}
.fs4_c00351{font-size:47.880000px;}
.fs2_c00351{font-size:54.000000px;}
.fs0_c00351{font-size:60.120000px;}
.fs1_c00351{font-size:72.000000px;}
.y0_c00351{bottom:0.000000px;}
.y3_c00351{bottom:57.450450px;}
.y4_c00351{bottom:61.410450px;}
.y28_c00351{bottom:113.722770px;}
.y27_c00351{bottom:132.084750px;}
.y26_c00351{bottom:150.350970px;}
.y25_c00351{bottom:168.617190px;}
.y24_c00351{bottom:186.979170px;}
.y23_c00351{bottom:205.245390px;}
.y22_c00351{bottom:223.511610px;}
.y21_c00351{bottom:241.873590px;}
.y20_c00351{bottom:260.139810px;}
.y1f_c00351{bottom:278.406030px;}
.y1e_c00351{bottom:296.768010px;}
.y1d_c00351{bottom:315.034230px;}
.y1c_c00351{bottom:333.300450px;}
.y1b_c00351{bottom:348.510450px;}
.y1a_c00351{bottom:369.210450px;}
.y19_c00351{bottom:389.910600px;}
.y18_c00351{bottom:469.110450px;}
.y17_c00351{bottom:503.490450px;}
.y16_c00351{bottom:537.960450px;}
.y15_c00351{bottom:572.340450px;}
.y14_c00351{bottom:606.810450px;}
.y13_c00351{bottom:659.190450px;}
.y12_c00351{bottom:693.660450px;}
.y11_c00351{bottom:728.040450px;}
.y10_c00351{bottom:762.510450px;}
.yf_c00351{bottom:796.890450px;}
.ye_c00351{bottom:831.360450px;}
.yd_c00351{bottom:865.740450px;}
.yc_c00351{bottom:900.210450px;}
.yb_c00351{bottom:934.590450px;}
.ya_c00351{bottom:969.060450px;}
.y9_c00351{bottom:1003.440450px;}
.y8_c00351{bottom:1037.910450px;}
.y7_c00351{bottom:1072.290450px;}
.y6_c00351{bottom:1106.760450px;}
.y5_c00351{bottom:1141.140450px;}
.y2_c00351{bottom:1173.810450px;}
.y1_c00351{bottom:1196.850450px;}
.h2_c00351{height:47.988281px;}
.h8_c00351{height:49.937344px;}
.h1_c00351{height:50.315273px;}
.h3_c00351{height:56.320312px;}
.h4_c00351{height:60.257812px;}
.h5_c00351{height:65.130820px;}
.h6_c00351{height:65.131420px;}
.h7_c00351{height:75.093750px;}
.h0_c00351{height:1263.000000px;}
.w1_c00351{width:892.500000px;}
.w0_c00351{width:892.830000px;}
.x0_c00351{left:0.000000px;}
.x2_c00351{left:127.620000px;}
.x7_c00351{left:154.620000px;}
.x5_c00351{left:181.620000px;}
.x6_c00351{left:207.180000px;}
.x4_c00351{left:435.240000px;}
.x3_c00351{left:446.490000px;}
.x1_c00351{left:490.770000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.v1_c00351{vertical-align:26.560000pt;}
.lsd_c00351{letter-spacing:-0.134400pt;}
.ls13_c00351{letter-spacing:-0.051200pt;}
.ls18_c00351{letter-spacing:-0.044800pt;}
.ls12_c00351{letter-spacing:-0.038400pt;}
.ls11_c00351{letter-spacing:-0.032000pt;}
.lsf_c00351{letter-spacing:-0.019200pt;}
.ls10_c00351{letter-spacing:-0.012800pt;}
.ls16_c00351{letter-spacing:-0.006400pt;}
.lsc_c00351{letter-spacing:0.000000pt;}
.ls1_c00351{letter-spacing:0.006400pt;}
.ls4_c00351{letter-spacing:0.012800pt;}
.lsb_c00351{letter-spacing:0.017024pt;}
.ls3_c00351{letter-spacing:0.019200pt;}
.lsa_c00351{letter-spacing:0.021280pt;}
.ls9_c00351{letter-spacing:0.025536pt;}
.ls5_c00351{letter-spacing:0.025600pt;}
.ls17_c00351{letter-spacing:0.032000pt;}
.ls0_c00351{letter-spacing:0.032064pt;}
.lse_c00351{letter-spacing:0.044800pt;}
.ls2_c00351{letter-spacing:0.048672pt;}
.ls8_c00351{letter-spacing:0.051200pt;}
.ls15_c00351{letter-spacing:0.057600pt;}
.ls14_c00351{letter-spacing:0.083200pt;}
.ls6_c00351{letter-spacing:0.128000pt;}
.ls7_c00351{letter-spacing:58.048000pt;}
.ws4_c00351{word-spacing:-16.006400pt;}
.ws3_c00351{word-spacing:-15.993600pt;}
.ws0_c00351{word-spacing:-15.980800pt;}
.ws2_c00351{word-spacing:-15.948800pt;}
.ws1_c00351{word-spacing:-9.408672pt;}
.ws5_c00351{word-spacing:-0.272544pt;}
.ws28_c00351{word-spacing:-0.083200pt;}
.ws14_c00351{word-spacing:-0.076800pt;}
.ws29_c00351{word-spacing:-0.008512pt;}
.ws2a_c00351{word-spacing:-0.004256pt;}
.ws6_c00351{word-spacing:0.000000pt;}
.ws13_c00351{word-spacing:0.019200pt;}
.ws27_c00351{word-spacing:0.108800pt;}
.ws22_c00351{word-spacing:0.204800pt;}
.ws23_c00351{word-spacing:0.358400pt;}
.ws24_c00351{word-spacing:0.364800pt;}
.ws9_c00351{word-spacing:0.652800pt;}
.ws21_c00351{word-spacing:1.868800pt;}
.ws20_c00351{word-spacing:1.926400pt;}
.wsf_c00351{word-spacing:2.489600pt;}
.wse_c00351{word-spacing:2.572800pt;}
.ws12_c00351{word-spacing:3.564800pt;}
.ws10_c00351{word-spacing:3.584000pt;}
.ws11_c00351{word-spacing:3.635200pt;}
.ws19_c00351{word-spacing:5.107200pt;}
.ws1a_c00351{word-spacing:5.139200pt;}
.ws15_c00351{word-spacing:5.779200pt;}
.ws16_c00351{word-spacing:5.830400pt;}
.wsd_c00351{word-spacing:6.054400pt;}
.ws25_c00351{word-spacing:6.784000pt;}
.ws26_c00351{word-spacing:6.809600pt;}
.ws1d_c00351{word-spacing:7.680000pt;}
.ws1c_c00351{word-spacing:7.776000pt;}
.ws1f_c00351{word-spacing:8.659200pt;}
.ws1e_c00351{word-spacing:8.723200pt;}
.wsb_c00351{word-spacing:9.632000pt;}
.wsc_c00351{word-spacing:9.638400pt;}
.ws1b_c00351{word-spacing:15.059200pt;}
.ws8_c00351{word-spacing:16.275200pt;}
.ws7_c00351{word-spacing:16.358400pt;}
.wsa_c00351{word-spacing:19.571200pt;}
.ws18_c00351{word-spacing:21.728000pt;}
.ws17_c00351{word-spacing:21.792000pt;}
._2_c00351{margin-left:-4.160000pt;}
._0_c00351{margin-left:-0.908480pt;}
._1_c00351{width:0.896000pt;}
.fs3_c00351{font-size:37.440000pt;}
.fs4_c00351{font-size:42.560000pt;}
.fs2_c00351{font-size:48.000000pt;}
.fs0_c00351{font-size:53.440000pt;}
.fs1_c00351{font-size:64.000000pt;}
.y0_c00351{bottom:0.000000pt;}
.y3_c00351{bottom:51.067067pt;}
.y4_c00351{bottom:54.587067pt;}
.y28_c00351{bottom:101.086907pt;}
.y27_c00351{bottom:117.408667pt;}
.y26_c00351{bottom:133.645307pt;}
.y25_c00351{bottom:149.881947pt;}
.y24_c00351{bottom:166.203707pt;}
.y23_c00351{bottom:182.440347pt;}
.y22_c00351{bottom:198.676987pt;}
.y21_c00351{bottom:214.998747pt;}
.y20_c00351{bottom:231.235387pt;}
.y1f_c00351{bottom:247.472027pt;}
.y1e_c00351{bottom:263.793787pt;}
.y1d_c00351{bottom:280.030427pt;}
.y1c_c00351{bottom:296.267067pt;}
.y1b_c00351{bottom:309.787067pt;}
.y1a_c00351{bottom:328.187067pt;}
.y19_c00351{bottom:346.587200pt;}
.y18_c00351{bottom:416.987067pt;}
.y17_c00351{bottom:447.547067pt;}
.y16_c00351{bottom:478.187067pt;}
.y15_c00351{bottom:508.747067pt;}
.y14_c00351{bottom:539.387067pt;}
.y13_c00351{bottom:585.947067pt;}
.y12_c00351{bottom:616.587067pt;}
.y11_c00351{bottom:647.147067pt;}
.y10_c00351{bottom:677.787067pt;}
.yf_c00351{bottom:708.347067pt;}
.ye_c00351{bottom:738.987067pt;}
.yd_c00351{bottom:769.547067pt;}
.yc_c00351{bottom:800.187067pt;}
.yb_c00351{bottom:830.747067pt;}
.ya_c00351{bottom:861.387067pt;}
.y9_c00351{bottom:891.947067pt;}
.y8_c00351{bottom:922.587067pt;}
.y7_c00351{bottom:953.147067pt;}
.y6_c00351{bottom:983.787067pt;}
.y5_c00351{bottom:1014.347067pt;}
.y2_c00351{bottom:1043.387067pt;}
.y1_c00351{bottom:1063.867067pt;}
.h2_c00351{height:42.656250pt;}
.h8_c00351{height:44.388750pt;}
.h1_c00351{height:44.724687pt;}
.h3_c00351{height:50.062500pt;}
.h4_c00351{height:53.562500pt;}
.h5_c00351{height:57.894063pt;}
.h6_c00351{height:57.894596pt;}
.h7_c00351{height:66.750000pt;}
.h0_c00351{height:1122.666667pt;}
.w1_c00351{width:793.333333pt;}
.w0_c00351{width:793.626667pt;}
.x0_c00351{left:0.000000pt;}
.x2_c00351{left:113.440000pt;}
.x7_c00351{left:137.440000pt;}
.x5_c00351{left:161.440000pt;}
.x6_c00351{left:184.160000pt;}
.x4_c00351{left:386.880000pt;}
.x3_c00351{left:396.880000pt;}
.x1_c00351{left:436.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_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_03100e19c7edeba5d8378600.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.100098;font-style:normal;font-weight:normal;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_bc597c3a6446a5c2fb3b9c96.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;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_c00352;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00352;src:url('chunks/assets/font_c75f55ba971569eef7b2e66a.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00352;src:url('chunks/assets/font_1c0f779763aedf53f461bf03.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;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_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;}
.v1_c00352{vertical-align:15.840000px;}
.v2_c00352{vertical-align:29.880000px;}
.ls10_c00352{letter-spacing:-0.151200px;}
.ls19_c00352{letter-spacing:-0.050400px;}
.ls16_c00352{letter-spacing:-0.036000px;}
.ls1a_c00352{letter-spacing:-0.028800px;}
.ls11_c00352{letter-spacing:-0.021600px;}
.ls13_c00352{letter-spacing:-0.014400px;}
.ls1b_c00352{letter-spacing:-0.011664px;}
.ls1c_c00352{letter-spacing:-0.009576px;}
.ls17_c00352{letter-spacing:-0.007200px;}
.lsf_c00352{letter-spacing:0.000000px;}
.ls5_c00352{letter-spacing:0.007200px;}
.lse_c00352{letter-spacing:0.014364px;}
.ls14_c00352{letter-spacing:0.014400px;}
.ls6_c00352{letter-spacing:0.019152px;}
.ls18_c00352{letter-spacing:0.021600px;}
.ls7_c00352{letter-spacing:0.028728px;}
.ls9_c00352{letter-spacing:0.033516px;}
.ls8_c00352{letter-spacing:0.047880px;}
.ls0_c00352{letter-spacing:0.048096px;}
.lsc_c00352{letter-spacing:0.052668px;}
.ls2_c00352{letter-spacing:0.054756px;}
.lsd_c00352{letter-spacing:0.057456px;}
.ls1d_c00352{letter-spacing:0.067032px;}
.lsb_c00352{letter-spacing:0.071820px;}
.lsa_c00352{letter-spacing:0.076608px;}
.ls12_c00352{letter-spacing:0.093600px;}
.ls3_c00352{letter-spacing:0.144000px;}
.ls15_c00352{letter-spacing:7.920000px;}
.ls4_c00352{letter-spacing:65.304000px;}
.ls1_c00352{letter-spacing:1212.120000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00352{word-spacing:-17.964000px;}
.ws2_c00352{word-spacing:-17.949600px;}
.ws3_c00352{word-spacing:-13.310640px;}
.ws4_c00352{word-spacing:-10.796976px;}
.ws0_c00352{word-spacing:-10.584756px;}
.wsa_c00352{word-spacing:-0.093600px;}
.ws1c_c00352{word-spacing:-0.086400px;}
.wse_c00352{word-spacing:-0.050400px;}
.ws2a_c00352{word-spacing:-0.009576px;}
.ws6_c00352{word-spacing:0.000000px;}
.ws33_c00352{word-spacing:0.004788px;}
.ws1b_c00352{word-spacing:0.007200px;}
.ws17_c00352{word-spacing:0.014400px;}
.ws9_c00352{word-spacing:0.021600px;}
.ws26_c00352{word-spacing:0.028800px;}
.ws5_c00352{word-spacing:0.042084px;}
.ws18_c00352{word-spacing:0.374400px;}
.ws19_c00352{word-spacing:0.453600px;}
.ws24_c00352{word-spacing:0.763200px;}
.ws25_c00352{word-spacing:0.806400px;}
.ws2b_c00352{word-spacing:2.489760px;}
.ws2c_c00352{word-spacing:2.504124px;}
.ws8_c00352{word-spacing:2.512800px;}
.ws7_c00352{word-spacing:2.599200px;}
.ws22_c00352{word-spacing:3.592800px;}
.ws23_c00352{word-spacing:3.672000px;}
.ws2d_c00352{word-spacing:4.309200px;}
.ws2f_c00352{word-spacing:4.625208px;}
.ws1d_c00352{word-spacing:4.687200px;}
.ws2e_c00352{word-spacing:4.706604px;}
.ws1a_c00352{word-spacing:4.716000px;}
.ws27_c00352{word-spacing:5.472000px;}
.ws20_c00352{word-spacing:6.055200px;}
.ws21_c00352{word-spacing:6.120000px;}
.ws32_c00352{word-spacing:6.789384px;}
.ws31_c00352{word-spacing:6.798960px;}
.ws30_c00352{word-spacing:6.803748px;}
.ws14_c00352{word-spacing:7.207200px;}
.ws13_c00352{word-spacing:7.257600px;}
.wsd_c00352{word-spacing:7.876800px;}
.wsc_c00352{word-spacing:9.345600px;}
.wsb_c00352{word-spacing:9.446400px;}
.ws12_c00352{word-spacing:12.974400px;}
.ws11_c00352{word-spacing:13.017600px;}
.ws16_c00352{word-spacing:14.378400px;}
.ws15_c00352{word-spacing:14.421600px;}
.wsf_c00352{word-spacing:14.796000px;}
.ws10_c00352{word-spacing:14.824800px;}
.ws1f_c00352{word-spacing:18.021600px;}
.ws1e_c00352{word-spacing:18.028800px;}
.ws29_c00352{word-spacing:27.000000px;}
.ws28_c00352{word-spacing:27.079200px;}
._2_c00352{margin-left:-8.020800px;}
._3_c00352{margin-left:-6.883200px;}
._0_c00352{margin-left:-1.322640px;}
._1_c00352{width:1.188000px;}
._4_c00352{width:4.087224px;}
.fc0_c00352{color:rgb(0,0,0);}
.fs5_c00352{font-size:38.880000px;}
.fs3_c00352{font-size:42.120000px;}
.fs4_c00352{font-size:47.880000px;}
.fs1_c00352{font-size:54.000000px;}
.fs0_c00352{font-size:60.120000px;}
.fs2_c00352{font-size:72.000000px;}
.y0_c00352{bottom:0.000000px;}
.y3_c00352{bottom:57.450450px;}
.y27_c00352{bottom:113.707470px;}
.y26_c00352{bottom:132.069450px;}
.y25_c00352{bottom:145.834950px;}
.y24_c00352{bottom:159.610350px;}
.y23_c00352{bottom:173.471610px;}
.y22_c00352{bottom:191.737830px;}
.y21_c00352{bottom:210.004050px;}
.y20_c00352{bottom:228.366030px;}
.y1f_c00352{bottom:246.632250px;}
.y1e_c00352{bottom:264.898470px;}
.y1d_c00352{bottom:283.260450px;}
.y1c_c00352{bottom:298.470450px;}
.y1b_c00352{bottom:319.080450px;}
.y1a_c00352{bottom:339.780600px;}
.y19_c00352{bottom:382.260600px;}
.y18_c00352{bottom:416.640600px;}
.y17_c00352{bottom:451.110450px;}
.y16_c00352{bottom:485.490450px;}
.y15_c00352{bottom:519.960450px;}
.y14_c00352{bottom:554.340450px;}
.y13_c00352{bottom:588.810450px;}
.y12_c00352{bottom:641.190450px;}
.y11_c00352{bottom:675.660450px;}
.y10_c00352{bottom:710.040600px;}
.yf_c00352{bottom:744.510600px;}
.ye_c00352{bottom:778.890600px;}
.yd_c00352{bottom:813.360450px;}
.yc_c00352{bottom:847.740450px;}
.yb_c00352{bottom:882.210450px;}
.ya_c00352{bottom:916.590450px;}
.y9_c00352{bottom:951.060450px;}
.y8_c00352{bottom:1003.440450px;}
.y7_c00352{bottom:1037.910450px;}
.y6_c00352{bottom:1072.290450px;}
.y5_c00352{bottom:1106.760450px;}
.y4_c00352{bottom:1141.140450px;}
.y2_c00352{bottom:1177.860450px;}
.y1_c00352{bottom:1196.850450px;}
.h9_c00352{height:47.988281px;}
.ha_c00352{height:49.937344px;}
.h1_c00352{height:50.315273px;}
.h2_c00352{height:56.320312px;}
.h4_c00352{height:60.257812px;}
.h8_c00352{height:65.130220px;}
.h5_c00352{height:65.130820px;}
.h7_c00352{height:65.131420px;}
.h3_c00352{height:72.160312px;}
.h6_c00352{height:75.093750px;}
.h0_c00352{height:1263.000000px;}
.w1_c00352{width:892.500000px;}
.w0_c00352{width:892.830000px;}
.x0_c00352{left:0.000000px;}
.x1_c00352{left:127.620000px;}
.x4_c00352{left:154.620000px;}
.x3_c00352{left:180.810000px;}
.x2_c00352{left:207.180000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.v1_c00352{vertical-align:14.080000pt;}
.v2_c00352{vertical-align:26.560000pt;}
.ls10_c00352{letter-spacing:-0.134400pt;}
.ls19_c00352{letter-spacing:-0.044800pt;}
.ls16_c00352{letter-spacing:-0.032000pt;}
.ls1a_c00352{letter-spacing:-0.025600pt;}
.ls11_c00352{letter-spacing:-0.019200pt;}
.ls13_c00352{letter-spacing:-0.012800pt;}
.ls1b_c00352{letter-spacing:-0.010368pt;}
.ls1c_c00352{letter-spacing:-0.008512pt;}
.ls17_c00352{letter-spacing:-0.006400pt;}
.lsf_c00352{letter-spacing:0.000000pt;}
.ls5_c00352{letter-spacing:0.006400pt;}
.lse_c00352{letter-spacing:0.012768pt;}
.ls14_c00352{letter-spacing:0.012800pt;}
.ls6_c00352{letter-spacing:0.017024pt;}
.ls18_c00352{letter-spacing:0.019200pt;}
.ls7_c00352{letter-spacing:0.025536pt;}
.ls9_c00352{letter-spacing:0.029792pt;}
.ls8_c00352{letter-spacing:0.042560pt;}
.ls0_c00352{letter-spacing:0.042752pt;}
.lsc_c00352{letter-spacing:0.046816pt;}
.ls2_c00352{letter-spacing:0.048672pt;}
.lsd_c00352{letter-spacing:0.051072pt;}
.ls1d_c00352{letter-spacing:0.059584pt;}
.lsb_c00352{letter-spacing:0.063840pt;}
.lsa_c00352{letter-spacing:0.068096pt;}
.ls12_c00352{letter-spacing:0.083200pt;}
.ls3_c00352{letter-spacing:0.128000pt;}
.ls15_c00352{letter-spacing:7.040000pt;}
.ls4_c00352{letter-spacing:58.048000pt;}
.ls1_c00352{letter-spacing:1077.440000pt;}
.ws1_c00352{word-spacing:-15.968000pt;}
.ws2_c00352{word-spacing:-15.955200pt;}
.ws3_c00352{word-spacing:-11.831680pt;}
.ws4_c00352{word-spacing:-9.597312pt;}
.ws0_c00352{word-spacing:-9.408672pt;}
.wsa_c00352{word-spacing:-0.083200pt;}
.ws1c_c00352{word-spacing:-0.076800pt;}
.wse_c00352{word-spacing:-0.044800pt;}
.ws2a_c00352{word-spacing:-0.008512pt;}
.ws6_c00352{word-spacing:0.000000pt;}
.ws33_c00352{word-spacing:0.004256pt;}
.ws1b_c00352{word-spacing:0.006400pt;}
.ws17_c00352{word-spacing:0.012800pt;}
.ws9_c00352{word-spacing:0.019200pt;}
.ws26_c00352{word-spacing:0.025600pt;}
.ws5_c00352{word-spacing:0.037408pt;}
.ws18_c00352{word-spacing:0.332800pt;}
.ws19_c00352{word-spacing:0.403200pt;}
.ws24_c00352{word-spacing:0.678400pt;}
.ws25_c00352{word-spacing:0.716800pt;}
.ws2b_c00352{word-spacing:2.213120pt;}
.ws2c_c00352{word-spacing:2.225888pt;}
.ws8_c00352{word-spacing:2.233600pt;}
.ws7_c00352{word-spacing:2.310400pt;}
.ws22_c00352{word-spacing:3.193600pt;}
.ws23_c00352{word-spacing:3.264000pt;}
.ws2d_c00352{word-spacing:3.830400pt;}
.ws2f_c00352{word-spacing:4.111296pt;}
.ws1d_c00352{word-spacing:4.166400pt;}
.ws2e_c00352{word-spacing:4.183648pt;}
.ws1a_c00352{word-spacing:4.192000pt;}
.ws27_c00352{word-spacing:4.864000pt;}
.ws20_c00352{word-spacing:5.382400pt;}
.ws21_c00352{word-spacing:5.440000pt;}
.ws32_c00352{word-spacing:6.035008pt;}
.ws31_c00352{word-spacing:6.043520pt;}
.ws30_c00352{word-spacing:6.047776pt;}
.ws14_c00352{word-spacing:6.406400pt;}
.ws13_c00352{word-spacing:6.451200pt;}
.wsd_c00352{word-spacing:7.001600pt;}
.wsc_c00352{word-spacing:8.307200pt;}
.wsb_c00352{word-spacing:8.396800pt;}
.ws12_c00352{word-spacing:11.532800pt;}
.ws11_c00352{word-spacing:11.571200pt;}
.ws16_c00352{word-spacing:12.780800pt;}
.ws15_c00352{word-spacing:12.819200pt;}
.wsf_c00352{word-spacing:13.152000pt;}
.ws10_c00352{word-spacing:13.177600pt;}
.ws1f_c00352{word-spacing:16.019200pt;}
.ws1e_c00352{word-spacing:16.025600pt;}
.ws29_c00352{word-spacing:24.000000pt;}
.ws28_c00352{word-spacing:24.070400pt;}
._2_c00352{margin-left:-7.129600pt;}
._3_c00352{margin-left:-6.118400pt;}
._0_c00352{margin-left:-1.175680pt;}
._1_c00352{width:1.056000pt;}
._4_c00352{width:3.633088pt;}
.fs5_c00352{font-size:34.560000pt;}
.fs3_c00352{font-size:37.440000pt;}
.fs4_c00352{font-size:42.560000pt;}
.fs1_c00352{font-size:48.000000pt;}
.fs0_c00352{font-size:53.440000pt;}
.fs2_c00352{font-size:64.000000pt;}
.y0_c00352{bottom:0.000000pt;}
.y3_c00352{bottom:51.067067pt;}
.y27_c00352{bottom:101.073307pt;}
.y26_c00352{bottom:117.395067pt;}
.y25_c00352{bottom:129.631067pt;}
.y24_c00352{bottom:141.875867pt;}
.y23_c00352{bottom:154.196987pt;}
.y22_c00352{bottom:170.433627pt;}
.y21_c00352{bottom:186.670267pt;}
.y20_c00352{bottom:202.992027pt;}
.y1f_c00352{bottom:219.228667pt;}
.y1e_c00352{bottom:235.465307pt;}
.y1d_c00352{bottom:251.787067pt;}
.y1c_c00352{bottom:265.307067pt;}
.y1b_c00352{bottom:283.627067pt;}
.y1a_c00352{bottom:302.027200pt;}
.y19_c00352{bottom:339.787200pt;}
.y18_c00352{bottom:370.347200pt;}
.y17_c00352{bottom:400.987067pt;}
.y16_c00352{bottom:431.547067pt;}
.y15_c00352{bottom:462.187067pt;}
.y14_c00352{bottom:492.747067pt;}
.y13_c00352{bottom:523.387067pt;}
.y12_c00352{bottom:569.947067pt;}
.y11_c00352{bottom:600.587067pt;}
.y10_c00352{bottom:631.147200pt;}
.yf_c00352{bottom:661.787200pt;}
.ye_c00352{bottom:692.347200pt;}
.yd_c00352{bottom:722.987067pt;}
.yc_c00352{bottom:753.547067pt;}
.yb_c00352{bottom:784.187067pt;}
.ya_c00352{bottom:814.747067pt;}
.y9_c00352{bottom:845.387067pt;}
.y8_c00352{bottom:891.947067pt;}
.y7_c00352{bottom:922.587067pt;}
.y6_c00352{bottom:953.147067pt;}
.y5_c00352{bottom:983.787067pt;}
.y4_c00352{bottom:1014.347067pt;}
.y2_c00352{bottom:1046.987067pt;}
.y1_c00352{bottom:1063.867067pt;}
.h9_c00352{height:42.656250pt;}
.ha_c00352{height:44.388750pt;}
.h1_c00352{height:44.724687pt;}
.h2_c00352{height:50.062500pt;}
.h4_c00352{height:53.562500pt;}
.h8_c00352{height:57.893529pt;}
.h5_c00352{height:57.894063pt;}
.h7_c00352{height:57.894596pt;}
.h3_c00352{height:64.142500pt;}
.h6_c00352{height:66.750000pt;}
.h0_c00352{height:1122.666667pt;}
.w1_c00352{width:793.333333pt;}
.w0_c00352{width:793.626667pt;}
.x0_c00352{left:0.000000pt;}
.x1_c00352{left:113.440000pt;}
.x4_c00352{left:137.440000pt;}
.x3_c00352{left:160.720000pt;}
.x2_c00352{left:184.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ee6462a819d313e90c3c63be.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00353;src:url('chunks/assets/font_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00353;src:url('chunks/assets/font_46ebc3198a0e40f977e5760a.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00353{vertical-align:29.880000px;}
.lsb_c00353{letter-spacing:-0.151200px;}
.lse_c00353{letter-spacing:-0.043200px;}
.ls13_c00353{letter-spacing:-0.036000px;}
.ls11_c00353{letter-spacing:-0.028800px;}
.lsd_c00353{letter-spacing:-0.021600px;}
.lsf_c00353{letter-spacing:-0.014400px;}
.lsc_c00353{letter-spacing:-0.007200px;}
.lsa_c00353{letter-spacing:0.000000px;}
.ls1_c00353{letter-spacing:0.014400px;}
.ls7_c00353{letter-spacing:0.019152px;}
.ls6_c00353{letter-spacing:0.021600px;}
.ls9_c00353{letter-spacing:0.023940px;}
.ls8_c00353{letter-spacing:0.028728px;}
.ls12_c00353{letter-spacing:0.028800px;}
.ls5_c00353{letter-spacing:0.036000px;}
.ls0_c00353{letter-spacing:0.036072px;}
.ls2_c00353{letter-spacing:0.054756px;}
.ls10_c00353{letter-spacing:0.093600px;}
.ls3_c00353{letter-spacing:0.144000px;}
.ls4_c00353{letter-spacing:65.304000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00353{word-spacing:-17.992800px;}
.ws1_c00353{word-spacing:-17.956800px;}
.ws0_c00353{word-spacing:-10.584756px;}
.ws3_c00353{word-spacing:-0.306612px;}
.wsd_c00353{word-spacing:-0.086400px;}
.ws25_c00353{word-spacing:-0.014400px;}
.ws26_c00353{word-spacing:-0.009576px;}
.ws27_c00353{word-spacing:-0.004788px;}
.ws4_c00353{word-spacing:0.000000px;}
.ws24_c00353{word-spacing:0.014400px;}
.wsc_c00353{word-spacing:0.028800px;}
.wsf_c00353{word-spacing:0.100800px;}
.ws12_c00353{word-spacing:2.232000px;}
.ws6_c00353{word-spacing:2.858400px;}
.ws23_c00353{word-spacing:2.880000px;}
.ws5_c00353{word-spacing:2.887200px;}
.ws1a_c00353{word-spacing:3.636000px;}
.ws14_c00353{word-spacing:3.981600px;}
.ws13_c00353{word-spacing:4.046400px;}
.ws8_c00353{word-spacing:4.327200px;}
.ws7_c00353{word-spacing:4.348800px;}
.wsa_c00353{word-spacing:4.644000px;}
.ws9_c00353{word-spacing:4.723200px;}
.wsb_c00353{word-spacing:4.730400px;}
.ws17_c00353{word-spacing:5.407200px;}
.wse_c00353{word-spacing:7.250400px;}
.ws15_c00353{word-spacing:8.964000px;}
.ws16_c00353{word-spacing:9.050400px;}
.ws1c_c00353{word-spacing:9.079200px;}
.ws1b_c00353{word-spacing:9.374400px;}
.ws11_c00353{word-spacing:10.807200px;}
.ws10_c00353{word-spacing:10.843200px;}
.ws1d_c00353{word-spacing:11.138400px;}
.ws1e_c00353{word-spacing:11.181600px;}
.ws19_c00353{word-spacing:15.127200px;}
.ws18_c00353{word-spacing:15.184800px;}
.ws20_c00353{word-spacing:16.538400px;}
.ws22_c00353{word-spacing:16.581600px;}
.ws21_c00353{word-spacing:16.596000px;}
.ws1f_c00353{word-spacing:33.854400px;}
._0_c00353{margin-left:-1.022040px;}
._1_c00353{width:1.094400px;}
._2_c00353{width:16.044984px;}
.fc0_c00353{color:rgb(0,0,0);}
.fs3_c00353{font-size:42.120000px;}
.fs4_c00353{font-size:47.880000px;}
.fs2_c00353{font-size:54.000000px;}
.fs0_c00353{font-size:60.120000px;}
.fs1_c00353{font-size:72.000000px;}
.y0_c00353{bottom:0.000000px;}
.y3_c00353{bottom:57.450450px;}
.y4_c00353{bottom:61.410450px;}
.y27_c00353{bottom:113.713410px;}
.y26_c00353{bottom:132.075390px;}
.y25_c00353{bottom:150.341610px;}
.y24_c00353{bottom:168.607830px;}
.y23_c00353{bottom:186.969810px;}
.y22_c00353{bottom:205.236030px;}
.y21_c00353{bottom:223.502250px;}
.y20_c00353{bottom:241.864230px;}
.y1f_c00353{bottom:260.130450px;}
.y1e_c00353{bottom:275.340450px;}
.y1d_c00353{bottom:296.040450px;}
.y1c_c00353{bottom:316.740600px;}
.y1b_c00353{bottom:365.790450px;}
.y1a_c00353{bottom:400.260450px;}
.y19_c00353{bottom:434.640450px;}
.y18_c00353{bottom:469.110450px;}
.y17_c00353{bottom:503.490450px;}
.y16_c00353{bottom:537.960450px;}
.y15_c00353{bottom:572.340450px;}
.y14_c00353{bottom:606.810450px;}
.y13_c00353{bottom:641.190450px;}
.y12_c00353{bottom:675.660450px;}
.y11_c00353{bottom:710.040450px;}
.y10_c00353{bottom:744.510450px;}
.yf_c00353{bottom:778.890450px;}
.ye_c00353{bottom:813.360450px;}
.yd_c00353{bottom:847.740450px;}
.yc_c00353{bottom:882.210450px;}
.yb_c00353{bottom:934.590450px;}
.ya_c00353{bottom:969.060450px;}
.y9_c00353{bottom:1003.440450px;}
.y8_c00353{bottom:1037.910450px;}
.y7_c00353{bottom:1072.290450px;}
.y6_c00353{bottom:1106.760450px;}
.y5_c00353{bottom:1141.140450px;}
.y2_c00353{bottom:1173.810450px;}
.y1_c00353{bottom:1196.850450px;}
.h2_c00353{height:47.988281px;}
.h8_c00353{height:49.937344px;}
.h1_c00353{height:50.315273px;}
.h3_c00353{height:56.320312px;}
.h4_c00353{height:60.257812px;}
.h5_c00353{height:65.130820px;}
.h7_c00353{height:65.131420px;}
.h6_c00353{height:75.093750px;}
.h0_c00353{height:1263.000000px;}
.w1_c00353{width:892.500000px;}
.w0_c00353{width:892.830000px;}
.x0_c00353{left:0.000000px;}
.x2_c00353{left:127.620000px;}
.x7_c00353{left:154.620000px;}
.x5_c00353{left:180.810000px;}
.x6_c00353{left:207.180000px;}
.x4_c00353{left:435.240000px;}
.x3_c00353{left:446.490000px;}
.x1_c00353{left:490.770000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.v1_c00353{vertical-align:26.560000pt;}
.lsb_c00353{letter-spacing:-0.134400pt;}
.lse_c00353{letter-spacing:-0.038400pt;}
.ls13_c00353{letter-spacing:-0.032000pt;}
.ls11_c00353{letter-spacing:-0.025600pt;}
.lsd_c00353{letter-spacing:-0.019200pt;}
.lsf_c00353{letter-spacing:-0.012800pt;}
.lsc_c00353{letter-spacing:-0.006400pt;}
.lsa_c00353{letter-spacing:0.000000pt;}
.ls1_c00353{letter-spacing:0.012800pt;}
.ls7_c00353{letter-spacing:0.017024pt;}
.ls6_c00353{letter-spacing:0.019200pt;}
.ls9_c00353{letter-spacing:0.021280pt;}
.ls8_c00353{letter-spacing:0.025536pt;}
.ls12_c00353{letter-spacing:0.025600pt;}
.ls5_c00353{letter-spacing:0.032000pt;}
.ls0_c00353{letter-spacing:0.032064pt;}
.ls2_c00353{letter-spacing:0.048672pt;}
.ls10_c00353{letter-spacing:0.083200pt;}
.ls3_c00353{letter-spacing:0.128000pt;}
.ls4_c00353{letter-spacing:58.048000pt;}
.ws2_c00353{word-spacing:-15.993600pt;}
.ws1_c00353{word-spacing:-15.961600pt;}
.ws0_c00353{word-spacing:-9.408672pt;}
.ws3_c00353{word-spacing:-0.272544pt;}
.wsd_c00353{word-spacing:-0.076800pt;}
.ws25_c00353{word-spacing:-0.012800pt;}
.ws26_c00353{word-spacing:-0.008512pt;}
.ws27_c00353{word-spacing:-0.004256pt;}
.ws4_c00353{word-spacing:0.000000pt;}
.ws24_c00353{word-spacing:0.012800pt;}
.wsc_c00353{word-spacing:0.025600pt;}
.wsf_c00353{word-spacing:0.089600pt;}
.ws12_c00353{word-spacing:1.984000pt;}
.ws6_c00353{word-spacing:2.540800pt;}
.ws23_c00353{word-spacing:2.560000pt;}
.ws5_c00353{word-spacing:2.566400pt;}
.ws1a_c00353{word-spacing:3.232000pt;}
.ws14_c00353{word-spacing:3.539200pt;}
.ws13_c00353{word-spacing:3.596800pt;}
.ws8_c00353{word-spacing:3.846400pt;}
.ws7_c00353{word-spacing:3.865600pt;}
.wsa_c00353{word-spacing:4.128000pt;}
.ws9_c00353{word-spacing:4.198400pt;}
.wsb_c00353{word-spacing:4.204800pt;}
.ws17_c00353{word-spacing:4.806400pt;}
.wse_c00353{word-spacing:6.444800pt;}
.ws15_c00353{word-spacing:7.968000pt;}
.ws16_c00353{word-spacing:8.044800pt;}
.ws1c_c00353{word-spacing:8.070400pt;}
.ws1b_c00353{word-spacing:8.332800pt;}
.ws11_c00353{word-spacing:9.606400pt;}
.ws10_c00353{word-spacing:9.638400pt;}
.ws1d_c00353{word-spacing:9.900800pt;}
.ws1e_c00353{word-spacing:9.939200pt;}
.ws19_c00353{word-spacing:13.446400pt;}
.ws18_c00353{word-spacing:13.497600pt;}
.ws20_c00353{word-spacing:14.700800pt;}
.ws22_c00353{word-spacing:14.739200pt;}
.ws21_c00353{word-spacing:14.752000pt;}
.ws1f_c00353{word-spacing:30.092800pt;}
._0_c00353{margin-left:-0.908480pt;}
._1_c00353{width:0.972800pt;}
._2_c00353{width:14.262208pt;}
.fs3_c00353{font-size:37.440000pt;}
.fs4_c00353{font-size:42.560000pt;}
.fs2_c00353{font-size:48.000000pt;}
.fs0_c00353{font-size:53.440000pt;}
.fs1_c00353{font-size:64.000000pt;}
.y0_c00353{bottom:0.000000pt;}
.y3_c00353{bottom:51.067067pt;}
.y4_c00353{bottom:54.587067pt;}
.y27_c00353{bottom:101.078587pt;}
.y26_c00353{bottom:117.400347pt;}
.y25_c00353{bottom:133.636987pt;}
.y24_c00353{bottom:149.873627pt;}
.y23_c00353{bottom:166.195387pt;}
.y22_c00353{bottom:182.432027pt;}
.y21_c00353{bottom:198.668667pt;}
.y20_c00353{bottom:214.990427pt;}
.y1f_c00353{bottom:231.227067pt;}
.y1e_c00353{bottom:244.747067pt;}
.y1d_c00353{bottom:263.147067pt;}
.y1c_c00353{bottom:281.547200pt;}
.y1b_c00353{bottom:325.147067pt;}
.y1a_c00353{bottom:355.787067pt;}
.y19_c00353{bottom:386.347067pt;}
.y18_c00353{bottom:416.987067pt;}
.y17_c00353{bottom:447.547067pt;}
.y16_c00353{bottom:478.187067pt;}
.y15_c00353{bottom:508.747067pt;}
.y14_c00353{bottom:539.387067pt;}
.y13_c00353{bottom:569.947067pt;}
.y12_c00353{bottom:600.587067pt;}
.y11_c00353{bottom:631.147067pt;}
.y10_c00353{bottom:661.787067pt;}
.yf_c00353{bottom:692.347067pt;}
.ye_c00353{bottom:722.987067pt;}
.yd_c00353{bottom:753.547067pt;}
.yc_c00353{bottom:784.187067pt;}
.yb_c00353{bottom:830.747067pt;}
.ya_c00353{bottom:861.387067pt;}
.y9_c00353{bottom:891.947067pt;}
.y8_c00353{bottom:922.587067pt;}
.y7_c00353{bottom:953.147067pt;}
.y6_c00353{bottom:983.787067pt;}
.y5_c00353{bottom:1014.347067pt;}
.y2_c00353{bottom:1043.387067pt;}
.y1_c00353{bottom:1063.867067pt;}
.h2_c00353{height:42.656250pt;}
.h8_c00353{height:44.388750pt;}
.h1_c00353{height:44.724687pt;}
.h3_c00353{height:50.062500pt;}
.h4_c00353{height:53.562500pt;}
.h5_c00353{height:57.894062pt;}
.h7_c00353{height:57.894596pt;}
.h6_c00353{height:66.750000pt;}
.h0_c00353{height:1122.666667pt;}
.w1_c00353{width:793.333333pt;}
.w0_c00353{width:793.626667pt;}
.x0_c00353{left:0.000000pt;}
.x2_c00353{left:113.440000pt;}
.x7_c00353{left:137.440000pt;}
.x5_c00353{left:160.720000pt;}
.x6_c00353{left:184.160000pt;}
.x4_c00353{left:386.880000pt;}
.x3_c00353{left:396.880000pt;}
.x1_c00353{left:436.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_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_655dc61de63d8d0c86529492.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.100098;font-style:normal;font-weight:normal;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_e27087c84ce7a9b227052f7e.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;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_c00354;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_9e0c3cea8f9d218c98889b1b.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00354;src:url('chunks/assets/font_70a93908cb1127ef59d5bec6.woff2')format("woff");}.ff5_c00354{font-family:ff5_c00354;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_c00354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.v1_c00354{vertical-align:15.840000px;}
.v2_c00354{vertical-align:29.880000px;}
.lsf_c00354{letter-spacing:-0.151200px;}
.ls16_c00354{letter-spacing:-0.043200px;}
.ls11_c00354{letter-spacing:-0.036000px;}
.ls10_c00354{letter-spacing:-0.028800px;}
.ls15_c00354{letter-spacing:-0.021600px;}
.ls19_c00354{letter-spacing:-0.019440px;}
.ls14_c00354{letter-spacing:-0.014400px;}
.ls18_c00354{letter-spacing:-0.011664px;}
.ls12_c00354{letter-spacing:-0.007200px;}
.lse_c00354{letter-spacing:0.000000px;}
.ls6_c00354{letter-spacing:0.007200px;}
.ls1a_c00354{letter-spacing:0.009576px;}
.lsa_c00354{letter-spacing:0.014364px;}
.ls5_c00354{letter-spacing:0.014400px;}
.ls7_c00354{letter-spacing:0.021600px;}
.lsd_c00354{letter-spacing:0.023940px;}
.ls9_c00354{letter-spacing:0.028728px;}
.lsc_c00354{letter-spacing:0.038304px;}
.ls17_c00354{letter-spacing:0.043200px;}
.ls0_c00354{letter-spacing:0.048096px;}
.ls4_c00354{letter-spacing:0.054756px;}
.ls8_c00354{letter-spacing:0.072000px;}
.ls13_c00354{letter-spacing:0.093600px;}
.lsb_c00354{letter-spacing:0.104040px;}
.ls2_c00354{letter-spacing:0.144000px;}
.ls3_c00354{letter-spacing:65.304000px;}
.ls1_c00354{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00354{word-spacing:-17.992800px;}
.ws2_c00354{word-spacing:-10.789200px;}
.ws0_c00354{word-spacing:-10.584756px;}
.ws8_c00354{word-spacing:-0.093600px;}
.wsf_c00354{word-spacing:-0.086400px;}
.ws24_c00354{word-spacing:-0.019152px;}
.ws21_c00354{word-spacing:-0.009576px;}
.ws25_c00354{word-spacing:-0.004788px;}
.ws4_c00354{word-spacing:0.000000px;}
.ws22_c00354{word-spacing:0.004788px;}
.wse_c00354{word-spacing:0.007200px;}
.ws23_c00354{word-spacing:0.009576px;}
.ws1c_c00354{word-spacing:0.014400px;}
.ws7_c00354{word-spacing:0.036000px;}
.ws3_c00354{word-spacing:0.042084px;}
.ws14_c00354{word-spacing:0.079200px;}
.ws20_c00354{word-spacing:1.872000px;}
.ws1f_c00354{word-spacing:1.936800px;}
.wsc_c00354{word-spacing:2.210400px;}
.wsd_c00354{word-spacing:2.232000px;}
.ws1b_c00354{word-spacing:2.484000px;}
.ws16_c00354{word-spacing:3.535200px;}
.ws17_c00354{word-spacing:3.643200px;}
.ws18_c00354{word-spacing:3.751200px;}
.ws11_c00354{word-spacing:5.803200px;}
.ws10_c00354{word-spacing:5.868000px;}
.ws1a_c00354{word-spacing:6.984000px;}
.ws19_c00354{word-spacing:7.056000px;}
.ws12_c00354{word-spacing:8.359200px;}
.ws13_c00354{word-spacing:8.373600px;}
.wsb_c00354{word-spacing:9.079200px;}
.ws5_c00354{word-spacing:11.548800px;}
.ws6_c00354{word-spacing:11.556000px;}
.ws1e_c00354{word-spacing:15.436800px;}
.ws1d_c00354{word-spacing:15.559200px;}
.ws9_c00354{word-spacing:24.825600px;}
.wsa_c00354{word-spacing:24.832800px;}
.ws15_c00354{word-spacing:26.258400px;}
._0_c00354{margin-left:-1.322640px;}
._1_c00354{width:1.152000px;}
.fc0_c00354{color:rgb(0,0,0);}
.fs5_c00354{font-size:38.880000px;}
.fs3_c00354{font-size:42.120000px;}
.fs4_c00354{font-size:47.880000px;}
.fs1_c00354{font-size:54.000000px;}
.fs0_c00354{font-size:60.120000px;}
.fs2_c00354{font-size:72.000000px;}
.y0_c00354{bottom:0.000000px;}
.y3_c00354{bottom:57.450450px;}
.y26_c00354{bottom:113.713410px;}
.y25_c00354{bottom:132.075390px;}
.y24_c00354{bottom:150.341610px;}
.y23_c00354{bottom:168.607830px;}
.y22_c00354{bottom:186.969810px;}
.y21_c00354{bottom:205.236030px;}
.y20_c00354{bottom:223.502250px;}
.y1f_c00354{bottom:241.864230px;}
.y1e_c00354{bottom:260.134230px;}
.y1d_c00354{bottom:278.400450px;}
.y1c_c00354{bottom:293.610450px;}
.y1b_c00354{bottom:314.310450px;}
.y1a_c00354{bottom:335.010450px;}
.y19_c00354{bottom:364.260600px;}
.y18_c00354{bottom:398.640600px;}
.y17_c00354{bottom:451.110600px;}
.y16_c00354{bottom:485.490600px;}
.y15_c00354{bottom:519.960450px;}
.y14_c00354{bottom:554.340450px;}
.y13_c00354{bottom:588.810450px;}
.y12_c00354{bottom:641.190450px;}
.y11_c00354{bottom:675.660450px;}
.y10_c00354{bottom:710.040450px;}
.yf_c00354{bottom:744.510600px;}
.ye_c00354{bottom:778.890600px;}
.yd_c00354{bottom:813.360450px;}
.yc_c00354{bottom:847.740450px;}
.yb_c00354{bottom:882.210450px;}
.ya_c00354{bottom:934.590450px;}
.y9_c00354{bottom:969.060450px;}
.y8_c00354{bottom:1003.440450px;}
.y7_c00354{bottom:1037.910450px;}
.y6_c00354{bottom:1072.290450px;}
.y5_c00354{bottom:1106.760450px;}
.y4_c00354{bottom:1141.140450px;}
.y2_c00354{bottom:1177.860450px;}
.y1_c00354{bottom:1196.850450px;}
.h8_c00354{height:47.988281px;}
.h9_c00354{height:49.937344px;}
.h1_c00354{height:50.315273px;}
.h2_c00354{height:56.320312px;}
.h6_c00354{height:60.257812px;}
.h7_c00354{height:65.130220px;}
.h5_c00354{height:65.130820px;}
.h3_c00354{height:72.160312px;}
.h4_c00354{height:75.093750px;}
.h0_c00354{height:1263.000000px;}
.w1_c00354{width:892.500000px;}
.w0_c00354{width:892.830000px;}
.x0_c00354{left:0.000000px;}
.x1_c00354{left:127.620000px;}
.x2_c00354{left:154.620000px;}
.x3_c00354{left:181.620000px;}
.x4_c00354{left:207.180000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.v1_c00354{vertical-align:14.080000pt;}
.v2_c00354{vertical-align:26.560000pt;}
.lsf_c00354{letter-spacing:-0.134400pt;}
.ls16_c00354{letter-spacing:-0.038400pt;}
.ls11_c00354{letter-spacing:-0.032000pt;}
.ls10_c00354{letter-spacing:-0.025600pt;}
.ls15_c00354{letter-spacing:-0.019200pt;}
.ls19_c00354{letter-spacing:-0.017280pt;}
.ls14_c00354{letter-spacing:-0.012800pt;}
.ls18_c00354{letter-spacing:-0.010368pt;}
.ls12_c00354{letter-spacing:-0.006400pt;}
.lse_c00354{letter-spacing:0.000000pt;}
.ls6_c00354{letter-spacing:0.006400pt;}
.ls1a_c00354{letter-spacing:0.008512pt;}
.lsa_c00354{letter-spacing:0.012768pt;}
.ls5_c00354{letter-spacing:0.012800pt;}
.ls7_c00354{letter-spacing:0.019200pt;}
.lsd_c00354{letter-spacing:0.021280pt;}
.ls9_c00354{letter-spacing:0.025536pt;}
.lsc_c00354{letter-spacing:0.034048pt;}
.ls17_c00354{letter-spacing:0.038400pt;}
.ls0_c00354{letter-spacing:0.042752pt;}
.ls4_c00354{letter-spacing:0.048672pt;}
.ls8_c00354{letter-spacing:0.064000pt;}
.ls13_c00354{letter-spacing:0.083200pt;}
.lsb_c00354{letter-spacing:0.092480pt;}
.ls2_c00354{letter-spacing:0.128000pt;}
.ls3_c00354{letter-spacing:58.048000pt;}
.ls1_c00354{letter-spacing:1077.440000pt;}
.ws1_c00354{word-spacing:-15.993600pt;}
.ws2_c00354{word-spacing:-9.590400pt;}
.ws0_c00354{word-spacing:-9.408672pt;}
.ws8_c00354{word-spacing:-0.083200pt;}
.wsf_c00354{word-spacing:-0.076800pt;}
.ws24_c00354{word-spacing:-0.017024pt;}
.ws21_c00354{word-spacing:-0.008512pt;}
.ws25_c00354{word-spacing:-0.004256pt;}
.ws4_c00354{word-spacing:0.000000pt;}
.ws22_c00354{word-spacing:0.004256pt;}
.wse_c00354{word-spacing:0.006400pt;}
.ws23_c00354{word-spacing:0.008512pt;}
.ws1c_c00354{word-spacing:0.012800pt;}
.ws7_c00354{word-spacing:0.032000pt;}
.ws3_c00354{word-spacing:0.037408pt;}
.ws14_c00354{word-spacing:0.070400pt;}
.ws20_c00354{word-spacing:1.664000pt;}
.ws1f_c00354{word-spacing:1.721600pt;}
.wsc_c00354{word-spacing:1.964800pt;}
.wsd_c00354{word-spacing:1.984000pt;}
.ws1b_c00354{word-spacing:2.208000pt;}
.ws16_c00354{word-spacing:3.142400pt;}
.ws17_c00354{word-spacing:3.238400pt;}
.ws18_c00354{word-spacing:3.334400pt;}
.ws11_c00354{word-spacing:5.158400pt;}
.ws10_c00354{word-spacing:5.216000pt;}
.ws1a_c00354{word-spacing:6.208000pt;}
.ws19_c00354{word-spacing:6.272000pt;}
.ws12_c00354{word-spacing:7.430400pt;}
.ws13_c00354{word-spacing:7.443200pt;}
.wsb_c00354{word-spacing:8.070400pt;}
.ws5_c00354{word-spacing:10.265600pt;}
.ws6_c00354{word-spacing:10.272000pt;}
.ws1e_c00354{word-spacing:13.721600pt;}
.ws1d_c00354{word-spacing:13.830400pt;}
.ws9_c00354{word-spacing:22.067200pt;}
.wsa_c00354{word-spacing:22.073600pt;}
.ws15_c00354{word-spacing:23.340800pt;}
._0_c00354{margin-left:-1.175680pt;}
._1_c00354{width:1.024000pt;}
.fs5_c00354{font-size:34.560000pt;}
.fs3_c00354{font-size:37.440000pt;}
.fs4_c00354{font-size:42.560000pt;}
.fs1_c00354{font-size:48.000000pt;}
.fs0_c00354{font-size:53.440000pt;}
.fs2_c00354{font-size:64.000000pt;}
.y0_c00354{bottom:0.000000pt;}
.y3_c00354{bottom:51.067067pt;}
.y26_c00354{bottom:101.078587pt;}
.y25_c00354{bottom:117.400347pt;}
.y24_c00354{bottom:133.636987pt;}
.y23_c00354{bottom:149.873627pt;}
.y22_c00354{bottom:166.195387pt;}
.y21_c00354{bottom:182.432027pt;}
.y20_c00354{bottom:198.668667pt;}
.y1f_c00354{bottom:214.990427pt;}
.y1e_c00354{bottom:231.230427pt;}
.y1d_c00354{bottom:247.467067pt;}
.y1c_c00354{bottom:260.987067pt;}
.y1b_c00354{bottom:279.387067pt;}
.y1a_c00354{bottom:297.787067pt;}
.y19_c00354{bottom:323.787200pt;}
.y18_c00354{bottom:354.347200pt;}
.y17_c00354{bottom:400.987200pt;}
.y16_c00354{bottom:431.547200pt;}
.y15_c00354{bottom:462.187067pt;}
.y14_c00354{bottom:492.747067pt;}
.y13_c00354{bottom:523.387067pt;}
.y12_c00354{bottom:569.947067pt;}
.y11_c00354{bottom:600.587067pt;}
.y10_c00354{bottom:631.147067pt;}
.yf_c00354{bottom:661.787200pt;}
.ye_c00354{bottom:692.347200pt;}
.yd_c00354{bottom:722.987067pt;}
.yc_c00354{bottom:753.547067pt;}
.yb_c00354{bottom:784.187067pt;}
.ya_c00354{bottom:830.747067pt;}
.y9_c00354{bottom:861.387067pt;}
.y8_c00354{bottom:891.947067pt;}
.y7_c00354{bottom:922.587067pt;}
.y6_c00354{bottom:953.147067pt;}
.y5_c00354{bottom:983.787067pt;}
.y4_c00354{bottom:1014.347067pt;}
.y2_c00354{bottom:1046.987067pt;}
.y1_c00354{bottom:1063.867067pt;}
.h8_c00354{height:42.656250pt;}
.h9_c00354{height:44.388750pt;}
.h1_c00354{height:44.724687pt;}
.h2_c00354{height:50.062500pt;}
.h6_c00354{height:53.562500pt;}
.h7_c00354{height:57.893529pt;}
.h5_c00354{height:57.894063pt;}
.h3_c00354{height:64.142500pt;}
.h4_c00354{height:66.750000pt;}
.h0_c00354{height:1122.666667pt;}
.w1_c00354{width:793.333333pt;}
.w0_c00354{width:793.626667pt;}
.x0_c00354{left:0.000000pt;}
.x1_c00354{left:113.440000pt;}
.x2_c00354{left:137.440000pt;}
.x3_c00354{left:161.440000pt;}
.x4_c00354{left:184.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0aa296e3464ef64bd50e3596.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00355;src:url('chunks/assets/font_57ed3807d2a3bca55765dd48.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00355{vertical-align:29.880000px;}
.ls9_c00355{letter-spacing:-0.151200px;}
.lsf_c00355{letter-spacing:-0.057600px;}
.ls11_c00355{letter-spacing:-0.050400px;}
.lsb_c00355{letter-spacing:-0.036000px;}
.ls10_c00355{letter-spacing:-0.028800px;}
.lsa_c00355{letter-spacing:-0.021600px;}
.lsd_c00355{letter-spacing:-0.014400px;}
.lsc_c00355{letter-spacing:-0.007200px;}
.ls8_c00355{letter-spacing:0.000000px;}
.ls4_c00355{letter-spacing:0.007200px;}
.ls7_c00355{letter-spacing:0.023940px;}
.ls6_c00355{letter-spacing:0.028728px;}
.ls0_c00355{letter-spacing:0.036072px;}
.ls1_c00355{letter-spacing:0.054756px;}
.ls5_c00355{letter-spacing:0.072000px;}
.lse_c00355{letter-spacing:0.093600px;}
.ls2_c00355{letter-spacing:0.144000px;}
.ls3_c00355{letter-spacing:65.304000px;}
.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;}
}
.ws1_c00355{word-spacing:-17.942400px;}
.ws0_c00355{word-spacing:-10.584756px;}
.ws2_c00355{word-spacing:-0.306612px;}
.ws10_c00355{word-spacing:-0.093600px;}
.ws22_c00355{word-spacing:-0.009576px;}
.ws23_c00355{word-spacing:-0.004788px;}
.ws3_c00355{word-spacing:0.000000px;}
.wsf_c00355{word-spacing:0.014400px;}
.ws7_c00355{word-spacing:0.021600px;}
.ws1f_c00355{word-spacing:0.028800px;}
.ws12_c00355{word-spacing:0.050400px;}
.ws1b_c00355{word-spacing:0.093600px;}
.ws1e_c00355{word-spacing:0.165600px;}
.ws8_c00355{word-spacing:1.022400px;}
.ws9_c00355{word-spacing:1.087200px;}
.ws17_c00355{word-spacing:2.512800px;}
.ws18_c00355{word-spacing:2.548800px;}
.ws6_c00355{word-spacing:2.563200px;}
.ws19_c00355{word-spacing:2.793600px;}
.ws1a_c00355{word-spacing:2.887200px;}
.ws4_c00355{word-spacing:5.709600px;}
.ws5_c00355{word-spacing:5.788800px;}
.ws21_c00355{word-spacing:6.069600px;}
.ws14_c00355{word-spacing:6.156000px;}
.ws13_c00355{word-spacing:6.199200px;}
.ws20_c00355{word-spacing:6.213600px;}
.wsd_c00355{word-spacing:9.403200px;}
.ws11_c00355{word-spacing:9.410400px;}
.wsc_c00355{word-spacing:9.432000px;}
.ws15_c00355{word-spacing:12.232800px;}
.ws16_c00355{word-spacing:12.333600px;}
.wsb_c00355{word-spacing:14.688000px;}
.wsa_c00355{word-spacing:14.731200px;}
.ws1d_c00355{word-spacing:16.567200px;}
.ws1c_c00355{word-spacing:16.675200px;}
.wse_c00355{word-spacing:30.218400px;}
._2_c00355{margin-left:-4.680000px;}
._0_c00355{margin-left:-1.022040px;}
._1_c00355{width:1.152000px;}
.fc0_c00355{color:rgb(0,0,0);}
.fs3_c00355{font-size:42.120000px;}
.fs4_c00355{font-size:47.880000px;}
.fs2_c00355{font-size:54.000000px;}
.fs0_c00355{font-size:60.120000px;}
.fs1_c00355{font-size:72.000000px;}
.y0_c00355{bottom:0.000000px;}
.y3_c00355{bottom:57.450450px;}
.y4_c00355{bottom:61.410450px;}
.y24_c00355{bottom:113.709780px;}
.y23_c00355{bottom:132.071760px;}
.y22_c00355{bottom:150.337980px;}
.y21_c00355{bottom:168.604200px;}
.y20_c00355{bottom:186.966180px;}
.y1f_c00355{bottom:205.232400px;}
.y1e_c00355{bottom:223.498620px;}
.y1d_c00355{bottom:241.860600px;}
.y1c_c00355{bottom:257.070450px;}
.y1b_c00355{bottom:277.770450px;}
.y1a_c00355{bottom:298.470450px;}
.y19_c00355{bottom:380.640450px;}
.y18_c00355{bottom:415.110450px;}
.y17_c00355{bottom:467.490450px;}
.y16_c00355{bottom:501.960450px;}
.y15_c00355{bottom:536.340450px;}
.y14_c00355{bottom:588.810450px;}
.y13_c00355{bottom:623.190450px;}
.y12_c00355{bottom:657.660450px;}
.y11_c00355{bottom:692.040450px;}
.y10_c00355{bottom:726.510450px;}
.yf_c00355{bottom:760.890450px;}
.ye_c00355{bottom:813.360450px;}
.yd_c00355{bottom:847.740450px;}
.yc_c00355{bottom:882.210450px;}
.yb_c00355{bottom:916.590450px;}
.ya_c00355{bottom:951.060450px;}
.y9_c00355{bottom:985.440450px;}
.y8_c00355{bottom:1019.910450px;}
.y7_c00355{bottom:1072.290450px;}
.y6_c00355{bottom:1106.760450px;}
.y5_c00355{bottom:1141.140450px;}
.y2_c00355{bottom:1173.810450px;}
.y1_c00355{bottom:1196.850450px;}
.h2_c00355{height:47.988281px;}
.h8_c00355{height:49.937344px;}
.h1_c00355{height:50.315273px;}
.h3_c00355{height:56.320312px;}
.h4_c00355{height:60.257812px;}
.h5_c00355{height:65.130820px;}
.h7_c00355{height:65.131420px;}
.h6_c00355{height:75.093750px;}
.h0_c00355{height:1263.000000px;}
.w1_c00355{width:892.500000px;}
.w0_c00355{width:892.830000px;}
.x0_c00355{left:0.000000px;}
.x2_c00355{left:127.620000px;}
.x7_c00355{left:154.620000px;}
.x6_c00355{left:180.810000px;}
.x5_c00355{left:207.180000px;}
.x4_c00355{left:435.240000px;}
.x3_c00355{left:446.490000px;}
.x1_c00355{left:490.770000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.v1_c00355{vertical-align:26.560000pt;}
.ls9_c00355{letter-spacing:-0.134400pt;}
.lsf_c00355{letter-spacing:-0.051200pt;}
.ls11_c00355{letter-spacing:-0.044800pt;}
.lsb_c00355{letter-spacing:-0.032000pt;}
.ls10_c00355{letter-spacing:-0.025600pt;}
.lsa_c00355{letter-spacing:-0.019200pt;}
.lsd_c00355{letter-spacing:-0.012800pt;}
.lsc_c00355{letter-spacing:-0.006400pt;}
.ls8_c00355{letter-spacing:0.000000pt;}
.ls4_c00355{letter-spacing:0.006400pt;}
.ls7_c00355{letter-spacing:0.021280pt;}
.ls6_c00355{letter-spacing:0.025536pt;}
.ls0_c00355{letter-spacing:0.032064pt;}
.ls1_c00355{letter-spacing:0.048672pt;}
.ls5_c00355{letter-spacing:0.064000pt;}
.lse_c00355{letter-spacing:0.083200pt;}
.ls2_c00355{letter-spacing:0.128000pt;}
.ls3_c00355{letter-spacing:58.048000pt;}
.ws1_c00355{word-spacing:-15.948800pt;}
.ws0_c00355{word-spacing:-9.408672pt;}
.ws2_c00355{word-spacing:-0.272544pt;}
.ws10_c00355{word-spacing:-0.083200pt;}
.ws22_c00355{word-spacing:-0.008512pt;}
.ws23_c00355{word-spacing:-0.004256pt;}
.ws3_c00355{word-spacing:0.000000pt;}
.wsf_c00355{word-spacing:0.012800pt;}
.ws7_c00355{word-spacing:0.019200pt;}
.ws1f_c00355{word-spacing:0.025600pt;}
.ws12_c00355{word-spacing:0.044800pt;}
.ws1b_c00355{word-spacing:0.083200pt;}
.ws1e_c00355{word-spacing:0.147200pt;}
.ws8_c00355{word-spacing:0.908800pt;}
.ws9_c00355{word-spacing:0.966400pt;}
.ws17_c00355{word-spacing:2.233600pt;}
.ws18_c00355{word-spacing:2.265600pt;}
.ws6_c00355{word-spacing:2.278400pt;}
.ws19_c00355{word-spacing:2.483200pt;}
.ws1a_c00355{word-spacing:2.566400pt;}
.ws4_c00355{word-spacing:5.075200pt;}
.ws5_c00355{word-spacing:5.145600pt;}
.ws21_c00355{word-spacing:5.395200pt;}
.ws14_c00355{word-spacing:5.472000pt;}
.ws13_c00355{word-spacing:5.510400pt;}
.ws20_c00355{word-spacing:5.523200pt;}
.wsd_c00355{word-spacing:8.358400pt;}
.ws11_c00355{word-spacing:8.364800pt;}
.wsc_c00355{word-spacing:8.384000pt;}
.ws15_c00355{word-spacing:10.873600pt;}
.ws16_c00355{word-spacing:10.963200pt;}
.wsb_c00355{word-spacing:13.056000pt;}
.wsa_c00355{word-spacing:13.094400pt;}
.ws1d_c00355{word-spacing:14.726400pt;}
.ws1c_c00355{word-spacing:14.822400pt;}
.wse_c00355{word-spacing:26.860800pt;}
._2_c00355{margin-left:-4.160000pt;}
._0_c00355{margin-left:-0.908480pt;}
._1_c00355{width:1.024000pt;}
.fs3_c00355{font-size:37.440000pt;}
.fs4_c00355{font-size:42.560000pt;}
.fs2_c00355{font-size:48.000000pt;}
.fs0_c00355{font-size:53.440000pt;}
.fs1_c00355{font-size:64.000000pt;}
.y0_c00355{bottom:0.000000pt;}
.y3_c00355{bottom:51.067067pt;}
.y4_c00355{bottom:54.587067pt;}
.y24_c00355{bottom:101.075360pt;}
.y23_c00355{bottom:117.397120pt;}
.y22_c00355{bottom:133.633760pt;}
.y21_c00355{bottom:149.870400pt;}
.y20_c00355{bottom:166.192160pt;}
.y1f_c00355{bottom:182.428800pt;}
.y1e_c00355{bottom:198.665440pt;}
.y1d_c00355{bottom:214.987200pt;}
.y1c_c00355{bottom:228.507067pt;}
.y1b_c00355{bottom:246.907067pt;}
.y1a_c00355{bottom:265.307067pt;}
.y19_c00355{bottom:338.347067pt;}
.y18_c00355{bottom:368.987067pt;}
.y17_c00355{bottom:415.547067pt;}
.y16_c00355{bottom:446.187067pt;}
.y15_c00355{bottom:476.747067pt;}
.y14_c00355{bottom:523.387067pt;}
.y13_c00355{bottom:553.947067pt;}
.y12_c00355{bottom:584.587067pt;}
.y11_c00355{bottom:615.147067pt;}
.y10_c00355{bottom:645.787067pt;}
.yf_c00355{bottom:676.347067pt;}
.ye_c00355{bottom:722.987067pt;}
.yd_c00355{bottom:753.547067pt;}
.yc_c00355{bottom:784.187067pt;}
.yb_c00355{bottom:814.747067pt;}
.ya_c00355{bottom:845.387067pt;}
.y9_c00355{bottom:875.947067pt;}
.y8_c00355{bottom:906.587067pt;}
.y7_c00355{bottom:953.147067pt;}
.y6_c00355{bottom:983.787067pt;}
.y5_c00355{bottom:1014.347067pt;}
.y2_c00355{bottom:1043.387067pt;}
.y1_c00355{bottom:1063.867067pt;}
.h2_c00355{height:42.656250pt;}
.h8_c00355{height:44.388750pt;}
.h1_c00355{height:44.724687pt;}
.h3_c00355{height:50.062500pt;}
.h4_c00355{height:53.562500pt;}
.h5_c00355{height:57.894062pt;}
.h7_c00355{height:57.894596pt;}
.h6_c00355{height:66.750000pt;}
.h0_c00355{height:1122.666667pt;}
.w1_c00355{width:793.333333pt;}
.w0_c00355{width:793.626667pt;}
.x0_c00355{left:0.000000pt;}
.x2_c00355{left:113.440000pt;}
.x7_c00355{left:137.440000pt;}
.x6_c00355{left:160.720000pt;}
.x5_c00355{left:184.160000pt;}
.x4_c00355{left:386.880000pt;}
.x3_c00355{left:396.880000pt;}
.x1_c00355{left:436.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_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_1b5851ce678533eb4ae4c65e.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.100098;font-style:normal;font-weight:normal;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_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;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_c00356;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00356;src:url('chunks/assets/font_c2f081e5267420601b7a84f3.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00356;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00356{font-family:ff5_c00356;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_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;}
.v1_c00356{vertical-align:15.840000px;}
.v2_c00356{vertical-align:29.880000px;}
.lse_c00356{letter-spacing:-0.151200px;}
.ls13_c00356{letter-spacing:-0.050400px;}
.ls14_c00356{letter-spacing:-0.036000px;}
.ls10_c00356{letter-spacing:-0.028800px;}
.ls12_c00356{letter-spacing:-0.021600px;}
.ls11_c00356{letter-spacing:-0.014400px;}
.lsf_c00356{letter-spacing:-0.007200px;}
.lsd_c00356{letter-spacing:0.000000px;}
.ls6_c00356{letter-spacing:0.007200px;}
.lsb_c00356{letter-spacing:0.023940px;}
.lsc_c00356{letter-spacing:0.028728px;}
.ls8_c00356{letter-spacing:0.028800px;}
.ls9_c00356{letter-spacing:0.031248px;}
.ls0_c00356{letter-spacing:0.048096px;}
.ls4_c00356{letter-spacing:0.054756px;}
.ls7_c00356{letter-spacing:0.057600px;}
.ls5_c00356{letter-spacing:0.072000px;}
.ls2_c00356{letter-spacing:0.144000px;}
.ls3_c00356{letter-spacing:65.304000px;}
.lsa_c00356{letter-spacing:77.260680px;}
.ls1_c00356{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00356{word-spacing:-19.561248px;}
.ws1_c00356{word-spacing:-18.000000px;}
.ws0_c00356{word-spacing:-10.584756px;}
.ws1f_c00356{word-spacing:-0.140616px;}
.ws25_c00356{word-spacing:-0.009576px;}
.wsd_c00356{word-spacing:-0.007200px;}
.ws24_c00356{word-spacing:-0.004788px;}
.ws4_c00356{word-spacing:0.000000px;}
.ws15_c00356{word-spacing:0.007200px;}
.ws8_c00356{word-spacing:0.014400px;}
.wsc_c00356{word-spacing:0.021600px;}
.ws3_c00356{word-spacing:0.042084px;}
.ws18_c00356{word-spacing:0.064800px;}
.ws22_c00356{word-spacing:1.087200px;}
.wsa_c00356{word-spacing:3.232800px;}
.ws9_c00356{word-spacing:3.326400px;}
.ws1d_c00356{word-spacing:3.960000px;}
.ws1c_c00356{word-spacing:4.132800px;}
.ws21_c00356{word-spacing:4.327200px;}
.ws7_c00356{word-spacing:5.133600px;}
.ws6_c00356{word-spacing:5.155200px;}
.ws5_c00356{word-spacing:5.162400px;}
.ws12_c00356{word-spacing:5.709600px;}
.wsf_c00356{word-spacing:5.774400px;}
.ws13_c00356{word-spacing:5.788800px;}
.wse_c00356{word-spacing:5.896800px;}
.ws20_c00356{word-spacing:6.847200px;}
.wsb_c00356{word-spacing:11.577600px;}
.ws23_c00356{word-spacing:11.887200px;}
.ws17_c00356{word-spacing:12.182400px;}
.ws16_c00356{word-spacing:12.254400px;}
.ws10_c00356{word-spacing:15.127200px;}
.ws11_c00356{word-spacing:15.156000px;}
.ws1b_c00356{word-spacing:19.051200px;}
.ws1a_c00356{word-spacing:19.108800px;}
.ws19_c00356{word-spacing:19.346400px;}
.ws14_c00356{word-spacing:27.720000px;}
.ws1e_c00356{word-spacing:55.116000px;}
._0_c00356{margin-left:-1.322640px;}
._1_c00356{width:1.368000px;}
.fc0_c00356{color:rgb(0,0,0);}
.fs3_c00356{font-size:42.120000px;}
.fs5_c00356{font-size:47.880000px;}
.fs1_c00356{font-size:54.000000px;}
.fs0_c00356{font-size:60.120000px;}
.fs2_c00356{font-size:72.000000px;}
.fs4_c00356{font-size:78.120000px;}
.y0_c00356{bottom:0.000000px;}
.y3_c00356{bottom:57.450450px;}
.y23_c00356{bottom:113.711610px;}
.y22_c00356{bottom:132.073590px;}
.y21_c00356{bottom:150.339810px;}
.y20_c00356{bottom:168.606030px;}
.y1f_c00356{bottom:186.968010px;}
.y1e_c00356{bottom:205.234230px;}
.y1d_c00356{bottom:223.500450px;}
.y1c_c00356{bottom:238.710450px;}
.y1b_c00356{bottom:259.410450px;}
.y1a_c00356{bottom:280.110600px;}
.y19_c00356{bottom:316.380600px;}
.y18_c00356{bottom:350.760600px;}
.y17_c00356{bottom:385.230600px;}
.y16_c00356{bottom:419.610600px;}
.y15_c00356{bottom:464.700600px;}
.y14_c00356{bottom:518.340450px;}
.y13_c00356{bottom:552.810450px;}
.y12_c00356{bottom:587.190450px;}
.y11_c00356{bottom:621.660450px;}
.y10_c00356{bottom:674.040450px;}
.yf_c00356{bottom:708.510450px;}
.ye_c00356{bottom:760.890450px;}
.yd_c00356{bottom:795.360450px;}
.yc_c00356{bottom:829.740450px;}
.yb_c00356{bottom:864.210450px;}
.ya_c00356{bottom:898.590450px;}
.y9_c00356{bottom:933.060450px;}
.y8_c00356{bottom:985.440450px;}
.y7_c00356{bottom:1019.910450px;}
.y6_c00356{bottom:1054.290450px;}
.y5_c00356{bottom:1106.760450px;}
.y4_c00356{bottom:1141.140450px;}
.y2_c00356{bottom:1177.860450px;}
.y1_c00356{bottom:1196.850450px;}
.ha_c00356{height:47.988281px;}
.hb_c00356{height:49.937344px;}
.h1_c00356{height:50.315273px;}
.h2_c00356{height:56.320312px;}
.h7_c00356{height:60.257812px;}
.h6_c00356{height:60.328125px;}
.h5_c00356{height:65.130820px;}
.h8_c00356{height:65.131420px;}
.h3_c00356{height:72.160312px;}
.h4_c00356{height:75.093750px;}
.h9_c00356{height:81.476719px;}
.h0_c00356{height:1263.000000px;}
.w1_c00356{width:892.500000px;}
.w0_c00356{width:892.830000px;}
.x0_c00356{left:0.000000px;}
.x1_c00356{left:127.620000px;}
.x2_c00356{left:154.620000px;}
.x3_c00356{left:181.620000px;}
.x4_c00356{left:207.180000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.v1_c00356{vertical-align:14.080000pt;}
.v2_c00356{vertical-align:26.560000pt;}
.lse_c00356{letter-spacing:-0.134400pt;}
.ls13_c00356{letter-spacing:-0.044800pt;}
.ls14_c00356{letter-spacing:-0.032000pt;}
.ls10_c00356{letter-spacing:-0.025600pt;}
.ls12_c00356{letter-spacing:-0.019200pt;}
.ls11_c00356{letter-spacing:-0.012800pt;}
.lsf_c00356{letter-spacing:-0.006400pt;}
.lsd_c00356{letter-spacing:0.000000pt;}
.ls6_c00356{letter-spacing:0.006400pt;}
.lsb_c00356{letter-spacing:0.021280pt;}
.lsc_c00356{letter-spacing:0.025536pt;}
.ls8_c00356{letter-spacing:0.025600pt;}
.ls9_c00356{letter-spacing:0.027776pt;}
.ls0_c00356{letter-spacing:0.042752pt;}
.ls4_c00356{letter-spacing:0.048672pt;}
.ls7_c00356{letter-spacing:0.051200pt;}
.ls5_c00356{letter-spacing:0.064000pt;}
.ls2_c00356{letter-spacing:0.128000pt;}
.ls3_c00356{letter-spacing:58.048000pt;}
.lsa_c00356{letter-spacing:68.676160pt;}
.ls1_c00356{letter-spacing:1077.440000pt;}
.ws2_c00356{word-spacing:-17.387776pt;}
.ws1_c00356{word-spacing:-16.000000pt;}
.ws0_c00356{word-spacing:-9.408672pt;}
.ws1f_c00356{word-spacing:-0.124992pt;}
.ws25_c00356{word-spacing:-0.008512pt;}
.wsd_c00356{word-spacing:-0.006400pt;}
.ws24_c00356{word-spacing:-0.004256pt;}
.ws4_c00356{word-spacing:0.000000pt;}
.ws15_c00356{word-spacing:0.006400pt;}
.ws8_c00356{word-spacing:0.012800pt;}
.wsc_c00356{word-spacing:0.019200pt;}
.ws3_c00356{word-spacing:0.037408pt;}
.ws18_c00356{word-spacing:0.057600pt;}
.ws22_c00356{word-spacing:0.966400pt;}
.wsa_c00356{word-spacing:2.873600pt;}
.ws9_c00356{word-spacing:2.956800pt;}
.ws1d_c00356{word-spacing:3.520000pt;}
.ws1c_c00356{word-spacing:3.673600pt;}
.ws21_c00356{word-spacing:3.846400pt;}
.ws7_c00356{word-spacing:4.563200pt;}
.ws6_c00356{word-spacing:4.582400pt;}
.ws5_c00356{word-spacing:4.588800pt;}
.ws12_c00356{word-spacing:5.075200pt;}
.wsf_c00356{word-spacing:5.132800pt;}
.ws13_c00356{word-spacing:5.145600pt;}
.wse_c00356{word-spacing:5.241600pt;}
.ws20_c00356{word-spacing:6.086400pt;}
.wsb_c00356{word-spacing:10.291200pt;}
.ws23_c00356{word-spacing:10.566400pt;}
.ws17_c00356{word-spacing:10.828800pt;}
.ws16_c00356{word-spacing:10.892800pt;}
.ws10_c00356{word-spacing:13.446400pt;}
.ws11_c00356{word-spacing:13.472000pt;}
.ws1b_c00356{word-spacing:16.934400pt;}
.ws1a_c00356{word-spacing:16.985600pt;}
.ws19_c00356{word-spacing:17.196800pt;}
.ws14_c00356{word-spacing:24.640000pt;}
.ws1e_c00356{word-spacing:48.992000pt;}
._0_c00356{margin-left:-1.175680pt;}
._1_c00356{width:1.216000pt;}
.fs3_c00356{font-size:37.440000pt;}
.fs5_c00356{font-size:42.560000pt;}
.fs1_c00356{font-size:48.000000pt;}
.fs0_c00356{font-size:53.440000pt;}
.fs2_c00356{font-size:64.000000pt;}
.fs4_c00356{font-size:69.440000pt;}
.y0_c00356{bottom:0.000000pt;}
.y3_c00356{bottom:51.067067pt;}
.y23_c00356{bottom:101.076987pt;}
.y22_c00356{bottom:117.398747pt;}
.y21_c00356{bottom:133.635387pt;}
.y20_c00356{bottom:149.872027pt;}
.y1f_c00356{bottom:166.193787pt;}
.y1e_c00356{bottom:182.430427pt;}
.y1d_c00356{bottom:198.667067pt;}
.y1c_c00356{bottom:212.187067pt;}
.y1b_c00356{bottom:230.587067pt;}
.y1a_c00356{bottom:248.987200pt;}
.y19_c00356{bottom:281.227200pt;}
.y18_c00356{bottom:311.787200pt;}
.y17_c00356{bottom:342.427200pt;}
.y16_c00356{bottom:372.987200pt;}
.y15_c00356{bottom:413.067200pt;}
.y14_c00356{bottom:460.747067pt;}
.y13_c00356{bottom:491.387067pt;}
.y12_c00356{bottom:521.947067pt;}
.y11_c00356{bottom:552.587067pt;}
.y10_c00356{bottom:599.147067pt;}
.yf_c00356{bottom:629.787067pt;}
.ye_c00356{bottom:676.347067pt;}
.yd_c00356{bottom:706.987067pt;}
.yc_c00356{bottom:737.547067pt;}
.yb_c00356{bottom:768.187067pt;}
.ya_c00356{bottom:798.747067pt;}
.y9_c00356{bottom:829.387067pt;}
.y8_c00356{bottom:875.947067pt;}
.y7_c00356{bottom:906.587067pt;}
.y6_c00356{bottom:937.147067pt;}
.y5_c00356{bottom:983.787067pt;}
.y4_c00356{bottom:1014.347067pt;}
.y2_c00356{bottom:1046.987067pt;}
.y1_c00356{bottom:1063.867067pt;}
.ha_c00356{height:42.656250pt;}
.hb_c00356{height:44.388750pt;}
.h1_c00356{height:44.724687pt;}
.h2_c00356{height:50.062500pt;}
.h7_c00356{height:53.562500pt;}
.h6_c00356{height:53.625000pt;}
.h5_c00356{height:57.894063pt;}
.h8_c00356{height:57.894596pt;}
.h3_c00356{height:64.142500pt;}
.h4_c00356{height:66.750000pt;}
.h9_c00356{height:72.423750pt;}
.h0_c00356{height:1122.666667pt;}
.w1_c00356{width:793.333333pt;}
.w0_c00356{width:793.626667pt;}
.x0_c00356{left:0.000000pt;}
.x1_c00356{left:113.440000pt;}
.x2_c00356{left:137.440000pt;}
.x3_c00356{left:161.440000pt;}
.x4_c00356{left:184.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4bb166ffa8f677eb32a5579c.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00357;src:url('chunks/assets/font_b95ff8ca1bdabe9895e50cf1.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.v1_c00357{vertical-align:29.880000px;}
.ls9_c00357{letter-spacing:-0.151200px;}
.ls10_c00357{letter-spacing:-0.057600px;}
.lsa_c00357{letter-spacing:-0.043200px;}
.ls11_c00357{letter-spacing:-0.036000px;}
.ls12_c00357{letter-spacing:-0.028800px;}
.lsd_c00357{letter-spacing:-0.021600px;}
.lsc_c00357{letter-spacing:-0.014400px;}
.lsb_c00357{letter-spacing:-0.007200px;}
.ls8_c00357{letter-spacing:0.000000px;}
.ls2_c00357{letter-spacing:0.007200px;}
.ls4_c00357{letter-spacing:0.014400px;}
.ls1_c00357{letter-spacing:0.021600px;}
.ls7_c00357{letter-spacing:0.023940px;}
.ls6_c00357{letter-spacing:0.028728px;}
.ls5_c00357{letter-spacing:0.028800px;}
.lsf_c00357{letter-spacing:0.036000px;}
.ls0_c00357{letter-spacing:0.036072px;}
.ls3_c00357{letter-spacing:0.054756px;}
.lse_c00357{letter-spacing:0.093600px;}
.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:-17.942400px;}
.ws0_c00357{word-spacing:-10.584756px;}
.ws2_c00357{word-spacing:-0.306612px;}
.ws1a_c00357{word-spacing:-0.086400px;}
.ws30_c00357{word-spacing:-0.009576px;}
.ws31_c00357{word-spacing:-0.004788px;}
.ws3_c00357{word-spacing:0.000000px;}
.ws6_c00357{word-spacing:0.007200px;}
.ws19_c00357{word-spacing:0.014400px;}
.ws24_c00357{word-spacing:0.050400px;}
.wse_c00357{word-spacing:0.194400px;}
.ws7_c00357{word-spacing:0.388800px;}
.ws1f_c00357{word-spacing:1.850400px;}
.ws1e_c00357{word-spacing:1.872000px;}
.ws2c_c00357{word-spacing:2.210400px;}
.ws2d_c00357{word-spacing:2.296800px;}
.wsd_c00357{word-spacing:4.363200px;}
.wsb_c00357{word-spacing:4.392000px;}
.wsc_c00357{word-spacing:4.428000px;}
.ws15_c00357{word-spacing:5.047200px;}
.ws14_c00357{word-spacing:5.140800px;}
.ws16_c00357{word-spacing:5.148000px;}
.ws10_c00357{word-spacing:5.781600px;}
.wsf_c00357{word-spacing:5.832000px;}
.ws1d_c00357{word-spacing:6.501600px;}
.ws17_c00357{word-spacing:7.560000px;}
.ws18_c00357{word-spacing:7.668000px;}
.ws27_c00357{word-spacing:7.934400px;}
.ws26_c00357{word-spacing:7.999200px;}
.ws2f_c00357{word-spacing:8.316000px;}
.ws2e_c00357{word-spacing:8.359200px;}
.ws11_c00357{word-spacing:8.690400px;}
.ws12_c00357{word-spacing:8.697600px;}
.ws13_c00357{word-spacing:8.719200px;}
.wsa_c00357{word-spacing:9.007200px;}
.ws25_c00357{word-spacing:9.043200px;}
.ws20_c00357{word-spacing:10.382400px;}
.ws21_c00357{word-spacing:10.468800px;}
.ws9_c00357{word-spacing:12.211200px;}
.ws8_c00357{word-spacing:12.218400px;}
.ws29_c00357{word-spacing:13.622400px;}
.ws2b_c00357{word-spacing:13.651200px;}
.ws28_c00357{word-spacing:13.766400px;}
.ws23_c00357{word-spacing:15.480000px;}
.ws22_c00357{word-spacing:15.494400px;}
.ws1b_c00357{word-spacing:16.574400px;}
.ws1c_c00357{word-spacing:16.711200px;}
.ws5_c00357{word-spacing:19.080000px;}
.ws4_c00357{word-spacing:19.173600px;}
.ws2a_c00357{word-spacing:33.170400px;}
._0_c00357{margin-left:-1.022040px;}
._1_c00357{width:1.008000px;}
.fc0_c00357{color:rgb(0,0,0);}
.fs3_c00357{font-size:42.120000px;}
.fs4_c00357{font-size:47.880000px;}
.fs2_c00357{font-size:54.000000px;}
.fs0_c00357{font-size:60.120000px;}
.fs1_c00357{font-size:72.000000px;}
.y0_c00357{bottom:0.000000px;}
.y3_c00357{bottom:57.450450px;}
.y4_c00357{bottom:61.410450px;}
.y25_c00357{bottom:113.706030px;}
.y24_c00357{bottom:132.068010px;}
.y23_c00357{bottom:150.334230px;}
.y22_c00357{bottom:168.600450px;}
.y21_c00357{bottom:183.810600px;}
.y20_c00357{bottom:204.510600px;}
.y1f_c00357{bottom:225.210450px;}
.y1e_c00357{bottom:280.560450px;}
.y1d_c00357{bottom:314.940450px;}
.y1c_c00357{bottom:349.410450px;}
.y1b_c00357{bottom:383.790450px;}
.y1a_c00357{bottom:418.260450px;}
.y19_c00357{bottom:452.640450px;}
.y18_c00357{bottom:487.110450px;}
.y17_c00357{bottom:521.490450px;}
.y16_c00357{bottom:555.960450px;}
.y15_c00357{bottom:590.340450px;}
.y14_c00357{bottom:624.810450px;}
.y13_c00357{bottom:659.190450px;}
.y12_c00357{bottom:693.660450px;}
.y11_c00357{bottom:728.040450px;}
.y10_c00357{bottom:762.510450px;}
.yf_c00357{bottom:796.890450px;}
.ye_c00357{bottom:831.360450px;}
.yd_c00357{bottom:865.740450px;}
.yc_c00357{bottom:900.210450px;}
.yb_c00357{bottom:934.590450px;}
.ya_c00357{bottom:969.060450px;}
.y9_c00357{bottom:1003.440450px;}
.y8_c00357{bottom:1037.910450px;}
.y7_c00357{bottom:1072.290450px;}
.y6_c00357{bottom:1106.760450px;}
.y5_c00357{bottom:1141.140450px;}
.y2_c00357{bottom:1173.810450px;}
.y1_c00357{bottom:1196.850450px;}
.h2_c00357{height:47.988281px;}
.h7_c00357{height:47.988881px;}
.h8_c00357{height:49.937344px;}
.h1_c00357{height:50.315273px;}
.h3_c00357{height:56.320312px;}
.h4_c00357{height:60.257812px;}
.h6_c00357{height:60.890625px;}
.h5_c00357{height:65.130820px;}
.h0_c00357{height:1263.000000px;}
.w1_c00357{width:892.500000px;}
.w0_c00357{width:892.830000px;}
.x0_c00357{left:0.000000px;}
.x2_c00357{left:127.620000px;}
.x5_c00357{left:180.810000px;}
.x4_c00357{left:435.240000px;}
.x3_c00357{left:446.490000px;}
.x1_c00357{left:490.770000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.v1_c00357{vertical-align:26.560000pt;}
.ls9_c00357{letter-spacing:-0.134400pt;}
.ls10_c00357{letter-spacing:-0.051200pt;}
.lsa_c00357{letter-spacing:-0.038400pt;}
.ls11_c00357{letter-spacing:-0.032000pt;}
.ls12_c00357{letter-spacing:-0.025600pt;}
.lsd_c00357{letter-spacing:-0.019200pt;}
.lsc_c00357{letter-spacing:-0.012800pt;}
.lsb_c00357{letter-spacing:-0.006400pt;}
.ls8_c00357{letter-spacing:0.000000pt;}
.ls2_c00357{letter-spacing:0.006400pt;}
.ls4_c00357{letter-spacing:0.012800pt;}
.ls1_c00357{letter-spacing:0.019200pt;}
.ls7_c00357{letter-spacing:0.021280pt;}
.ls6_c00357{letter-spacing:0.025536pt;}
.ls5_c00357{letter-spacing:0.025600pt;}
.lsf_c00357{letter-spacing:0.032000pt;}
.ls0_c00357{letter-spacing:0.032064pt;}
.ls3_c00357{letter-spacing:0.048672pt;}
.lse_c00357{letter-spacing:0.083200pt;}
.ws1_c00357{word-spacing:-15.948800pt;}
.ws0_c00357{word-spacing:-9.408672pt;}
.ws2_c00357{word-spacing:-0.272544pt;}
.ws1a_c00357{word-spacing:-0.076800pt;}
.ws30_c00357{word-spacing:-0.008512pt;}
.ws31_c00357{word-spacing:-0.004256pt;}
.ws3_c00357{word-spacing:0.000000pt;}
.ws6_c00357{word-spacing:0.006400pt;}
.ws19_c00357{word-spacing:0.012800pt;}
.ws24_c00357{word-spacing:0.044800pt;}
.wse_c00357{word-spacing:0.172800pt;}
.ws7_c00357{word-spacing:0.345600pt;}
.ws1f_c00357{word-spacing:1.644800pt;}
.ws1e_c00357{word-spacing:1.664000pt;}
.ws2c_c00357{word-spacing:1.964800pt;}
.ws2d_c00357{word-spacing:2.041600pt;}
.wsd_c00357{word-spacing:3.878400pt;}
.wsb_c00357{word-spacing:3.904000pt;}
.wsc_c00357{word-spacing:3.936000pt;}
.ws15_c00357{word-spacing:4.486400pt;}
.ws14_c00357{word-spacing:4.569600pt;}
.ws16_c00357{word-spacing:4.576000pt;}
.ws10_c00357{word-spacing:5.139200pt;}
.wsf_c00357{word-spacing:5.184000pt;}
.ws1d_c00357{word-spacing:5.779200pt;}
.ws17_c00357{word-spacing:6.720000pt;}
.ws18_c00357{word-spacing:6.816000pt;}
.ws27_c00357{word-spacing:7.052800pt;}
.ws26_c00357{word-spacing:7.110400pt;}
.ws2f_c00357{word-spacing:7.392000pt;}
.ws2e_c00357{word-spacing:7.430400pt;}
.ws11_c00357{word-spacing:7.724800pt;}
.ws12_c00357{word-spacing:7.731200pt;}
.ws13_c00357{word-spacing:7.750400pt;}
.wsa_c00357{word-spacing:8.006400pt;}
.ws25_c00357{word-spacing:8.038400pt;}
.ws20_c00357{word-spacing:9.228800pt;}
.ws21_c00357{word-spacing:9.305600pt;}
.ws9_c00357{word-spacing:10.854400pt;}
.ws8_c00357{word-spacing:10.860800pt;}
.ws29_c00357{word-spacing:12.108800pt;}
.ws2b_c00357{word-spacing:12.134400pt;}
.ws28_c00357{word-spacing:12.236800pt;}
.ws23_c00357{word-spacing:13.760000pt;}
.ws22_c00357{word-spacing:13.772800pt;}
.ws1b_c00357{word-spacing:14.732800pt;}
.ws1c_c00357{word-spacing:14.854400pt;}
.ws5_c00357{word-spacing:16.960000pt;}
.ws4_c00357{word-spacing:17.043200pt;}
.ws2a_c00357{word-spacing:29.484800pt;}
._0_c00357{margin-left:-0.908480pt;}
._1_c00357{width:0.896000pt;}
.fs3_c00357{font-size:37.440000pt;}
.fs4_c00357{font-size:42.560000pt;}
.fs2_c00357{font-size:48.000000pt;}
.fs0_c00357{font-size:53.440000pt;}
.fs1_c00357{font-size:64.000000pt;}
.y0_c00357{bottom:0.000000pt;}
.y3_c00357{bottom:51.067067pt;}
.y4_c00357{bottom:54.587067pt;}
.y25_c00357{bottom:101.072027pt;}
.y24_c00357{bottom:117.393787pt;}
.y23_c00357{bottom:133.630427pt;}
.y22_c00357{bottom:149.867067pt;}
.y21_c00357{bottom:163.387200pt;}
.y20_c00357{bottom:181.787200pt;}
.y1f_c00357{bottom:200.187067pt;}
.y1e_c00357{bottom:249.387067pt;}
.y1d_c00357{bottom:279.947067pt;}
.y1c_c00357{bottom:310.587067pt;}
.y1b_c00357{bottom:341.147067pt;}
.y1a_c00357{bottom:371.787067pt;}
.y19_c00357{bottom:402.347067pt;}
.y18_c00357{bottom:432.987067pt;}
.y17_c00357{bottom:463.547067pt;}
.y16_c00357{bottom:494.187067pt;}
.y15_c00357{bottom:524.747067pt;}
.y14_c00357{bottom:555.387067pt;}
.y13_c00357{bottom:585.947067pt;}
.y12_c00357{bottom:616.587067pt;}
.y11_c00357{bottom:647.147067pt;}
.y10_c00357{bottom:677.787067pt;}
.yf_c00357{bottom:708.347067pt;}
.ye_c00357{bottom:738.987067pt;}
.yd_c00357{bottom:769.547067pt;}
.yc_c00357{bottom:800.187067pt;}
.yb_c00357{bottom:830.747067pt;}
.ya_c00357{bottom:861.387067pt;}
.y9_c00357{bottom:891.947067pt;}
.y8_c00357{bottom:922.587067pt;}
.y7_c00357{bottom:953.147067pt;}
.y6_c00357{bottom:983.787067pt;}
.y5_c00357{bottom:1014.347067pt;}
.y2_c00357{bottom:1043.387067pt;}
.y1_c00357{bottom:1063.867067pt;}
.h2_c00357{height:42.656250pt;}
.h7_c00357{height:42.656783pt;}
.h8_c00357{height:44.388750pt;}
.h1_c00357{height:44.724687pt;}
.h3_c00357{height:50.062500pt;}
.h4_c00357{height:53.562500pt;}
.h6_c00357{height:54.125000pt;}
.h5_c00357{height:57.894063pt;}
.h0_c00357{height:1122.666667pt;}
.w1_c00357{width:793.333333pt;}
.w0_c00357{width:793.626667pt;}
.x0_c00357{left:0.000000pt;}
.x2_c00357{left:113.440000pt;}
.x5_c00357{left:160.720000pt;}
.x4_c00357{left:386.880000pt;}
.x3_c00357{left:396.880000pt;}
.x1_c00357{left:436.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_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_75649ab95347e9f9a630beca.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.100098;font-style:normal;font-weight:normal;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_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;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_c00358;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00358;src:url('chunks/assets/font_575d5876310fb735fb1db2ff.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.102051;font-style: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;}
.v1_c00358{vertical-align:15.840000px;}
.v2_c00358{vertical-align:29.880000px;}
.ls9_c00358{letter-spacing:-0.151200px;}
.lsf_c00358{letter-spacing:-0.079200px;}
.ls11_c00358{letter-spacing:-0.043200px;}
.lsd_c00358{letter-spacing:-0.036000px;}
.ls12_c00358{letter-spacing:-0.028800px;}
.lsa_c00358{letter-spacing:-0.021600px;}
.lsc_c00358{letter-spacing:-0.014400px;}
.lsb_c00358{letter-spacing:-0.007200px;}
.ls8_c00358{letter-spacing:0.000000px;}
.ls3_c00358{letter-spacing:0.007200px;}
.ls4_c00358{letter-spacing:0.014400px;}
.ls7_c00358{letter-spacing:0.023940px;}
.ls6_c00358{letter-spacing:0.028728px;}
.ls10_c00358{letter-spacing:0.028800px;}
.ls5_c00358{letter-spacing:0.036000px;}
.ls0_c00358{letter-spacing:0.048096px;}
.ls2_c00358{letter-spacing:0.054756px;}
.lse_c00358{letter-spacing:0.093600px;}
.ls1_c00358{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00358{word-spacing:-10.584756px;}
.ws13_c00358{word-spacing:-0.093600px;}
.ws2c_c00358{word-spacing:-0.009576px;}
.ws2d_c00358{word-spacing:-0.004788px;}
.ws2_c00358{word-spacing:0.000000px;}
.ws12_c00358{word-spacing:0.007200px;}
.ws2b_c00358{word-spacing:0.014400px;}
.ws7_c00358{word-spacing:0.036000px;}
.ws1_c00358{word-spacing:0.042084px;}
.wsa_c00358{word-spacing:0.741600px;}
.ws8_c00358{word-spacing:0.763200px;}
.ws1c_c00358{word-spacing:1.094400px;}
.ws1d_c00358{word-spacing:1.137600px;}
.ws26_c00358{word-spacing:1.447200px;}
.ws27_c00358{word-spacing:1.483200px;}
.ws25_c00358{word-spacing:3.585600px;}
.ws24_c00358{word-spacing:3.636000px;}
.ws9_c00358{word-spacing:4.356000px;}
.ws4_c00358{word-spacing:4.377600px;}
.ws3_c00358{word-spacing:4.392000px;}
.ws18_c00358{word-spacing:5.061600px;}
.wsf_c00358{word-spacing:5.414400px;}
.ws10_c00358{word-spacing:5.421600px;}
.ws1b_c00358{word-spacing:5.436000px;}
.ws2a_c00358{word-spacing:5.767200px;}
.ws1f_c00358{word-spacing:6.444000px;}
.ws21_c00358{word-spacing:6.487200px;}
.ws1e_c00358{word-spacing:6.516000px;}
.ws20_c00358{word-spacing:6.544800px;}
.ws22_c00358{word-spacing:6.789600px;}
.ws23_c00358{word-spacing:6.840000px;}
.ws17_c00358{word-spacing:7.185600px;}
.ws16_c00358{word-spacing:7.207200px;}
.ws11_c00358{word-spacing:7.228800px;}
.ws29_c00358{word-spacing:12.571200px;}
.ws28_c00358{word-spacing:12.614400px;}
.ws5_c00358{word-spacing:14.407200px;}
.ws6_c00358{word-spacing:14.414400px;}
.ws19_c00358{word-spacing:16.221600px;}
.ws1a_c00358{word-spacing:16.344000px;}
.ws14_c00358{word-spacing:19.483200px;}
.ws15_c00358{word-spacing:19.497600px;}
.wsb_c00358{word-spacing:22.932000px;}
.wsc_c00358{word-spacing:23.076000px;}
.wsd_c00358{word-spacing:25.250400px;}
.wse_c00358{word-spacing:25.279200px;}
._0_c00358{margin-left:-1.322640px;}
._1_c00358{width:1.080000px;}
.fc0_c00358{color:rgb(0,0,0);}
.fs3_c00358{font-size:42.120000px;}
.fs4_c00358{font-size:47.880000px;}
.fs1_c00358{font-size:54.000000px;}
.fs0_c00358{font-size:60.120000px;}
.fs2_c00358{font-size:72.000000px;}
.y0_c00358{bottom:0.000000px;}
.y3_c00358{bottom:57.450450px;}
.y26_c00358{bottom:113.351610px;}
.y25_c00358{bottom:131.713590px;}
.y24_c00358{bottom:149.979810px;}
.y23_c00358{bottom:168.246030px;}
.y22_c00358{bottom:186.608010px;}
.y21_c00358{bottom:204.874230px;}
.y20_c00358{bottom:223.140450px;}
.y1f_c00358{bottom:238.350450px;}
.y1e_c00358{bottom:259.050450px;}
.y1d_c00358{bottom:279.750450px;}
.y1c_c00358{bottom:314.940450px;}
.y1b_c00358{bottom:349.410450px;}
.y1a_c00358{bottom:383.790450px;}
.y19_c00358{bottom:418.260450px;}
.y18_c00358{bottom:452.640450px;}
.y17_c00358{bottom:487.110450px;}
.y16_c00358{bottom:521.490450px;}
.y15_c00358{bottom:555.960450px;}
.y14_c00358{bottom:590.340450px;}
.y13_c00358{bottom:624.810450px;}
.y12_c00358{bottom:659.190450px;}
.y11_c00358{bottom:693.660450px;}
.y10_c00358{bottom:728.040450px;}
.yf_c00358{bottom:762.510450px;}
.ye_c00358{bottom:796.890450px;}
.yd_c00358{bottom:831.360450px;}
.yc_c00358{bottom:865.740450px;}
.yb_c00358{bottom:900.210450px;}
.ya_c00358{bottom:934.590450px;}
.y9_c00358{bottom:969.060450px;}
.y8_c00358{bottom:1003.440450px;}
.y7_c00358{bottom:1037.910450px;}
.y6_c00358{bottom:1072.290450px;}
.y5_c00358{bottom:1106.760450px;}
.y4_c00358{bottom:1141.140450px;}
.y2_c00358{bottom:1177.860450px;}
.y1_c00358{bottom:1196.850450px;}
.h7_c00358{height:47.988281px;}
.h8_c00358{height:49.937344px;}
.h1_c00358{height:50.315273px;}
.h2_c00358{height:56.320312px;}
.h4_c00358{height:60.257812px;}
.h5_c00358{height:65.130820px;}
.h6_c00358{height:65.131420px;}
.h3_c00358{height:72.160312px;}
.h0_c00358{height:1263.000000px;}
.w1_c00358{width:892.500000px;}
.w0_c00358{width:892.830000px;}
.x0_c00358{left:0.000000px;}
.x1_c00358{left:127.620000px;}
.x2_c00358{left:180.810000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.v1_c00358{vertical-align:14.080000pt;}
.v2_c00358{vertical-align:26.560000pt;}
.ls9_c00358{letter-spacing:-0.134400pt;}
.lsf_c00358{letter-spacing:-0.070400pt;}
.ls11_c00358{letter-spacing:-0.038400pt;}
.lsd_c00358{letter-spacing:-0.032000pt;}
.ls12_c00358{letter-spacing:-0.025600pt;}
.lsa_c00358{letter-spacing:-0.019200pt;}
.lsc_c00358{letter-spacing:-0.012800pt;}
.lsb_c00358{letter-spacing:-0.006400pt;}
.ls8_c00358{letter-spacing:0.000000pt;}
.ls3_c00358{letter-spacing:0.006400pt;}
.ls4_c00358{letter-spacing:0.012800pt;}
.ls7_c00358{letter-spacing:0.021280pt;}
.ls6_c00358{letter-spacing:0.025536pt;}
.ls10_c00358{letter-spacing:0.025600pt;}
.ls5_c00358{letter-spacing:0.032000pt;}
.ls0_c00358{letter-spacing:0.042752pt;}
.ls2_c00358{letter-spacing:0.048672pt;}
.lse_c00358{letter-spacing:0.083200pt;}
.ls1_c00358{letter-spacing:1077.440000pt;}
.ws0_c00358{word-spacing:-9.408672pt;}
.ws13_c00358{word-spacing:-0.083200pt;}
.ws2c_c00358{word-spacing:-0.008512pt;}
.ws2d_c00358{word-spacing:-0.004256pt;}
.ws2_c00358{word-spacing:0.000000pt;}
.ws12_c00358{word-spacing:0.006400pt;}
.ws2b_c00358{word-spacing:0.012800pt;}
.ws7_c00358{word-spacing:0.032000pt;}
.ws1_c00358{word-spacing:0.037408pt;}
.wsa_c00358{word-spacing:0.659200pt;}
.ws8_c00358{word-spacing:0.678400pt;}
.ws1c_c00358{word-spacing:0.972800pt;}
.ws1d_c00358{word-spacing:1.011200pt;}
.ws26_c00358{word-spacing:1.286400pt;}
.ws27_c00358{word-spacing:1.318400pt;}
.ws25_c00358{word-spacing:3.187200pt;}
.ws24_c00358{word-spacing:3.232000pt;}
.ws9_c00358{word-spacing:3.872000pt;}
.ws4_c00358{word-spacing:3.891200pt;}
.ws3_c00358{word-spacing:3.904000pt;}
.ws18_c00358{word-spacing:4.499200pt;}
.wsf_c00358{word-spacing:4.812800pt;}
.ws10_c00358{word-spacing:4.819200pt;}
.ws1b_c00358{word-spacing:4.832000pt;}
.ws2a_c00358{word-spacing:5.126400pt;}
.ws1f_c00358{word-spacing:5.728000pt;}
.ws21_c00358{word-spacing:5.766400pt;}
.ws1e_c00358{word-spacing:5.792000pt;}
.ws20_c00358{word-spacing:5.817600pt;}
.ws22_c00358{word-spacing:6.035200pt;}
.ws23_c00358{word-spacing:6.080000pt;}
.ws17_c00358{word-spacing:6.387200pt;}
.ws16_c00358{word-spacing:6.406400pt;}
.ws11_c00358{word-spacing:6.425600pt;}
.ws29_c00358{word-spacing:11.174400pt;}
.ws28_c00358{word-spacing:11.212800pt;}
.ws5_c00358{word-spacing:12.806400pt;}
.ws6_c00358{word-spacing:12.812800pt;}
.ws19_c00358{word-spacing:14.419200pt;}
.ws1a_c00358{word-spacing:14.528000pt;}
.ws14_c00358{word-spacing:17.318400pt;}
.ws15_c00358{word-spacing:17.331200pt;}
.wsb_c00358{word-spacing:20.384000pt;}
.wsc_c00358{word-spacing:20.512000pt;}
.wsd_c00358{word-spacing:22.444800pt;}
.wse_c00358{word-spacing:22.470400pt;}
._0_c00358{margin-left:-1.175680pt;}
._1_c00358{width:0.960000pt;}
.fs3_c00358{font-size:37.440000pt;}
.fs4_c00358{font-size:42.560000pt;}
.fs1_c00358{font-size:48.000000pt;}
.fs0_c00358{font-size:53.440000pt;}
.fs2_c00358{font-size:64.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y3_c00358{bottom:51.067067pt;}
.y26_c00358{bottom:100.756987pt;}
.y25_c00358{bottom:117.078747pt;}
.y24_c00358{bottom:133.315387pt;}
.y23_c00358{bottom:149.552027pt;}
.y22_c00358{bottom:165.873787pt;}
.y21_c00358{bottom:182.110427pt;}
.y20_c00358{bottom:198.347067pt;}
.y1f_c00358{bottom:211.867067pt;}
.y1e_c00358{bottom:230.267067pt;}
.y1d_c00358{bottom:248.667067pt;}
.y1c_c00358{bottom:279.947067pt;}
.y1b_c00358{bottom:310.587067pt;}
.y1a_c00358{bottom:341.147067pt;}
.y19_c00358{bottom:371.787067pt;}
.y18_c00358{bottom:402.347067pt;}
.y17_c00358{bottom:432.987067pt;}
.y16_c00358{bottom:463.547067pt;}
.y15_c00358{bottom:494.187067pt;}
.y14_c00358{bottom:524.747067pt;}
.y13_c00358{bottom:555.387067pt;}
.y12_c00358{bottom:585.947067pt;}
.y11_c00358{bottom:616.587067pt;}
.y10_c00358{bottom:647.147067pt;}
.yf_c00358{bottom:677.787067pt;}
.ye_c00358{bottom:708.347067pt;}
.yd_c00358{bottom:738.987067pt;}
.yc_c00358{bottom:769.547067pt;}
.yb_c00358{bottom:800.187067pt;}
.ya_c00358{bottom:830.747067pt;}
.y9_c00358{bottom:861.387067pt;}
.y8_c00358{bottom:891.947067pt;}
.y7_c00358{bottom:922.587067pt;}
.y6_c00358{bottom:953.147067pt;}
.y5_c00358{bottom:983.787067pt;}
.y4_c00358{bottom:1014.347067pt;}
.y2_c00358{bottom:1046.987067pt;}
.y1_c00358{bottom:1063.867067pt;}
.h7_c00358{height:42.656250pt;}
.h8_c00358{height:44.388750pt;}
.h1_c00358{height:44.724687pt;}
.h2_c00358{height:50.062500pt;}
.h4_c00358{height:53.562500pt;}
.h5_c00358{height:57.894062pt;}
.h6_c00358{height:57.894596pt;}
.h3_c00358{height:64.142500pt;}
.h0_c00358{height:1122.666667pt;}
.w1_c00358{width:793.333333pt;}
.w0_c00358{width:793.626667pt;}
.x0_c00358{left:0.000000pt;}
.x1_c00358{left:113.440000pt;}
.x2_c00358{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_c00359 {
    display:none;
  }
  .loading-indicator_c00359.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00359 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00359 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00359" -> "#page-container .classname_c00359")
 */
.pf_c00359 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00359 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00359 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00359 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00359 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00359 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00359 {overflow:visible;}
  }
}
.c_c00359 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00359 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00359:after { /* webkit #35443 */
  content: '';
}
.t_c00359:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00359 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00359 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00359 { /* info for Javascript */
  display:none;
}
.l_c00359 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00359 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00359 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00359:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00359;src:url('chunks/assets/font_8a602fff7ae90f7276e3f35b.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00359;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_46e918f8622cb762bfbfadc2.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00359;src:url('chunks/assets/font_e5a3f2767e908f697bd26f7c.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls8_c00359{letter-spacing:-0.151200px;}
.lsf_c00359{letter-spacing:-0.043200px;}
.lse_c00359{letter-spacing:-0.036000px;}
.lsc_c00359{letter-spacing:-0.028800px;}
.lsd_c00359{letter-spacing:-0.021600px;}
.lsb_c00359{letter-spacing:-0.014400px;}
.lsa_c00359{letter-spacing:-0.007200px;}
.ls7_c00359{letter-spacing:0.000000px;}
.ls5_c00359{letter-spacing:0.007200px;}
.ls4_c00359{letter-spacing:0.014400px;}
.ls6_c00359{letter-spacing:0.021600px;}
.ls1_c00359{letter-spacing:0.028800px;}
.ls0_c00359{letter-spacing:0.036072px;}
.ls9_c00359{letter-spacing:0.086400px;}
.ls2_c00359{letter-spacing:0.144000px;}
.ls3_c00359{letter-spacing:66.024000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00359{word-spacing:-18.028800px;}
.ws1_c00359{word-spacing:-0.306612px;}
.ws2_c00359{word-spacing:0.000000px;}
.ws1d_c00359{word-spacing:0.007200px;}
.ws16_c00359{word-spacing:0.036000px;}
.wsb_c00359{word-spacing:0.100800px;}
.ws11_c00359{word-spacing:0.691200px;}
.ws10_c00359{word-spacing:0.727200px;}
.ws7_c00359{word-spacing:0.734400px;}
.ws17_c00359{word-spacing:1.425600px;}
.ws18_c00359{word-spacing:1.519200px;}
.ws28_c00359{word-spacing:1.821600px;}
.ws6_c00359{word-spacing:2.455200px;}
.ws5_c00359{word-spacing:2.534400px;}
.ws3_c00359{word-spacing:3.225600px;}
.ws4_c00359{word-spacing:3.247200px;}
.ws23_c00359{word-spacing:3.960000px;}
.ws24_c00359{word-spacing:3.981600px;}
.ws25_c00359{word-spacing:4.060800px;}
.ws21_c00359{word-spacing:4.240800px;}
.ws20_c00359{word-spacing:4.334400px;}
.ws8_c00359{word-spacing:4.348800px;}
.ws1e_c00359{word-spacing:6.091200px;}
.ws1f_c00359{word-spacing:6.213600px;}
.ws12_c00359{word-spacing:6.840000px;}
.wsf_c00359{word-spacing:7.509600px;}
.wse_c00359{word-spacing:7.567200px;}
.ws22_c00359{word-spacing:7.581600px;}
.ws19_c00359{word-spacing:9.043200px;}
.ws1a_c00359{word-spacing:9.072000px;}
.ws15_c00359{word-spacing:11.606400px;}
.ws1b_c00359{word-spacing:12.938400px;}
.ws1c_c00359{word-spacing:12.981600px;}
.ws26_c00359{word-spacing:13.680000px;}
.ws14_c00359{word-spacing:13.687200px;}
.ws13_c00359{word-spacing:13.694400px;}
.wsc_c00359{word-spacing:14.774400px;}
.wsd_c00359{word-spacing:14.788800px;}
.wsa_c00359{word-spacing:15.746400px;}
.ws9_c00359{word-spacing:15.796800px;}
.ws27_c00359{word-spacing:18.367200px;}
._0_c00359{margin-left:-1.022040px;}
._1_c00359{width:1.245600px;}
.fc0_c00359{color:rgb(0,0,0);}
.fs2_c00359{font-size:54.000000px;}
.fs0_c00359{font-size:60.120000px;}
.fs1_c00359{font-size:72.000000px;}
.y0_c00359{bottom:0.000000px;}
.y3_c00359{bottom:57.450450px;}
.y4_c00359{bottom:61.410450px;}
.y1f_c00359{bottom:165.090450px;}
.y1e_c00359{bottom:199.560450px;}
.y1d_c00359{bottom:233.940450px;}
.y1c_c00359{bottom:268.410450px;}
.y1b_c00359{bottom:302.790450px;}
.y1a_c00359{bottom:355.260450px;}
.y19_c00359{bottom:389.640450px;}
.y18_c00359{bottom:424.110450px;}
.y17_c00359{bottom:458.490450px;}
.y16_c00359{bottom:510.960450px;}
.y15_c00359{bottom:545.340450px;}
.y14_c00359{bottom:579.810450px;}
.y13_c00359{bottom:614.190450px;}
.y12_c00359{bottom:666.660450px;}
.y11_c00359{bottom:701.040450px;}
.y10_c00359{bottom:735.510450px;}
.yf_c00359{bottom:769.890450px;}
.ye_c00359{bottom:804.360450px;}
.yd_c00359{bottom:838.740450px;}
.yc_c00359{bottom:873.210450px;}
.yb_c00359{bottom:925.590450px;}
.ya_c00359{bottom:960.060450px;}
.y9_c00359{bottom:994.440450px;}
.y8_c00359{bottom:1028.910450px;}
.y7_c00359{bottom:1063.290450px;}
.y6_c00359{bottom:1097.760450px;}
.y5_c00359{bottom:1141.140450px;}
.y2_c00359{bottom:1173.810450px;}
.y1_c00359{bottom:1196.850450px;}
.h2_c00359{height:47.988281px;}
.h1_c00359{height:50.315273px;}
.h3_c00359{height:56.320312px;}
.h6_c00359{height:60.257812px;}
.h4_c00359{height:60.328125px;}
.h5_c00359{height:75.093750px;}
.h0_c00359{height:1263.000000px;}
.w1_c00359{width:892.500000px;}
.w0_c00359{width:892.830000px;}
.x0_c00359{left:0.000000px;}
.x2_c00359{left:127.620000px;}
.x5_c00359{left:154.440000px;}
.x6_c00359{left:181.170000px;}
.x4_c00359{left:435.240000px;}
.x3_c00359{left:446.490000px;}
.x1_c00359{left:490.770000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls8_c00359{letter-spacing:-0.134400pt;}
.lsf_c00359{letter-spacing:-0.038400pt;}
.lse_c00359{letter-spacing:-0.032000pt;}
.lsc_c00359{letter-spacing:-0.025600pt;}
.lsd_c00359{letter-spacing:-0.019200pt;}
.lsb_c00359{letter-spacing:-0.012800pt;}
.lsa_c00359{letter-spacing:-0.006400pt;}
.ls7_c00359{letter-spacing:0.000000pt;}
.ls5_c00359{letter-spacing:0.006400pt;}
.ls4_c00359{letter-spacing:0.012800pt;}
.ls6_c00359{letter-spacing:0.019200pt;}
.ls1_c00359{letter-spacing:0.025600pt;}
.ls0_c00359{letter-spacing:0.032064pt;}
.ls9_c00359{letter-spacing:0.076800pt;}
.ls2_c00359{letter-spacing:0.128000pt;}
.ls3_c00359{letter-spacing:58.688000pt;}
.ws0_c00359{word-spacing:-16.025600pt;}
.ws1_c00359{word-spacing:-0.272544pt;}
.ws2_c00359{word-spacing:0.000000pt;}
.ws1d_c00359{word-spacing:0.006400pt;}
.ws16_c00359{word-spacing:0.032000pt;}
.wsb_c00359{word-spacing:0.089600pt;}
.ws11_c00359{word-spacing:0.614400pt;}
.ws10_c00359{word-spacing:0.646400pt;}
.ws7_c00359{word-spacing:0.652800pt;}
.ws17_c00359{word-spacing:1.267200pt;}
.ws18_c00359{word-spacing:1.350400pt;}
.ws28_c00359{word-spacing:1.619200pt;}
.ws6_c00359{word-spacing:2.182400pt;}
.ws5_c00359{word-spacing:2.252800pt;}
.ws3_c00359{word-spacing:2.867200pt;}
.ws4_c00359{word-spacing:2.886400pt;}
.ws23_c00359{word-spacing:3.520000pt;}
.ws24_c00359{word-spacing:3.539200pt;}
.ws25_c00359{word-spacing:3.609600pt;}
.ws21_c00359{word-spacing:3.769600pt;}
.ws20_c00359{word-spacing:3.852800pt;}
.ws8_c00359{word-spacing:3.865600pt;}
.ws1e_c00359{word-spacing:5.414400pt;}
.ws1f_c00359{word-spacing:5.523200pt;}
.ws12_c00359{word-spacing:6.080000pt;}
.wsf_c00359{word-spacing:6.675200pt;}
.wse_c00359{word-spacing:6.726400pt;}
.ws22_c00359{word-spacing:6.739200pt;}
.ws19_c00359{word-spacing:8.038400pt;}
.ws1a_c00359{word-spacing:8.064000pt;}
.ws15_c00359{word-spacing:10.316800pt;}
.ws1b_c00359{word-spacing:11.500800pt;}
.ws1c_c00359{word-spacing:11.539200pt;}
.ws26_c00359{word-spacing:12.160000pt;}
.ws14_c00359{word-spacing:12.166400pt;}
.ws13_c00359{word-spacing:12.172800pt;}
.wsc_c00359{word-spacing:13.132800pt;}
.wsd_c00359{word-spacing:13.145600pt;}
.wsa_c00359{word-spacing:13.996800pt;}
.ws9_c00359{word-spacing:14.041600pt;}
.ws27_c00359{word-spacing:16.326400pt;}
._0_c00359{margin-left:-0.908480pt;}
._1_c00359{width:1.107200pt;}
.fs2_c00359{font-size:48.000000pt;}
.fs0_c00359{font-size:53.440000pt;}
.fs1_c00359{font-size:64.000000pt;}
.y0_c00359{bottom:0.000000pt;}
.y3_c00359{bottom:51.067067pt;}
.y4_c00359{bottom:54.587067pt;}
.y1f_c00359{bottom:146.747067pt;}
.y1e_c00359{bottom:177.387067pt;}
.y1d_c00359{bottom:207.947067pt;}
.y1c_c00359{bottom:238.587067pt;}
.y1b_c00359{bottom:269.147067pt;}
.y1a_c00359{bottom:315.787067pt;}
.y19_c00359{bottom:346.347067pt;}
.y18_c00359{bottom:376.987067pt;}
.y17_c00359{bottom:407.547067pt;}
.y16_c00359{bottom:454.187067pt;}
.y15_c00359{bottom:484.747067pt;}
.y14_c00359{bottom:515.387067pt;}
.y13_c00359{bottom:545.947067pt;}
.y12_c00359{bottom:592.587067pt;}
.y11_c00359{bottom:623.147067pt;}
.y10_c00359{bottom:653.787067pt;}
.yf_c00359{bottom:684.347067pt;}
.ye_c00359{bottom:714.987067pt;}
.yd_c00359{bottom:745.547067pt;}
.yc_c00359{bottom:776.187067pt;}
.yb_c00359{bottom:822.747067pt;}
.ya_c00359{bottom:853.387067pt;}
.y9_c00359{bottom:883.947067pt;}
.y8_c00359{bottom:914.587067pt;}
.y7_c00359{bottom:945.147067pt;}
.y6_c00359{bottom:975.787067pt;}
.y5_c00359{bottom:1014.347067pt;}
.y2_c00359{bottom:1043.387067pt;}
.y1_c00359{bottom:1063.867067pt;}
.h2_c00359{height:42.656250pt;}
.h1_c00359{height:44.724687pt;}
.h3_c00359{height:50.062500pt;}
.h6_c00359{height:53.562500pt;}
.h4_c00359{height:53.625000pt;}
.h5_c00359{height:66.750000pt;}
.h0_c00359{height:1122.666667pt;}
.w1_c00359{width:793.333333pt;}
.w0_c00359{width:793.626667pt;}
.x0_c00359{left:0.000000pt;}
.x2_c00359{left:113.440000pt;}
.x5_c00359{left:137.280000pt;}
.x6_c00359{left:161.040000pt;}
.x4_c00359{left:386.880000pt;}
.x3_c00359{left:396.880000pt;}
.x1_c00359{left:436.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_c00360 {
    display:none;
  }
  .loading-indicator_c00360.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00360 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00360 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00360" -> "#page-container .classname_c00360")
 */
.pf_c00360 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00360 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00360 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00360 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00360 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00360 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00360 {overflow:visible;}
  }
}
.c_c00360 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00360 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00360:after { /* webkit #35443 */
  content: '';
}
.t_c00360:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00360 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00360 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00360 { /* info for Javascript */
  display:none;
}
.l_c00360 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00360 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00360 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00360:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00360;src:url('chunks/assets/font_8f347ce7aeff794812db5fa4.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_4c8806b5d77477d6d5fa8647.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;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_c00360;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00360;src:url('chunks/assets/font_336d0a14077c58efaf970eea.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.v1_c00360{vertical-align:15.840000px;}
.lsa_c00360{letter-spacing:-0.151200px;}
.lsd_c00360{letter-spacing:-0.036000px;}
.lsf_c00360{letter-spacing:-0.028800px;}
.lse_c00360{letter-spacing:-0.021600px;}
.lsb_c00360{letter-spacing:-0.014400px;}
.lsc_c00360{letter-spacing:-0.007200px;}
.ls9_c00360{letter-spacing:0.000000px;}
.ls6_c00360{letter-spacing:0.007200px;}
.ls7_c00360{letter-spacing:0.014400px;}
.ls4_c00360{letter-spacing:0.021600px;}
.ls8_c00360{letter-spacing:0.028800px;}
.ls5_c00360{letter-spacing:0.036000px;}
.ls0_c00360{letter-spacing:0.048096px;}
.ls10_c00360{letter-spacing:0.093600px;}
.ls2_c00360{letter-spacing:0.144000px;}
.ls3_c00360{letter-spacing:66.024000px;}
.ls1_c00360{letter-spacing:1212.120000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00360{word-spacing:-18.007200px;}
.ws21_c00360{word-spacing:-0.014400px;}
.ws2_c00360{word-spacing:0.000000px;}
.ws1c_c00360{word-spacing:0.007200px;}
.ws12_c00360{word-spacing:0.014400px;}
.ws22_c00360{word-spacing:0.021600px;}
.wsb_c00360{word-spacing:0.036000px;}
.ws1_c00360{word-spacing:0.042084px;}
.ws2e_c00360{word-spacing:1.418400px;}
.ws2d_c00360{word-spacing:1.497600px;}
.ws26_c00360{word-spacing:2.851200px;}
.ws25_c00360{word-spacing:2.865600px;}
.ws19_c00360{word-spacing:2.880000px;}
.ws18_c00360{word-spacing:2.887200px;}
.wse_c00360{word-spacing:3.182400px;}
.wsf_c00360{word-spacing:3.225600px;}
.ws7_c00360{word-spacing:3.967200px;}
.ws1d_c00360{word-spacing:5.392800px;}
.ws1e_c00360{word-spacing:5.400000px;}
.ws27_c00360{word-spacing:5.745600px;}
.ws5_c00360{word-spacing:5.752800px;}
.ws28_c00360{word-spacing:5.760000px;}
.ws29_c00360{word-spacing:5.860800px;}
.ws6_c00360{word-spacing:5.875200px;}
.ws11_c00360{word-spacing:6.127200px;}
.ws10_c00360{word-spacing:6.141600px;}
.ws13_c00360{word-spacing:6.451200px;}
.ws14_c00360{word-spacing:6.494400px;}
.ws17_c00360{word-spacing:6.876000px;}
.wsa_c00360{word-spacing:8.992800px;}
.ws15_c00360{word-spacing:9.338400px;}
.ws16_c00360{word-spacing:9.439200px;}
.ws8_c00360{word-spacing:10.389600px;}
.ws9_c00360{word-spacing:10.476000px;}
.ws4_c00360{word-spacing:19.764000px;}
.ws3_c00360{word-spacing:19.778400px;}
.ws20_c00360{word-spacing:20.577600px;}
.ws1f_c00360{word-spacing:20.635200px;}
.ws1a_c00360{word-spacing:23.040000px;}
.ws1b_c00360{word-spacing:23.169600px;}
.wsc_c00360{word-spacing:23.414400px;}
.wsd_c00360{word-spacing:23.421600px;}
.ws2a_c00360{word-spacing:23.781600px;}
.ws23_c00360{word-spacing:27.626400px;}
.ws24_c00360{word-spacing:27.669600px;}
.ws2b_c00360{word-spacing:29.066400px;}
.ws2c_c00360{word-spacing:29.174400px;}
._0_c00360{margin-left:-1.322640px;}
._1_c00360{width:1.224000px;}
.fc0_c00360{color:rgb(0,0,0);}
.fs1_c00360{font-size:54.000000px;}
.fs0_c00360{font-size:60.120000px;}
.fs2_c00360{font-size:72.000000px;}
.y0_c00360{bottom:0.000000px;}
.y3_c00360{bottom:57.450450px;}
.y1f_c00360{bottom:130.710450px;}
.y1e_c00360{bottom:165.090450px;}
.y1d_c00360{bottom:199.560450px;}
.y1c_c00360{bottom:233.940450px;}
.y1b_c00360{bottom:268.410450px;}
.y1a_c00360{bottom:311.790450px;}
.y19_c00360{bottom:364.260450px;}
.y18_c00360{bottom:398.640450px;}
.y17_c00360{bottom:433.110450px;}
.y16_c00360{bottom:467.490450px;}
.y15_c00360{bottom:501.960450px;}
.y14_c00360{bottom:536.340450px;}
.y13_c00360{bottom:588.810450px;}
.y12_c00360{bottom:623.190450px;}
.y11_c00360{bottom:657.660450px;}
.y10_c00360{bottom:692.040450px;}
.yf_c00360{bottom:726.510450px;}
.ye_c00360{bottom:760.890450px;}
.yd_c00360{bottom:813.360450px;}
.yc_c00360{bottom:847.740450px;}
.yb_c00360{bottom:882.210450px;}
.ya_c00360{bottom:916.590450px;}
.y9_c00360{bottom:969.060450px;}
.y8_c00360{bottom:1003.440450px;}
.y7_c00360{bottom:1037.910450px;}
.y6_c00360{bottom:1072.290450px;}
.y5_c00360{bottom:1106.760450px;}
.y4_c00360{bottom:1141.140450px;}
.y2_c00360{bottom:1177.860450px;}
.y1_c00360{bottom:1196.850450px;}
.h1_c00360{height:50.315273px;}
.h2_c00360{height:56.320312px;}
.h5_c00360{height:60.257812px;}
.h6_c00360{height:60.328125px;}
.h3_c00360{height:72.160312px;}
.h4_c00360{height:75.093750px;}
.h0_c00360{height:1263.000000px;}
.w1_c00360{width:892.500000px;}
.w0_c00360{width:892.830000px;}
.x0_c00360{left:0.000000px;}
.x1_c00360{left:127.620000px;}
.x2_c00360{left:154.440000px;}
.x3_c00360{left:181.170000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.v1_c00360{vertical-align:14.080000pt;}
.lsa_c00360{letter-spacing:-0.134400pt;}
.lsd_c00360{letter-spacing:-0.032000pt;}
.lsf_c00360{letter-spacing:-0.025600pt;}
.lse_c00360{letter-spacing:-0.019200pt;}
.lsb_c00360{letter-spacing:-0.012800pt;}
.lsc_c00360{letter-spacing:-0.006400pt;}
.ls9_c00360{letter-spacing:0.000000pt;}
.ls6_c00360{letter-spacing:0.006400pt;}
.ls7_c00360{letter-spacing:0.012800pt;}
.ls4_c00360{letter-spacing:0.019200pt;}
.ls8_c00360{letter-spacing:0.025600pt;}
.ls5_c00360{letter-spacing:0.032000pt;}
.ls0_c00360{letter-spacing:0.042752pt;}
.ls10_c00360{letter-spacing:0.083200pt;}
.ls2_c00360{letter-spacing:0.128000pt;}
.ls3_c00360{letter-spacing:58.688000pt;}
.ls1_c00360{letter-spacing:1077.440000pt;}
.ws0_c00360{word-spacing:-16.006400pt;}
.ws21_c00360{word-spacing:-0.012800pt;}
.ws2_c00360{word-spacing:0.000000pt;}
.ws1c_c00360{word-spacing:0.006400pt;}
.ws12_c00360{word-spacing:0.012800pt;}
.ws22_c00360{word-spacing:0.019200pt;}
.wsb_c00360{word-spacing:0.032000pt;}
.ws1_c00360{word-spacing:0.037408pt;}
.ws2e_c00360{word-spacing:1.260800pt;}
.ws2d_c00360{word-spacing:1.331200pt;}
.ws26_c00360{word-spacing:2.534400pt;}
.ws25_c00360{word-spacing:2.547200pt;}
.ws19_c00360{word-spacing:2.560000pt;}
.ws18_c00360{word-spacing:2.566400pt;}
.wse_c00360{word-spacing:2.828800pt;}
.wsf_c00360{word-spacing:2.867200pt;}
.ws7_c00360{word-spacing:3.526400pt;}
.ws1d_c00360{word-spacing:4.793600pt;}
.ws1e_c00360{word-spacing:4.800000pt;}
.ws27_c00360{word-spacing:5.107200pt;}
.ws5_c00360{word-spacing:5.113600pt;}
.ws28_c00360{word-spacing:5.120000pt;}
.ws29_c00360{word-spacing:5.209600pt;}
.ws6_c00360{word-spacing:5.222400pt;}
.ws11_c00360{word-spacing:5.446400pt;}
.ws10_c00360{word-spacing:5.459200pt;}
.ws13_c00360{word-spacing:5.734400pt;}
.ws14_c00360{word-spacing:5.772800pt;}
.ws17_c00360{word-spacing:6.112000pt;}
.wsa_c00360{word-spacing:7.993600pt;}
.ws15_c00360{word-spacing:8.300800pt;}
.ws16_c00360{word-spacing:8.390400pt;}
.ws8_c00360{word-spacing:9.235200pt;}
.ws9_c00360{word-spacing:9.312000pt;}
.ws4_c00360{word-spacing:17.568000pt;}
.ws3_c00360{word-spacing:17.580800pt;}
.ws20_c00360{word-spacing:18.291200pt;}
.ws1f_c00360{word-spacing:18.342400pt;}
.ws1a_c00360{word-spacing:20.480000pt;}
.ws1b_c00360{word-spacing:20.595200pt;}
.wsc_c00360{word-spacing:20.812800pt;}
.wsd_c00360{word-spacing:20.819200pt;}
.ws2a_c00360{word-spacing:21.139200pt;}
.ws23_c00360{word-spacing:24.556800pt;}
.ws24_c00360{word-spacing:24.595200pt;}
.ws2b_c00360{word-spacing:25.836800pt;}
.ws2c_c00360{word-spacing:25.932800pt;}
._0_c00360{margin-left:-1.175680pt;}
._1_c00360{width:1.088000pt;}
.fs1_c00360{font-size:48.000000pt;}
.fs0_c00360{font-size:53.440000pt;}
.fs2_c00360{font-size:64.000000pt;}
.y0_c00360{bottom:0.000000pt;}
.y3_c00360{bottom:51.067067pt;}
.y1f_c00360{bottom:116.187067pt;}
.y1e_c00360{bottom:146.747067pt;}
.y1d_c00360{bottom:177.387067pt;}
.y1c_c00360{bottom:207.947067pt;}
.y1b_c00360{bottom:238.587067pt;}
.y1a_c00360{bottom:277.147067pt;}
.y19_c00360{bottom:323.787067pt;}
.y18_c00360{bottom:354.347067pt;}
.y17_c00360{bottom:384.987067pt;}
.y16_c00360{bottom:415.547067pt;}
.y15_c00360{bottom:446.187067pt;}
.y14_c00360{bottom:476.747067pt;}
.y13_c00360{bottom:523.387067pt;}
.y12_c00360{bottom:553.947067pt;}
.y11_c00360{bottom:584.587067pt;}
.y10_c00360{bottom:615.147067pt;}
.yf_c00360{bottom:645.787067pt;}
.ye_c00360{bottom:676.347067pt;}
.yd_c00360{bottom:722.987067pt;}
.yc_c00360{bottom:753.547067pt;}
.yb_c00360{bottom:784.187067pt;}
.ya_c00360{bottom:814.747067pt;}
.y9_c00360{bottom:861.387067pt;}
.y8_c00360{bottom:891.947067pt;}
.y7_c00360{bottom:922.587067pt;}
.y6_c00360{bottom:953.147067pt;}
.y5_c00360{bottom:983.787067pt;}
.y4_c00360{bottom:1014.347067pt;}
.y2_c00360{bottom:1046.987067pt;}
.y1_c00360{bottom:1063.867067pt;}
.h1_c00360{height:44.724687pt;}
.h2_c00360{height:50.062500pt;}
.h5_c00360{height:53.562500pt;}
.h6_c00360{height:53.625000pt;}
.h3_c00360{height:64.142500pt;}
.h4_c00360{height:66.750000pt;}
.h0_c00360{height:1122.666667pt;}
.w1_c00360{width:793.333333pt;}
.w0_c00360{width:793.626667pt;}
.x0_c00360{left:0.000000pt;}
.x1_c00360{left:113.440000pt;}
.x2_c00360{left:137.280000pt;}
.x3_c00360{left:161.040000pt;}
}





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

.ir_c00361:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00361;src:url('chunks/assets/font_6a65677468ecd975aecff031.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00361;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_5766e5b1f23b0a24e0e79530.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00361;src:url('chunks/assets/font_7b8a666d0947a5576d352cb0.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00361;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00361{font-family:ff5_c00361;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.lsb_c00361{letter-spacing:-0.151200px;}
.lsf_c00361{letter-spacing:-0.036000px;}
.ls11_c00361{letter-spacing:-0.028800px;}
.lsc_c00361{letter-spacing:-0.021600px;}
.lse_c00361{letter-spacing:-0.014400px;}
.ls10_c00361{letter-spacing:-0.007200px;}
.lsa_c00361{letter-spacing:0.000000px;}
.ls12_c00361{letter-spacing:0.007200px;}
.ls6_c00361{letter-spacing:0.014400px;}
.ls3_c00361{letter-spacing:0.021600px;}
.ls9_c00361{letter-spacing:0.028800px;}
.ls8_c00361{letter-spacing:0.036000px;}
.ls0_c00361{letter-spacing:0.036072px;}
.lsd_c00361{letter-spacing:0.043200px;}
.ls7_c00361{letter-spacing:0.086400px;}
.ls1_c00361{letter-spacing:0.144000px;}
.ls5_c00361{letter-spacing:44.784000px;}
.ls4_c00361{letter-spacing:45.504000px;}
.ls2_c00361{letter-spacing:66.024000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00361{word-spacing:-18.086400px;}
.ws1_c00361{word-spacing:-0.306612px;}
.ws1a_c00361{word-spacing:-0.007200px;}
.ws2_c00361{word-spacing:0.000000px;}
.wse_c00361{word-spacing:0.014400px;}
.ws5_c00361{word-spacing:0.021600px;}
.ws14_c00361{word-spacing:0.144000px;}
.ws22_c00361{word-spacing:0.316800px;}
.ws23_c00361{word-spacing:0.331200px;}
.ws3_c00361{word-spacing:0.360000px;}
.ws4_c00361{word-spacing:0.410400px;}
.ws12_c00361{word-spacing:0.727200px;}
.ws13_c00361{word-spacing:0.806400px;}
.ws8_c00361{word-spacing:1.396800px;}
.ws7_c00361{word-spacing:1.418400px;}
.ws1e_c00361{word-spacing:1.742400px;}
.ws1d_c00361{word-spacing:1.756800px;}
.ws10_c00361{word-spacing:4.262400px;}
.ws17_c00361{word-spacing:4.284000px;}
.ws11_c00361{word-spacing:4.341600px;}
.ws19_c00361{word-spacing:5.047200px;}
.wsc_c00361{word-spacing:5.400000px;}
.ws9_c00361{word-spacing:5.421600px;}
.wsd_c00361{word-spacing:5.436000px;}
.ws6_c00361{word-spacing:6.861600px;}
.ws18_c00361{word-spacing:7.545600px;}
.wsf_c00361{word-spacing:11.858400px;}
.ws16_c00361{word-spacing:13.730400px;}
.ws15_c00361{word-spacing:13.752000px;}
.wsb_c00361{word-spacing:13.838400px;}
.wsa_c00361{word-spacing:13.960800px;}
.ws1f_c00361{word-spacing:21.996000px;}
.ws20_c00361{word-spacing:26.661600px;}
.ws21_c00361{word-spacing:26.668800px;}
.ws1b_c00361{word-spacing:28.764000px;}
.ws1c_c00361{word-spacing:28.792800px;}
._0_c00361{margin-left:-1.022040px;}
._1_c00361{width:1.008000px;}
.fc0_c00361{color:rgb(0,0,0);}
.fs2_c00361{font-size:54.000000px;}
.fs0_c00361{font-size:60.120000px;}
.fs1_c00361{font-size:72.000000px;}
.y0_c00361{bottom:0.000000px;}
.y3_c00361{bottom:57.450450px;}
.y4_c00361{bottom:61.410450px;}
.y1e_c00361{bottom:181.560450px;}
.y1d_c00361{bottom:215.940450px;}
.y1c_c00361{bottom:250.410450px;}
.y1b_c00361{bottom:302.790450px;}
.y1a_c00361{bottom:337.260450px;}
.y19_c00361{bottom:371.640450px;}
.y18_c00361{bottom:406.110450px;}
.y17_c00361{bottom:449.490450px;}
.y16_c00361{bottom:501.960450px;}
.y15_c00361{bottom:536.340450px;}
.y14_c00361{bottom:570.810450px;}
.y13_c00361{bottom:605.190450px;}
.y12_c00361{bottom:639.660450px;}
.y11_c00361{bottom:683.040450px;}
.y10_c00361{bottom:717.510450px;}
.yf_c00361{bottom:751.890450px;}
.ye_c00361{bottom:786.360450px;}
.yd_c00361{bottom:829.740450px;}
.yc_c00361{bottom:864.210450px;}
.yb_c00361{bottom:916.590450px;}
.ya_c00361{bottom:951.060450px;}
.y9_c00361{bottom:985.440450px;}
.y8_c00361{bottom:1019.910450px;}
.y7_c00361{bottom:1054.290450px;}
.y6_c00361{bottom:1106.760450px;}
.y5_c00361{bottom:1141.140450px;}
.y2_c00361{bottom:1173.810450px;}
.y1_c00361{bottom:1196.850450px;}
.h2_c00361{height:47.988281px;}
.h1_c00361{height:50.315273px;}
.h3_c00361{height:56.320312px;}
.h4_c00361{height:60.257812px;}
.h6_c00361{height:60.328125px;}
.h5_c00361{height:75.093750px;}
.h0_c00361{height:1263.000000px;}
.w1_c00361{width:892.500000px;}
.w0_c00361{width:892.830000px;}
.x0_c00361{left:0.000000px;}
.x2_c00361{left:127.620000px;}
.x6_c00361{left:154.440000px;}
.x5_c00361{left:181.170000px;}
.x7_c00361{left:208.440000px;}
.x8_c00361{left:235.170000px;}
.x4_c00361{left:435.240000px;}
.x3_c00361{left:446.490000px;}
.x1_c00361{left:490.770000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.lsb_c00361{letter-spacing:-0.134400pt;}
.lsf_c00361{letter-spacing:-0.032000pt;}
.ls11_c00361{letter-spacing:-0.025600pt;}
.lsc_c00361{letter-spacing:-0.019200pt;}
.lse_c00361{letter-spacing:-0.012800pt;}
.ls10_c00361{letter-spacing:-0.006400pt;}
.lsa_c00361{letter-spacing:0.000000pt;}
.ls12_c00361{letter-spacing:0.006400pt;}
.ls6_c00361{letter-spacing:0.012800pt;}
.ls3_c00361{letter-spacing:0.019200pt;}
.ls9_c00361{letter-spacing:0.025600pt;}
.ls8_c00361{letter-spacing:0.032000pt;}
.ls0_c00361{letter-spacing:0.032064pt;}
.lsd_c00361{letter-spacing:0.038400pt;}
.ls7_c00361{letter-spacing:0.076800pt;}
.ls1_c00361{letter-spacing:0.128000pt;}
.ls5_c00361{letter-spacing:39.808000pt;}
.ls4_c00361{letter-spacing:40.448000pt;}
.ls2_c00361{letter-spacing:58.688000pt;}
.ws0_c00361{word-spacing:-16.076800pt;}
.ws1_c00361{word-spacing:-0.272544pt;}
.ws1a_c00361{word-spacing:-0.006400pt;}
.ws2_c00361{word-spacing:0.000000pt;}
.wse_c00361{word-spacing:0.012800pt;}
.ws5_c00361{word-spacing:0.019200pt;}
.ws14_c00361{word-spacing:0.128000pt;}
.ws22_c00361{word-spacing:0.281600pt;}
.ws23_c00361{word-spacing:0.294400pt;}
.ws3_c00361{word-spacing:0.320000pt;}
.ws4_c00361{word-spacing:0.364800pt;}
.ws12_c00361{word-spacing:0.646400pt;}
.ws13_c00361{word-spacing:0.716800pt;}
.ws8_c00361{word-spacing:1.241600pt;}
.ws7_c00361{word-spacing:1.260800pt;}
.ws1e_c00361{word-spacing:1.548800pt;}
.ws1d_c00361{word-spacing:1.561600pt;}
.ws10_c00361{word-spacing:3.788800pt;}
.ws17_c00361{word-spacing:3.808000pt;}
.ws11_c00361{word-spacing:3.859200pt;}
.ws19_c00361{word-spacing:4.486400pt;}
.wsc_c00361{word-spacing:4.800000pt;}
.ws9_c00361{word-spacing:4.819200pt;}
.wsd_c00361{word-spacing:4.832000pt;}
.ws6_c00361{word-spacing:6.099200pt;}
.ws18_c00361{word-spacing:6.707200pt;}
.wsf_c00361{word-spacing:10.540800pt;}
.ws16_c00361{word-spacing:12.204800pt;}
.ws15_c00361{word-spacing:12.224000pt;}
.wsb_c00361{word-spacing:12.300800pt;}
.wsa_c00361{word-spacing:12.409600pt;}
.ws1f_c00361{word-spacing:19.552000pt;}
.ws20_c00361{word-spacing:23.699200pt;}
.ws21_c00361{word-spacing:23.705600pt;}
.ws1b_c00361{word-spacing:25.568000pt;}
.ws1c_c00361{word-spacing:25.593600pt;}
._0_c00361{margin-left:-0.908480pt;}
._1_c00361{width:0.896000pt;}
.fs2_c00361{font-size:48.000000pt;}
.fs0_c00361{font-size:53.440000pt;}
.fs1_c00361{font-size:64.000000pt;}
.y0_c00361{bottom:0.000000pt;}
.y3_c00361{bottom:51.067067pt;}
.y4_c00361{bottom:54.587067pt;}
.y1e_c00361{bottom:161.387067pt;}
.y1d_c00361{bottom:191.947067pt;}
.y1c_c00361{bottom:222.587067pt;}
.y1b_c00361{bottom:269.147067pt;}
.y1a_c00361{bottom:299.787067pt;}
.y19_c00361{bottom:330.347067pt;}
.y18_c00361{bottom:360.987067pt;}
.y17_c00361{bottom:399.547067pt;}
.y16_c00361{bottom:446.187067pt;}
.y15_c00361{bottom:476.747067pt;}
.y14_c00361{bottom:507.387067pt;}
.y13_c00361{bottom:537.947067pt;}
.y12_c00361{bottom:568.587067pt;}
.y11_c00361{bottom:607.147067pt;}
.y10_c00361{bottom:637.787067pt;}
.yf_c00361{bottom:668.347067pt;}
.ye_c00361{bottom:698.987067pt;}
.yd_c00361{bottom:737.547067pt;}
.yc_c00361{bottom:768.187067pt;}
.yb_c00361{bottom:814.747067pt;}
.ya_c00361{bottom:845.387067pt;}
.y9_c00361{bottom:875.947067pt;}
.y8_c00361{bottom:906.587067pt;}
.y7_c00361{bottom:937.147067pt;}
.y6_c00361{bottom:983.787067pt;}
.y5_c00361{bottom:1014.347067pt;}
.y2_c00361{bottom:1043.387067pt;}
.y1_c00361{bottom:1063.867067pt;}
.h2_c00361{height:42.656250pt;}
.h1_c00361{height:44.724687pt;}
.h3_c00361{height:50.062500pt;}
.h4_c00361{height:53.562500pt;}
.h6_c00361{height:53.625000pt;}
.h5_c00361{height:66.750000pt;}
.h0_c00361{height:1122.666667pt;}
.w1_c00361{width:793.333333pt;}
.w0_c00361{width:793.626667pt;}
.x0_c00361{left:0.000000pt;}
.x2_c00361{left:113.440000pt;}
.x6_c00361{left:137.280000pt;}
.x5_c00361{left:161.040000pt;}
.x7_c00361{left:185.280000pt;}
.x8_c00361{left:209.040000pt;}
.x4_c00361{left:386.880000pt;}
.x3_c00361{left:396.880000pt;}
.x1_c00361{left:436.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_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_07fdc5d1773957652d3be645.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.100098;font-style:normal;font-weight:normal;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_ef8e62c1afc085e4099ec2b3.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;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_c00362;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_95d632b63be5315c859d2423.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00362{vertical-align:15.840000px;}
.lsb_c00362{letter-spacing:-0.151200px;}
.lse_c00362{letter-spacing:-0.043200px;}
.ls10_c00362{letter-spacing:-0.028800px;}
.ls11_c00362{letter-spacing:-0.021600px;}
.lsd_c00362{letter-spacing:-0.014400px;}
.lsc_c00362{letter-spacing:-0.007200px;}
.lsa_c00362{letter-spacing:0.000000px;}
.ls6_c00362{letter-spacing:0.007200px;}
.ls4_c00362{letter-spacing:0.014400px;}
.ls7_c00362{letter-spacing:0.021600px;}
.ls5_c00362{letter-spacing:0.028800px;}
.ls9_c00362{letter-spacing:0.036000px;}
.lsf_c00362{letter-spacing:0.043200px;}
.ls0_c00362{letter-spacing:0.048096px;}
.ls13_c00362{letter-spacing:0.050400px;}
.ls12_c00362{letter-spacing:0.086400px;}
.ls2_c00362{letter-spacing:0.144000px;}
.ls8_c00362{letter-spacing:65.304000px;}
.ls3_c00362{letter-spacing:66.024000px;}
.ls1_c00362{letter-spacing:1212.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;}
}
.ws22_c00362{word-spacing:-0.007200px;}
.ws1_c00362{word-spacing:0.000000px;}
.ws2a_c00362{word-spacing:0.014400px;}
.ws17_c00362{word-spacing:0.021600px;}
.ws11_c00362{word-spacing:0.028800px;}
.ws0_c00362{word-spacing:0.042084px;}
.ws1c_c00362{word-spacing:0.108000px;}
.ws28_c00362{word-spacing:0.432000px;}
.ws29_c00362{word-spacing:0.482400px;}
.ws16_c00362{word-spacing:1.065600px;}
.ws15_c00362{word-spacing:1.094400px;}
.ws10_c00362{word-spacing:1.454400px;}
.ws18_c00362{word-spacing:1.461600px;}
.wsf_c00362{word-spacing:1.468800px;}
.ws19_c00362{word-spacing:1.497600px;}
.ws1e_c00362{word-spacing:1.504800px;}
.ws1a_c00362{word-spacing:1.526400px;}
.ws1d_c00362{word-spacing:1.533600px;}
.ws1b_c00362{word-spacing:1.569600px;}
.ws13_c00362{word-spacing:1.807200px;}
.ws6_c00362{word-spacing:3.254400px;}
.ws14_c00362{word-spacing:3.592800px;}
.ws5_c00362{word-spacing:3.614400px;}
.ws26_c00362{word-spacing:4.406400px;}
.ws25_c00362{word-spacing:4.485600px;}
.ws3_c00362{word-spacing:6.004800px;}
.ws4_c00362{word-spacing:6.019200px;}
.ws2_c00362{word-spacing:6.105600px;}
.wsa_c00362{word-spacing:6.436800px;}
.ws9_c00362{word-spacing:6.523200px;}
.ws27_c00362{word-spacing:8.618400px;}
.ws1f_c00362{word-spacing:9.684000px;}
.ws12_c00362{word-spacing:9.698400px;}
.ws20_c00362{word-spacing:9.712800px;}
.ws21_c00362{word-spacing:10.843200px;}
.wsb_c00362{word-spacing:11.930400px;}
.wse_c00362{word-spacing:12.254400px;}
.ws7_c00362{word-spacing:19.843200px;}
.ws8_c00362{word-spacing:19.886400px;}
.wsc_c00362{word-spacing:23.371200px;}
.wsd_c00362{word-spacing:23.392800px;}
.ws24_c00362{word-spacing:33.458400px;}
.ws23_c00362{word-spacing:33.494400px;}
._0_c00362{margin-left:-1.322640px;}
._1_c00362{width:1.065600px;}
.fc0_c00362{color:rgb(0,0,0);}
.fs1_c00362{font-size:54.000000px;}
.fs0_c00362{font-size:60.120000px;}
.fs2_c00362{font-size:72.000000px;}
.y0_c00362{bottom:0.000000px;}
.y3_c00362{bottom:57.450450px;}
.y1f_c00362{bottom:112.710450px;}
.y1e_c00362{bottom:147.090450px;}
.y1d_c00362{bottom:181.560450px;}
.y1c_c00362{bottom:215.940450px;}
.y1b_c00362{bottom:250.410450px;}
.y1a_c00362{bottom:302.790450px;}
.y19_c00362{bottom:337.260450px;}
.y18_c00362{bottom:371.640450px;}
.y17_c00362{bottom:406.110450px;}
.y16_c00362{bottom:458.490450px;}
.y15_c00362{bottom:492.960450px;}
.y14_c00362{bottom:527.340450px;}
.y13_c00362{bottom:570.810450px;}
.y12_c00362{bottom:623.190450px;}
.y11_c00362{bottom:657.660450px;}
.y10_c00362{bottom:692.040450px;}
.yf_c00362{bottom:726.510450px;}
.ye_c00362{bottom:760.890450px;}
.yd_c00362{bottom:813.360450px;}
.yc_c00362{bottom:847.740450px;}
.yb_c00362{bottom:882.210450px;}
.ya_c00362{bottom:916.590450px;}
.y9_c00362{bottom:969.060450px;}
.y8_c00362{bottom:1003.440450px;}
.y7_c00362{bottom:1037.910450px;}
.y6_c00362{bottom:1072.290450px;}
.y5_c00362{bottom:1106.760450px;}
.y4_c00362{bottom:1141.140450px;}
.y2_c00362{bottom:1177.860450px;}
.y1_c00362{bottom:1196.850450px;}
.h1_c00362{height:50.315273px;}
.h2_c00362{height:56.320312px;}
.h5_c00362{height:60.257812px;}
.h6_c00362{height:60.328125px;}
.h3_c00362{height:72.160312px;}
.h4_c00362{height:75.093750px;}
.h0_c00362{height:1263.000000px;}
.w1_c00362{width:892.500000px;}
.w0_c00362{width:892.830000px;}
.x0_c00362{left:0.000000px;}
.x1_c00362{left:127.620000px;}
.x2_c00362{left:154.440000px;}
.x3_c00362{left:181.170000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.v1_c00362{vertical-align:14.080000pt;}
.lsb_c00362{letter-spacing:-0.134400pt;}
.lse_c00362{letter-spacing:-0.038400pt;}
.ls10_c00362{letter-spacing:-0.025600pt;}
.ls11_c00362{letter-spacing:-0.019200pt;}
.lsd_c00362{letter-spacing:-0.012800pt;}
.lsc_c00362{letter-spacing:-0.006400pt;}
.lsa_c00362{letter-spacing:0.000000pt;}
.ls6_c00362{letter-spacing:0.006400pt;}
.ls4_c00362{letter-spacing:0.012800pt;}
.ls7_c00362{letter-spacing:0.019200pt;}
.ls5_c00362{letter-spacing:0.025600pt;}
.ls9_c00362{letter-spacing:0.032000pt;}
.lsf_c00362{letter-spacing:0.038400pt;}
.ls0_c00362{letter-spacing:0.042752pt;}
.ls13_c00362{letter-spacing:0.044800pt;}
.ls12_c00362{letter-spacing:0.076800pt;}
.ls2_c00362{letter-spacing:0.128000pt;}
.ls8_c00362{letter-spacing:58.048000pt;}
.ls3_c00362{letter-spacing:58.688000pt;}
.ls1_c00362{letter-spacing:1077.440000pt;}
.ws22_c00362{word-spacing:-0.006400pt;}
.ws1_c00362{word-spacing:0.000000pt;}
.ws2a_c00362{word-spacing:0.012800pt;}
.ws17_c00362{word-spacing:0.019200pt;}
.ws11_c00362{word-spacing:0.025600pt;}
.ws0_c00362{word-spacing:0.037408pt;}
.ws1c_c00362{word-spacing:0.096000pt;}
.ws28_c00362{word-spacing:0.384000pt;}
.ws29_c00362{word-spacing:0.428800pt;}
.ws16_c00362{word-spacing:0.947200pt;}
.ws15_c00362{word-spacing:0.972800pt;}
.ws10_c00362{word-spacing:1.292800pt;}
.ws18_c00362{word-spacing:1.299200pt;}
.wsf_c00362{word-spacing:1.305600pt;}
.ws19_c00362{word-spacing:1.331200pt;}
.ws1e_c00362{word-spacing:1.337600pt;}
.ws1a_c00362{word-spacing:1.356800pt;}
.ws1d_c00362{word-spacing:1.363200pt;}
.ws1b_c00362{word-spacing:1.395200pt;}
.ws13_c00362{word-spacing:1.606400pt;}
.ws6_c00362{word-spacing:2.892800pt;}
.ws14_c00362{word-spacing:3.193600pt;}
.ws5_c00362{word-spacing:3.212800pt;}
.ws26_c00362{word-spacing:3.916800pt;}
.ws25_c00362{word-spacing:3.987200pt;}
.ws3_c00362{word-spacing:5.337600pt;}
.ws4_c00362{word-spacing:5.350400pt;}
.ws2_c00362{word-spacing:5.427200pt;}
.wsa_c00362{word-spacing:5.721600pt;}
.ws9_c00362{word-spacing:5.798400pt;}
.ws27_c00362{word-spacing:7.660800pt;}
.ws1f_c00362{word-spacing:8.608000pt;}
.ws12_c00362{word-spacing:8.620800pt;}
.ws20_c00362{word-spacing:8.633600pt;}
.ws21_c00362{word-spacing:9.638400pt;}
.wsb_c00362{word-spacing:10.604800pt;}
.wse_c00362{word-spacing:10.892800pt;}
.ws7_c00362{word-spacing:17.638400pt;}
.ws8_c00362{word-spacing:17.676800pt;}
.wsc_c00362{word-spacing:20.774400pt;}
.wsd_c00362{word-spacing:20.793600pt;}
.ws24_c00362{word-spacing:29.740800pt;}
.ws23_c00362{word-spacing:29.772800pt;}
._0_c00362{margin-left:-1.175680pt;}
._1_c00362{width:0.947200pt;}
.fs1_c00362{font-size:48.000000pt;}
.fs0_c00362{font-size:53.440000pt;}
.fs2_c00362{font-size:64.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.y3_c00362{bottom:51.067067pt;}
.y1f_c00362{bottom:100.187067pt;}
.y1e_c00362{bottom:130.747067pt;}
.y1d_c00362{bottom:161.387067pt;}
.y1c_c00362{bottom:191.947067pt;}
.y1b_c00362{bottom:222.587067pt;}
.y1a_c00362{bottom:269.147067pt;}
.y19_c00362{bottom:299.787067pt;}
.y18_c00362{bottom:330.347067pt;}
.y17_c00362{bottom:360.987067pt;}
.y16_c00362{bottom:407.547067pt;}
.y15_c00362{bottom:438.187067pt;}
.y14_c00362{bottom:468.747067pt;}
.y13_c00362{bottom:507.387067pt;}
.y12_c00362{bottom:553.947067pt;}
.y11_c00362{bottom:584.587067pt;}
.y10_c00362{bottom:615.147067pt;}
.yf_c00362{bottom:645.787067pt;}
.ye_c00362{bottom:676.347067pt;}
.yd_c00362{bottom:722.987067pt;}
.yc_c00362{bottom:753.547067pt;}
.yb_c00362{bottom:784.187067pt;}
.ya_c00362{bottom:814.747067pt;}
.y9_c00362{bottom:861.387067pt;}
.y8_c00362{bottom:891.947067pt;}
.y7_c00362{bottom:922.587067pt;}
.y6_c00362{bottom:953.147067pt;}
.y5_c00362{bottom:983.787067pt;}
.y4_c00362{bottom:1014.347067pt;}
.y2_c00362{bottom:1046.987067pt;}
.y1_c00362{bottom:1063.867067pt;}
.h1_c00362{height:44.724687pt;}
.h2_c00362{height:50.062500pt;}
.h5_c00362{height:53.562500pt;}
.h6_c00362{height:53.625000pt;}
.h3_c00362{height:64.142500pt;}
.h4_c00362{height:66.750000pt;}
.h0_c00362{height:1122.666667pt;}
.w1_c00362{width:793.333333pt;}
.w0_c00362{width:793.626667pt;}
.x0_c00362{left:0.000000pt;}
.x1_c00362{left:113.440000pt;}
.x2_c00362{left:137.280000pt;}
.x3_c00362{left:161.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f8c8451eb1d87e015fb86509.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00363;src:url('chunks/assets/font_6e3d1d54e52c7533302e1658.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00363;src:url('chunks/assets/font_ed4ad557577fa33c57d00e31.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00363;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00363{font-family:ff5_c00363;line-height:1.281250;font-style: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;}
.lsa_c00363{letter-spacing:-0.151200px;}
.ls10_c00363{letter-spacing:-0.064800px;}
.lsd_c00363{letter-spacing:-0.036000px;}
.lsc_c00363{letter-spacing:-0.028800px;}
.ls11_c00363{letter-spacing:-0.021600px;}
.lse_c00363{letter-spacing:-0.014400px;}
.lsb_c00363{letter-spacing:-0.007200px;}
.ls9_c00363{letter-spacing:0.000000px;}
.ls5_c00363{letter-spacing:0.007200px;}
.ls12_c00363{letter-spacing:0.014400px;}
.ls8_c00363{letter-spacing:0.021600px;}
.lsf_c00363{letter-spacing:0.028800px;}
.ls4_c00363{letter-spacing:0.036000px;}
.ls0_c00363{letter-spacing:0.036072px;}
.ls1_c00363{letter-spacing:0.086400px;}
.ls2_c00363{letter-spacing:0.144000px;}
.ls7_c00363{letter-spacing:45.504000px;}
.ls6_c00363{letter-spacing:64.584000px;}
.ls3_c00363{letter-spacing:66.024000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00363{word-spacing:-18.086400px;}
.ws1_c00363{word-spacing:-0.306612px;}
.ws9_c00363{word-spacing:-0.007200px;}
.ws2_c00363{word-spacing:0.000000px;}
.ws3_c00363{word-spacing:0.007200px;}
.ws16_c00363{word-spacing:0.014400px;}
.ws10_c00363{word-spacing:0.129600px;}
.ws21_c00363{word-spacing:0.324000px;}
.ws22_c00363{word-spacing:0.338400px;}
.ws18_c00363{word-spacing:1.008000px;}
.ws19_c00363{word-spacing:1.101600px;}
.ws17_c00363{word-spacing:1.144800px;}
.ws1e_c00363{word-spacing:1.425600px;}
.ws1d_c00363{word-spacing:1.461600px;}
.ws1c_c00363{word-spacing:1.476000px;}
.wsd_c00363{word-spacing:1.800000px;}
.wsc_c00363{word-spacing:1.864800px;}
.ws20_c00363{word-spacing:2.829600px;}
.wse_c00363{word-spacing:2.894400px;}
.ws1f_c00363{word-spacing:2.916000px;}
.ws24_c00363{word-spacing:4.017600px;}
.ws23_c00363{word-spacing:4.075200px;}
.ws11_c00363{word-spacing:6.112800px;}
.ws12_c00363{word-spacing:6.134400px;}
.ws1a_c00363{word-spacing:8.949600px;}
.ws1b_c00363{word-spacing:9.036000px;}
.ws8_c00363{word-spacing:10.080000px;}
.ws7_c00363{word-spacing:10.101600px;}
.ws4_c00363{word-spacing:12.564000px;}
.ws5_c00363{word-spacing:12.600000px;}
.ws14_c00363{word-spacing:14.760000px;}
.ws15_c00363{word-spacing:14.781600px;}
.wsf_c00363{word-spacing:15.148800px;}
.ws6_c00363{word-spacing:15.897600px;}
.wsb_c00363{word-spacing:17.647200px;}
.wsa_c00363{word-spacing:17.733600px;}
.ws13_c00363{word-spacing:19.468800px;}
._0_c00363{margin-left:-1.022040px;}
._5_c00363{width:1.152000px;}
._2_c00363{width:6.480000px;}
._4_c00363{width:11.520000px;}
._1_c00363{width:22.968000px;}
._3_c00363{width:34.920000px;}
.fc0_c00363{color:rgb(0,0,0);}
.fs2_c00363{font-size:54.000000px;}
.fs0_c00363{font-size:60.120000px;}
.fs1_c00363{font-size:72.000000px;}
.y0_c00363{bottom:0.000000px;}
.y3_c00363{bottom:57.450450px;}
.y4_c00363{bottom:61.410450px;}
.y1f_c00363{bottom:129.090450px;}
.y1e_c00363{bottom:163.560450px;}
.y1d_c00363{bottom:206.940450px;}
.y1c_c00363{bottom:241.410450px;}
.y1b_c00363{bottom:275.790450px;}
.y1a_c00363{bottom:328.260450px;}
.y19_c00363{bottom:362.640450px;}
.y18_c00363{bottom:397.110450px;}
.y17_c00363{bottom:440.490450px;}
.y16_c00363{bottom:492.960450px;}
.y15_c00363{bottom:527.340450px;}
.y14_c00363{bottom:561.810450px;}
.y13_c00363{bottom:596.190450px;}
.y12_c00363{bottom:648.660450px;}
.y11_c00363{bottom:683.040450px;}
.y10_c00363{bottom:717.510450px;}
.yf_c00363{bottom:751.890450px;}
.ye_c00363{bottom:786.360450px;}
.yd_c00363{bottom:838.740450px;}
.yc_c00363{bottom:873.210450px;}
.yb_c00363{bottom:907.590450px;}
.ya_c00363{bottom:942.060450px;}
.y9_c00363{bottom:985.440450px;}
.y8_c00363{bottom:1037.910450px;}
.y7_c00363{bottom:1072.290450px;}
.y6_c00363{bottom:1106.760450px;}
.y5_c00363{bottom:1141.140450px;}
.y2_c00363{bottom:1173.810450px;}
.y1_c00363{bottom:1196.850450px;}
.h2_c00363{height:47.988281px;}
.h1_c00363{height:50.315273px;}
.h3_c00363{height:56.320312px;}
.h4_c00363{height:60.257812px;}
.h5_c00363{height:60.328125px;}
.h6_c00363{height:75.093750px;}
.h0_c00363{height:1263.000000px;}
.w1_c00363{width:892.500000px;}
.w0_c00363{width:892.830000px;}
.x0_c00363{left:0.000000px;}
.x2_c00363{left:127.620000px;}
.x6_c00363{left:154.440000px;}
.x7_c00363{left:181.170000px;}
.x8_c00363{left:208.440000px;}
.x5_c00363{left:235.620000px;}
.x4_c00363{left:435.240000px;}
.x3_c00363{left:446.490000px;}
.x1_c00363{left:490.770000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.lsa_c00363{letter-spacing:-0.134400pt;}
.ls10_c00363{letter-spacing:-0.057600pt;}
.lsd_c00363{letter-spacing:-0.032000pt;}
.lsc_c00363{letter-spacing:-0.025600pt;}
.ls11_c00363{letter-spacing:-0.019200pt;}
.lse_c00363{letter-spacing:-0.012800pt;}
.lsb_c00363{letter-spacing:-0.006400pt;}
.ls9_c00363{letter-spacing:0.000000pt;}
.ls5_c00363{letter-spacing:0.006400pt;}
.ls12_c00363{letter-spacing:0.012800pt;}
.ls8_c00363{letter-spacing:0.019200pt;}
.lsf_c00363{letter-spacing:0.025600pt;}
.ls4_c00363{letter-spacing:0.032000pt;}
.ls0_c00363{letter-spacing:0.032064pt;}
.ls1_c00363{letter-spacing:0.076800pt;}
.ls2_c00363{letter-spacing:0.128000pt;}
.ls7_c00363{letter-spacing:40.448000pt;}
.ls6_c00363{letter-spacing:57.408000pt;}
.ls3_c00363{letter-spacing:58.688000pt;}
.ws0_c00363{word-spacing:-16.076800pt;}
.ws1_c00363{word-spacing:-0.272544pt;}
.ws9_c00363{word-spacing:-0.006400pt;}
.ws2_c00363{word-spacing:0.000000pt;}
.ws3_c00363{word-spacing:0.006400pt;}
.ws16_c00363{word-spacing:0.012800pt;}
.ws10_c00363{word-spacing:0.115200pt;}
.ws21_c00363{word-spacing:0.288000pt;}
.ws22_c00363{word-spacing:0.300800pt;}
.ws18_c00363{word-spacing:0.896000pt;}
.ws19_c00363{word-spacing:0.979200pt;}
.ws17_c00363{word-spacing:1.017600pt;}
.ws1e_c00363{word-spacing:1.267200pt;}
.ws1d_c00363{word-spacing:1.299200pt;}
.ws1c_c00363{word-spacing:1.312000pt;}
.wsd_c00363{word-spacing:1.600000pt;}
.wsc_c00363{word-spacing:1.657600pt;}
.ws20_c00363{word-spacing:2.515200pt;}
.wse_c00363{word-spacing:2.572800pt;}
.ws1f_c00363{word-spacing:2.592000pt;}
.ws24_c00363{word-spacing:3.571200pt;}
.ws23_c00363{word-spacing:3.622400pt;}
.ws11_c00363{word-spacing:5.433600pt;}
.ws12_c00363{word-spacing:5.452800pt;}
.ws1a_c00363{word-spacing:7.955200pt;}
.ws1b_c00363{word-spacing:8.032000pt;}
.ws8_c00363{word-spacing:8.960000pt;}
.ws7_c00363{word-spacing:8.979200pt;}
.ws4_c00363{word-spacing:11.168000pt;}
.ws5_c00363{word-spacing:11.200000pt;}
.ws14_c00363{word-spacing:13.120000pt;}
.ws15_c00363{word-spacing:13.139200pt;}
.wsf_c00363{word-spacing:13.465600pt;}
.ws6_c00363{word-spacing:14.131200pt;}
.wsb_c00363{word-spacing:15.686400pt;}
.wsa_c00363{word-spacing:15.763200pt;}
.ws13_c00363{word-spacing:17.305600pt;}
._0_c00363{margin-left:-0.908480pt;}
._5_c00363{width:1.024000pt;}
._2_c00363{width:5.760000pt;}
._4_c00363{width:10.240000pt;}
._1_c00363{width:20.416000pt;}
._3_c00363{width:31.040000pt;}
.fs2_c00363{font-size:48.000000pt;}
.fs0_c00363{font-size:53.440000pt;}
.fs1_c00363{font-size:64.000000pt;}
.y0_c00363{bottom:0.000000pt;}
.y3_c00363{bottom:51.067067pt;}
.y4_c00363{bottom:54.587067pt;}
.y1f_c00363{bottom:114.747067pt;}
.y1e_c00363{bottom:145.387067pt;}
.y1d_c00363{bottom:183.947067pt;}
.y1c_c00363{bottom:214.587067pt;}
.y1b_c00363{bottom:245.147067pt;}
.y1a_c00363{bottom:291.787067pt;}
.y19_c00363{bottom:322.347067pt;}
.y18_c00363{bottom:352.987067pt;}
.y17_c00363{bottom:391.547067pt;}
.y16_c00363{bottom:438.187067pt;}
.y15_c00363{bottom:468.747067pt;}
.y14_c00363{bottom:499.387067pt;}
.y13_c00363{bottom:529.947067pt;}
.y12_c00363{bottom:576.587067pt;}
.y11_c00363{bottom:607.147067pt;}
.y10_c00363{bottom:637.787067pt;}
.yf_c00363{bottom:668.347067pt;}
.ye_c00363{bottom:698.987067pt;}
.yd_c00363{bottom:745.547067pt;}
.yc_c00363{bottom:776.187067pt;}
.yb_c00363{bottom:806.747067pt;}
.ya_c00363{bottom:837.387067pt;}
.y9_c00363{bottom:875.947067pt;}
.y8_c00363{bottom:922.587067pt;}
.y7_c00363{bottom:953.147067pt;}
.y6_c00363{bottom:983.787067pt;}
.y5_c00363{bottom:1014.347067pt;}
.y2_c00363{bottom:1043.387067pt;}
.y1_c00363{bottom:1063.867067pt;}
.h2_c00363{height:42.656250pt;}
.h1_c00363{height:44.724687pt;}
.h3_c00363{height:50.062500pt;}
.h4_c00363{height:53.562500pt;}
.h5_c00363{height:53.625000pt;}
.h6_c00363{height:66.750000pt;}
.h0_c00363{height:1122.666667pt;}
.w1_c00363{width:793.333333pt;}
.w0_c00363{width:793.626667pt;}
.x0_c00363{left:0.000000pt;}
.x2_c00363{left:113.440000pt;}
.x6_c00363{left:137.280000pt;}
.x7_c00363{left:161.040000pt;}
.x8_c00363{left:185.280000pt;}
.x5_c00363{left:209.440000pt;}
.x4_c00363{left:386.880000pt;}
.x3_c00363{left:396.880000pt;}
.x1_c00363{left:436.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_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_f51d7ae3e2ae9c23ec670c33.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.100098;font-style:normal;font-weight:normal;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_b697f98b848f47b649a44218.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;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_c00364;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00364;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.281250;font-style:normal;font-weight:normal;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_6f22dc3479550cd77977868a.woff2')format("woff");}.ff5_c00364{font-family:ff5_c00364;line-height:1.102051;font-style:normal;font-weight:normal;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_37fabcd0efaca7056f8ed4ad.woff2')format("woff");}.ff6_c00364{font-family:ff6_c00364;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00364{vertical-align:15.840000px;}
.lsa_c00364{letter-spacing:-0.151200px;}
.ls11_c00364{letter-spacing:-0.072000px;}
.ls13_c00364{letter-spacing:-0.064800px;}
.lsd_c00364{letter-spacing:-0.043200px;}
.lsf_c00364{letter-spacing:-0.036000px;}
.ls15_c00364{letter-spacing:-0.028800px;}
.ls14_c00364{letter-spacing:-0.021600px;}
.lsb_c00364{letter-spacing:-0.014400px;}
.lsc_c00364{letter-spacing:-0.007200px;}
.ls9_c00364{letter-spacing:0.000000px;}
.ls6_c00364{letter-spacing:0.007200px;}
.lse_c00364{letter-spacing:0.014400px;}
.ls10_c00364{letter-spacing:0.021600px;}
.ls2_c00364{letter-spacing:0.028800px;}
.ls8_c00364{letter-spacing:0.043200px;}
.ls0_c00364{letter-spacing:0.048096px;}
.ls12_c00364{letter-spacing:0.086400px;}
.ls4_c00364{letter-spacing:0.144000px;}
.ls3_c00364{letter-spacing:44.064000px;}
.ls5_c00364{letter-spacing:64.584000px;}
.ls7_c00364{letter-spacing:66.024000px;}
.ls1_c00364{letter-spacing:1212.120000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00364{word-spacing:-17.985600px;}
.ws1_c00364{word-spacing:-17.928000px;}
.ws3_c00364{word-spacing:0.000000px;}
.ws18_c00364{word-spacing:0.007200px;}
.ws6_c00364{word-spacing:0.014400px;}
.ws2_c00364{word-spacing:0.042084px;}
.wsd_c00364{word-spacing:0.712800px;}
.ws1e_c00364{word-spacing:2.174400px;}
.ws1f_c00364{word-spacing:2.224800px;}
.ws8_c00364{word-spacing:2.527200px;}
.ws13_c00364{word-spacing:2.858400px;}
.ws12_c00364{word-spacing:2.887200px;}
.wse_c00364{word-spacing:3.240000px;}
.ws20_c00364{word-spacing:3.268800px;}
.ws21_c00364{word-spacing:3.297600px;}
.ws7_c00364{word-spacing:3.974400px;}
.ws17_c00364{word-spacing:6.436800px;}
.ws16_c00364{word-spacing:6.472800px;}
.wsa_c00364{word-spacing:6.552000px;}
.ws9_c00364{word-spacing:6.624000px;}
.ws14_c00364{word-spacing:7.142400px;}
.ws15_c00364{word-spacing:7.243200px;}
.wsf_c00364{word-spacing:7.567200px;}
.ws10_c00364{word-spacing:7.574400px;}
.ws1a_c00364{word-spacing:8.568000px;}
.ws1d_c00364{word-spacing:8.618400px;}
.ws1b_c00364{word-spacing:8.661600px;}
.ws19_c00364{word-spacing:8.704800px;}
.ws1c_c00364{word-spacing:9.388800px;}
.wsc_c00364{word-spacing:11.167200px;}
.wsb_c00364{word-spacing:11.196000px;}
.ws5_c00364{word-spacing:12.254400px;}
.ws4_c00364{word-spacing:12.268800px;}
.ws23_c00364{word-spacing:20.116800px;}
.ws22_c00364{word-spacing:20.304000px;}
.ws24_c00364{word-spacing:20.512800px;}
.ws11_c00364{word-spacing:22.356000px;}
._0_c00364{margin-left:-1.322640px;}
._1_c00364{width:1.008000px;}
.fc0_c00364{color:rgb(0,0,0);}
.fs1_c00364{font-size:54.000000px;}
.fs0_c00364{font-size:60.120000px;}
.fs2_c00364{font-size:72.000000px;}
.y0_c00364{bottom:0.000000px;}
.y3_c00364{bottom:57.450450px;}
.y1d_c00364{bottom:172.560450px;}
.y1c_c00364{bottom:206.940450px;}
.y1b_c00364{bottom:241.410450px;}
.y1a_c00364{bottom:275.790450px;}
.y19_c00364{bottom:310.260450px;}
.y18_c00364{bottom:362.640450px;}
.y17_c00364{bottom:397.110450px;}
.y16_c00364{bottom:431.490450px;}
.y15_c00364{bottom:474.960450px;}
.y14_c00364{bottom:527.340450px;}
.y13_c00364{bottom:561.810450px;}
.y12_c00364{bottom:596.190450px;}
.y11_c00364{bottom:630.660450px;}
.y10_c00364{bottom:665.040450px;}
.yf_c00364{bottom:699.510450px;}
.ye_c00364{bottom:751.890450px;}
.yd_c00364{bottom:786.360450px;}
.yc_c00364{bottom:820.740450px;}
.yb_c00364{bottom:855.210450px;}
.ya_c00364{bottom:907.590450px;}
.y9_c00364{bottom:960.060450px;}
.y8_c00364{bottom:994.440450px;}
.y7_c00364{bottom:1028.910450px;}
.y6_c00364{bottom:1063.290450px;}
.y5_c00364{bottom:1106.760450px;}
.y4_c00364{bottom:1141.140450px;}
.y2_c00364{bottom:1177.860450px;}
.y1_c00364{bottom:1196.850450px;}
.h1_c00364{height:50.315273px;}
.h2_c00364{height:56.320312px;}
.h4_c00364{height:60.257812px;}
.h7_c00364{height:60.328125px;}
.h6_c00364{height:60.890625px;}
.h3_c00364{height:72.160312px;}
.h5_c00364{height:75.093750px;}
.h0_c00364{height:1263.000000px;}
.w1_c00364{width:892.500000px;}
.w0_c00364{width:892.830000px;}
.x0_c00364{left:0.000000px;}
.x1_c00364{left:127.620000px;}
.x5_c00364{left:154.800000px;}
.x4_c00364{left:180.810000px;}
.x3_c00364{left:208.800000px;}
.x2_c00364{left:235.170000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.v1_c00364{vertical-align:14.080000pt;}
.lsa_c00364{letter-spacing:-0.134400pt;}
.ls11_c00364{letter-spacing:-0.064000pt;}
.ls13_c00364{letter-spacing:-0.057600pt;}
.lsd_c00364{letter-spacing:-0.038400pt;}
.lsf_c00364{letter-spacing:-0.032000pt;}
.ls15_c00364{letter-spacing:-0.025600pt;}
.ls14_c00364{letter-spacing:-0.019200pt;}
.lsb_c00364{letter-spacing:-0.012800pt;}
.lsc_c00364{letter-spacing:-0.006400pt;}
.ls9_c00364{letter-spacing:0.000000pt;}
.ls6_c00364{letter-spacing:0.006400pt;}
.lse_c00364{letter-spacing:0.012800pt;}
.ls10_c00364{letter-spacing:0.019200pt;}
.ls2_c00364{letter-spacing:0.025600pt;}
.ls8_c00364{letter-spacing:0.038400pt;}
.ls0_c00364{letter-spacing:0.042752pt;}
.ls12_c00364{letter-spacing:0.076800pt;}
.ls4_c00364{letter-spacing:0.128000pt;}
.ls3_c00364{letter-spacing:39.168000pt;}
.ls5_c00364{letter-spacing:57.408000pt;}
.ls7_c00364{letter-spacing:58.688000pt;}
.ls1_c00364{letter-spacing:1077.440000pt;}
.ws0_c00364{word-spacing:-15.987200pt;}
.ws1_c00364{word-spacing:-15.936000pt;}
.ws3_c00364{word-spacing:0.000000pt;}
.ws18_c00364{word-spacing:0.006400pt;}
.ws6_c00364{word-spacing:0.012800pt;}
.ws2_c00364{word-spacing:0.037408pt;}
.wsd_c00364{word-spacing:0.633600pt;}
.ws1e_c00364{word-spacing:1.932800pt;}
.ws1f_c00364{word-spacing:1.977600pt;}
.ws8_c00364{word-spacing:2.246400pt;}
.ws13_c00364{word-spacing:2.540800pt;}
.ws12_c00364{word-spacing:2.566400pt;}
.wse_c00364{word-spacing:2.880000pt;}
.ws20_c00364{word-spacing:2.905600pt;}
.ws21_c00364{word-spacing:2.931200pt;}
.ws7_c00364{word-spacing:3.532800pt;}
.ws17_c00364{word-spacing:5.721600pt;}
.ws16_c00364{word-spacing:5.753600pt;}
.wsa_c00364{word-spacing:5.824000pt;}
.ws9_c00364{word-spacing:5.888000pt;}
.ws14_c00364{word-spacing:6.348800pt;}
.ws15_c00364{word-spacing:6.438400pt;}
.wsf_c00364{word-spacing:6.726400pt;}
.ws10_c00364{word-spacing:6.732800pt;}
.ws1a_c00364{word-spacing:7.616000pt;}
.ws1d_c00364{word-spacing:7.660800pt;}
.ws1b_c00364{word-spacing:7.699200pt;}
.ws19_c00364{word-spacing:7.737600pt;}
.ws1c_c00364{word-spacing:8.345600pt;}
.wsc_c00364{word-spacing:9.926400pt;}
.wsb_c00364{word-spacing:9.952000pt;}
.ws5_c00364{word-spacing:10.892800pt;}
.ws4_c00364{word-spacing:10.905600pt;}
.ws23_c00364{word-spacing:17.881600pt;}
.ws22_c00364{word-spacing:18.048000pt;}
.ws24_c00364{word-spacing:18.233600pt;}
.ws11_c00364{word-spacing:19.872000pt;}
._0_c00364{margin-left:-1.175680pt;}
._1_c00364{width:0.896000pt;}
.fs1_c00364{font-size:48.000000pt;}
.fs0_c00364{font-size:53.440000pt;}
.fs2_c00364{font-size:64.000000pt;}
.y0_c00364{bottom:0.000000pt;}
.y3_c00364{bottom:51.067067pt;}
.y1d_c00364{bottom:153.387067pt;}
.y1c_c00364{bottom:183.947067pt;}
.y1b_c00364{bottom:214.587067pt;}
.y1a_c00364{bottom:245.147067pt;}
.y19_c00364{bottom:275.787067pt;}
.y18_c00364{bottom:322.347067pt;}
.y17_c00364{bottom:352.987067pt;}
.y16_c00364{bottom:383.547067pt;}
.y15_c00364{bottom:422.187067pt;}
.y14_c00364{bottom:468.747067pt;}
.y13_c00364{bottom:499.387067pt;}
.y12_c00364{bottom:529.947067pt;}
.y11_c00364{bottom:560.587067pt;}
.y10_c00364{bottom:591.147067pt;}
.yf_c00364{bottom:621.787067pt;}
.ye_c00364{bottom:668.347067pt;}
.yd_c00364{bottom:698.987067pt;}
.yc_c00364{bottom:729.547067pt;}
.yb_c00364{bottom:760.187067pt;}
.ya_c00364{bottom:806.747067pt;}
.y9_c00364{bottom:853.387067pt;}
.y8_c00364{bottom:883.947067pt;}
.y7_c00364{bottom:914.587067pt;}
.y6_c00364{bottom:945.147067pt;}
.y5_c00364{bottom:983.787067pt;}
.y4_c00364{bottom:1014.347067pt;}
.y2_c00364{bottom:1046.987067pt;}
.y1_c00364{bottom:1063.867067pt;}
.h1_c00364{height:44.724687pt;}
.h2_c00364{height:50.062500pt;}
.h4_c00364{height:53.562500pt;}
.h7_c00364{height:53.625000pt;}
.h6_c00364{height:54.125000pt;}
.h3_c00364{height:64.142500pt;}
.h5_c00364{height:66.750000pt;}
.h0_c00364{height:1122.666667pt;}
.w1_c00364{width:793.333333pt;}
.w0_c00364{width:793.626667pt;}
.x0_c00364{left:0.000000pt;}
.x1_c00364{left:113.440000pt;}
.x5_c00364{left:137.600000pt;}
.x4_c00364{left:160.720000pt;}
.x3_c00364{left:185.600000pt;}
.x2_c00364{left:209.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7bd1881eb4fac68a0c98ea07.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00365;src:url('chunks/assets/font_e6eccf6c2b6aabb85775be7a.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00365;src:url('chunks/assets/font_c8fdda46eb46125553415f3c.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00365;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00365{font-family:ff5_c00365;line-height:1.281250;font-style: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;}
.lsa_c00365{letter-spacing:-0.151200px;}
.lsd_c00365{letter-spacing:-0.043200px;}
.lsf_c00365{letter-spacing:-0.036000px;}
.lsb_c00365{letter-spacing:-0.028800px;}
.ls11_c00365{letter-spacing:-0.021600px;}
.lsc_c00365{letter-spacing:-0.014400px;}
.lse_c00365{letter-spacing:-0.007200px;}
.ls9_c00365{letter-spacing:0.000000px;}
.ls8_c00365{letter-spacing:0.007200px;}
.ls5_c00365{letter-spacing:0.014400px;}
.ls3_c00365{letter-spacing:0.021600px;}
.ls7_c00365{letter-spacing:0.028800px;}
.ls12_c00365{letter-spacing:0.036000px;}
.ls0_c00365{letter-spacing:0.036072px;}
.ls10_c00365{letter-spacing:0.093600px;}
.ls1_c00365{letter-spacing:0.144000px;}
.ls6_c00365{letter-spacing:44.784000px;}
.ls4_c00365{letter-spacing:45.504000px;}
.ls2_c00365{letter-spacing:66.024000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00365{word-spacing:-18.021600px;}
.ws1_c00365{word-spacing:-0.306612px;}
.ws2_c00365{word-spacing:0.000000px;}
.wsd_c00365{word-spacing:0.007200px;}
.ws27_c00365{word-spacing:0.014400px;}
.wse_c00365{word-spacing:0.021600px;}
.ws1b_c00365{word-spacing:0.050400px;}
.ws11_c00365{word-spacing:1.756800px;}
.ws10_c00365{word-spacing:1.821600px;}
.ws19_c00365{word-spacing:2.131200px;}
.ws14_c00365{word-spacing:2.145600px;}
.ws1a_c00365{word-spacing:2.181600px;}
.ws15_c00365{word-spacing:2.217600px;}
.ws21_c00365{word-spacing:3.844800px;}
.ws22_c00365{word-spacing:3.974400px;}
.ws20_c00365{word-spacing:4.003200px;}
.wsa_c00365{word-spacing:5.378400px;}
.ws1c_c00365{word-spacing:5.400000px;}
.ws9_c00365{word-spacing:5.457600px;}
.ws1e_c00365{word-spacing:5.479200px;}
.ws1d_c00365{word-spacing:5.508000px;}
.wsc_c00365{word-spacing:5.716800px;}
.wsb_c00365{word-spacing:5.731200px;}
.ws23_c00365{word-spacing:7.257600px;}
.ws24_c00365{word-spacing:7.272000px;}
.ws29_c00365{word-spacing:7.567200px;}
.ws28_c00365{word-spacing:7.574400px;}
.ws2a_c00365{word-spacing:7.624800px;}
.ws5_c00365{word-spacing:9.374400px;}
.ws6_c00365{word-spacing:9.403200px;}
.ws18_c00365{word-spacing:10.404000px;}
.ws2e_c00365{word-spacing:10.807200px;}
.ws3_c00365{word-spacing:10.828800px;}
.ws4_c00365{word-spacing:10.850400px;}
.ws2d_c00365{word-spacing:10.915200px;}
.ws2b_c00365{word-spacing:11.872800px;}
.ws2c_c00365{word-spacing:11.880000px;}
.ws25_c00365{word-spacing:12.585600px;}
.ws26_c00365{word-spacing:12.628800px;}
.ws1f_c00365{word-spacing:13.341600px;}
.ws16_c00365{word-spacing:15.904800px;}
.ws17_c00365{word-spacing:15.955200px;}
.wsf_c00365{word-spacing:25.214400px;}
.ws13_c00365{word-spacing:26.287200px;}
.ws12_c00365{word-spacing:26.316000px;}
.ws8_c00365{word-spacing:27.223200px;}
.ws7_c00365{word-spacing:27.374400px;}
._0_c00365{margin-left:-1.022040px;}
._1_c00365{width:1.080000px;}
.fc0_c00365{color:rgb(0,0,0);}
.fs2_c00365{font-size:54.000000px;}
.fs0_c00365{font-size:60.120000px;}
.fs1_c00365{font-size:72.000000px;}
.y0_c00365{bottom:0.000000px;}
.y3_c00365{bottom:57.450450px;}
.y4_c00365{bottom:61.410450px;}
.y20_c00365{bottom:112.710450px;}
.y1f_c00365{bottom:147.090450px;}
.y1e_c00365{bottom:181.560450px;}
.y1d_c00365{bottom:215.940450px;}
.y1c_c00365{bottom:268.410450px;}
.y1b_c00365{bottom:302.790450px;}
.y1a_c00365{bottom:337.260450px;}
.y19_c00365{bottom:371.640450px;}
.y18_c00365{bottom:424.110450px;}
.y17_c00365{bottom:458.490450px;}
.y16_c00365{bottom:492.960450px;}
.y15_c00365{bottom:545.340450px;}
.y14_c00365{bottom:579.810450px;}
.y13_c00365{bottom:614.190450px;}
.y12_c00365{bottom:657.660450px;}
.y11_c00365{bottom:692.040450px;}
.y10_c00365{bottom:726.510450px;}
.yf_c00365{bottom:760.890450px;}
.ye_c00365{bottom:795.360450px;}
.yd_c00365{bottom:829.740450px;}
.yc_c00365{bottom:873.210450px;}
.yb_c00365{bottom:916.590450px;}
.ya_c00365{bottom:969.060450px;}
.y9_c00365{bottom:1003.440450px;}
.y8_c00365{bottom:1037.910450px;}
.y7_c00365{bottom:1072.290450px;}
.y6_c00365{bottom:1106.760450px;}
.y5_c00365{bottom:1141.140450px;}
.y2_c00365{bottom:1173.810450px;}
.y1_c00365{bottom:1196.850450px;}
.h2_c00365{height:47.988281px;}
.h1_c00365{height:50.315273px;}
.h3_c00365{height:56.320312px;}
.h5_c00365{height:60.257812px;}
.h6_c00365{height:60.328125px;}
.h4_c00365{height:75.093750px;}
.h0_c00365{height:1263.000000px;}
.w1_c00365{width:892.500000px;}
.w0_c00365{width:892.830000px;}
.x0_c00365{left:0.000000px;}
.x2_c00365{left:127.620000px;}
.x5_c00365{left:154.440000px;}
.x6_c00365{left:181.170000px;}
.x7_c00365{left:208.440000px;}
.x8_c00365{left:235.170000px;}
.x4_c00365{left:435.240000px;}
.x3_c00365{left:446.490000px;}
.x1_c00365{left:490.770000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.lsa_c00365{letter-spacing:-0.134400pt;}
.lsd_c00365{letter-spacing:-0.038400pt;}
.lsf_c00365{letter-spacing:-0.032000pt;}
.lsb_c00365{letter-spacing:-0.025600pt;}
.ls11_c00365{letter-spacing:-0.019200pt;}
.lsc_c00365{letter-spacing:-0.012800pt;}
.lse_c00365{letter-spacing:-0.006400pt;}
.ls9_c00365{letter-spacing:0.000000pt;}
.ls8_c00365{letter-spacing:0.006400pt;}
.ls5_c00365{letter-spacing:0.012800pt;}
.ls3_c00365{letter-spacing:0.019200pt;}
.ls7_c00365{letter-spacing:0.025600pt;}
.ls12_c00365{letter-spacing:0.032000pt;}
.ls0_c00365{letter-spacing:0.032064pt;}
.ls10_c00365{letter-spacing:0.083200pt;}
.ls1_c00365{letter-spacing:0.128000pt;}
.ls6_c00365{letter-spacing:39.808000pt;}
.ls4_c00365{letter-spacing:40.448000pt;}
.ls2_c00365{letter-spacing:58.688000pt;}
.ws0_c00365{word-spacing:-16.019200pt;}
.ws1_c00365{word-spacing:-0.272544pt;}
.ws2_c00365{word-spacing:0.000000pt;}
.wsd_c00365{word-spacing:0.006400pt;}
.ws27_c00365{word-spacing:0.012800pt;}
.wse_c00365{word-spacing:0.019200pt;}
.ws1b_c00365{word-spacing:0.044800pt;}
.ws11_c00365{word-spacing:1.561600pt;}
.ws10_c00365{word-spacing:1.619200pt;}
.ws19_c00365{word-spacing:1.894400pt;}
.ws14_c00365{word-spacing:1.907200pt;}
.ws1a_c00365{word-spacing:1.939200pt;}
.ws15_c00365{word-spacing:1.971200pt;}
.ws21_c00365{word-spacing:3.417600pt;}
.ws22_c00365{word-spacing:3.532800pt;}
.ws20_c00365{word-spacing:3.558400pt;}
.wsa_c00365{word-spacing:4.780800pt;}
.ws1c_c00365{word-spacing:4.800000pt;}
.ws9_c00365{word-spacing:4.851200pt;}
.ws1e_c00365{word-spacing:4.870400pt;}
.ws1d_c00365{word-spacing:4.896000pt;}
.wsc_c00365{word-spacing:5.081600pt;}
.wsb_c00365{word-spacing:5.094400pt;}
.ws23_c00365{word-spacing:6.451200pt;}
.ws24_c00365{word-spacing:6.464000pt;}
.ws29_c00365{word-spacing:6.726400pt;}
.ws28_c00365{word-spacing:6.732800pt;}
.ws2a_c00365{word-spacing:6.777600pt;}
.ws5_c00365{word-spacing:8.332800pt;}
.ws6_c00365{word-spacing:8.358400pt;}
.ws18_c00365{word-spacing:9.248000pt;}
.ws2e_c00365{word-spacing:9.606400pt;}
.ws3_c00365{word-spacing:9.625600pt;}
.ws4_c00365{word-spacing:9.644800pt;}
.ws2d_c00365{word-spacing:9.702400pt;}
.ws2b_c00365{word-spacing:10.553600pt;}
.ws2c_c00365{word-spacing:10.560000pt;}
.ws25_c00365{word-spacing:11.187200pt;}
.ws26_c00365{word-spacing:11.225600pt;}
.ws1f_c00365{word-spacing:11.859200pt;}
.ws16_c00365{word-spacing:14.137600pt;}
.ws17_c00365{word-spacing:14.182400pt;}
.wsf_c00365{word-spacing:22.412800pt;}
.ws13_c00365{word-spacing:23.366400pt;}
.ws12_c00365{word-spacing:23.392000pt;}
.ws8_c00365{word-spacing:24.198400pt;}
.ws7_c00365{word-spacing:24.332800pt;}
._0_c00365{margin-left:-0.908480pt;}
._1_c00365{width:0.960000pt;}
.fs2_c00365{font-size:48.000000pt;}
.fs0_c00365{font-size:53.440000pt;}
.fs1_c00365{font-size:64.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y3_c00365{bottom:51.067067pt;}
.y4_c00365{bottom:54.587067pt;}
.y20_c00365{bottom:100.187067pt;}
.y1f_c00365{bottom:130.747067pt;}
.y1e_c00365{bottom:161.387067pt;}
.y1d_c00365{bottom:191.947067pt;}
.y1c_c00365{bottom:238.587067pt;}
.y1b_c00365{bottom:269.147067pt;}
.y1a_c00365{bottom:299.787067pt;}
.y19_c00365{bottom:330.347067pt;}
.y18_c00365{bottom:376.987067pt;}
.y17_c00365{bottom:407.547067pt;}
.y16_c00365{bottom:438.187067pt;}
.y15_c00365{bottom:484.747067pt;}
.y14_c00365{bottom:515.387067pt;}
.y13_c00365{bottom:545.947067pt;}
.y12_c00365{bottom:584.587067pt;}
.y11_c00365{bottom:615.147067pt;}
.y10_c00365{bottom:645.787067pt;}
.yf_c00365{bottom:676.347067pt;}
.ye_c00365{bottom:706.987067pt;}
.yd_c00365{bottom:737.547067pt;}
.yc_c00365{bottom:776.187067pt;}
.yb_c00365{bottom:814.747067pt;}
.ya_c00365{bottom:861.387067pt;}
.y9_c00365{bottom:891.947067pt;}
.y8_c00365{bottom:922.587067pt;}
.y7_c00365{bottom:953.147067pt;}
.y6_c00365{bottom:983.787067pt;}
.y5_c00365{bottom:1014.347067pt;}
.y2_c00365{bottom:1043.387067pt;}
.y1_c00365{bottom:1063.867067pt;}
.h2_c00365{height:42.656250pt;}
.h1_c00365{height:44.724687pt;}
.h3_c00365{height:50.062500pt;}
.h5_c00365{height:53.562500pt;}
.h6_c00365{height:53.625000pt;}
.h4_c00365{height:66.750000pt;}
.h0_c00365{height:1122.666667pt;}
.w1_c00365{width:793.333333pt;}
.w0_c00365{width:793.626667pt;}
.x0_c00365{left:0.000000pt;}
.x2_c00365{left:113.440000pt;}
.x5_c00365{left:137.280000pt;}
.x6_c00365{left:161.040000pt;}
.x7_c00365{left:185.280000pt;}
.x8_c00365{left:209.040000pt;}
.x4_c00365{left:386.880000pt;}
.x3_c00365{left:396.880000pt;}
.x1_c00365{left:436.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_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_6ed9dbd7ef918e64f1a9bdd2.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.100098;font-style:normal;font-weight:normal;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_c85a58de9602f57356c99fe4.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;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_c00366;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00366;src:url('chunks/assets/font_643904f42e5d1df0a1bf4892.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00366{vertical-align:15.840000px;}
.lsa_c00366{letter-spacing:-0.151200px;}
.lse_c00366{letter-spacing:-0.057600px;}
.ls12_c00366{letter-spacing:-0.043200px;}
.lsc_c00366{letter-spacing:-0.036000px;}
.lsf_c00366{letter-spacing:-0.028800px;}
.lsb_c00366{letter-spacing:-0.021600px;}
.lsd_c00366{letter-spacing:-0.014400px;}
.ls11_c00366{letter-spacing:-0.007200px;}
.ls9_c00366{letter-spacing:0.000000px;}
.ls4_c00366{letter-spacing:0.007200px;}
.ls6_c00366{letter-spacing:0.014400px;}
.ls7_c00366{letter-spacing:0.021600px;}
.ls8_c00366{letter-spacing:0.028800px;}
.ls0_c00366{letter-spacing:0.048096px;}
.ls5_c00366{letter-spacing:0.050400px;}
.ls10_c00366{letter-spacing:0.086400px;}
.ls2_c00366{letter-spacing:0.144000px;}
.ls3_c00366{letter-spacing:66.024000px;}
.ls1_c00366{letter-spacing:1212.120000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00366{word-spacing:-18.050400px;}
.ws7_c00366{word-spacing:-0.007200px;}
.ws2_c00366{word-spacing:0.000000px;}
.ws12_c00366{word-spacing:0.028800px;}
.ws1_c00366{word-spacing:0.042084px;}
.ws29_c00366{word-spacing:0.050400px;}
.ws2c_c00366{word-spacing:0.144000px;}
.ws13_c00366{word-spacing:0.727200px;}
.ws14_c00366{word-spacing:0.734400px;}
.ws8_c00366{word-spacing:1.072800px;}
.ws9_c00366{word-spacing:1.130400px;}
.ws1e_c00366{word-spacing:1.382400px;}
.ws1f_c00366{word-spacing:1.454400px;}
.ws1d_c00366{word-spacing:4.320000px;}
.ws1c_c00366{word-spacing:4.327200px;}
.ws25_c00366{word-spacing:5.047200px;}
.ws26_c00366{word-spacing:5.054400px;}
.ws18_c00366{word-spacing:6.148800px;}
.ws17_c00366{word-spacing:6.199200px;}
.wse_c00366{word-spacing:6.494400px;}
.wsd_c00366{word-spacing:6.501600px;}
.wsf_c00366{word-spacing:7.214400px;}
.ws2f_c00366{word-spacing:7.236000px;}
.ws6_c00366{word-spacing:9.244800px;}
.ws5_c00366{word-spacing:9.396000px;}
.ws1a_c00366{word-spacing:11.505600px;}
.ws1b_c00366{word-spacing:11.512800px;}
.ws11_c00366{word-spacing:12.650400px;}
.ws10_c00366{word-spacing:12.801600px;}
.ws2d_c00366{word-spacing:13.305600px;}
.ws2e_c00366{word-spacing:13.356000px;}
.ws22_c00366{word-spacing:14.371200px;}
.ws24_c00366{word-spacing:14.407200px;}
.ws23_c00366{word-spacing:14.436000px;}
.ws2b_c00366{word-spacing:15.220800px;}
.ws2a_c00366{word-spacing:15.228000px;}
.ws20_c00366{word-spacing:15.494400px;}
.ws21_c00366{word-spacing:15.508800px;}
.ws28_c00366{word-spacing:16.192800px;}
.ws27_c00366{word-spacing:16.293600px;}
.wsc_c00366{word-spacing:17.546400px;}
.wsa_c00366{word-spacing:17.654400px;}
.wsb_c00366{word-spacing:17.697600px;}
.ws3_c00366{word-spacing:20.512800px;}
.ws4_c00366{word-spacing:20.541600px;}
.ws19_c00366{word-spacing:21.981600px;}
.ws15_c00366{word-spacing:31.305600px;}
.ws16_c00366{word-spacing:31.384800px;}
._0_c00366{margin-left:-1.322640px;}
._1_c00366{width:1.080000px;}
.fc0_c00366{color:rgb(0,0,0);}
.fs1_c00366{font-size:54.000000px;}
.fs0_c00366{font-size:60.120000px;}
.fs2_c00366{font-size:72.000000px;}
.y0_c00366{bottom:0.000000px;}
.y3_c00366{bottom:57.450450px;}
.y1f_c00366{bottom:112.710450px;}
.y1e_c00366{bottom:147.090450px;}
.y1d_c00366{bottom:199.560450px;}
.y1c_c00366{bottom:233.940450px;}
.y1b_c00366{bottom:268.410450px;}
.y1a_c00366{bottom:302.790450px;}
.y19_c00366{bottom:337.260450px;}
.y18_c00366{bottom:371.640450px;}
.y17_c00366{bottom:424.110450px;}
.y16_c00366{bottom:458.490450px;}
.y15_c00366{bottom:492.960450px;}
.y14_c00366{bottom:527.340450px;}
.y13_c00366{bottom:561.810450px;}
.y12_c00366{bottom:614.190450px;}
.y11_c00366{bottom:648.660450px;}
.y10_c00366{bottom:683.040450px;}
.yf_c00366{bottom:717.510450px;}
.ye_c00366{bottom:751.890450px;}
.yd_c00366{bottom:795.360450px;}
.yc_c00366{bottom:847.740450px;}
.yb_c00366{bottom:882.210450px;}
.ya_c00366{bottom:916.590450px;}
.y9_c00366{bottom:951.060450px;}
.y8_c00366{bottom:985.440450px;}
.y7_c00366{bottom:1019.910450px;}
.y6_c00366{bottom:1072.290450px;}
.y5_c00366{bottom:1106.760450px;}
.y4_c00366{bottom:1141.140450px;}
.y2_c00366{bottom:1177.860450px;}
.y1_c00366{bottom:1196.850450px;}
.h1_c00366{height:50.315273px;}
.h2_c00366{height:56.320312px;}
.h5_c00366{height:60.257812px;}
.h6_c00366{height:60.328125px;}
.h3_c00366{height:72.160312px;}
.h4_c00366{height:75.093750px;}
.h0_c00366{height:1263.000000px;}
.w1_c00366{width:892.500000px;}
.w0_c00366{width:892.830000px;}
.x0_c00366{left:0.000000px;}
.x1_c00366{left:127.620000px;}
.x2_c00366{left:154.440000px;}
.x3_c00366{left:181.170000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.v1_c00366{vertical-align:14.080000pt;}
.lsa_c00366{letter-spacing:-0.134400pt;}
.lse_c00366{letter-spacing:-0.051200pt;}
.ls12_c00366{letter-spacing:-0.038400pt;}
.lsc_c00366{letter-spacing:-0.032000pt;}
.lsf_c00366{letter-spacing:-0.025600pt;}
.lsb_c00366{letter-spacing:-0.019200pt;}
.lsd_c00366{letter-spacing:-0.012800pt;}
.ls11_c00366{letter-spacing:-0.006400pt;}
.ls9_c00366{letter-spacing:0.000000pt;}
.ls4_c00366{letter-spacing:0.006400pt;}
.ls6_c00366{letter-spacing:0.012800pt;}
.ls7_c00366{letter-spacing:0.019200pt;}
.ls8_c00366{letter-spacing:0.025600pt;}
.ls0_c00366{letter-spacing:0.042752pt;}
.ls5_c00366{letter-spacing:0.044800pt;}
.ls10_c00366{letter-spacing:0.076800pt;}
.ls2_c00366{letter-spacing:0.128000pt;}
.ls3_c00366{letter-spacing:58.688000pt;}
.ls1_c00366{letter-spacing:1077.440000pt;}
.ws0_c00366{word-spacing:-16.044800pt;}
.ws7_c00366{word-spacing:-0.006400pt;}
.ws2_c00366{word-spacing:0.000000pt;}
.ws12_c00366{word-spacing:0.025600pt;}
.ws1_c00366{word-spacing:0.037408pt;}
.ws29_c00366{word-spacing:0.044800pt;}
.ws2c_c00366{word-spacing:0.128000pt;}
.ws13_c00366{word-spacing:0.646400pt;}
.ws14_c00366{word-spacing:0.652800pt;}
.ws8_c00366{word-spacing:0.953600pt;}
.ws9_c00366{word-spacing:1.004800pt;}
.ws1e_c00366{word-spacing:1.228800pt;}
.ws1f_c00366{word-spacing:1.292800pt;}
.ws1d_c00366{word-spacing:3.840000pt;}
.ws1c_c00366{word-spacing:3.846400pt;}
.ws25_c00366{word-spacing:4.486400pt;}
.ws26_c00366{word-spacing:4.492800pt;}
.ws18_c00366{word-spacing:5.465600pt;}
.ws17_c00366{word-spacing:5.510400pt;}
.wse_c00366{word-spacing:5.772800pt;}
.wsd_c00366{word-spacing:5.779200pt;}
.wsf_c00366{word-spacing:6.412800pt;}
.ws2f_c00366{word-spacing:6.432000pt;}
.ws6_c00366{word-spacing:8.217600pt;}
.ws5_c00366{word-spacing:8.352000pt;}
.ws1a_c00366{word-spacing:10.227200pt;}
.ws1b_c00366{word-spacing:10.233600pt;}
.ws11_c00366{word-spacing:11.244800pt;}
.ws10_c00366{word-spacing:11.379200pt;}
.ws2d_c00366{word-spacing:11.827200pt;}
.ws2e_c00366{word-spacing:11.872000pt;}
.ws22_c00366{word-spacing:12.774400pt;}
.ws24_c00366{word-spacing:12.806400pt;}
.ws23_c00366{word-spacing:12.832000pt;}
.ws2b_c00366{word-spacing:13.529600pt;}
.ws2a_c00366{word-spacing:13.536000pt;}
.ws20_c00366{word-spacing:13.772800pt;}
.ws21_c00366{word-spacing:13.785600pt;}
.ws28_c00366{word-spacing:14.393600pt;}
.ws27_c00366{word-spacing:14.483200pt;}
.wsc_c00366{word-spacing:15.596800pt;}
.wsa_c00366{word-spacing:15.692800pt;}
.wsb_c00366{word-spacing:15.731200pt;}
.ws3_c00366{word-spacing:18.233600pt;}
.ws4_c00366{word-spacing:18.259200pt;}
.ws19_c00366{word-spacing:19.539200pt;}
.ws15_c00366{word-spacing:27.827200pt;}
.ws16_c00366{word-spacing:27.897600pt;}
._0_c00366{margin-left:-1.175680pt;}
._1_c00366{width:0.960000pt;}
.fs1_c00366{font-size:48.000000pt;}
.fs0_c00366{font-size:53.440000pt;}
.fs2_c00366{font-size:64.000000pt;}
.y0_c00366{bottom:0.000000pt;}
.y3_c00366{bottom:51.067067pt;}
.y1f_c00366{bottom:100.187067pt;}
.y1e_c00366{bottom:130.747067pt;}
.y1d_c00366{bottom:177.387067pt;}
.y1c_c00366{bottom:207.947067pt;}
.y1b_c00366{bottom:238.587067pt;}
.y1a_c00366{bottom:269.147067pt;}
.y19_c00366{bottom:299.787067pt;}
.y18_c00366{bottom:330.347067pt;}
.y17_c00366{bottom:376.987067pt;}
.y16_c00366{bottom:407.547067pt;}
.y15_c00366{bottom:438.187067pt;}
.y14_c00366{bottom:468.747067pt;}
.y13_c00366{bottom:499.387067pt;}
.y12_c00366{bottom:545.947067pt;}
.y11_c00366{bottom:576.587067pt;}
.y10_c00366{bottom:607.147067pt;}
.yf_c00366{bottom:637.787067pt;}
.ye_c00366{bottom:668.347067pt;}
.yd_c00366{bottom:706.987067pt;}
.yc_c00366{bottom:753.547067pt;}
.yb_c00366{bottom:784.187067pt;}
.ya_c00366{bottom:814.747067pt;}
.y9_c00366{bottom:845.387067pt;}
.y8_c00366{bottom:875.947067pt;}
.y7_c00366{bottom:906.587067pt;}
.y6_c00366{bottom:953.147067pt;}
.y5_c00366{bottom:983.787067pt;}
.y4_c00366{bottom:1014.347067pt;}
.y2_c00366{bottom:1046.987067pt;}
.y1_c00366{bottom:1063.867067pt;}
.h1_c00366{height:44.724687pt;}
.h2_c00366{height:50.062500pt;}
.h5_c00366{height:53.562500pt;}
.h6_c00366{height:53.625000pt;}
.h3_c00366{height:64.142500pt;}
.h4_c00366{height:66.750000pt;}
.h0_c00366{height:1122.666667pt;}
.w1_c00366{width:793.333333pt;}
.w0_c00366{width:793.626667pt;}
.x0_c00366{left:0.000000pt;}
.x1_c00366{left:113.440000pt;}
.x2_c00366{left:137.280000pt;}
.x3_c00366{left:161.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5f5bbda2d5755445b03e62fd.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_21fec7db61472081885fb3b0.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00367;src:url('chunks/assets/font_57686fd404803e2357012bab.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00367;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;line-height:1.281250;font-style: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;}
.lsa_c00367{letter-spacing:-0.151200px;}
.lse_c00367{letter-spacing:-0.036000px;}
.lsd_c00367{letter-spacing:-0.028800px;}
.lsc_c00367{letter-spacing:-0.021600px;}
.lsb_c00367{letter-spacing:-0.014400px;}
.lsf_c00367{letter-spacing:-0.007200px;}
.ls9_c00367{letter-spacing:0.000000px;}
.ls7_c00367{letter-spacing:0.007200px;}
.ls11_c00367{letter-spacing:0.014400px;}
.ls4_c00367{letter-spacing:0.021600px;}
.ls3_c00367{letter-spacing:0.036000px;}
.ls0_c00367{letter-spacing:0.036072px;}
.ls8_c00367{letter-spacing:0.050400px;}
.ls10_c00367{letter-spacing:0.086400px;}
.ls1_c00367{letter-spacing:0.144000px;}
.ls6_c00367{letter-spacing:44.784000px;}
.ls5_c00367{letter-spacing:45.504000px;}
.ls2_c00367{letter-spacing:66.024000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00367{word-spacing:-17.992800px;}
.ws1_c00367{word-spacing:-0.306612px;}
.wsd_c00367{word-spacing:-0.007200px;}
.ws2_c00367{word-spacing:0.000000px;}
.ws28_c00367{word-spacing:0.007200px;}
.ws13_c00367{word-spacing:0.021600px;}
.ws18_c00367{word-spacing:0.043200px;}
.ws22_c00367{word-spacing:0.057600px;}
.ws29_c00367{word-spacing:0.079200px;}
.ws5_c00367{word-spacing:0.093600px;}
.wsc_c00367{word-spacing:0.331200px;}
.wsb_c00367{word-spacing:0.396000px;}
.ws1d_c00367{word-spacing:0.734400px;}
.ws1e_c00367{word-spacing:0.748800px;}
.ws23_c00367{word-spacing:1.440000px;}
.ws25_c00367{word-spacing:1.497600px;}
.ws24_c00367{word-spacing:1.519200px;}
.ws4_c00367{word-spacing:1.764000px;}
.ws3_c00367{word-spacing:1.872000px;}
.ws27_c00367{word-spacing:2.836800px;}
.ws26_c00367{word-spacing:2.858400px;}
.ws10_c00367{word-spacing:3.960000px;}
.ws11_c00367{word-spacing:4.089600px;}
.wsf_c00367{word-spacing:5.018400px;}
.wse_c00367{word-spacing:5.040000px;}
.ws1c_c00367{word-spacing:5.392800px;}
.ws1b_c00367{word-spacing:5.536800px;}
.ws17_c00367{word-spacing:6.134400px;}
.ws21_c00367{word-spacing:7.567200px;}
.wsa_c00367{word-spacing:10.756800px;}
.ws9_c00367{word-spacing:10.821600px;}
.ws14_c00367{word-spacing:11.167200px;}
.ws16_c00367{word-spacing:12.981600px;}
.ws15_c00367{word-spacing:12.996000px;}
.ws1a_c00367{word-spacing:21.967200px;}
.ws19_c00367{word-spacing:22.046400px;}
.ws12_c00367{word-spacing:22.658400px;}
.ws1f_c00367{word-spacing:23.709600px;}
.ws20_c00367{word-spacing:23.796000px;}
.ws6_c00367{word-spacing:35.964000px;}
.ws8_c00367{word-spacing:36.028800px;}
.ws7_c00367{word-spacing:36.064800px;}
._0_c00367{margin-left:-1.022040px;}
._1_c00367{width:1.152000px;}
.fc0_c00367{color:rgb(0,0,0);}
.fs2_c00367{font-size:54.000000px;}
.fs0_c00367{font-size:60.120000px;}
.fs1_c00367{font-size:72.000000px;}
.y0_c00367{bottom:0.000000px;}
.y3_c00367{bottom:57.450450px;}
.y4_c00367{bottom:61.410450px;}
.y1f_c00367{bottom:129.090450px;}
.y1e_c00367{bottom:163.560450px;}
.y1d_c00367{bottom:197.940450px;}
.y1c_c00367{bottom:250.410450px;}
.y1b_c00367{bottom:284.790450px;}
.y1a_c00367{bottom:319.260450px;}
.y19_c00367{bottom:371.640450px;}
.y18_c00367{bottom:406.110450px;}
.y17_c00367{bottom:440.490450px;}
.y16_c00367{bottom:474.960450px;}
.y15_c00367{bottom:509.340450px;}
.y14_c00367{bottom:552.810450px;}
.y13_c00367{bottom:605.190450px;}
.y12_c00367{bottom:639.660450px;}
.y11_c00367{bottom:674.040450px;}
.y10_c00367{bottom:708.510450px;}
.yf_c00367{bottom:751.890450px;}
.ye_c00367{bottom:786.360450px;}
.yd_c00367{bottom:820.740450px;}
.yc_c00367{bottom:864.210450px;}
.yb_c00367{bottom:898.590450px;}
.ya_c00367{bottom:951.060450px;}
.y9_c00367{bottom:985.440450px;}
.y8_c00367{bottom:1019.910450px;}
.y7_c00367{bottom:1054.290450px;}
.y6_c00367{bottom:1106.760450px;}
.y5_c00367{bottom:1141.140450px;}
.y2_c00367{bottom:1173.810450px;}
.y1_c00367{bottom:1196.850450px;}
.h2_c00367{height:47.988281px;}
.h1_c00367{height:50.315273px;}
.h3_c00367{height:56.320312px;}
.h4_c00367{height:60.257812px;}
.h6_c00367{height:60.328125px;}
.h5_c00367{height:75.093750px;}
.h0_c00367{height:1263.000000px;}
.w1_c00367{width:892.500000px;}
.w0_c00367{width:892.830000px;}
.x0_c00367{left:0.000000px;}
.x2_c00367{left:127.620000px;}
.x6_c00367{left:154.440000px;}
.x5_c00367{left:181.170000px;}
.x7_c00367{left:208.440000px;}
.x8_c00367{left:235.170000px;}
.x4_c00367{left:435.240000px;}
.x3_c00367{left:446.490000px;}
.x1_c00367{left:490.770000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.lsa_c00367{letter-spacing:-0.134400pt;}
.lse_c00367{letter-spacing:-0.032000pt;}
.lsd_c00367{letter-spacing:-0.025600pt;}
.lsc_c00367{letter-spacing:-0.019200pt;}
.lsb_c00367{letter-spacing:-0.012800pt;}
.lsf_c00367{letter-spacing:-0.006400pt;}
.ls9_c00367{letter-spacing:0.000000pt;}
.ls7_c00367{letter-spacing:0.006400pt;}
.ls11_c00367{letter-spacing:0.012800pt;}
.ls4_c00367{letter-spacing:0.019200pt;}
.ls3_c00367{letter-spacing:0.032000pt;}
.ls0_c00367{letter-spacing:0.032064pt;}
.ls8_c00367{letter-spacing:0.044800pt;}
.ls10_c00367{letter-spacing:0.076800pt;}
.ls1_c00367{letter-spacing:0.128000pt;}
.ls6_c00367{letter-spacing:39.808000pt;}
.ls5_c00367{letter-spacing:40.448000pt;}
.ls2_c00367{letter-spacing:58.688000pt;}
.ws0_c00367{word-spacing:-15.993600pt;}
.ws1_c00367{word-spacing:-0.272544pt;}
.wsd_c00367{word-spacing:-0.006400pt;}
.ws2_c00367{word-spacing:0.000000pt;}
.ws28_c00367{word-spacing:0.006400pt;}
.ws13_c00367{word-spacing:0.019200pt;}
.ws18_c00367{word-spacing:0.038400pt;}
.ws22_c00367{word-spacing:0.051200pt;}
.ws29_c00367{word-spacing:0.070400pt;}
.ws5_c00367{word-spacing:0.083200pt;}
.wsc_c00367{word-spacing:0.294400pt;}
.wsb_c00367{word-spacing:0.352000pt;}
.ws1d_c00367{word-spacing:0.652800pt;}
.ws1e_c00367{word-spacing:0.665600pt;}
.ws23_c00367{word-spacing:1.280000pt;}
.ws25_c00367{word-spacing:1.331200pt;}
.ws24_c00367{word-spacing:1.350400pt;}
.ws4_c00367{word-spacing:1.568000pt;}
.ws3_c00367{word-spacing:1.664000pt;}
.ws27_c00367{word-spacing:2.521600pt;}
.ws26_c00367{word-spacing:2.540800pt;}
.ws10_c00367{word-spacing:3.520000pt;}
.ws11_c00367{word-spacing:3.635200pt;}
.wsf_c00367{word-spacing:4.460800pt;}
.wse_c00367{word-spacing:4.480000pt;}
.ws1c_c00367{word-spacing:4.793600pt;}
.ws1b_c00367{word-spacing:4.921600pt;}
.ws17_c00367{word-spacing:5.452800pt;}
.ws21_c00367{word-spacing:6.726400pt;}
.wsa_c00367{word-spacing:9.561600pt;}
.ws9_c00367{word-spacing:9.619200pt;}
.ws14_c00367{word-spacing:9.926400pt;}
.ws16_c00367{word-spacing:11.539200pt;}
.ws15_c00367{word-spacing:11.552000pt;}
.ws1a_c00367{word-spacing:19.526400pt;}
.ws19_c00367{word-spacing:19.596800pt;}
.ws12_c00367{word-spacing:20.140800pt;}
.ws1f_c00367{word-spacing:21.075200pt;}
.ws20_c00367{word-spacing:21.152000pt;}
.ws6_c00367{word-spacing:31.968000pt;}
.ws8_c00367{word-spacing:32.025600pt;}
.ws7_c00367{word-spacing:32.057600pt;}
._0_c00367{margin-left:-0.908480pt;}
._1_c00367{width:1.024000pt;}
.fs2_c00367{font-size:48.000000pt;}
.fs0_c00367{font-size:53.440000pt;}
.fs1_c00367{font-size:64.000000pt;}
.y0_c00367{bottom:0.000000pt;}
.y3_c00367{bottom:51.067067pt;}
.y4_c00367{bottom:54.587067pt;}
.y1f_c00367{bottom:114.747067pt;}
.y1e_c00367{bottom:145.387067pt;}
.y1d_c00367{bottom:175.947067pt;}
.y1c_c00367{bottom:222.587067pt;}
.y1b_c00367{bottom:253.147067pt;}
.y1a_c00367{bottom:283.787067pt;}
.y19_c00367{bottom:330.347067pt;}
.y18_c00367{bottom:360.987067pt;}
.y17_c00367{bottom:391.547067pt;}
.y16_c00367{bottom:422.187067pt;}
.y15_c00367{bottom:452.747067pt;}
.y14_c00367{bottom:491.387067pt;}
.y13_c00367{bottom:537.947067pt;}
.y12_c00367{bottom:568.587067pt;}
.y11_c00367{bottom:599.147067pt;}
.y10_c00367{bottom:629.787067pt;}
.yf_c00367{bottom:668.347067pt;}
.ye_c00367{bottom:698.987067pt;}
.yd_c00367{bottom:729.547067pt;}
.yc_c00367{bottom:768.187067pt;}
.yb_c00367{bottom:798.747067pt;}
.ya_c00367{bottom:845.387067pt;}
.y9_c00367{bottom:875.947067pt;}
.y8_c00367{bottom:906.587067pt;}
.y7_c00367{bottom:937.147067pt;}
.y6_c00367{bottom:983.787067pt;}
.y5_c00367{bottom:1014.347067pt;}
.y2_c00367{bottom:1043.387067pt;}
.y1_c00367{bottom:1063.867067pt;}
.h2_c00367{height:42.656250pt;}
.h1_c00367{height:44.724687pt;}
.h3_c00367{height:50.062500pt;}
.h4_c00367{height:53.562500pt;}
.h6_c00367{height:53.625000pt;}
.h5_c00367{height:66.750000pt;}
.h0_c00367{height:1122.666667pt;}
.w1_c00367{width:793.333333pt;}
.w0_c00367{width:793.626667pt;}
.x0_c00367{left:0.000000pt;}
.x2_c00367{left:113.440000pt;}
.x6_c00367{left:137.280000pt;}
.x5_c00367{left:161.040000pt;}
.x7_c00367{left:185.280000pt;}
.x8_c00367{left:209.040000pt;}
.x4_c00367{left:386.880000pt;}
.x3_c00367{left:396.880000pt;}
.x1_c00367{left:436.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_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_fbee4d00099333de2fc7a7b9.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.100098;font-style:normal;font-weight:normal;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_21fec7db61472081885fb3b0.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;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_c00368;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00368;src:url('chunks/assets/font_a61b9c938f51ca761ff2b17c.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00368;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:1.281250;font-style: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;}
.v1_c00368{vertical-align:15.840000px;}
.lsa_c00368{letter-spacing:-0.151200px;}
.ls10_c00368{letter-spacing:-0.036000px;}
.lsd_c00368{letter-spacing:-0.028800px;}
.lse_c00368{letter-spacing:-0.021600px;}
.lsb_c00368{letter-spacing:-0.014400px;}
.lsc_c00368{letter-spacing:-0.007200px;}
.ls9_c00368{letter-spacing:0.000000px;}
.ls6_c00368{letter-spacing:0.007200px;}
.lsf_c00368{letter-spacing:0.014400px;}
.ls4_c00368{letter-spacing:0.021600px;}
.ls0_c00368{letter-spacing:0.048096px;}
.ls2_c00368{letter-spacing:0.144000px;}
.ls8_c00368{letter-spacing:44.784000px;}
.ls7_c00368{letter-spacing:45.504000px;}
.ls5_c00368{letter-spacing:65.304000px;}
.ls3_c00368{letter-spacing:66.024000px;}
.ls1_c00368{letter-spacing:1212.120000px;}
.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;}
}
.ws1a_c00368{word-spacing:-0.007200px;}
.ws1_c00368{word-spacing:0.000000px;}
.ws0_c00368{word-spacing:0.042084px;}
.ws1f_c00368{word-spacing:0.050400px;}
.wsd_c00368{word-spacing:0.086400px;}
.ws9_c00368{word-spacing:0.360000px;}
.ws1d_c00368{word-spacing:0.388800px;}
.wsa_c00368{word-spacing:0.403200px;}
.ws1b_c00368{word-spacing:0.712800px;}
.ws21_c00368{word-spacing:2.152800px;}
.ws22_c00368{word-spacing:2.196000px;}
.ws16_c00368{word-spacing:4.334400px;}
.ws17_c00368{word-spacing:4.564800px;}
.ws18_c00368{word-spacing:4.716000px;}
.ws11_c00368{word-spacing:5.018400px;}
.ws10_c00368{word-spacing:5.767200px;}
.ws19_c00368{word-spacing:6.141600px;}
.wse_c00368{word-spacing:13.680000px;}
.wsf_c00368{word-spacing:13.694400px;}
.ws1c_c00368{word-spacing:14.076000px;}
.ws1e_c00368{word-spacing:15.120000px;}
.ws5_c00368{word-spacing:15.148800px;}
.ws4_c00368{word-spacing:15.199200px;}
.ws6_c00368{word-spacing:15.537600px;}
.ws2_c00368{word-spacing:16.178400px;}
.ws3_c00368{word-spacing:16.214400px;}
.wsc_c00368{word-spacing:17.985600px;}
.wsb_c00368{word-spacing:18.093600px;}
.ws8_c00368{word-spacing:19.418400px;}
.ws7_c00368{word-spacing:19.540800px;}
.ws20_c00368{word-spacing:21.592800px;}
.ws14_c00368{word-spacing:21.967200px;}
.ws15_c00368{word-spacing:21.996000px;}
.ws12_c00368{word-spacing:22.730400px;}
.ws13_c00368{word-spacing:22.766400px;}
._0_c00368{margin-left:-1.322640px;}
._1_c00368{width:1.296000px;}
.fc0_c00368{color:rgb(0,0,0);}
.fs1_c00368{font-size:54.000000px;}
.fs0_c00368{font-size:60.120000px;}
.fs2_c00368{font-size:72.000000px;}
.y0_c00368{bottom:0.000000px;}
.y3_c00368{bottom:57.450450px;}
.y1f_c00368{bottom:139.710450px;}
.y1e_c00368{bottom:174.090450px;}
.y1d_c00368{bottom:217.560450px;}
.y1c_c00368{bottom:251.940450px;}
.y1b_c00368{bottom:295.410450px;}
.y1a_c00368{bottom:329.790450px;}
.y19_c00368{bottom:364.260450px;}
.y18_c00368{bottom:398.640450px;}
.y17_c00368{bottom:433.110450px;}
.y16_c00368{bottom:476.490450px;}
.y15_c00368{bottom:510.960450px;}
.y14_c00368{bottom:545.340450px;}
.y13_c00368{bottom:579.810450px;}
.y12_c00368{bottom:614.190450px;}
.y11_c00368{bottom:657.660450px;}
.y10_c00368{bottom:692.040450px;}
.yf_c00368{bottom:744.510450px;}
.ye_c00368{bottom:778.890450px;}
.yd_c00368{bottom:813.360450px;}
.yc_c00368{bottom:847.740450px;}
.yb_c00368{bottom:882.210450px;}
.ya_c00368{bottom:934.590450px;}
.y9_c00368{bottom:969.060450px;}
.y8_c00368{bottom:1003.440450px;}
.y7_c00368{bottom:1037.910450px;}
.y6_c00368{bottom:1072.290450px;}
.y5_c00368{bottom:1106.760450px;}
.y4_c00368{bottom:1141.140450px;}
.y2_c00368{bottom:1177.860450px;}
.y1_c00368{bottom:1196.850450px;}
.h1_c00368{height:50.315273px;}
.h2_c00368{height:56.320312px;}
.h5_c00368{height:60.257812px;}
.h3_c00368{height:72.160312px;}
.h4_c00368{height:75.093750px;}
.h0_c00368{height:1263.000000px;}
.w1_c00368{width:892.500000px;}
.w0_c00368{width:892.830000px;}
.x0_c00368{left:0.000000px;}
.x1_c00368{left:127.620000px;}
.x2_c00368{left:154.440000px;}
.x3_c00368{left:181.170000px;}
.x4_c00368{left:208.440000px;}
.x5_c00368{left:235.170000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.v1_c00368{vertical-align:14.080000pt;}
.lsa_c00368{letter-spacing:-0.134400pt;}
.ls10_c00368{letter-spacing:-0.032000pt;}
.lsd_c00368{letter-spacing:-0.025600pt;}
.lse_c00368{letter-spacing:-0.019200pt;}
.lsb_c00368{letter-spacing:-0.012800pt;}
.lsc_c00368{letter-spacing:-0.006400pt;}
.ls9_c00368{letter-spacing:0.000000pt;}
.ls6_c00368{letter-spacing:0.006400pt;}
.lsf_c00368{letter-spacing:0.012800pt;}
.ls4_c00368{letter-spacing:0.019200pt;}
.ls0_c00368{letter-spacing:0.042752pt;}
.ls2_c00368{letter-spacing:0.128000pt;}
.ls8_c00368{letter-spacing:39.808000pt;}
.ls7_c00368{letter-spacing:40.448000pt;}
.ls5_c00368{letter-spacing:58.048000pt;}
.ls3_c00368{letter-spacing:58.688000pt;}
.ls1_c00368{letter-spacing:1077.440000pt;}
.ws1a_c00368{word-spacing:-0.006400pt;}
.ws1_c00368{word-spacing:0.000000pt;}
.ws0_c00368{word-spacing:0.037408pt;}
.ws1f_c00368{word-spacing:0.044800pt;}
.wsd_c00368{word-spacing:0.076800pt;}
.ws9_c00368{word-spacing:0.320000pt;}
.ws1d_c00368{word-spacing:0.345600pt;}
.wsa_c00368{word-spacing:0.358400pt;}
.ws1b_c00368{word-spacing:0.633600pt;}
.ws21_c00368{word-spacing:1.913600pt;}
.ws22_c00368{word-spacing:1.952000pt;}
.ws16_c00368{word-spacing:3.852800pt;}
.ws17_c00368{word-spacing:4.057600pt;}
.ws18_c00368{word-spacing:4.192000pt;}
.ws11_c00368{word-spacing:4.460800pt;}
.ws10_c00368{word-spacing:5.126400pt;}
.ws19_c00368{word-spacing:5.459200pt;}
.wse_c00368{word-spacing:12.160000pt;}
.wsf_c00368{word-spacing:12.172800pt;}
.ws1c_c00368{word-spacing:12.512000pt;}
.ws1e_c00368{word-spacing:13.440000pt;}
.ws5_c00368{word-spacing:13.465600pt;}
.ws4_c00368{word-spacing:13.510400pt;}
.ws6_c00368{word-spacing:13.811200pt;}
.ws2_c00368{word-spacing:14.380800pt;}
.ws3_c00368{word-spacing:14.412800pt;}
.wsc_c00368{word-spacing:15.987200pt;}
.wsb_c00368{word-spacing:16.083200pt;}
.ws8_c00368{word-spacing:17.260800pt;}
.ws7_c00368{word-spacing:17.369600pt;}
.ws20_c00368{word-spacing:19.193600pt;}
.ws14_c00368{word-spacing:19.526400pt;}
.ws15_c00368{word-spacing:19.552000pt;}
.ws12_c00368{word-spacing:20.204800pt;}
.ws13_c00368{word-spacing:20.236800pt;}
._0_c00368{margin-left:-1.175680pt;}
._1_c00368{width:1.152000pt;}
.fs1_c00368{font-size:48.000000pt;}
.fs0_c00368{font-size:53.440000pt;}
.fs2_c00368{font-size:64.000000pt;}
.y0_c00368{bottom:0.000000pt;}
.y3_c00368{bottom:51.067067pt;}
.y1f_c00368{bottom:124.187067pt;}
.y1e_c00368{bottom:154.747067pt;}
.y1d_c00368{bottom:193.387067pt;}
.y1c_c00368{bottom:223.947067pt;}
.y1b_c00368{bottom:262.587067pt;}
.y1a_c00368{bottom:293.147067pt;}
.y19_c00368{bottom:323.787067pt;}
.y18_c00368{bottom:354.347067pt;}
.y17_c00368{bottom:384.987067pt;}
.y16_c00368{bottom:423.547067pt;}
.y15_c00368{bottom:454.187067pt;}
.y14_c00368{bottom:484.747067pt;}
.y13_c00368{bottom:515.387067pt;}
.y12_c00368{bottom:545.947067pt;}
.y11_c00368{bottom:584.587067pt;}
.y10_c00368{bottom:615.147067pt;}
.yf_c00368{bottom:661.787067pt;}
.ye_c00368{bottom:692.347067pt;}
.yd_c00368{bottom:722.987067pt;}
.yc_c00368{bottom:753.547067pt;}
.yb_c00368{bottom:784.187067pt;}
.ya_c00368{bottom:830.747067pt;}
.y9_c00368{bottom:861.387067pt;}
.y8_c00368{bottom:891.947067pt;}
.y7_c00368{bottom:922.587067pt;}
.y6_c00368{bottom:953.147067pt;}
.y5_c00368{bottom:983.787067pt;}
.y4_c00368{bottom:1014.347067pt;}
.y2_c00368{bottom:1046.987067pt;}
.y1_c00368{bottom:1063.867067pt;}
.h1_c00368{height:44.724687pt;}
.h2_c00368{height:50.062500pt;}
.h5_c00368{height:53.562500pt;}
.h3_c00368{height:64.142500pt;}
.h4_c00368{height:66.750000pt;}
.h0_c00368{height:1122.666667pt;}
.w1_c00368{width:793.333333pt;}
.w0_c00368{width:793.626667pt;}
.x0_c00368{left:0.000000pt;}
.x1_c00368{left:113.440000pt;}
.x2_c00368{left:137.280000pt;}
.x3_c00368{left:161.040000pt;}
.x4_c00368{left:185.280000pt;}
.x5_c00368{left:209.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_56b288cd32c99596abc1b010.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_3d37383e783fa65ccffe0f6f.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00369;src:url('chunks/assets/font_31599d3aa68d99da9c6e80c6.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00369;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00369{font-family:ff5_c00369;line-height:1.281250;font-style: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;}
.ls9_c00369{letter-spacing:-0.151200px;}
.lsd_c00369{letter-spacing:-0.036000px;}
.lse_c00369{letter-spacing:-0.021600px;}
.lsf_c00369{letter-spacing:-0.014400px;}
.lsa_c00369{letter-spacing:-0.007200px;}
.ls8_c00369{letter-spacing:0.000000px;}
.ls6_c00369{letter-spacing:0.007200px;}
.ls3_c00369{letter-spacing:0.014400px;}
.ls11_c00369{letter-spacing:0.021600px;}
.ls7_c00369{letter-spacing:0.028800px;}
.lsb_c00369{letter-spacing:0.036000px;}
.ls0_c00369{letter-spacing:0.036072px;}
.ls10_c00369{letter-spacing:0.050400px;}
.lsc_c00369{letter-spacing:0.093600px;}
.ls1_c00369{letter-spacing:0.144000px;}
.ls12_c00369{letter-spacing:23.400000px;}
.ls5_c00369{letter-spacing:44.784000px;}
.ls4_c00369{letter-spacing:45.504000px;}
.ls2_c00369{letter-spacing:65.304000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00369{word-spacing:-0.306612px;}
.ws11_c00369{word-spacing:-0.007200px;}
.ws1_c00369{word-spacing:0.000000px;}
.wsc_c00369{word-spacing:0.007200px;}
.ws6_c00369{word-spacing:0.669600px;}
.ws5_c00369{word-spacing:0.756000px;}
.wse_c00369{word-spacing:1.749600px;}
.wsd_c00369{word-spacing:1.922400px;}
.ws17_c00369{word-spacing:2.131200px;}
.ws10_c00369{word-spacing:2.268000px;}
.wsf_c00369{word-spacing:2.289600px;}
.ws16_c00369{word-spacing:2.332800px;}
.ws9_c00369{word-spacing:3.621600px;}
.ws7_c00369{word-spacing:4.701600px;}
.ws19_c00369{word-spacing:5.392800px;}
.ws18_c00369{word-spacing:5.464800px;}
.wsb_c00369{word-spacing:5.810400px;}
.ws8_c00369{word-spacing:6.494400px;}
.wsa_c00369{word-spacing:8.294400px;}
.ws1a_c00369{word-spacing:8.690400px;}
.ws1d_c00369{word-spacing:8.992800px;}
.ws1e_c00369{word-spacing:9.100800px;}
.ws4_c00369{word-spacing:18.331200px;}
.ws3_c00369{word-spacing:18.345600px;}
.ws1b_c00369{word-spacing:19.800000px;}
.ws1c_c00369{word-spacing:19.828800px;}
.ws15_c00369{word-spacing:23.493600px;}
.ws1f_c00369{word-spacing:30.261600px;}
.ws14_c00369{word-spacing:33.336000px;}
.ws12_c00369{word-spacing:33.465600px;}
.ws13_c00369{word-spacing:33.516000px;}
.ws2_c00369{word-spacing:37.087200px;}
._2_c00369{margin-left:-23.472000px;}
._3_c00369{margin-left:-22.464000px;}
._0_c00369{margin-left:-1.022040px;}
._1_c00369{width:1.080000px;}
.fc0_c00369{color:rgb(0,0,0);}
.fs2_c00369{font-size:54.000000px;}
.fs0_c00369{font-size:60.120000px;}
.fs1_c00369{font-size:72.000000px;}
.y0_c00369{bottom:0.000000px;}
.y3_c00369{bottom:57.450450px;}
.y4_c00369{bottom:61.410450px;}
.y1e_c00369{bottom:190.560450px;}
.y1d_c00369{bottom:224.940450px;}
.y1c_c00369{bottom:259.410450px;}
.y1b_c00369{bottom:293.790450px;}
.y1a_c00369{bottom:346.260450px;}
.y19_c00369{bottom:380.640450px;}
.y18_c00369{bottom:415.110450px;}
.y17_c00369{bottom:449.490450px;}
.y16_c00369{bottom:483.960450px;}
.y15_c00369{bottom:518.340450px;}
.y14_c00369{bottom:570.810450px;}
.y13_c00369{bottom:605.190450px;}
.y12_c00369{bottom:639.660450px;}
.y11_c00369{bottom:683.040450px;}
.y10_c00369{bottom:717.510450px;}
.yf_c00369{bottom:751.890450px;}
.ye_c00369{bottom:795.360450px;}
.yd_c00369{bottom:829.740450px;}
.yc_c00369{bottom:864.210450px;}
.yb_c00369{bottom:898.590450px;}
.ya_c00369{bottom:933.060450px;}
.y9_c00369{bottom:976.440450px;}
.y8_c00369{bottom:1010.910450px;}
.y7_c00369{bottom:1054.290450px;}
.y6_c00369{bottom:1106.760450px;}
.y5_c00369{bottom:1141.140450px;}
.y2_c00369{bottom:1173.810450px;}
.y1_c00369{bottom:1196.850450px;}
.h2_c00369{height:47.988281px;}
.h1_c00369{height:50.315273px;}
.h3_c00369{height:56.320312px;}
.h4_c00369{height:60.257812px;}
.h5_c00369{height:60.328125px;}
.h6_c00369{height:75.093750px;}
.h0_c00369{height:1263.000000px;}
.w1_c00369{width:892.500000px;}
.w0_c00369{width:892.830000px;}
.x0_c00369{left:0.000000px;}
.x2_c00369{left:127.620000px;}
.x6_c00369{left:154.620000px;}
.x7_c00369{left:181.620000px;}
.x8_c00369{left:208.440000px;}
.x5_c00369{left:235.620000px;}
.x4_c00369{left:435.240000px;}
.x3_c00369{left:446.490000px;}
.x1_c00369{left:490.770000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls9_c00369{letter-spacing:-0.134400pt;}
.lsd_c00369{letter-spacing:-0.032000pt;}
.lse_c00369{letter-spacing:-0.019200pt;}
.lsf_c00369{letter-spacing:-0.012800pt;}
.lsa_c00369{letter-spacing:-0.006400pt;}
.ls8_c00369{letter-spacing:0.000000pt;}
.ls6_c00369{letter-spacing:0.006400pt;}
.ls3_c00369{letter-spacing:0.012800pt;}
.ls11_c00369{letter-spacing:0.019200pt;}
.ls7_c00369{letter-spacing:0.025600pt;}
.lsb_c00369{letter-spacing:0.032000pt;}
.ls0_c00369{letter-spacing:0.032064pt;}
.ls10_c00369{letter-spacing:0.044800pt;}
.lsc_c00369{letter-spacing:0.083200pt;}
.ls1_c00369{letter-spacing:0.128000pt;}
.ls12_c00369{letter-spacing:20.800000pt;}
.ls5_c00369{letter-spacing:39.808000pt;}
.ls4_c00369{letter-spacing:40.448000pt;}
.ls2_c00369{letter-spacing:58.048000pt;}
.ws0_c00369{word-spacing:-0.272544pt;}
.ws11_c00369{word-spacing:-0.006400pt;}
.ws1_c00369{word-spacing:0.000000pt;}
.wsc_c00369{word-spacing:0.006400pt;}
.ws6_c00369{word-spacing:0.595200pt;}
.ws5_c00369{word-spacing:0.672000pt;}
.wse_c00369{word-spacing:1.555200pt;}
.wsd_c00369{word-spacing:1.708800pt;}
.ws17_c00369{word-spacing:1.894400pt;}
.ws10_c00369{word-spacing:2.016000pt;}
.wsf_c00369{word-spacing:2.035200pt;}
.ws16_c00369{word-spacing:2.073600pt;}
.ws9_c00369{word-spacing:3.219200pt;}
.ws7_c00369{word-spacing:4.179200pt;}
.ws19_c00369{word-spacing:4.793600pt;}
.ws18_c00369{word-spacing:4.857600pt;}
.wsb_c00369{word-spacing:5.164800pt;}
.ws8_c00369{word-spacing:5.772800pt;}
.wsa_c00369{word-spacing:7.372800pt;}
.ws1a_c00369{word-spacing:7.724800pt;}
.ws1d_c00369{word-spacing:7.993600pt;}
.ws1e_c00369{word-spacing:8.089600pt;}
.ws4_c00369{word-spacing:16.294400pt;}
.ws3_c00369{word-spacing:16.307200pt;}
.ws1b_c00369{word-spacing:17.600000pt;}
.ws1c_c00369{word-spacing:17.625600pt;}
.ws15_c00369{word-spacing:20.883200pt;}
.ws1f_c00369{word-spacing:26.899200pt;}
.ws14_c00369{word-spacing:29.632000pt;}
.ws12_c00369{word-spacing:29.747200pt;}
.ws13_c00369{word-spacing:29.792000pt;}
.ws2_c00369{word-spacing:32.966400pt;}
._2_c00369{margin-left:-20.864000pt;}
._3_c00369{margin-left:-19.968000pt;}
._0_c00369{margin-left:-0.908480pt;}
._1_c00369{width:0.960000pt;}
.fs2_c00369{font-size:48.000000pt;}
.fs0_c00369{font-size:53.440000pt;}
.fs1_c00369{font-size:64.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.y3_c00369{bottom:51.067067pt;}
.y4_c00369{bottom:54.587067pt;}
.y1e_c00369{bottom:169.387067pt;}
.y1d_c00369{bottom:199.947067pt;}
.y1c_c00369{bottom:230.587067pt;}
.y1b_c00369{bottom:261.147067pt;}
.y1a_c00369{bottom:307.787067pt;}
.y19_c00369{bottom:338.347067pt;}
.y18_c00369{bottom:368.987067pt;}
.y17_c00369{bottom:399.547067pt;}
.y16_c00369{bottom:430.187067pt;}
.y15_c00369{bottom:460.747067pt;}
.y14_c00369{bottom:507.387067pt;}
.y13_c00369{bottom:537.947067pt;}
.y12_c00369{bottom:568.587067pt;}
.y11_c00369{bottom:607.147067pt;}
.y10_c00369{bottom:637.787067pt;}
.yf_c00369{bottom:668.347067pt;}
.ye_c00369{bottom:706.987067pt;}
.yd_c00369{bottom:737.547067pt;}
.yc_c00369{bottom:768.187067pt;}
.yb_c00369{bottom:798.747067pt;}
.ya_c00369{bottom:829.387067pt;}
.y9_c00369{bottom:867.947067pt;}
.y8_c00369{bottom:898.587067pt;}
.y7_c00369{bottom:937.147067pt;}
.y6_c00369{bottom:983.787067pt;}
.y5_c00369{bottom:1014.347067pt;}
.y2_c00369{bottom:1043.387067pt;}
.y1_c00369{bottom:1063.867067pt;}
.h2_c00369{height:42.656250pt;}
.h1_c00369{height:44.724687pt;}
.h3_c00369{height:50.062500pt;}
.h4_c00369{height:53.562500pt;}
.h5_c00369{height:53.625000pt;}
.h6_c00369{height:66.750000pt;}
.h0_c00369{height:1122.666667pt;}
.w1_c00369{width:793.333333pt;}
.w0_c00369{width:793.626667pt;}
.x0_c00369{left:0.000000pt;}
.x2_c00369{left:113.440000pt;}
.x6_c00369{left:137.440000pt;}
.x7_c00369{left:161.440000pt;}
.x8_c00369{left:185.280000pt;}
.x5_c00369{left:209.440000pt;}
.x4_c00369{left:386.880000pt;}
.x3_c00369{left:396.880000pt;}
.x1_c00369{left:436.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_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_9851de4c6f34614cdbe1d668.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.100098;font-style:normal;font-weight:normal;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_cf56521664392587075ef6ed.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;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_c00370;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00370;src:url('chunks/assets/font_f7d9a572c5ff166dc7da2188.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00370{vertical-align:15.840000px;}
.ls8_c00370{letter-spacing:-0.151200px;}
.lsa_c00370{letter-spacing:-0.043200px;}
.lsc_c00370{letter-spacing:-0.028800px;}
.lsd_c00370{letter-spacing:-0.021600px;}
.ls9_c00370{letter-spacing:-0.014400px;}
.lsb_c00370{letter-spacing:-0.007200px;}
.ls7_c00370{letter-spacing:0.000000px;}
.ls5_c00370{letter-spacing:0.007200px;}
.ls6_c00370{letter-spacing:0.014400px;}
.lsf_c00370{letter-spacing:0.021600px;}
.ls4_c00370{letter-spacing:0.028800px;}
.ls0_c00370{letter-spacing:0.048096px;}
.ls10_c00370{letter-spacing:0.050400px;}
.lse_c00370{letter-spacing:0.086400px;}
.ls2_c00370{letter-spacing:0.144000px;}
.ls3_c00370{letter-spacing:65.304000px;}
.ls1_c00370{letter-spacing:1212.120000px;}
.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;}
}
.ws1b_c00370{word-spacing:-0.007200px;}
.ws1_c00370{word-spacing:0.000000px;}
.ws9_c00370{word-spacing:0.007200px;}
.wsa_c00370{word-spacing:0.014400px;}
.ws11_c00370{word-spacing:0.021600px;}
.ws0_c00370{word-spacing:0.042084px;}
.ws10_c00370{word-spacing:0.064800px;}
.ws1f_c00370{word-spacing:0.698400px;}
.ws1e_c00370{word-spacing:0.712800px;}
.ws22_c00370{word-spacing:2.131200px;}
.ws21_c00370{word-spacing:2.152800px;}
.ws19_c00370{word-spacing:3.240000px;}
.ws27_c00370{word-spacing:3.247200px;}
.ws26_c00370{word-spacing:3.254400px;}
.ws1a_c00370{word-spacing:3.319200px;}
.ws16_c00370{word-spacing:4.687200px;}
.ws13_c00370{word-spacing:4.694400px;}
.ws12_c00370{word-spacing:4.701600px;}
.ws17_c00370{word-spacing:4.723200px;}
.ws23_c00370{word-spacing:5.385600px;}
.ws24_c00370{word-spacing:5.400000px;}
.ws2a_c00370{word-spacing:6.091200px;}
.ws2b_c00370{word-spacing:6.098400px;}
.ws2c_c00370{word-spacing:6.141600px;}
.ws18_c00370{word-spacing:7.200000px;}
.ws2e_c00370{word-spacing:7.473600px;}
.ws2d_c00370{word-spacing:7.495200px;}
.ws5_c00370{word-spacing:7.884000px;}
.ws1c_c00370{word-spacing:7.905600px;}
.ws6_c00370{word-spacing:7.941600px;}
.ws1d_c00370{word-spacing:7.948800px;}
.ws3_c00370{word-spacing:9.309600px;}
.ws4_c00370{word-spacing:9.367200px;}
.ws2_c00370{word-spacing:9.374400px;}
.ws14_c00370{word-spacing:10.447200px;}
.ws15_c00370{word-spacing:10.519200px;}
.ws8_c00370{word-spacing:11.988000px;}
.ws7_c00370{word-spacing:12.031200px;}
.ws28_c00370{word-spacing:13.284000px;}
.wse_c00370{word-spacing:14.688000px;}
.wsf_c00370{word-spacing:14.745600px;}
.ws20_c00370{word-spacing:15.537600px;}
.ws25_c00370{word-spacing:16.927200px;}
.ws29_c00370{word-spacing:19.454400px;}
.wsb_c00370{word-spacing:22.291200px;}
.wsc_c00370{word-spacing:22.327200px;}
.wsd_c00370{word-spacing:22.428000px;}
._0_c00370{margin-left:-1.322640px;}
._1_c00370{width:1.274400px;}
.fc0_c00370{color:rgb(0,0,0);}
.fs1_c00370{font-size:54.000000px;}
.fs0_c00370{font-size:60.120000px;}
.fs2_c00370{font-size:72.000000px;}
.y0_c00370{bottom:0.000000px;}
.y3_c00370{bottom:57.450450px;}
.y1e_c00370{bottom:147.090450px;}
.y1d_c00370{bottom:181.560450px;}
.y1c_c00370{bottom:233.940450px;}
.y1b_c00370{bottom:268.410450px;}
.y1a_c00370{bottom:302.790450px;}
.y19_c00370{bottom:337.260450px;}
.y18_c00370{bottom:389.640450px;}
.y17_c00370{bottom:424.110450px;}
.y16_c00370{bottom:458.490450px;}
.y15_c00370{bottom:492.960450px;}
.y14_c00370{bottom:527.340450px;}
.y13_c00370{bottom:561.810450px;}
.y12_c00370{bottom:596.190450px;}
.y11_c00370{bottom:648.660450px;}
.y10_c00370{bottom:683.040450px;}
.yf_c00370{bottom:717.510450px;}
.ye_c00370{bottom:751.890450px;}
.yd_c00370{bottom:786.360450px;}
.yc_c00370{bottom:820.740450px;}
.yb_c00370{bottom:864.210450px;}
.ya_c00370{bottom:916.590450px;}
.y9_c00370{bottom:951.060450px;}
.y8_c00370{bottom:985.440450px;}
.y7_c00370{bottom:1037.910450px;}
.y6_c00370{bottom:1072.290450px;}
.y5_c00370{bottom:1106.760450px;}
.y4_c00370{bottom:1141.140450px;}
.y2_c00370{bottom:1177.860450px;}
.y1_c00370{bottom:1196.850450px;}
.h1_c00370{height:50.315273px;}
.h2_c00370{height:56.320312px;}
.h5_c00370{height:60.257812px;}
.h6_c00370{height:60.328125px;}
.h3_c00370{height:72.160312px;}
.h4_c00370{height:75.093750px;}
.h0_c00370{height:1263.000000px;}
.w1_c00370{width:892.500000px;}
.w0_c00370{width:892.830000px;}
.x0_c00370{left:0.000000px;}
.x1_c00370{left:127.620000px;}
.x2_c00370{left:154.620000px;}
.x3_c00370{left:181.620000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.v1_c00370{vertical-align:14.080000pt;}
.ls8_c00370{letter-spacing:-0.134400pt;}
.lsa_c00370{letter-spacing:-0.038400pt;}
.lsc_c00370{letter-spacing:-0.025600pt;}
.lsd_c00370{letter-spacing:-0.019200pt;}
.ls9_c00370{letter-spacing:-0.012800pt;}
.lsb_c00370{letter-spacing:-0.006400pt;}
.ls7_c00370{letter-spacing:0.000000pt;}
.ls5_c00370{letter-spacing:0.006400pt;}
.ls6_c00370{letter-spacing:0.012800pt;}
.lsf_c00370{letter-spacing:0.019200pt;}
.ls4_c00370{letter-spacing:0.025600pt;}
.ls0_c00370{letter-spacing:0.042752pt;}
.ls10_c00370{letter-spacing:0.044800pt;}
.lse_c00370{letter-spacing:0.076800pt;}
.ls2_c00370{letter-spacing:0.128000pt;}
.ls3_c00370{letter-spacing:58.048000pt;}
.ls1_c00370{letter-spacing:1077.440000pt;}
.ws1b_c00370{word-spacing:-0.006400pt;}
.ws1_c00370{word-spacing:0.000000pt;}
.ws9_c00370{word-spacing:0.006400pt;}
.wsa_c00370{word-spacing:0.012800pt;}
.ws11_c00370{word-spacing:0.019200pt;}
.ws0_c00370{word-spacing:0.037408pt;}
.ws10_c00370{word-spacing:0.057600pt;}
.ws1f_c00370{word-spacing:0.620800pt;}
.ws1e_c00370{word-spacing:0.633600pt;}
.ws22_c00370{word-spacing:1.894400pt;}
.ws21_c00370{word-spacing:1.913600pt;}
.ws19_c00370{word-spacing:2.880000pt;}
.ws27_c00370{word-spacing:2.886400pt;}
.ws26_c00370{word-spacing:2.892800pt;}
.ws1a_c00370{word-spacing:2.950400pt;}
.ws16_c00370{word-spacing:4.166400pt;}
.ws13_c00370{word-spacing:4.172800pt;}
.ws12_c00370{word-spacing:4.179200pt;}
.ws17_c00370{word-spacing:4.198400pt;}
.ws23_c00370{word-spacing:4.787200pt;}
.ws24_c00370{word-spacing:4.800000pt;}
.ws2a_c00370{word-spacing:5.414400pt;}
.ws2b_c00370{word-spacing:5.420800pt;}
.ws2c_c00370{word-spacing:5.459200pt;}
.ws18_c00370{word-spacing:6.400000pt;}
.ws2e_c00370{word-spacing:6.643200pt;}
.ws2d_c00370{word-spacing:6.662400pt;}
.ws5_c00370{word-spacing:7.008000pt;}
.ws1c_c00370{word-spacing:7.027200pt;}
.ws6_c00370{word-spacing:7.059200pt;}
.ws1d_c00370{word-spacing:7.065600pt;}
.ws3_c00370{word-spacing:8.275200pt;}
.ws4_c00370{word-spacing:8.326400pt;}
.ws2_c00370{word-spacing:8.332800pt;}
.ws14_c00370{word-spacing:9.286400pt;}
.ws15_c00370{word-spacing:9.350400pt;}
.ws8_c00370{word-spacing:10.656000pt;}
.ws7_c00370{word-spacing:10.694400pt;}
.ws28_c00370{word-spacing:11.808000pt;}
.wse_c00370{word-spacing:13.056000pt;}
.wsf_c00370{word-spacing:13.107200pt;}
.ws20_c00370{word-spacing:13.811200pt;}
.ws25_c00370{word-spacing:15.046400pt;}
.ws29_c00370{word-spacing:17.292800pt;}
.wsb_c00370{word-spacing:19.814400pt;}
.wsc_c00370{word-spacing:19.846400pt;}
.wsd_c00370{word-spacing:19.936000pt;}
._0_c00370{margin-left:-1.175680pt;}
._1_c00370{width:1.132800pt;}
.fs1_c00370{font-size:48.000000pt;}
.fs0_c00370{font-size:53.440000pt;}
.fs2_c00370{font-size:64.000000pt;}
.y0_c00370{bottom:0.000000pt;}
.y3_c00370{bottom:51.067067pt;}
.y1e_c00370{bottom:130.747067pt;}
.y1d_c00370{bottom:161.387067pt;}
.y1c_c00370{bottom:207.947067pt;}
.y1b_c00370{bottom:238.587067pt;}
.y1a_c00370{bottom:269.147067pt;}
.y19_c00370{bottom:299.787067pt;}
.y18_c00370{bottom:346.347067pt;}
.y17_c00370{bottom:376.987067pt;}
.y16_c00370{bottom:407.547067pt;}
.y15_c00370{bottom:438.187067pt;}
.y14_c00370{bottom:468.747067pt;}
.y13_c00370{bottom:499.387067pt;}
.y12_c00370{bottom:529.947067pt;}
.y11_c00370{bottom:576.587067pt;}
.y10_c00370{bottom:607.147067pt;}
.yf_c00370{bottom:637.787067pt;}
.ye_c00370{bottom:668.347067pt;}
.yd_c00370{bottom:698.987067pt;}
.yc_c00370{bottom:729.547067pt;}
.yb_c00370{bottom:768.187067pt;}
.ya_c00370{bottom:814.747067pt;}
.y9_c00370{bottom:845.387067pt;}
.y8_c00370{bottom:875.947067pt;}
.y7_c00370{bottom:922.587067pt;}
.y6_c00370{bottom:953.147067pt;}
.y5_c00370{bottom:983.787067pt;}
.y4_c00370{bottom:1014.347067pt;}
.y2_c00370{bottom:1046.987067pt;}
.y1_c00370{bottom:1063.867067pt;}
.h1_c00370{height:44.724687pt;}
.h2_c00370{height:50.062500pt;}
.h5_c00370{height:53.562500pt;}
.h6_c00370{height:53.625000pt;}
.h3_c00370{height:64.142500pt;}
.h4_c00370{height:66.750000pt;}
.h0_c00370{height:1122.666667pt;}
.w1_c00370{width:793.333333pt;}
.w0_c00370{width:793.626667pt;}
.x0_c00370{left:0.000000pt;}
.x1_c00370{left:113.440000pt;}
.x2_c00370{left:137.440000pt;}
.x3_c00370{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_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_59b9de6ae46d24d8c4717ff5.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00371;src:url('chunks/assets/font_cc4d589bd878785c237e8e2a.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00371;src:url('chunks/assets/font_8d03f82559c15bd44d231030.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00371{letter-spacing:-0.151200px;}
.lse_c00371{letter-spacing:-0.043200px;}
.lsc_c00371{letter-spacing:-0.036000px;}
.lsf_c00371{letter-spacing:-0.028800px;}
.lsa_c00371{letter-spacing:-0.021600px;}
.lsb_c00371{letter-spacing:-0.014400px;}
.lsd_c00371{letter-spacing:-0.007200px;}
.ls8_c00371{letter-spacing:0.000000px;}
.ls7_c00371{letter-spacing:0.007200px;}
.ls6_c00371{letter-spacing:0.014400px;}
.ls3_c00371{letter-spacing:0.021600px;}
.ls0_c00371{letter-spacing:0.036072px;}
.ls5_c00371{letter-spacing:0.043200px;}
.ls1_c00371{letter-spacing:0.144000px;}
.ls2_c00371{letter-spacing:65.304000px;}
.ls4_c00371{letter-spacing:66.024000px;}
.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:-0.306612px;}
.ws25_c00371{word-spacing:-0.007200px;}
.ws1_c00371{word-spacing:0.000000px;}
.ws14_c00371{word-spacing:0.014400px;}
.ws4_c00371{word-spacing:0.021600px;}
.ws21_c00371{word-spacing:0.028800px;}
.ws19_c00371{word-spacing:0.057600px;}
.wsd_c00371{word-spacing:0.064800px;}
.wse_c00371{word-spacing:0.093600px;}
.ws12_c00371{word-spacing:0.367200px;}
.ws13_c00371{word-spacing:0.410400px;}
.ws11_c00371{word-spacing:0.640800px;}
.ws20_c00371{word-spacing:1.807200px;}
.ws17_c00371{word-spacing:2.167200px;}
.ws18_c00371{word-spacing:2.304000px;}
.ws22_c00371{word-spacing:2.505600px;}
.ws5_c00371{word-spacing:2.534400px;}
.ws6_c00371{word-spacing:2.556000px;}
.ws2a_c00371{word-spacing:3.556800px;}
.ws29_c00371{word-spacing:3.708000px;}
.ws1f_c00371{word-spacing:4.204800px;}
.ws1d_c00371{word-spacing:4.298400px;}
.ws15_c00371{word-spacing:4.334400px;}
.ws1e_c00371{word-spacing:4.348800px;}
.ws16_c00371{word-spacing:4.370400px;}
.wsa_c00371{word-spacing:5.421600px;}
.ws9_c00371{word-spacing:5.616000px;}
.wsf_c00371{word-spacing:8.280000px;}
.ws10_c00371{word-spacing:8.323200px;}
.ws23_c00371{word-spacing:8.992800px;}
.ws24_c00371{word-spacing:9.100800px;}
.wsc_c00371{word-spacing:10.101600px;}
.wsb_c00371{word-spacing:10.152000px;}
.ws2_c00371{word-spacing:12.240000px;}
.ws28_c00371{word-spacing:12.268800px;}
.ws3_c00371{word-spacing:12.312000px;}
.ws8_c00371{word-spacing:14.076000px;}
.ws7_c00371{word-spacing:14.112000px;}
.ws26_c00371{word-spacing:14.716800px;}
.ws27_c00371{word-spacing:14.803200px;}
.ws1a_c00371{word-spacing:22.636800px;}
.ws1b_c00371{word-spacing:22.687200px;}
.ws1c_c00371{word-spacing:22.802400px;}
._0_c00371{margin-left:-1.022040px;}
._1_c00371{width:1.224000px;}
.fc0_c00371{color:rgb(0,0,0);}
.fs2_c00371{font-size:54.000000px;}
.fs0_c00371{font-size:60.120000px;}
.fs1_c00371{font-size:72.000000px;}
.y0_c00371{bottom:0.000000px;}
.y3_c00371{bottom:57.450450px;}
.y4_c00371{bottom:61.410450px;}
.y1e_c00371{bottom:181.560450px;}
.y1d_c00371{bottom:215.940450px;}
.y1c_c00371{bottom:250.410450px;}
.y1b_c00371{bottom:284.790450px;}
.y1a_c00371{bottom:337.260450px;}
.y19_c00371{bottom:371.640450px;}
.y18_c00371{bottom:406.110450px;}
.y17_c00371{bottom:449.490450px;}
.y16_c00371{bottom:483.960450px;}
.y15_c00371{bottom:518.340450px;}
.y14_c00371{bottom:552.810450px;}
.y13_c00371{bottom:605.190450px;}
.y12_c00371{bottom:639.660450px;}
.y11_c00371{bottom:674.040450px;}
.y10_c00371{bottom:708.510450px;}
.yf_c00371{bottom:760.890450px;}
.ye_c00371{bottom:795.360450px;}
.yd_c00371{bottom:829.740450px;}
.yc_c00371{bottom:882.210450px;}
.yb_c00371{bottom:916.590450px;}
.ya_c00371{bottom:951.060450px;}
.y9_c00371{bottom:985.440450px;}
.y8_c00371{bottom:1019.910450px;}
.y7_c00371{bottom:1054.290450px;}
.y6_c00371{bottom:1106.760450px;}
.y5_c00371{bottom:1141.140450px;}
.y2_c00371{bottom:1173.810450px;}
.y1_c00371{bottom:1196.850450px;}
.h2_c00371{height:47.988281px;}
.h1_c00371{height:50.315273px;}
.h3_c00371{height:56.320312px;}
.h4_c00371{height:60.257812px;}
.h5_c00371{height:75.093750px;}
.h0_c00371{height:1263.000000px;}
.w1_c00371{width:892.500000px;}
.w0_c00371{width:892.830000px;}
.x0_c00371{left:0.000000px;}
.x2_c00371{left:127.620000px;}
.x6_c00371{left:154.620000px;}
.x5_c00371{left:181.620000px;}
.x4_c00371{left:435.240000px;}
.x3_c00371{left:446.490000px;}
.x1_c00371{left:490.770000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls9_c00371{letter-spacing:-0.134400pt;}
.lse_c00371{letter-spacing:-0.038400pt;}
.lsc_c00371{letter-spacing:-0.032000pt;}
.lsf_c00371{letter-spacing:-0.025600pt;}
.lsa_c00371{letter-spacing:-0.019200pt;}
.lsb_c00371{letter-spacing:-0.012800pt;}
.lsd_c00371{letter-spacing:-0.006400pt;}
.ls8_c00371{letter-spacing:0.000000pt;}
.ls7_c00371{letter-spacing:0.006400pt;}
.ls6_c00371{letter-spacing:0.012800pt;}
.ls3_c00371{letter-spacing:0.019200pt;}
.ls0_c00371{letter-spacing:0.032064pt;}
.ls5_c00371{letter-spacing:0.038400pt;}
.ls1_c00371{letter-spacing:0.128000pt;}
.ls2_c00371{letter-spacing:58.048000pt;}
.ls4_c00371{letter-spacing:58.688000pt;}
.ws0_c00371{word-spacing:-0.272544pt;}
.ws25_c00371{word-spacing:-0.006400pt;}
.ws1_c00371{word-spacing:0.000000pt;}
.ws14_c00371{word-spacing:0.012800pt;}
.ws4_c00371{word-spacing:0.019200pt;}
.ws21_c00371{word-spacing:0.025600pt;}
.ws19_c00371{word-spacing:0.051200pt;}
.wsd_c00371{word-spacing:0.057600pt;}
.wse_c00371{word-spacing:0.083200pt;}
.ws12_c00371{word-spacing:0.326400pt;}
.ws13_c00371{word-spacing:0.364800pt;}
.ws11_c00371{word-spacing:0.569600pt;}
.ws20_c00371{word-spacing:1.606400pt;}
.ws17_c00371{word-spacing:1.926400pt;}
.ws18_c00371{word-spacing:2.048000pt;}
.ws22_c00371{word-spacing:2.227200pt;}
.ws5_c00371{word-spacing:2.252800pt;}
.ws6_c00371{word-spacing:2.272000pt;}
.ws2a_c00371{word-spacing:3.161600pt;}
.ws29_c00371{word-spacing:3.296000pt;}
.ws1f_c00371{word-spacing:3.737600pt;}
.ws1d_c00371{word-spacing:3.820800pt;}
.ws15_c00371{word-spacing:3.852800pt;}
.ws1e_c00371{word-spacing:3.865600pt;}
.ws16_c00371{word-spacing:3.884800pt;}
.wsa_c00371{word-spacing:4.819200pt;}
.ws9_c00371{word-spacing:4.992000pt;}
.wsf_c00371{word-spacing:7.360000pt;}
.ws10_c00371{word-spacing:7.398400pt;}
.ws23_c00371{word-spacing:7.993600pt;}
.ws24_c00371{word-spacing:8.089600pt;}
.wsc_c00371{word-spacing:8.979200pt;}
.wsb_c00371{word-spacing:9.024000pt;}
.ws2_c00371{word-spacing:10.880000pt;}
.ws28_c00371{word-spacing:10.905600pt;}
.ws3_c00371{word-spacing:10.944000pt;}
.ws8_c00371{word-spacing:12.512000pt;}
.ws7_c00371{word-spacing:12.544000pt;}
.ws26_c00371{word-spacing:13.081600pt;}
.ws27_c00371{word-spacing:13.158400pt;}
.ws1a_c00371{word-spacing:20.121600pt;}
.ws1b_c00371{word-spacing:20.166400pt;}
.ws1c_c00371{word-spacing:20.268800pt;}
._0_c00371{margin-left:-0.908480pt;}
._1_c00371{width:1.088000pt;}
.fs2_c00371{font-size:48.000000pt;}
.fs0_c00371{font-size:53.440000pt;}
.fs1_c00371{font-size:64.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y3_c00371{bottom:51.067067pt;}
.y4_c00371{bottom:54.587067pt;}
.y1e_c00371{bottom:161.387067pt;}
.y1d_c00371{bottom:191.947067pt;}
.y1c_c00371{bottom:222.587067pt;}
.y1b_c00371{bottom:253.147067pt;}
.y1a_c00371{bottom:299.787067pt;}
.y19_c00371{bottom:330.347067pt;}
.y18_c00371{bottom:360.987067pt;}
.y17_c00371{bottom:399.547067pt;}
.y16_c00371{bottom:430.187067pt;}
.y15_c00371{bottom:460.747067pt;}
.y14_c00371{bottom:491.387067pt;}
.y13_c00371{bottom:537.947067pt;}
.y12_c00371{bottom:568.587067pt;}
.y11_c00371{bottom:599.147067pt;}
.y10_c00371{bottom:629.787067pt;}
.yf_c00371{bottom:676.347067pt;}
.ye_c00371{bottom:706.987067pt;}
.yd_c00371{bottom:737.547067pt;}
.yc_c00371{bottom:784.187067pt;}
.yb_c00371{bottom:814.747067pt;}
.ya_c00371{bottom:845.387067pt;}
.y9_c00371{bottom:875.947067pt;}
.y8_c00371{bottom:906.587067pt;}
.y7_c00371{bottom:937.147067pt;}
.y6_c00371{bottom:983.787067pt;}
.y5_c00371{bottom:1014.347067pt;}
.y2_c00371{bottom:1043.387067pt;}
.y1_c00371{bottom:1063.867067pt;}
.h2_c00371{height:42.656250pt;}
.h1_c00371{height:44.724687pt;}
.h3_c00371{height:50.062500pt;}
.h4_c00371{height:53.562500pt;}
.h5_c00371{height:66.750000pt;}
.h0_c00371{height:1122.666667pt;}
.w1_c00371{width:793.333333pt;}
.w0_c00371{width:793.626667pt;}
.x0_c00371{left:0.000000pt;}
.x2_c00371{left:113.440000pt;}
.x6_c00371{left:137.440000pt;}
.x5_c00371{left:161.440000pt;}
.x4_c00371{left:386.880000pt;}
.x3_c00371{left:396.880000pt;}
.x1_c00371{left:436.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_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_1df3c5d16f7c1c2eec8dcd99.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.100098;font-style:normal;font-weight:normal;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_1a4b230bc892f47c6d57992f.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00372;src:url('chunks/assets/font_335ed97f5e77b49b0ba59acd.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00372;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00372{font-family:ff5_c00372;line-height:1.281250;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00372{font-family:ff6_c00372;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00372{vertical-align:15.840000px;}
.v2_c00372{vertical-align:29.880000px;}
.ls10_c00372{letter-spacing:-0.151200px;}
.ls18_c00372{letter-spacing:-0.036000px;}
.ls11_c00372{letter-spacing:-0.028800px;}
.ls19_c00372{letter-spacing:-0.021600px;}
.ls16_c00372{letter-spacing:-0.015624px;}
.ls15_c00372{letter-spacing:-0.014400px;}
.ls17_c00372{letter-spacing:-0.007812px;}
.ls12_c00372{letter-spacing:-0.007200px;}
.lsf_c00372{letter-spacing:0.000000px;}
.ls6_c00372{letter-spacing:0.007200px;}
.lsd_c00372{letter-spacing:0.009576px;}
.lsb_c00372{letter-spacing:0.014400px;}
.ls8_c00372{letter-spacing:0.021600px;}
.lsc_c00372{letter-spacing:0.028800px;}
.ls9_c00372{letter-spacing:0.031248px;}
.ls14_c00372{letter-spacing:0.036000px;}
.lse_c00372{letter-spacing:0.038304px;}
.ls0_c00372{letter-spacing:0.048096px;}
.ls4_c00372{letter-spacing:0.054756px;}
.ls13_c00372{letter-spacing:0.093600px;}
.ls2_c00372{letter-spacing:0.144000px;}
.ls7_c00372{letter-spacing:44.784000px;}
.ls5_c00372{letter-spacing:45.504000px;}
.ls3_c00372{letter-spacing:66.024000px;}
.lsa_c00372{letter-spacing:77.260680px;}
.ls1_c00372{letter-spacing:1212.120000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00372{word-spacing:-19.561248px;}
.ws0_c00372{word-spacing:-10.584756px;}
.ws10_c00372{word-spacing:-0.226548px;}
.ws25_c00372{word-spacing:-0.019152px;}
.ws3_c00372{word-spacing:0.000000px;}
.ws7_c00372{word-spacing:0.007200px;}
.ws24_c00372{word-spacing:0.009576px;}
.ws16_c00372{word-spacing:0.014400px;}
.ws2_c00372{word-spacing:0.042084px;}
.wse_c00372{word-spacing:0.072000px;}
.ws12_c00372{word-spacing:0.734400px;}
.ws13_c00372{word-spacing:0.756000px;}
.wsc_c00372{word-spacing:1.872000px;}
.ws20_c00372{word-spacing:2.181600px;}
.ws1d_c00372{word-spacing:2.548800px;}
.ws1c_c00372{word-spacing:2.563200px;}
.ws6_c00372{word-spacing:4.320000px;}
.ws15_c00372{word-spacing:4.665600px;}
.ws14_c00372{word-spacing:4.680000px;}
.ws18_c00372{word-spacing:5.004000px;}
.ws17_c00372{word-spacing:5.061600px;}
.ws1e_c00372{word-spacing:5.767200px;}
.ws1f_c00372{word-spacing:5.796000px;}
.wsa_c00372{word-spacing:6.112800px;}
.wsb_c00372{word-spacing:6.141600px;}
.wsf_c00372{word-spacing:6.765192px;}
.ws11_c00372{word-spacing:7.596000px;}
.ws8_c00372{word-spacing:10.440000px;}
.ws9_c00372{word-spacing:10.468800px;}
.wsd_c00372{word-spacing:12.938400px;}
.ws1a_c00372{word-spacing:14.731200px;}
.ws19_c00372{word-spacing:14.760000px;}
.ws1b_c00372{word-spacing:14.810400px;}
.ws5_c00372{word-spacing:15.840000px;}
.ws4_c00372{word-spacing:15.868800px;}
.ws22_c00372{word-spacing:25.531200px;}
.ws21_c00372{word-spacing:25.567200px;}
.ws23_c00372{word-spacing:25.639200px;}
._0_c00372{margin-left:-1.322640px;}
._1_c00372{width:1.080000px;}
.fc0_c00372{color:rgb(0,0,0);}
.fs3_c00372{font-size:42.120000px;}
.fs5_c00372{font-size:47.880000px;}
.fs1_c00372{font-size:54.000000px;}
.fs0_c00372{font-size:60.120000px;}
.fs2_c00372{font-size:72.000000px;}
.fs4_c00372{font-size:78.120000px;}
.y0_c00372{bottom:0.000000px;}
.y3_c00372{bottom:57.450450px;}
.y1f_c00372{bottom:113.698470px;}
.y1e_c00372{bottom:132.060450px;}
.y1d_c00372{bottom:147.270450px;}
.y1c_c00372{bottom:167.970450px;}
.y1b_c00372{bottom:188.670450px;}
.y1a_c00372{bottom:324.120450px;}
.y19_c00372{bottom:358.500450px;}
.y18_c00372{bottom:392.970450px;}
.y17_c00372{bottom:427.350450px;}
.y16_c00372{bottom:461.820450px;}
.y15_c00372{bottom:496.200450px;}
.y14_c00372{bottom:530.670450px;}
.y13_c00372{bottom:565.050450px;}
.y12_c00372{bottom:599.520450px;}
.y11_c00372{bottom:633.900450px;}
.y10_c00372{bottom:668.370450px;}
.yf_c00372{bottom:713.367210px;}
.ye_c00372{bottom:750.630450px;}
.yd_c00372{bottom:804.360450px;}
.yc_c00372{bottom:838.740450px;}
.yb_c00372{bottom:882.210450px;}
.ya_c00372{bottom:916.590450px;}
.y9_c00372{bottom:951.060450px;}
.y8_c00372{bottom:994.440450px;}
.y7_c00372{bottom:1028.910450px;}
.y6_c00372{bottom:1072.290450px;}
.y5_c00372{bottom:1106.760450px;}
.y4_c00372{bottom:1141.140450px;}
.y2_c00372{bottom:1177.860450px;}
.y1_c00372{bottom:1196.850450px;}
.h9_c00372{height:47.988281px;}
.ha_c00372{height:49.937344px;}
.h1_c00372{height:50.315273px;}
.h2_c00372{height:56.320312px;}
.h5_c00372{height:60.257812px;}
.h6_c00372{height:65.130820px;}
.h8_c00372{height:65.456016px;}
.h3_c00372{height:72.160312px;}
.h4_c00372{height:75.093750px;}
.h7_c00372{height:81.476719px;}
.h0_c00372{height:1263.000000px;}
.w1_c00372{width:892.500000px;}
.w0_c00372{width:892.830000px;}
.x0_c00372{left:0.000000px;}
.x1_c00372{left:127.620000px;}
.x2_c00372{left:154.440000px;}
.x3_c00372{left:181.170000px;}
.x4_c00372{left:208.440000px;}
.x5_c00372{left:235.170000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.v1_c00372{vertical-align:14.080000pt;}
.v2_c00372{vertical-align:26.560000pt;}
.ls10_c00372{letter-spacing:-0.134400pt;}
.ls18_c00372{letter-spacing:-0.032000pt;}
.ls11_c00372{letter-spacing:-0.025600pt;}
.ls19_c00372{letter-spacing:-0.019200pt;}
.ls16_c00372{letter-spacing:-0.013888pt;}
.ls15_c00372{letter-spacing:-0.012800pt;}
.ls17_c00372{letter-spacing:-0.006944pt;}
.ls12_c00372{letter-spacing:-0.006400pt;}
.lsf_c00372{letter-spacing:0.000000pt;}
.ls6_c00372{letter-spacing:0.006400pt;}
.lsd_c00372{letter-spacing:0.008512pt;}
.lsb_c00372{letter-spacing:0.012800pt;}
.ls8_c00372{letter-spacing:0.019200pt;}
.lsc_c00372{letter-spacing:0.025600pt;}
.ls9_c00372{letter-spacing:0.027776pt;}
.ls14_c00372{letter-spacing:0.032000pt;}
.lse_c00372{letter-spacing:0.034048pt;}
.ls0_c00372{letter-spacing:0.042752pt;}
.ls4_c00372{letter-spacing:0.048672pt;}
.ls13_c00372{letter-spacing:0.083200pt;}
.ls2_c00372{letter-spacing:0.128000pt;}
.ls7_c00372{letter-spacing:39.808000pt;}
.ls5_c00372{letter-spacing:40.448000pt;}
.ls3_c00372{letter-spacing:58.688000pt;}
.lsa_c00372{letter-spacing:68.676160pt;}
.ls1_c00372{letter-spacing:1077.440000pt;}
.ws1_c00372{word-spacing:-17.387776pt;}
.ws0_c00372{word-spacing:-9.408672pt;}
.ws10_c00372{word-spacing:-0.201376pt;}
.ws25_c00372{word-spacing:-0.017024pt;}
.ws3_c00372{word-spacing:0.000000pt;}
.ws7_c00372{word-spacing:0.006400pt;}
.ws24_c00372{word-spacing:0.008512pt;}
.ws16_c00372{word-spacing:0.012800pt;}
.ws2_c00372{word-spacing:0.037408pt;}
.wse_c00372{word-spacing:0.064000pt;}
.ws12_c00372{word-spacing:0.652800pt;}
.ws13_c00372{word-spacing:0.672000pt;}
.wsc_c00372{word-spacing:1.664000pt;}
.ws20_c00372{word-spacing:1.939200pt;}
.ws1d_c00372{word-spacing:2.265600pt;}
.ws1c_c00372{word-spacing:2.278400pt;}
.ws6_c00372{word-spacing:3.840000pt;}
.ws15_c00372{word-spacing:4.147200pt;}
.ws14_c00372{word-spacing:4.160000pt;}
.ws18_c00372{word-spacing:4.448000pt;}
.ws17_c00372{word-spacing:4.499200pt;}
.ws1e_c00372{word-spacing:5.126400pt;}
.ws1f_c00372{word-spacing:5.152000pt;}
.wsa_c00372{word-spacing:5.433600pt;}
.wsb_c00372{word-spacing:5.459200pt;}
.wsf_c00372{word-spacing:6.013504pt;}
.ws11_c00372{word-spacing:6.752000pt;}
.ws8_c00372{word-spacing:9.280000pt;}
.ws9_c00372{word-spacing:9.305600pt;}
.wsd_c00372{word-spacing:11.500800pt;}
.ws1a_c00372{word-spacing:13.094400pt;}
.ws19_c00372{word-spacing:13.120000pt;}
.ws1b_c00372{word-spacing:13.164800pt;}
.ws5_c00372{word-spacing:14.080000pt;}
.ws4_c00372{word-spacing:14.105600pt;}
.ws22_c00372{word-spacing:22.694400pt;}
.ws21_c00372{word-spacing:22.726400pt;}
.ws23_c00372{word-spacing:22.790400pt;}
._0_c00372{margin-left:-1.175680pt;}
._1_c00372{width:0.960000pt;}
.fs3_c00372{font-size:37.440000pt;}
.fs5_c00372{font-size:42.560000pt;}
.fs1_c00372{font-size:48.000000pt;}
.fs0_c00372{font-size:53.440000pt;}
.fs2_c00372{font-size:64.000000pt;}
.fs4_c00372{font-size:69.440000pt;}
.y0_c00372{bottom:0.000000pt;}
.y3_c00372{bottom:51.067067pt;}
.y1f_c00372{bottom:101.065307pt;}
.y1e_c00372{bottom:117.387067pt;}
.y1d_c00372{bottom:130.907067pt;}
.y1c_c00372{bottom:149.307067pt;}
.y1b_c00372{bottom:167.707067pt;}
.y1a_c00372{bottom:288.107067pt;}
.y19_c00372{bottom:318.667067pt;}
.y18_c00372{bottom:349.307067pt;}
.y17_c00372{bottom:379.867067pt;}
.y16_c00372{bottom:410.507067pt;}
.y15_c00372{bottom:441.067067pt;}
.y14_c00372{bottom:471.707067pt;}
.y13_c00372{bottom:502.267067pt;}
.y12_c00372{bottom:532.907067pt;}
.y11_c00372{bottom:563.467067pt;}
.y10_c00372{bottom:594.107067pt;}
.yf_c00372{bottom:634.104187pt;}
.ye_c00372{bottom:667.227067pt;}
.yd_c00372{bottom:714.987067pt;}
.yc_c00372{bottom:745.547067pt;}
.yb_c00372{bottom:784.187067pt;}
.ya_c00372{bottom:814.747067pt;}
.y9_c00372{bottom:845.387067pt;}
.y8_c00372{bottom:883.947067pt;}
.y7_c00372{bottom:914.587067pt;}
.y6_c00372{bottom:953.147067pt;}
.y5_c00372{bottom:983.787067pt;}
.y4_c00372{bottom:1014.347067pt;}
.y2_c00372{bottom:1046.987067pt;}
.y1_c00372{bottom:1063.867067pt;}
.h9_c00372{height:42.656250pt;}
.ha_c00372{height:44.388750pt;}
.h1_c00372{height:44.724687pt;}
.h2_c00372{height:50.062500pt;}
.h5_c00372{height:53.562500pt;}
.h6_c00372{height:57.894062pt;}
.h8_c00372{height:58.183125pt;}
.h3_c00372{height:64.142500pt;}
.h4_c00372{height:66.750000pt;}
.h7_c00372{height:72.423750pt;}
.h0_c00372{height:1122.666667pt;}
.w1_c00372{width:793.333333pt;}
.w0_c00372{width:793.626667pt;}
.x0_c00372{left:0.000000pt;}
.x1_c00372{left:113.440000pt;}
.x2_c00372{left:137.280000pt;}
.x3_c00372{left:161.040000pt;}
.x4_c00372{left:185.280000pt;}
.x5_c00372{left:209.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_549dc57a7bda67e0101100e2.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_d9e7aea4e8c0ee894c4e09ef.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00373;src:url('chunks/assets/font_d84317a0f212265c024167bd.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00373;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00373{font-family:ff5_c00373;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_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;}
.v1_c00373{vertical-align:29.880000px;}
.ls13_c00373{letter-spacing:-0.266400px;}
.ls8_c00373{letter-spacing:-0.151200px;}
.lsa_c00373{letter-spacing:-0.046872px;}
.ls10_c00373{letter-spacing:-0.043200px;}
.ls14_c00373{letter-spacing:-0.036000px;}
.lsb_c00373{letter-spacing:-0.031248px;}
.lsd_c00373{letter-spacing:-0.028800px;}
.lse_c00373{letter-spacing:-0.021600px;}
.ls9_c00373{letter-spacing:-0.015624px;}
.lsc_c00373{letter-spacing:-0.014400px;}
.ls11_c00373{letter-spacing:-0.007200px;}
.ls7_c00373{letter-spacing:0.000000px;}
.ls4_c00373{letter-spacing:0.007200px;}
.ls2_c00373{letter-spacing:0.014400px;}
.ls5_c00373{letter-spacing:0.021600px;}
.ls6_c00373{letter-spacing:0.028728px;}
.lsf_c00373{letter-spacing:0.036000px;}
.ls0_c00373{letter-spacing:0.036072px;}
.ls3_c00373{letter-spacing:0.054756px;}
.ls12_c00373{letter-spacing:0.093600px;}
.ls1_c00373{letter-spacing:34.450920px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00373{word-spacing:-19.514376px;}
.ws1_c00373{word-spacing:-10.584756px;}
.ws2_c00373{word-spacing:-0.306612px;}
.ws5_c00373{word-spacing:-0.117180px;}
.ws16_c00373{word-spacing:-0.093600px;}
.ws4_c00373{word-spacing:-0.046872px;}
.wsa_c00373{word-spacing:-0.021600px;}
.ws2d_c00373{word-spacing:-0.014364px;}
.ws2c_c00373{word-spacing:-0.009576px;}
.ws3_c00373{word-spacing:0.000000px;}
.ws1d_c00373{word-spacing:0.007200px;}
.ws2b_c00373{word-spacing:0.014400px;}
.wse_c00373{word-spacing:0.684000px;}
.wsd_c00373{word-spacing:0.763200px;}
.wsc_c00373{word-spacing:1.404000px;}
.wsb_c00373{word-spacing:1.425600px;}
.ws8_c00373{word-spacing:3.211200px;}
.ws9_c00373{word-spacing:3.261600px;}
.ws7_c00373{word-spacing:3.888000px;}
.ws29_c00373{word-spacing:3.902400px;}
.ws6_c00373{word-spacing:3.924000px;}
.ws2a_c00373{word-spacing:3.974400px;}
.ws1c_c00373{word-spacing:4.305600px;}
.ws1b_c00373{word-spacing:4.370400px;}
.ws1e_c00373{word-spacing:4.622400px;}
.ws1f_c00373{word-spacing:4.723200px;}
.ws12_c00373{word-spacing:4.759200px;}
.ws11_c00373{word-spacing:4.773600px;}
.ws24_c00373{word-spacing:6.084000px;}
.ws23_c00373{word-spacing:6.120000px;}
.ws20_c00373{word-spacing:6.523200px;}
.ws14_c00373{word-spacing:7.920000px;}
.ws17_c00373{word-spacing:7.934400px;}
.ws13_c00373{word-spacing:7.984800px;}
.ws18_c00373{word-spacing:9.028800px;}
.ws22_c00373{word-spacing:9.302400px;}
.ws21_c00373{word-spacing:9.446400px;}
.ws25_c00373{word-spacing:11.196000px;}
.ws26_c00373{word-spacing:11.239200px;}
.ws15_c00373{word-spacing:12.614400px;}
.ws28_c00373{word-spacing:15.141600px;}
.ws27_c00373{word-spacing:15.177600px;}
.ws19_c00373{word-spacing:20.887200px;}
.ws1a_c00373{word-spacing:20.966400px;}
.ws10_c00373{word-spacing:28.440000px;}
.wsf_c00373{word-spacing:28.519200px;}
._0_c00373{margin-left:-1.022040px;}
._1_c00373{width:1.152000px;}
.fc0_c00373{color:rgb(0,0,0);}
.fs4_c00373{font-size:42.120000px;}
.fs5_c00373{font-size:47.880000px;}
.fs2_c00373{font-size:54.000000px;}
.fs0_c00373{font-size:60.120000px;}
.fs1_c00373{font-size:72.000000px;}
.fs3_c00373{font-size:78.120000px;}
.y0_c00373{bottom:0.000000px;}
.y3_c00373{bottom:57.450450px;}
.y4_c00373{bottom:61.410450px;}
.y23_c00373{bottom:113.702250px;}
.y22_c00373{bottom:132.064230px;}
.y21_c00373{bottom:150.330450px;}
.y20_c00373{bottom:165.540450px;}
.y1f_c00373{bottom:186.240450px;}
.y1e_c00373{bottom:206.940450px;}
.y1d_c00373{bottom:312.060450px;}
.y1c_c00373{bottom:346.530450px;}
.y1b_c00373{bottom:380.910450px;}
.y1a_c00373{bottom:415.380450px;}
.y19_c00373{bottom:449.760450px;}
.y18_c00373{bottom:484.230450px;}
.y17_c00373{bottom:518.610450px;}
.y16_c00373{bottom:553.080450px;}
.y15_c00373{bottom:587.460450px;}
.y14_c00373{bottom:621.930450px;}
.y13_c00373{bottom:656.310450px;}
.y12_c00373{bottom:690.780450px;}
.y11_c00373{bottom:725.160450px;}
.y10_c00373{bottom:759.630450px;}
.yf_c00373{bottom:794.010450px;}
.ye_c00373{bottom:828.480450px;}
.yd_c00373{bottom:862.860450px;}
.yc_c00373{bottom:897.330450px;}
.yb_c00373{bottom:931.710450px;}
.ya_c00373{bottom:966.180450px;}
.y9_c00373{bottom:1000.560450px;}
.y8_c00373{bottom:1035.030450px;}
.y7_c00373{bottom:1069.410450px;}
.y6_c00373{bottom:1103.880450px;}
.y5_c00373{bottom:1139.880450px;}
.y2_c00373{bottom:1173.810450px;}
.y1_c00373{bottom:1196.850450px;}
.h2_c00373{height:47.988281px;}
.h7_c00373{height:49.937344px;}
.h1_c00373{height:50.315273px;}
.h3_c00373{height:56.320312px;}
.h5_c00373{height:60.257812px;}
.h6_c00373{height:65.130820px;}
.h4_c00373{height:81.476719px;}
.h0_c00373{height:1263.000000px;}
.w1_c00373{width:892.500000px;}
.w0_c00373{width:892.830000px;}
.x0_c00373{left:0.000000px;}
.x2_c00373{left:127.620000px;}
.x5_c00373{left:180.720000px;}
.x4_c00373{left:435.240000px;}
.x3_c00373{left:446.490000px;}
.x1_c00373{left:490.770000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.v1_c00373{vertical-align:26.560000pt;}
.ls13_c00373{letter-spacing:-0.236800pt;}
.ls8_c00373{letter-spacing:-0.134400pt;}
.lsa_c00373{letter-spacing:-0.041664pt;}
.ls10_c00373{letter-spacing:-0.038400pt;}
.ls14_c00373{letter-spacing:-0.032000pt;}
.lsb_c00373{letter-spacing:-0.027776pt;}
.lsd_c00373{letter-spacing:-0.025600pt;}
.lse_c00373{letter-spacing:-0.019200pt;}
.ls9_c00373{letter-spacing:-0.013888pt;}
.lsc_c00373{letter-spacing:-0.012800pt;}
.ls11_c00373{letter-spacing:-0.006400pt;}
.ls7_c00373{letter-spacing:0.000000pt;}
.ls4_c00373{letter-spacing:0.006400pt;}
.ls2_c00373{letter-spacing:0.012800pt;}
.ls5_c00373{letter-spacing:0.019200pt;}
.ls6_c00373{letter-spacing:0.025536pt;}
.lsf_c00373{letter-spacing:0.032000pt;}
.ls0_c00373{letter-spacing:0.032064pt;}
.ls3_c00373{letter-spacing:0.048672pt;}
.ls12_c00373{letter-spacing:0.083200pt;}
.ls1_c00373{letter-spacing:30.623040pt;}
.ws0_c00373{word-spacing:-17.346112pt;}
.ws1_c00373{word-spacing:-9.408672pt;}
.ws2_c00373{word-spacing:-0.272544pt;}
.ws5_c00373{word-spacing:-0.104160pt;}
.ws16_c00373{word-spacing:-0.083200pt;}
.ws4_c00373{word-spacing:-0.041664pt;}
.wsa_c00373{word-spacing:-0.019200pt;}
.ws2d_c00373{word-spacing:-0.012768pt;}
.ws2c_c00373{word-spacing:-0.008512pt;}
.ws3_c00373{word-spacing:0.000000pt;}
.ws1d_c00373{word-spacing:0.006400pt;}
.ws2b_c00373{word-spacing:0.012800pt;}
.wse_c00373{word-spacing:0.608000pt;}
.wsd_c00373{word-spacing:0.678400pt;}
.wsc_c00373{word-spacing:1.248000pt;}
.wsb_c00373{word-spacing:1.267200pt;}
.ws8_c00373{word-spacing:2.854400pt;}
.ws9_c00373{word-spacing:2.899200pt;}
.ws7_c00373{word-spacing:3.456000pt;}
.ws29_c00373{word-spacing:3.468800pt;}
.ws6_c00373{word-spacing:3.488000pt;}
.ws2a_c00373{word-spacing:3.532800pt;}
.ws1c_c00373{word-spacing:3.827200pt;}
.ws1b_c00373{word-spacing:3.884800pt;}
.ws1e_c00373{word-spacing:4.108800pt;}
.ws1f_c00373{word-spacing:4.198400pt;}
.ws12_c00373{word-spacing:4.230400pt;}
.ws11_c00373{word-spacing:4.243200pt;}
.ws24_c00373{word-spacing:5.408000pt;}
.ws23_c00373{word-spacing:5.440000pt;}
.ws20_c00373{word-spacing:5.798400pt;}
.ws14_c00373{word-spacing:7.040000pt;}
.ws17_c00373{word-spacing:7.052800pt;}
.ws13_c00373{word-spacing:7.097600pt;}
.ws18_c00373{word-spacing:8.025600pt;}
.ws22_c00373{word-spacing:8.268800pt;}
.ws21_c00373{word-spacing:8.396800pt;}
.ws25_c00373{word-spacing:9.952000pt;}
.ws26_c00373{word-spacing:9.990400pt;}
.ws15_c00373{word-spacing:11.212800pt;}
.ws28_c00373{word-spacing:13.459200pt;}
.ws27_c00373{word-spacing:13.491200pt;}
.ws19_c00373{word-spacing:18.566400pt;}
.ws1a_c00373{word-spacing:18.636800pt;}
.ws10_c00373{word-spacing:25.280000pt;}
.wsf_c00373{word-spacing:25.350400pt;}
._0_c00373{margin-left:-0.908480pt;}
._1_c00373{width:1.024000pt;}
.fs4_c00373{font-size:37.440000pt;}
.fs5_c00373{font-size:42.560000pt;}
.fs2_c00373{font-size:48.000000pt;}
.fs0_c00373{font-size:53.440000pt;}
.fs1_c00373{font-size:64.000000pt;}
.fs3_c00373{font-size:69.440000pt;}
.y0_c00373{bottom:0.000000pt;}
.y3_c00373{bottom:51.067067pt;}
.y4_c00373{bottom:54.587067pt;}
.y23_c00373{bottom:101.068667pt;}
.y22_c00373{bottom:117.390427pt;}
.y21_c00373{bottom:133.627067pt;}
.y20_c00373{bottom:147.147067pt;}
.y1f_c00373{bottom:165.547067pt;}
.y1e_c00373{bottom:183.947067pt;}
.y1d_c00373{bottom:277.387067pt;}
.y1c_c00373{bottom:308.027067pt;}
.y1b_c00373{bottom:338.587067pt;}
.y1a_c00373{bottom:369.227067pt;}
.y19_c00373{bottom:399.787067pt;}
.y18_c00373{bottom:430.427067pt;}
.y17_c00373{bottom:460.987067pt;}
.y16_c00373{bottom:491.627067pt;}
.y15_c00373{bottom:522.187067pt;}
.y14_c00373{bottom:552.827067pt;}
.y13_c00373{bottom:583.387067pt;}
.y12_c00373{bottom:614.027067pt;}
.y11_c00373{bottom:644.587067pt;}
.y10_c00373{bottom:675.227067pt;}
.yf_c00373{bottom:705.787067pt;}
.ye_c00373{bottom:736.427067pt;}
.yd_c00373{bottom:766.987067pt;}
.yc_c00373{bottom:797.627067pt;}
.yb_c00373{bottom:828.187067pt;}
.ya_c00373{bottom:858.827067pt;}
.y9_c00373{bottom:889.387067pt;}
.y8_c00373{bottom:920.027067pt;}
.y7_c00373{bottom:950.587067pt;}
.y6_c00373{bottom:981.227067pt;}
.y5_c00373{bottom:1013.227067pt;}
.y2_c00373{bottom:1043.387067pt;}
.y1_c00373{bottom:1063.867067pt;}
.h2_c00373{height:42.656250pt;}
.h7_c00373{height:44.388750pt;}
.h1_c00373{height:44.724687pt;}
.h3_c00373{height:50.062500pt;}
.h5_c00373{height:53.562500pt;}
.h6_c00373{height:57.894062pt;}
.h4_c00373{height:72.423750pt;}
.h0_c00373{height:1122.666667pt;}
.w1_c00373{width:793.333333pt;}
.w0_c00373{width:793.626667pt;}
.x0_c00373{left:0.000000pt;}
.x2_c00373{left:113.440000pt;}
.x5_c00373{left:160.640000pt;}
.x4_c00373{left:386.880000pt;}
.x3_c00373{left:396.880000pt;}
.x1_c00373{left:436.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_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_afce46a499c3e6c91e3179ac.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.100098;font-style:normal;font-weight:normal;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_1bc40593786374c4a8716b07.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;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_c00374;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c00374{vertical-align:-15.120000px;}
.v0_c00374{vertical-align:0.000000px;}
.v1_c00374{vertical-align:15.840000px;}
.v2_c00374{vertical-align:29.880000px;}
.lsd_c00374{letter-spacing:-0.151200px;}
.ls13_c00374{letter-spacing:-0.028800px;}
.ls11_c00374{letter-spacing:-0.024048px;}
.ls12_c00374{letter-spacing:-0.021600px;}
.lsf_c00374{letter-spacing:-0.014400px;}
.lse_c00374{letter-spacing:-0.007200px;}
.lsc_c00374{letter-spacing:0.000000px;}
.ls6_c00374{letter-spacing:0.007200px;}
.ls7_c00374{letter-spacing:0.021600px;}
.ls9_c00374{letter-spacing:0.023940px;}
.lsb_c00374{letter-spacing:0.033516px;}
.ls5_c00374{letter-spacing:0.036000px;}
.lsa_c00374{letter-spacing:0.043092px;}
.ls4_c00374{letter-spacing:0.043200px;}
.ls8_c00374{letter-spacing:0.047880px;}
.ls0_c00374{letter-spacing:0.048096px;}
.ls2_c00374{letter-spacing:0.054756px;}
.ls10_c00374{letter-spacing:0.093600px;}
.ls3_c00374{letter-spacing:0.136080px;}
.ls1_c00374{letter-spacing:1212.120000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00374{word-spacing:-10.584756px;}
.ws1_c00374{word-spacing:-9.856080px;}
.ws1e_c00374{word-spacing:-0.023940px;}
.ws1f_c00374{word-spacing:-0.014364px;}
.ws3_c00374{word-spacing:0.000000px;}
.ws2_c00374{word-spacing:0.042084px;}
.ws6_c00374{word-spacing:0.050400px;}
.ws14_c00374{word-spacing:0.100800px;}
.ws7_c00374{word-spacing:0.114228px;}
.ws1b_c00374{word-spacing:1.152000px;}
.ws1a_c00374{word-spacing:1.166400px;}
.ws12_c00374{word-spacing:1.850400px;}
.wsc_c00374{word-spacing:2.131200px;}
.wsb_c00374{word-spacing:2.181600px;}
.ws16_c00374{word-spacing:2.498400px;}
.ws17_c00374{word-spacing:2.584800px;}
.ws15_c00374{word-spacing:4.672800px;}
.ws18_c00374{word-spacing:5.032800px;}
.ws19_c00374{word-spacing:5.061600px;}
.wsf_c00374{word-spacing:5.774400px;}
.ws10_c00374{word-spacing:5.839200px;}
.ws1c_c00374{word-spacing:7.890624px;}
.ws1d_c00374{word-spacing:7.914564px;}
.ws11_c00374{word-spacing:8.323200px;}
.wsa_c00374{word-spacing:10.101600px;}
.ws5_c00374{word-spacing:11.419200px;}
.ws4_c00374{word-spacing:11.462400px;}
.wsd_c00374{word-spacing:11.577600px;}
.wse_c00374{word-spacing:11.635200px;}
.ws8_c00374{word-spacing:21.196800px;}
.ws9_c00374{word-spacing:21.240000px;}
.ws13_c00374{word-spacing:25.567200px;}
._0_c00374{margin-left:-1.322640px;}
._1_c00374{width:1.008000px;}
.fc0_c00374{color:rgb(0,0,0);}
.fs4_c00374{font-size:38.880000px;}
.fs3_c00374{font-size:42.120000px;}
.fs5_c00374{font-size:47.880000px;}
.fs1_c00374{font-size:54.000000px;}
.fs0_c00374{font-size:60.120000px;}
.fs2_c00374{font-size:72.000000px;}
.y0_c00374{bottom:0.000000px;}
.y3_c00374{bottom:57.450450px;}
.y1c_c00374{bottom:113.706750px;}
.y1b_c00374{bottom:132.068730px;}
.y1a_c00374{bottom:150.334950px;}
.y19_c00374{bottom:164.100450px;}
.y18_c00374{bottom:179.310600px;}
.y17_c00374{bottom:200.010600px;}
.y16_c00374{bottom:220.710450px;}
.y15_c00374{bottom:295.320450px;}
.y14_c00374{bottom:329.790450px;}
.y13_c00374{bottom:364.170450px;}
.y12_c00374{bottom:398.640450px;}
.y11_c00374{bottom:433.020450px;}
.y10_c00374{bottom:467.490450px;}
.yf_c00374{bottom:501.870450px;}
.ye_c00374{bottom:536.340450px;}
.yd_c00374{bottom:570.720450px;}
.yc_c00374{bottom:605.190450px;}
.yb_c00374{bottom:639.570450px;}
.ya_c00374{bottom:674.040450px;}
.y9_c00374{bottom:708.420450px;}
.y8_c00374{bottom:742.890450px;}
.y7_c00374{bottom:779.250450px;}
.y6_c00374{bottom:792.120450px;}
.y5_c00374{bottom:1106.760450px;}
.y4_c00374{bottom:1141.140450px;}
.y2_c00374{bottom:1177.860450px;}
.y1_c00374{bottom:1196.850450px;}
.h7_c00374{height:47.988281px;}
.h6_c00374{height:47.988881px;}
.h8_c00374{height:49.937344px;}
.h1_c00374{height:50.315273px;}
.h2_c00374{height:56.320312px;}
.h4_c00374{height:60.257812px;}
.h5_c00374{height:65.130820px;}
.h3_c00374{height:72.160312px;}
.h0_c00374{height:1263.000000px;}
.w1_c00374{width:892.500000px;}
.w0_c00374{width:892.830000px;}
.x0_c00374{left:0.000000px;}
.x1_c00374{left:127.620000px;}
.x5_c00374{left:154.432800px;}
.x2_c00374{left:180.720000px;}
.x4_c00374{left:291.060000px;}
.x3_c00374{left:801.900000px;}
@media print{
.v3_c00374{vertical-align:-13.440000pt;}
.v0_c00374{vertical-align:0.000000pt;}
.v1_c00374{vertical-align:14.080000pt;}
.v2_c00374{vertical-align:26.560000pt;}
.lsd_c00374{letter-spacing:-0.134400pt;}
.ls13_c00374{letter-spacing:-0.025600pt;}
.ls11_c00374{letter-spacing:-0.021376pt;}
.ls12_c00374{letter-spacing:-0.019200pt;}
.lsf_c00374{letter-spacing:-0.012800pt;}
.lse_c00374{letter-spacing:-0.006400pt;}
.lsc_c00374{letter-spacing:0.000000pt;}
.ls6_c00374{letter-spacing:0.006400pt;}
.ls7_c00374{letter-spacing:0.019200pt;}
.ls9_c00374{letter-spacing:0.021280pt;}
.lsb_c00374{letter-spacing:0.029792pt;}
.ls5_c00374{letter-spacing:0.032000pt;}
.lsa_c00374{letter-spacing:0.038304pt;}
.ls4_c00374{letter-spacing:0.038400pt;}
.ls8_c00374{letter-spacing:0.042560pt;}
.ls0_c00374{letter-spacing:0.042752pt;}
.ls2_c00374{letter-spacing:0.048672pt;}
.ls10_c00374{letter-spacing:0.083200pt;}
.ls3_c00374{letter-spacing:0.120960pt;}
.ls1_c00374{letter-spacing:1077.440000pt;}
.ws0_c00374{word-spacing:-9.408672pt;}
.ws1_c00374{word-spacing:-8.760960pt;}
.ws1e_c00374{word-spacing:-0.021280pt;}
.ws1f_c00374{word-spacing:-0.012768pt;}
.ws3_c00374{word-spacing:0.000000pt;}
.ws2_c00374{word-spacing:0.037408pt;}
.ws6_c00374{word-spacing:0.044800pt;}
.ws14_c00374{word-spacing:0.089600pt;}
.ws7_c00374{word-spacing:0.101536pt;}
.ws1b_c00374{word-spacing:1.024000pt;}
.ws1a_c00374{word-spacing:1.036800pt;}
.ws12_c00374{word-spacing:1.644800pt;}
.wsc_c00374{word-spacing:1.894400pt;}
.wsb_c00374{word-spacing:1.939200pt;}
.ws16_c00374{word-spacing:2.220800pt;}
.ws17_c00374{word-spacing:2.297600pt;}
.ws15_c00374{word-spacing:4.153600pt;}
.ws18_c00374{word-spacing:4.473600pt;}
.ws19_c00374{word-spacing:4.499200pt;}
.wsf_c00374{word-spacing:5.132800pt;}
.ws10_c00374{word-spacing:5.190400pt;}
.ws1c_c00374{word-spacing:7.013888pt;}
.ws1d_c00374{word-spacing:7.035168pt;}
.ws11_c00374{word-spacing:7.398400pt;}
.wsa_c00374{word-spacing:8.979200pt;}
.ws5_c00374{word-spacing:10.150400pt;}
.ws4_c00374{word-spacing:10.188800pt;}
.wsd_c00374{word-spacing:10.291200pt;}
.wse_c00374{word-spacing:10.342400pt;}
.ws8_c00374{word-spacing:18.841600pt;}
.ws9_c00374{word-spacing:18.880000pt;}
.ws13_c00374{word-spacing:22.726400pt;}
._0_c00374{margin-left:-1.175680pt;}
._1_c00374{width:0.896000pt;}
.fs4_c00374{font-size:34.560000pt;}
.fs3_c00374{font-size:37.440000pt;}
.fs5_c00374{font-size:42.560000pt;}
.fs1_c00374{font-size:48.000000pt;}
.fs0_c00374{font-size:53.440000pt;}
.fs2_c00374{font-size:64.000000pt;}
.y0_c00374{bottom:0.000000pt;}
.y3_c00374{bottom:51.067067pt;}
.y1c_c00374{bottom:101.072667pt;}
.y1b_c00374{bottom:117.394427pt;}
.y1a_c00374{bottom:133.631067pt;}
.y19_c00374{bottom:145.867067pt;}
.y18_c00374{bottom:159.387200pt;}
.y17_c00374{bottom:177.787200pt;}
.y16_c00374{bottom:196.187067pt;}
.y15_c00374{bottom:262.507067pt;}
.y14_c00374{bottom:293.147067pt;}
.y13_c00374{bottom:323.707067pt;}
.y12_c00374{bottom:354.347067pt;}
.y11_c00374{bottom:384.907067pt;}
.y10_c00374{bottom:415.547067pt;}
.yf_c00374{bottom:446.107067pt;}
.ye_c00374{bottom:476.747067pt;}
.yd_c00374{bottom:507.307067pt;}
.yc_c00374{bottom:537.947067pt;}
.yb_c00374{bottom:568.507067pt;}
.ya_c00374{bottom:599.147067pt;}
.y9_c00374{bottom:629.707067pt;}
.y8_c00374{bottom:660.347067pt;}
.y7_c00374{bottom:692.667067pt;}
.y6_c00374{bottom:704.107067pt;}
.y5_c00374{bottom:983.787067pt;}
.y4_c00374{bottom:1014.347067pt;}
.y2_c00374{bottom:1046.987067pt;}
.y1_c00374{bottom:1063.867067pt;}
.h7_c00374{height:42.656250pt;}
.h6_c00374{height:42.656783pt;}
.h8_c00374{height:44.388750pt;}
.h1_c00374{height:44.724687pt;}
.h2_c00374{height:50.062500pt;}
.h4_c00374{height:53.562500pt;}
.h5_c00374{height:57.894063pt;}
.h3_c00374{height:64.142500pt;}
.h0_c00374{height:1122.666667pt;}
.w1_c00374{width:793.333333pt;}
.w0_c00374{width:793.626667pt;}
.x0_c00374{left:0.000000pt;}
.x1_c00374{left:113.440000pt;}
.x5_c00374{left:137.273600pt;}
.x2_c00374{left:160.640000pt;}
.x4_c00374{left:258.720000pt;}
.x3_c00374{left:712.800000pt;}
}





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

.ir_c00375:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00375;src:url('chunks/assets/font_3baab8cd8a1b26438d57e752.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00375;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00375;src:url('chunks/assets/font_0ee507bf390f0ed7ceb6c389.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00375;src:url('chunks/assets/font_f96bbe39f2b0a61069a584ae.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00375;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00375{font-family:ff5_c00375;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_c00375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.v1_c00375{vertical-align:29.880000px;}
.lsa_c00375{letter-spacing:-0.151200px;}
.ls12_c00375{letter-spacing:-0.057600px;}
.lsd_c00375{letter-spacing:-0.054684px;}
.lse_c00375{letter-spacing:-0.039060px;}
.lsb_c00375{letter-spacing:-0.036000px;}
.ls10_c00375{letter-spacing:-0.028800px;}
.lsf_c00375{letter-spacing:-0.021600px;}
.lsc_c00375{letter-spacing:-0.014400px;}
.ls11_c00375{letter-spacing:-0.007200px;}
.ls9_c00375{letter-spacing:0.000000px;}
.ls1_c00375{letter-spacing:0.007200px;}
.ls2_c00375{letter-spacing:0.007812px;}
.ls5_c00375{letter-spacing:0.014400px;}
.ls7_c00375{letter-spacing:0.023940px;}
.ls6_c00375{letter-spacing:0.028728px;}
.ls14_c00375{letter-spacing:0.028800px;}
.ls0_c00375{letter-spacing:0.036072px;}
.ls8_c00375{letter-spacing:0.038304px;}
.ls4_c00375{letter-spacing:0.054756px;}
.ls13_c00375{letter-spacing:0.093600px;}
.ls3_c00375{letter-spacing:28.670040px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00375{word-spacing:-19.537812px;}
.ws2_c00375{word-spacing:-17.985600px;}
.ws1_c00375{word-spacing:-10.584756px;}
.ws3_c00375{word-spacing:-0.306612px;}
.ws9_c00375{word-spacing:-0.109368px;}
.wsa_c00375{word-spacing:-0.054684px;}
.ws19_c00375{word-spacing:-0.050400px;}
.ws2f_c00375{word-spacing:-0.019152px;}
.ws2d_c00375{word-spacing:-0.009576px;}
.ws7_c00375{word-spacing:-0.007200px;}
.ws2e_c00375{word-spacing:-0.004788px;}
.ws4_c00375{word-spacing:0.000000px;}
.ws26_c00375{word-spacing:0.028800px;}
.ws8_c00375{word-spacing:0.086400px;}
.ws25_c00375{word-spacing:0.705600px;}
.ws6_c00375{word-spacing:0.820800px;}
.ws5_c00375{word-spacing:0.871200px;}
.ws22_c00375{word-spacing:1.807200px;}
.wsd_c00375{word-spacing:2.152800px;}
.wse_c00375{word-spacing:2.246400px;}
.ws29_c00375{word-spacing:2.872800px;}
.ws2a_c00375{word-spacing:2.937600px;}
.ws27_c00375{word-spacing:4.730400px;}
.ws28_c00375{word-spacing:4.788000px;}
.ws1b_c00375{word-spacing:5.083200px;}
.ws1a_c00375{word-spacing:5.097600px;}
.ws17_c00375{word-spacing:5.817600px;}
.ws16_c00375{word-spacing:5.832000px;}
.wsc_c00375{word-spacing:6.105600px;}
.wsb_c00375{word-spacing:6.141600px;}
.ws21_c00375{word-spacing:6.408000px;}
.ws20_c00375{word-spacing:6.501600px;}
.ws14_c00375{word-spacing:9.352800px;}
.ws15_c00375{word-spacing:9.410400px;}
.ws2c_c00375{word-spacing:9.691200px;}
.ws2b_c00375{word-spacing:9.734400px;}
.ws24_c00375{word-spacing:11.160000px;}
.ws23_c00375{word-spacing:11.232000px;}
.ws11_c00375{word-spacing:12.657600px;}
.ws1f_c00375{word-spacing:12.945600px;}
.ws1e_c00375{word-spacing:13.118400px;}
.ws13_c00375{word-spacing:13.356000px;}
.ws18_c00375{word-spacing:14.047200px;}
.ws12_c00375{word-spacing:14.450400px;}
.ws1d_c00375{word-spacing:15.840000px;}
.ws1c_c00375{word-spacing:15.861600px;}
.ws10_c00375{word-spacing:16.185600px;}
.wsf_c00375{word-spacing:16.214400px;}
._0_c00375{margin-left:-1.022040px;}
._1_c00375{width:1.008000px;}
.fc0_c00375{color:rgb(0,0,0);}
.fs4_c00375{font-size:42.120000px;}
.fs5_c00375{font-size:47.880000px;}
.fs2_c00375{font-size:54.000000px;}
.fs0_c00375{font-size:60.120000px;}
.fs1_c00375{font-size:72.000000px;}
.fs3_c00375{font-size:78.120000px;}
.y0_c00375{bottom:0.000000px;}
.y3_c00375{bottom:57.450450px;}
.y4_c00375{bottom:61.410450px;}
.y25_c00375{bottom:113.704200px;}
.y24_c00375{bottom:132.066180px;}
.y23_c00375{bottom:150.332400px;}
.y22_c00375{bottom:168.598620px;}
.y21_c00375{bottom:186.960600px;}
.y20_c00375{bottom:202.170450px;}
.y1f_c00375{bottom:222.870450px;}
.y1e_c00375{bottom:243.570450px;}
.y1d_c00375{bottom:294.060450px;}
.y1c_c00375{bottom:328.530450px;}
.y1b_c00375{bottom:362.910450px;}
.y1a_c00375{bottom:397.380450px;}
.y19_c00375{bottom:431.760450px;}
.y18_c00375{bottom:466.230450px;}
.y17_c00375{bottom:500.610450px;}
.y16_c00375{bottom:535.080450px;}
.y15_c00375{bottom:569.460450px;}
.y14_c00375{bottom:603.930450px;}
.y13_c00375{bottom:638.310450px;}
.y12_c00375{bottom:672.780450px;}
.y11_c00375{bottom:707.160450px;}
.y10_c00375{bottom:741.630450px;}
.yf_c00375{bottom:776.010450px;}
.ye_c00375{bottom:810.480450px;}
.yd_c00375{bottom:844.860450px;}
.yc_c00375{bottom:879.330450px;}
.yb_c00375{bottom:913.710450px;}
.ya_c00375{bottom:948.180450px;}
.y9_c00375{bottom:982.560450px;}
.y8_c00375{bottom:1017.030450px;}
.y7_c00375{bottom:1053.030450px;}
.y6_c00375{bottom:1106.760450px;}
.y5_c00375{bottom:1141.140450px;}
.y2_c00375{bottom:1173.810450px;}
.y1_c00375{bottom:1196.850450px;}
.h2_c00375{height:47.988281px;}
.h8_c00375{height:49.937344px;}
.h1_c00375{height:50.315273px;}
.h3_c00375{height:56.320312px;}
.h4_c00375{height:60.257812px;}
.h6_c00375{height:65.130820px;}
.h7_c00375{height:65.131420px;}
.h5_c00375{height:81.476719px;}
.h0_c00375{height:1263.000000px;}
.w1_c00375{width:892.500000px;}
.w0_c00375{width:892.830000px;}
.x0_c00375{left:0.000000px;}
.x2_c00375{left:127.620000px;}
.x5_c00375{left:180.720000px;}
.x4_c00375{left:435.240000px;}
.x3_c00375{left:446.490000px;}
.x1_c00375{left:490.770000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.v1_c00375{vertical-align:26.560000pt;}
.lsa_c00375{letter-spacing:-0.134400pt;}
.ls12_c00375{letter-spacing:-0.051200pt;}
.lsd_c00375{letter-spacing:-0.048608pt;}
.lse_c00375{letter-spacing:-0.034720pt;}
.lsb_c00375{letter-spacing:-0.032000pt;}
.ls10_c00375{letter-spacing:-0.025600pt;}
.lsf_c00375{letter-spacing:-0.019200pt;}
.lsc_c00375{letter-spacing:-0.012800pt;}
.ls11_c00375{letter-spacing:-0.006400pt;}
.ls9_c00375{letter-spacing:0.000000pt;}
.ls1_c00375{letter-spacing:0.006400pt;}
.ls2_c00375{letter-spacing:0.006944pt;}
.ls5_c00375{letter-spacing:0.012800pt;}
.ls7_c00375{letter-spacing:0.021280pt;}
.ls6_c00375{letter-spacing:0.025536pt;}
.ls14_c00375{letter-spacing:0.025600pt;}
.ls0_c00375{letter-spacing:0.032064pt;}
.ls8_c00375{letter-spacing:0.034048pt;}
.ls4_c00375{letter-spacing:0.048672pt;}
.ls13_c00375{letter-spacing:0.083200pt;}
.ls3_c00375{letter-spacing:25.484480pt;}
.ws0_c00375{word-spacing:-17.366944pt;}
.ws2_c00375{word-spacing:-15.987200pt;}
.ws1_c00375{word-spacing:-9.408672pt;}
.ws3_c00375{word-spacing:-0.272544pt;}
.ws9_c00375{word-spacing:-0.097216pt;}
.wsa_c00375{word-spacing:-0.048608pt;}
.ws19_c00375{word-spacing:-0.044800pt;}
.ws2f_c00375{word-spacing:-0.017024pt;}
.ws2d_c00375{word-spacing:-0.008512pt;}
.ws7_c00375{word-spacing:-0.006400pt;}
.ws2e_c00375{word-spacing:-0.004256pt;}
.ws4_c00375{word-spacing:0.000000pt;}
.ws26_c00375{word-spacing:0.025600pt;}
.ws8_c00375{word-spacing:0.076800pt;}
.ws25_c00375{word-spacing:0.627200pt;}
.ws6_c00375{word-spacing:0.729600pt;}
.ws5_c00375{word-spacing:0.774400pt;}
.ws22_c00375{word-spacing:1.606400pt;}
.wsd_c00375{word-spacing:1.913600pt;}
.wse_c00375{word-spacing:1.996800pt;}
.ws29_c00375{word-spacing:2.553600pt;}
.ws2a_c00375{word-spacing:2.611200pt;}
.ws27_c00375{word-spacing:4.204800pt;}
.ws28_c00375{word-spacing:4.256000pt;}
.ws1b_c00375{word-spacing:4.518400pt;}
.ws1a_c00375{word-spacing:4.531200pt;}
.ws17_c00375{word-spacing:5.171200pt;}
.ws16_c00375{word-spacing:5.184000pt;}
.wsc_c00375{word-spacing:5.427200pt;}
.wsb_c00375{word-spacing:5.459200pt;}
.ws21_c00375{word-spacing:5.696000pt;}
.ws20_c00375{word-spacing:5.779200pt;}
.ws14_c00375{word-spacing:8.313600pt;}
.ws15_c00375{word-spacing:8.364800pt;}
.ws2c_c00375{word-spacing:8.614400pt;}
.ws2b_c00375{word-spacing:8.652800pt;}
.ws24_c00375{word-spacing:9.920000pt;}
.ws23_c00375{word-spacing:9.984000pt;}
.ws11_c00375{word-spacing:11.251200pt;}
.ws1f_c00375{word-spacing:11.507200pt;}
.ws1e_c00375{word-spacing:11.660800pt;}
.ws13_c00375{word-spacing:11.872000pt;}
.ws18_c00375{word-spacing:12.486400pt;}
.ws12_c00375{word-spacing:12.844800pt;}
.ws1d_c00375{word-spacing:14.080000pt;}
.ws1c_c00375{word-spacing:14.099200pt;}
.ws10_c00375{word-spacing:14.387200pt;}
.wsf_c00375{word-spacing:14.412800pt;}
._0_c00375{margin-left:-0.908480pt;}
._1_c00375{width:0.896000pt;}
.fs4_c00375{font-size:37.440000pt;}
.fs5_c00375{font-size:42.560000pt;}
.fs2_c00375{font-size:48.000000pt;}
.fs0_c00375{font-size:53.440000pt;}
.fs1_c00375{font-size:64.000000pt;}
.fs3_c00375{font-size:69.440000pt;}
.y0_c00375{bottom:0.000000pt;}
.y3_c00375{bottom:51.067067pt;}
.y4_c00375{bottom:54.587067pt;}
.y25_c00375{bottom:101.070400pt;}
.y24_c00375{bottom:117.392160pt;}
.y23_c00375{bottom:133.628800pt;}
.y22_c00375{bottom:149.865440pt;}
.y21_c00375{bottom:166.187200pt;}
.y20_c00375{bottom:179.707067pt;}
.y1f_c00375{bottom:198.107067pt;}
.y1e_c00375{bottom:216.507067pt;}
.y1d_c00375{bottom:261.387067pt;}
.y1c_c00375{bottom:292.027067pt;}
.y1b_c00375{bottom:322.587067pt;}
.y1a_c00375{bottom:353.227067pt;}
.y19_c00375{bottom:383.787067pt;}
.y18_c00375{bottom:414.427067pt;}
.y17_c00375{bottom:444.987067pt;}
.y16_c00375{bottom:475.627067pt;}
.y15_c00375{bottom:506.187067pt;}
.y14_c00375{bottom:536.827067pt;}
.y13_c00375{bottom:567.387067pt;}
.y12_c00375{bottom:598.027067pt;}
.y11_c00375{bottom:628.587067pt;}
.y10_c00375{bottom:659.227067pt;}
.yf_c00375{bottom:689.787067pt;}
.ye_c00375{bottom:720.427067pt;}
.yd_c00375{bottom:750.987067pt;}
.yc_c00375{bottom:781.627067pt;}
.yb_c00375{bottom:812.187067pt;}
.ya_c00375{bottom:842.827067pt;}
.y9_c00375{bottom:873.387067pt;}
.y8_c00375{bottom:904.027067pt;}
.y7_c00375{bottom:936.027067pt;}
.y6_c00375{bottom:983.787067pt;}
.y5_c00375{bottom:1014.347067pt;}
.y2_c00375{bottom:1043.387067pt;}
.y1_c00375{bottom:1063.867067pt;}
.h2_c00375{height:42.656250pt;}
.h8_c00375{height:44.388750pt;}
.h1_c00375{height:44.724687pt;}
.h3_c00375{height:50.062500pt;}
.h4_c00375{height:53.562500pt;}
.h6_c00375{height:57.894063pt;}
.h7_c00375{height:57.894596pt;}
.h5_c00375{height:72.423750pt;}
.h0_c00375{height:1122.666667pt;}
.w1_c00375{width:793.333333pt;}
.w0_c00375{width:793.626667pt;}
.x0_c00375{left:0.000000pt;}
.x2_c00375{left:113.440000pt;}
.x5_c00375{left:160.640000pt;}
.x4_c00375{left:386.880000pt;}
.x3_c00375{left:396.880000pt;}
.x1_c00375{left:436.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_c00376 {
    display:none;
  }
  .loading-indicator_c00376.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00376 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00376 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00376" -> "#page-container .classname_c00376")
 */
.pf_c00376 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00376 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00376 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00376 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00376 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00376 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00376 {overflow:visible;}
  }
}
.c_c00376 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00376 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00376:after { /* webkit #35443 */
  content: '';
}
.t_c00376:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00376 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00376 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00376 { /* info for Javascript */
  display:none;
}
.l_c00376 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00376 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00376 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00376:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00376;src:url('chunks/assets/font_e0d84735a54466d65a59ae1c.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00376;src:url('chunks/assets/font_57b5038206d66b39769bd657.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;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_c00376;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00376;src:url('chunks/assets/font_e4b350828c1a6d2a44e146ef.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00376;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00376{font-family:ff5_c00376;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_c00376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.v1_c00376{vertical-align:15.840000px;}
.v2_c00376{vertical-align:29.880000px;}
.ls9_c00376{letter-spacing:-0.151200px;}
.ls10_c00376{letter-spacing:-0.062496px;}
.ls11_c00376{letter-spacing:-0.050400px;}
.ls12_c00376{letter-spacing:-0.043200px;}
.ls13_c00376{letter-spacing:-0.036000px;}
.lsa_c00376{letter-spacing:-0.028800px;}
.lsf_c00376{letter-spacing:-0.023436px;}
.lse_c00376{letter-spacing:-0.021600px;}
.lsb_c00376{letter-spacing:-0.014400px;}
.lsc_c00376{letter-spacing:-0.007200px;}
.ls8_c00376{letter-spacing:0.000000px;}
.ls3_c00376{letter-spacing:0.007200px;}
.ls6_c00376{letter-spacing:0.014400px;}
.ls5_c00376{letter-spacing:0.028800px;}
.ls7_c00376{letter-spacing:0.033516px;}
.ls0_c00376{letter-spacing:0.048096px;}
.ls2_c00376{letter-spacing:0.054756px;}
.lsd_c00376{letter-spacing:0.093600px;}
.ls4_c00376{letter-spacing:11.796120px;}
.ls1_c00376{letter-spacing:1212.120000px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00376{word-spacing:-19.506564px;}
.ws0_c00376{word-spacing:-10.584756px;}
.wsb_c00376{word-spacing:-0.086400px;}
.wsf_c00376{word-spacing:-0.031248px;}
.ws2b_c00376{word-spacing:-0.014364px;}
.ws2c_c00376{word-spacing:-0.009576px;}
.ws3_c00376{word-spacing:0.000000px;}
.wsa_c00376{word-spacing:0.007200px;}
.ws2_c00376{word-spacing:0.042084px;}
.ws14_c00376{word-spacing:0.050400px;}
.ws1e_c00376{word-spacing:0.720000px;}
.ws5_c00376{word-spacing:0.734400px;}
.ws4_c00376{word-spacing:0.748800px;}
.ws17_c00376{word-spacing:2.548800px;}
.ws18_c00376{word-spacing:2.606400px;}
.ws13_c00376{word-spacing:2.865600px;}
.ws12_c00376{word-spacing:2.894400px;}
.ws22_c00376{word-spacing:2.923200px;}
.ws21_c00376{word-spacing:3.031200px;}
.ws16_c00376{word-spacing:4.291200px;}
.ws15_c00376{word-spacing:4.406400px;}
.ws26_c00376{word-spacing:4.593600px;}
.ws27_c00376{word-spacing:4.716000px;}
.ws1a_c00376{word-spacing:6.940800px;}
.ws19_c00376{word-spacing:6.998400px;}
.ws1b_c00376{word-spacing:7.020000px;}
.ws2a_c00376{word-spacing:7.531200px;}
.ws29_c00376{word-spacing:7.560000px;}
.ws28_c00376{word-spacing:7.603200px;}
.ws25_c00376{word-spacing:8.611200px;}
.ws24_c00376{word-spacing:8.668800px;}
.wse_c00376{word-spacing:12.650400px;}
.ws11_c00376{word-spacing:14.392800px;}
.ws23_c00376{word-spacing:14.767200px;}
.ws7_c00376{word-spacing:16.963200px;}
.ws6_c00376{word-spacing:17.078400px;}
.ws1f_c00376{word-spacing:17.280000px;}
.ws20_c00376{word-spacing:17.388000px;}
.ws10_c00376{word-spacing:17.654400px;}
.ws9_c00376{word-spacing:26.632800px;}
.ws1d_c00376{word-spacing:26.661600px;}
.ws1c_c00376{word-spacing:26.726400px;}
.ws8_c00376{word-spacing:26.740800px;}
.wsc_c00376{word-spacing:37.080000px;}
.wsd_c00376{word-spacing:37.159200px;}
._0_c00376{margin-left:-1.322640px;}
._1_c00376{width:1.152000px;}
.fc0_c00376{color:rgb(0,0,0);}
.fs3_c00376{font-size:42.120000px;}
.fs5_c00376{font-size:47.880000px;}
.fs1_c00376{font-size:54.000000px;}
.fs0_c00376{font-size:60.120000px;}
.fs2_c00376{font-size:72.000000px;}
.fs4_c00376{font-size:78.120000px;}
.y0_c00376{bottom:0.000000px;}
.y3_c00376{bottom:57.450450px;}
.y23_c00376{bottom:113.704200px;}
.y22_c00376{bottom:132.066180px;}
.y21_c00376{bottom:150.332400px;}
.y20_c00376{bottom:168.598620px;}
.y1f_c00376{bottom:186.960600px;}
.y1e_c00376{bottom:202.170450px;}
.y1d_c00376{bottom:222.870450px;}
.y1c_c00376{bottom:243.570450px;}
.y1b_c00376{bottom:319.530450px;}
.y1a_c00376{bottom:353.910450px;}
.y19_c00376{bottom:388.380450px;}
.y18_c00376{bottom:422.760450px;}
.y17_c00376{bottom:457.230450px;}
.y16_c00376{bottom:491.610450px;}
.y15_c00376{bottom:526.080450px;}
.y14_c00376{bottom:560.460450px;}
.y13_c00376{bottom:594.930450px;}
.y12_c00376{bottom:629.310450px;}
.y11_c00376{bottom:663.780450px;}
.y10_c00376{bottom:698.160450px;}
.yf_c00376{bottom:732.630600px;}
.ye_c00376{bottom:767.010600px;}
.yd_c00376{bottom:801.480600px;}
.yc_c00376{bottom:835.860600px;}
.yb_c00376{bottom:880.950450px;}
.ya_c00376{bottom:934.590450px;}
.y9_c00376{bottom:969.060450px;}
.y8_c00376{bottom:1003.440450px;}
.y7_c00376{bottom:1037.910450px;}
.y6_c00376{bottom:1072.290450px;}
.y5_c00376{bottom:1106.760450px;}
.y4_c00376{bottom:1141.140450px;}
.y2_c00376{bottom:1177.860450px;}
.y1_c00376{bottom:1196.850450px;}
.h9_c00376{height:47.988281px;}
.ha_c00376{height:49.937344px;}
.h1_c00376{height:50.315273px;}
.h2_c00376{height:56.320312px;}
.h5_c00376{height:60.257812px;}
.h7_c00376{height:65.130220px;}
.h4_c00376{height:65.130820px;}
.h8_c00376{height:65.131420px;}
.h3_c00376{height:72.160312px;}
.h6_c00376{height:81.476719px;}
.h0_c00376{height:1263.000000px;}
.w1_c00376{width:892.500000px;}
.w0_c00376{width:892.830000px;}
.x0_c00376{left:0.000000px;}
.x1_c00376{left:127.620000px;}
.x2_c00376{left:180.720000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.v1_c00376{vertical-align:14.080000pt;}
.v2_c00376{vertical-align:26.560000pt;}
.ls9_c00376{letter-spacing:-0.134400pt;}
.ls10_c00376{letter-spacing:-0.055552pt;}
.ls11_c00376{letter-spacing:-0.044800pt;}
.ls12_c00376{letter-spacing:-0.038400pt;}
.ls13_c00376{letter-spacing:-0.032000pt;}
.lsa_c00376{letter-spacing:-0.025600pt;}
.lsf_c00376{letter-spacing:-0.020832pt;}
.lse_c00376{letter-spacing:-0.019200pt;}
.lsb_c00376{letter-spacing:-0.012800pt;}
.lsc_c00376{letter-spacing:-0.006400pt;}
.ls8_c00376{letter-spacing:0.000000pt;}
.ls3_c00376{letter-spacing:0.006400pt;}
.ls6_c00376{letter-spacing:0.012800pt;}
.ls5_c00376{letter-spacing:0.025600pt;}
.ls7_c00376{letter-spacing:0.029792pt;}
.ls0_c00376{letter-spacing:0.042752pt;}
.ls2_c00376{letter-spacing:0.048672pt;}
.lsd_c00376{letter-spacing:0.083200pt;}
.ls4_c00376{letter-spacing:10.485440pt;}
.ls1_c00376{letter-spacing:1077.440000pt;}
.ws1_c00376{word-spacing:-17.339168pt;}
.ws0_c00376{word-spacing:-9.408672pt;}
.wsb_c00376{word-spacing:-0.076800pt;}
.wsf_c00376{word-spacing:-0.027776pt;}
.ws2b_c00376{word-spacing:-0.012768pt;}
.ws2c_c00376{word-spacing:-0.008512pt;}
.ws3_c00376{word-spacing:0.000000pt;}
.wsa_c00376{word-spacing:0.006400pt;}
.ws2_c00376{word-spacing:0.037408pt;}
.ws14_c00376{word-spacing:0.044800pt;}
.ws1e_c00376{word-spacing:0.640000pt;}
.ws5_c00376{word-spacing:0.652800pt;}
.ws4_c00376{word-spacing:0.665600pt;}
.ws17_c00376{word-spacing:2.265600pt;}
.ws18_c00376{word-spacing:2.316800pt;}
.ws13_c00376{word-spacing:2.547200pt;}
.ws12_c00376{word-spacing:2.572800pt;}
.ws22_c00376{word-spacing:2.598400pt;}
.ws21_c00376{word-spacing:2.694400pt;}
.ws16_c00376{word-spacing:3.814400pt;}
.ws15_c00376{word-spacing:3.916800pt;}
.ws26_c00376{word-spacing:4.083200pt;}
.ws27_c00376{word-spacing:4.192000pt;}
.ws1a_c00376{word-spacing:6.169600pt;}
.ws19_c00376{word-spacing:6.220800pt;}
.ws1b_c00376{word-spacing:6.240000pt;}
.ws2a_c00376{word-spacing:6.694400pt;}
.ws29_c00376{word-spacing:6.720000pt;}
.ws28_c00376{word-spacing:6.758400pt;}
.ws25_c00376{word-spacing:7.654400pt;}
.ws24_c00376{word-spacing:7.705600pt;}
.wse_c00376{word-spacing:11.244800pt;}
.ws11_c00376{word-spacing:12.793600pt;}
.ws23_c00376{word-spacing:13.126400pt;}
.ws7_c00376{word-spacing:15.078400pt;}
.ws6_c00376{word-spacing:15.180800pt;}
.ws1f_c00376{word-spacing:15.360000pt;}
.ws20_c00376{word-spacing:15.456000pt;}
.ws10_c00376{word-spacing:15.692800pt;}
.ws9_c00376{word-spacing:23.673600pt;}
.ws1d_c00376{word-spacing:23.699200pt;}
.ws1c_c00376{word-spacing:23.756800pt;}
.ws8_c00376{word-spacing:23.769600pt;}
.wsc_c00376{word-spacing:32.960000pt;}
.wsd_c00376{word-spacing:33.030400pt;}
._0_c00376{margin-left:-1.175680pt;}
._1_c00376{width:1.024000pt;}
.fs3_c00376{font-size:37.440000pt;}
.fs5_c00376{font-size:42.560000pt;}
.fs1_c00376{font-size:48.000000pt;}
.fs0_c00376{font-size:53.440000pt;}
.fs2_c00376{font-size:64.000000pt;}
.fs4_c00376{font-size:69.440000pt;}
.y0_c00376{bottom:0.000000pt;}
.y3_c00376{bottom:51.067067pt;}
.y23_c00376{bottom:101.070400pt;}
.y22_c00376{bottom:117.392160pt;}
.y21_c00376{bottom:133.628800pt;}
.y20_c00376{bottom:149.865440pt;}
.y1f_c00376{bottom:166.187200pt;}
.y1e_c00376{bottom:179.707067pt;}
.y1d_c00376{bottom:198.107067pt;}
.y1c_c00376{bottom:216.507067pt;}
.y1b_c00376{bottom:284.027067pt;}
.y1a_c00376{bottom:314.587067pt;}
.y19_c00376{bottom:345.227067pt;}
.y18_c00376{bottom:375.787067pt;}
.y17_c00376{bottom:406.427067pt;}
.y16_c00376{bottom:436.987067pt;}
.y15_c00376{bottom:467.627067pt;}
.y14_c00376{bottom:498.187067pt;}
.y13_c00376{bottom:528.827067pt;}
.y12_c00376{bottom:559.387067pt;}
.y11_c00376{bottom:590.027067pt;}
.y10_c00376{bottom:620.587067pt;}
.yf_c00376{bottom:651.227200pt;}
.ye_c00376{bottom:681.787200pt;}
.yd_c00376{bottom:712.427200pt;}
.yc_c00376{bottom:742.987200pt;}
.yb_c00376{bottom:783.067067pt;}
.ya_c00376{bottom:830.747067pt;}
.y9_c00376{bottom:861.387067pt;}
.y8_c00376{bottom:891.947067pt;}
.y7_c00376{bottom:922.587067pt;}
.y6_c00376{bottom:953.147067pt;}
.y5_c00376{bottom:983.787067pt;}
.y4_c00376{bottom:1014.347067pt;}
.y2_c00376{bottom:1046.987067pt;}
.y1_c00376{bottom:1063.867067pt;}
.h9_c00376{height:42.656250pt;}
.ha_c00376{height:44.388750pt;}
.h1_c00376{height:44.724687pt;}
.h2_c00376{height:50.062500pt;}
.h5_c00376{height:53.562500pt;}
.h7_c00376{height:57.893529pt;}
.h4_c00376{height:57.894063pt;}
.h8_c00376{height:57.894596pt;}
.h3_c00376{height:64.142500pt;}
.h6_c00376{height:72.423750pt;}
.h0_c00376{height:1122.666667pt;}
.w1_c00376{width:793.333333pt;}
.w0_c00376{width:793.626667pt;}
.x0_c00376{left:0.000000pt;}
.x1_c00376{left:113.440000pt;}
.x2_c00376{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_c00377 {
    display:none;
  }
  .loading-indicator_c00377.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00377 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00377 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00377" -> "#page-container .classname_c00377")
 */
.pf_c00377 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00377 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00377 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00377 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00377 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00377 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00377 {overflow:visible;}
  }
}
.c_c00377 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00377 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00377:after { /* webkit #35443 */
  content: '';
}
.t_c00377:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00377 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00377 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00377 { /* info for Javascript */
  display:none;
}
.l_c00377 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00377 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00377 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00377:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00377;src:url('chunks/assets/font_101e0b708afb86cab2190a5a.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00377;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_90ee6bd6c6815021bb3da8d9.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;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_c00377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.v1_c00377{vertical-align:29.880000px;}
.lsb_c00377{letter-spacing:-0.151200px;}
.lsd_c00377{letter-spacing:-0.036000px;}
.lsc_c00377{letter-spacing:-0.028800px;}
.ls11_c00377{letter-spacing:-0.021600px;}
.lsf_c00377{letter-spacing:-0.014400px;}
.lse_c00377{letter-spacing:-0.007200px;}
.lsa_c00377{letter-spacing:0.000000px;}
.ls3_c00377{letter-spacing:0.007200px;}
.ls2_c00377{letter-spacing:0.014400px;}
.ls10_c00377{letter-spacing:0.021600px;}
.ls6_c00377{letter-spacing:0.023940px;}
.ls4_c00377{letter-spacing:0.028728px;}
.ls7_c00377{letter-spacing:0.033516px;}
.ls0_c00377{letter-spacing:0.036072px;}
.ls5_c00377{letter-spacing:0.038304px;}
.ls9_c00377{letter-spacing:0.043092px;}
.ls12_c00377{letter-spacing:0.050400px;}
.ls8_c00377{letter-spacing:0.052668px;}
.ls1_c00377{letter-spacing:0.054756px;}
.ls13_c00377{letter-spacing:0.093600px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00377{word-spacing:-17.978400px;}
.ws0_c00377{word-spacing:-10.584756px;}
.ws2_c00377{word-spacing:-0.306612px;}
.ws1f_c00377{word-spacing:-0.172800px;}
.ws20_c00377{word-spacing:-0.093600px;}
.ws2f_c00377{word-spacing:-0.023940px;}
.ws2c_c00377{word-spacing:-0.014364px;}
.ws2a_c00377{word-spacing:-0.009576px;}
.ws2b_c00377{word-spacing:-0.004788px;}
.ws3_c00377{word-spacing:0.000000px;}
.ws7_c00377{word-spacing:0.007200px;}
.ws6_c00377{word-spacing:0.122400px;}
.wsa_c00377{word-spacing:0.338400px;}
.ws9_c00377{word-spacing:0.367200px;}
.ws29_c00377{word-spacing:1.058148px;}
.wse_c00377{word-spacing:1.065600px;}
.ws13_c00377{word-spacing:1.432800px;}
.ws15_c00377{word-spacing:1.447200px;}
.ws14_c00377{word-spacing:1.569600px;}
.ws11_c00377{word-spacing:1.735200px;}
.ws12_c00377{word-spacing:1.864800px;}
.ws24_c00377{word-spacing:2.167200px;}
.ws25_c00377{word-spacing:2.217600px;}
.ws28_c00377{word-spacing:2.868012px;}
.ws21_c00377{word-spacing:3.290400px;}
.ws1c_c00377{word-spacing:4.536324px;}
.ws1b_c00377{word-spacing:4.665600px;}
.ws17_c00377{word-spacing:4.687200px;}
.ws16_c00377{word-spacing:4.694400px;}
.ws10_c00377{word-spacing:4.708800px;}
.ws1d_c00377{word-spacing:4.744800px;}
.ws8_c00377{word-spacing:5.803200px;}
.ws1a_c00377{word-spacing:6.141600px;}
.ws2d_c00377{word-spacing:6.803748px;}
.ws2e_c00377{word-spacing:6.818112px;}
.wsb_c00377{word-spacing:7.221600px;}
.wsf_c00377{word-spacing:7.372800px;}
.ws23_c00377{word-spacing:8.272800px;}
.ws22_c00377{word-spacing:8.308800px;}
.ws5_c00377{word-spacing:10.800000px;}
.ws4_c00377{word-spacing:10.929600px;}
.wsd_c00377{word-spacing:11.541600px;}
.wsc_c00377{word-spacing:11.599200px;}
.ws26_c00377{word-spacing:15.854400px;}
.ws27_c00377{word-spacing:15.876000px;}
.ws19_c00377{word-spacing:21.189600px;}
.ws18_c00377{word-spacing:21.297600px;}
.ws1e_c00377{word-spacing:25.221600px;}
._2_c00377{margin-left:-6.120000px;}
._0_c00377{margin-left:-1.022040px;}
._1_c00377{width:1.080000px;}
.fc0_c00377{color:rgb(0,0,0);}
.fs3_c00377{font-size:42.120000px;}
.fs4_c00377{font-size:47.880000px;}
.fs2_c00377{font-size:54.000000px;}
.fs0_c00377{font-size:60.120000px;}
.fs1_c00377{font-size:72.000000px;}
.y0_c00377{bottom:0.000000px;}
.y3_c00377{bottom:57.450450px;}
.y4_c00377{bottom:61.410450px;}
.y26_c00377{bottom:113.715570px;}
.y25_c00377{bottom:132.077550px;}
.y24_c00377{bottom:150.343770px;}
.y23_c00377{bottom:164.109270px;}
.y22_c00377{bottom:182.471250px;}
.y21_c00377{bottom:200.737470px;}
.y20_c00377{bottom:219.003690px;}
.y1f_c00377{bottom:232.864950px;}
.y1e_c00377{bottom:246.630450px;}
.y1d_c00377{bottom:261.840450px;}
.y1c_c00377{bottom:282.540450px;}
.y1b_c00377{bottom:303.240450px;}
.y1a_c00377{bottom:418.260450px;}
.y19_c00377{bottom:452.640450px;}
.y18_c00377{bottom:487.110450px;}
.y17_c00377{bottom:521.490450px;}
.y16_c00377{bottom:555.960450px;}
.y15_c00377{bottom:590.340450px;}
.y14_c00377{bottom:624.810450px;}
.y13_c00377{bottom:659.190450px;}
.y12_c00377{bottom:693.660450px;}
.y11_c00377{bottom:728.040450px;}
.y10_c00377{bottom:762.510450px;}
.yf_c00377{bottom:796.890450px;}
.ye_c00377{bottom:831.360450px;}
.yd_c00377{bottom:865.740450px;}
.yc_c00377{bottom:900.210450px;}
.yb_c00377{bottom:934.590450px;}
.ya_c00377{bottom:969.060450px;}
.y9_c00377{bottom:1003.440450px;}
.y8_c00377{bottom:1037.910450px;}
.y7_c00377{bottom:1072.290450px;}
.y6_c00377{bottom:1106.760450px;}
.y5_c00377{bottom:1141.140450px;}
.y2_c00377{bottom:1173.810450px;}
.y1_c00377{bottom:1196.850450px;}
.h2_c00377{height:47.988281px;}
.h7_c00377{height:49.937344px;}
.h1_c00377{height:50.315273px;}
.h3_c00377{height:56.320312px;}
.h4_c00377{height:60.257812px;}
.h5_c00377{height:65.130820px;}
.h6_c00377{height:65.131420px;}
.h0_c00377{height:1263.000000px;}
.w1_c00377{width:892.500000px;}
.w0_c00377{width:892.830000px;}
.x0_c00377{left:0.000000px;}
.x2_c00377{left:127.620000px;}
.x6_c00377{left:154.444770px;}
.x5_c00377{left:180.720000px;}
.x4_c00377{left:435.240000px;}
.x3_c00377{left:446.490000px;}
.x1_c00377{left:490.770000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.v1_c00377{vertical-align:26.560000pt;}
.lsb_c00377{letter-spacing:-0.134400pt;}
.lsd_c00377{letter-spacing:-0.032000pt;}
.lsc_c00377{letter-spacing:-0.025600pt;}
.ls11_c00377{letter-spacing:-0.019200pt;}
.lsf_c00377{letter-spacing:-0.012800pt;}
.lse_c00377{letter-spacing:-0.006400pt;}
.lsa_c00377{letter-spacing:0.000000pt;}
.ls3_c00377{letter-spacing:0.006400pt;}
.ls2_c00377{letter-spacing:0.012800pt;}
.ls10_c00377{letter-spacing:0.019200pt;}
.ls6_c00377{letter-spacing:0.021280pt;}
.ls4_c00377{letter-spacing:0.025536pt;}
.ls7_c00377{letter-spacing:0.029792pt;}
.ls0_c00377{letter-spacing:0.032064pt;}
.ls5_c00377{letter-spacing:0.034048pt;}
.ls9_c00377{letter-spacing:0.038304pt;}
.ls12_c00377{letter-spacing:0.044800pt;}
.ls8_c00377{letter-spacing:0.046816pt;}
.ls1_c00377{letter-spacing:0.048672pt;}
.ls13_c00377{letter-spacing:0.083200pt;}
.ws1_c00377{word-spacing:-15.980800pt;}
.ws0_c00377{word-spacing:-9.408672pt;}
.ws2_c00377{word-spacing:-0.272544pt;}
.ws1f_c00377{word-spacing:-0.153600pt;}
.ws20_c00377{word-spacing:-0.083200pt;}
.ws2f_c00377{word-spacing:-0.021280pt;}
.ws2c_c00377{word-spacing:-0.012768pt;}
.ws2a_c00377{word-spacing:-0.008512pt;}
.ws2b_c00377{word-spacing:-0.004256pt;}
.ws3_c00377{word-spacing:0.000000pt;}
.ws7_c00377{word-spacing:0.006400pt;}
.ws6_c00377{word-spacing:0.108800pt;}
.wsa_c00377{word-spacing:0.300800pt;}
.ws9_c00377{word-spacing:0.326400pt;}
.ws29_c00377{word-spacing:0.940576pt;}
.wse_c00377{word-spacing:0.947200pt;}
.ws13_c00377{word-spacing:1.273600pt;}
.ws15_c00377{word-spacing:1.286400pt;}
.ws14_c00377{word-spacing:1.395200pt;}
.ws11_c00377{word-spacing:1.542400pt;}
.ws12_c00377{word-spacing:1.657600pt;}
.ws24_c00377{word-spacing:1.926400pt;}
.ws25_c00377{word-spacing:1.971200pt;}
.ws28_c00377{word-spacing:2.549344pt;}
.ws21_c00377{word-spacing:2.924800pt;}
.ws1c_c00377{word-spacing:4.032288pt;}
.ws1b_c00377{word-spacing:4.147200pt;}
.ws17_c00377{word-spacing:4.166400pt;}
.ws16_c00377{word-spacing:4.172800pt;}
.ws10_c00377{word-spacing:4.185600pt;}
.ws1d_c00377{word-spacing:4.217600pt;}
.ws8_c00377{word-spacing:5.158400pt;}
.ws1a_c00377{word-spacing:5.459200pt;}
.ws2d_c00377{word-spacing:6.047776pt;}
.ws2e_c00377{word-spacing:6.060544pt;}
.wsb_c00377{word-spacing:6.419200pt;}
.wsf_c00377{word-spacing:6.553600pt;}
.ws23_c00377{word-spacing:7.353600pt;}
.ws22_c00377{word-spacing:7.385600pt;}
.ws5_c00377{word-spacing:9.600000pt;}
.ws4_c00377{word-spacing:9.715200pt;}
.wsd_c00377{word-spacing:10.259200pt;}
.wsc_c00377{word-spacing:10.310400pt;}
.ws26_c00377{word-spacing:14.092800pt;}
.ws27_c00377{word-spacing:14.112000pt;}
.ws19_c00377{word-spacing:18.835200pt;}
.ws18_c00377{word-spacing:18.931200pt;}
.ws1e_c00377{word-spacing:22.419200pt;}
._2_c00377{margin-left:-5.440000pt;}
._0_c00377{margin-left:-0.908480pt;}
._1_c00377{width:0.960000pt;}
.fs3_c00377{font-size:37.440000pt;}
.fs4_c00377{font-size:42.560000pt;}
.fs2_c00377{font-size:48.000000pt;}
.fs0_c00377{font-size:53.440000pt;}
.fs1_c00377{font-size:64.000000pt;}
.y0_c00377{bottom:0.000000pt;}
.y3_c00377{bottom:51.067067pt;}
.y4_c00377{bottom:54.587067pt;}
.y26_c00377{bottom:101.080507pt;}
.y25_c00377{bottom:117.402267pt;}
.y24_c00377{bottom:133.638907pt;}
.y23_c00377{bottom:145.874907pt;}
.y22_c00377{bottom:162.196667pt;}
.y21_c00377{bottom:178.433307pt;}
.y20_c00377{bottom:194.669947pt;}
.y1f_c00377{bottom:206.991067pt;}
.y1e_c00377{bottom:219.227067pt;}
.y1d_c00377{bottom:232.747067pt;}
.y1c_c00377{bottom:251.147067pt;}
.y1b_c00377{bottom:269.547067pt;}
.y1a_c00377{bottom:371.787067pt;}
.y19_c00377{bottom:402.347067pt;}
.y18_c00377{bottom:432.987067pt;}
.y17_c00377{bottom:463.547067pt;}
.y16_c00377{bottom:494.187067pt;}
.y15_c00377{bottom:524.747067pt;}
.y14_c00377{bottom:555.387067pt;}
.y13_c00377{bottom:585.947067pt;}
.y12_c00377{bottom:616.587067pt;}
.y11_c00377{bottom:647.147067pt;}
.y10_c00377{bottom:677.787067pt;}
.yf_c00377{bottom:708.347067pt;}
.ye_c00377{bottom:738.987067pt;}
.yd_c00377{bottom:769.547067pt;}
.yc_c00377{bottom:800.187067pt;}
.yb_c00377{bottom:830.747067pt;}
.ya_c00377{bottom:861.387067pt;}
.y9_c00377{bottom:891.947067pt;}
.y8_c00377{bottom:922.587067pt;}
.y7_c00377{bottom:953.147067pt;}
.y6_c00377{bottom:983.787067pt;}
.y5_c00377{bottom:1014.347067pt;}
.y2_c00377{bottom:1043.387067pt;}
.y1_c00377{bottom:1063.867067pt;}
.h2_c00377{height:42.656250pt;}
.h7_c00377{height:44.388750pt;}
.h1_c00377{height:44.724687pt;}
.h3_c00377{height:50.062500pt;}
.h4_c00377{height:53.562500pt;}
.h5_c00377{height:57.894063pt;}
.h6_c00377{height:57.894596pt;}
.h0_c00377{height:1122.666667pt;}
.w1_c00377{width:793.333333pt;}
.w0_c00377{width:793.626667pt;}
.x0_c00377{left:0.000000pt;}
.x2_c00377{left:113.440000pt;}
.x6_c00377{left:137.284240pt;}
.x5_c00377{left:160.640000pt;}
.x4_c00377{left:386.880000pt;}
.x3_c00377{left:396.880000pt;}
.x1_c00377{left:436.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_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_7e9a2d94877fc1ebe874a611.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.100098;font-style:normal;font-weight:normal;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_5817cd76f363a4aeda05bdcd.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;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_c00378;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00378{vertical-align:15.840000px;}
.v2_c00378{vertical-align:29.880000px;}
.lsc_c00378{letter-spacing:-0.151200px;}
.ls13_c00378{letter-spacing:-0.043200px;}
.ls10_c00378{letter-spacing:-0.036000px;}
.ls12_c00378{letter-spacing:-0.028800px;}
.lsd_c00378{letter-spacing:-0.021600px;}
.lsf_c00378{letter-spacing:-0.014400px;}
.ls11_c00378{letter-spacing:-0.007200px;}
.lsb_c00378{letter-spacing:0.000000px;}
.ls6_c00378{letter-spacing:0.007200px;}
.ls5_c00378{letter-spacing:0.014400px;}
.lsa_c00378{letter-spacing:0.023940px;}
.ls9_c00378{letter-spacing:0.028728px;}
.ls4_c00378{letter-spacing:0.028800px;}
.ls7_c00378{letter-spacing:0.033516px;}
.ls3_c00378{letter-spacing:0.036000px;}
.ls8_c00378{letter-spacing:0.043092px;}
.ls0_c00378{letter-spacing:0.048096px;}
.ls2_c00378{letter-spacing:0.054756px;}
.lse_c00378{letter-spacing:0.093600px;}
.ls1_c00378{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00378{word-spacing:-17.971200px;}
.ws2_c00378{word-spacing:-17.956800px;}
.ws0_c00378{word-spacing:-10.584756px;}
.ws28_c00378{word-spacing:-0.023940px;}
.ws27_c00378{word-spacing:-0.014364px;}
.ws29_c00378{word-spacing:-0.009576px;}
.ws2a_c00378{word-spacing:-0.004788px;}
.ws4_c00378{word-spacing:0.000000px;}
.ws3_c00378{word-spacing:0.042084px;}
.ws10_c00378{word-spacing:1.101600px;}
.wsf_c00378{word-spacing:1.483200px;}
.ws19_c00378{word-spacing:1.814400px;}
.ws1a_c00378{word-spacing:1.886400px;}
.ws1f_c00378{word-spacing:5.299200px;}
.ws1e_c00378{word-spacing:5.421600px;}
.ws14_c00378{word-spacing:6.444000px;}
.ws12_c00378{word-spacing:6.494400px;}
.ws13_c00378{word-spacing:6.552000px;}
.wsd_c00378{word-spacing:7.574400px;}
.wsc_c00378{word-spacing:7.776000px;}
.wsb_c00378{word-spacing:8.683200px;}
.wsa_c00378{word-spacing:8.856000px;}
.ws21_c00378{word-spacing:9.072000px;}
.ws20_c00378{word-spacing:9.100800px;}
.ws1d_c00378{word-spacing:10.440000px;}
.ws11_c00378{word-spacing:10.821600px;}
.ws5_c00378{word-spacing:11.901600px;}
.ws6_c00378{word-spacing:11.923200px;}
.ws1b_c00378{word-spacing:12.895200px;}
.ws1c_c00378{word-spacing:13.003200px;}
.wse_c00378{word-spacing:15.847200px;}
.ws16_c00378{word-spacing:16.221600px;}
.ws15_c00378{word-spacing:16.286400px;}
.ws26_c00378{word-spacing:21.254400px;}
.ws25_c00378{word-spacing:21.333600px;}
.ws9_c00378{word-spacing:22.723200px;}
.ws8_c00378{word-spacing:22.759200px;}
.ws7_c00378{word-spacing:25.581600px;}
.ws23_c00378{word-spacing:31.204800px;}
.ws22_c00378{word-spacing:31.312800px;}
.ws24_c00378{word-spacing:31.334400px;}
.ws17_c00378{word-spacing:34.214400px;}
.ws18_c00378{word-spacing:34.221600px;}
._0_c00378{margin-left:-1.322640px;}
._1_c00378{width:1.152000px;}
.fc0_c00378{color:rgb(0,0,0);}
.fs3_c00378{font-size:42.120000px;}
.fs4_c00378{font-size:47.880000px;}
.fs1_c00378{font-size:54.000000px;}
.fs0_c00378{font-size:60.120000px;}
.fs2_c00378{font-size:72.000000px;}
.y0_c00378{bottom:0.000000px;}
.y3_c00378{bottom:57.450450px;}
.y24_c00378{bottom:129.195390px;}
.y23_c00378{bottom:147.461610px;}
.y22_c00378{bottom:165.823590px;}
.y21_c00378{bottom:184.089810px;}
.y20_c00378{bottom:202.356030px;}
.y1f_c00378{bottom:220.718010px;}
.y1e_c00378{bottom:238.984230px;}
.y1d_c00378{bottom:257.250450px;}
.y1c_c00378{bottom:272.460450px;}
.y1b_c00378{bottom:293.160450px;}
.y1a_c00378{bottom:313.860450px;}
.y19_c00378{bottom:418.260450px;}
.y18_c00378{bottom:452.640450px;}
.y17_c00378{bottom:487.110450px;}
.y16_c00378{bottom:521.490450px;}
.y15_c00378{bottom:555.960450px;}
.y14_c00378{bottom:590.340450px;}
.y13_c00378{bottom:624.810450px;}
.y12_c00378{bottom:659.190450px;}
.y11_c00378{bottom:693.660450px;}
.y10_c00378{bottom:728.040450px;}
.yf_c00378{bottom:762.510450px;}
.ye_c00378{bottom:796.890450px;}
.yd_c00378{bottom:831.360450px;}
.yc_c00378{bottom:865.740450px;}
.yb_c00378{bottom:900.210450px;}
.ya_c00378{bottom:934.590450px;}
.y9_c00378{bottom:969.060450px;}
.y8_c00378{bottom:1003.440450px;}
.y7_c00378{bottom:1037.910450px;}
.y6_c00378{bottom:1072.290450px;}
.y5_c00378{bottom:1106.760450px;}
.y4_c00378{bottom:1141.140450px;}
.y2_c00378{bottom:1177.860450px;}
.y1_c00378{bottom:1196.850450px;}
.h7_c00378{height:47.988281px;}
.h8_c00378{height:49.937344px;}
.h1_c00378{height:50.315273px;}
.h2_c00378{height:56.320312px;}
.h4_c00378{height:60.257812px;}
.h5_c00378{height:65.130820px;}
.h6_c00378{height:65.131420px;}
.h3_c00378{height:72.160312px;}
.h0_c00378{height:1263.000000px;}
.w1_c00378{width:892.500000px;}
.w0_c00378{width:892.830000px;}
.x0_c00378{left:0.000000px;}
.x1_c00378{left:127.620000px;}
.x2_c00378{left:180.720000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.v1_c00378{vertical-align:14.080000pt;}
.v2_c00378{vertical-align:26.560000pt;}
.lsc_c00378{letter-spacing:-0.134400pt;}
.ls13_c00378{letter-spacing:-0.038400pt;}
.ls10_c00378{letter-spacing:-0.032000pt;}
.ls12_c00378{letter-spacing:-0.025600pt;}
.lsd_c00378{letter-spacing:-0.019200pt;}
.lsf_c00378{letter-spacing:-0.012800pt;}
.ls11_c00378{letter-spacing:-0.006400pt;}
.lsb_c00378{letter-spacing:0.000000pt;}
.ls6_c00378{letter-spacing:0.006400pt;}
.ls5_c00378{letter-spacing:0.012800pt;}
.lsa_c00378{letter-spacing:0.021280pt;}
.ls9_c00378{letter-spacing:0.025536pt;}
.ls4_c00378{letter-spacing:0.025600pt;}
.ls7_c00378{letter-spacing:0.029792pt;}
.ls3_c00378{letter-spacing:0.032000pt;}
.ls8_c00378{letter-spacing:0.038304pt;}
.ls0_c00378{letter-spacing:0.042752pt;}
.ls2_c00378{letter-spacing:0.048672pt;}
.lse_c00378{letter-spacing:0.083200pt;}
.ls1_c00378{letter-spacing:1077.440000pt;}
.ws1_c00378{word-spacing:-15.974400pt;}
.ws2_c00378{word-spacing:-15.961600pt;}
.ws0_c00378{word-spacing:-9.408672pt;}
.ws28_c00378{word-spacing:-0.021280pt;}
.ws27_c00378{word-spacing:-0.012768pt;}
.ws29_c00378{word-spacing:-0.008512pt;}
.ws2a_c00378{word-spacing:-0.004256pt;}
.ws4_c00378{word-spacing:0.000000pt;}
.ws3_c00378{word-spacing:0.037408pt;}
.ws10_c00378{word-spacing:0.979200pt;}
.wsf_c00378{word-spacing:1.318400pt;}
.ws19_c00378{word-spacing:1.612800pt;}
.ws1a_c00378{word-spacing:1.676800pt;}
.ws1f_c00378{word-spacing:4.710400pt;}
.ws1e_c00378{word-spacing:4.819200pt;}
.ws14_c00378{word-spacing:5.728000pt;}
.ws12_c00378{word-spacing:5.772800pt;}
.ws13_c00378{word-spacing:5.824000pt;}
.wsd_c00378{word-spacing:6.732800pt;}
.wsc_c00378{word-spacing:6.912000pt;}
.wsb_c00378{word-spacing:7.718400pt;}
.wsa_c00378{word-spacing:7.872000pt;}
.ws21_c00378{word-spacing:8.064000pt;}
.ws20_c00378{word-spacing:8.089600pt;}
.ws1d_c00378{word-spacing:9.280000pt;}
.ws11_c00378{word-spacing:9.619200pt;}
.ws5_c00378{word-spacing:10.579200pt;}
.ws6_c00378{word-spacing:10.598400pt;}
.ws1b_c00378{word-spacing:11.462400pt;}
.ws1c_c00378{word-spacing:11.558400pt;}
.wse_c00378{word-spacing:14.086400pt;}
.ws16_c00378{word-spacing:14.419200pt;}
.ws15_c00378{word-spacing:14.476800pt;}
.ws26_c00378{word-spacing:18.892800pt;}
.ws25_c00378{word-spacing:18.963200pt;}
.ws9_c00378{word-spacing:20.198400pt;}
.ws8_c00378{word-spacing:20.230400pt;}
.ws7_c00378{word-spacing:22.739200pt;}
.ws23_c00378{word-spacing:27.737600pt;}
.ws22_c00378{word-spacing:27.833600pt;}
.ws24_c00378{word-spacing:27.852800pt;}
.ws17_c00378{word-spacing:30.412800pt;}
.ws18_c00378{word-spacing:30.419200pt;}
._0_c00378{margin-left:-1.175680pt;}
._1_c00378{width:1.024000pt;}
.fs3_c00378{font-size:37.440000pt;}
.fs4_c00378{font-size:42.560000pt;}
.fs1_c00378{font-size:48.000000pt;}
.fs0_c00378{font-size:53.440000pt;}
.fs2_c00378{font-size:64.000000pt;}
.y0_c00378{bottom:0.000000pt;}
.y3_c00378{bottom:51.067067pt;}
.y24_c00378{bottom:114.840347pt;}
.y23_c00378{bottom:131.076987pt;}
.y22_c00378{bottom:147.398747pt;}
.y21_c00378{bottom:163.635387pt;}
.y20_c00378{bottom:179.872027pt;}
.y1f_c00378{bottom:196.193787pt;}
.y1e_c00378{bottom:212.430427pt;}
.y1d_c00378{bottom:228.667067pt;}
.y1c_c00378{bottom:242.187067pt;}
.y1b_c00378{bottom:260.587067pt;}
.y1a_c00378{bottom:278.987067pt;}
.y19_c00378{bottom:371.787067pt;}
.y18_c00378{bottom:402.347067pt;}
.y17_c00378{bottom:432.987067pt;}
.y16_c00378{bottom:463.547067pt;}
.y15_c00378{bottom:494.187067pt;}
.y14_c00378{bottom:524.747067pt;}
.y13_c00378{bottom:555.387067pt;}
.y12_c00378{bottom:585.947067pt;}
.y11_c00378{bottom:616.587067pt;}
.y10_c00378{bottom:647.147067pt;}
.yf_c00378{bottom:677.787067pt;}
.ye_c00378{bottom:708.347067pt;}
.yd_c00378{bottom:738.987067pt;}
.yc_c00378{bottom:769.547067pt;}
.yb_c00378{bottom:800.187067pt;}
.ya_c00378{bottom:830.747067pt;}
.y9_c00378{bottom:861.387067pt;}
.y8_c00378{bottom:891.947067pt;}
.y7_c00378{bottom:922.587067pt;}
.y6_c00378{bottom:953.147067pt;}
.y5_c00378{bottom:983.787067pt;}
.y4_c00378{bottom:1014.347067pt;}
.y2_c00378{bottom:1046.987067pt;}
.y1_c00378{bottom:1063.867067pt;}
.h7_c00378{height:42.656250pt;}
.h8_c00378{height:44.388750pt;}
.h1_c00378{height:44.724687pt;}
.h2_c00378{height:50.062500pt;}
.h4_c00378{height:53.562500pt;}
.h5_c00378{height:57.894063pt;}
.h6_c00378{height:57.894596pt;}
.h3_c00378{height:64.142500pt;}
.h0_c00378{height:1122.666667pt;}
.w1_c00378{width:793.333333pt;}
.w0_c00378{width:793.626667pt;}
.x0_c00378{left:0.000000pt;}
.x1_c00378{left:113.440000pt;}
.x2_c00378{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_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_c58b07bfd37d92763f4ccceb.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00379;src:url('chunks/assets/font_ced29716eb7135729208db1c.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;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_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.v1_c00379{vertical-align:29.880000px;}
.lsc_c00379{letter-spacing:-0.151200px;}
.lse_c00379{letter-spacing:-0.108000px;}
.ls10_c00379{letter-spacing:-0.064800px;}
.ls13_c00379{letter-spacing:-0.036000px;}
.ls11_c00379{letter-spacing:-0.028800px;}
.ls12_c00379{letter-spacing:-0.021600px;}
.lsf_c00379{letter-spacing:-0.014400px;}
.lsd_c00379{letter-spacing:-0.007200px;}
.lsb_c00379{letter-spacing:0.000000px;}
.ls3_c00379{letter-spacing:0.007200px;}
.ls4_c00379{letter-spacing:0.014400px;}
.lsa_c00379{letter-spacing:0.019152px;}
.ls2_c00379{letter-spacing:0.021600px;}
.ls7_c00379{letter-spacing:0.023940px;}
.ls6_c00379{letter-spacing:0.028728px;}
.ls5_c00379{letter-spacing:0.028800px;}
.ls9_c00379{letter-spacing:0.033516px;}
.ls0_c00379{letter-spacing:0.036072px;}
.ls8_c00379{letter-spacing:0.038304px;}
.ls1_c00379{letter-spacing:0.054756px;}
.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:-10.584756px;}
.ws1_c00379{word-spacing:-0.306612px;}
.ws30_c00379{word-spacing:-0.019152px;}
.ws1d_c00379{word-spacing:-0.014400px;}
.ws2e_c00379{word-spacing:-0.009576px;}
.ws2f_c00379{word-spacing:-0.004788px;}
.ws2_c00379{word-spacing:0.000000px;}
.ws6_c00379{word-spacing:0.007200px;}
.ws15_c00379{word-spacing:0.374400px;}
.ws2d_c00379{word-spacing:0.648000px;}
.ws34_c00379{word-spacing:0.703836px;}
.ws2c_c00379{word-spacing:0.727200px;}
.wse_c00379{word-spacing:1.454400px;}
.ws1b_c00379{word-spacing:1.476000px;}
.wsf_c00379{word-spacing:1.490400px;}
.ws1c_c00379{word-spacing:1.504800px;}
.ws21_c00379{word-spacing:2.527200px;}
.ws22_c00379{word-spacing:2.570400px;}
.ws27_c00379{word-spacing:2.858400px;}
.ws31_c00379{word-spacing:2.868012px;}
.ws26_c00379{word-spacing:2.872800px;}
.ws24_c00379{word-spacing:2.944800px;}
.ws25_c00379{word-spacing:3.247200px;}
.ws29_c00379{word-spacing:3.290400px;}
.ws28_c00379{word-spacing:3.304800px;}
.ws20_c00379{word-spacing:3.535200px;}
.ws1f_c00379{word-spacing:3.621600px;}
.ws32_c00379{word-spacing:3.950100px;}
.ws3_c00379{word-spacing:4.017600px;}
.ws4_c00379{word-spacing:4.039200px;}
.ws5_c00379{word-spacing:4.068000px;}
.ws33_c00379{word-spacing:4.668300px;}
.ws13_c00379{word-spacing:5.054400px;}
.ws14_c00379{word-spacing:5.068800px;}
.ws10_c00379{word-spacing:5.407200px;}
.ws12_c00379{word-spacing:5.464800px;}
.ws11_c00379{word-spacing:5.472000px;}
.wsd_c00379{word-spacing:6.660000px;}
.wsb_c00379{word-spacing:6.796800px;}
.wsc_c00379{word-spacing:6.825600px;}
.ws1e_c00379{word-spacing:11.174400px;}
.ws2a_c00379{word-spacing:11.692800px;}
.ws2b_c00379{word-spacing:11.908800px;}
.ws17_c00379{word-spacing:12.232800px;}
.ws16_c00379{word-spacing:12.312000px;}
.ws19_c00379{word-spacing:14.011200px;}
.ws1a_c00379{word-spacing:14.025600px;}
.ws8_c00379{word-spacing:14.083200px;}
.ws7_c00379{word-spacing:14.090400px;}
.ws18_c00379{word-spacing:14.104800px;}
.ws9_c00379{word-spacing:19.792800px;}
.wsa_c00379{word-spacing:19.807200px;}
.ws23_c00379{word-spacing:28.425600px;}
._0_c00379{margin-left:-1.022040px;}
._1_c00379{width:1.065600px;}
.fc0_c00379{color:rgb(0,0,0);}
.fs3_c00379{font-size:42.120000px;}
.fs4_c00379{font-size:47.880000px;}
.fs2_c00379{font-size:54.000000px;}
.fs0_c00379{font-size:60.120000px;}
.fs1_c00379{font-size:72.000000px;}
.y0_c00379{bottom:0.000000px;}
.y3_c00379{bottom:57.450450px;}
.y4_c00379{bottom:61.410450px;}
.y2a_c00379{bottom:113.725650px;}
.y29_c00379{bottom:132.087630px;}
.y28_c00379{bottom:145.853130px;}
.y27_c00379{bottom:159.618630px;}
.y26_c00379{bottom:173.479890px;}
.y25_c00379{bottom:191.746110px;}
.y24_c00379{bottom:210.012330px;}
.y23_c00379{bottom:223.873590px;}
.y22_c00379{bottom:242.139810px;}
.y21_c00379{bottom:260.406030px;}
.y20_c00379{bottom:278.768010px;}
.y1f_c00379{bottom:297.034230px;}
.y1e_c00379{bottom:315.300450px;}
.y1d_c00379{bottom:330.510450px;}
.y1c_c00379{bottom:351.210450px;}
.y1b_c00379{bottom:371.910600px;}
.y1a_c00379{bottom:418.260600px;}
.y19_c00379{bottom:452.640600px;}
.y18_c00379{bottom:487.110450px;}
.y17_c00379{bottom:521.490450px;}
.y16_c00379{bottom:555.960450px;}
.y15_c00379{bottom:590.340450px;}
.y14_c00379{bottom:624.810450px;}
.y13_c00379{bottom:659.190450px;}
.y12_c00379{bottom:693.660450px;}
.y11_c00379{bottom:728.040450px;}
.y10_c00379{bottom:762.510450px;}
.yf_c00379{bottom:796.890450px;}
.ye_c00379{bottom:831.360450px;}
.yd_c00379{bottom:865.740450px;}
.yc_c00379{bottom:900.210450px;}
.yb_c00379{bottom:934.590450px;}
.ya_c00379{bottom:969.060450px;}
.y9_c00379{bottom:1003.440450px;}
.y8_c00379{bottom:1037.910450px;}
.y7_c00379{bottom:1072.290450px;}
.y6_c00379{bottom:1106.760450px;}
.y5_c00379{bottom:1141.140450px;}
.y2_c00379{bottom:1173.810450px;}
.y1_c00379{bottom:1196.850450px;}
.h2_c00379{height:47.988281px;}
.h7_c00379{height:49.937344px;}
.h1_c00379{height:50.315273px;}
.h3_c00379{height:56.320312px;}
.h5_c00379{height:60.257812px;}
.h4_c00379{height:65.130820px;}
.h6_c00379{height:65.131420px;}
.h0_c00379{height:1263.000000px;}
.w1_c00379{width:892.500000px;}
.w0_c00379{width:892.830000px;}
.x0_c00379{left:0.000000px;}
.x2_c00379{left:127.620000px;}
.x6_c00379{left:154.444770px;}
.x5_c00379{left:180.720000px;}
.x4_c00379{left:435.240000px;}
.x3_c00379{left:446.490000px;}
.x1_c00379{left:490.770000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.v1_c00379{vertical-align:26.560000pt;}
.lsc_c00379{letter-spacing:-0.134400pt;}
.lse_c00379{letter-spacing:-0.096000pt;}
.ls10_c00379{letter-spacing:-0.057600pt;}
.ls13_c00379{letter-spacing:-0.032000pt;}
.ls11_c00379{letter-spacing:-0.025600pt;}
.ls12_c00379{letter-spacing:-0.019200pt;}
.lsf_c00379{letter-spacing:-0.012800pt;}
.lsd_c00379{letter-spacing:-0.006400pt;}
.lsb_c00379{letter-spacing:0.000000pt;}
.ls3_c00379{letter-spacing:0.006400pt;}
.ls4_c00379{letter-spacing:0.012800pt;}
.lsa_c00379{letter-spacing:0.017024pt;}
.ls2_c00379{letter-spacing:0.019200pt;}
.ls7_c00379{letter-spacing:0.021280pt;}
.ls6_c00379{letter-spacing:0.025536pt;}
.ls5_c00379{letter-spacing:0.025600pt;}
.ls9_c00379{letter-spacing:0.029792pt;}
.ls0_c00379{letter-spacing:0.032064pt;}
.ls8_c00379{letter-spacing:0.034048pt;}
.ls1_c00379{letter-spacing:0.048672pt;}
.ws0_c00379{word-spacing:-9.408672pt;}
.ws1_c00379{word-spacing:-0.272544pt;}
.ws30_c00379{word-spacing:-0.017024pt;}
.ws1d_c00379{word-spacing:-0.012800pt;}
.ws2e_c00379{word-spacing:-0.008512pt;}
.ws2f_c00379{word-spacing:-0.004256pt;}
.ws2_c00379{word-spacing:0.000000pt;}
.ws6_c00379{word-spacing:0.006400pt;}
.ws15_c00379{word-spacing:0.332800pt;}
.ws2d_c00379{word-spacing:0.576000pt;}
.ws34_c00379{word-spacing:0.625632pt;}
.ws2c_c00379{word-spacing:0.646400pt;}
.wse_c00379{word-spacing:1.292800pt;}
.ws1b_c00379{word-spacing:1.312000pt;}
.wsf_c00379{word-spacing:1.324800pt;}
.ws1c_c00379{word-spacing:1.337600pt;}
.ws21_c00379{word-spacing:2.246400pt;}
.ws22_c00379{word-spacing:2.284800pt;}
.ws27_c00379{word-spacing:2.540800pt;}
.ws31_c00379{word-spacing:2.549344pt;}
.ws26_c00379{word-spacing:2.553600pt;}
.ws24_c00379{word-spacing:2.617600pt;}
.ws25_c00379{word-spacing:2.886400pt;}
.ws29_c00379{word-spacing:2.924800pt;}
.ws28_c00379{word-spacing:2.937600pt;}
.ws20_c00379{word-spacing:3.142400pt;}
.ws1f_c00379{word-spacing:3.219200pt;}
.ws32_c00379{word-spacing:3.511200pt;}
.ws3_c00379{word-spacing:3.571200pt;}
.ws4_c00379{word-spacing:3.590400pt;}
.ws5_c00379{word-spacing:3.616000pt;}
.ws33_c00379{word-spacing:4.149600pt;}
.ws13_c00379{word-spacing:4.492800pt;}
.ws14_c00379{word-spacing:4.505600pt;}
.ws10_c00379{word-spacing:4.806400pt;}
.ws12_c00379{word-spacing:4.857600pt;}
.ws11_c00379{word-spacing:4.864000pt;}
.wsd_c00379{word-spacing:5.920000pt;}
.wsb_c00379{word-spacing:6.041600pt;}
.wsc_c00379{word-spacing:6.067200pt;}
.ws1e_c00379{word-spacing:9.932800pt;}
.ws2a_c00379{word-spacing:10.393600pt;}
.ws2b_c00379{word-spacing:10.585600pt;}
.ws17_c00379{word-spacing:10.873600pt;}
.ws16_c00379{word-spacing:10.944000pt;}
.ws19_c00379{word-spacing:12.454400pt;}
.ws1a_c00379{word-spacing:12.467200pt;}
.ws8_c00379{word-spacing:12.518400pt;}
.ws7_c00379{word-spacing:12.524800pt;}
.ws18_c00379{word-spacing:12.537600pt;}
.ws9_c00379{word-spacing:17.593600pt;}
.wsa_c00379{word-spacing:17.606400pt;}
.ws23_c00379{word-spacing:25.267200pt;}
._0_c00379{margin-left:-0.908480pt;}
._1_c00379{width:0.947200pt;}
.fs3_c00379{font-size:37.440000pt;}
.fs4_c00379{font-size:42.560000pt;}
.fs2_c00379{font-size:48.000000pt;}
.fs0_c00379{font-size:53.440000pt;}
.fs1_c00379{font-size:64.000000pt;}
.y0_c00379{bottom:0.000000pt;}
.y3_c00379{bottom:51.067067pt;}
.y4_c00379{bottom:54.587067pt;}
.y2a_c00379{bottom:101.089467pt;}
.y29_c00379{bottom:117.411227pt;}
.y28_c00379{bottom:129.647227pt;}
.y27_c00379{bottom:141.883227pt;}
.y26_c00379{bottom:154.204347pt;}
.y25_c00379{bottom:170.440987pt;}
.y24_c00379{bottom:186.677627pt;}
.y23_c00379{bottom:198.998747pt;}
.y22_c00379{bottom:215.235387pt;}
.y21_c00379{bottom:231.472027pt;}
.y20_c00379{bottom:247.793787pt;}
.y1f_c00379{bottom:264.030427pt;}
.y1e_c00379{bottom:280.267067pt;}
.y1d_c00379{bottom:293.787067pt;}
.y1c_c00379{bottom:312.187067pt;}
.y1b_c00379{bottom:330.587200pt;}
.y1a_c00379{bottom:371.787200pt;}
.y19_c00379{bottom:402.347200pt;}
.y18_c00379{bottom:432.987067pt;}
.y17_c00379{bottom:463.547067pt;}
.y16_c00379{bottom:494.187067pt;}
.y15_c00379{bottom:524.747067pt;}
.y14_c00379{bottom:555.387067pt;}
.y13_c00379{bottom:585.947067pt;}
.y12_c00379{bottom:616.587067pt;}
.y11_c00379{bottom:647.147067pt;}
.y10_c00379{bottom:677.787067pt;}
.yf_c00379{bottom:708.347067pt;}
.ye_c00379{bottom:738.987067pt;}
.yd_c00379{bottom:769.547067pt;}
.yc_c00379{bottom:800.187067pt;}
.yb_c00379{bottom:830.747067pt;}
.ya_c00379{bottom:861.387067pt;}
.y9_c00379{bottom:891.947067pt;}
.y8_c00379{bottom:922.587067pt;}
.y7_c00379{bottom:953.147067pt;}
.y6_c00379{bottom:983.787067pt;}
.y5_c00379{bottom:1014.347067pt;}
.y2_c00379{bottom:1043.387067pt;}
.y1_c00379{bottom:1063.867067pt;}
.h2_c00379{height:42.656250pt;}
.h7_c00379{height:44.388750pt;}
.h1_c00379{height:44.724687pt;}
.h3_c00379{height:50.062500pt;}
.h5_c00379{height:53.562500pt;}
.h4_c00379{height:57.894063pt;}
.h6_c00379{height:57.894596pt;}
.h0_c00379{height:1122.666667pt;}
.w1_c00379{width:793.333333pt;}
.w0_c00379{width:793.626667pt;}
.x0_c00379{left:0.000000pt;}
.x2_c00379{left:113.440000pt;}
.x6_c00379{left:137.284240pt;}
.x5_c00379{left:160.640000pt;}
.x4_c00379{left:386.880000pt;}
.x3_c00379{left:396.880000pt;}
.x1_c00379{left:436.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_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_5132d5022adf3cea261ad5c5.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.100098;font-style:normal;font-weight:normal;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_d2e43fc65695051afb395cad.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;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_c00380;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00380;src:url('chunks/assets/font_5cec84492c02255467282681.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00380;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00380{font-family:ff5_c00380;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_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;}
.v1_c00380{vertical-align:15.840000px;}
.v2_c00380{vertical-align:29.880000px;}
.lsc_c00380{letter-spacing:-0.151200px;}
.ls17_c00380{letter-spacing:-0.108000px;}
.ls14_c00380{letter-spacing:-0.070308px;}
.ls10_c00380{letter-spacing:-0.043200px;}
.lsf_c00380{letter-spacing:-0.036000px;}
.ls13_c00380{letter-spacing:-0.028800px;}
.lse_c00380{letter-spacing:-0.021600px;}
.lsd_c00380{letter-spacing:-0.014400px;}
.ls11_c00380{letter-spacing:-0.007200px;}
.lsb_c00380{letter-spacing:0.000000px;}
.ls2_c00380{letter-spacing:0.007200px;}
.ls5_c00380{letter-spacing:0.014400px;}
.ls6_c00380{letter-spacing:0.019152px;}
.ls7_c00380{letter-spacing:0.023940px;}
.ls8_c00380{letter-spacing:0.028728px;}
.lsa_c00380{letter-spacing:0.033516px;}
.ls16_c00380{letter-spacing:0.036000px;}
.ls9_c00380{letter-spacing:0.038304px;}
.ls0_c00380{letter-spacing:0.048096px;}
.ls3_c00380{letter-spacing:0.054756px;}
.ls12_c00380{letter-spacing:0.057600px;}
.ls15_c00380{letter-spacing:0.093600px;}
.ls4_c00380{letter-spacing:6.015240px;}
.ls1_c00380{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00380{word-spacing:-19.530000px;}
.ws0_c00380{word-spacing:-17.985600px;}
.ws3_c00380{word-spacing:-17.892000px;}
.ws1_c00380{word-spacing:-10.584756px;}
.ws19_c00380{word-spacing:-0.023436px;}
.ws30_c00380{word-spacing:-0.019152px;}
.ws2f_c00380{word-spacing:-0.009576px;}
.ws2e_c00380{word-spacing:-0.004788px;}
.ws5_c00380{word-spacing:0.000000px;}
.ws21_c00380{word-spacing:0.007200px;}
.ws2a_c00380{word-spacing:0.014400px;}
.ws2d_c00380{word-spacing:0.021600px;}
.ws4_c00380{word-spacing:0.042084px;}
.ws18_c00380{word-spacing:0.086400px;}
.ws22_c00380{word-spacing:0.698400px;}
.ws24_c00380{word-spacing:1.044000px;}
.ws11_c00380{word-spacing:1.051200px;}
.ws23_c00380{word-spacing:1.065600px;}
.ws10_c00380{word-spacing:1.116000px;}
.wsf_c00380{word-spacing:2.462400px;}
.wsd_c00380{word-spacing:2.527200px;}
.wse_c00380{word-spacing:2.692800px;}
.ws2b_c00380{word-spacing:3.247200px;}
.ws2c_c00380{word-spacing:3.326400px;}
.ws20_c00380{word-spacing:3.974400px;}
.ws1c_c00380{word-spacing:4.348800px;}
.ws6_c00380{word-spacing:4.363200px;}
.ws1b_c00380{word-spacing:4.694400px;}
.ws1f_c00380{word-spacing:4.701600px;}
.ws1a_c00380{word-spacing:4.744800px;}
.ws1e_c00380{word-spacing:4.759200px;}
.ws1d_c00380{word-spacing:4.788000px;}
.ws28_c00380{word-spacing:5.407200px;}
.wsb_c00380{word-spacing:5.472000px;}
.ws29_c00380{word-spacing:5.486400px;}
.wsc_c00380{word-spacing:5.500800px;}
.ws16_c00380{word-spacing:5.738400px;}
.ws17_c00380{word-spacing:5.803200px;}
.ws13_c00380{word-spacing:8.337600px;}
.ws12_c00380{word-spacing:8.344800px;}
.ws14_c00380{word-spacing:8.596800px;}
.ws15_c00380{word-spacing:8.661600px;}
.ws8_c00380{word-spacing:12.542400px;}
.ws7_c00380{word-spacing:12.600000px;}
.ws9_c00380{word-spacing:14.781600px;}
.ws27_c00380{word-spacing:17.935200px;}
.ws26_c00380{word-spacing:18.007200px;}
.ws25_c00380{word-spacing:18.021600px;}
.wsa_c00380{word-spacing:21.276000px;}
._0_c00380{margin-left:-1.322640px;}
._1_c00380{width:1.209600px;}
.fc0_c00380{color:rgb(0,0,0);}
.fs3_c00380{font-size:42.120000px;}
.fs5_c00380{font-size:47.880000px;}
.fs1_c00380{font-size:54.000000px;}
.fs0_c00380{font-size:60.120000px;}
.fs2_c00380{font-size:72.000000px;}
.fs4_c00380{font-size:78.120000px;}
.y0_c00380{bottom:0.000000px;}
.y3_c00380{bottom:57.450450px;}
.y25_c00380{bottom:113.711610px;}
.y24_c00380{bottom:132.073590px;}
.y23_c00380{bottom:150.339810px;}
.y22_c00380{bottom:168.606030px;}
.y21_c00380{bottom:186.968010px;}
.y20_c00380{bottom:205.234230px;}
.y1f_c00380{bottom:223.500450px;}
.y1e_c00380{bottom:238.710450px;}
.y1d_c00380{bottom:259.410450px;}
.y1c_c00380{bottom:280.110450px;}
.y1b_c00380{bottom:319.530450px;}
.y1a_c00380{bottom:353.910450px;}
.y19_c00380{bottom:388.380450px;}
.y18_c00380{bottom:422.760450px;}
.y17_c00380{bottom:457.230450px;}
.y16_c00380{bottom:491.610450px;}
.y15_c00380{bottom:526.080450px;}
.y14_c00380{bottom:560.460450px;}
.y13_c00380{bottom:594.930450px;}
.y12_c00380{bottom:629.310450px;}
.y11_c00380{bottom:663.780450px;}
.y10_c00380{bottom:698.160450px;}
.yf_c00380{bottom:743.250450px;}
.ye_c00380{bottom:796.890600px;}
.yd_c00380{bottom:831.360450px;}
.yc_c00380{bottom:865.740450px;}
.yb_c00380{bottom:900.210450px;}
.ya_c00380{bottom:934.590450px;}
.y9_c00380{bottom:969.060450px;}
.y8_c00380{bottom:1003.440450px;}
.y7_c00380{bottom:1037.910450px;}
.y6_c00380{bottom:1072.290450px;}
.y5_c00380{bottom:1106.760450px;}
.y4_c00380{bottom:1141.140450px;}
.y2_c00380{bottom:1177.860450px;}
.y1_c00380{bottom:1196.850450px;}
.h8_c00380{height:47.988281px;}
.h9_c00380{height:49.937344px;}
.h1_c00380{height:50.315273px;}
.h2_c00380{height:56.320312px;}
.h4_c00380{height:60.257812px;}
.h5_c00380{height:65.130820px;}
.h7_c00380{height:65.131420px;}
.h3_c00380{height:72.160312px;}
.h6_c00380{height:81.476719px;}
.h0_c00380{height:1263.000000px;}
.w1_c00380{width:892.500000px;}
.w0_c00380{width:892.830000px;}
.x0_c00380{left:0.000000px;}
.x1_c00380{left:127.620000px;}
.x2_c00380{left:180.720000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.v1_c00380{vertical-align:14.080000pt;}
.v2_c00380{vertical-align:26.560000pt;}
.lsc_c00380{letter-spacing:-0.134400pt;}
.ls17_c00380{letter-spacing:-0.096000pt;}
.ls14_c00380{letter-spacing:-0.062496pt;}
.ls10_c00380{letter-spacing:-0.038400pt;}
.lsf_c00380{letter-spacing:-0.032000pt;}
.ls13_c00380{letter-spacing:-0.025600pt;}
.lse_c00380{letter-spacing:-0.019200pt;}
.lsd_c00380{letter-spacing:-0.012800pt;}
.ls11_c00380{letter-spacing:-0.006400pt;}
.lsb_c00380{letter-spacing:0.000000pt;}
.ls2_c00380{letter-spacing:0.006400pt;}
.ls5_c00380{letter-spacing:0.012800pt;}
.ls6_c00380{letter-spacing:0.017024pt;}
.ls7_c00380{letter-spacing:0.021280pt;}
.ls8_c00380{letter-spacing:0.025536pt;}
.lsa_c00380{letter-spacing:0.029792pt;}
.ls16_c00380{letter-spacing:0.032000pt;}
.ls9_c00380{letter-spacing:0.034048pt;}
.ls0_c00380{letter-spacing:0.042752pt;}
.ls3_c00380{letter-spacing:0.048672pt;}
.ls12_c00380{letter-spacing:0.051200pt;}
.ls15_c00380{letter-spacing:0.083200pt;}
.ls4_c00380{letter-spacing:5.346880pt;}
.ls1_c00380{letter-spacing:1077.440000pt;}
.ws2_c00380{word-spacing:-17.360000pt;}
.ws0_c00380{word-spacing:-15.987200pt;}
.ws3_c00380{word-spacing:-15.904000pt;}
.ws1_c00380{word-spacing:-9.408672pt;}
.ws19_c00380{word-spacing:-0.020832pt;}
.ws30_c00380{word-spacing:-0.017024pt;}
.ws2f_c00380{word-spacing:-0.008512pt;}
.ws2e_c00380{word-spacing:-0.004256pt;}
.ws5_c00380{word-spacing:0.000000pt;}
.ws21_c00380{word-spacing:0.006400pt;}
.ws2a_c00380{word-spacing:0.012800pt;}
.ws2d_c00380{word-spacing:0.019200pt;}
.ws4_c00380{word-spacing:0.037408pt;}
.ws18_c00380{word-spacing:0.076800pt;}
.ws22_c00380{word-spacing:0.620800pt;}
.ws24_c00380{word-spacing:0.928000pt;}
.ws11_c00380{word-spacing:0.934400pt;}
.ws23_c00380{word-spacing:0.947200pt;}
.ws10_c00380{word-spacing:0.992000pt;}
.wsf_c00380{word-spacing:2.188800pt;}
.wsd_c00380{word-spacing:2.246400pt;}
.wse_c00380{word-spacing:2.393600pt;}
.ws2b_c00380{word-spacing:2.886400pt;}
.ws2c_c00380{word-spacing:2.956800pt;}
.ws20_c00380{word-spacing:3.532800pt;}
.ws1c_c00380{word-spacing:3.865600pt;}
.ws6_c00380{word-spacing:3.878400pt;}
.ws1b_c00380{word-spacing:4.172800pt;}
.ws1f_c00380{word-spacing:4.179200pt;}
.ws1a_c00380{word-spacing:4.217600pt;}
.ws1e_c00380{word-spacing:4.230400pt;}
.ws1d_c00380{word-spacing:4.256000pt;}
.ws28_c00380{word-spacing:4.806400pt;}
.wsb_c00380{word-spacing:4.864000pt;}
.ws29_c00380{word-spacing:4.876800pt;}
.wsc_c00380{word-spacing:4.889600pt;}
.ws16_c00380{word-spacing:5.100800pt;}
.ws17_c00380{word-spacing:5.158400pt;}
.ws13_c00380{word-spacing:7.411200pt;}
.ws12_c00380{word-spacing:7.417600pt;}
.ws14_c00380{word-spacing:7.641600pt;}
.ws15_c00380{word-spacing:7.699200pt;}
.ws8_c00380{word-spacing:11.148800pt;}
.ws7_c00380{word-spacing:11.200000pt;}
.ws9_c00380{word-spacing:13.139200pt;}
.ws27_c00380{word-spacing:15.942400pt;}
.ws26_c00380{word-spacing:16.006400pt;}
.ws25_c00380{word-spacing:16.019200pt;}
.wsa_c00380{word-spacing:18.912000pt;}
._0_c00380{margin-left:-1.175680pt;}
._1_c00380{width:1.075200pt;}
.fs3_c00380{font-size:37.440000pt;}
.fs5_c00380{font-size:42.560000pt;}
.fs1_c00380{font-size:48.000000pt;}
.fs0_c00380{font-size:53.440000pt;}
.fs2_c00380{font-size:64.000000pt;}
.fs4_c00380{font-size:69.440000pt;}
.y0_c00380{bottom:0.000000pt;}
.y3_c00380{bottom:51.067067pt;}
.y25_c00380{bottom:101.076987pt;}
.y24_c00380{bottom:117.398747pt;}
.y23_c00380{bottom:133.635387pt;}
.y22_c00380{bottom:149.872027pt;}
.y21_c00380{bottom:166.193787pt;}
.y20_c00380{bottom:182.430427pt;}
.y1f_c00380{bottom:198.667067pt;}
.y1e_c00380{bottom:212.187067pt;}
.y1d_c00380{bottom:230.587067pt;}
.y1c_c00380{bottom:248.987067pt;}
.y1b_c00380{bottom:284.027067pt;}
.y1a_c00380{bottom:314.587067pt;}
.y19_c00380{bottom:345.227067pt;}
.y18_c00380{bottom:375.787067pt;}
.y17_c00380{bottom:406.427067pt;}
.y16_c00380{bottom:436.987067pt;}
.y15_c00380{bottom:467.627067pt;}
.y14_c00380{bottom:498.187067pt;}
.y13_c00380{bottom:528.827067pt;}
.y12_c00380{bottom:559.387067pt;}
.y11_c00380{bottom:590.027067pt;}
.y10_c00380{bottom:620.587067pt;}
.yf_c00380{bottom:660.667067pt;}
.ye_c00380{bottom:708.347200pt;}
.yd_c00380{bottom:738.987067pt;}
.yc_c00380{bottom:769.547067pt;}
.yb_c00380{bottom:800.187067pt;}
.ya_c00380{bottom:830.747067pt;}
.y9_c00380{bottom:861.387067pt;}
.y8_c00380{bottom:891.947067pt;}
.y7_c00380{bottom:922.587067pt;}
.y6_c00380{bottom:953.147067pt;}
.y5_c00380{bottom:983.787067pt;}
.y4_c00380{bottom:1014.347067pt;}
.y2_c00380{bottom:1046.987067pt;}
.y1_c00380{bottom:1063.867067pt;}
.h8_c00380{height:42.656250pt;}
.h9_c00380{height:44.388750pt;}
.h1_c00380{height:44.724687pt;}
.h2_c00380{height:50.062500pt;}
.h4_c00380{height:53.562500pt;}
.h5_c00380{height:57.894063pt;}
.h7_c00380{height:57.894596pt;}
.h3_c00380{height:64.142500pt;}
.h6_c00380{height:72.423750pt;}
.h0_c00380{height:1122.666667pt;}
.w1_c00380{width:793.333333pt;}
.w0_c00380{width:793.626667pt;}
.x0_c00380{left:0.000000pt;}
.x1_c00380{left:113.440000pt;}
.x2_c00380{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_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_d39340135b7c6712e4fca600.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00381;src:url('chunks/assets/font_9904aeca6fd785e629127a80.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00381;src:url('chunks/assets/font_30772873fb1c1ab00a0f8e04.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v3_c00381{vertical-align:-29.880000px;}
.v0_c00381{vertical-align:0.000000px;}
.v1_c00381{vertical-align:15.297120px;}
.v2_c00381{vertical-align:29.880000px;}
.ls1e_c00381{letter-spacing:-0.151200px;}
.ls26_c00381{letter-spacing:-0.050400px;}
.ls25_c00381{letter-spacing:-0.036000px;}
.ls27_c00381{letter-spacing:-0.028800px;}
.ls22_c00381{letter-spacing:-0.024048px;}
.ls20_c00381{letter-spacing:-0.018036px;}
.ls23_c00381{letter-spacing:-0.014400px;}
.ls1f_c00381{letter-spacing:-0.012024px;}
.ls24_c00381{letter-spacing:-0.007200px;}
.ls21_c00381{letter-spacing:-0.006012px;}
.ls1d_c00381{letter-spacing:0.000000px;}
.ls6_c00381{letter-spacing:0.006012px;}
.lsb_c00381{letter-spacing:0.007200px;}
.ls1_c00381{letter-spacing:0.012024px;}
.lse_c00381{letter-spacing:0.014400px;}
.ls7_c00381{letter-spacing:0.018036px;}
.ls1b_c00381{letter-spacing:0.019152px;}
.lsc_c00381{letter-spacing:0.021600px;}
.ls12_c00381{letter-spacing:0.023940px;}
.ls8_c00381{letter-spacing:0.024048px;}
.ls13_c00381{letter-spacing:0.028728px;}
.lsd_c00381{letter-spacing:0.028800px;}
.ls5_c00381{letter-spacing:0.030060px;}
.ls17_c00381{letter-spacing:0.033516px;}
.ls0_c00381{letter-spacing:0.036072px;}
.ls14_c00381{letter-spacing:0.038304px;}
.ls2_c00381{letter-spacing:0.042084px;}
.ls16_c00381{letter-spacing:0.043092px;}
.ls15_c00381{letter-spacing:0.047880px;}
.ls3_c00381{letter-spacing:0.054108px;}
.lsf_c00381{letter-spacing:0.054756px;}
.ls18_c00381{letter-spacing:0.057456px;}
.ls1c_c00381{letter-spacing:0.062244px;}
.ls4_c00381{letter-spacing:0.066132px;}
.ls1a_c00381{letter-spacing:0.067032px;}
.ls19_c00381{letter-spacing:0.071820px;}
.ls9_c00381{letter-spacing:0.136080px;}
.lsa_c00381{letter-spacing:0.153720px;}
.ls10_c00381{letter-spacing:0.216000px;}
.ls11_c00381{letter-spacing:5.400000px;}
.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;}
}
.ws1_c00381{word-spacing:-10.584756px;}
.ws0_c00381{word-spacing:-9.856080px;}
.ws2_c00381{word-spacing:-0.306612px;}
.ws16_c00381{word-spacing:-0.294588px;}
.ws30_c00381{word-spacing:-0.019152px;}
.ws2e_c00381{word-spacing:-0.009576px;}
.ws2d_c00381{word-spacing:-0.004788px;}
.ws3_c00381{word-spacing:0.000000px;}
.ws7_c00381{word-spacing:0.048096px;}
.ws24_c00381{word-spacing:0.050400px;}
.wsd_c00381{word-spacing:0.060120px;}
.wse_c00381{word-spacing:0.096192px;}
.ws4_c00381{word-spacing:0.102204px;}
.ws32_c00381{word-spacing:0.339948px;}
.ws1f_c00381{word-spacing:0.403200px;}
.ws1e_c00381{word-spacing:0.496800px;}
.ws31_c00381{word-spacing:0.689472px;}
.ws35_c00381{word-spacing:0.699048px;}
.ws36_c00381{word-spacing:0.718200px;}
.wsa_c00381{word-spacing:0.775548px;}
.ws1b_c00381{word-spacing:1.411200px;}
.ws1c_c00381{word-spacing:1.425600px;}
.ws20_c00381{word-spacing:1.778400px;}
.ws21_c00381{word-spacing:1.792800px;}
.wsb_c00381{word-spacing:1.821636px;}
.ws8_c00381{word-spacing:1.833660px;}
.ws15_c00381{word-spacing:1.857708px;}
.wsc_c00381{word-spacing:1.875744px;}
.ws9_c00381{word-spacing:1.905804px;}
.ws14_c00381{word-spacing:1.911816px;}
.ws22_c00381{word-spacing:2.167200px;}
.ws23_c00381{word-spacing:2.188800px;}
.ws18_c00381{word-spacing:2.872800px;}
.ws11_c00381{word-spacing:2.915820px;}
.ws19_c00381{word-spacing:2.944800px;}
.ws3b_c00381{word-spacing:3.212748px;}
.ws37_c00381{word-spacing:3.557484px;}
.ws38_c00381{word-spacing:3.576636px;}
.ws2f_c00381{word-spacing:4.313988px;}
.ws6_c00381{word-spacing:4.755492px;}
.ws5_c00381{word-spacing:4.767516px;}
.ws2b_c00381{word-spacing:5.047200px;}
.ws1d_c00381{word-spacing:5.076000px;}
.ws2c_c00381{word-spacing:5.090400px;}
.ws27_c00381{word-spacing:5.731200px;}
.ws17_c00381{word-spacing:5.774400px;}
.ws28_c00381{word-spacing:5.781600px;}
.ws34_c00381{word-spacing:7.143696px;}
.ws33_c00381{word-spacing:7.158060px;}
.ws26_c00381{word-spacing:8.265600px;}
.ws25_c00381{word-spacing:8.337600px;}
.ws13_c00381{word-spacing:8.675316px;}
.ws10_c00381{word-spacing:8.711388px;}
.wsf_c00381{word-spacing:8.723412px;}
.ws12_c00381{word-spacing:8.729424px;}
.ws3a_c00381{word-spacing:8.967924px;}
.ws39_c00381{word-spacing:8.982288px;}
.ws2a_c00381{word-spacing:9.381600px;}
.ws29_c00381{word-spacing:9.626400px;}
.ws1a_c00381{word-spacing:15.472800px;}
._0_c00381{margin-left:-1.022040px;}
._1_c00381{width:1.008000px;}
.fc0_c00381{color:rgb(0,0,0);}
.fs3_c00381{font-size:38.880000px;}
.fs4_c00381{font-size:42.120000px;}
.fs5_c00381{font-size:47.880000px;}
.fs2_c00381{font-size:54.000000px;}
.fs0_c00381{font-size:60.120000px;}
.fs1_c00381{font-size:72.000000px;}
.y0_c00381{bottom:0.000000px;}
.y3_c00381{bottom:57.450450px;}
.y4_c00381{bottom:61.410450px;}
.y30_c00381{bottom:113.728530px;}
.y2f_c00381{bottom:127.589790px;}
.y2e_c00381{bottom:141.355290px;}
.y2d_c00381{bottom:155.120790px;}
.y2c_c00381{bottom:168.982050px;}
.y2b_c00381{bottom:182.747550px;}
.y2a_c00381{bottom:196.513050px;}
.y29_c00381{bottom:210.374310px;}
.y28_c00381{bottom:228.640530px;}
.y27_c00381{bottom:246.906750px;}
.y26_c00381{bottom:260.768010px;}
.y25_c00381{bottom:279.034230px;}
.y24_c00381{bottom:297.300450px;}
.y23_c00381{bottom:312.510450px;}
.y22_c00381{bottom:333.210450px;}
.y21_c00381{bottom:353.910600px;}
.y20_c00381{bottom:421.860600px;}
.y1f_c00381{bottom:456.240600px;}
.y1e_c00381{bottom:490.710450px;}
.y1d_c00381{bottom:525.090450px;}
.y1c_c00381{bottom:559.560450px;}
.y1b_c00381{bottom:593.940450px;}
.y1a_c00381{bottom:628.410450px;}
.y19_c00381{bottom:662.790450px;}
.y18_c00381{bottom:697.260450px;}
.y17_c00381{bottom:731.640450px;}
.y16_c00381{bottom:766.110450px;}
.y15_c00381{bottom:800.490450px;}
.y14_c00381{bottom:834.960450px;}
.y13_c00381{bottom:869.340450px;}
.y12_c00381{bottom:903.810450px;}
.y11_c00381{bottom:941.206170px;}
.y10_c00381{bottom:958.129950px;}
.yf_c00381{bottom:974.963550px;}
.ye_c00381{bottom:991.887330px;}
.yd_c00381{bottom:1008.720930px;}
.yc_c00381{bottom:1025.644710px;}
.yb_c00381{bottom:1042.478310px;}
.ya_c00381{bottom:1059.402090px;}
.y9_c00381{bottom:1076.235690px;}
.y8_c00381{bottom:1093.159470px;}
.y7_c00381{bottom:1109.993070px;}
.y6_c00381{bottom:1126.916850px;}
.y5_c00381{bottom:1143.750450px;}
.y2_c00381{bottom:1173.810450px;}
.y1_c00381{bottom:1196.850450px;}
.h2_c00381{height:47.988281px;}
.h9_c00381{height:49.937344px;}
.h1_c00381{height:50.315273px;}
.h4_c00381{height:50.492393px;}
.h3_c00381{height:56.320312px;}
.h5_c00381{height:60.257812px;}
.h7_c00381{height:60.328125px;}
.h6_c00381{height:65.130820px;}
.h8_c00381{height:65.131420px;}
.h0_c00381{height:1263.000000px;}
.w1_c00381{width:892.500000px;}
.w0_c00381{width:892.830000px;}
.x0_c00381{left:0.000000px;}
.x2_c00381{left:127.620000px;}
.x5_c00381{left:154.710000px;}
.x6_c00381{left:180.817110px;}
.x4_c00381{left:435.240000px;}
.x3_c00381{left:446.490000px;}
.x1_c00381{left:490.770000px;}
@media print{
.v3_c00381{vertical-align:-26.560000pt;}
.v0_c00381{vertical-align:0.000000pt;}
.v1_c00381{vertical-align:13.597440pt;}
.v2_c00381{vertical-align:26.560000pt;}
.ls1e_c00381{letter-spacing:-0.134400pt;}
.ls26_c00381{letter-spacing:-0.044800pt;}
.ls25_c00381{letter-spacing:-0.032000pt;}
.ls27_c00381{letter-spacing:-0.025600pt;}
.ls22_c00381{letter-spacing:-0.021376pt;}
.ls20_c00381{letter-spacing:-0.016032pt;}
.ls23_c00381{letter-spacing:-0.012800pt;}
.ls1f_c00381{letter-spacing:-0.010688pt;}
.ls24_c00381{letter-spacing:-0.006400pt;}
.ls21_c00381{letter-spacing:-0.005344pt;}
.ls1d_c00381{letter-spacing:0.000000pt;}
.ls6_c00381{letter-spacing:0.005344pt;}
.lsb_c00381{letter-spacing:0.006400pt;}
.ls1_c00381{letter-spacing:0.010688pt;}
.lse_c00381{letter-spacing:0.012800pt;}
.ls7_c00381{letter-spacing:0.016032pt;}
.ls1b_c00381{letter-spacing:0.017024pt;}
.lsc_c00381{letter-spacing:0.019200pt;}
.ls12_c00381{letter-spacing:0.021280pt;}
.ls8_c00381{letter-spacing:0.021376pt;}
.ls13_c00381{letter-spacing:0.025536pt;}
.lsd_c00381{letter-spacing:0.025600pt;}
.ls5_c00381{letter-spacing:0.026720pt;}
.ls17_c00381{letter-spacing:0.029792pt;}
.ls0_c00381{letter-spacing:0.032064pt;}
.ls14_c00381{letter-spacing:0.034048pt;}
.ls2_c00381{letter-spacing:0.037408pt;}
.ls16_c00381{letter-spacing:0.038304pt;}
.ls15_c00381{letter-spacing:0.042560pt;}
.ls3_c00381{letter-spacing:0.048096pt;}
.lsf_c00381{letter-spacing:0.048672pt;}
.ls18_c00381{letter-spacing:0.051072pt;}
.ls1c_c00381{letter-spacing:0.055328pt;}
.ls4_c00381{letter-spacing:0.058784pt;}
.ls1a_c00381{letter-spacing:0.059584pt;}
.ls19_c00381{letter-spacing:0.063840pt;}
.ls9_c00381{letter-spacing:0.120960pt;}
.lsa_c00381{letter-spacing:0.136640pt;}
.ls10_c00381{letter-spacing:0.192000pt;}
.ls11_c00381{letter-spacing:4.800000pt;}
.ws1_c00381{word-spacing:-9.408672pt;}
.ws0_c00381{word-spacing:-8.760960pt;}
.ws2_c00381{word-spacing:-0.272544pt;}
.ws16_c00381{word-spacing:-0.261856pt;}
.ws30_c00381{word-spacing:-0.017024pt;}
.ws2e_c00381{word-spacing:-0.008512pt;}
.ws2d_c00381{word-spacing:-0.004256pt;}
.ws3_c00381{word-spacing:0.000000pt;}
.ws7_c00381{word-spacing:0.042752pt;}
.ws24_c00381{word-spacing:0.044800pt;}
.wsd_c00381{word-spacing:0.053440pt;}
.wse_c00381{word-spacing:0.085504pt;}
.ws4_c00381{word-spacing:0.090848pt;}
.ws32_c00381{word-spacing:0.302176pt;}
.ws1f_c00381{word-spacing:0.358400pt;}
.ws1e_c00381{word-spacing:0.441600pt;}
.ws31_c00381{word-spacing:0.612864pt;}
.ws35_c00381{word-spacing:0.621376pt;}
.ws36_c00381{word-spacing:0.638400pt;}
.wsa_c00381{word-spacing:0.689376pt;}
.ws1b_c00381{word-spacing:1.254400pt;}
.ws1c_c00381{word-spacing:1.267200pt;}
.ws20_c00381{word-spacing:1.580800pt;}
.ws21_c00381{word-spacing:1.593600pt;}
.wsb_c00381{word-spacing:1.619232pt;}
.ws8_c00381{word-spacing:1.629920pt;}
.ws15_c00381{word-spacing:1.651296pt;}
.wsc_c00381{word-spacing:1.667328pt;}
.ws9_c00381{word-spacing:1.694048pt;}
.ws14_c00381{word-spacing:1.699392pt;}
.ws22_c00381{word-spacing:1.926400pt;}
.ws23_c00381{word-spacing:1.945600pt;}
.ws18_c00381{word-spacing:2.553600pt;}
.ws11_c00381{word-spacing:2.591840pt;}
.ws19_c00381{word-spacing:2.617600pt;}
.ws3b_c00381{word-spacing:2.855776pt;}
.ws37_c00381{word-spacing:3.162208pt;}
.ws38_c00381{word-spacing:3.179232pt;}
.ws2f_c00381{word-spacing:3.834656pt;}
.ws6_c00381{word-spacing:4.227104pt;}
.ws5_c00381{word-spacing:4.237792pt;}
.ws2b_c00381{word-spacing:4.486400pt;}
.ws1d_c00381{word-spacing:4.512000pt;}
.ws2c_c00381{word-spacing:4.524800pt;}
.ws27_c00381{word-spacing:5.094400pt;}
.ws17_c00381{word-spacing:5.132800pt;}
.ws28_c00381{word-spacing:5.139200pt;}
.ws34_c00381{word-spacing:6.349952pt;}
.ws33_c00381{word-spacing:6.362720pt;}
.ws26_c00381{word-spacing:7.347200pt;}
.ws25_c00381{word-spacing:7.411200pt;}
.ws13_c00381{word-spacing:7.711392pt;}
.ws10_c00381{word-spacing:7.743456pt;}
.wsf_c00381{word-spacing:7.754144pt;}
.ws12_c00381{word-spacing:7.759488pt;}
.ws3a_c00381{word-spacing:7.971488pt;}
.ws39_c00381{word-spacing:7.984256pt;}
.ws2a_c00381{word-spacing:8.339200pt;}
.ws29_c00381{word-spacing:8.556800pt;}
.ws1a_c00381{word-spacing:13.753600pt;}
._0_c00381{margin-left:-0.908480pt;}
._1_c00381{width:0.896000pt;}
.fs3_c00381{font-size:34.560000pt;}
.fs4_c00381{font-size:37.440000pt;}
.fs5_c00381{font-size:42.560000pt;}
.fs2_c00381{font-size:48.000000pt;}
.fs0_c00381{font-size:53.440000pt;}
.fs1_c00381{font-size:64.000000pt;}
.y0_c00381{bottom:0.000000pt;}
.y3_c00381{bottom:51.067067pt;}
.y4_c00381{bottom:54.587067pt;}
.y30_c00381{bottom:101.092027pt;}
.y2f_c00381{bottom:113.413147pt;}
.y2e_c00381{bottom:125.649147pt;}
.y2d_c00381{bottom:137.885147pt;}
.y2c_c00381{bottom:150.206267pt;}
.y2b_c00381{bottom:162.442267pt;}
.y2a_c00381{bottom:174.678267pt;}
.y29_c00381{bottom:186.999387pt;}
.y28_c00381{bottom:203.236027pt;}
.y27_c00381{bottom:219.472667pt;}
.y26_c00381{bottom:231.793787pt;}
.y25_c00381{bottom:248.030427pt;}
.y24_c00381{bottom:264.267067pt;}
.y23_c00381{bottom:277.787067pt;}
.y22_c00381{bottom:296.187067pt;}
.y21_c00381{bottom:314.587200pt;}
.y20_c00381{bottom:374.987200pt;}
.y1f_c00381{bottom:405.547200pt;}
.y1e_c00381{bottom:436.187067pt;}
.y1d_c00381{bottom:466.747067pt;}
.y1c_c00381{bottom:497.387067pt;}
.y1b_c00381{bottom:527.947067pt;}
.y1a_c00381{bottom:558.587067pt;}
.y19_c00381{bottom:589.147067pt;}
.y18_c00381{bottom:619.787067pt;}
.y17_c00381{bottom:650.347067pt;}
.y16_c00381{bottom:680.987067pt;}
.y15_c00381{bottom:711.547067pt;}
.y14_c00381{bottom:742.187067pt;}
.y13_c00381{bottom:772.747067pt;}
.y12_c00381{bottom:803.387067pt;}
.y11_c00381{bottom:836.627707pt;}
.y10_c00381{bottom:851.671067pt;}
.yf_c00381{bottom:866.634267pt;}
.ye_c00381{bottom:881.677627pt;}
.yd_c00381{bottom:896.640827pt;}
.yc_c00381{bottom:911.684187pt;}
.yb_c00381{bottom:926.647387pt;}
.ya_c00381{bottom:941.690747pt;}
.y9_c00381{bottom:956.653947pt;}
.y8_c00381{bottom:971.697307pt;}
.y7_c00381{bottom:986.660507pt;}
.y6_c00381{bottom:1001.703867pt;}
.y5_c00381{bottom:1016.667067pt;}
.y2_c00381{bottom:1043.387067pt;}
.y1_c00381{bottom:1063.867067pt;}
.h2_c00381{height:42.656250pt;}
.h9_c00381{height:44.388750pt;}
.h1_c00381{height:44.724687pt;}
.h4_c00381{height:44.882128pt;}
.h3_c00381{height:50.062500pt;}
.h5_c00381{height:53.562500pt;}
.h7_c00381{height:53.625000pt;}
.h6_c00381{height:57.894063pt;}
.h8_c00381{height:57.894596pt;}
.h0_c00381{height:1122.666667pt;}
.w1_c00381{width:793.333333pt;}
.w0_c00381{width:793.626667pt;}
.x0_c00381{left:0.000000pt;}
.x2_c00381{left:113.440000pt;}
.x5_c00381{left:137.520000pt;}
.x6_c00381{left:160.726320pt;}
.x4_c00381{left:386.880000pt;}
.x3_c00381{left:396.880000pt;}
.x1_c00381{left:436.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_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_cd3823089d0e87208cb60dcc.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.100098;font-style:normal;font-weight:normal;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_ba839dd745b47f3862a66c19.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;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_c00382;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00382{vertical-align:15.840000px;}
.v2_c00382{vertical-align:29.880000px;}
.lsa_c00382{letter-spacing:-0.151200px;}
.lsc_c00382{letter-spacing:-0.054108px;}
.ls12_c00382{letter-spacing:-0.036000px;}
.lsf_c00382{letter-spacing:-0.028800px;}
.lsb_c00382{letter-spacing:-0.024048px;}
.ls10_c00382{letter-spacing:-0.021600px;}
.lsd_c00382{letter-spacing:-0.014400px;}
.lse_c00382{letter-spacing:-0.007200px;}
.ls9_c00382{letter-spacing:0.000000px;}
.ls3_c00382{letter-spacing:0.007200px;}
.ls4_c00382{letter-spacing:0.014400px;}
.ls7_c00382{letter-spacing:0.021600px;}
.ls6_c00382{letter-spacing:0.028800px;}
.ls8_c00382{letter-spacing:0.033516px;}
.ls11_c00382{letter-spacing:0.036000px;}
.ls0_c00382{letter-spacing:0.048096px;}
.ls5_c00382{letter-spacing:0.054756px;}
.ls13_c00382{letter-spacing:0.093600px;}
.ls2_c00382{letter-spacing:0.101088px;}
.ls1_c00382{letter-spacing:1212.120000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00382{word-spacing:-10.584756px;}
.ws5_c00382{word-spacing:-0.101088px;}
.ws27_c00382{word-spacing:-0.014364px;}
.ws28_c00382{word-spacing:-0.009576px;}
.ws2_c00382{word-spacing:0.000000px;}
.ws1d_c00382{word-spacing:0.014400px;}
.ws1_c00382{word-spacing:0.042084px;}
.ws3_c00382{word-spacing:0.114228px;}
.ws4_c00382{word-spacing:0.144288px;}
.ws18_c00382{word-spacing:0.410400px;}
.ws17_c00382{word-spacing:0.482400px;}
.ws12_c00382{word-spacing:1.497600px;}
.ws11_c00382{word-spacing:1.512000px;}
.wsb_c00382{word-spacing:2.188800px;}
.ws9_c00382{word-spacing:2.512800px;}
.wsa_c00382{word-spacing:2.527200px;}
.wsc_c00382{word-spacing:2.599200px;}
.ws6_c00382{word-spacing:2.865600px;}
.ws23_c00382{word-spacing:2.894400px;}
.ws8_c00382{word-spacing:2.908800px;}
.ws24_c00382{word-spacing:2.916000px;}
.ws7_c00382{word-spacing:2.980800px;}
.ws1f_c00382{word-spacing:3.261600px;}
.ws20_c00382{word-spacing:3.276000px;}
.ws19_c00382{word-spacing:3.556800px;}
.ws1a_c00382{word-spacing:3.664800px;}
.ws14_c00382{word-spacing:4.644000px;}
.ws13_c00382{word-spacing:4.672800px;}
.ws1c_c00382{word-spacing:5.392800px;}
.ws1b_c00382{word-spacing:5.486400px;}
.ws1e_c00382{word-spacing:6.811200px;}
.ws10_c00382{word-spacing:8.935200px;}
.wsf_c00382{word-spacing:9.000000px;}
.ws25_c00382{word-spacing:10.836000px;}
.ws26_c00382{word-spacing:10.843200px;}
.wse_c00382{word-spacing:13.507200px;}
.wsd_c00382{word-spacing:13.636800px;}
.ws21_c00382{word-spacing:13.658400px;}
.ws22_c00382{word-spacing:13.744800px;}
.ws16_c00382{word-spacing:16.560000px;}
.ws15_c00382{word-spacing:16.567200px;}
._0_c00382{margin-left:-1.322640px;}
._1_c00382{width:1.224000px;}
.fc0_c00382{color:rgb(0,0,0);}
.fs3_c00382{font-size:38.880000px;}
.fs4_c00382{font-size:42.120000px;}
.fs5_c00382{font-size:47.880000px;}
.fs1_c00382{font-size:54.000000px;}
.fs0_c00382{font-size:60.120000px;}
.fs2_c00382{font-size:72.000000px;}
.y0_c00382{bottom:0.000000px;}
.y3_c00382{bottom:57.450450px;}
.y1d_c00382{bottom:113.698470px;}
.y1c_c00382{bottom:132.060450px;}
.y1b_c00382{bottom:147.270450px;}
.y1a_c00382{bottom:167.970450px;}
.y19_c00382{bottom:188.670450px;}
.y18_c00382{bottom:241.230450px;}
.y17_c00382{bottom:275.610450px;}
.y16_c00382{bottom:310.080450px;}
.y15_c00382{bottom:344.460450px;}
.y14_c00382{bottom:378.930450px;}
.y13_c00382{bottom:413.310450px;}
.y12_c00382{bottom:447.780450px;}
.y11_c00382{bottom:482.160450px;}
.y10_c00382{bottom:516.630450px;}
.yf_c00382{bottom:551.010450px;}
.ye_c00382{bottom:585.480450px;}
.yd_c00382{bottom:619.860450px;}
.yc_c00382{bottom:654.330450px;}
.yb_c00382{bottom:688.710450px;}
.ya_c00382{bottom:723.180450px;}
.y9_c00382{bottom:757.560450px;}
.y8_c00382{bottom:792.030450px;}
.y7_c00382{bottom:826.410450px;}
.y6_c00382{bottom:860.880450px;}
.y5_c00382{bottom:897.240450px;}
.y4_c00382{bottom:910.110450px;}
.y2_c00382{bottom:1177.860450px;}
.y1_c00382{bottom:1196.850450px;}
.h6_c00382{height:47.988281px;}
.h7_c00382{height:49.937344px;}
.h1_c00382{height:50.315273px;}
.h2_c00382{height:56.320312px;}
.h4_c00382{height:60.257812px;}
.h5_c00382{height:65.130820px;}
.h3_c00382{height:72.160312px;}
.h0_c00382{height:1263.000000px;}
.w1_c00382{width:892.500000px;}
.w0_c00382{width:892.830000px;}
.x0_c00382{left:0.000000px;}
.x1_c00382{left:127.620000px;}
.x4_c00382{left:180.720000px;}
.x3_c00382{left:203.850000px;}
.x2_c00382{left:752.940000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.v1_c00382{vertical-align:14.080000pt;}
.v2_c00382{vertical-align:26.560000pt;}
.lsa_c00382{letter-spacing:-0.134400pt;}
.lsc_c00382{letter-spacing:-0.048096pt;}
.ls12_c00382{letter-spacing:-0.032000pt;}
.lsf_c00382{letter-spacing:-0.025600pt;}
.lsb_c00382{letter-spacing:-0.021376pt;}
.ls10_c00382{letter-spacing:-0.019200pt;}
.lsd_c00382{letter-spacing:-0.012800pt;}
.lse_c00382{letter-spacing:-0.006400pt;}
.ls9_c00382{letter-spacing:0.000000pt;}
.ls3_c00382{letter-spacing:0.006400pt;}
.ls4_c00382{letter-spacing:0.012800pt;}
.ls7_c00382{letter-spacing:0.019200pt;}
.ls6_c00382{letter-spacing:0.025600pt;}
.ls8_c00382{letter-spacing:0.029792pt;}
.ls11_c00382{letter-spacing:0.032000pt;}
.ls0_c00382{letter-spacing:0.042752pt;}
.ls5_c00382{letter-spacing:0.048672pt;}
.ls13_c00382{letter-spacing:0.083200pt;}
.ls2_c00382{letter-spacing:0.089856pt;}
.ls1_c00382{letter-spacing:1077.440000pt;}
.ws0_c00382{word-spacing:-9.408672pt;}
.ws5_c00382{word-spacing:-0.089856pt;}
.ws27_c00382{word-spacing:-0.012768pt;}
.ws28_c00382{word-spacing:-0.008512pt;}
.ws2_c00382{word-spacing:0.000000pt;}
.ws1d_c00382{word-spacing:0.012800pt;}
.ws1_c00382{word-spacing:0.037408pt;}
.ws3_c00382{word-spacing:0.101536pt;}
.ws4_c00382{word-spacing:0.128256pt;}
.ws18_c00382{word-spacing:0.364800pt;}
.ws17_c00382{word-spacing:0.428800pt;}
.ws12_c00382{word-spacing:1.331200pt;}
.ws11_c00382{word-spacing:1.344000pt;}
.wsb_c00382{word-spacing:1.945600pt;}
.ws9_c00382{word-spacing:2.233600pt;}
.wsa_c00382{word-spacing:2.246400pt;}
.wsc_c00382{word-spacing:2.310400pt;}
.ws6_c00382{word-spacing:2.547200pt;}
.ws23_c00382{word-spacing:2.572800pt;}
.ws8_c00382{word-spacing:2.585600pt;}
.ws24_c00382{word-spacing:2.592000pt;}
.ws7_c00382{word-spacing:2.649600pt;}
.ws1f_c00382{word-spacing:2.899200pt;}
.ws20_c00382{word-spacing:2.912000pt;}
.ws19_c00382{word-spacing:3.161600pt;}
.ws1a_c00382{word-spacing:3.257600pt;}
.ws14_c00382{word-spacing:4.128000pt;}
.ws13_c00382{word-spacing:4.153600pt;}
.ws1c_c00382{word-spacing:4.793600pt;}
.ws1b_c00382{word-spacing:4.876800pt;}
.ws1e_c00382{word-spacing:6.054400pt;}
.ws10_c00382{word-spacing:7.942400pt;}
.wsf_c00382{word-spacing:8.000000pt;}
.ws25_c00382{word-spacing:9.632000pt;}
.ws26_c00382{word-spacing:9.638400pt;}
.wse_c00382{word-spacing:12.006400pt;}
.wsd_c00382{word-spacing:12.121600pt;}
.ws21_c00382{word-spacing:12.140800pt;}
.ws22_c00382{word-spacing:12.217600pt;}
.ws16_c00382{word-spacing:14.720000pt;}
.ws15_c00382{word-spacing:14.726400pt;}
._0_c00382{margin-left:-1.175680pt;}
._1_c00382{width:1.088000pt;}
.fs3_c00382{font-size:34.560000pt;}
.fs4_c00382{font-size:37.440000pt;}
.fs5_c00382{font-size:42.560000pt;}
.fs1_c00382{font-size:48.000000pt;}
.fs0_c00382{font-size:53.440000pt;}
.fs2_c00382{font-size:64.000000pt;}
.y0_c00382{bottom:0.000000pt;}
.y3_c00382{bottom:51.067067pt;}
.y1d_c00382{bottom:101.065307pt;}
.y1c_c00382{bottom:117.387067pt;}
.y1b_c00382{bottom:130.907067pt;}
.y1a_c00382{bottom:149.307067pt;}
.y19_c00382{bottom:167.707067pt;}
.y18_c00382{bottom:214.427067pt;}
.y17_c00382{bottom:244.987067pt;}
.y16_c00382{bottom:275.627067pt;}
.y15_c00382{bottom:306.187067pt;}
.y14_c00382{bottom:336.827067pt;}
.y13_c00382{bottom:367.387067pt;}
.y12_c00382{bottom:398.027067pt;}
.y11_c00382{bottom:428.587067pt;}
.y10_c00382{bottom:459.227067pt;}
.yf_c00382{bottom:489.787067pt;}
.ye_c00382{bottom:520.427067pt;}
.yd_c00382{bottom:550.987067pt;}
.yc_c00382{bottom:581.627067pt;}
.yb_c00382{bottom:612.187067pt;}
.ya_c00382{bottom:642.827067pt;}
.y9_c00382{bottom:673.387067pt;}
.y8_c00382{bottom:704.027067pt;}
.y7_c00382{bottom:734.587067pt;}
.y6_c00382{bottom:765.227067pt;}
.y5_c00382{bottom:797.547067pt;}
.y4_c00382{bottom:808.987067pt;}
.y2_c00382{bottom:1046.987067pt;}
.y1_c00382{bottom:1063.867067pt;}
.h6_c00382{height:42.656250pt;}
.h7_c00382{height:44.388750pt;}
.h1_c00382{height:44.724687pt;}
.h2_c00382{height:50.062500pt;}
.h4_c00382{height:53.562500pt;}
.h5_c00382{height:57.894062pt;}
.h3_c00382{height:64.142500pt;}
.h0_c00382{height:1122.666667pt;}
.w1_c00382{width:793.333333pt;}
.w0_c00382{width:793.626667pt;}
.x0_c00382{left:0.000000pt;}
.x1_c00382{left:113.440000pt;}
.x4_c00382{left:160.640000pt;}
.x3_c00382{left:181.200000pt;}
.x2_c00382{left:669.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_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_19c75c1820768892321c529e.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00383;src:url('chunks/assets/font_7dac983d3eae19657dc1a832.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00383;src:url('chunks/assets/font_88a30019db731382e870b2d2.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;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_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;}
.v1_c00383{vertical-align:29.880000px;}
.lsf_c00383{letter-spacing:-0.151200px;}
.ls16_c00383{letter-spacing:-0.086400px;}
.ls11_c00383{letter-spacing:-0.036000px;}
.ls13_c00383{letter-spacing:-0.021600px;}
.ls12_c00383{letter-spacing:-0.014400px;}
.ls10_c00383{letter-spacing:-0.007200px;}
.ls19_c00383{letter-spacing:-0.004788px;}
.ls17_c00383{letter-spacing:-0.003888px;}
.lse_c00383{letter-spacing:0.000000px;}
.ls2_c00383{letter-spacing:0.007200px;}
.lsa_c00383{letter-spacing:0.014364px;}
.ls1_c00383{letter-spacing:0.014400px;}
.ls6_c00383{letter-spacing:0.018036px;}
.ls4_c00383{letter-spacing:0.021600px;}
.ls8_c00383{letter-spacing:0.023940px;}
.ls9_c00383{letter-spacing:0.028728px;}
.ls14_c00383{letter-spacing:0.028800px;}
.ls7_c00383{letter-spacing:0.033516px;}
.ls0_c00383{letter-spacing:0.036072px;}
.lsc_c00383{letter-spacing:0.043092px;}
.ls15_c00383{letter-spacing:0.043200px;}
.ls3_c00383{letter-spacing:0.054756px;}
.lsd_c00383{letter-spacing:0.067032px;}
.ls5_c00383{letter-spacing:0.093600px;}
.lsb_c00383{letter-spacing:0.104040px;}
.ls18_c00383{letter-spacing:0.357696px;}
.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:-17.985600px;}
.ws2_c00383{word-spacing:-11.166336px;}
.ws0_c00383{word-spacing:-10.584756px;}
.ws3_c00383{word-spacing:-0.306612px;}
.ws27_c00383{word-spacing:-0.093600px;}
.ws2d_c00383{word-spacing:-0.014364px;}
.ws2e_c00383{word-spacing:-0.009576px;}
.wsc_c00383{word-spacing:-0.007200px;}
.ws2f_c00383{word-spacing:-0.004788px;}
.ws4_c00383{word-spacing:0.000000px;}
.wsd_c00383{word-spacing:0.007200px;}
.ws14_c00383{word-spacing:0.014400px;}
.ws34_c00383{word-spacing:0.023940px;}
.ws2c_c00383{word-spacing:0.072144px;}
.ws15_c00383{word-spacing:0.201600px;}
.ws33_c00383{word-spacing:0.311220px;}
.ws13_c00383{word-spacing:2.152800px;}
.ws12_c00383{word-spacing:2.174400px;}
.ws1a_c00383{word-spacing:2.534400px;}
.ws20_c00383{word-spacing:3.225600px;}
.ws21_c00383{word-spacing:3.326400px;}
.ws22_c00383{word-spacing:3.506400px;}
.ws5_c00383{word-spacing:3.909600px;}
.ws6_c00383{word-spacing:3.996000px;}
.ws31_c00383{word-spacing:4.653936px;}
.ws32_c00383{word-spacing:4.673088px;}
.ws30_c00383{word-spacing:4.682664px;}
.ws19_c00383{word-spacing:5.716800px;}
.ws18_c00383{word-spacing:5.760000px;}
.ws1c_c00383{word-spacing:6.112800px;}
.ws1b_c00383{word-spacing:6.134400px;}
.ws11_c00383{word-spacing:6.494400px;}
.wse_c00383{word-spacing:6.516000px;}
.ws28_c00383{word-spacing:8.229600px;}
.ws10_c00383{word-spacing:8.568000px;}
.ws29_c00383{word-spacing:8.661600px;}
.wsf_c00383{word-spacing:8.676000px;}
.ws26_c00383{word-spacing:11.073600px;}
.ws24_c00383{word-spacing:11.440800px;}
.ws25_c00383{word-spacing:11.527200px;}
.ws23_c00383{word-spacing:11.541600px;}
.ws16_c00383{word-spacing:13.284000px;}
.ws17_c00383{word-spacing:13.305600px;}
.ws2b_c00383{word-spacing:13.341600px;}
.ws1e_c00383{word-spacing:15.840000px;}
.ws1f_c00383{word-spacing:15.955200px;}
.ws1d_c00383{word-spacing:15.962400px;}
.wsb_c00383{word-spacing:18.331200px;}
.ws9_c00383{word-spacing:18.432000px;}
.wsa_c00383{word-spacing:18.525600px;}
.ws2a_c00383{word-spacing:19.101600px;}
.ws7_c00383{word-spacing:22.334400px;}
.ws8_c00383{word-spacing:22.428000px;}
._0_c00383{margin-left:-1.022040px;}
._1_c00383{width:1.005480px;}
._2_c00383{width:5.050368px;}
.fc0_c00383{color:rgb(0,0,0);}
.fs5_c00383{font-size:38.880000px;}
.fs3_c00383{font-size:42.120000px;}
.fs4_c00383{font-size:47.880000px;}
.fs2_c00383{font-size:54.000000px;}
.fs0_c00383{font-size:60.120000px;}
.fs1_c00383{font-size:72.000000px;}
.y0_c00383{bottom:0.000000px;}
.y3_c00383{bottom:57.450450px;}
.y4_c00383{bottom:61.410450px;}
.y29_c00383{bottom:113.706750px;}
.y28_c00383{bottom:132.068730px;}
.y27_c00383{bottom:150.334950px;}
.y26_c00383{bottom:164.109630px;}
.y25_c00383{bottom:182.471610px;}
.y24_c00383{bottom:200.737830px;}
.y23_c00383{bottom:219.004050px;}
.y22_c00383{bottom:237.366030px;}
.y21_c00383{bottom:255.632250px;}
.y20_c00383{bottom:273.898470px;}
.y1f_c00383{bottom:292.260450px;}
.y1e_c00383{bottom:307.470450px;}
.y1d_c00383{bottom:328.080450px;}
.y1c_c00383{bottom:348.780450px;}
.y1b_c00383{bottom:386.400450px;}
.y1a_c00383{bottom:418.260450px;}
.y19_c00383{bottom:452.640450px;}
.y18_c00383{bottom:487.110450px;}
.y17_c00383{bottom:521.490450px;}
.y16_c00383{bottom:555.960450px;}
.y15_c00383{bottom:590.340450px;}
.y14_c00383{bottom:624.810450px;}
.y13_c00383{bottom:659.190450px;}
.y12_c00383{bottom:693.660450px;}
.y11_c00383{bottom:728.040450px;}
.y10_c00383{bottom:762.510450px;}
.yf_c00383{bottom:796.890450px;}
.ye_c00383{bottom:831.360450px;}
.yd_c00383{bottom:865.740450px;}
.yc_c00383{bottom:900.210450px;}
.yb_c00383{bottom:934.590450px;}
.ya_c00383{bottom:969.060450px;}
.y9_c00383{bottom:1003.440450px;}
.y8_c00383{bottom:1037.910450px;}
.y7_c00383{bottom:1072.290450px;}
.y6_c00383{bottom:1106.760450px;}
.y5_c00383{bottom:1141.140450px;}
.y2_c00383{bottom:1173.810450px;}
.y1_c00383{bottom:1196.850450px;}
.h2_c00383{height:47.988281px;}
.h6_c00383{height:49.937344px;}
.h1_c00383{height:50.315273px;}
.h3_c00383{height:56.320312px;}
.h4_c00383{height:60.257812px;}
.h5_c00383{height:65.130820px;}
.h0_c00383{height:1263.000000px;}
.w1_c00383{width:892.500000px;}
.w0_c00383{width:892.830000px;}
.x0_c00383{left:0.000000px;}
.x2_c00383{left:127.620000px;}
.x6_c00383{left:154.710000px;}
.x5_c00383{left:180.720000px;}
.x4_c00383{left:435.240000px;}
.x3_c00383{left:446.490000px;}
.x1_c00383{left:490.770000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.v1_c00383{vertical-align:26.560000pt;}
.lsf_c00383{letter-spacing:-0.134400pt;}
.ls16_c00383{letter-spacing:-0.076800pt;}
.ls11_c00383{letter-spacing:-0.032000pt;}
.ls13_c00383{letter-spacing:-0.019200pt;}
.ls12_c00383{letter-spacing:-0.012800pt;}
.ls10_c00383{letter-spacing:-0.006400pt;}
.ls19_c00383{letter-spacing:-0.004256pt;}
.ls17_c00383{letter-spacing:-0.003456pt;}
.lse_c00383{letter-spacing:0.000000pt;}
.ls2_c00383{letter-spacing:0.006400pt;}
.lsa_c00383{letter-spacing:0.012768pt;}
.ls1_c00383{letter-spacing:0.012800pt;}
.ls6_c00383{letter-spacing:0.016032pt;}
.ls4_c00383{letter-spacing:0.019200pt;}
.ls8_c00383{letter-spacing:0.021280pt;}
.ls9_c00383{letter-spacing:0.025536pt;}
.ls14_c00383{letter-spacing:0.025600pt;}
.ls7_c00383{letter-spacing:0.029792pt;}
.ls0_c00383{letter-spacing:0.032064pt;}
.lsc_c00383{letter-spacing:0.038304pt;}
.ls15_c00383{letter-spacing:0.038400pt;}
.ls3_c00383{letter-spacing:0.048672pt;}
.lsd_c00383{letter-spacing:0.059584pt;}
.ls5_c00383{letter-spacing:0.083200pt;}
.lsb_c00383{letter-spacing:0.092480pt;}
.ls18_c00383{letter-spacing:0.317952pt;}
.ws1_c00383{word-spacing:-15.987200pt;}
.ws2_c00383{word-spacing:-9.925632pt;}
.ws0_c00383{word-spacing:-9.408672pt;}
.ws3_c00383{word-spacing:-0.272544pt;}
.ws27_c00383{word-spacing:-0.083200pt;}
.ws2d_c00383{word-spacing:-0.012768pt;}
.ws2e_c00383{word-spacing:-0.008512pt;}
.wsc_c00383{word-spacing:-0.006400pt;}
.ws2f_c00383{word-spacing:-0.004256pt;}
.ws4_c00383{word-spacing:0.000000pt;}
.wsd_c00383{word-spacing:0.006400pt;}
.ws14_c00383{word-spacing:0.012800pt;}
.ws34_c00383{word-spacing:0.021280pt;}
.ws2c_c00383{word-spacing:0.064128pt;}
.ws15_c00383{word-spacing:0.179200pt;}
.ws33_c00383{word-spacing:0.276640pt;}
.ws13_c00383{word-spacing:1.913600pt;}
.ws12_c00383{word-spacing:1.932800pt;}
.ws1a_c00383{word-spacing:2.252800pt;}
.ws20_c00383{word-spacing:2.867200pt;}
.ws21_c00383{word-spacing:2.956800pt;}
.ws22_c00383{word-spacing:3.116800pt;}
.ws5_c00383{word-spacing:3.475200pt;}
.ws6_c00383{word-spacing:3.552000pt;}
.ws31_c00383{word-spacing:4.136832pt;}
.ws32_c00383{word-spacing:4.153856pt;}
.ws30_c00383{word-spacing:4.162368pt;}
.ws19_c00383{word-spacing:5.081600pt;}
.ws18_c00383{word-spacing:5.120000pt;}
.ws1c_c00383{word-spacing:5.433600pt;}
.ws1b_c00383{word-spacing:5.452800pt;}
.ws11_c00383{word-spacing:5.772800pt;}
.wse_c00383{word-spacing:5.792000pt;}
.ws28_c00383{word-spacing:7.315200pt;}
.ws10_c00383{word-spacing:7.616000pt;}
.ws29_c00383{word-spacing:7.699200pt;}
.wsf_c00383{word-spacing:7.712000pt;}
.ws26_c00383{word-spacing:9.843200pt;}
.ws24_c00383{word-spacing:10.169600pt;}
.ws25_c00383{word-spacing:10.246400pt;}
.ws23_c00383{word-spacing:10.259200pt;}
.ws16_c00383{word-spacing:11.808000pt;}
.ws17_c00383{word-spacing:11.827200pt;}
.ws2b_c00383{word-spacing:11.859200pt;}
.ws1e_c00383{word-spacing:14.080000pt;}
.ws1f_c00383{word-spacing:14.182400pt;}
.ws1d_c00383{word-spacing:14.188800pt;}
.wsb_c00383{word-spacing:16.294400pt;}
.ws9_c00383{word-spacing:16.384000pt;}
.wsa_c00383{word-spacing:16.467200pt;}
.ws2a_c00383{word-spacing:16.979200pt;}
.ws7_c00383{word-spacing:19.852800pt;}
.ws8_c00383{word-spacing:19.936000pt;}
._0_c00383{margin-left:-0.908480pt;}
._1_c00383{width:0.893760pt;}
._2_c00383{width:4.489216pt;}
.fs5_c00383{font-size:34.560000pt;}
.fs3_c00383{font-size:37.440000pt;}
.fs4_c00383{font-size:42.560000pt;}
.fs2_c00383{font-size:48.000000pt;}
.fs0_c00383{font-size:53.440000pt;}
.fs1_c00383{font-size:64.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y3_c00383{bottom:51.067067pt;}
.y4_c00383{bottom:54.587067pt;}
.y29_c00383{bottom:101.072667pt;}
.y28_c00383{bottom:117.394427pt;}
.y27_c00383{bottom:133.631067pt;}
.y26_c00383{bottom:145.875227pt;}
.y25_c00383{bottom:162.196987pt;}
.y24_c00383{bottom:178.433627pt;}
.y23_c00383{bottom:194.670267pt;}
.y22_c00383{bottom:210.992027pt;}
.y21_c00383{bottom:227.228667pt;}
.y20_c00383{bottom:243.465307pt;}
.y1f_c00383{bottom:259.787067pt;}
.y1e_c00383{bottom:273.307067pt;}
.y1d_c00383{bottom:291.627067pt;}
.y1c_c00383{bottom:310.027067pt;}
.y1b_c00383{bottom:343.467067pt;}
.y1a_c00383{bottom:371.787067pt;}
.y19_c00383{bottom:402.347067pt;}
.y18_c00383{bottom:432.987067pt;}
.y17_c00383{bottom:463.547067pt;}
.y16_c00383{bottom:494.187067pt;}
.y15_c00383{bottom:524.747067pt;}
.y14_c00383{bottom:555.387067pt;}
.y13_c00383{bottom:585.947067pt;}
.y12_c00383{bottom:616.587067pt;}
.y11_c00383{bottom:647.147067pt;}
.y10_c00383{bottom:677.787067pt;}
.yf_c00383{bottom:708.347067pt;}
.ye_c00383{bottom:738.987067pt;}
.yd_c00383{bottom:769.547067pt;}
.yc_c00383{bottom:800.187067pt;}
.yb_c00383{bottom:830.747067pt;}
.ya_c00383{bottom:861.387067pt;}
.y9_c00383{bottom:891.947067pt;}
.y8_c00383{bottom:922.587067pt;}
.y7_c00383{bottom:953.147067pt;}
.y6_c00383{bottom:983.787067pt;}
.y5_c00383{bottom:1014.347067pt;}
.y2_c00383{bottom:1043.387067pt;}
.y1_c00383{bottom:1063.867067pt;}
.h2_c00383{height:42.656250pt;}
.h6_c00383{height:44.388750pt;}
.h1_c00383{height:44.724687pt;}
.h3_c00383{height:50.062500pt;}
.h4_c00383{height:53.562500pt;}
.h5_c00383{height:57.894063pt;}
.h0_c00383{height:1122.666667pt;}
.w1_c00383{width:793.333333pt;}
.w0_c00383{width:793.626667pt;}
.x0_c00383{left:0.000000pt;}
.x2_c00383{left:113.440000pt;}
.x6_c00383{left:137.520000pt;}
.x5_c00383{left:160.640000pt;}
.x4_c00383{left:386.880000pt;}
.x3_c00383{left:396.880000pt;}
.x1_c00383{left:436.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_b395ee94dbc9a0f7245e4bfb.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.100098;font-style:normal;font-weight:normal;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_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;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_c00384;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00384;src:url('chunks/assets/font_30772873fb1c1ab00a0f8e04.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00384{vertical-align:15.840000px;}
.v2_c00384{vertical-align:29.880000px;}
.ls14_c00384{letter-spacing:-0.151200px;}
.ls16_c00384{letter-spacing:-0.036072px;}
.ls1b_c00384{letter-spacing:-0.028800px;}
.ls18_c00384{letter-spacing:-0.021600px;}
.ls17_c00384{letter-spacing:-0.014400px;}
.ls19_c00384{letter-spacing:-0.007200px;}
.ls15_c00384{letter-spacing:-0.006012px;}
.ls13_c00384{letter-spacing:0.000000px;}
.ls6_c00384{letter-spacing:0.006012px;}
.lsd_c00384{letter-spacing:0.007200px;}
.lsa_c00384{letter-spacing:0.014400px;}
.lsb_c00384{letter-spacing:0.021600px;}
.ls12_c00384{letter-spacing:0.023940px;}
.ls4_c00384{letter-spacing:0.024048px;}
.ls11_c00384{letter-spacing:0.028728px;}
.ls5_c00384{letter-spacing:0.030060px;}
.lsc_c00384{letter-spacing:0.036000px;}
.lse_c00384{letter-spacing:0.043200px;}
.ls0_c00384{letter-spacing:0.048096px;}
.ls10_c00384{letter-spacing:0.050400px;}
.ls7_c00384{letter-spacing:0.054108px;}
.lsf_c00384{letter-spacing:0.054756px;}
.ls2_c00384{letter-spacing:0.066132px;}
.ls3_c00384{letter-spacing:0.078156px;}
.ls1a_c00384{letter-spacing:0.093600px;}
.ls8_c00384{letter-spacing:0.136080px;}
.ls9_c00384{letter-spacing:0.153720px;}
.ls1_c00384{letter-spacing:1212.120000px;}
.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:-17.992800px;}
.ws1_c00384{word-spacing:-10.584756px;}
.ws0_c00384{word-spacing:-9.856080px;}
.ws10_c00384{word-spacing:-0.014400px;}
.ws2d_c00384{word-spacing:-0.009576px;}
.ws2e_c00384{word-spacing:-0.004788px;}
.ws4_c00384{word-spacing:0.000000px;}
.ws1f_c00384{word-spacing:0.007200px;}
.ws3_c00384{word-spacing:0.042084px;}
.wsc_c00384{word-spacing:0.126252px;}
.ws20_c00384{word-spacing:0.309600px;}
.ws7_c00384{word-spacing:0.372744px;}
.ws21_c00384{word-spacing:0.396000px;}
.ws8_c00384{word-spacing:0.426852px;}
.wse_c00384{word-spacing:0.684000px;}
.wsf_c00384{word-spacing:0.741600px;}
.ws9_c00384{word-spacing:1.496988px;}
.ws1c_c00384{word-spacing:1.785600px;}
.ws1e_c00384{word-spacing:1.850400px;}
.ws15_c00384{word-spacing:1.900800px;}
.ws16_c00384{word-spacing:1.951200px;}
.ws12_c00384{word-spacing:2.808000px;}
.ws11_c00384{word-spacing:2.822400px;}
.ws14_c00384{word-spacing:2.901600px;}
.ws13_c00384{word-spacing:2.916000px;}
.wsd_c00384{word-spacing:2.923200px;}
.ws19_c00384{word-spacing:3.196800px;}
.ws18_c00384{word-spacing:3.232800px;}
.ws6_c00384{word-spacing:4.701384px;}
.ws5_c00384{word-spacing:4.773528px;}
.ws2a_c00384{word-spacing:4.975200px;}
.ws29_c00384{word-spacing:5.068800px;}
.ws24_c00384{word-spacing:5.752800px;}
.ws23_c00384{word-spacing:5.817600px;}
.wsb_c00384{word-spacing:8.314596px;}
.wsa_c00384{word-spacing:8.362692px;}
.ws26_c00384{word-spacing:11.138400px;}
.ws2b_c00384{word-spacing:11.145600px;}
.ws25_c00384{word-spacing:11.160000px;}
.ws28_c00384{word-spacing:11.844000px;}
.ws27_c00384{word-spacing:11.988000px;}
.ws17_c00384{word-spacing:12.254400px;}
.ws1b_c00384{word-spacing:15.804000px;}
.ws1a_c00384{word-spacing:15.904800px;}
.ws1d_c00384{word-spacing:16.660800px;}
.ws22_c00384{word-spacing:18.014400px;}
.ws2c_c00384{word-spacing:18.727200px;}
._0_c00384{margin-left:-1.322640px;}
._1_c00384{width:1.137600px;}
.fc0_c00384{color:rgb(0,0,0);}
.fs3_c00384{font-size:38.880000px;}
.fs4_c00384{font-size:42.120000px;}
.fs5_c00384{font-size:47.880000px;}
.fs1_c00384{font-size:54.000000px;}
.fs0_c00384{font-size:60.120000px;}
.fs2_c00384{font-size:72.000000px;}
.y0_c00384{bottom:0.000000px;}
.y3_c00384{bottom:57.450450px;}
.y24_c00384{bottom:113.702250px;}
.y23_c00384{bottom:132.064230px;}
.y22_c00384{bottom:150.330450px;}
.y21_c00384{bottom:165.540450px;}
.y20_c00384{bottom:186.240450px;}
.y1f_c00384{bottom:206.940600px;}
.y1e_c00384{bottom:315.840600px;}
.y1d_c00384{bottom:350.310600px;}
.y1c_c00384{bottom:384.690600px;}
.y1b_c00384{bottom:419.160450px;}
.y1a_c00384{bottom:453.540450px;}
.y19_c00384{bottom:488.010450px;}
.y18_c00384{bottom:522.390450px;}
.y17_c00384{bottom:556.860450px;}
.y16_c00384{bottom:591.240450px;}
.y15_c00384{bottom:625.710450px;}
.y14_c00384{bottom:660.090450px;}
.y13_c00384{bottom:694.560450px;}
.y12_c00384{bottom:728.940450px;}
.y11_c00384{bottom:763.410450px;}
.y10_c00384{bottom:797.790450px;}
.yf_c00384{bottom:832.260450px;}
.ye_c00384{bottom:866.640450px;}
.yd_c00384{bottom:901.110450px;}
.yc_c00384{bottom:935.490450px;}
.yb_c00384{bottom:969.960450px;}
.ya_c00384{bottom:1004.340450px;}
.y9_c00384{bottom:1038.810450px;}
.y8_c00384{bottom:1076.235690px;}
.y7_c00384{bottom:1093.159470px;}
.y6_c00384{bottom:1109.993070px;}
.y5_c00384{bottom:1126.916850px;}
.y4_c00384{bottom:1143.750450px;}
.y2_c00384{bottom:1177.860450px;}
.y1_c00384{bottom:1196.850450px;}
.h8_c00384{height:47.988281px;}
.h9_c00384{height:49.937344px;}
.h1_c00384{height:50.315273px;}
.h2_c00384{height:56.320312px;}
.h5_c00384{height:60.257812px;}
.h4_c00384{height:60.316853px;}
.h6_c00384{height:60.328125px;}
.h7_c00384{height:65.130820px;}
.h3_c00384{height:72.160312px;}
.h0_c00384{height:1263.000000px;}
.w1_c00384{width:892.500000px;}
.w0_c00384{width:892.830000px;}
.x0_c00384{left:0.000000px;}
.x1_c00384{left:127.620000px;}
.x2_c00384{left:180.810000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.v1_c00384{vertical-align:14.080000pt;}
.v2_c00384{vertical-align:26.560000pt;}
.ls14_c00384{letter-spacing:-0.134400pt;}
.ls16_c00384{letter-spacing:-0.032064pt;}
.ls1b_c00384{letter-spacing:-0.025600pt;}
.ls18_c00384{letter-spacing:-0.019200pt;}
.ls17_c00384{letter-spacing:-0.012800pt;}
.ls19_c00384{letter-spacing:-0.006400pt;}
.ls15_c00384{letter-spacing:-0.005344pt;}
.ls13_c00384{letter-spacing:0.000000pt;}
.ls6_c00384{letter-spacing:0.005344pt;}
.lsd_c00384{letter-spacing:0.006400pt;}
.lsa_c00384{letter-spacing:0.012800pt;}
.lsb_c00384{letter-spacing:0.019200pt;}
.ls12_c00384{letter-spacing:0.021280pt;}
.ls4_c00384{letter-spacing:0.021376pt;}
.ls11_c00384{letter-spacing:0.025536pt;}
.ls5_c00384{letter-spacing:0.026720pt;}
.lsc_c00384{letter-spacing:0.032000pt;}
.lse_c00384{letter-spacing:0.038400pt;}
.ls0_c00384{letter-spacing:0.042752pt;}
.ls10_c00384{letter-spacing:0.044800pt;}
.ls7_c00384{letter-spacing:0.048096pt;}
.lsf_c00384{letter-spacing:0.048672pt;}
.ls2_c00384{letter-spacing:0.058784pt;}
.ls3_c00384{letter-spacing:0.069472pt;}
.ls1a_c00384{letter-spacing:0.083200pt;}
.ls8_c00384{letter-spacing:0.120960pt;}
.ls9_c00384{letter-spacing:0.136640pt;}
.ls1_c00384{letter-spacing:1077.440000pt;}
.ws2_c00384{word-spacing:-15.993600pt;}
.ws1_c00384{word-spacing:-9.408672pt;}
.ws0_c00384{word-spacing:-8.760960pt;}
.ws10_c00384{word-spacing:-0.012800pt;}
.ws2d_c00384{word-spacing:-0.008512pt;}
.ws2e_c00384{word-spacing:-0.004256pt;}
.ws4_c00384{word-spacing:0.000000pt;}
.ws1f_c00384{word-spacing:0.006400pt;}
.ws3_c00384{word-spacing:0.037408pt;}
.wsc_c00384{word-spacing:0.112224pt;}
.ws20_c00384{word-spacing:0.275200pt;}
.ws7_c00384{word-spacing:0.331328pt;}
.ws21_c00384{word-spacing:0.352000pt;}
.ws8_c00384{word-spacing:0.379424pt;}
.wse_c00384{word-spacing:0.608000pt;}
.wsf_c00384{word-spacing:0.659200pt;}
.ws9_c00384{word-spacing:1.330656pt;}
.ws1c_c00384{word-spacing:1.587200pt;}
.ws1e_c00384{word-spacing:1.644800pt;}
.ws15_c00384{word-spacing:1.689600pt;}
.ws16_c00384{word-spacing:1.734400pt;}
.ws12_c00384{word-spacing:2.496000pt;}
.ws11_c00384{word-spacing:2.508800pt;}
.ws14_c00384{word-spacing:2.579200pt;}
.ws13_c00384{word-spacing:2.592000pt;}
.wsd_c00384{word-spacing:2.598400pt;}
.ws19_c00384{word-spacing:2.841600pt;}
.ws18_c00384{word-spacing:2.873600pt;}
.ws6_c00384{word-spacing:4.179008pt;}
.ws5_c00384{word-spacing:4.243136pt;}
.ws2a_c00384{word-spacing:4.422400pt;}
.ws29_c00384{word-spacing:4.505600pt;}
.ws24_c00384{word-spacing:5.113600pt;}
.ws23_c00384{word-spacing:5.171200pt;}
.wsb_c00384{word-spacing:7.390752pt;}
.wsa_c00384{word-spacing:7.433504pt;}
.ws26_c00384{word-spacing:9.900800pt;}
.ws2b_c00384{word-spacing:9.907200pt;}
.ws25_c00384{word-spacing:9.920000pt;}
.ws28_c00384{word-spacing:10.528000pt;}
.ws27_c00384{word-spacing:10.656000pt;}
.ws17_c00384{word-spacing:10.892800pt;}
.ws1b_c00384{word-spacing:14.048000pt;}
.ws1a_c00384{word-spacing:14.137600pt;}
.ws1d_c00384{word-spacing:14.809600pt;}
.ws22_c00384{word-spacing:16.012800pt;}
.ws2c_c00384{word-spacing:16.646400pt;}
._0_c00384{margin-left:-1.175680pt;}
._1_c00384{width:1.011200pt;}
.fs3_c00384{font-size:34.560000pt;}
.fs4_c00384{font-size:37.440000pt;}
.fs5_c00384{font-size:42.560000pt;}
.fs1_c00384{font-size:48.000000pt;}
.fs0_c00384{font-size:53.440000pt;}
.fs2_c00384{font-size:64.000000pt;}
.y0_c00384{bottom:0.000000pt;}
.y3_c00384{bottom:51.067067pt;}
.y24_c00384{bottom:101.068667pt;}
.y23_c00384{bottom:117.390427pt;}
.y22_c00384{bottom:133.627067pt;}
.y21_c00384{bottom:147.147067pt;}
.y20_c00384{bottom:165.547067pt;}
.y1f_c00384{bottom:183.947200pt;}
.y1e_c00384{bottom:280.747200pt;}
.y1d_c00384{bottom:311.387200pt;}
.y1c_c00384{bottom:341.947200pt;}
.y1b_c00384{bottom:372.587067pt;}
.y1a_c00384{bottom:403.147067pt;}
.y19_c00384{bottom:433.787067pt;}
.y18_c00384{bottom:464.347067pt;}
.y17_c00384{bottom:494.987067pt;}
.y16_c00384{bottom:525.547067pt;}
.y15_c00384{bottom:556.187067pt;}
.y14_c00384{bottom:586.747067pt;}
.y13_c00384{bottom:617.387067pt;}
.y12_c00384{bottom:647.947067pt;}
.y11_c00384{bottom:678.587067pt;}
.y10_c00384{bottom:709.147067pt;}
.yf_c00384{bottom:739.787067pt;}
.ye_c00384{bottom:770.347067pt;}
.yd_c00384{bottom:800.987067pt;}
.yc_c00384{bottom:831.547067pt;}
.yb_c00384{bottom:862.187067pt;}
.ya_c00384{bottom:892.747067pt;}
.y9_c00384{bottom:923.387067pt;}
.y8_c00384{bottom:956.653947pt;}
.y7_c00384{bottom:971.697307pt;}
.y6_c00384{bottom:986.660507pt;}
.y5_c00384{bottom:1001.703867pt;}
.y4_c00384{bottom:1016.667067pt;}
.y2_c00384{bottom:1046.987067pt;}
.y1_c00384{bottom:1063.867067pt;}
.h8_c00384{height:42.656250pt;}
.h9_c00384{height:44.388750pt;}
.h1_c00384{height:44.724687pt;}
.h2_c00384{height:50.062500pt;}
.h5_c00384{height:53.562500pt;}
.h4_c00384{height:53.614980pt;}
.h6_c00384{height:53.625000pt;}
.h7_c00384{height:57.894062pt;}
.h3_c00384{height:64.142500pt;}
.h0_c00384{height:1122.666667pt;}
.w1_c00384{width:793.333333pt;}
.w0_c00384{width:793.626667pt;}
.x0_c00384{left:0.000000pt;}
.x1_c00384{left:113.440000pt;}
.x2_c00384{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_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_c9c26ea314ce87795e02dc1e.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_26753de4b6eb63fa31d4950b.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;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_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;}
.v1_c00385{vertical-align:29.880000px;}
.ls8_c00385{letter-spacing:-0.151200px;}
.lse_c00385{letter-spacing:-0.100800px;}
.lsd_c00385{letter-spacing:-0.064800px;}
.lsa_c00385{letter-spacing:-0.021600px;}
.lsb_c00385{letter-spacing:-0.014400px;}
.ls9_c00385{letter-spacing:-0.007200px;}
.ls7_c00385{letter-spacing:0.000000px;}
.ls3_c00385{letter-spacing:0.014400px;}
.ls2_c00385{letter-spacing:0.021600px;}
.ls5_c00385{letter-spacing:0.023940px;}
.ls4_c00385{letter-spacing:0.028728px;}
.ls6_c00385{letter-spacing:0.033516px;}
.ls0_c00385{letter-spacing:0.036072px;}
.ls1_c00385{letter-spacing:0.054756px;}
.lsc_c00385{letter-spacing:0.093600px;}
.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:-17.985600px;}
.ws2_c00385{word-spacing:-17.935200px;}
.ws0_c00385{word-spacing:-10.584756px;}
.ws3_c00385{word-spacing:-0.306612px;}
.ws13_c00385{word-spacing:-0.093600px;}
.ws16_c00385{word-spacing:-0.014364px;}
.ws14_c00385{word-spacing:-0.009576px;}
.ws15_c00385{word-spacing:-0.004788px;}
.ws4_c00385{word-spacing:0.000000px;}
.ws12_c00385{word-spacing:0.014400px;}
.ws10_c00385{word-spacing:2.527200px;}
.wsf_c00385{word-spacing:2.577600px;}
.ws11_c00385{word-spacing:2.620800px;}
.ws8_c00385{word-spacing:4.327200px;}
.ws5_c00385{word-spacing:4.687200px;}
.ws6_c00385{word-spacing:4.788000px;}
.wsb_c00385{word-spacing:7.538400px;}
.wsc_c00385{word-spacing:7.560000px;}
.ws9_c00385{word-spacing:7.603200px;}
.wsa_c00385{word-spacing:7.632000px;}
.ws7_c00385{word-spacing:8.683200px;}
.wse_c00385{word-spacing:14.767200px;}
.wsd_c00385{word-spacing:14.817600px;}
._0_c00385{margin-left:-1.022040px;}
._1_c00385{width:1.052892px;}
.fc0_c00385{color:rgb(0,0,0);}
.fs3_c00385{font-size:42.120000px;}
.fs4_c00385{font-size:47.880000px;}
.fs2_c00385{font-size:54.000000px;}
.fs0_c00385{font-size:60.120000px;}
.fs1_c00385{font-size:72.000000px;}
.y0_c00385{bottom:0.000000px;}
.y3_c00385{bottom:57.450450px;}
.y4_c00385{bottom:61.410450px;}
.y18_c00385{bottom:113.709780px;}
.y17_c00385{bottom:132.071760px;}
.y16_c00385{bottom:150.337980px;}
.y15_c00385{bottom:168.604200px;}
.y14_c00385{bottom:186.966180px;}
.y13_c00385{bottom:205.232400px;}
.y12_c00385{bottom:223.498620px;}
.y11_c00385{bottom:241.860600px;}
.y10_c00385{bottom:257.070450px;}
.yf_c00385{bottom:277.770450px;}
.ye_c00385{bottom:298.470450px;}
.yd_c00385{bottom:865.740450px;}
.yc_c00385{bottom:900.210450px;}
.yb_c00385{bottom:934.590450px;}
.ya_c00385{bottom:969.060450px;}
.y9_c00385{bottom:1003.440450px;}
.y8_c00385{bottom:1037.910450px;}
.y7_c00385{bottom:1072.290450px;}
.y6_c00385{bottom:1106.760450px;}
.y5_c00385{bottom:1141.140450px;}
.y2_c00385{bottom:1173.810450px;}
.y1_c00385{bottom:1196.850450px;}
.h2_c00385{height:47.988281px;}
.h6_c00385{height:49.937344px;}
.h1_c00385{height:50.315273px;}
.h3_c00385{height:56.320312px;}
.h5_c00385{height:60.257812px;}
.h4_c00385{height:65.130820px;}
.h0_c00385{height:1263.000000px;}
.w1_c00385{width:892.500000px;}
.w0_c00385{width:892.830000px;}
.x0_c00385{left:0.000000px;}
.x2_c00385{left:127.620000px;}
.x5_c00385{left:180.720000px;}
.x4_c00385{left:435.240000px;}
.x3_c00385{left:446.490000px;}
.x1_c00385{left:490.770000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.v1_c00385{vertical-align:26.560000pt;}
.ls8_c00385{letter-spacing:-0.134400pt;}
.lse_c00385{letter-spacing:-0.089600pt;}
.lsd_c00385{letter-spacing:-0.057600pt;}
.lsa_c00385{letter-spacing:-0.019200pt;}
.lsb_c00385{letter-spacing:-0.012800pt;}
.ls9_c00385{letter-spacing:-0.006400pt;}
.ls7_c00385{letter-spacing:0.000000pt;}
.ls3_c00385{letter-spacing:0.012800pt;}
.ls2_c00385{letter-spacing:0.019200pt;}
.ls5_c00385{letter-spacing:0.021280pt;}
.ls4_c00385{letter-spacing:0.025536pt;}
.ls6_c00385{letter-spacing:0.029792pt;}
.ls0_c00385{letter-spacing:0.032064pt;}
.ls1_c00385{letter-spacing:0.048672pt;}
.lsc_c00385{letter-spacing:0.083200pt;}
.ws1_c00385{word-spacing:-15.987200pt;}
.ws2_c00385{word-spacing:-15.942400pt;}
.ws0_c00385{word-spacing:-9.408672pt;}
.ws3_c00385{word-spacing:-0.272544pt;}
.ws13_c00385{word-spacing:-0.083200pt;}
.ws16_c00385{word-spacing:-0.012768pt;}
.ws14_c00385{word-spacing:-0.008512pt;}
.ws15_c00385{word-spacing:-0.004256pt;}
.ws4_c00385{word-spacing:0.000000pt;}
.ws12_c00385{word-spacing:0.012800pt;}
.ws10_c00385{word-spacing:2.246400pt;}
.wsf_c00385{word-spacing:2.291200pt;}
.ws11_c00385{word-spacing:2.329600pt;}
.ws8_c00385{word-spacing:3.846400pt;}
.ws5_c00385{word-spacing:4.166400pt;}
.ws6_c00385{word-spacing:4.256000pt;}
.wsb_c00385{word-spacing:6.700800pt;}
.wsc_c00385{word-spacing:6.720000pt;}
.ws9_c00385{word-spacing:6.758400pt;}
.wsa_c00385{word-spacing:6.784000pt;}
.ws7_c00385{word-spacing:7.718400pt;}
.wse_c00385{word-spacing:13.126400pt;}
.wsd_c00385{word-spacing:13.171200pt;}
._0_c00385{margin-left:-0.908480pt;}
._1_c00385{width:0.935904pt;}
.fs3_c00385{font-size:37.440000pt;}
.fs4_c00385{font-size:42.560000pt;}
.fs2_c00385{font-size:48.000000pt;}
.fs0_c00385{font-size:53.440000pt;}
.fs1_c00385{font-size:64.000000pt;}
.y0_c00385{bottom:0.000000pt;}
.y3_c00385{bottom:51.067067pt;}
.y4_c00385{bottom:54.587067pt;}
.y18_c00385{bottom:101.075360pt;}
.y17_c00385{bottom:117.397120pt;}
.y16_c00385{bottom:133.633760pt;}
.y15_c00385{bottom:149.870400pt;}
.y14_c00385{bottom:166.192160pt;}
.y13_c00385{bottom:182.428800pt;}
.y12_c00385{bottom:198.665440pt;}
.y11_c00385{bottom:214.987200pt;}
.y10_c00385{bottom:228.507067pt;}
.yf_c00385{bottom:246.907067pt;}
.ye_c00385{bottom:265.307067pt;}
.yd_c00385{bottom:769.547067pt;}
.yc_c00385{bottom:800.187067pt;}
.yb_c00385{bottom:830.747067pt;}
.ya_c00385{bottom:861.387067pt;}
.y9_c00385{bottom:891.947067pt;}
.y8_c00385{bottom:922.587067pt;}
.y7_c00385{bottom:953.147067pt;}
.y6_c00385{bottom:983.787067pt;}
.y5_c00385{bottom:1014.347067pt;}
.y2_c00385{bottom:1043.387067pt;}
.y1_c00385{bottom:1063.867067pt;}
.h2_c00385{height:42.656250pt;}
.h6_c00385{height:44.388750pt;}
.h1_c00385{height:44.724687pt;}
.h3_c00385{height:50.062500pt;}
.h5_c00385{height:53.562500pt;}
.h4_c00385{height:57.894063pt;}
.h0_c00385{height:1122.666667pt;}
.w1_c00385{width:793.333333pt;}
.w0_c00385{width:793.626667pt;}
.x0_c00385{left:0.000000pt;}
.x2_c00385{left:113.440000pt;}
.x5_c00385{left:160.640000pt;}
.x4_c00385{left:386.880000pt;}
.x3_c00385{left:396.880000pt;}
.x1_c00385{left:436.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_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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00386;src:url('chunks/assets/font_37b34d178b7f366fdba2f8db.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;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_c00386;src:url('chunks/assets/font_c7980fbb680a8e5abb333ab3.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.100098;font-style: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;}
.v1_c00386{vertical-align:15.840000px;}
.ls2_c00386{letter-spacing:-0.151200px;}
.ls1_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00386{word-spacing:0.000000px;}
.fc1_c00386{color:rgb(255,255,255);}
.fc0_c00386{color:rgb(0,0,0);}
.fs1_c00386{font-size:54.000000px;}
.fs0_c00386{font-size:72.000000px;}
.y0_c00386{bottom:0.000000px;}
.y2_c00386{bottom:57.450450px;}
.y4_c00386{bottom:1106.760450px;}
.y3_c00386{bottom:1141.140450px;}
.y1_c00386{bottom:1193.250450px;}
.h1_c00386{height:47.988281px;}
.h3_c00386{height:60.257812px;}
.h2_c00386{height:72.160313px;}
.h0_c00386{height:1263.000000px;}
.w1_c00386{width:892.500000px;}
.w0_c00386{width:892.830000px;}
.x0_c00386{left:0.000000px;}
.x1_c00386{left:127.620000px;}
.x2_c00386{left:180.720000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.v1_c00386{vertical-align:14.080000pt;}
.ls2_c00386{letter-spacing:-0.134400pt;}
.ls1_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:1077.440000pt;}
.ws0_c00386{word-spacing:0.000000pt;}
.fs1_c00386{font-size:48.000000pt;}
.fs0_c00386{font-size:64.000000pt;}
.y0_c00386{bottom:0.000000pt;}
.y2_c00386{bottom:51.067067pt;}
.y4_c00386{bottom:983.787067pt;}
.y3_c00386{bottom:1014.347067pt;}
.y1_c00386{bottom:1060.667067pt;}
.h1_c00386{height:42.656250pt;}
.h3_c00386{height:53.562500pt;}
.h2_c00386{height:64.142500pt;}
.h0_c00386{height:1122.666667pt;}
.w1_c00386{width:793.333333pt;}
.w0_c00386{width:793.626667pt;}
.x0_c00386{left:0.000000pt;}
.x1_c00386{left:113.440000pt;}
.x2_c00386{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_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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00387;src:url('chunks/assets/font_56b85e0b4ee7cb23469dbb4e.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;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_c00387;src:url('chunks/assets/font_78b577d5fa26418d9157e3fe.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.100098;font-style:normal;font-weight:normal;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_05a22149ba35c9b75345c2fd.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00387;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00387{font-family:ff5_c00387;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_c00387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.v1_c00387{vertical-align:15.840000px;}
.v2_c00387{vertical-align:29.880000px;}
.ls6_c00387{letter-spacing:-0.151200px;}
.lsc_c00387{letter-spacing:-0.036000px;}
.lsa_c00387{letter-spacing:-0.028800px;}
.ls9_c00387{letter-spacing:-0.014400px;}
.ls8_c00387{letter-spacing:-0.007200px;}
.ls5_c00387{letter-spacing:0.000000px;}
.ls2_c00387{letter-spacing:0.007200px;}
.ls7_c00387{letter-spacing:0.010800px;}
.ls4_c00387{letter-spacing:0.033516px;}
.ls3_c00387{letter-spacing:0.045720px;}
.lsb_c00387{letter-spacing:0.093600px;}
.ls0_c00387{letter-spacing:1212.120000px;}
.ls1_c00387{letter-spacing:1913.976000px;}
.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;}
}
.ws1_c00387{word-spacing:-0.097200px;}
.ws12_c00387{word-spacing:-0.014364px;}
.ws0_c00387{word-spacing:0.000000px;}
.wse_c00387{word-spacing:0.007200px;}
.wsa_c00387{word-spacing:2.224800px;}
.ws9_c00387{word-spacing:2.275200px;}
.ws10_c00387{word-spacing:10.087200px;}
.wsf_c00387{word-spacing:10.159200px;}
.ws5_c00387{word-spacing:10.872000px;}
.ws6_c00387{word-spacing:10.893600px;}
.ws7_c00387{word-spacing:10.972800px;}
.ws8_c00387{word-spacing:11.167200px;}
.ws2_c00387{word-spacing:11.851200px;}
.ws4_c00387{word-spacing:12.960000px;}
.ws3_c00387{word-spacing:13.024800px;}
.wsb_c00387{word-spacing:18.021600px;}
.ws11_c00387{word-spacing:23.076000px;}
.wsd_c00387{word-spacing:24.069600px;}
.wsc_c00387{word-spacing:24.148800px;}
._0_c00387{width:1.036800px;}
.fc0_c00387{color:rgb(0,0,0);}
.fs3_c00387{font-size:42.120000px;}
.fs4_c00387{font-size:47.880000px;}
.fs1_c00387{font-size:54.000000px;}
.fs0_c00387{font-size:72.000000px;}
.fs2_c00387{font-size:108.000000px;}
.y0_c00387{bottom:0.000000px;}
.y2_c00387{bottom:57.450450px;}
.y15_c00387{bottom:113.700450px;}
.y14_c00387{bottom:128.910450px;}
.y13_c00387{bottom:149.610450px;}
.y12_c00387{bottom:170.310450px;}
.y11_c00387{bottom:249.960450px;}
.y10_c00387{bottom:284.340450px;}
.yf_c00387{bottom:327.810450px;}
.ye_c00387{bottom:362.190450px;}
.yd_c00387{bottom:396.660450px;}
.yc_c00387{bottom:431.040450px;}
.yb_c00387{bottom:465.510450px;}
.ya_c00387{bottom:499.890450px;}
.y9_c00387{bottom:534.360450px;}
.y8_c00387{bottom:568.740450px;}
.y7_c00387{bottom:723.621450px;}
.y6_c00387{bottom:769.170450px;}
.y5_c00387{bottom:1063.290450px;}
.y4_c00387{bottom:1106.760450px;}
.y3_c00387{bottom:1141.140450px;}
.y1_c00387{bottom:1193.250450px;}
.h1_c00387{height:47.988281px;}
.h7_c00387{height:49.937344px;}
.h3_c00387{height:60.257812px;}
.h6_c00387{height:65.130820px;}
.h2_c00387{height:72.160313px;}
.h5_c00387{height:90.492188px;}
.h4_c00387{height:112.640625px;}
.h0_c00387{height:1263.000000px;}
.w1_c00387{width:892.500000px;}
.w0_c00387{width:892.830000px;}
.x0_c00387{left:0.000000px;}
.x1_c00387{left:127.620000px;}
.x2_c00387{left:132.120000px;}
.x3_c00387{left:180.810000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.v1_c00387{vertical-align:14.080000pt;}
.v2_c00387{vertical-align:26.560000pt;}
.ls6_c00387{letter-spacing:-0.134400pt;}
.lsc_c00387{letter-spacing:-0.032000pt;}
.lsa_c00387{letter-spacing:-0.025600pt;}
.ls9_c00387{letter-spacing:-0.012800pt;}
.ls8_c00387{letter-spacing:-0.006400pt;}
.ls5_c00387{letter-spacing:0.000000pt;}
.ls2_c00387{letter-spacing:0.006400pt;}
.ls7_c00387{letter-spacing:0.009600pt;}
.ls4_c00387{letter-spacing:0.029792pt;}
.ls3_c00387{letter-spacing:0.040640pt;}
.lsb_c00387{letter-spacing:0.083200pt;}
.ls0_c00387{letter-spacing:1077.440000pt;}
.ls1_c00387{letter-spacing:1701.312000pt;}
.ws1_c00387{word-spacing:-0.086400pt;}
.ws12_c00387{word-spacing:-0.012768pt;}
.ws0_c00387{word-spacing:0.000000pt;}
.wse_c00387{word-spacing:0.006400pt;}
.wsa_c00387{word-spacing:1.977600pt;}
.ws9_c00387{word-spacing:2.022400pt;}
.ws10_c00387{word-spacing:8.966400pt;}
.wsf_c00387{word-spacing:9.030400pt;}
.ws5_c00387{word-spacing:9.664000pt;}
.ws6_c00387{word-spacing:9.683200pt;}
.ws7_c00387{word-spacing:9.753600pt;}
.ws8_c00387{word-spacing:9.926400pt;}
.ws2_c00387{word-spacing:10.534400pt;}
.ws4_c00387{word-spacing:11.520000pt;}
.ws3_c00387{word-spacing:11.577600pt;}
.wsb_c00387{word-spacing:16.019200pt;}
.ws11_c00387{word-spacing:20.512000pt;}
.wsd_c00387{word-spacing:21.395200pt;}
.wsc_c00387{word-spacing:21.465600pt;}
._0_c00387{width:0.921600pt;}
.fs3_c00387{font-size:37.440000pt;}
.fs4_c00387{font-size:42.560000pt;}
.fs1_c00387{font-size:48.000000pt;}
.fs0_c00387{font-size:64.000000pt;}
.fs2_c00387{font-size:96.000000pt;}
.y0_c00387{bottom:0.000000pt;}
.y2_c00387{bottom:51.067067pt;}
.y15_c00387{bottom:101.067067pt;}
.y14_c00387{bottom:114.587067pt;}
.y13_c00387{bottom:132.987067pt;}
.y12_c00387{bottom:151.387067pt;}
.y11_c00387{bottom:222.187067pt;}
.y10_c00387{bottom:252.747067pt;}
.yf_c00387{bottom:291.387067pt;}
.ye_c00387{bottom:321.947067pt;}
.yd_c00387{bottom:352.587067pt;}
.yc_c00387{bottom:383.147067pt;}
.yb_c00387{bottom:413.787067pt;}
.ya_c00387{bottom:444.347067pt;}
.y9_c00387{bottom:474.987067pt;}
.y8_c00387{bottom:505.547067pt;}
.y7_c00387{bottom:643.219067pt;}
.y6_c00387{bottom:683.707067pt;}
.y5_c00387{bottom:945.147067pt;}
.y4_c00387{bottom:983.787067pt;}
.y3_c00387{bottom:1014.347067pt;}
.y1_c00387{bottom:1060.667067pt;}
.h1_c00387{height:42.656250pt;}
.h7_c00387{height:44.388750pt;}
.h3_c00387{height:53.562500pt;}
.h6_c00387{height:57.894063pt;}
.h2_c00387{height:64.142500pt;}
.h5_c00387{height:80.437500pt;}
.h4_c00387{height:100.125000pt;}
.h0_c00387{height:1122.666667pt;}
.w1_c00387{width:793.333333pt;}
.w0_c00387{width:793.626667pt;}
.x0_c00387{left:0.000000pt;}
.x1_c00387{left:113.440000pt;}
.x2_c00387{left:117.440000pt;}
.x3_c00387{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_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_aef621f829209e70e1187177.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00388;src:url('chunks/assets/font_5c0be8250e584b859098a28d.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00388;src:url('chunks/assets/font_c4385467cdddee648f723639.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00388;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;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_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;}
.v1_c00388{vertical-align:15.840000px;}
.v2_c00388{vertical-align:29.880000px;}
.ls1a_c00388{letter-spacing:-0.390780px;}
.lsd_c00388{letter-spacing:-0.151200px;}
.ls14_c00388{letter-spacing:-0.092268px;}
.ls19_c00388{letter-spacing:-0.054684px;}
.ls12_c00388{letter-spacing:-0.036000px;}
.lsf_c00388{letter-spacing:-0.028800px;}
.ls18_c00388{letter-spacing:-0.023436px;}
.ls11_c00388{letter-spacing:-0.021600px;}
.lse_c00388{letter-spacing:-0.014400px;}
.ls16_c00388{letter-spacing:-0.007200px;}
.ls10_c00388{letter-spacing:0.000000px;}
.ls2_c00388{letter-spacing:0.007200px;}
.ls9_c00388{letter-spacing:0.012024px;}
.ls3_c00388{letter-spacing:0.014400px;}
.ls5_c00388{letter-spacing:0.021600px;}
.ls6_c00388{letter-spacing:0.028800px;}
.lsc_c00388{letter-spacing:0.033516px;}
.lsb_c00388{letter-spacing:0.038304px;}
.ls17_c00388{letter-spacing:0.043200px;}
.ls7_c00388{letter-spacing:0.045720px;}
.ls0_c00388{letter-spacing:0.048096px;}
.lsa_c00388{letter-spacing:0.066132px;}
.ls15_c00388{letter-spacing:0.075492px;}
.ls13_c00388{letter-spacing:0.079200px;}
.ls4_c00388{letter-spacing:23.486400px;}
.ls8_c00388{letter-spacing:88.822440px;}
.ls1_c00388{letter-spacing:1212.120000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00388{word-spacing:-20.877732px;}
.ws1_c00388{word-spacing:-19.506564px;}
.ws11_c00388{word-spacing:-0.167760px;}
.ws20_c00388{word-spacing:-0.085932px;}
.ws28_c00388{word-spacing:-0.019152px;}
.ws18_c00388{word-spacing:-0.014400px;}
.ws6_c00388{word-spacing:-0.007200px;}
.ws3_c00388{word-spacing:0.000000px;}
.ws2_c00388{word-spacing:0.042084px;}
.ws24_c00388{word-spacing:0.078156px;}
.ws1a_c00388{word-spacing:0.684000px;}
.ws1b_c00388{word-spacing:0.698400px;}
.wsb_c00388{word-spacing:0.720000px;}
.wsa_c00388{word-spacing:1.015200px;}
.ws9_c00388{word-spacing:1.080000px;}
.wsc_c00388{word-spacing:1.123200px;}
.wsd_c00388{word-spacing:1.195200px;}
.ws25_c00388{word-spacing:1.478952px;}
.ws22_c00388{word-spacing:2.793600px;}
.ws23_c00388{word-spacing:2.815200px;}
.wse_c00388{word-spacing:2.901600px;}
.ws10_c00388{word-spacing:4.312800px;}
.wsf_c00388{word-spacing:4.399200px;}
.ws16_c00388{word-spacing:5.400000px;}
.ws17_c00388{word-spacing:5.414400px;}
.ws1e_c00388{word-spacing:5.774400px;}
.ws1f_c00388{word-spacing:5.796000px;}
.ws21_c00388{word-spacing:8.272800px;}
.ws7_c00388{word-spacing:10.454400px;}
.ws8_c00388{word-spacing:10.468800px;}
.ws27_c00388{word-spacing:10.821600px;}
.ws19_c00388{word-spacing:11.174400px;}
.ws26_c00388{word-spacing:11.278512px;}
.ws1d_c00388{word-spacing:11.520000px;}
.ws1c_c00388{word-spacing:11.570400px;}
.ws13_c00388{word-spacing:12.578400px;}
.ws12_c00388{word-spacing:12.592800px;}
.ws5_c00388{word-spacing:16.192800px;}
.ws4_c00388{word-spacing:16.214400px;}
.ws15_c00388{word-spacing:20.008800px;}
.ws14_c00388{word-spacing:20.167200px;}
._0_c00388{margin-left:-1.322640px;}
._1_c00388{width:1.322640px;}
.fc0_c00388{color:rgb(0,0,0);}
.fs4_c00388{font-size:42.120000px;}
.fs6_c00388{font-size:47.880000px;}
.fs2_c00388{font-size:54.000000px;}
.fs0_c00388{font-size:60.120000px;}
.fs1_c00388{font-size:72.000000px;}
.fs5_c00388{font-size:78.120000px;}
.fs3_c00388{font-size:83.880000px;}
.y0_c00388{bottom:0.000000px;}
.y2_c00388{bottom:57.450450px;}
.y21_c00388{bottom:113.698470px;}
.y20_c00388{bottom:132.060450px;}
.y1f_c00388{bottom:147.270450px;}
.y1e_c00388{bottom:167.970450px;}
.y1d_c00388{bottom:188.670450px;}
.y1c_c00388{bottom:219.623070px;}
.y1b_c00388{bottom:236.546850px;}
.y1a_c00388{bottom:253.380450px;}
.y19_c00388{bottom:294.240450px;}
.y18_c00388{bottom:328.620450px;}
.y17_c00388{bottom:363.090450px;}
.y16_c00388{bottom:408.090600px;}
.y15_c00388{bottom:470.820600px;}
.y14_c00388{bottom:505.200450px;}
.y13_c00388{bottom:539.670450px;}
.y12_c00388{bottom:574.050450px;}
.y11_c00388{bottom:608.520450px;}
.y10_c00388{bottom:651.900450px;}
.yf_c00388{bottom:686.370450px;}
.ye_c00388{bottom:720.750450px;}
.yd_c00388{bottom:755.220450px;}
.yc_c00388{bottom:801.750450px;}
.yb_c00388{bottom:856.740450px;}
.ya_c00388{bottom:891.210450px;}
.y9_c00388{bottom:925.590450px;}
.y8_c00388{bottom:960.060450px;}
.y7_c00388{bottom:994.440450px;}
.y6_c00388{bottom:1028.910450px;}
.y5_c00388{bottom:1063.290450px;}
.y4_c00388{bottom:1106.760450px;}
.y3_c00388{bottom:1141.140450px;}
.y1_c00388{bottom:1196.850450px;}
.h7_c00388{height:47.988281px;}
.h8_c00388{height:49.937344px;}
.h1_c00388{height:50.315273px;}
.h3_c00388{height:60.257812px;}
.h5_c00388{height:65.130820px;}
.h2_c00388{height:72.160312px;}
.h6_c00388{height:81.476719px;}
.h4_c00388{height:87.484219px;}
.h0_c00388{height:1263.000000px;}
.w1_c00388{width:892.500000px;}
.w0_c00388{width:892.830000px;}
.x0_c00388{left:0.000000px;}
.x1_c00388{left:127.620000px;}
.x3_c00388{left:154.440000px;}
.x4_c00388{left:168.027120px;}
.x2_c00388{left:180.810000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.v1_c00388{vertical-align:14.080000pt;}
.v2_c00388{vertical-align:26.560000pt;}
.ls1a_c00388{letter-spacing:-0.347360pt;}
.lsd_c00388{letter-spacing:-0.134400pt;}
.ls14_c00388{letter-spacing:-0.082016pt;}
.ls19_c00388{letter-spacing:-0.048608pt;}
.ls12_c00388{letter-spacing:-0.032000pt;}
.lsf_c00388{letter-spacing:-0.025600pt;}
.ls18_c00388{letter-spacing:-0.020832pt;}
.ls11_c00388{letter-spacing:-0.019200pt;}
.lse_c00388{letter-spacing:-0.012800pt;}
.ls16_c00388{letter-spacing:-0.006400pt;}
.ls10_c00388{letter-spacing:0.000000pt;}
.ls2_c00388{letter-spacing:0.006400pt;}
.ls9_c00388{letter-spacing:0.010688pt;}
.ls3_c00388{letter-spacing:0.012800pt;}
.ls5_c00388{letter-spacing:0.019200pt;}
.ls6_c00388{letter-spacing:0.025600pt;}
.lsc_c00388{letter-spacing:0.029792pt;}
.lsb_c00388{letter-spacing:0.034048pt;}
.ls17_c00388{letter-spacing:0.038400pt;}
.ls7_c00388{letter-spacing:0.040640pt;}
.ls0_c00388{letter-spacing:0.042752pt;}
.lsa_c00388{letter-spacing:0.058784pt;}
.ls15_c00388{letter-spacing:0.067104pt;}
.ls13_c00388{letter-spacing:0.070400pt;}
.ls4_c00388{letter-spacing:20.876800pt;}
.ls8_c00388{letter-spacing:78.953280pt;}
.ls1_c00388{letter-spacing:1077.440000pt;}
.ws0_c00388{word-spacing:-18.557984pt;}
.ws1_c00388{word-spacing:-17.339168pt;}
.ws11_c00388{word-spacing:-0.149120pt;}
.ws20_c00388{word-spacing:-0.076384pt;}
.ws28_c00388{word-spacing:-0.017024pt;}
.ws18_c00388{word-spacing:-0.012800pt;}
.ws6_c00388{word-spacing:-0.006400pt;}
.ws3_c00388{word-spacing:0.000000pt;}
.ws2_c00388{word-spacing:0.037408pt;}
.ws24_c00388{word-spacing:0.069472pt;}
.ws1a_c00388{word-spacing:0.608000pt;}
.ws1b_c00388{word-spacing:0.620800pt;}
.wsb_c00388{word-spacing:0.640000pt;}
.wsa_c00388{word-spacing:0.902400pt;}
.ws9_c00388{word-spacing:0.960000pt;}
.wsc_c00388{word-spacing:0.998400pt;}
.wsd_c00388{word-spacing:1.062400pt;}
.ws25_c00388{word-spacing:1.314624pt;}
.ws22_c00388{word-spacing:2.483200pt;}
.ws23_c00388{word-spacing:2.502400pt;}
.wse_c00388{word-spacing:2.579200pt;}
.ws10_c00388{word-spacing:3.833600pt;}
.wsf_c00388{word-spacing:3.910400pt;}
.ws16_c00388{word-spacing:4.800000pt;}
.ws17_c00388{word-spacing:4.812800pt;}
.ws1e_c00388{word-spacing:5.132800pt;}
.ws1f_c00388{word-spacing:5.152000pt;}
.ws21_c00388{word-spacing:7.353600pt;}
.ws7_c00388{word-spacing:9.292800pt;}
.ws8_c00388{word-spacing:9.305600pt;}
.ws27_c00388{word-spacing:9.619200pt;}
.ws19_c00388{word-spacing:9.932800pt;}
.ws26_c00388{word-spacing:10.025344pt;}
.ws1d_c00388{word-spacing:10.240000pt;}
.ws1c_c00388{word-spacing:10.284800pt;}
.ws13_c00388{word-spacing:11.180800pt;}
.ws12_c00388{word-spacing:11.193600pt;}
.ws5_c00388{word-spacing:14.393600pt;}
.ws4_c00388{word-spacing:14.412800pt;}
.ws15_c00388{word-spacing:17.785600pt;}
.ws14_c00388{word-spacing:17.926400pt;}
._0_c00388{margin-left:-1.175680pt;}
._1_c00388{width:1.175680pt;}
.fs4_c00388{font-size:37.440000pt;}
.fs6_c00388{font-size:42.560000pt;}
.fs2_c00388{font-size:48.000000pt;}
.fs0_c00388{font-size:53.440000pt;}
.fs1_c00388{font-size:64.000000pt;}
.fs5_c00388{font-size:69.440000pt;}
.fs3_c00388{font-size:74.560000pt;}
.y0_c00388{bottom:0.000000pt;}
.y2_c00388{bottom:51.067067pt;}
.y21_c00388{bottom:101.065307pt;}
.y20_c00388{bottom:117.387067pt;}
.y1f_c00388{bottom:130.907067pt;}
.y1e_c00388{bottom:149.307067pt;}
.y1d_c00388{bottom:167.707067pt;}
.y1c_c00388{bottom:195.220507pt;}
.y1b_c00388{bottom:210.263867pt;}
.y1a_c00388{bottom:225.227067pt;}
.y19_c00388{bottom:261.547067pt;}
.y18_c00388{bottom:292.107067pt;}
.y17_c00388{bottom:322.747067pt;}
.y16_c00388{bottom:362.747200pt;}
.y15_c00388{bottom:418.507200pt;}
.y14_c00388{bottom:449.067067pt;}
.y13_c00388{bottom:479.707067pt;}
.y12_c00388{bottom:510.267067pt;}
.y11_c00388{bottom:540.907067pt;}
.y10_c00388{bottom:579.467067pt;}
.yf_c00388{bottom:610.107067pt;}
.ye_c00388{bottom:640.667067pt;}
.yd_c00388{bottom:671.307067pt;}
.yc_c00388{bottom:712.667067pt;}
.yb_c00388{bottom:761.547067pt;}
.ya_c00388{bottom:792.187067pt;}
.y9_c00388{bottom:822.747067pt;}
.y8_c00388{bottom:853.387067pt;}
.y7_c00388{bottom:883.947067pt;}
.y6_c00388{bottom:914.587067pt;}
.y5_c00388{bottom:945.147067pt;}
.y4_c00388{bottom:983.787067pt;}
.y3_c00388{bottom:1014.347067pt;}
.y1_c00388{bottom:1063.867067pt;}
.h7_c00388{height:42.656250pt;}
.h8_c00388{height:44.388750pt;}
.h1_c00388{height:44.724687pt;}
.h3_c00388{height:53.562500pt;}
.h5_c00388{height:57.894063pt;}
.h2_c00388{height:64.142500pt;}
.h6_c00388{height:72.423750pt;}
.h4_c00388{height:77.763750pt;}
.h0_c00388{height:1122.666667pt;}
.w1_c00388{width:793.333333pt;}
.w0_c00388{width:793.626667pt;}
.x0_c00388{left:0.000000pt;}
.x1_c00388{left:113.440000pt;}
.x3_c00388{left:137.280000pt;}
.x4_c00388{left:149.357440pt;}
.x2_c00388{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_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_f6c84fea9748603cd0bed4d7.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00389;src:url('chunks/assets/font_1c1ea17d17c05da5ee56d5c8.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00389;src:url('chunks/assets/font_fc68110d5b0c1c3f85783c91.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00389;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00389{font-family:ff5_c00389;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_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.v1_c00389{vertical-align:15.134400px;}
.v2_c00389{vertical-align:29.880000px;}
.lsc_c00389{letter-spacing:-0.151200px;}
.ls17_c00389{letter-spacing:-0.054684px;}
.lsd_c00389{letter-spacing:-0.048096px;}
.ls16_c00389{letter-spacing:-0.036000px;}
.ls13_c00389{letter-spacing:-0.028800px;}
.lsf_c00389{letter-spacing:-0.021600px;}
.ls11_c00389{letter-spacing:-0.014400px;}
.ls10_c00389{letter-spacing:-0.007200px;}
.lsa_c00389{letter-spacing:-0.006012px;}
.lsb_c00389{letter-spacing:0.000000px;}
.ls2_c00389{letter-spacing:0.007200px;}
.ls18_c00389{letter-spacing:0.014364px;}
.ls5_c00389{letter-spacing:0.014400px;}
.ls6_c00389{letter-spacing:0.015624px;}
.ls15_c00389{letter-spacing:0.021600px;}
.ls4_c00389{letter-spacing:0.028800px;}
.ls9_c00389{letter-spacing:0.033516px;}
.ls0_c00389{letter-spacing:0.042084px;}
.ls3_c00389{letter-spacing:0.045720px;}
.ls12_c00389{letter-spacing:0.050400px;}
.ls8_c00389{letter-spacing:0.052668px;}
.ls14_c00389{letter-spacing:0.093600px;}
.ls1_c00389{letter-spacing:0.125280px;}
.lse_c00389{letter-spacing:0.168336px;}
.ls7_c00389{letter-spacing:32.263560px;}
.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:-19.545624px;}
.ws1_c00389{word-spacing:-17.992800px;}
.ws0_c00389{word-spacing:-14.981904px;}
.ws23_c00389{word-spacing:-0.039060px;}
.ws29_c00389{word-spacing:-0.014364px;}
.ws4_c00389{word-spacing:0.000000px;}
.wsa_c00389{word-spacing:0.007200px;}
.wsb_c00389{word-spacing:0.021600px;}
.ws22_c00389{word-spacing:0.079200px;}
.ws3_c00389{word-spacing:0.096192px;}
.ws25_c00389{word-spacing:1.087200px;}
.ws17_c00389{word-spacing:1.144800px;}
.ws26_c00389{word-spacing:1.152000px;}
.ws18_c00389{word-spacing:1.159200px;}
.ws11_c00389{word-spacing:2.534400px;}
.ws5_c00389{word-spacing:2.567124px;}
.ws27_c00389{word-spacing:2.844072px;}
.ws28_c00389{word-spacing:2.863224px;}
.ws6_c00389{word-spacing:3.981600px;}
.ws1c_c00389{word-spacing:4.665600px;}
.ws24_c00389{word-spacing:5.047200px;}
.ws9_c00389{word-spacing:5.716800px;}
.ws1e_c00389{word-spacing:5.752800px;}
.ws8_c00389{word-spacing:5.767200px;}
.ws1f_c00389{word-spacing:5.817600px;}
.ws10_c00389{word-spacing:7.531200px;}
.wsf_c00389{word-spacing:7.639200px;}
.ws19_c00389{word-spacing:8.323200px;}
.ws14_c00389{word-spacing:9.028800px;}
.ws1d_c00389{word-spacing:9.036000px;}
.ws13_c00389{word-spacing:11.527200px;}
.ws12_c00389{word-spacing:11.563200px;}
.ws7_c00389{word-spacing:11.930400px;}
.ws16_c00389{word-spacing:13.507200px;}
.wse_c00389{word-spacing:13.629600px;}
.wsc_c00389{word-spacing:13.672800px;}
.ws15_c00389{word-spacing:13.708800px;}
.wsd_c00389{word-spacing:13.802400px;}
.ws20_c00389{word-spacing:15.408000px;}
.ws21_c00389{word-spacing:15.494400px;}
.ws1b_c00389{word-spacing:29.368800px;}
.ws1a_c00389{word-spacing:29.534400px;}
._0_c00389{margin-left:-1.202400px;}
._1_c00389{width:1.008000px;}
.fc0_c00389{color:rgb(0,0,0);}
.fs3_c00389{font-size:38.880000px;}
.fs4_c00389{font-size:42.120000px;}
.fs6_c00389{font-size:47.880000px;}
.fs2_c00389{font-size:54.000000px;}
.fs0_c00389{font-size:60.120000px;}
.fs1_c00389{font-size:72.000000px;}
.fs5_c00389{font-size:78.120000px;}
.y0_c00389{bottom:0.000000px;}
.y2_c00389{bottom:57.450450px;}
.y3_c00389{bottom:61.410450px;}
.y23_c00389{bottom:113.702970px;}
.y22_c00389{bottom:132.064950px;}
.y21_c00389{bottom:145.830450px;}
.y20_c00389{bottom:161.040450px;}
.y1f_c00389{bottom:181.740450px;}
.y1e_c00389{bottom:202.440450px;}
.y1d_c00389{bottom:231.780450px;}
.y1c_c00389{bottom:266.160450px;}
.y1b_c00389{bottom:300.630450px;}
.y1a_c00389{bottom:345.630450px;}
.y19_c00389{bottom:408.360450px;}
.y18_c00389{bottom:442.740450px;}
.y17_c00389{bottom:477.210450px;}
.y16_c00389{bottom:511.590450px;}
.y15_c00389{bottom:546.060450px;}
.y14_c00389{bottom:589.440450px;}
.y13_c00389{bottom:623.910450px;}
.y12_c00389{bottom:658.290450px;}
.y11_c00389{bottom:692.760450px;}
.y10_c00389{bottom:736.140450px;}
.yf_c00389{bottom:770.610450px;}
.ye_c00389{bottom:804.990450px;}
.yd_c00389{bottom:839.460450px;}
.yc_c00389{bottom:873.840450px;}
.yb_c00389{bottom:908.310450px;}
.ya_c00389{bottom:942.690450px;}
.y9_c00389{bottom:986.160450px;}
.y8_c00389{bottom:1020.540450px;}
.y7_c00389{bottom:1055.010450px;}
.y6_c00389{bottom:1089.390450px;}
.y5_c00389{bottom:1126.916850px;}
.y4_c00389{bottom:1143.750450px;}
.y1_c00389{bottom:1196.850450px;}
.h2_c00389{height:47.988281px;}
.h8_c00389{height:49.937344px;}
.h1_c00389{height:50.315273px;}
.h4_c00389{height:50.329673px;}
.h3_c00389{height:56.320312px;}
.h5_c00389{height:60.257812px;}
.h6_c00389{height:65.130820px;}
.h7_c00389{height:81.476719px;}
.h0_c00389{height:1263.000000px;}
.w1_c00389{width:892.500000px;}
.w0_c00389{width:892.830000px;}
.x0_c00389{left:0.000000px;}
.x5_c00389{left:127.620000px;}
.x7_c00389{left:141.122160px;}
.x4_c00389{left:168.030000px;}
.x6_c00389{left:180.720000px;}
.x3_c00389{left:435.240000px;}
.x2_c00389{left:446.490000px;}
.x1_c00389{left:499.050000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.v1_c00389{vertical-align:13.452800pt;}
.v2_c00389{vertical-align:26.560000pt;}
.lsc_c00389{letter-spacing:-0.134400pt;}
.ls17_c00389{letter-spacing:-0.048608pt;}
.lsd_c00389{letter-spacing:-0.042752pt;}
.ls16_c00389{letter-spacing:-0.032000pt;}
.ls13_c00389{letter-spacing:-0.025600pt;}
.lsf_c00389{letter-spacing:-0.019200pt;}
.ls11_c00389{letter-spacing:-0.012800pt;}
.ls10_c00389{letter-spacing:-0.006400pt;}
.lsa_c00389{letter-spacing:-0.005344pt;}
.lsb_c00389{letter-spacing:0.000000pt;}
.ls2_c00389{letter-spacing:0.006400pt;}
.ls18_c00389{letter-spacing:0.012768pt;}
.ls5_c00389{letter-spacing:0.012800pt;}
.ls6_c00389{letter-spacing:0.013888pt;}
.ls15_c00389{letter-spacing:0.019200pt;}
.ls4_c00389{letter-spacing:0.025600pt;}
.ls9_c00389{letter-spacing:0.029792pt;}
.ls0_c00389{letter-spacing:0.037408pt;}
.ls3_c00389{letter-spacing:0.040640pt;}
.ls12_c00389{letter-spacing:0.044800pt;}
.ls8_c00389{letter-spacing:0.046816pt;}
.ls14_c00389{letter-spacing:0.083200pt;}
.ls1_c00389{letter-spacing:0.111360pt;}
.lse_c00389{letter-spacing:0.149632pt;}
.ls7_c00389{letter-spacing:28.678720pt;}
.ws2_c00389{word-spacing:-17.373888pt;}
.ws1_c00389{word-spacing:-15.993600pt;}
.ws0_c00389{word-spacing:-13.317248pt;}
.ws23_c00389{word-spacing:-0.034720pt;}
.ws29_c00389{word-spacing:-0.012768pt;}
.ws4_c00389{word-spacing:0.000000pt;}
.wsa_c00389{word-spacing:0.006400pt;}
.wsb_c00389{word-spacing:0.019200pt;}
.ws22_c00389{word-spacing:0.070400pt;}
.ws3_c00389{word-spacing:0.085504pt;}
.ws25_c00389{word-spacing:0.966400pt;}
.ws17_c00389{word-spacing:1.017600pt;}
.ws26_c00389{word-spacing:1.024000pt;}
.ws18_c00389{word-spacing:1.030400pt;}
.ws11_c00389{word-spacing:2.252800pt;}
.ws5_c00389{word-spacing:2.281888pt;}
.ws27_c00389{word-spacing:2.528064pt;}
.ws28_c00389{word-spacing:2.545088pt;}
.ws6_c00389{word-spacing:3.539200pt;}
.ws1c_c00389{word-spacing:4.147200pt;}
.ws24_c00389{word-spacing:4.486400pt;}
.ws9_c00389{word-spacing:5.081600pt;}
.ws1e_c00389{word-spacing:5.113600pt;}
.ws8_c00389{word-spacing:5.126400pt;}
.ws1f_c00389{word-spacing:5.171200pt;}
.ws10_c00389{word-spacing:6.694400pt;}
.wsf_c00389{word-spacing:6.790400pt;}
.ws19_c00389{word-spacing:7.398400pt;}
.ws14_c00389{word-spacing:8.025600pt;}
.ws1d_c00389{word-spacing:8.032000pt;}
.ws13_c00389{word-spacing:10.246400pt;}
.ws12_c00389{word-spacing:10.278400pt;}
.ws7_c00389{word-spacing:10.604800pt;}
.ws16_c00389{word-spacing:12.006400pt;}
.wse_c00389{word-spacing:12.115200pt;}
.wsc_c00389{word-spacing:12.153600pt;}
.ws15_c00389{word-spacing:12.185600pt;}
.wsd_c00389{word-spacing:12.268800pt;}
.ws20_c00389{word-spacing:13.696000pt;}
.ws21_c00389{word-spacing:13.772800pt;}
.ws1b_c00389{word-spacing:26.105600pt;}
.ws1a_c00389{word-spacing:26.252800pt;}
._0_c00389{margin-left:-1.068800pt;}
._1_c00389{width:0.896000pt;}
.fs3_c00389{font-size:34.560000pt;}
.fs4_c00389{font-size:37.440000pt;}
.fs6_c00389{font-size:42.560000pt;}
.fs2_c00389{font-size:48.000000pt;}
.fs0_c00389{font-size:53.440000pt;}
.fs1_c00389{font-size:64.000000pt;}
.fs5_c00389{font-size:69.440000pt;}
.y0_c00389{bottom:0.000000pt;}
.y2_c00389{bottom:51.067067pt;}
.y3_c00389{bottom:54.587067pt;}
.y23_c00389{bottom:101.069307pt;}
.y22_c00389{bottom:117.391067pt;}
.y21_c00389{bottom:129.627067pt;}
.y20_c00389{bottom:143.147067pt;}
.y1f_c00389{bottom:161.547067pt;}
.y1e_c00389{bottom:179.947067pt;}
.y1d_c00389{bottom:206.027067pt;}
.y1c_c00389{bottom:236.587067pt;}
.y1b_c00389{bottom:267.227067pt;}
.y1a_c00389{bottom:307.227067pt;}
.y19_c00389{bottom:362.987067pt;}
.y18_c00389{bottom:393.547067pt;}
.y17_c00389{bottom:424.187067pt;}
.y16_c00389{bottom:454.747067pt;}
.y15_c00389{bottom:485.387067pt;}
.y14_c00389{bottom:523.947067pt;}
.y13_c00389{bottom:554.587067pt;}
.y12_c00389{bottom:585.147067pt;}
.y11_c00389{bottom:615.787067pt;}
.y10_c00389{bottom:654.347067pt;}
.yf_c00389{bottom:684.987067pt;}
.ye_c00389{bottom:715.547067pt;}
.yd_c00389{bottom:746.187067pt;}
.yc_c00389{bottom:776.747067pt;}
.yb_c00389{bottom:807.387067pt;}
.ya_c00389{bottom:837.947067pt;}
.y9_c00389{bottom:876.587067pt;}
.y8_c00389{bottom:907.147067pt;}
.y7_c00389{bottom:937.787067pt;}
.y6_c00389{bottom:968.347067pt;}
.y5_c00389{bottom:1001.703867pt;}
.y4_c00389{bottom:1016.667067pt;}
.y1_c00389{bottom:1063.867067pt;}
.h2_c00389{height:42.656250pt;}
.h8_c00389{height:44.388750pt;}
.h1_c00389{height:44.724687pt;}
.h4_c00389{height:44.737488pt;}
.h3_c00389{height:50.062500pt;}
.h5_c00389{height:53.562500pt;}
.h6_c00389{height:57.894062pt;}
.h7_c00389{height:72.423750pt;}
.h0_c00389{height:1122.666667pt;}
.w1_c00389{width:793.333333pt;}
.w0_c00389{width:793.626667pt;}
.x0_c00389{left:0.000000pt;}
.x5_c00389{left:113.440000pt;}
.x7_c00389{left:125.441920pt;}
.x4_c00389{left:149.360000pt;}
.x6_c00389{left:160.640000pt;}
.x3_c00389{left:386.880000pt;}
.x2_c00389{left:396.880000pt;}
.x1_c00389{left:443.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_984a48bd80d94f120cad2f18.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_0aefb7eac4802baa3789ff62.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_248a34e0094827c1385eace6.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00390;src:url('chunks/assets/font_2a331de6fbade3a8d3e217fe.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;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_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;}
.v1_c00390{vertical-align:15.840000px;}
.v2_c00390{vertical-align:29.880000px;}
.ls11_c00390{letter-spacing:-0.151200px;}
.ls1d_c00390{letter-spacing:-0.048096px;}
.ls1b_c00390{letter-spacing:-0.036072px;}
.ls18_c00390{letter-spacing:-0.036000px;}
.ls1c_c00390{letter-spacing:-0.030060px;}
.ls16_c00390{letter-spacing:-0.028800px;}
.ls15_c00390{letter-spacing:-0.021600px;}
.ls12_c00390{letter-spacing:-0.014400px;}
.ls1e_c00390{letter-spacing:-0.012024px;}
.ls20_c00390{letter-spacing:-0.007776px;}
.ls14_c00390{letter-spacing:-0.007200px;}
.ls21_c00390{letter-spacing:-0.003888px;}
.ls19_c00390{letter-spacing:0.000000px;}
.ls4_c00390{letter-spacing:0.007200px;}
.lsf_c00390{letter-spacing:0.009576px;}
.ls7_c00390{letter-spacing:0.014364px;}
.ls2_c00390{letter-spacing:0.014400px;}
.ls10_c00390{letter-spacing:0.019152px;}
.lsc_c00390{letter-spacing:0.023940px;}
.lsb_c00390{letter-spacing:0.028728px;}
.lse_c00390{letter-spacing:0.033516px;}
.ls13_c00390{letter-spacing:0.036000px;}
.ls6_c00390{letter-spacing:0.038304px;}
.lsa_c00390{letter-spacing:0.043092px;}
.ls3_c00390{letter-spacing:0.045720px;}
.lsd_c00390{letter-spacing:0.047880px;}
.ls0_c00390{letter-spacing:0.048096px;}
.ls1a_c00390{letter-spacing:0.054756px;}
.ls9_c00390{letter-spacing:0.071820px;}
.ls17_c00390{letter-spacing:0.093600px;}
.ls8_c00390{letter-spacing:0.129276px;}
.ls1f_c00390{letter-spacing:0.136080px;}
.ls5_c00390{letter-spacing:0.216000px;}
.ls1_c00390{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00390{word-spacing:-17.978400px;}
.ws1_c00390{word-spacing:-17.971200px;}
.ws4_c00390{word-spacing:-13.310640px;}
.ws5_c00390{word-spacing:-10.804752px;}
.ws2_c00390{word-spacing:-10.584756px;}
.ws3_c00390{word-spacing:-9.856080px;}
.wsf_c00390{word-spacing:-0.093600px;}
.ws31_c00390{word-spacing:-0.028728px;}
.ws2a_c00390{word-spacing:-0.019152px;}
.ws20_c00390{word-spacing:-0.014400px;}
.ws32_c00390{word-spacing:-0.014364px;}
.ws39_c00390{word-spacing:-0.009576px;}
.ws30_c00390{word-spacing:-0.004788px;}
.ws7_c00390{word-spacing:0.000000px;}
.ws24_c00390{word-spacing:0.007200px;}
.ws25_c00390{word-spacing:0.021600px;}
.ws6_c00390{word-spacing:0.042084px;}
.ws1a_c00390{word-spacing:0.064800px;}
.ws29_c00390{word-spacing:0.102204px;}
.ws28_c00390{word-spacing:0.120240px;}
.ws26_c00390{word-spacing:0.126252px;}
.ws27_c00390{word-spacing:0.138276px;}
.ws16_c00390{word-spacing:1.058400px;}
.ws17_c00390{word-spacing:1.108800px;}
.ws1f_c00390{word-spacing:1.130400px;}
.ws18_c00390{word-spacing:2.520000px;}
.ws19_c00390{word-spacing:2.628000px;}
.ws23_c00390{word-spacing:2.836800px;}
.ws9_c00390{word-spacing:2.844000px;}
.ws8_c00390{word-spacing:2.894400px;}
.ws2c_c00390{word-spacing:4.567752px;}
.ws2d_c00390{word-spacing:4.625208px;}
.ws2e_c00390{word-spacing:4.653936px;}
.ws33_c00390{word-spacing:4.658724px;}
.ws2f_c00390{word-spacing:4.668300px;}
.ws2b_c00390{word-spacing:4.682664px;}
.ws34_c00390{word-spacing:4.687452px;}
.ws1e_c00390{word-spacing:5.392800px;}
.ws1d_c00390{word-spacing:5.421600px;}
.ws1c_c00390{word-spacing:5.450400px;}
.ws1b_c00390{word-spacing:5.587200px;}
.ws22_c00390{word-spacing:7.545600px;}
.ws21_c00390{word-spacing:7.567200px;}
.ws37_c00390{word-spacing:7.890624px;}
.ws38_c00390{word-spacing:7.904988px;}
.ws35_c00390{word-spacing:9.719640px;}
.ws36_c00390{word-spacing:9.724428px;}
.wsc_c00390{word-spacing:10.087200px;}
.ws12_c00390{word-spacing:14.781600px;}
.ws11_c00390{word-spacing:14.868000px;}
.ws10_c00390{word-spacing:16.977600px;}
.wsd_c00390{word-spacing:17.272800px;}
.wse_c00390{word-spacing:17.380800px;}
.wsa_c00390{word-spacing:18.345600px;}
.wsb_c00390{word-spacing:18.439200px;}
.ws15_c00390{word-spacing:33.264000px;}
.ws14_c00390{word-spacing:33.487200px;}
.ws13_c00390{word-spacing:33.494400px;}
._0_c00390{margin-left:-1.322640px;}
._1_c00390{width:1.274400px;}
._a_c00390{width:5.357592px;}
._6_c00390{width:265.610160px;}
._7_c00390{width:285.305472px;}
._2_c00390{width:317.160000px;}
._3_c00390{width:348.120000px;}
._5_c00390{width:361.808172px;}
._9_c00390{width:366.461460px;}
._4_c00390{width:397.838088px;}
._8_c00390{width:525.208320px;}
.fc0_c00390{color:rgb(0,0,0);}
.fs4_c00390{font-size:38.880000px;}
.fs3_c00390{font-size:42.120000px;}
.fs5_c00390{font-size:47.880000px;}
.fs2_c00390{font-size:54.000000px;}
.fs0_c00390{font-size:60.120000px;}
.fs1_c00390{font-size:72.000000px;}
.y0_c00390{bottom:0.000000px;}
.y2_c00390{bottom:57.450450px;}
.y27_c00390{bottom:113.720070px;}
.y26_c00390{bottom:132.082050px;}
.y25_c00390{bottom:145.847550px;}
.y24_c00390{bottom:159.613050px;}
.y23_c00390{bottom:173.474310px;}
.y22_c00390{bottom:191.740530px;}
.y21_c00390{bottom:210.006750px;}
.y20_c00390{bottom:228.368730px;}
.y1f_c00390{bottom:246.634950px;}
.y1e_c00390{bottom:260.398470px;}
.y1d_c00390{bottom:278.760450px;}
.y1c_c00390{bottom:293.970450px;}
.y1b_c00390{bottom:314.580450px;}
.y1a_c00390{bottom:335.280450px;}
.y19_c00390{bottom:392.700600px;}
.y18_c00390{bottom:421.500600px;}
.y17_c00390{bottom:441.030600px;}
.y16_c00390{bottom:458.670450px;}
.y15_c00390{bottom:480.900450px;}
.y14_c00390{bottom:528.960450px;}
.y13_c00390{bottom:563.340450px;}
.y12_c00390{bottom:597.810450px;}
.y11_c00390{bottom:641.190450px;}
.y10_c00390{bottom:675.660450px;}
.yf_c00390{bottom:710.040450px;}
.ye_c00390{bottom:744.510450px;}
.yd_c00390{bottom:787.890450px;}
.yc_c00390{bottom:822.360450px;}
.yb_c00390{bottom:856.740450px;}
.ya_c00390{bottom:891.210450px;}
.y9_c00390{bottom:925.590450px;}
.y8_c00390{bottom:960.060450px;}
.y7_c00390{bottom:1003.440450px;}
.y6_c00390{bottom:1037.910450px;}
.y5_c00390{bottom:1072.290450px;}
.y4_c00390{bottom:1106.760450px;}
.y3_c00390{bottom:1141.140450px;}
.y1_c00390{bottom:1196.850450px;}
.h6_c00390{height:47.988281px;}
.h7_c00390{height:49.937344px;}
.h8_c00390{height:49.945264px;}
.h1_c00390{height:50.315273px;}
.h3_c00390{height:60.257812px;}
.h5_c00390{height:60.328125px;}
.h4_c00390{height:65.130820px;}
.h2_c00390{height:72.160312px;}
.h0_c00390{height:1263.000000px;}
.w1_c00390{width:892.500000px;}
.w0_c00390{width:892.830000px;}
.x0_c00390{left:0.000000px;}
.x1_c00390{left:127.620000px;}
.x8_c00390{left:141.103620px;}
.x2_c00390{left:180.720000px;}
.x5_c00390{left:197.640000px;}
.x4_c00390{left:218.520000px;}
.x6_c00390{left:221.400000px;}
.x3_c00390{left:225.990000px;}
.x7_c00390{left:263.430000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.v1_c00390{vertical-align:14.080000pt;}
.v2_c00390{vertical-align:26.560000pt;}
.ls11_c00390{letter-spacing:-0.134400pt;}
.ls1d_c00390{letter-spacing:-0.042752pt;}
.ls1b_c00390{letter-spacing:-0.032064pt;}
.ls18_c00390{letter-spacing:-0.032000pt;}
.ls1c_c00390{letter-spacing:-0.026720pt;}
.ls16_c00390{letter-spacing:-0.025600pt;}
.ls15_c00390{letter-spacing:-0.019200pt;}
.ls12_c00390{letter-spacing:-0.012800pt;}
.ls1e_c00390{letter-spacing:-0.010688pt;}
.ls20_c00390{letter-spacing:-0.006912pt;}
.ls14_c00390{letter-spacing:-0.006400pt;}
.ls21_c00390{letter-spacing:-0.003456pt;}
.ls19_c00390{letter-spacing:0.000000pt;}
.ls4_c00390{letter-spacing:0.006400pt;}
.lsf_c00390{letter-spacing:0.008512pt;}
.ls7_c00390{letter-spacing:0.012768pt;}
.ls2_c00390{letter-spacing:0.012800pt;}
.ls10_c00390{letter-spacing:0.017024pt;}
.lsc_c00390{letter-spacing:0.021280pt;}
.lsb_c00390{letter-spacing:0.025536pt;}
.lse_c00390{letter-spacing:0.029792pt;}
.ls13_c00390{letter-spacing:0.032000pt;}
.ls6_c00390{letter-spacing:0.034048pt;}
.lsa_c00390{letter-spacing:0.038304pt;}
.ls3_c00390{letter-spacing:0.040640pt;}
.lsd_c00390{letter-spacing:0.042560pt;}
.ls0_c00390{letter-spacing:0.042752pt;}
.ls1a_c00390{letter-spacing:0.048672pt;}
.ls9_c00390{letter-spacing:0.063840pt;}
.ls17_c00390{letter-spacing:0.083200pt;}
.ls8_c00390{letter-spacing:0.114912pt;}
.ls1f_c00390{letter-spacing:0.120960pt;}
.ls5_c00390{letter-spacing:0.192000pt;}
.ls1_c00390{letter-spacing:1077.440000pt;}
.ws0_c00390{word-spacing:-15.980800pt;}
.ws1_c00390{word-spacing:-15.974400pt;}
.ws4_c00390{word-spacing:-11.831680pt;}
.ws5_c00390{word-spacing:-9.604224pt;}
.ws2_c00390{word-spacing:-9.408672pt;}
.ws3_c00390{word-spacing:-8.760960pt;}
.wsf_c00390{word-spacing:-0.083200pt;}
.ws31_c00390{word-spacing:-0.025536pt;}
.ws2a_c00390{word-spacing:-0.017024pt;}
.ws20_c00390{word-spacing:-0.012800pt;}
.ws32_c00390{word-spacing:-0.012768pt;}
.ws39_c00390{word-spacing:-0.008512pt;}
.ws30_c00390{word-spacing:-0.004256pt;}
.ws7_c00390{word-spacing:0.000000pt;}
.ws24_c00390{word-spacing:0.006400pt;}
.ws25_c00390{word-spacing:0.019200pt;}
.ws6_c00390{word-spacing:0.037408pt;}
.ws1a_c00390{word-spacing:0.057600pt;}
.ws29_c00390{word-spacing:0.090848pt;}
.ws28_c00390{word-spacing:0.106880pt;}
.ws26_c00390{word-spacing:0.112224pt;}
.ws27_c00390{word-spacing:0.122912pt;}
.ws16_c00390{word-spacing:0.940800pt;}
.ws17_c00390{word-spacing:0.985600pt;}
.ws1f_c00390{word-spacing:1.004800pt;}
.ws18_c00390{word-spacing:2.240000pt;}
.ws19_c00390{word-spacing:2.336000pt;}
.ws23_c00390{word-spacing:2.521600pt;}
.ws9_c00390{word-spacing:2.528000pt;}
.ws8_c00390{word-spacing:2.572800pt;}
.ws2c_c00390{word-spacing:4.060224pt;}
.ws2d_c00390{word-spacing:4.111296pt;}
.ws2e_c00390{word-spacing:4.136832pt;}
.ws33_c00390{word-spacing:4.141088pt;}
.ws2f_c00390{word-spacing:4.149600pt;}
.ws2b_c00390{word-spacing:4.162368pt;}
.ws34_c00390{word-spacing:4.166624pt;}
.ws1e_c00390{word-spacing:4.793600pt;}
.ws1d_c00390{word-spacing:4.819200pt;}
.ws1c_c00390{word-spacing:4.844800pt;}
.ws1b_c00390{word-spacing:4.966400pt;}
.ws22_c00390{word-spacing:6.707200pt;}
.ws21_c00390{word-spacing:6.726400pt;}
.ws37_c00390{word-spacing:7.013888pt;}
.ws38_c00390{word-spacing:7.026656pt;}
.ws35_c00390{word-spacing:8.639680pt;}
.ws36_c00390{word-spacing:8.643936pt;}
.wsc_c00390{word-spacing:8.966400pt;}
.ws12_c00390{word-spacing:13.139200pt;}
.ws11_c00390{word-spacing:13.216000pt;}
.ws10_c00390{word-spacing:15.091200pt;}
.wsd_c00390{word-spacing:15.353600pt;}
.wse_c00390{word-spacing:15.449600pt;}
.wsa_c00390{word-spacing:16.307200pt;}
.wsb_c00390{word-spacing:16.390400pt;}
.ws15_c00390{word-spacing:29.568000pt;}
.ws14_c00390{word-spacing:29.766400pt;}
.ws13_c00390{word-spacing:29.772800pt;}
._0_c00390{margin-left:-1.175680pt;}
._1_c00390{width:1.132800pt;}
._a_c00390{width:4.762304pt;}
._6_c00390{width:236.097920pt;}
._7_c00390{width:253.604864pt;}
._2_c00390{width:281.920000pt;}
._3_c00390{width:309.440000pt;}
._5_c00390{width:321.607264pt;}
._9_c00390{width:325.743520pt;}
._4_c00390{width:353.633856pt;}
._8_c00390{width:466.851840pt;}
.fs4_c00390{font-size:34.560000pt;}
.fs3_c00390{font-size:37.440000pt;}
.fs5_c00390{font-size:42.560000pt;}
.fs2_c00390{font-size:48.000000pt;}
.fs0_c00390{font-size:53.440000pt;}
.fs1_c00390{font-size:64.000000pt;}
.y0_c00390{bottom:0.000000pt;}
.y2_c00390{bottom:51.067067pt;}
.y27_c00390{bottom:101.084507pt;}
.y26_c00390{bottom:117.406267pt;}
.y25_c00390{bottom:129.642267pt;}
.y24_c00390{bottom:141.878267pt;}
.y23_c00390{bottom:154.199387pt;}
.y22_c00390{bottom:170.436027pt;}
.y21_c00390{bottom:186.672667pt;}
.y20_c00390{bottom:202.994427pt;}
.y1f_c00390{bottom:219.231067pt;}
.y1e_c00390{bottom:231.465307pt;}
.y1d_c00390{bottom:247.787067pt;}
.y1c_c00390{bottom:261.307067pt;}
.y1b_c00390{bottom:279.627067pt;}
.y1a_c00390{bottom:298.027067pt;}
.y19_c00390{bottom:349.067200pt;}
.y18_c00390{bottom:374.667200pt;}
.y17_c00390{bottom:392.027200pt;}
.y16_c00390{bottom:407.707067pt;}
.y15_c00390{bottom:427.467067pt;}
.y14_c00390{bottom:470.187067pt;}
.y13_c00390{bottom:500.747067pt;}
.y12_c00390{bottom:531.387067pt;}
.y11_c00390{bottom:569.947067pt;}
.y10_c00390{bottom:600.587067pt;}
.yf_c00390{bottom:631.147067pt;}
.ye_c00390{bottom:661.787067pt;}
.yd_c00390{bottom:700.347067pt;}
.yc_c00390{bottom:730.987067pt;}
.yb_c00390{bottom:761.547067pt;}
.ya_c00390{bottom:792.187067pt;}
.y9_c00390{bottom:822.747067pt;}
.y8_c00390{bottom:853.387067pt;}
.y7_c00390{bottom:891.947067pt;}
.y6_c00390{bottom:922.587067pt;}
.y5_c00390{bottom:953.147067pt;}
.y4_c00390{bottom:983.787067pt;}
.y3_c00390{bottom:1014.347067pt;}
.y1_c00390{bottom:1063.867067pt;}
.h6_c00390{height:42.656250pt;}
.h7_c00390{height:44.388750pt;}
.h8_c00390{height:44.395790pt;}
.h1_c00390{height:44.724687pt;}
.h3_c00390{height:53.562500pt;}
.h5_c00390{height:53.625000pt;}
.h4_c00390{height:57.894062pt;}
.h2_c00390{height:64.142500pt;}
.h0_c00390{height:1122.666667pt;}
.w1_c00390{width:793.333333pt;}
.w0_c00390{width:793.626667pt;}
.x0_c00390{left:0.000000pt;}
.x1_c00390{left:113.440000pt;}
.x8_c00390{left:125.425440pt;}
.x2_c00390{left:160.640000pt;}
.x5_c00390{left:175.680000pt;}
.x4_c00390{left:194.240000pt;}
.x6_c00390{left:196.800000pt;}
.x3_c00390{left:200.880000pt;}
.x7_c00390{left:234.160000pt;}
}





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

.ir_c00391:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00391{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00391;src:url('chunks/assets/font_4e82dc92525f75f1bb585b24.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00391;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_a2ae05c2a564673db006f016.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;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_c00391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.v2_c00391{vertical-align:15.179040px;}
.v1_c00391{vertical-align:29.880000px;}
.lse_c00391{letter-spacing:-0.151200px;}
.ls15_c00391{letter-spacing:-0.093600px;}
.ls16_c00391{letter-spacing:-0.043200px;}
.ls13_c00391{letter-spacing:-0.028800px;}
.ls14_c00391{letter-spacing:-0.021600px;}
.lsf_c00391{letter-spacing:-0.014400px;}
.ls12_c00391{letter-spacing:-0.007200px;}
.lsc_c00391{letter-spacing:-0.006012px;}
.lsd_c00391{letter-spacing:0.000000px;}
.ls3_c00391{letter-spacing:0.007200px;}
.ls4_c00391{letter-spacing:0.012024px;}
.ls17_c00391{letter-spacing:0.014400px;}
.ls0_c00391{letter-spacing:0.021600px;}
.lsb_c00391{letter-spacing:0.028728px;}
.lsa_c00391{letter-spacing:0.038304px;}
.ls8_c00391{letter-spacing:0.048096px;}
.ls10_c00391{letter-spacing:0.050400px;}
.ls11_c00391{letter-spacing:0.054756px;}
.ls5_c00391{letter-spacing:0.060120px;}
.ls7_c00391{letter-spacing:0.066132px;}
.ls6_c00391{letter-spacing:0.090180px;}
.ls9_c00391{letter-spacing:0.114228px;}
.ls18_c00391{letter-spacing:0.136080px;}
.ls1_c00391{letter-spacing:0.144000px;}
.ls19_c00391{letter-spacing:0.168336px;}
.ls2_c00391{letter-spacing:65.304000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00391{word-spacing:-18.021600px;}
.ws2_c00391{word-spacing:-15.144228px;}
.ws1_c00391{word-spacing:-10.584756px;}
.ws3_c00391{word-spacing:-9.856080px;}
.ws10_c00391{word-spacing:-0.021600px;}
.ws2a_c00391{word-spacing:-0.019152px;}
.ws2b_c00391{word-spacing:-0.009576px;}
.ws5_c00391{word-spacing:0.000000px;}
.wsc_c00391{word-spacing:0.007200px;}
.ws29_c00391{word-spacing:0.042084px;}
.ws24_c00391{word-spacing:0.043200px;}
.wsd_c00391{word-spacing:0.050400px;}
.ws15_c00391{word-spacing:0.057600px;}
.ws4_c00391{word-spacing:0.096192px;}
.ws14_c00391{word-spacing:0.403200px;}
.ws1c_c00391{word-spacing:1.080000px;}
.ws1d_c00391{word-spacing:1.108800px;}
.ws27_c00391{word-spacing:1.436868px;}
.wsb_c00391{word-spacing:1.461600px;}
.ws26_c00391{word-spacing:1.466928px;}
.wsa_c00391{word-spacing:1.519200px;}
.wse_c00391{word-spacing:2.196000px;}
.ws21_c00391{word-spacing:2.570400px;}
.ws22_c00391{word-spacing:2.620800px;}
.ws11_c00391{word-spacing:3.492000px;}
.ws13_c00391{word-spacing:3.600000px;}
.ws12_c00391{word-spacing:3.693600px;}
.ws28_c00391{word-spacing:3.985956px;}
.wsf_c00391{word-spacing:4.701600px;}
.ws19_c00391{word-spacing:6.134400px;}
.ws25_c00391{word-spacing:6.919812px;}
.ws8_c00391{word-spacing:7.207200px;}
.ws9_c00391{word-spacing:7.272000px;}
.ws7_c00391{word-spacing:9.367200px;}
.ws6_c00391{word-spacing:9.518400px;}
.ws20_c00391{word-spacing:10.087200px;}
.ws16_c00391{word-spacing:12.960000px;}
.ws1f_c00391{word-spacing:13.320000px;}
.ws1e_c00391{word-spacing:13.435200px;}
.ws23_c00391{word-spacing:15.141600px;}
.ws18_c00391{word-spacing:16.178400px;}
.ws17_c00391{word-spacing:16.315200px;}
.ws1a_c00391{word-spacing:17.287200px;}
.ws1b_c00391{word-spacing:17.460000px;}
._2_c00391{margin-left:-6.853680px;}
._0_c00391{margin-left:-1.202400px;}
._1_c00391{width:1.080000px;}
.fc0_c00391{color:rgb(0,0,0);}
.fs4_c00391{font-size:38.880000px;}
.fs3_c00391{font-size:42.120000px;}
.fs5_c00391{font-size:47.880000px;}
.fs2_c00391{font-size:54.000000px;}
.fs0_c00391{font-size:60.120000px;}
.fs1_c00391{font-size:72.000000px;}
.y0_c00391{bottom:0.000000px;}
.y2_c00391{bottom:57.450450px;}
.y3_c00391{bottom:61.410450px;}
.y24_c00391{bottom:113.702250px;}
.y23_c00391{bottom:132.064230px;}
.y22_c00391{bottom:150.330450px;}
.y21_c00391{bottom:165.540450px;}
.y20_c00391{bottom:186.240450px;}
.y1f_c00391{bottom:206.940450px;}
.y1e_c00391{bottom:264.885690px;}
.y1d_c00391{bottom:281.809470px;}
.y1c_c00391{bottom:298.643070px;}
.y1b_c00391{bottom:315.566850px;}
.y1a_c00391{bottom:332.400450px;}
.y19_c00391{bottom:373.260450px;}
.y18_c00391{bottom:407.640450px;}
.y17_c00391{bottom:442.110450px;}
.y16_c00391{bottom:476.490450px;}
.y15_c00391{bottom:510.960450px;}
.y14_c00391{bottom:545.340450px;}
.y13_c00391{bottom:597.810450px;}
.y12_c00391{bottom:632.190450px;}
.y11_c00391{bottom:666.660450px;}
.y10_c00391{bottom:701.040450px;}
.yf_c00391{bottom:735.510450px;}
.ye_c00391{bottom:778.890450px;}
.yd_c00391{bottom:813.360450px;}
.yc_c00391{bottom:847.740450px;}
.yb_c00391{bottom:882.210450px;}
.ya_c00391{bottom:925.590450px;}
.y9_c00391{bottom:960.060450px;}
.y8_c00391{bottom:994.440450px;}
.y7_c00391{bottom:1037.910450px;}
.y6_c00391{bottom:1072.290450px;}
.y5_c00391{bottom:1106.760450px;}
.y4_c00391{bottom:1141.140450px;}
.y1_c00391{bottom:1196.850450px;}
.h2_c00391{height:47.988281px;}
.h8_c00391{height:49.937344px;}
.h1_c00391{height:50.315273px;}
.h7_c00391{height:50.374313px;}
.h3_c00391{height:56.320312px;}
.h4_c00391{height:60.257812px;}
.h5_c00391{height:65.130820px;}
.h6_c00391{height:75.093750px;}
.h0_c00391{height:1263.000000px;}
.w1_c00391{width:892.500000px;}
.w0_c00391{width:892.830000px;}
.x0_c00391{left:0.000000px;}
.x5_c00391{left:127.620000px;}
.x6_c00391{left:154.620000px;}
.x4_c00391{left:180.720000px;}
.x7_c00391{left:206.730000px;}
.x3_c00391{left:435.240000px;}
.x2_c00391{left:446.490000px;}
.x1_c00391{left:499.050000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.v2_c00391{vertical-align:13.492480pt;}
.v1_c00391{vertical-align:26.560000pt;}
.lse_c00391{letter-spacing:-0.134400pt;}
.ls15_c00391{letter-spacing:-0.083200pt;}
.ls16_c00391{letter-spacing:-0.038400pt;}
.ls13_c00391{letter-spacing:-0.025600pt;}
.ls14_c00391{letter-spacing:-0.019200pt;}
.lsf_c00391{letter-spacing:-0.012800pt;}
.ls12_c00391{letter-spacing:-0.006400pt;}
.lsc_c00391{letter-spacing:-0.005344pt;}
.lsd_c00391{letter-spacing:0.000000pt;}
.ls3_c00391{letter-spacing:0.006400pt;}
.ls4_c00391{letter-spacing:0.010688pt;}
.ls17_c00391{letter-spacing:0.012800pt;}
.ls0_c00391{letter-spacing:0.019200pt;}
.lsb_c00391{letter-spacing:0.025536pt;}
.lsa_c00391{letter-spacing:0.034048pt;}
.ls8_c00391{letter-spacing:0.042752pt;}
.ls10_c00391{letter-spacing:0.044800pt;}
.ls11_c00391{letter-spacing:0.048672pt;}
.ls5_c00391{letter-spacing:0.053440pt;}
.ls7_c00391{letter-spacing:0.058784pt;}
.ls6_c00391{letter-spacing:0.080160pt;}
.ls9_c00391{letter-spacing:0.101536pt;}
.ls18_c00391{letter-spacing:0.120960pt;}
.ls1_c00391{letter-spacing:0.128000pt;}
.ls19_c00391{letter-spacing:0.149632pt;}
.ls2_c00391{letter-spacing:58.048000pt;}
.ws0_c00391{word-spacing:-16.019200pt;}
.ws2_c00391{word-spacing:-13.461536pt;}
.ws1_c00391{word-spacing:-9.408672pt;}
.ws3_c00391{word-spacing:-8.760960pt;}
.ws10_c00391{word-spacing:-0.019200pt;}
.ws2a_c00391{word-spacing:-0.017024pt;}
.ws2b_c00391{word-spacing:-0.008512pt;}
.ws5_c00391{word-spacing:0.000000pt;}
.wsc_c00391{word-spacing:0.006400pt;}
.ws29_c00391{word-spacing:0.037408pt;}
.ws24_c00391{word-spacing:0.038400pt;}
.wsd_c00391{word-spacing:0.044800pt;}
.ws15_c00391{word-spacing:0.051200pt;}
.ws4_c00391{word-spacing:0.085504pt;}
.ws14_c00391{word-spacing:0.358400pt;}
.ws1c_c00391{word-spacing:0.960000pt;}
.ws1d_c00391{word-spacing:0.985600pt;}
.ws27_c00391{word-spacing:1.277216pt;}
.wsb_c00391{word-spacing:1.299200pt;}
.ws26_c00391{word-spacing:1.303936pt;}
.wsa_c00391{word-spacing:1.350400pt;}
.wse_c00391{word-spacing:1.952000pt;}
.ws21_c00391{word-spacing:2.284800pt;}
.ws22_c00391{word-spacing:2.329600pt;}
.ws11_c00391{word-spacing:3.104000pt;}
.ws13_c00391{word-spacing:3.200000pt;}
.ws12_c00391{word-spacing:3.283200pt;}
.ws28_c00391{word-spacing:3.543072pt;}
.wsf_c00391{word-spacing:4.179200pt;}
.ws19_c00391{word-spacing:5.452800pt;}
.ws25_c00391{word-spacing:6.150944pt;}
.ws8_c00391{word-spacing:6.406400pt;}
.ws9_c00391{word-spacing:6.464000pt;}
.ws7_c00391{word-spacing:8.326400pt;}
.ws6_c00391{word-spacing:8.460800pt;}
.ws20_c00391{word-spacing:8.966400pt;}
.ws16_c00391{word-spacing:11.520000pt;}
.ws1f_c00391{word-spacing:11.840000pt;}
.ws1e_c00391{word-spacing:11.942400pt;}
.ws23_c00391{word-spacing:13.459200pt;}
.ws18_c00391{word-spacing:14.380800pt;}
.ws17_c00391{word-spacing:14.502400pt;}
.ws1a_c00391{word-spacing:15.366400pt;}
.ws1b_c00391{word-spacing:15.520000pt;}
._2_c00391{margin-left:-6.092160pt;}
._0_c00391{margin-left:-1.068800pt;}
._1_c00391{width:0.960000pt;}
.fs4_c00391{font-size:34.560000pt;}
.fs3_c00391{font-size:37.440000pt;}
.fs5_c00391{font-size:42.560000pt;}
.fs2_c00391{font-size:48.000000pt;}
.fs0_c00391{font-size:53.440000pt;}
.fs1_c00391{font-size:64.000000pt;}
.y0_c00391{bottom:0.000000pt;}
.y2_c00391{bottom:51.067067pt;}
.y3_c00391{bottom:54.587067pt;}
.y24_c00391{bottom:101.068667pt;}
.y23_c00391{bottom:117.390427pt;}
.y22_c00391{bottom:133.627067pt;}
.y21_c00391{bottom:147.147067pt;}
.y20_c00391{bottom:165.547067pt;}
.y1f_c00391{bottom:183.947067pt;}
.y1e_c00391{bottom:235.453947pt;}
.y1d_c00391{bottom:250.497307pt;}
.y1c_c00391{bottom:265.460507pt;}
.y1b_c00391{bottom:280.503867pt;}
.y1a_c00391{bottom:295.467067pt;}
.y19_c00391{bottom:331.787067pt;}
.y18_c00391{bottom:362.347067pt;}
.y17_c00391{bottom:392.987067pt;}
.y16_c00391{bottom:423.547067pt;}
.y15_c00391{bottom:454.187067pt;}
.y14_c00391{bottom:484.747067pt;}
.y13_c00391{bottom:531.387067pt;}
.y12_c00391{bottom:561.947067pt;}
.y11_c00391{bottom:592.587067pt;}
.y10_c00391{bottom:623.147067pt;}
.yf_c00391{bottom:653.787067pt;}
.ye_c00391{bottom:692.347067pt;}
.yd_c00391{bottom:722.987067pt;}
.yc_c00391{bottom:753.547067pt;}
.yb_c00391{bottom:784.187067pt;}
.ya_c00391{bottom:822.747067pt;}
.y9_c00391{bottom:853.387067pt;}
.y8_c00391{bottom:883.947067pt;}
.y7_c00391{bottom:922.587067pt;}
.y6_c00391{bottom:953.147067pt;}
.y5_c00391{bottom:983.787067pt;}
.y4_c00391{bottom:1014.347067pt;}
.y1_c00391{bottom:1063.867067pt;}
.h2_c00391{height:42.656250pt;}
.h8_c00391{height:44.388750pt;}
.h1_c00391{height:44.724687pt;}
.h7_c00391{height:44.777168pt;}
.h3_c00391{height:50.062500pt;}
.h4_c00391{height:53.562500pt;}
.h5_c00391{height:57.894063pt;}
.h6_c00391{height:66.750000pt;}
.h0_c00391{height:1122.666667pt;}
.w1_c00391{width:793.333333pt;}
.w0_c00391{width:793.626667pt;}
.x0_c00391{left:0.000000pt;}
.x5_c00391{left:113.440000pt;}
.x6_c00391{left:137.440000pt;}
.x4_c00391{left:160.640000pt;}
.x7_c00391{left:183.760000pt;}
.x3_c00391{left:386.880000pt;}
.x2_c00391{left:396.880000pt;}
.x1_c00391{left:443.600000pt;}
}





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

.ir_c00392:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00392{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00392;src:url('chunks/assets/font_eee6462a82d1ba4e957d0efe.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00392;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_2639fe44064529f545ce6c01.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;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_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.v1_c00392{vertical-align:15.840000px;}
.v2_c00392{vertical-align:29.880000px;}
.ls1d_c00392{letter-spacing:-0.216432px;}
.lsd_c00392{letter-spacing:-0.151200px;}
.ls1e_c00392{letter-spacing:-0.084168px;}
.ls18_c00392{letter-spacing:-0.043200px;}
.ls1f_c00392{letter-spacing:-0.030060px;}
.ls1b_c00392{letter-spacing:-0.028800px;}
.ls12_c00392{letter-spacing:-0.024048px;}
.lse_c00392{letter-spacing:-0.021600px;}
.ls14_c00392{letter-spacing:-0.018036px;}
.ls11_c00392{letter-spacing:-0.014400px;}
.ls1c_c00392{letter-spacing:-0.012024px;}
.lsf_c00392{letter-spacing:-0.007200px;}
.ls15_c00392{letter-spacing:-0.006012px;}
.ls10_c00392{letter-spacing:0.000000px;}
.ls2_c00392{letter-spacing:0.007200px;}
.ls5_c00392{letter-spacing:0.012024px;}
.ls9_c00392{letter-spacing:0.014400px;}
.ls7_c00392{letter-spacing:0.024048px;}
.lsa_c00392{letter-spacing:0.028800px;}
.ls6_c00392{letter-spacing:0.030060px;}
.lsb_c00392{letter-spacing:0.036000px;}
.ls8_c00392{letter-spacing:0.036072px;}
.lsc_c00392{letter-spacing:0.038304px;}
.ls0_c00392{letter-spacing:0.048096px;}
.ls4_c00392{letter-spacing:0.054108px;}
.ls1a_c00392{letter-spacing:0.054756px;}
.ls3_c00392{letter-spacing:0.072144px;}
.ls19_c00392{letter-spacing:0.093600px;}
.ls16_c00392{letter-spacing:0.136080px;}
.ls17_c00392{letter-spacing:0.168336px;}
.ls13_c00392{letter-spacing:1.887768px;}
.ls1_c00392{letter-spacing:1212.120000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00392{word-spacing:-18.000000px;}
.ws1_c00392{word-spacing:-10.584756px;}
.ws0_c00392{word-spacing:-9.856080px;}
.ws1d_c00392{word-spacing:-0.324648px;}
.ws27_c00392{word-spacing:-0.086400px;}
.ws35_c00392{word-spacing:-0.019152px;}
.ws4_c00392{word-spacing:0.000000px;}
.wsf_c00392{word-spacing:0.018036px;}
.ws26_c00392{word-spacing:0.021600px;}
.ws3_c00392{word-spacing:0.042084px;}
.wsa_c00392{word-spacing:0.079200px;}
.ws2c_c00392{word-spacing:0.096192px;}
.ws2b_c00392{word-spacing:0.114228px;}
.ws34_c00392{word-spacing:0.120240px;}
.wse_c00392{word-spacing:0.136800px;}
.ws20_c00392{word-spacing:0.273600px;}
.ws22_c00392{word-spacing:0.324000px;}
.ws21_c00392{word-spacing:0.338400px;}
.ws29_c00392{word-spacing:0.720000px;}
.ws7_c00392{word-spacing:0.727200px;}
.ws12_c00392{word-spacing:1.160316px;}
.ws13_c00392{word-spacing:1.190376px;}
.ws17_c00392{word-spacing:1.478952px;}
.ws16_c00392{word-spacing:1.503000px;}
.ws11_c00392{word-spacing:1.833660px;}
.ws10_c00392{word-spacing:1.911816px;}
.ws31_c00392{word-spacing:2.248488px;}
.ws30_c00392{word-spacing:2.260512px;}
.ws1f_c00392{word-spacing:2.505600px;}
.ws2f_c00392{word-spacing:2.597184px;}
.ws33_c00392{word-spacing:2.693376px;}
.ws32_c00392{word-spacing:2.825640px;}
.wsb_c00392{word-spacing:3.974400px;}
.ws2a_c00392{word-spacing:4.334400px;}
.ws15_c00392{word-spacing:4.719420px;}
.ws14_c00392{word-spacing:5.098176px;}
.ws1c_c00392{word-spacing:5.146272px;}
.ws2e_c00392{word-spacing:5.500980px;}
.ws2d_c00392{word-spacing:5.513004px;}
.ws1a_c00392{word-spacing:5.813604px;}
.ws1b_c00392{word-spacing:5.819616px;}
.ws8_c00392{word-spacing:7.855200px;}
.ws9_c00392{word-spacing:7.912800px;}
.wsd_c00392{word-spacing:8.647200px;}
.wsc_c00392{word-spacing:8.719200px;}
.ws28_c00392{word-spacing:10.137600px;}
.ws18_c00392{word-spacing:10.490940px;}
.ws19_c00392{word-spacing:10.533024px;}
.ws6_c00392{word-spacing:17.956800px;}
.ws5_c00392{word-spacing:18.021600px;}
.ws1e_c00392{word-spacing:20.174400px;}
.ws25_c00392{word-spacing:22.341600px;}
.ws23_c00392{word-spacing:22.456800px;}
.ws24_c00392{word-spacing:22.478400px;}
._2_c00392{margin-left:-2.705400px;}
._0_c00392{margin-left:-1.322640px;}
._1_c00392{width:1.080000px;}
.fc0_c00392{color:rgb(0,0,0);}
.fs3_c00392{font-size:38.880000px;}
.fs4_c00392{font-size:42.120000px;}
.fs5_c00392{font-size:47.880000px;}
.fs2_c00392{font-size:54.000000px;}
.fs0_c00392{font-size:60.120000px;}
.fs1_c00392{font-size:72.000000px;}
.y0_c00392{bottom:0.000000px;}
.y2_c00392{bottom:57.450450px;}
.y28_c00392{bottom:113.706030px;}
.y27_c00392{bottom:132.068010px;}
.y26_c00392{bottom:150.334230px;}
.y25_c00392{bottom:168.600450px;}
.y24_c00392{bottom:183.810600px;}
.y23_c00392{bottom:204.510600px;}
.y22_c00392{bottom:225.210600px;}
.y21_c00392{bottom:302.685690px;}
.y20_c00392{bottom:319.609470px;}
.y1f_c00392{bottom:336.443070px;}
.y1e_c00392{bottom:353.366850px;}
.y1d_c00392{bottom:370.200450px;}
.y1c_c00392{bottom:411.060450px;}
.y1b_c00392{bottom:445.440450px;}
.y1a_c00392{bottom:479.910450px;}
.y19_c00392{bottom:514.290450px;}
.y18_c00392{bottom:557.760450px;}
.y17_c00392{bottom:592.140450px;}
.y16_c00392{bottom:626.610450px;}
.y15_c00392{bottom:660.990450px;}
.y14_c00392{bottom:695.460450px;}
.y13_c00392{bottom:732.867150px;}
.y12_c00392{bottom:749.790930px;}
.y11_c00392{bottom:766.624530px;}
.y10_c00392{bottom:783.548310px;}
.yf_c00392{bottom:800.381910px;}
.ye_c00392{bottom:817.305690px;}
.yd_c00392{bottom:834.139290px;}
.yc_c00392{bottom:851.063070px;}
.yb_c00392{bottom:867.896670px;}
.ya_c00392{bottom:884.820450px;}
.y9_c00392{bottom:925.590450px;}
.y8_c00392{bottom:960.060450px;}
.y7_c00392{bottom:994.440450px;}
.y6_c00392{bottom:1037.910450px;}
.y5_c00392{bottom:1072.290450px;}
.y4_c00392{bottom:1106.760450px;}
.y3_c00392{bottom:1141.140450px;}
.y1_c00392{bottom:1196.850450px;}
.h7_c00392{height:47.988281px;}
.h8_c00392{height:49.937344px;}
.h1_c00392{height:50.315273px;}
.h6_c00392{height:50.374313px;}
.h4_c00392{height:50.448473px;}
.h3_c00392{height:60.257812px;}
.h5_c00392{height:65.130820px;}
.h2_c00392{height:72.160312px;}
.h0_c00392{height:1263.000000px;}
.w1_c00392{width:892.500000px;}
.w0_c00392{width:892.830000px;}
.x0_c00392{left:0.000000px;}
.x1_c00392{left:127.620000px;}
.x3_c00392{left:154.440000px;}
.x4_c00392{left:168.030000px;}
.x2_c00392{left:180.810000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.v1_c00392{vertical-align:14.080000pt;}
.v2_c00392{vertical-align:26.560000pt;}
.ls1d_c00392{letter-spacing:-0.192384pt;}
.lsd_c00392{letter-spacing:-0.134400pt;}
.ls1e_c00392{letter-spacing:-0.074816pt;}
.ls18_c00392{letter-spacing:-0.038400pt;}
.ls1f_c00392{letter-spacing:-0.026720pt;}
.ls1b_c00392{letter-spacing:-0.025600pt;}
.ls12_c00392{letter-spacing:-0.021376pt;}
.lse_c00392{letter-spacing:-0.019200pt;}
.ls14_c00392{letter-spacing:-0.016032pt;}
.ls11_c00392{letter-spacing:-0.012800pt;}
.ls1c_c00392{letter-spacing:-0.010688pt;}
.lsf_c00392{letter-spacing:-0.006400pt;}
.ls15_c00392{letter-spacing:-0.005344pt;}
.ls10_c00392{letter-spacing:0.000000pt;}
.ls2_c00392{letter-spacing:0.006400pt;}
.ls5_c00392{letter-spacing:0.010688pt;}
.ls9_c00392{letter-spacing:0.012800pt;}
.ls7_c00392{letter-spacing:0.021376pt;}
.lsa_c00392{letter-spacing:0.025600pt;}
.ls6_c00392{letter-spacing:0.026720pt;}
.lsb_c00392{letter-spacing:0.032000pt;}
.ls8_c00392{letter-spacing:0.032064pt;}
.lsc_c00392{letter-spacing:0.034048pt;}
.ls0_c00392{letter-spacing:0.042752pt;}
.ls4_c00392{letter-spacing:0.048096pt;}
.ls1a_c00392{letter-spacing:0.048672pt;}
.ls3_c00392{letter-spacing:0.064128pt;}
.ls19_c00392{letter-spacing:0.083200pt;}
.ls16_c00392{letter-spacing:0.120960pt;}
.ls17_c00392{letter-spacing:0.149632pt;}
.ls13_c00392{letter-spacing:1.678016pt;}
.ls1_c00392{letter-spacing:1077.440000pt;}
.ws2_c00392{word-spacing:-16.000000pt;}
.ws1_c00392{word-spacing:-9.408672pt;}
.ws0_c00392{word-spacing:-8.760960pt;}
.ws1d_c00392{word-spacing:-0.288576pt;}
.ws27_c00392{word-spacing:-0.076800pt;}
.ws35_c00392{word-spacing:-0.017024pt;}
.ws4_c00392{word-spacing:0.000000pt;}
.wsf_c00392{word-spacing:0.016032pt;}
.ws26_c00392{word-spacing:0.019200pt;}
.ws3_c00392{word-spacing:0.037408pt;}
.wsa_c00392{word-spacing:0.070400pt;}
.ws2c_c00392{word-spacing:0.085504pt;}
.ws2b_c00392{word-spacing:0.101536pt;}
.ws34_c00392{word-spacing:0.106880pt;}
.wse_c00392{word-spacing:0.121600pt;}
.ws20_c00392{word-spacing:0.243200pt;}
.ws22_c00392{word-spacing:0.288000pt;}
.ws21_c00392{word-spacing:0.300800pt;}
.ws29_c00392{word-spacing:0.640000pt;}
.ws7_c00392{word-spacing:0.646400pt;}
.ws12_c00392{word-spacing:1.031392pt;}
.ws13_c00392{word-spacing:1.058112pt;}
.ws17_c00392{word-spacing:1.314624pt;}
.ws16_c00392{word-spacing:1.336000pt;}
.ws11_c00392{word-spacing:1.629920pt;}
.ws10_c00392{word-spacing:1.699392pt;}
.ws31_c00392{word-spacing:1.998656pt;}
.ws30_c00392{word-spacing:2.009344pt;}
.ws1f_c00392{word-spacing:2.227200pt;}
.ws2f_c00392{word-spacing:2.308608pt;}
.ws33_c00392{word-spacing:2.394112pt;}
.ws32_c00392{word-spacing:2.511680pt;}
.wsb_c00392{word-spacing:3.532800pt;}
.ws2a_c00392{word-spacing:3.852800pt;}
.ws15_c00392{word-spacing:4.195040pt;}
.ws14_c00392{word-spacing:4.531712pt;}
.ws1c_c00392{word-spacing:4.574464pt;}
.ws2e_c00392{word-spacing:4.889760pt;}
.ws2d_c00392{word-spacing:4.900448pt;}
.ws1a_c00392{word-spacing:5.167648pt;}
.ws1b_c00392{word-spacing:5.172992pt;}
.ws8_c00392{word-spacing:6.982400pt;}
.ws9_c00392{word-spacing:7.033600pt;}
.wsd_c00392{word-spacing:7.686400pt;}
.wsc_c00392{word-spacing:7.750400pt;}
.ws28_c00392{word-spacing:9.011200pt;}
.ws18_c00392{word-spacing:9.325280pt;}
.ws19_c00392{word-spacing:9.362688pt;}
.ws6_c00392{word-spacing:15.961600pt;}
.ws5_c00392{word-spacing:16.019200pt;}
.ws1e_c00392{word-spacing:17.932800pt;}
.ws25_c00392{word-spacing:19.859200pt;}
.ws23_c00392{word-spacing:19.961600pt;}
.ws24_c00392{word-spacing:19.980800pt;}
._2_c00392{margin-left:-2.404800pt;}
._0_c00392{margin-left:-1.175680pt;}
._1_c00392{width:0.960000pt;}
.fs3_c00392{font-size:34.560000pt;}
.fs4_c00392{font-size:37.440000pt;}
.fs5_c00392{font-size:42.560000pt;}
.fs2_c00392{font-size:48.000000pt;}
.fs0_c00392{font-size:53.440000pt;}
.fs1_c00392{font-size:64.000000pt;}
.y0_c00392{bottom:0.000000pt;}
.y2_c00392{bottom:51.067067pt;}
.y28_c00392{bottom:101.072027pt;}
.y27_c00392{bottom:117.393787pt;}
.y26_c00392{bottom:133.630427pt;}
.y25_c00392{bottom:149.867067pt;}
.y24_c00392{bottom:163.387200pt;}
.y23_c00392{bottom:181.787200pt;}
.y22_c00392{bottom:200.187200pt;}
.y21_c00392{bottom:269.053947pt;}
.y20_c00392{bottom:284.097307pt;}
.y1f_c00392{bottom:299.060507pt;}
.y1e_c00392{bottom:314.103867pt;}
.y1d_c00392{bottom:329.067067pt;}
.y1c_c00392{bottom:365.387067pt;}
.y1b_c00392{bottom:395.947067pt;}
.y1a_c00392{bottom:426.587067pt;}
.y19_c00392{bottom:457.147067pt;}
.y18_c00392{bottom:495.787067pt;}
.y17_c00392{bottom:526.347067pt;}
.y16_c00392{bottom:556.987067pt;}
.y15_c00392{bottom:587.547067pt;}
.y14_c00392{bottom:618.187067pt;}
.y13_c00392{bottom:651.437467pt;}
.y12_c00392{bottom:666.480827pt;}
.y11_c00392{bottom:681.444027pt;}
.y10_c00392{bottom:696.487387pt;}
.yf_c00392{bottom:711.450587pt;}
.ye_c00392{bottom:726.493947pt;}
.yd_c00392{bottom:741.457147pt;}
.yc_c00392{bottom:756.500507pt;}
.yb_c00392{bottom:771.463707pt;}
.ya_c00392{bottom:786.507067pt;}
.y9_c00392{bottom:822.747067pt;}
.y8_c00392{bottom:853.387067pt;}
.y7_c00392{bottom:883.947067pt;}
.y6_c00392{bottom:922.587067pt;}
.y5_c00392{bottom:953.147067pt;}
.y4_c00392{bottom:983.787067pt;}
.y3_c00392{bottom:1014.347067pt;}
.y1_c00392{bottom:1063.867067pt;}
.h7_c00392{height:42.656250pt;}
.h8_c00392{height:44.388750pt;}
.h1_c00392{height:44.724687pt;}
.h6_c00392{height:44.777168pt;}
.h4_c00392{height:44.843087pt;}
.h3_c00392{height:53.562500pt;}
.h5_c00392{height:57.894063pt;}
.h2_c00392{height:64.142500pt;}
.h0_c00392{height:1122.666667pt;}
.w1_c00392{width:793.333333pt;}
.w0_c00392{width:793.626667pt;}
.x0_c00392{left:0.000000pt;}
.x1_c00392{left:113.440000pt;}
.x3_c00392{left:137.280000pt;}
.x4_c00392{left:149.360000pt;}
.x2_c00392{left:160.720000pt;}
}





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




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a90cab8391587d1b3ed2c9e3.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00394;src:url('chunks/assets/font_a2b738b2633ed3b673159cd6.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00394;src:url('chunks/assets/font_ed7868e231de249d5e81d76c.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00394;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;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_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;}
.v1_c00394{vertical-align:15.840000px;}
.v2_c00394{vertical-align:29.880000px;}
.lsc_c00394{letter-spacing:-0.151200px;}
.ls15_c00394{letter-spacing:-0.046872px;}
.ls14_c00394{letter-spacing:-0.031248px;}
.ls16_c00394{letter-spacing:-0.030060px;}
.ls11_c00394{letter-spacing:-0.028800px;}
.lsf_c00394{letter-spacing:-0.021600px;}
.ls18_c00394{letter-spacing:-0.018036px;}
.lsd_c00394{letter-spacing:-0.014400px;}
.lse_c00394{letter-spacing:-0.007200px;}
.ls17_c00394{letter-spacing:-0.006012px;}
.ls10_c00394{letter-spacing:0.000000px;}
.ls2_c00394{letter-spacing:0.007200px;}
.ls8_c00394{letter-spacing:0.012024px;}
.ls3_c00394{letter-spacing:0.014400px;}
.ls5_c00394{letter-spacing:0.021600px;}
.ls7_c00394{letter-spacing:0.030060px;}
.lsb_c00394{letter-spacing:0.033516px;}
.ls6_c00394{letter-spacing:0.036072px;}
.ls9_c00394{letter-spacing:0.042084px;}
.lsa_c00394{letter-spacing:0.043092px;}
.ls0_c00394{letter-spacing:0.048096px;}
.ls12_c00394{letter-spacing:0.054756px;}
.ls13_c00394{letter-spacing:0.093600px;}
.ls4_c00394{letter-spacing:35.154000px;}
.ls1_c00394{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00394{word-spacing:-19.498752px;}
.ws0_c00394{word-spacing:-10.584756px;}
.ws21_c00394{word-spacing:-0.086400px;}
.ws15_c00394{word-spacing:-0.046872px;}
.ws2a_c00394{word-spacing:-0.023940px;}
.ws20_c00394{word-spacing:-0.014400px;}
.ws2b_c00394{word-spacing:-0.014364px;}
.ws9_c00394{word-spacing:-0.007200px;}
.ws3_c00394{word-spacing:0.000000px;}
.ws5_c00394{word-spacing:0.007200px;}
.ws18_c00394{word-spacing:0.014400px;}
.ws2_c00394{word-spacing:0.042084px;}
.ws24_c00394{word-spacing:0.078156px;}
.ws6_c00394{word-spacing:0.403200px;}
.ws19_c00394{word-spacing:1.800000px;}
.ws1e_c00394{word-spacing:1.821600px;}
.ws25_c00394{word-spacing:1.887768px;}
.ws26_c00394{word-spacing:1.917828px;}
.ws8_c00394{word-spacing:2.570400px;}
.ws7_c00394{word-spacing:2.635200px;}
.ws10_c00394{word-spacing:2.880000px;}
.wsf_c00394{word-spacing:2.937600px;}
.ws22_c00394{word-spacing:5.813604px;}
.ws23_c00394{word-spacing:5.819616px;}
.ws27_c00394{word-spacing:5.855688px;}
.ws28_c00394{word-spacing:5.867712px;}
.ws13_c00394{word-spacing:6.883200px;}
.ws14_c00394{word-spacing:6.926400px;}
.ws1a_c00394{word-spacing:8.287200px;}
.ws1b_c00394{word-spacing:8.301600px;}
.ws11_c00394{word-spacing:9.741600px;}
.ws12_c00394{word-spacing:9.892800px;}
.ws1c_c00394{word-spacing:11.066400px;}
.ws1d_c00394{word-spacing:11.196000px;}
.ws1f_c00394{word-spacing:11.548800px;}
.wsa_c00394{word-spacing:12.535200px;}
.wsb_c00394{word-spacing:12.628800px;}
.ws29_c00394{word-spacing:13.370688px;}
.ws4_c00394{word-spacing:13.716000px;}
.wsd_c00394{word-spacing:17.280000px;}
.wse_c00394{word-spacing:17.344800px;}
.ws17_c00394{word-spacing:19.036800px;}
.ws16_c00394{word-spacing:19.101600px;}
.wsc_c00394{word-spacing:24.141600px;}
._0_c00394{margin-left:-1.322640px;}
._1_c00394{width:1.080000px;}
.fc0_c00394{color:rgb(0,0,0);}
.fs3_c00394{font-size:42.120000px;}
.fs5_c00394{font-size:47.880000px;}
.fs2_c00394{font-size:54.000000px;}
.fs0_c00394{font-size:60.120000px;}
.fs1_c00394{font-size:72.000000px;}
.fs4_c00394{font-size:78.120000px;}
.y0_c00394{bottom:0.000000px;}
.y2_c00394{bottom:57.450450px;}
.y22_c00394{bottom:113.702250px;}
.y21_c00394{bottom:132.064230px;}
.y20_c00394{bottom:150.330450px;}
.y1f_c00394{bottom:165.540450px;}
.y1e_c00394{bottom:186.240450px;}
.y1d_c00394{bottom:206.940450px;}
.y1c_c00394{bottom:278.475690px;}
.y1b_c00394{bottom:295.309290px;}
.y1a_c00394{bottom:312.233070px;}
.y19_c00394{bottom:329.066670px;}
.y18_c00394{bottom:345.990450px;}
.y17_c00394{bottom:386.760600px;}
.y16_c00394{bottom:421.230600px;}
.y15_c00394{bottom:455.610600px;}
.y14_c00394{bottom:490.080600px;}
.y13_c00394{bottom:524.460450px;}
.y12_c00394{bottom:558.930450px;}
.y11_c00394{bottom:602.310450px;}
.y10_c00394{bottom:636.780450px;}
.yf_c00394{bottom:681.780450px;}
.ye_c00394{bottom:744.510450px;}
.yd_c00394{bottom:778.890450px;}
.yc_c00394{bottom:813.360450px;}
.yb_c00394{bottom:847.740450px;}
.ya_c00394{bottom:882.210450px;}
.y9_c00394{bottom:916.590450px;}
.y8_c00394{bottom:951.060450px;}
.y7_c00394{bottom:994.440450px;}
.y6_c00394{bottom:1028.910450px;}
.y5_c00394{bottom:1063.290450px;}
.y4_c00394{bottom:1106.760450px;}
.y3_c00394{bottom:1141.140450px;}
.y1_c00394{bottom:1196.850450px;}
.h7_c00394{height:47.988281px;}
.h8_c00394{height:49.937344px;}
.h1_c00394{height:50.315273px;}
.h3_c00394{height:60.257812px;}
.h6_c00394{height:65.130220px;}
.h4_c00394{height:65.130820px;}
.h2_c00394{height:72.160312px;}
.h5_c00394{height:81.476719px;}
.h0_c00394{height:1263.000000px;}
.w1_c00394{width:892.500000px;}
.w0_c00394{width:892.830000px;}
.x0_c00394{left:0.000000px;}
.x1_c00394{left:127.620000px;}
.x3_c00394{left:168.030000px;}
.x2_c00394{left:180.720000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.v1_c00394{vertical-align:14.080000pt;}
.v2_c00394{vertical-align:26.560000pt;}
.lsc_c00394{letter-spacing:-0.134400pt;}
.ls15_c00394{letter-spacing:-0.041664pt;}
.ls14_c00394{letter-spacing:-0.027776pt;}
.ls16_c00394{letter-spacing:-0.026720pt;}
.ls11_c00394{letter-spacing:-0.025600pt;}
.lsf_c00394{letter-spacing:-0.019200pt;}
.ls18_c00394{letter-spacing:-0.016032pt;}
.lsd_c00394{letter-spacing:-0.012800pt;}
.lse_c00394{letter-spacing:-0.006400pt;}
.ls17_c00394{letter-spacing:-0.005344pt;}
.ls10_c00394{letter-spacing:0.000000pt;}
.ls2_c00394{letter-spacing:0.006400pt;}
.ls8_c00394{letter-spacing:0.010688pt;}
.ls3_c00394{letter-spacing:0.012800pt;}
.ls5_c00394{letter-spacing:0.019200pt;}
.ls7_c00394{letter-spacing:0.026720pt;}
.lsb_c00394{letter-spacing:0.029792pt;}
.ls6_c00394{letter-spacing:0.032064pt;}
.ls9_c00394{letter-spacing:0.037408pt;}
.lsa_c00394{letter-spacing:0.038304pt;}
.ls0_c00394{letter-spacing:0.042752pt;}
.ls12_c00394{letter-spacing:0.048672pt;}
.ls13_c00394{letter-spacing:0.083200pt;}
.ls4_c00394{letter-spacing:31.248000pt;}
.ls1_c00394{letter-spacing:1077.440000pt;}
.ws1_c00394{word-spacing:-17.332224pt;}
.ws0_c00394{word-spacing:-9.408672pt;}
.ws21_c00394{word-spacing:-0.076800pt;}
.ws15_c00394{word-spacing:-0.041664pt;}
.ws2a_c00394{word-spacing:-0.021280pt;}
.ws20_c00394{word-spacing:-0.012800pt;}
.ws2b_c00394{word-spacing:-0.012768pt;}
.ws9_c00394{word-spacing:-0.006400pt;}
.ws3_c00394{word-spacing:0.000000pt;}
.ws5_c00394{word-spacing:0.006400pt;}
.ws18_c00394{word-spacing:0.012800pt;}
.ws2_c00394{word-spacing:0.037408pt;}
.ws24_c00394{word-spacing:0.069472pt;}
.ws6_c00394{word-spacing:0.358400pt;}
.ws19_c00394{word-spacing:1.600000pt;}
.ws1e_c00394{word-spacing:1.619200pt;}
.ws25_c00394{word-spacing:1.678016pt;}
.ws26_c00394{word-spacing:1.704736pt;}
.ws8_c00394{word-spacing:2.284800pt;}
.ws7_c00394{word-spacing:2.342400pt;}
.ws10_c00394{word-spacing:2.560000pt;}
.wsf_c00394{word-spacing:2.611200pt;}
.ws22_c00394{word-spacing:5.167648pt;}
.ws23_c00394{word-spacing:5.172992pt;}
.ws27_c00394{word-spacing:5.205056pt;}
.ws28_c00394{word-spacing:5.215744pt;}
.ws13_c00394{word-spacing:6.118400pt;}
.ws14_c00394{word-spacing:6.156800pt;}
.ws1a_c00394{word-spacing:7.366400pt;}
.ws1b_c00394{word-spacing:7.379200pt;}
.ws11_c00394{word-spacing:8.659200pt;}
.ws12_c00394{word-spacing:8.793600pt;}
.ws1c_c00394{word-spacing:9.836800pt;}
.ws1d_c00394{word-spacing:9.952000pt;}
.ws1f_c00394{word-spacing:10.265600pt;}
.wsa_c00394{word-spacing:11.142400pt;}
.wsb_c00394{word-spacing:11.225600pt;}
.ws29_c00394{word-spacing:11.885056pt;}
.ws4_c00394{word-spacing:12.192000pt;}
.wsd_c00394{word-spacing:15.360000pt;}
.wse_c00394{word-spacing:15.417600pt;}
.ws17_c00394{word-spacing:16.921600pt;}
.ws16_c00394{word-spacing:16.979200pt;}
.wsc_c00394{word-spacing:21.459200pt;}
._0_c00394{margin-left:-1.175680pt;}
._1_c00394{width:0.960000pt;}
.fs3_c00394{font-size:37.440000pt;}
.fs5_c00394{font-size:42.560000pt;}
.fs2_c00394{font-size:48.000000pt;}
.fs0_c00394{font-size:53.440000pt;}
.fs1_c00394{font-size:64.000000pt;}
.fs4_c00394{font-size:69.440000pt;}
.y0_c00394{bottom:0.000000pt;}
.y2_c00394{bottom:51.067067pt;}
.y22_c00394{bottom:101.068667pt;}
.y21_c00394{bottom:117.390427pt;}
.y20_c00394{bottom:133.627067pt;}
.y1f_c00394{bottom:147.147067pt;}
.y1e_c00394{bottom:165.547067pt;}
.y1d_c00394{bottom:183.947067pt;}
.y1c_c00394{bottom:247.533947pt;}
.y1b_c00394{bottom:262.497147pt;}
.y1a_c00394{bottom:277.540507pt;}
.y19_c00394{bottom:292.503707pt;}
.y18_c00394{bottom:307.547067pt;}
.y17_c00394{bottom:343.787200pt;}
.y16_c00394{bottom:374.427200pt;}
.y15_c00394{bottom:404.987200pt;}
.y14_c00394{bottom:435.627200pt;}
.y13_c00394{bottom:466.187067pt;}
.y12_c00394{bottom:496.827067pt;}
.y11_c00394{bottom:535.387067pt;}
.y10_c00394{bottom:566.027067pt;}
.yf_c00394{bottom:606.027067pt;}
.ye_c00394{bottom:661.787067pt;}
.yd_c00394{bottom:692.347067pt;}
.yc_c00394{bottom:722.987067pt;}
.yb_c00394{bottom:753.547067pt;}
.ya_c00394{bottom:784.187067pt;}
.y9_c00394{bottom:814.747067pt;}
.y8_c00394{bottom:845.387067pt;}
.y7_c00394{bottom:883.947067pt;}
.y6_c00394{bottom:914.587067pt;}
.y5_c00394{bottom:945.147067pt;}
.y4_c00394{bottom:983.787067pt;}
.y3_c00394{bottom:1014.347067pt;}
.y1_c00394{bottom:1063.867067pt;}
.h7_c00394{height:42.656250pt;}
.h8_c00394{height:44.388750pt;}
.h1_c00394{height:44.724687pt;}
.h3_c00394{height:53.562500pt;}
.h6_c00394{height:57.893529pt;}
.h4_c00394{height:57.894062pt;}
.h2_c00394{height:64.142500pt;}
.h5_c00394{height:72.423750pt;}
.h0_c00394{height:1122.666667pt;}
.w1_c00394{width:793.333333pt;}
.w0_c00394{width:793.626667pt;}
.x0_c00394{left:0.000000pt;}
.x1_c00394{left:113.440000pt;}
.x3_c00394{left:149.360000pt;}
.x2_c00394{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_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_53689c1e7a713316f512e2e1.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00395;src:url('chunks/assets/font_82b32493e09ea08f8cb7af0b.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00395;src:url('chunks/assets/font_bf99c5c1cd55884c433e28a8.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00395;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00395{font-family:ff5_c00395;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_c00395;src:url('chunks/assets/font_2630f80366b9b473448cf7ef.woff2')format("woff");}.ff6_c00395{font-family:ff6_c00395;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_c00395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00395{vertical-align:-15.120000px;}
.v0_c00395{vertical-align:0.000000px;}
.v1_c00395{vertical-align:15.134400px;}
.v3_c00395{vertical-align:29.880000px;}
.ls14_c00395{letter-spacing:-0.151200px;}
.ls23_c00395{letter-spacing:-0.050400px;}
.ls25_c00395{letter-spacing:-0.042084px;}
.ls21_c00395{letter-spacing:-0.039060px;}
.ls1a_c00395{letter-spacing:-0.036000px;}
.ls22_c00395{letter-spacing:-0.031248px;}
.ls19_c00395{letter-spacing:-0.028800px;}
.ls15_c00395{letter-spacing:-0.024048px;}
.ls1e_c00395{letter-spacing:-0.021600px;}
.ls24_c00395{letter-spacing:-0.018036px;}
.ls1d_c00395{letter-spacing:-0.014400px;}
.ls26_c00395{letter-spacing:-0.007776px;}
.ls18_c00395{letter-spacing:-0.007200px;}
.ls12_c00395{letter-spacing:-0.006012px;}
.ls27_c00395{letter-spacing:-0.003888px;}
.ls13_c00395{letter-spacing:0.000000px;}
.ls1_c00395{letter-spacing:0.006012px;}
.ls3_c00395{letter-spacing:0.007200px;}
.lsc_c00395{letter-spacing:0.014364px;}
.ls7_c00395{letter-spacing:0.014400px;}
.ls6_c00395{letter-spacing:0.021600px;}
.ls9_c00395{letter-spacing:0.024048px;}
.ls11_c00395{letter-spacing:0.028728px;}
.ls4_c00395{letter-spacing:0.028800px;}
.lsb_c00395{letter-spacing:0.033516px;}
.ls2_c00395{letter-spacing:0.036072px;}
.lsa_c00395{letter-spacing:0.038304px;}
.ls20_c00395{letter-spacing:0.043200px;}
.ls8_c00395{letter-spacing:0.048096px;}
.lsf_c00395{letter-spacing:0.052668px;}
.ls1c_c00395{letter-spacing:0.054756px;}
.ls10_c00395{letter-spacing:0.057456px;}
.ls1b_c00395{letter-spacing:0.057600px;}
.lse_c00395{letter-spacing:0.067032px;}
.ls0_c00395{letter-spacing:0.072144px;}
.ls1f_c00395{letter-spacing:0.093600px;}
.ls16_c00395{letter-spacing:0.136080px;}
.ls17_c00395{letter-spacing:0.168336px;}
.lsd_c00395{letter-spacing:0.378720px;}
.ls5_c00395{letter-spacing:70.073640px;}
.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;}
}
.ws2_c00395{word-spacing:-19.490940px;}
.ws3_c00395{word-spacing:-18.014400px;}
.ws4_c00395{word-spacing:-10.804752px;}
.ws1_c00395{word-spacing:-10.584756px;}
.ws0_c00395{word-spacing:-9.856080px;}
.ws2f_c00395{word-spacing:-0.318636px;}
.ws25_c00395{word-spacing:-0.117180px;}
.ws1b_c00395{word-spacing:-0.093600px;}
.ws38_c00395{word-spacing:-0.038304px;}
.ws33_c00395{word-spacing:-0.019152px;}
.ws3a_c00395{word-spacing:-0.014364px;}
.ws39_c00395{word-spacing:-0.009576px;}
.ws6_c00395{word-spacing:0.000000px;}
.ws24_c00395{word-spacing:0.007200px;}
.ws1a_c00395{word-spacing:0.028800px;}
.wsa_c00395{word-spacing:0.054108px;}
.ws30_c00395{word-spacing:0.066132px;}
.ws5_c00395{word-spacing:0.096192px;}
.ws13_c00395{word-spacing:0.302400px;}
.ws7_c00395{word-spacing:0.378756px;}
.ws8_c00395{word-spacing:0.444888px;}
.ws11_c00395{word-spacing:0.482400px;}
.ws12_c00395{word-spacing:0.590400px;}
.ws18_c00395{word-spacing:0.698400px;}
.ws19_c00395{word-spacing:0.734400px;}
.ws9_c00395{word-spacing:0.835668px;}
.ws1f_c00395{word-spacing:0.979200px;}
.ws20_c00395{word-spacing:1.029600px;}
.ws36_c00395{word-spacing:2.829708px;}
.ws37_c00395{word-spacing:2.844072px;}
.ws34_c00395{word-spacing:2.882376px;}
.ws35_c00395{word-spacing:2.884896px;}
.ws29_c00395{word-spacing:3.225600px;}
.ws28_c00395{word-spacing:3.268800px;}
.ws21_c00395{word-spacing:6.112800px;}
.ws22_c00395{word-spacing:6.184800px;}
.ws15_c00395{word-spacing:6.782400px;}
.ws14_c00395{word-spacing:6.868800px;}
.ws31_c00395{word-spacing:7.310592px;}
.ws32_c00395{word-spacing:7.334640px;}
.ws2a_c00395{word-spacing:7.912800px;}
.wsd_c00395{word-spacing:8.546400px;}
.wse_c00395{word-spacing:8.647200px;}
.ws2c_c00395{word-spacing:8.661600px;}
.ws2b_c00395{word-spacing:8.690400px;}
.wsf_c00395{word-spacing:9.007200px;}
.ws10_c00395{word-spacing:9.036000px;}
.ws17_c00395{word-spacing:12.211200px;}
.ws16_c00395{word-spacing:12.247200px;}
.ws23_c00395{word-spacing:12.254400px;}
.ws26_c00395{word-spacing:12.276000px;}
.ws27_c00395{word-spacing:12.369600px;}
.wsc_c00395{word-spacing:14.076000px;}
.wsb_c00395{word-spacing:14.104800px;}
.ws2e_c00395{word-spacing:17.971200px;}
.ws2d_c00395{word-spacing:18.014400px;}
.ws1e_c00395{word-spacing:18.496800px;}
.ws1d_c00395{word-spacing:18.619200px;}
.ws1c_c00395{word-spacing:18.741600px;}
._0_c00395{margin-left:-1.202400px;}
._1_c00395{width:1.252800px;}
.fc0_c00395{color:rgb(0,0,0);}
.fs3_c00395{font-size:38.880000px;}
.fs4_c00395{font-size:42.120000px;}
.fs6_c00395{font-size:47.880000px;}
.fs2_c00395{font-size:54.000000px;}
.fs0_c00395{font-size:60.120000px;}
.fs1_c00395{font-size:72.000000px;}
.fs5_c00395{font-size:78.120000px;}
.y0_c00395{bottom:0.000000px;}
.y2_c00395{bottom:57.450450px;}
.y3_c00395{bottom:61.410450px;}
.y26_c00395{bottom:113.706750px;}
.y25_c00395{bottom:132.068730px;}
.y24_c00395{bottom:150.334950px;}
.y23_c00395{bottom:164.106030px;}
.y22_c00395{bottom:182.468010px;}
.y21_c00395{bottom:200.734230px;}
.y20_c00395{bottom:219.000450px;}
.y1f_c00395{bottom:234.210450px;}
.y1e_c00395{bottom:254.910450px;}
.y1d_c00395{bottom:275.610450px;}
.y1c_c00395{bottom:312.863070px;}
.y1b_c00395{bottom:329.786850px;}
.y1a_c00395{bottom:346.620450px;}
.y19_c00395{bottom:387.480450px;}
.y18_c00395{bottom:421.860450px;}
.y17_c00395{bottom:456.330600px;}
.y16_c00395{bottom:490.710450px;}
.y15_c00395{bottom:525.180450px;}
.y14_c00395{bottom:559.560450px;}
.y13_c00395{bottom:604.650450px;}
.y12_c00395{bottom:667.290450px;}
.y11_c00395{bottom:701.760450px;}
.y10_c00395{bottom:736.140450px;}
.yf_c00395{bottom:770.610450px;}
.ye_c00395{bottom:804.990450px;}
.yd_c00395{bottom:848.460450px;}
.yc_c00395{bottom:882.840450px;}
.yb_c00395{bottom:917.310450px;}
.ya_c00395{bottom:951.690450px;}
.y9_c00395{bottom:986.160450px;}
.y8_c00395{bottom:1020.540450px;}
.y7_c00395{bottom:1055.010450px;}
.y6_c00395{bottom:1089.390450px;}
.y5_c00395{bottom:1126.916850px;}
.y4_c00395{bottom:1143.750450px;}
.y1_c00395{bottom:1196.850450px;}
.h2_c00395{height:47.988281px;}
.ha_c00395{height:49.937344px;}
.h1_c00395{height:50.315273px;}
.h4_c00395{height:50.329673px;}
.h3_c00395{height:56.320312px;}
.h5_c00395{height:60.257812px;}
.h9_c00395{height:65.130220px;}
.h6_c00395{height:65.130820px;}
.h7_c00395{height:65.131420px;}
.h8_c00395{height:81.476719px;}
.h0_c00395{height:1263.000000px;}
.w1_c00395{width:892.500000px;}
.w0_c00395{width:892.830000px;}
.x0_c00395{left:0.000000px;}
.x6_c00395{left:127.620000px;}
.x7_c00395{left:141.116490px;}
.x5_c00395{left:168.030000px;}
.x4_c00395{left:181.620000px;}
.x3_c00395{left:435.240000px;}
.x2_c00395{left:446.490000px;}
.x1_c00395{left:499.050000px;}
@media print{
.v2_c00395{vertical-align:-13.440000pt;}
.v0_c00395{vertical-align:0.000000pt;}
.v1_c00395{vertical-align:13.452800pt;}
.v3_c00395{vertical-align:26.560000pt;}
.ls14_c00395{letter-spacing:-0.134400pt;}
.ls23_c00395{letter-spacing:-0.044800pt;}
.ls25_c00395{letter-spacing:-0.037408pt;}
.ls21_c00395{letter-spacing:-0.034720pt;}
.ls1a_c00395{letter-spacing:-0.032000pt;}
.ls22_c00395{letter-spacing:-0.027776pt;}
.ls19_c00395{letter-spacing:-0.025600pt;}
.ls15_c00395{letter-spacing:-0.021376pt;}
.ls1e_c00395{letter-spacing:-0.019200pt;}
.ls24_c00395{letter-spacing:-0.016032pt;}
.ls1d_c00395{letter-spacing:-0.012800pt;}
.ls26_c00395{letter-spacing:-0.006912pt;}
.ls18_c00395{letter-spacing:-0.006400pt;}
.ls12_c00395{letter-spacing:-0.005344pt;}
.ls27_c00395{letter-spacing:-0.003456pt;}
.ls13_c00395{letter-spacing:0.000000pt;}
.ls1_c00395{letter-spacing:0.005344pt;}
.ls3_c00395{letter-spacing:0.006400pt;}
.lsc_c00395{letter-spacing:0.012768pt;}
.ls7_c00395{letter-spacing:0.012800pt;}
.ls6_c00395{letter-spacing:0.019200pt;}
.ls9_c00395{letter-spacing:0.021376pt;}
.ls11_c00395{letter-spacing:0.025536pt;}
.ls4_c00395{letter-spacing:0.025600pt;}
.lsb_c00395{letter-spacing:0.029792pt;}
.ls2_c00395{letter-spacing:0.032064pt;}
.lsa_c00395{letter-spacing:0.034048pt;}
.ls20_c00395{letter-spacing:0.038400pt;}
.ls8_c00395{letter-spacing:0.042752pt;}
.lsf_c00395{letter-spacing:0.046816pt;}
.ls1c_c00395{letter-spacing:0.048672pt;}
.ls10_c00395{letter-spacing:0.051072pt;}
.ls1b_c00395{letter-spacing:0.051200pt;}
.lse_c00395{letter-spacing:0.059584pt;}
.ls0_c00395{letter-spacing:0.064128pt;}
.ls1f_c00395{letter-spacing:0.083200pt;}
.ls16_c00395{letter-spacing:0.120960pt;}
.ls17_c00395{letter-spacing:0.149632pt;}
.lsd_c00395{letter-spacing:0.336640pt;}
.ls5_c00395{letter-spacing:62.287680pt;}
.ws2_c00395{word-spacing:-17.325280pt;}
.ws3_c00395{word-spacing:-16.012800pt;}
.ws4_c00395{word-spacing:-9.604224pt;}
.ws1_c00395{word-spacing:-9.408672pt;}
.ws0_c00395{word-spacing:-8.760960pt;}
.ws2f_c00395{word-spacing:-0.283232pt;}
.ws25_c00395{word-spacing:-0.104160pt;}
.ws1b_c00395{word-spacing:-0.083200pt;}
.ws38_c00395{word-spacing:-0.034048pt;}
.ws33_c00395{word-spacing:-0.017024pt;}
.ws3a_c00395{word-spacing:-0.012768pt;}
.ws39_c00395{word-spacing:-0.008512pt;}
.ws6_c00395{word-spacing:0.000000pt;}
.ws24_c00395{word-spacing:0.006400pt;}
.ws1a_c00395{word-spacing:0.025600pt;}
.wsa_c00395{word-spacing:0.048096pt;}
.ws30_c00395{word-spacing:0.058784pt;}
.ws5_c00395{word-spacing:0.085504pt;}
.ws13_c00395{word-spacing:0.268800pt;}
.ws7_c00395{word-spacing:0.336672pt;}
.ws8_c00395{word-spacing:0.395456pt;}
.ws11_c00395{word-spacing:0.428800pt;}
.ws12_c00395{word-spacing:0.524800pt;}
.ws18_c00395{word-spacing:0.620800pt;}
.ws19_c00395{word-spacing:0.652800pt;}
.ws9_c00395{word-spacing:0.742816pt;}
.ws1f_c00395{word-spacing:0.870400pt;}
.ws20_c00395{word-spacing:0.915200pt;}
.ws36_c00395{word-spacing:2.515296pt;}
.ws37_c00395{word-spacing:2.528064pt;}
.ws34_c00395{word-spacing:2.562112pt;}
.ws35_c00395{word-spacing:2.564352pt;}
.ws29_c00395{word-spacing:2.867200pt;}
.ws28_c00395{word-spacing:2.905600pt;}
.ws21_c00395{word-spacing:5.433600pt;}
.ws22_c00395{word-spacing:5.497600pt;}
.ws15_c00395{word-spacing:6.028800pt;}
.ws14_c00395{word-spacing:6.105600pt;}
.ws31_c00395{word-spacing:6.498304pt;}
.ws32_c00395{word-spacing:6.519680pt;}
.ws2a_c00395{word-spacing:7.033600pt;}
.wsd_c00395{word-spacing:7.596800pt;}
.wse_c00395{word-spacing:7.686400pt;}
.ws2c_c00395{word-spacing:7.699200pt;}
.ws2b_c00395{word-spacing:7.724800pt;}
.wsf_c00395{word-spacing:8.006400pt;}
.ws10_c00395{word-spacing:8.032000pt;}
.ws17_c00395{word-spacing:10.854400pt;}
.ws16_c00395{word-spacing:10.886400pt;}
.ws23_c00395{word-spacing:10.892800pt;}
.ws26_c00395{word-spacing:10.912000pt;}
.ws27_c00395{word-spacing:10.995200pt;}
.wsc_c00395{word-spacing:12.512000pt;}
.wsb_c00395{word-spacing:12.537600pt;}
.ws2e_c00395{word-spacing:15.974400pt;}
.ws2d_c00395{word-spacing:16.012800pt;}
.ws1e_c00395{word-spacing:16.441600pt;}
.ws1d_c00395{word-spacing:16.550400pt;}
.ws1c_c00395{word-spacing:16.659200pt;}
._0_c00395{margin-left:-1.068800pt;}
._1_c00395{width:1.113600pt;}
.fs3_c00395{font-size:34.560000pt;}
.fs4_c00395{font-size:37.440000pt;}
.fs6_c00395{font-size:42.560000pt;}
.fs2_c00395{font-size:48.000000pt;}
.fs0_c00395{font-size:53.440000pt;}
.fs1_c00395{font-size:64.000000pt;}
.fs5_c00395{font-size:69.440000pt;}
.y0_c00395{bottom:0.000000pt;}
.y2_c00395{bottom:51.067067pt;}
.y3_c00395{bottom:54.587067pt;}
.y26_c00395{bottom:101.072667pt;}
.y25_c00395{bottom:117.394427pt;}
.y24_c00395{bottom:133.631067pt;}
.y23_c00395{bottom:145.872027pt;}
.y22_c00395{bottom:162.193787pt;}
.y21_c00395{bottom:178.430427pt;}
.y20_c00395{bottom:194.667067pt;}
.y1f_c00395{bottom:208.187067pt;}
.y1e_c00395{bottom:226.587067pt;}
.y1d_c00395{bottom:244.987067pt;}
.y1c_c00395{bottom:278.100507pt;}
.y1b_c00395{bottom:293.143867pt;}
.y1a_c00395{bottom:308.107067pt;}
.y19_c00395{bottom:344.427067pt;}
.y18_c00395{bottom:374.987067pt;}
.y17_c00395{bottom:405.627200pt;}
.y16_c00395{bottom:436.187067pt;}
.y15_c00395{bottom:466.827067pt;}
.y14_c00395{bottom:497.387067pt;}
.y13_c00395{bottom:537.467067pt;}
.y12_c00395{bottom:593.147067pt;}
.y11_c00395{bottom:623.787067pt;}
.y10_c00395{bottom:654.347067pt;}
.yf_c00395{bottom:684.987067pt;}
.ye_c00395{bottom:715.547067pt;}
.yd_c00395{bottom:754.187067pt;}
.yc_c00395{bottom:784.747067pt;}
.yb_c00395{bottom:815.387067pt;}
.ya_c00395{bottom:845.947067pt;}
.y9_c00395{bottom:876.587067pt;}
.y8_c00395{bottom:907.147067pt;}
.y7_c00395{bottom:937.787067pt;}
.y6_c00395{bottom:968.347067pt;}
.y5_c00395{bottom:1001.703867pt;}
.y4_c00395{bottom:1016.667067pt;}
.y1_c00395{bottom:1063.867067pt;}
.h2_c00395{height:42.656250pt;}
.ha_c00395{height:44.388750pt;}
.h1_c00395{height:44.724687pt;}
.h4_c00395{height:44.737488pt;}
.h3_c00395{height:50.062500pt;}
.h5_c00395{height:53.562500pt;}
.h9_c00395{height:57.893529pt;}
.h6_c00395{height:57.894062pt;}
.h7_c00395{height:57.894596pt;}
.h8_c00395{height:72.423750pt;}
.h0_c00395{height:1122.666667pt;}
.w1_c00395{width:793.333333pt;}
.w0_c00395{width:793.626667pt;}
.x0_c00395{left:0.000000pt;}
.x6_c00395{left:113.440000pt;}
.x7_c00395{left:125.436880pt;}
.x5_c00395{left:149.360000pt;}
.x4_c00395{left:161.440000pt;}
.x3_c00395{left:386.880000pt;}
.x2_c00395{left:396.880000pt;}
.x1_c00395{left:443.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d26b5b79b88fc8ea474f6099.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_74043eb7c0221a6d0fb8b002.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00396;src:url('chunks/assets/font_649c1f79f106b48c5c923b50.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00396;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;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_c00396;src:url('chunks/assets/font_8b6441a8fe7f1b807b2e5ea7.woff2')format("woff");}.ff6_c00396{font-family:ff6_c00396;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_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00396{vertical-align:-15.120000px;}
.v0_c00396{vertical-align:0.000000px;}
.v1_c00396{vertical-align:15.840000px;}
.v3_c00396{vertical-align:29.880000px;}
.ls16_c00396{letter-spacing:-0.151200px;}
.ls22_c00396{letter-spacing:-0.062496px;}
.ls23_c00396{letter-spacing:-0.054684px;}
.ls1f_c00396{letter-spacing:-0.043200px;}
.ls1c_c00396{letter-spacing:-0.028800px;}
.ls21_c00396{letter-spacing:-0.023436px;}
.ls1e_c00396{letter-spacing:-0.021600px;}
.ls1d_c00396{letter-spacing:-0.014400px;}
.ls1a_c00396{letter-spacing:-0.007200px;}
.ls25_c00396{letter-spacing:-0.003888px;}
.ls17_c00396{letter-spacing:0.000000px;}
.ls7_c00396{letter-spacing:0.007200px;}
.lsd_c00396{letter-spacing:0.009576px;}
.ls11_c00396{letter-spacing:0.014364px;}
.ls6_c00396{letter-spacing:0.014400px;}
.ls14_c00396{letter-spacing:0.019152px;}
.ls15_c00396{letter-spacing:0.028728px;}
.lsc_c00396{letter-spacing:0.033516px;}
.ls8_c00396{letter-spacing:0.036000px;}
.ls2_c00396{letter-spacing:0.036072px;}
.lsb_c00396{letter-spacing:0.038304px;}
.ls12_c00396{letter-spacing:0.043092px;}
.lsa_c00396{letter-spacing:0.043200px;}
.ls26_c00396{letter-spacing:0.047880px;}
.ls0_c00396{letter-spacing:0.048096px;}
.ls13_c00396{letter-spacing:0.052668px;}
.ls1b_c00396{letter-spacing:0.054756px;}
.ls4_c00396{letter-spacing:0.066132px;}
.ls3_c00396{letter-spacing:0.078156px;}
.ls5_c00396{letter-spacing:0.090180px;}
.ls20_c00396{letter-spacing:0.093600px;}
.lsf_c00396{letter-spacing:0.104040px;}
.ls18_c00396{letter-spacing:0.136080px;}
.ls19_c00396{letter-spacing:0.168336px;}
.lse_c00396{letter-spacing:0.351360px;}
.ls10_c00396{letter-spacing:0.464040px;}
.ls24_c00396{letter-spacing:1.800000px;}
.ls9_c00396{letter-spacing:64.683360px;}
.ls1_c00396{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00396{word-spacing:-19.506564px;}
.ws5_c00396{word-spacing:-13.358520px;}
.ws3_c00396{word-spacing:-13.320216px;}
.ws4_c00396{word-spacing:-10.804752px;}
.ws1_c00396{word-spacing:-10.584756px;}
.ws0_c00396{word-spacing:-9.856080px;}
.wsc_c00396{word-spacing:-0.360720px;}
.ws2c_c00396{word-spacing:-0.093600px;}
.ws24_c00396{word-spacing:-0.039060px;}
.ws23_c00396{word-spacing:-0.031248px;}
.ws2d_c00396{word-spacing:-0.019152px;}
.ws34_c00396{word-spacing:-0.014364px;}
.ws33_c00396{word-spacing:-0.009576px;}
.ws22_c00396{word-spacing:-0.007200px;}
.ws7_c00396{word-spacing:0.000000px;}
.ws16_c00396{word-spacing:0.014400px;}
.ws6_c00396{word-spacing:0.042084px;}
.ws2b_c00396{word-spacing:0.057600px;}
.ws30_c00396{word-spacing:0.335160px;}
.ws2e_c00396{word-spacing:0.357696px;}
.ws29_c00396{word-spacing:0.676800px;}
.ws2a_c00396{word-spacing:0.712800px;}
.ws2f_c00396{word-spacing:0.722988px;}
.ws28_c00396{word-spacing:0.763200px;}
.ws10_c00396{word-spacing:1.080000px;}
.ws11_c00396{word-spacing:1.188000px;}
.ws17_c00396{word-spacing:1.260000px;}
.ws25_c00396{word-spacing:1.908000px;}
.ws9_c00396{word-spacing:2.170332px;}
.ws1d_c00396{word-spacing:2.203200px;}
.ws8_c00396{word-spacing:2.212416px;}
.wsd_c00396{word-spacing:2.527200px;}
.ws15_c00396{word-spacing:2.894400px;}
.ws14_c00396{word-spacing:2.959200px;}
.ws31_c00396{word-spacing:3.203172px;}
.ws32_c00396{word-spacing:3.236688px;}
.ws1b_c00396{word-spacing:3.967200px;}
.ws1c_c00396{word-spacing:4.003200px;}
.ws26_c00396{word-spacing:4.334400px;}
.wsa_c00396{word-spacing:4.346676px;}
.wsb_c00396{word-spacing:4.412808px;}
.ws27_c00396{word-spacing:4.420800px;}
.ws20_c00396{word-spacing:8.640000px;}
.ws21_c00396{word-spacing:8.769600px;}
.ws1f_c00396{word-spacing:10.404000px;}
.ws1e_c00396{word-spacing:10.461600px;}
.wse_c00396{word-spacing:12.945600px;}
.wsf_c00396{word-spacing:13.060800px;}
.ws12_c00396{word-spacing:16.250400px;}
.ws13_c00396{word-spacing:16.344000px;}
.ws1a_c00396{word-spacing:20.512800px;}
.ws18_c00396{word-spacing:20.520000px;}
.ws19_c00396{word-spacing:20.541600px;}
._2_c00396{margin-left:-2.678400px;}
._0_c00396{margin-left:-1.322640px;}
._1_c00396{width:1.008000px;}
.fc0_c00396{color:rgb(0,0,0);}
.fs3_c00396{font-size:38.880000px;}
.fs4_c00396{font-size:42.120000px;}
.fs6_c00396{font-size:47.880000px;}
.fs2_c00396{font-size:54.000000px;}
.fs0_c00396{font-size:60.120000px;}
.fs1_c00396{font-size:72.000000px;}
.fs5_c00396{font-size:78.120000px;}
.y0_c00396{bottom:0.000000px;}
.y2_c00396{bottom:57.450450px;}
.y22_c00396{bottom:113.695500px;}
.y21_c00396{bottom:132.057480px;}
.y20_c00396{bottom:145.739190px;}
.y1f_c00396{bottom:159.606030px;}
.y1e_c00396{bottom:177.968010px;}
.y1d_c00396{bottom:196.234230px;}
.y1c_c00396{bottom:214.500450px;}
.y1b_c00396{bottom:229.710450px;}
.y1a_c00396{bottom:250.410450px;}
.y19_c00396{bottom:271.110450px;}
.y18_c00396{bottom:396.030450px;}
.y17_c00396{bottom:430.410450px;}
.y16_c00396{bottom:464.880450px;}
.y15_c00396{bottom:499.260450px;}
.y14_c00396{bottom:544.350450px;}
.y13_c00396{bottom:606.990600px;}
.y12_c00396{bottom:641.460600px;}
.y11_c00396{bottom:675.840600px;}
.y10_c00396{bottom:710.310600px;}
.yf_c00396{bottom:753.690600px;}
.ye_c00396{bottom:788.160600px;}
.yd_c00396{bottom:822.540450px;}
.yc_c00396{bottom:857.010450px;}
.yb_c00396{bottom:900.390450px;}
.ya_c00396{bottom:934.860450px;}
.y9_c00396{bottom:969.240450px;}
.y8_c00396{bottom:1003.710450px;}
.y7_c00396{bottom:1038.090450px;}
.y6_c00396{bottom:1072.560450px;}
.y5_c00396{bottom:1109.993070px;}
.y4_c00396{bottom:1126.916850px;}
.y3_c00396{bottom:1143.750450px;}
.y1_c00396{bottom:1196.850450px;}
.h9_c00396{height:47.988281px;}
.ha_c00396{height:49.937344px;}
.h1_c00396{height:50.315273px;}
.h3_c00396{height:50.344793px;}
.h4_c00396{height:60.257812px;}
.h6_c00396{height:65.130220px;}
.h5_c00396{height:65.130820px;}
.h8_c00396{height:65.131420px;}
.h2_c00396{height:72.160312px;}
.h7_c00396{height:81.476719px;}
.h0_c00396{height:1263.000000px;}
.w1_c00396{width:892.500000px;}
.w0_c00396{width:892.830000px;}
.x0_c00396{left:0.000000px;}
.x1_c00396{left:127.620000px;}
.x4_c00396{left:141.113790px;}
.x2_c00396{left:168.030000px;}
.x3_c00396{left:180.720000px;}
@media print{
.v2_c00396{vertical-align:-13.440000pt;}
.v0_c00396{vertical-align:0.000000pt;}
.v1_c00396{vertical-align:14.080000pt;}
.v3_c00396{vertical-align:26.560000pt;}
.ls16_c00396{letter-spacing:-0.134400pt;}
.ls22_c00396{letter-spacing:-0.055552pt;}
.ls23_c00396{letter-spacing:-0.048608pt;}
.ls1f_c00396{letter-spacing:-0.038400pt;}
.ls1c_c00396{letter-spacing:-0.025600pt;}
.ls21_c00396{letter-spacing:-0.020832pt;}
.ls1e_c00396{letter-spacing:-0.019200pt;}
.ls1d_c00396{letter-spacing:-0.012800pt;}
.ls1a_c00396{letter-spacing:-0.006400pt;}
.ls25_c00396{letter-spacing:-0.003456pt;}
.ls17_c00396{letter-spacing:0.000000pt;}
.ls7_c00396{letter-spacing:0.006400pt;}
.lsd_c00396{letter-spacing:0.008512pt;}
.ls11_c00396{letter-spacing:0.012768pt;}
.ls6_c00396{letter-spacing:0.012800pt;}
.ls14_c00396{letter-spacing:0.017024pt;}
.ls15_c00396{letter-spacing:0.025536pt;}
.lsc_c00396{letter-spacing:0.029792pt;}
.ls8_c00396{letter-spacing:0.032000pt;}
.ls2_c00396{letter-spacing:0.032064pt;}
.lsb_c00396{letter-spacing:0.034048pt;}
.ls12_c00396{letter-spacing:0.038304pt;}
.lsa_c00396{letter-spacing:0.038400pt;}
.ls26_c00396{letter-spacing:0.042560pt;}
.ls0_c00396{letter-spacing:0.042752pt;}
.ls13_c00396{letter-spacing:0.046816pt;}
.ls1b_c00396{letter-spacing:0.048672pt;}
.ls4_c00396{letter-spacing:0.058784pt;}
.ls3_c00396{letter-spacing:0.069472pt;}
.ls5_c00396{letter-spacing:0.080160pt;}
.ls20_c00396{letter-spacing:0.083200pt;}
.lsf_c00396{letter-spacing:0.092480pt;}
.ls18_c00396{letter-spacing:0.120960pt;}
.ls19_c00396{letter-spacing:0.149632pt;}
.lse_c00396{letter-spacing:0.312320pt;}
.ls10_c00396{letter-spacing:0.412480pt;}
.ls24_c00396{letter-spacing:1.600000pt;}
.ls9_c00396{letter-spacing:57.496320pt;}
.ls1_c00396{letter-spacing:1077.440000pt;}
.ws2_c00396{word-spacing:-17.339168pt;}
.ws5_c00396{word-spacing:-11.874240pt;}
.ws3_c00396{word-spacing:-11.840192pt;}
.ws4_c00396{word-spacing:-9.604224pt;}
.ws1_c00396{word-spacing:-9.408672pt;}
.ws0_c00396{word-spacing:-8.760960pt;}
.wsc_c00396{word-spacing:-0.320640pt;}
.ws2c_c00396{word-spacing:-0.083200pt;}
.ws24_c00396{word-spacing:-0.034720pt;}
.ws23_c00396{word-spacing:-0.027776pt;}
.ws2d_c00396{word-spacing:-0.017024pt;}
.ws34_c00396{word-spacing:-0.012768pt;}
.ws33_c00396{word-spacing:-0.008512pt;}
.ws22_c00396{word-spacing:-0.006400pt;}
.ws7_c00396{word-spacing:0.000000pt;}
.ws16_c00396{word-spacing:0.012800pt;}
.ws6_c00396{word-spacing:0.037408pt;}
.ws2b_c00396{word-spacing:0.051200pt;}
.ws30_c00396{word-spacing:0.297920pt;}
.ws2e_c00396{word-spacing:0.317952pt;}
.ws29_c00396{word-spacing:0.601600pt;}
.ws2a_c00396{word-spacing:0.633600pt;}
.ws2f_c00396{word-spacing:0.642656pt;}
.ws28_c00396{word-spacing:0.678400pt;}
.ws10_c00396{word-spacing:0.960000pt;}
.ws11_c00396{word-spacing:1.056000pt;}
.ws17_c00396{word-spacing:1.120000pt;}
.ws25_c00396{word-spacing:1.696000pt;}
.ws9_c00396{word-spacing:1.929184pt;}
.ws1d_c00396{word-spacing:1.958400pt;}
.ws8_c00396{word-spacing:1.966592pt;}
.wsd_c00396{word-spacing:2.246400pt;}
.ws15_c00396{word-spacing:2.572800pt;}
.ws14_c00396{word-spacing:2.630400pt;}
.ws31_c00396{word-spacing:2.847264pt;}
.ws32_c00396{word-spacing:2.877056pt;}
.ws1b_c00396{word-spacing:3.526400pt;}
.ws1c_c00396{word-spacing:3.558400pt;}
.ws26_c00396{word-spacing:3.852800pt;}
.wsa_c00396{word-spacing:3.863712pt;}
.wsb_c00396{word-spacing:3.922496pt;}
.ws27_c00396{word-spacing:3.929600pt;}
.ws20_c00396{word-spacing:7.680000pt;}
.ws21_c00396{word-spacing:7.795200pt;}
.ws1f_c00396{word-spacing:9.248000pt;}
.ws1e_c00396{word-spacing:9.299200pt;}
.wse_c00396{word-spacing:11.507200pt;}
.wsf_c00396{word-spacing:11.609600pt;}
.ws12_c00396{word-spacing:14.444800pt;}
.ws13_c00396{word-spacing:14.528000pt;}
.ws1a_c00396{word-spacing:18.233600pt;}
.ws18_c00396{word-spacing:18.240000pt;}
.ws19_c00396{word-spacing:18.259200pt;}
._2_c00396{margin-left:-2.380800pt;}
._0_c00396{margin-left:-1.175680pt;}
._1_c00396{width:0.896000pt;}
.fs3_c00396{font-size:34.560000pt;}
.fs4_c00396{font-size:37.440000pt;}
.fs6_c00396{font-size:42.560000pt;}
.fs2_c00396{font-size:48.000000pt;}
.fs0_c00396{font-size:53.440000pt;}
.fs1_c00396{font-size:64.000000pt;}
.fs5_c00396{font-size:69.440000pt;}
.y0_c00396{bottom:0.000000pt;}
.y2_c00396{bottom:51.067067pt;}
.y22_c00396{bottom:101.062667pt;}
.y21_c00396{bottom:117.384427pt;}
.y20_c00396{bottom:129.545947pt;}
.y1f_c00396{bottom:141.872027pt;}
.y1e_c00396{bottom:158.193787pt;}
.y1d_c00396{bottom:174.430427pt;}
.y1c_c00396{bottom:190.667067pt;}
.y1b_c00396{bottom:204.187067pt;}
.y1a_c00396{bottom:222.587067pt;}
.y19_c00396{bottom:240.987067pt;}
.y18_c00396{bottom:352.027067pt;}
.y17_c00396{bottom:382.587067pt;}
.y16_c00396{bottom:413.227067pt;}
.y15_c00396{bottom:443.787067pt;}
.y14_c00396{bottom:483.867067pt;}
.y13_c00396{bottom:539.547200pt;}
.y12_c00396{bottom:570.187200pt;}
.y11_c00396{bottom:600.747200pt;}
.y10_c00396{bottom:631.387200pt;}
.yf_c00396{bottom:669.947200pt;}
.ye_c00396{bottom:700.587200pt;}
.yd_c00396{bottom:731.147067pt;}
.yc_c00396{bottom:761.787067pt;}
.yb_c00396{bottom:800.347067pt;}
.ya_c00396{bottom:830.987067pt;}
.y9_c00396{bottom:861.547067pt;}
.y8_c00396{bottom:892.187067pt;}
.y7_c00396{bottom:922.747067pt;}
.y6_c00396{bottom:953.387067pt;}
.y5_c00396{bottom:986.660507pt;}
.y4_c00396{bottom:1001.703867pt;}
.y3_c00396{bottom:1016.667067pt;}
.y1_c00396{bottom:1063.867067pt;}
.h9_c00396{height:42.656250pt;}
.ha_c00396{height:44.388750pt;}
.h1_c00396{height:44.724687pt;}
.h3_c00396{height:44.750928pt;}
.h4_c00396{height:53.562500pt;}
.h6_c00396{height:57.893529pt;}
.h5_c00396{height:57.894063pt;}
.h8_c00396{height:57.894596pt;}
.h2_c00396{height:64.142500pt;}
.h7_c00396{height:72.423750pt;}
.h0_c00396{height:1122.666667pt;}
.w1_c00396{width:793.333333pt;}
.w0_c00396{width:793.626667pt;}
.x0_c00396{left:0.000000pt;}
.x1_c00396{left:113.440000pt;}
.x4_c00396{left:125.434480pt;}
.x2_c00396{left:149.360000pt;}
.x3_c00396{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_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_914836d3891c84cbcdb11913.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_eba3b44b6980d494c9b0c1cf.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00397;src:url('chunks/assets/font_0da6314ed698781b4d5bcf6f.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00397;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00397{font-family:ff5_c00397;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_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);}
.v3_c00397{vertical-align:-15.120000px;}
.v0_c00397{vertical-align:0.000000px;}
.v2_c00397{vertical-align:15.163920px;}
.v1_c00397{vertical-align:29.880000px;}
.lse_c00397{letter-spacing:-0.151200px;}
.ls16_c00397{letter-spacing:-0.054108px;}
.ls18_c00397{letter-spacing:-0.036000px;}
.ls1c_c00397{letter-spacing:-0.028800px;}
.ls14_c00397{letter-spacing:-0.024048px;}
.ls1a_c00397{letter-spacing:-0.023436px;}
.ls11_c00397{letter-spacing:-0.021600px;}
.ls1b_c00397{letter-spacing:-0.015624px;}
.ls10_c00397{letter-spacing:-0.014400px;}
.ls15_c00397{letter-spacing:-0.012024px;}
.lsf_c00397{letter-spacing:-0.007200px;}
.lsc_c00397{letter-spacing:-0.006012px;}
.lsd_c00397{letter-spacing:0.000000px;}
.ls1_c00397{letter-spacing:0.007200px;}
.ls4_c00397{letter-spacing:0.012024px;}
.ls5_c00397{letter-spacing:0.014400px;}
.ls3_c00397{letter-spacing:0.018036px;}
.ls2_c00397{letter-spacing:0.021600px;}
.ls8_c00397{letter-spacing:0.028728px;}
.ls0_c00397{letter-spacing:0.028800px;}
.lsa_c00397{letter-spacing:0.033516px;}
.ls6_c00397{letter-spacing:0.036000px;}
.lsb_c00397{letter-spacing:0.043092px;}
.ls9_c00397{letter-spacing:0.047880px;}
.ls12_c00397{letter-spacing:0.054756px;}
.ls19_c00397{letter-spacing:0.093600px;}
.ls17_c00397{letter-spacing:0.136080px;}
.ls13_c00397{letter-spacing:0.168336px;}
.ls7_c00397{letter-spacing:64.683360px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00397{word-spacing:-19.506564px;}
.ws0_c00397{word-spacing:-10.584756px;}
.ws1_c00397{word-spacing:-9.856080px;}
.ws18_c00397{word-spacing:-0.270540px;}
.ws15_c00397{word-spacing:-0.246492px;}
.ws28_c00397{word-spacing:-0.164052px;}
.ws9_c00397{word-spacing:-0.078156px;}
.ws2f_c00397{word-spacing:-0.028728px;}
.ws31_c00397{word-spacing:-0.023940px;}
.ws30_c00397{word-spacing:-0.014364px;}
.ws2e_c00397{word-spacing:-0.009576px;}
.ws12_c00397{word-spacing:-0.007200px;}
.ws4_c00397{word-spacing:0.000000px;}
.ws6_c00397{word-spacing:0.007200px;}
.ws7_c00397{word-spacing:0.014400px;}
.ws8_c00397{word-spacing:0.021600px;}
.ws19_c00397{word-spacing:0.078156px;}
.ws3_c00397{word-spacing:0.096192px;}
.ws27_c00397{word-spacing:0.144000px;}
.ws2a_c00397{word-spacing:0.619200px;}
.ws29_c00397{word-spacing:0.691200px;}
.wsd_c00397{word-spacing:1.137600px;}
.wsc_c00397{word-spacing:1.152000px;}
.wsa_c00397{word-spacing:2.131200px;}
.wsb_c00397{word-spacing:2.174400px;}
.wsf_c00397{word-spacing:2.469600px;}
.wse_c00397{word-spacing:2.541600px;}
.ws16_c00397{word-spacing:2.621232px;}
.ws17_c00397{word-spacing:2.663316px;}
.ws2c_c00397{word-spacing:2.901600px;}
.ws2d_c00397{word-spacing:2.944800px;}
.ws22_c00397{word-spacing:3.636000px;}
.ws21_c00397{word-spacing:3.657600px;}
.ws13_c00397{word-spacing:3.673332px;}
.ws14_c00397{word-spacing:3.691368px;}
.ws23_c00397{word-spacing:6.084000px;}
.ws24_c00397{word-spacing:6.156000px;}
.ws2b_c00397{word-spacing:7.207200px;}
.ws1a_c00397{word-spacing:7.639200px;}
.ws1d_c00397{word-spacing:10.814400px;}
.ws1e_c00397{word-spacing:10.828800px;}
.ws5_c00397{word-spacing:12.247200px;}
.ws25_c00397{word-spacing:12.607200px;}
.ws26_c00397{word-spacing:12.722400px;}
.ws11_c00397{word-spacing:12.938400px;}
.ws10_c00397{word-spacing:12.952800px;}
.ws1b_c00397{word-spacing:20.865600px;}
.ws1c_c00397{word-spacing:21.045600px;}
.ws1f_c00397{word-spacing:21.607200px;}
.ws20_c00397{word-spacing:21.650400px;}
._2_c00397{margin-left:-3.607200px;}
._0_c00397{margin-left:-1.202400px;}
._1_c00397{width:1.080000px;}
.fc0_c00397{color:rgb(0,0,0);}
.fs4_c00397{font-size:38.880000px;}
.fs3_c00397{font-size:42.120000px;}
.fs6_c00397{font-size:47.880000px;}
.fs2_c00397{font-size:54.000000px;}
.fs0_c00397{font-size:60.120000px;}
.fs1_c00397{font-size:72.000000px;}
.fs5_c00397{font-size:78.120000px;}
.y0_c00397{bottom:0.000000px;}
.y2_c00397{bottom:57.450450px;}
.y3_c00397{bottom:61.410450px;}
.y25_c00397{bottom:113.707830px;}
.y24_c00397{bottom:132.069810px;}
.y23_c00397{bottom:150.336030px;}
.y22_c00397{bottom:168.602250px;}
.y21_c00397{bottom:186.964230px;}
.y20_c00397{bottom:205.230450px;}
.y1f_c00397{bottom:220.440450px;}
.y1e_c00397{bottom:241.140450px;}
.y1d_c00397{bottom:261.840450px;}
.y1c_c00397{bottom:301.260450px;}
.y1b_c00397{bottom:335.730450px;}
.y1a_c00397{bottom:370.110450px;}
.y19_c00397{bottom:415.200600px;}
.y18_c00397{bottom:477.840450px;}
.y17_c00397{bottom:512.310450px;}
.y16_c00397{bottom:546.690450px;}
.y15_c00397{bottom:581.160450px;}
.y14_c00397{bottom:615.540450px;}
.y13_c00397{bottom:650.010450px;}
.y12_c00397{bottom:684.390450px;}
.y11_c00397{bottom:727.860450px;}
.y10_c00397{bottom:762.240450px;}
.yf_c00397{bottom:799.759470px;}
.ye_c00397{bottom:816.593070px;}
.yd_c00397{bottom:833.516850px;}
.yc_c00397{bottom:850.350450px;}
.yb_c00397{bottom:891.210450px;}
.ya_c00397{bottom:925.590450px;}
.y9_c00397{bottom:960.060450px;}
.y8_c00397{bottom:994.440450px;}
.y7_c00397{bottom:1028.910450px;}
.y6_c00397{bottom:1072.290450px;}
.y5_c00397{bottom:1106.760450px;}
.y4_c00397{bottom:1141.140450px;}
.y1_c00397{bottom:1196.850450px;}
.h2_c00397{height:47.988281px;}
.h9_c00397{height:49.937344px;}
.h1_c00397{height:50.315273px;}
.h6_c00397{height:50.359193px;}
.h3_c00397{height:56.320312px;}
.h4_c00397{height:60.257812px;}
.h5_c00397{height:65.130820px;}
.h7_c00397{height:65.131420px;}
.h8_c00397{height:81.476719px;}
.h0_c00397{height:1263.000000px;}
.w1_c00397{width:892.500000px;}
.w0_c00397{width:892.830000px;}
.x0_c00397{left:0.000000px;}
.x5_c00397{left:127.620000px;}
.x6_c00397{left:154.440000px;}
.x4_c00397{left:180.720000px;}
.x3_c00397{left:435.240000px;}
.x2_c00397{left:446.490000px;}
.x1_c00397{left:499.050000px;}
@media print{
.v3_c00397{vertical-align:-13.440000pt;}
.v0_c00397{vertical-align:0.000000pt;}
.v2_c00397{vertical-align:13.479040pt;}
.v1_c00397{vertical-align:26.560000pt;}
.lse_c00397{letter-spacing:-0.134400pt;}
.ls16_c00397{letter-spacing:-0.048096pt;}
.ls18_c00397{letter-spacing:-0.032000pt;}
.ls1c_c00397{letter-spacing:-0.025600pt;}
.ls14_c00397{letter-spacing:-0.021376pt;}
.ls1a_c00397{letter-spacing:-0.020832pt;}
.ls11_c00397{letter-spacing:-0.019200pt;}
.ls1b_c00397{letter-spacing:-0.013888pt;}
.ls10_c00397{letter-spacing:-0.012800pt;}
.ls15_c00397{letter-spacing:-0.010688pt;}
.lsf_c00397{letter-spacing:-0.006400pt;}
.lsc_c00397{letter-spacing:-0.005344pt;}
.lsd_c00397{letter-spacing:0.000000pt;}
.ls1_c00397{letter-spacing:0.006400pt;}
.ls4_c00397{letter-spacing:0.010688pt;}
.ls5_c00397{letter-spacing:0.012800pt;}
.ls3_c00397{letter-spacing:0.016032pt;}
.ls2_c00397{letter-spacing:0.019200pt;}
.ls8_c00397{letter-spacing:0.025536pt;}
.ls0_c00397{letter-spacing:0.025600pt;}
.lsa_c00397{letter-spacing:0.029792pt;}
.ls6_c00397{letter-spacing:0.032000pt;}
.lsb_c00397{letter-spacing:0.038304pt;}
.ls9_c00397{letter-spacing:0.042560pt;}
.ls12_c00397{letter-spacing:0.048672pt;}
.ls19_c00397{letter-spacing:0.083200pt;}
.ls17_c00397{letter-spacing:0.120960pt;}
.ls13_c00397{letter-spacing:0.149632pt;}
.ls7_c00397{letter-spacing:57.496320pt;}
.ws2_c00397{word-spacing:-17.339168pt;}
.ws0_c00397{word-spacing:-9.408672pt;}
.ws1_c00397{word-spacing:-8.760960pt;}
.ws18_c00397{word-spacing:-0.240480pt;}
.ws15_c00397{word-spacing:-0.219104pt;}
.ws28_c00397{word-spacing:-0.145824pt;}
.ws9_c00397{word-spacing:-0.069472pt;}
.ws2f_c00397{word-spacing:-0.025536pt;}
.ws31_c00397{word-spacing:-0.021280pt;}
.ws30_c00397{word-spacing:-0.012768pt;}
.ws2e_c00397{word-spacing:-0.008512pt;}
.ws12_c00397{word-spacing:-0.006400pt;}
.ws4_c00397{word-spacing:0.000000pt;}
.ws6_c00397{word-spacing:0.006400pt;}
.ws7_c00397{word-spacing:0.012800pt;}
.ws8_c00397{word-spacing:0.019200pt;}
.ws19_c00397{word-spacing:0.069472pt;}
.ws3_c00397{word-spacing:0.085504pt;}
.ws27_c00397{word-spacing:0.128000pt;}
.ws2a_c00397{word-spacing:0.550400pt;}
.ws29_c00397{word-spacing:0.614400pt;}
.wsd_c00397{word-spacing:1.011200pt;}
.wsc_c00397{word-spacing:1.024000pt;}
.wsa_c00397{word-spacing:1.894400pt;}
.wsb_c00397{word-spacing:1.932800pt;}
.wsf_c00397{word-spacing:2.195200pt;}
.wse_c00397{word-spacing:2.259200pt;}
.ws16_c00397{word-spacing:2.329984pt;}
.ws17_c00397{word-spacing:2.367392pt;}
.ws2c_c00397{word-spacing:2.579200pt;}
.ws2d_c00397{word-spacing:2.617600pt;}
.ws22_c00397{word-spacing:3.232000pt;}
.ws21_c00397{word-spacing:3.251200pt;}
.ws13_c00397{word-spacing:3.265184pt;}
.ws14_c00397{word-spacing:3.281216pt;}
.ws23_c00397{word-spacing:5.408000pt;}
.ws24_c00397{word-spacing:5.472000pt;}
.ws2b_c00397{word-spacing:6.406400pt;}
.ws1a_c00397{word-spacing:6.790400pt;}
.ws1d_c00397{word-spacing:9.612800pt;}
.ws1e_c00397{word-spacing:9.625600pt;}
.ws5_c00397{word-spacing:10.886400pt;}
.ws25_c00397{word-spacing:11.206400pt;}
.ws26_c00397{word-spacing:11.308800pt;}
.ws11_c00397{word-spacing:11.500800pt;}
.ws10_c00397{word-spacing:11.513600pt;}
.ws1b_c00397{word-spacing:18.547200pt;}
.ws1c_c00397{word-spacing:18.707200pt;}
.ws1f_c00397{word-spacing:19.206400pt;}
.ws20_c00397{word-spacing:19.244800pt;}
._2_c00397{margin-left:-3.206400pt;}
._0_c00397{margin-left:-1.068800pt;}
._1_c00397{width:0.960000pt;}
.fs4_c00397{font-size:34.560000pt;}
.fs3_c00397{font-size:37.440000pt;}
.fs6_c00397{font-size:42.560000pt;}
.fs2_c00397{font-size:48.000000pt;}
.fs0_c00397{font-size:53.440000pt;}
.fs1_c00397{font-size:64.000000pt;}
.fs5_c00397{font-size:69.440000pt;}
.y0_c00397{bottom:0.000000pt;}
.y2_c00397{bottom:51.067067pt;}
.y3_c00397{bottom:54.587067pt;}
.y25_c00397{bottom:101.073627pt;}
.y24_c00397{bottom:117.395387pt;}
.y23_c00397{bottom:133.632027pt;}
.y22_c00397{bottom:149.868667pt;}
.y21_c00397{bottom:166.190427pt;}
.y20_c00397{bottom:182.427067pt;}
.y1f_c00397{bottom:195.947067pt;}
.y1e_c00397{bottom:214.347067pt;}
.y1d_c00397{bottom:232.747067pt;}
.y1c_c00397{bottom:267.787067pt;}
.y1b_c00397{bottom:298.427067pt;}
.y1a_c00397{bottom:328.987067pt;}
.y19_c00397{bottom:369.067200pt;}
.y18_c00397{bottom:424.747067pt;}
.y17_c00397{bottom:455.387067pt;}
.y16_c00397{bottom:485.947067pt;}
.y15_c00397{bottom:516.587067pt;}
.y14_c00397{bottom:547.147067pt;}
.y13_c00397{bottom:577.787067pt;}
.y12_c00397{bottom:608.347067pt;}
.y11_c00397{bottom:646.987067pt;}
.y10_c00397{bottom:677.547067pt;}
.yf_c00397{bottom:710.897307pt;}
.ye_c00397{bottom:725.860507pt;}
.yd_c00397{bottom:740.903867pt;}
.yc_c00397{bottom:755.867067pt;}
.yb_c00397{bottom:792.187067pt;}
.ya_c00397{bottom:822.747067pt;}
.y9_c00397{bottom:853.387067pt;}
.y8_c00397{bottom:883.947067pt;}
.y7_c00397{bottom:914.587067pt;}
.y6_c00397{bottom:953.147067pt;}
.y5_c00397{bottom:983.787067pt;}
.y4_c00397{bottom:1014.347067pt;}
.y1_c00397{bottom:1063.867067pt;}
.h2_c00397{height:42.656250pt;}
.h9_c00397{height:44.388750pt;}
.h1_c00397{height:44.724687pt;}
.h6_c00397{height:44.763728pt;}
.h3_c00397{height:50.062500pt;}
.h4_c00397{height:53.562500pt;}
.h5_c00397{height:57.894062pt;}
.h7_c00397{height:57.894596pt;}
.h8_c00397{height:72.423750pt;}
.h0_c00397{height:1122.666667pt;}
.w1_c00397{width:793.333333pt;}
.w0_c00397{width:793.626667pt;}
.x0_c00397{left:0.000000pt;}
.x5_c00397{left:113.440000pt;}
.x6_c00397{left:137.280000pt;}
.x4_c00397{left:160.640000pt;}
.x3_c00397{left:386.880000pt;}
.x2_c00397{left:396.880000pt;}
.x1_c00397{left:443.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3dc6520c8e5d994140e9954c.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_3a3f8e45147f0a448316cf88.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_2f17022f93bde4f7b1d77bb6.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00398;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00398{font-family:ff5_c00398;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_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;}
.v1_c00398{vertical-align:15.840000px;}
.v2_c00398{vertical-align:29.880000px;}
.lsb_c00398{letter-spacing:-0.151200px;}
.ls12_c00398{letter-spacing:-0.057600px;}
.ls15_c00398{letter-spacing:-0.054684px;}
.lse_c00398{letter-spacing:-0.043200px;}
.ls11_c00398{letter-spacing:-0.036000px;}
.ls10_c00398{letter-spacing:-0.021600px;}
.lsd_c00398{letter-spacing:-0.014400px;}
.lsf_c00398{letter-spacing:-0.007200px;}
.ls14_c00398{letter-spacing:0.000000px;}
.ls3_c00398{letter-spacing:0.007200px;}
.ls7_c00398{letter-spacing:0.014400px;}
.ls6_c00398{letter-spacing:0.021600px;}
.ls4_c00398{letter-spacing:0.028800px;}
.lsa_c00398{letter-spacing:0.033516px;}
.ls8_c00398{letter-spacing:0.038304px;}
.ls9_c00398{letter-spacing:0.043092px;}
.ls2_c00398{letter-spacing:0.043200px;}
.ls0_c00398{letter-spacing:0.048096px;}
.lsc_c00398{letter-spacing:0.054756px;}
.ls13_c00398{letter-spacing:0.093600px;}
.ls5_c00398{letter-spacing:72.573480px;}
.ls1_c00398{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00398{word-spacing:-19.530000px;}
.ws3_c00398{word-spacing:-18.007200px;}
.ws1_c00398{word-spacing:-17.942400px;}
.ws0_c00398{word-spacing:-10.584756px;}
.ws25_c00398{word-spacing:-0.093600px;}
.ws14_c00398{word-spacing:-0.039060px;}
.ws2e_c00398{word-spacing:-0.023940px;}
.ws2d_c00398{word-spacing:-0.019152px;}
.ws2f_c00398{word-spacing:-0.014364px;}
.ws5_c00398{word-spacing:0.000000px;}
.ws1b_c00398{word-spacing:0.007200px;}
.ws4_c00398{word-spacing:0.042084px;}
.ws22_c00398{word-spacing:1.425600px;}
.ws20_c00398{word-spacing:1.447200px;}
.ws21_c00398{word-spacing:1.519200px;}
.ws26_c00398{word-spacing:1.792800px;}
.ws11_c00398{word-spacing:2.548800px;}
.ws2a_c00398{word-spacing:3.232800px;}
.ws15_c00398{word-spacing:3.290400px;}
.ws29_c00398{word-spacing:3.297600px;}
.wsd_c00398{word-spacing:3.571200px;}
.wsc_c00398{word-spacing:3.722400px;}
.wse_c00398{word-spacing:3.751200px;}
.ws16_c00398{word-spacing:4.334400px;}
.ws1d_c00398{word-spacing:5.349600px;}
.ws1f_c00398{word-spacing:5.378400px;}
.ws1c_c00398{word-spacing:5.436000px;}
.ws1e_c00398{word-spacing:5.479200px;}
.ws2c_c00398{word-spacing:5.752800px;}
.ws2b_c00398{word-spacing:5.832000px;}
.ws23_c00398{word-spacing:7.524000px;}
.ws24_c00398{word-spacing:7.588800px;}
.ws1a_c00398{word-spacing:8.287200px;}
.ws19_c00398{word-spacing:8.352000px;}
.ws9_c00398{word-spacing:12.196800px;}
.wsa_c00398{word-spacing:12.283200px;}
.ws28_c00398{word-spacing:13.298400px;}
.ws27_c00398{word-spacing:13.406400px;}
.ws18_c00398{word-spacing:20.548800px;}
.ws17_c00398{word-spacing:20.613600px;}
.wsb_c00398{word-spacing:20.916000px;}
.ws6_c00398{word-spacing:24.076800px;}
.ws8_c00398{word-spacing:24.091200px;}
.ws7_c00398{word-spacing:24.112800px;}
.ws12_c00398{word-spacing:26.301600px;}
.ws13_c00398{word-spacing:26.359200px;}
.wsf_c00398{word-spacing:28.159200px;}
.ws10_c00398{word-spacing:28.202400px;}
._0_c00398{margin-left:-1.322640px;}
._1_c00398{width:1.080000px;}
.fc0_c00398{color:rgb(0,0,0);}
.fs3_c00398{font-size:42.120000px;}
.fs5_c00398{font-size:47.880000px;}
.fs2_c00398{font-size:54.000000px;}
.fs0_c00398{font-size:60.120000px;}
.fs1_c00398{font-size:72.000000px;}
.fs4_c00398{font-size:78.120000px;}
.y0_c00398{bottom:0.000000px;}
.y2_c00398{bottom:57.450450px;}
.y20_c00398{bottom:113.702250px;}
.y1f_c00398{bottom:132.064230px;}
.y1e_c00398{bottom:150.330450px;}
.y1d_c00398{bottom:165.540450px;}
.y1c_c00398{bottom:186.240450px;}
.y1b_c00398{bottom:206.940600px;}
.y1a_c00398{bottom:292.530600px;}
.y19_c00398{bottom:326.910600px;}
.y18_c00398{bottom:361.380600px;}
.y17_c00398{bottom:395.760600px;}
.y16_c00398{bottom:430.230600px;}
.y15_c00398{bottom:473.610450px;}
.y14_c00398{bottom:508.080450px;}
.y13_c00398{bottom:542.460450px;}
.y12_c00398{bottom:576.930450px;}
.y11_c00398{bottom:611.310450px;}
.y10_c00398{bottom:654.780450px;}
.yf_c00398{bottom:689.160450px;}
.ye_c00398{bottom:723.630450px;}
.yd_c00398{bottom:758.010450px;}
.yc_c00398{bottom:792.480450px;}
.yb_c00398{bottom:837.480450px;}
.ya_c00398{bottom:900.210450px;}
.y9_c00398{bottom:934.590450px;}
.y8_c00398{bottom:969.060450px;}
.y7_c00398{bottom:1003.440450px;}
.y6_c00398{bottom:1037.910450px;}
.y5_c00398{bottom:1072.290450px;}
.y4_c00398{bottom:1106.760450px;}
.y3_c00398{bottom:1141.140450px;}
.y1_c00398{bottom:1196.850450px;}
.h6_c00398{height:47.988281px;}
.h7_c00398{height:49.937344px;}
.h1_c00398{height:50.315273px;}
.h4_c00398{height:60.257812px;}
.h3_c00398{height:65.130820px;}
.h2_c00398{height:72.160312px;}
.h5_c00398{height:81.476719px;}
.h0_c00398{height:1263.000000px;}
.w1_c00398{width:892.500000px;}
.w0_c00398{width:892.830000px;}
.x0_c00398{left:0.000000px;}
.x1_c00398{left:127.620000px;}
.x2_c00398{left:180.720000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.v1_c00398{vertical-align:14.080000pt;}
.v2_c00398{vertical-align:26.560000pt;}
.lsb_c00398{letter-spacing:-0.134400pt;}
.ls12_c00398{letter-spacing:-0.051200pt;}
.ls15_c00398{letter-spacing:-0.048608pt;}
.lse_c00398{letter-spacing:-0.038400pt;}
.ls11_c00398{letter-spacing:-0.032000pt;}
.ls10_c00398{letter-spacing:-0.019200pt;}
.lsd_c00398{letter-spacing:-0.012800pt;}
.lsf_c00398{letter-spacing:-0.006400pt;}
.ls14_c00398{letter-spacing:0.000000pt;}
.ls3_c00398{letter-spacing:0.006400pt;}
.ls7_c00398{letter-spacing:0.012800pt;}
.ls6_c00398{letter-spacing:0.019200pt;}
.ls4_c00398{letter-spacing:0.025600pt;}
.lsa_c00398{letter-spacing:0.029792pt;}
.ls8_c00398{letter-spacing:0.034048pt;}
.ls9_c00398{letter-spacing:0.038304pt;}
.ls2_c00398{letter-spacing:0.038400pt;}
.ls0_c00398{letter-spacing:0.042752pt;}
.lsc_c00398{letter-spacing:0.048672pt;}
.ls13_c00398{letter-spacing:0.083200pt;}
.ls5_c00398{letter-spacing:64.509760pt;}
.ls1_c00398{letter-spacing:1077.440000pt;}
.ws2_c00398{word-spacing:-17.360000pt;}
.ws3_c00398{word-spacing:-16.006400pt;}
.ws1_c00398{word-spacing:-15.948800pt;}
.ws0_c00398{word-spacing:-9.408672pt;}
.ws25_c00398{word-spacing:-0.083200pt;}
.ws14_c00398{word-spacing:-0.034720pt;}
.ws2e_c00398{word-spacing:-0.021280pt;}
.ws2d_c00398{word-spacing:-0.017024pt;}
.ws2f_c00398{word-spacing:-0.012768pt;}
.ws5_c00398{word-spacing:0.000000pt;}
.ws1b_c00398{word-spacing:0.006400pt;}
.ws4_c00398{word-spacing:0.037408pt;}
.ws22_c00398{word-spacing:1.267200pt;}
.ws20_c00398{word-spacing:1.286400pt;}
.ws21_c00398{word-spacing:1.350400pt;}
.ws26_c00398{word-spacing:1.593600pt;}
.ws11_c00398{word-spacing:2.265600pt;}
.ws2a_c00398{word-spacing:2.873600pt;}
.ws15_c00398{word-spacing:2.924800pt;}
.ws29_c00398{word-spacing:2.931200pt;}
.wsd_c00398{word-spacing:3.174400pt;}
.wsc_c00398{word-spacing:3.308800pt;}
.wse_c00398{word-spacing:3.334400pt;}
.ws16_c00398{word-spacing:3.852800pt;}
.ws1d_c00398{word-spacing:4.755200pt;}
.ws1f_c00398{word-spacing:4.780800pt;}
.ws1c_c00398{word-spacing:4.832000pt;}
.ws1e_c00398{word-spacing:4.870400pt;}
.ws2c_c00398{word-spacing:5.113600pt;}
.ws2b_c00398{word-spacing:5.184000pt;}
.ws23_c00398{word-spacing:6.688000pt;}
.ws24_c00398{word-spacing:6.745600pt;}
.ws1a_c00398{word-spacing:7.366400pt;}
.ws19_c00398{word-spacing:7.424000pt;}
.ws9_c00398{word-spacing:10.841600pt;}
.wsa_c00398{word-spacing:10.918400pt;}
.ws28_c00398{word-spacing:11.820800pt;}
.ws27_c00398{word-spacing:11.916800pt;}
.ws18_c00398{word-spacing:18.265600pt;}
.ws17_c00398{word-spacing:18.323200pt;}
.wsb_c00398{word-spacing:18.592000pt;}
.ws6_c00398{word-spacing:21.401600pt;}
.ws8_c00398{word-spacing:21.414400pt;}
.ws7_c00398{word-spacing:21.433600pt;}
.ws12_c00398{word-spacing:23.379200pt;}
.ws13_c00398{word-spacing:23.430400pt;}
.wsf_c00398{word-spacing:25.030400pt;}
.ws10_c00398{word-spacing:25.068800pt;}
._0_c00398{margin-left:-1.175680pt;}
._1_c00398{width:0.960000pt;}
.fs3_c00398{font-size:37.440000pt;}
.fs5_c00398{font-size:42.560000pt;}
.fs2_c00398{font-size:48.000000pt;}
.fs0_c00398{font-size:53.440000pt;}
.fs1_c00398{font-size:64.000000pt;}
.fs4_c00398{font-size:69.440000pt;}
.y0_c00398{bottom:0.000000pt;}
.y2_c00398{bottom:51.067067pt;}
.y20_c00398{bottom:101.068667pt;}
.y1f_c00398{bottom:117.390427pt;}
.y1e_c00398{bottom:133.627067pt;}
.y1d_c00398{bottom:147.147067pt;}
.y1c_c00398{bottom:165.547067pt;}
.y1b_c00398{bottom:183.947200pt;}
.y1a_c00398{bottom:260.027200pt;}
.y19_c00398{bottom:290.587200pt;}
.y18_c00398{bottom:321.227200pt;}
.y17_c00398{bottom:351.787200pt;}
.y16_c00398{bottom:382.427200pt;}
.y15_c00398{bottom:420.987067pt;}
.y14_c00398{bottom:451.627067pt;}
.y13_c00398{bottom:482.187067pt;}
.y12_c00398{bottom:512.827067pt;}
.y11_c00398{bottom:543.387067pt;}
.y10_c00398{bottom:582.027067pt;}
.yf_c00398{bottom:612.587067pt;}
.ye_c00398{bottom:643.227067pt;}
.yd_c00398{bottom:673.787067pt;}
.yc_c00398{bottom:704.427067pt;}
.yb_c00398{bottom:744.427067pt;}
.ya_c00398{bottom:800.187067pt;}
.y9_c00398{bottom:830.747067pt;}
.y8_c00398{bottom:861.387067pt;}
.y7_c00398{bottom:891.947067pt;}
.y6_c00398{bottom:922.587067pt;}
.y5_c00398{bottom:953.147067pt;}
.y4_c00398{bottom:983.787067pt;}
.y3_c00398{bottom:1014.347067pt;}
.y1_c00398{bottom:1063.867067pt;}
.h6_c00398{height:42.656250pt;}
.h7_c00398{height:44.388750pt;}
.h1_c00398{height:44.724687pt;}
.h4_c00398{height:53.562500pt;}
.h3_c00398{height:57.894063pt;}
.h2_c00398{height:64.142500pt;}
.h5_c00398{height:72.423750pt;}
.h0_c00398{height:1122.666667pt;}
.w1_c00398{width:793.333333pt;}
.w0_c00398{width:793.626667pt;}
.x0_c00398{left:0.000000pt;}
.x1_c00398{left:113.440000pt;}
.x2_c00398{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_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_f691da5c60eb6c425f618df6.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00399;src:url('chunks/assets/font_1a5660d1f8044f7a80f77fc2.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00399;src:url('chunks/assets/font_7a968836beda37134a6a32bb.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00399;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00399{font-family:ff5_c00399;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_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;}
.v2_c00399{vertical-align:15.238080px;}
.v1_c00399{vertical-align:29.880000px;}
.ls12_c00399{letter-spacing:-0.151200px;}
.ls1f_c00399{letter-spacing:-0.078156px;}
.ls1a_c00399{letter-spacing:-0.062496px;}
.ls1e_c00399{letter-spacing:-0.060120px;}
.ls16_c00399{letter-spacing:-0.043200px;}
.ls19_c00399{letter-spacing:-0.031248px;}
.ls24_c00399{letter-spacing:-0.028800px;}
.ls1d_c00399{letter-spacing:-0.024048px;}
.ls1b_c00399{letter-spacing:-0.021600px;}
.ls20_c00399{letter-spacing:-0.018036px;}
.ls14_c00399{letter-spacing:-0.014400px;}
.ls21_c00399{letter-spacing:-0.012024px;}
.ls17_c00399{letter-spacing:-0.007200px;}
.ls10_c00399{letter-spacing:-0.006012px;}
.ls11_c00399{letter-spacing:0.000000px;}
.ls8_c00399{letter-spacing:0.006012px;}
.ls1_c00399{letter-spacing:0.007200px;}
.ls0_c00399{letter-spacing:0.014400px;}
.ls6_c00399{letter-spacing:0.018036px;}
.ls13_c00399{letter-spacing:0.021600px;}
.lsd_c00399{letter-spacing:0.028728px;}
.ls9_c00399{letter-spacing:0.030060px;}
.lsf_c00399{letter-spacing:0.033516px;}
.ls18_c00399{letter-spacing:0.036000px;}
.lse_c00399{letter-spacing:0.038304px;}
.lsc_c00399{letter-spacing:0.043092px;}
.lsb_c00399{letter-spacing:0.047880px;}
.ls7_c00399{letter-spacing:0.048096px;}
.ls3_c00399{letter-spacing:0.054108px;}
.ls15_c00399{letter-spacing:0.054756px;}
.ls4_c00399{letter-spacing:0.066132px;}
.lsa_c00399{letter-spacing:0.067032px;}
.ls5_c00399{letter-spacing:0.078156px;}
.ls1c_c00399{letter-spacing:0.093600px;}
.ls22_c00399{letter-spacing:0.136080px;}
.ls23_c00399{letter-spacing:0.168336px;}
.ls2_c00399{letter-spacing:64.683360px;}
.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:-19.498752px;}
.ws0_c00399{word-spacing:-10.584756px;}
.ws2_c00399{word-spacing:-9.856080px;}
.ws18_c00399{word-spacing:-0.093600px;}
.wsc_c00399{word-spacing:-0.036000px;}
.wsd_c00399{word-spacing:-0.031248px;}
.ws35_c00399{word-spacing:-0.019152px;}
.ws34_c00399{word-spacing:-0.009576px;}
.ws31_c00399{word-spacing:-0.007200px;}
.ws4_c00399{word-spacing:0.000000px;}
.wse_c00399{word-spacing:0.007200px;}
.ws19_c00399{word-spacing:0.036072px;}
.ws28_c00399{word-spacing:0.060120px;}
.wsf_c00399{word-spacing:0.064800px;}
.ws1f_c00399{word-spacing:0.084168px;}
.ws3_c00399{word-spacing:0.096192px;}
.ws27_c00399{word-spacing:0.102204px;}
.ws20_c00399{word-spacing:0.114228px;}
.ws32_c00399{word-spacing:0.670320px;}
.ws33_c00399{word-spacing:0.689472px;}
.ws10_c00399{word-spacing:0.712800px;}
.ws2d_c00399{word-spacing:0.748800px;}
.ws29_c00399{word-spacing:1.432800px;}
.ws1c_c00399{word-spacing:2.591172px;}
.ws1d_c00399{word-spacing:2.615220px;}
.ws2a_c00399{word-spacing:3.247200px;}
.ws2b_c00399{word-spacing:3.283200px;}
.ws14_c00399{word-spacing:3.535200px;}
.ws15_c00399{word-spacing:3.549600px;}
.ws1b_c00399{word-spacing:3.613212px;}
.ws1a_c00399{word-spacing:3.625236px;}
.ws21_c00399{word-spacing:4.112208px;}
.ws22_c00399{word-spacing:4.130244px;}
.ws1e_c00399{word-spacing:4.358700px;}
.ws24_c00399{word-spacing:5.122224px;}
.ws23_c00399{word-spacing:5.146272px;}
.ws26_c00399{word-spacing:7.593156px;}
.ws25_c00399{word-spacing:7.629228px;}
.ws5_c00399{word-spacing:7.905600px;}
.ws2c_c00399{word-spacing:7.941600px;}
.ws6_c00399{word-spacing:7.956000px;}
.wsb_c00399{word-spacing:8.287200px;}
.wsa_c00399{word-spacing:8.337600px;}
.ws11_c00399{word-spacing:8.654400px;}
.ws7_c00399{word-spacing:9.734400px;}
.ws16_c00399{word-spacing:11.167200px;}
.ws17_c00399{word-spacing:11.253600px;}
.ws2e_c00399{word-spacing:15.127200px;}
.ws2f_c00399{word-spacing:15.156000px;}
.ws30_c00399{word-spacing:16.264800px;}
.ws8_c00399{word-spacing:30.988800px;}
.ws9_c00399{word-spacing:31.003200px;}
.ws12_c00399{word-spacing:32.760000px;}
.ws13_c00399{word-spacing:32.860800px;}
._0_c00399{margin-left:-1.202400px;}
._1_c00399{width:1.008000px;}
.fc0_c00399{color:rgb(0,0,0);}
.fs5_c00399{font-size:38.880000px;}
.fs3_c00399{font-size:42.120000px;}
.fs6_c00399{font-size:47.880000px;}
.fs2_c00399{font-size:54.000000px;}
.fs0_c00399{font-size:60.120000px;}
.fs1_c00399{font-size:72.000000px;}
.fs4_c00399{font-size:78.120000px;}
.y0_c00399{bottom:0.000000px;}
.y2_c00399{bottom:57.450450px;}
.y3_c00399{bottom:61.410450px;}
.y28_c00399{bottom:113.704920px;}
.y27_c00399{bottom:132.066900px;}
.y26_c00399{bottom:150.333120px;}
.y25_c00399{bottom:168.599340px;}
.y24_c00399{bottom:182.460600px;}
.y23_c00399{bottom:197.670450px;}
.y22_c00399{bottom:218.370450px;}
.y21_c00399{bottom:239.070600px;}
.y20_c00399{bottom:269.310600px;}
.y1f_c00399{bottom:303.780600px;}
.y1e_c00399{bottom:338.160600px;}
.y1d_c00399{bottom:372.630600px;}
.y1c_c00399{bottom:407.010600px;}
.y1b_c00399{bottom:441.480600px;}
.y1a_c00399{bottom:475.860600px;}
.y19_c00399{bottom:513.360930px;}
.y18_c00399{bottom:530.194530px;}
.y17_c00399{bottom:547.118310px;}
.y16_c00399{bottom:563.951910px;}
.y15_c00399{bottom:580.875690px;}
.y14_c00399{bottom:597.709290px;}
.y13_c00399{bottom:614.633070px;}
.y12_c00399{bottom:631.466670px;}
.y11_c00399{bottom:648.390450px;}
.y10_c00399{bottom:689.160450px;}
.yf_c00399{bottom:723.630450px;}
.ye_c00399{bottom:758.010450px;}
.yd_c00399{bottom:792.480450px;}
.yc_c00399{bottom:826.860450px;}
.yb_c00399{bottom:861.330450px;}
.ya_c00399{bottom:895.710450px;}
.y9_c00399{bottom:940.800450px;}
.y8_c00399{bottom:1003.440450px;}
.y7_c00399{bottom:1037.910450px;}
.y6_c00399{bottom:1072.290450px;}
.y5_c00399{bottom:1106.760450px;}
.y4_c00399{bottom:1141.140450px;}
.y1_c00399{bottom:1196.850450px;}
.h2_c00399{height:47.988281px;}
.h8_c00399{height:49.937344px;}
.h1_c00399{height:50.315273px;}
.h7_c00399{height:50.433353px;}
.h3_c00399{height:56.320312px;}
.h4_c00399{height:60.257812px;}
.h5_c00399{height:65.130820px;}
.h6_c00399{height:81.476719px;}
.h0_c00399{height:1263.000000px;}
.w1_c00399{width:892.500000px;}
.w0_c00399{width:892.830000px;}
.x0_c00399{left:0.000000px;}
.x5_c00399{left:127.620000px;}
.x7_c00399{left:141.110190px;}
.x6_c00399{left:168.030000px;}
.x4_c00399{left:180.810000px;}
.x3_c00399{left:435.240000px;}
.x2_c00399{left:446.490000px;}
.x1_c00399{left:499.050000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.v2_c00399{vertical-align:13.544960pt;}
.v1_c00399{vertical-align:26.560000pt;}
.ls12_c00399{letter-spacing:-0.134400pt;}
.ls1f_c00399{letter-spacing:-0.069472pt;}
.ls1a_c00399{letter-spacing:-0.055552pt;}
.ls1e_c00399{letter-spacing:-0.053440pt;}
.ls16_c00399{letter-spacing:-0.038400pt;}
.ls19_c00399{letter-spacing:-0.027776pt;}
.ls24_c00399{letter-spacing:-0.025600pt;}
.ls1d_c00399{letter-spacing:-0.021376pt;}
.ls1b_c00399{letter-spacing:-0.019200pt;}
.ls20_c00399{letter-spacing:-0.016032pt;}
.ls14_c00399{letter-spacing:-0.012800pt;}
.ls21_c00399{letter-spacing:-0.010688pt;}
.ls17_c00399{letter-spacing:-0.006400pt;}
.ls10_c00399{letter-spacing:-0.005344pt;}
.ls11_c00399{letter-spacing:0.000000pt;}
.ls8_c00399{letter-spacing:0.005344pt;}
.ls1_c00399{letter-spacing:0.006400pt;}
.ls0_c00399{letter-spacing:0.012800pt;}
.ls6_c00399{letter-spacing:0.016032pt;}
.ls13_c00399{letter-spacing:0.019200pt;}
.lsd_c00399{letter-spacing:0.025536pt;}
.ls9_c00399{letter-spacing:0.026720pt;}
.lsf_c00399{letter-spacing:0.029792pt;}
.ls18_c00399{letter-spacing:0.032000pt;}
.lse_c00399{letter-spacing:0.034048pt;}
.lsc_c00399{letter-spacing:0.038304pt;}
.lsb_c00399{letter-spacing:0.042560pt;}
.ls7_c00399{letter-spacing:0.042752pt;}
.ls3_c00399{letter-spacing:0.048096pt;}
.ls15_c00399{letter-spacing:0.048672pt;}
.ls4_c00399{letter-spacing:0.058784pt;}
.lsa_c00399{letter-spacing:0.059584pt;}
.ls5_c00399{letter-spacing:0.069472pt;}
.ls1c_c00399{letter-spacing:0.083200pt;}
.ls22_c00399{letter-spacing:0.120960pt;}
.ls23_c00399{letter-spacing:0.149632pt;}
.ls2_c00399{letter-spacing:57.496320pt;}
.ws1_c00399{word-spacing:-17.332224pt;}
.ws0_c00399{word-spacing:-9.408672pt;}
.ws2_c00399{word-spacing:-8.760960pt;}
.ws18_c00399{word-spacing:-0.083200pt;}
.wsc_c00399{word-spacing:-0.032000pt;}
.wsd_c00399{word-spacing:-0.027776pt;}
.ws35_c00399{word-spacing:-0.017024pt;}
.ws34_c00399{word-spacing:-0.008512pt;}
.ws31_c00399{word-spacing:-0.006400pt;}
.ws4_c00399{word-spacing:0.000000pt;}
.wse_c00399{word-spacing:0.006400pt;}
.ws19_c00399{word-spacing:0.032064pt;}
.ws28_c00399{word-spacing:0.053440pt;}
.wsf_c00399{word-spacing:0.057600pt;}
.ws1f_c00399{word-spacing:0.074816pt;}
.ws3_c00399{word-spacing:0.085504pt;}
.ws27_c00399{word-spacing:0.090848pt;}
.ws20_c00399{word-spacing:0.101536pt;}
.ws32_c00399{word-spacing:0.595840pt;}
.ws33_c00399{word-spacing:0.612864pt;}
.ws10_c00399{word-spacing:0.633600pt;}
.ws2d_c00399{word-spacing:0.665600pt;}
.ws29_c00399{word-spacing:1.273600pt;}
.ws1c_c00399{word-spacing:2.303264pt;}
.ws1d_c00399{word-spacing:2.324640pt;}
.ws2a_c00399{word-spacing:2.886400pt;}
.ws2b_c00399{word-spacing:2.918400pt;}
.ws14_c00399{word-spacing:3.142400pt;}
.ws15_c00399{word-spacing:3.155200pt;}
.ws1b_c00399{word-spacing:3.211744pt;}
.ws1a_c00399{word-spacing:3.222432pt;}
.ws21_c00399{word-spacing:3.655296pt;}
.ws22_c00399{word-spacing:3.671328pt;}
.ws1e_c00399{word-spacing:3.874400pt;}
.ws24_c00399{word-spacing:4.553088pt;}
.ws23_c00399{word-spacing:4.574464pt;}
.ws26_c00399{word-spacing:6.749472pt;}
.ws25_c00399{word-spacing:6.781536pt;}
.ws5_c00399{word-spacing:7.027200pt;}
.ws2c_c00399{word-spacing:7.059200pt;}
.ws6_c00399{word-spacing:7.072000pt;}
.wsb_c00399{word-spacing:7.366400pt;}
.wsa_c00399{word-spacing:7.411200pt;}
.ws11_c00399{word-spacing:7.692800pt;}
.ws7_c00399{word-spacing:8.652800pt;}
.ws16_c00399{word-spacing:9.926400pt;}
.ws17_c00399{word-spacing:10.003200pt;}
.ws2e_c00399{word-spacing:13.446400pt;}
.ws2f_c00399{word-spacing:13.472000pt;}
.ws30_c00399{word-spacing:14.457600pt;}
.ws8_c00399{word-spacing:27.545600pt;}
.ws9_c00399{word-spacing:27.558400pt;}
.ws12_c00399{word-spacing:29.120000pt;}
.ws13_c00399{word-spacing:29.209600pt;}
._0_c00399{margin-left:-1.068800pt;}
._1_c00399{width:0.896000pt;}
.fs5_c00399{font-size:34.560000pt;}
.fs3_c00399{font-size:37.440000pt;}
.fs6_c00399{font-size:42.560000pt;}
.fs2_c00399{font-size:48.000000pt;}
.fs0_c00399{font-size:53.440000pt;}
.fs1_c00399{font-size:64.000000pt;}
.fs4_c00399{font-size:69.440000pt;}
.y0_c00399{bottom:0.000000pt;}
.y2_c00399{bottom:51.067067pt;}
.y3_c00399{bottom:54.587067pt;}
.y28_c00399{bottom:101.071040pt;}
.y27_c00399{bottom:117.392800pt;}
.y26_c00399{bottom:133.629440pt;}
.y25_c00399{bottom:149.866080pt;}
.y24_c00399{bottom:162.187200pt;}
.y23_c00399{bottom:175.707067pt;}
.y22_c00399{bottom:194.107067pt;}
.y21_c00399{bottom:212.507200pt;}
.y20_c00399{bottom:239.387200pt;}
.y1f_c00399{bottom:270.027200pt;}
.y1e_c00399{bottom:300.587200pt;}
.y1d_c00399{bottom:331.227200pt;}
.y1c_c00399{bottom:361.787200pt;}
.y1b_c00399{bottom:392.427200pt;}
.y1a_c00399{bottom:422.987200pt;}
.y19_c00399{bottom:456.320827pt;}
.y18_c00399{bottom:471.284027pt;}
.y17_c00399{bottom:486.327387pt;}
.y16_c00399{bottom:501.290587pt;}
.y15_c00399{bottom:516.333947pt;}
.y14_c00399{bottom:531.297147pt;}
.y13_c00399{bottom:546.340507pt;}
.y12_c00399{bottom:561.303707pt;}
.y11_c00399{bottom:576.347067pt;}
.y10_c00399{bottom:612.587067pt;}
.yf_c00399{bottom:643.227067pt;}
.ye_c00399{bottom:673.787067pt;}
.yd_c00399{bottom:704.427067pt;}
.yc_c00399{bottom:734.987067pt;}
.yb_c00399{bottom:765.627067pt;}
.ya_c00399{bottom:796.187067pt;}
.y9_c00399{bottom:836.267067pt;}
.y8_c00399{bottom:891.947067pt;}
.y7_c00399{bottom:922.587067pt;}
.y6_c00399{bottom:953.147067pt;}
.y5_c00399{bottom:983.787067pt;}
.y4_c00399{bottom:1014.347067pt;}
.y1_c00399{bottom:1063.867067pt;}
.h2_c00399{height:42.656250pt;}
.h8_c00399{height:44.388750pt;}
.h1_c00399{height:44.724687pt;}
.h7_c00399{height:44.829648pt;}
.h3_c00399{height:50.062500pt;}
.h4_c00399{height:53.562500pt;}
.h5_c00399{height:57.894062pt;}
.h6_c00399{height:72.423750pt;}
.h0_c00399{height:1122.666667pt;}
.w1_c00399{width:793.333333pt;}
.w0_c00399{width:793.626667pt;}
.x0_c00399{left:0.000000pt;}
.x5_c00399{left:113.440000pt;}
.x7_c00399{left:125.431280pt;}
.x6_c00399{left:149.360000pt;}
.x4_c00399{left:160.720000pt;}
.x3_c00399{left:386.880000pt;}
.x2_c00399{left:396.880000pt;}
.x1_c00399{left:443.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cf23059e372e4d74c490017a.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_6386f57ecc747cfe99d2f830.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;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_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;}
.v1_c00400{vertical-align:15.840000px;}
.ls1f_c00400{letter-spacing:-0.264528px;}
.ls10_c00400{letter-spacing:-0.151200px;}
.ls13_c00400{letter-spacing:-0.036072px;}
.ls1c_c00400{letter-spacing:-0.028800px;}
.ls16_c00400{letter-spacing:-0.024048px;}
.ls19_c00400{letter-spacing:-0.021600px;}
.ls12_c00400{letter-spacing:-0.014400px;}
.ls1a_c00400{letter-spacing:-0.007200px;}
.ls15_c00400{letter-spacing:-0.006012px;}
.ls14_c00400{letter-spacing:0.000000px;}
.ls4_c00400{letter-spacing:0.006012px;}
.lsc_c00400{letter-spacing:0.007200px;}
.ls3_c00400{letter-spacing:0.012024px;}
.ls2_c00400{letter-spacing:0.014400px;}
.ls6_c00400{letter-spacing:0.018036px;}
.ls1b_c00400{letter-spacing:0.021600px;}
.lse_c00400{letter-spacing:0.023940px;}
.lsd_c00400{letter-spacing:0.024048px;}
.lsf_c00400{letter-spacing:0.028728px;}
.ls11_c00400{letter-spacing:0.036000px;}
.ls7_c00400{letter-spacing:0.036072px;}
.ls5_c00400{letter-spacing:0.042084px;}
.ls0_c00400{letter-spacing:0.048096px;}
.ls9_c00400{letter-spacing:0.054108px;}
.lsb_c00400{letter-spacing:0.060120px;}
.ls8_c00400{letter-spacing:0.066132px;}
.lsa_c00400{letter-spacing:0.078156px;}
.ls17_c00400{letter-spacing:0.136080px;}
.ls18_c00400{letter-spacing:0.168336px;}
.ls1e_c00400{letter-spacing:3.330648px;}
.ls1d_c00400{letter-spacing:3.691368px;}
.ls1_c00400{letter-spacing:1212.120000px;}
.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:-15.030000px;}
.ws0_c00400{word-spacing:-9.856080px;}
.ws32_c00400{word-spacing:-0.336672px;}
.ws36_c00400{word-spacing:-0.270540px;}
.ws3c_c00400{word-spacing:-0.009576px;}
.ws3b_c00400{word-spacing:-0.004788px;}
.ws3_c00400{word-spacing:0.000000px;}
.ws2f_c00400{word-spacing:0.014400px;}
.ws11_c00400{word-spacing:0.024048px;}
.ws1f_c00400{word-spacing:0.036000px;}
.ws21_c00400{word-spacing:0.036072px;}
.ws2_c00400{word-spacing:0.042084px;}
.wsb_c00400{word-spacing:0.048096px;}
.ws6_c00400{word-spacing:0.057600px;}
.ws20_c00400{word-spacing:0.066132px;}
.ws22_c00400{word-spacing:0.084168px;}
.ws10_c00400{word-spacing:0.090180px;}
.ws1b_c00400{word-spacing:0.114228px;}
.ws13_c00400{word-spacing:0.733464px;}
.ws12_c00400{word-spacing:0.757512px;}
.ws1a_c00400{word-spacing:1.112220px;}
.ws14_c00400{word-spacing:1.166328px;}
.ws15_c00400{word-spacing:1.478952px;}
.ws18_c00400{word-spacing:1.527048px;}
.ws39_c00400{word-spacing:1.875744px;}
.ws3a_c00400{word-spacing:2.152296px;}
.ws38_c00400{word-spacing:2.200392px;}
.ws33_c00400{word-spacing:2.567124px;}
.ws23_c00400{word-spacing:2.921832px;}
.ws7_c00400{word-spacing:2.957904px;}
.ws24_c00400{word-spacing:2.975940px;}
.ws25_c00400{word-spacing:2.993976px;}
.ws1c_c00400{word-spacing:3.168000px;}
.ws2d_c00400{word-spacing:3.189600px;}
.ws1d_c00400{word-spacing:3.232800px;}
.ws2c_c00400{word-spacing:3.254400px;}
.ws8_c00400{word-spacing:3.324636px;}
.ws37_c00400{word-spacing:3.366720px;}
.wse_c00400{word-spacing:4.016016px;}
.wsc_c00400{word-spacing:4.370724px;}
.wsd_c00400{word-spacing:4.388760px;}
.wsf_c00400{word-spacing:4.448880px;}
.ws5_c00400{word-spacing:4.694400px;}
.ws28_c00400{word-spacing:4.701600px;}
.ws4_c00400{word-spacing:4.716000px;}
.ws29_c00400{word-spacing:5.040000px;}
.ws2a_c00400{word-spacing:5.241600px;}
.ws2b_c00400{word-spacing:5.256000px;}
.ws30_c00400{word-spacing:6.199200px;}
.ws31_c00400{word-spacing:6.235200px;}
.ws17_c00400{word-spacing:6.925824px;}
.ws16_c00400{word-spacing:6.937848px;}
.ws34_c00400{word-spacing:7.268508px;}
.ws35_c00400{word-spacing:7.298568px;}
.ws1e_c00400{word-spacing:10.461600px;}
.ws26_c00400{word-spacing:12.306564px;}
.ws27_c00400{word-spacing:12.312576px;}
.ws19_c00400{word-spacing:14.068080px;}
.ws9_c00400{word-spacing:15.522984px;}
.wsa_c00400{word-spacing:15.559056px;}
.ws2e_c00400{word-spacing:18.007200px;}
._3_c00400{margin-left:-4.689360px;}
._2_c00400{margin-left:-3.547080px;}
._4_c00400{margin-left:-2.525040px;}
._0_c00400{margin-left:-1.322640px;}
._1_c00400{width:1.082160px;}
.fc0_c00400{color:rgb(0,0,0);}
.fs3_c00400{font-size:38.880000px;}
.fs4_c00400{font-size:47.880000px;}
.fs2_c00400{font-size:54.000000px;}
.fs0_c00400{font-size:60.120000px;}
.fs1_c00400{font-size:72.000000px;}
.y0_c00400{bottom:0.000000px;}
.y2_c00400{bottom:57.450450px;}
.y2e_c00400{bottom:113.698470px;}
.y2d_c00400{bottom:132.060450px;}
.y2c_c00400{bottom:147.270450px;}
.y2b_c00400{bottom:167.970450px;}
.y2a_c00400{bottom:188.670450px;}
.y29_c00400{bottom:219.874530px;}
.y28_c00400{bottom:236.798310px;}
.y27_c00400{bottom:253.631910px;}
.y26_c00400{bottom:270.555690px;}
.y25_c00400{bottom:287.389290px;}
.y24_c00400{bottom:304.313070px;}
.y23_c00400{bottom:321.146670px;}
.y22_c00400{bottom:338.070450px;}
.y21_c00400{bottom:378.840450px;}
.y20_c00400{bottom:413.310450px;}
.y1f_c00400{bottom:456.690450px;}
.y1e_c00400{bottom:491.160450px;}
.y1d_c00400{bottom:525.540450px;}
.y1c_c00400{bottom:560.010450px;}
.y1b_c00400{bottom:594.390450px;}
.y1a_c00400{bottom:631.902090px;}
.y19_c00400{bottom:648.735690px;}
.y18_c00400{bottom:665.659470px;}
.y17_c00400{bottom:682.493070px;}
.y16_c00400{bottom:699.416850px;}
.y15_c00400{bottom:716.250450px;}
.y14_c00400{bottom:757.110450px;}
.y13_c00400{bottom:791.490450px;}
.y12_c00400{bottom:825.960450px;}
.y11_c00400{bottom:863.356170px;}
.y10_c00400{bottom:880.279950px;}
.yf_c00400{bottom:897.113550px;}
.ye_c00400{bottom:914.037330px;}
.yd_c00400{bottom:930.870930px;}
.yc_c00400{bottom:947.794710px;}
.yb_c00400{bottom:964.628310px;}
.ya_c00400{bottom:981.552090px;}
.y9_c00400{bottom:998.385690px;}
.y8_c00400{bottom:1015.309470px;}
.y7_c00400{bottom:1032.143070px;}
.y6_c00400{bottom:1049.066850px;}
.y5_c00400{bottom:1065.900450px;}
.y4_c00400{bottom:1106.760450px;}
.y3_c00400{bottom:1141.140450px;}
.y1_c00400{bottom:1196.850450px;}
.h6_c00400{height:47.988281px;}
.h7_c00400{height:49.937344px;}
.h1_c00400{height:50.315273px;}
.h5_c00400{height:50.388713px;}
.h4_c00400{height:50.492393px;}
.h3_c00400{height:60.257812px;}
.h2_c00400{height:72.160312px;}
.h0_c00400{height:1263.000000px;}
.w1_c00400{width:892.500000px;}
.w0_c00400{width:892.830000px;}
.x0_c00400{left:0.000000px;}
.x1_c00400{left:127.620000px;}
.x3_c00400{left:154.440000px;}
.x2_c00400{left:180.720000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.v1_c00400{vertical-align:14.080000pt;}
.ls1f_c00400{letter-spacing:-0.235136pt;}
.ls10_c00400{letter-spacing:-0.134400pt;}
.ls13_c00400{letter-spacing:-0.032064pt;}
.ls1c_c00400{letter-spacing:-0.025600pt;}
.ls16_c00400{letter-spacing:-0.021376pt;}
.ls19_c00400{letter-spacing:-0.019200pt;}
.ls12_c00400{letter-spacing:-0.012800pt;}
.ls1a_c00400{letter-spacing:-0.006400pt;}
.ls15_c00400{letter-spacing:-0.005344pt;}
.ls14_c00400{letter-spacing:0.000000pt;}
.ls4_c00400{letter-spacing:0.005344pt;}
.lsc_c00400{letter-spacing:0.006400pt;}
.ls3_c00400{letter-spacing:0.010688pt;}
.ls2_c00400{letter-spacing:0.012800pt;}
.ls6_c00400{letter-spacing:0.016032pt;}
.ls1b_c00400{letter-spacing:0.019200pt;}
.lse_c00400{letter-spacing:0.021280pt;}
.lsd_c00400{letter-spacing:0.021376pt;}
.lsf_c00400{letter-spacing:0.025536pt;}
.ls11_c00400{letter-spacing:0.032000pt;}
.ls7_c00400{letter-spacing:0.032064pt;}
.ls5_c00400{letter-spacing:0.037408pt;}
.ls0_c00400{letter-spacing:0.042752pt;}
.ls9_c00400{letter-spacing:0.048096pt;}
.lsb_c00400{letter-spacing:0.053440pt;}
.ls8_c00400{letter-spacing:0.058784pt;}
.lsa_c00400{letter-spacing:0.069472pt;}
.ls17_c00400{letter-spacing:0.120960pt;}
.ls18_c00400{letter-spacing:0.149632pt;}
.ls1e_c00400{letter-spacing:2.960576pt;}
.ls1d_c00400{letter-spacing:3.281216pt;}
.ls1_c00400{letter-spacing:1077.440000pt;}
.ws1_c00400{word-spacing:-13.360000pt;}
.ws0_c00400{word-spacing:-8.760960pt;}
.ws32_c00400{word-spacing:-0.299264pt;}
.ws36_c00400{word-spacing:-0.240480pt;}
.ws3c_c00400{word-spacing:-0.008512pt;}
.ws3b_c00400{word-spacing:-0.004256pt;}
.ws3_c00400{word-spacing:0.000000pt;}
.ws2f_c00400{word-spacing:0.012800pt;}
.ws11_c00400{word-spacing:0.021376pt;}
.ws1f_c00400{word-spacing:0.032000pt;}
.ws21_c00400{word-spacing:0.032064pt;}
.ws2_c00400{word-spacing:0.037408pt;}
.wsb_c00400{word-spacing:0.042752pt;}
.ws6_c00400{word-spacing:0.051200pt;}
.ws20_c00400{word-spacing:0.058784pt;}
.ws22_c00400{word-spacing:0.074816pt;}
.ws10_c00400{word-spacing:0.080160pt;}
.ws1b_c00400{word-spacing:0.101536pt;}
.ws13_c00400{word-spacing:0.651968pt;}
.ws12_c00400{word-spacing:0.673344pt;}
.ws1a_c00400{word-spacing:0.988640pt;}
.ws14_c00400{word-spacing:1.036736pt;}
.ws15_c00400{word-spacing:1.314624pt;}
.ws18_c00400{word-spacing:1.357376pt;}
.ws39_c00400{word-spacing:1.667328pt;}
.ws3a_c00400{word-spacing:1.913152pt;}
.ws38_c00400{word-spacing:1.955904pt;}
.ws33_c00400{word-spacing:2.281888pt;}
.ws23_c00400{word-spacing:2.597184pt;}
.ws7_c00400{word-spacing:2.629248pt;}
.ws24_c00400{word-spacing:2.645280pt;}
.ws25_c00400{word-spacing:2.661312pt;}
.ws1c_c00400{word-spacing:2.816000pt;}
.ws2d_c00400{word-spacing:2.835200pt;}
.ws1d_c00400{word-spacing:2.873600pt;}
.ws2c_c00400{word-spacing:2.892800pt;}
.ws8_c00400{word-spacing:2.955232pt;}
.ws37_c00400{word-spacing:2.992640pt;}
.wse_c00400{word-spacing:3.569792pt;}
.wsc_c00400{word-spacing:3.885088pt;}
.wsd_c00400{word-spacing:3.901120pt;}
.wsf_c00400{word-spacing:3.954560pt;}
.ws5_c00400{word-spacing:4.172800pt;}
.ws28_c00400{word-spacing:4.179200pt;}
.ws4_c00400{word-spacing:4.192000pt;}
.ws29_c00400{word-spacing:4.480000pt;}
.ws2a_c00400{word-spacing:4.659200pt;}
.ws2b_c00400{word-spacing:4.672000pt;}
.ws30_c00400{word-spacing:5.510400pt;}
.ws31_c00400{word-spacing:5.542400pt;}
.ws17_c00400{word-spacing:6.156288pt;}
.ws16_c00400{word-spacing:6.166976pt;}
.ws34_c00400{word-spacing:6.460896pt;}
.ws35_c00400{word-spacing:6.487616pt;}
.ws1e_c00400{word-spacing:9.299200pt;}
.ws26_c00400{word-spacing:10.939168pt;}
.ws27_c00400{word-spacing:10.944512pt;}
.ws19_c00400{word-spacing:12.504960pt;}
.ws9_c00400{word-spacing:13.798208pt;}
.wsa_c00400{word-spacing:13.830272pt;}
.ws2e_c00400{word-spacing:16.006400pt;}
._3_c00400{margin-left:-4.168320pt;}
._2_c00400{margin-left:-3.152960pt;}
._4_c00400{margin-left:-2.244480pt;}
._0_c00400{margin-left:-1.175680pt;}
._1_c00400{width:0.961920pt;}
.fs3_c00400{font-size:34.560000pt;}
.fs4_c00400{font-size:42.560000pt;}
.fs2_c00400{font-size:48.000000pt;}
.fs0_c00400{font-size:53.440000pt;}
.fs1_c00400{font-size:64.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y2_c00400{bottom:51.067067pt;}
.y2e_c00400{bottom:101.065307pt;}
.y2d_c00400{bottom:117.387067pt;}
.y2c_c00400{bottom:130.907067pt;}
.y2b_c00400{bottom:149.307067pt;}
.y2a_c00400{bottom:167.707067pt;}
.y29_c00400{bottom:195.444027pt;}
.y28_c00400{bottom:210.487387pt;}
.y27_c00400{bottom:225.450587pt;}
.y26_c00400{bottom:240.493947pt;}
.y25_c00400{bottom:255.457147pt;}
.y24_c00400{bottom:270.500507pt;}
.y23_c00400{bottom:285.463707pt;}
.y22_c00400{bottom:300.507067pt;}
.y21_c00400{bottom:336.747067pt;}
.y20_c00400{bottom:367.387067pt;}
.y1f_c00400{bottom:405.947067pt;}
.y1e_c00400{bottom:436.587067pt;}
.y1d_c00400{bottom:467.147067pt;}
.y1c_c00400{bottom:497.787067pt;}
.y1b_c00400{bottom:528.347067pt;}
.y1a_c00400{bottom:561.690747pt;}
.y19_c00400{bottom:576.653947pt;}
.y18_c00400{bottom:591.697307pt;}
.y17_c00400{bottom:606.660507pt;}
.y16_c00400{bottom:621.703867pt;}
.y15_c00400{bottom:636.667067pt;}
.y14_c00400{bottom:672.987067pt;}
.y13_c00400{bottom:703.547067pt;}
.y12_c00400{bottom:734.187067pt;}
.y11_c00400{bottom:767.427707pt;}
.y10_c00400{bottom:782.471067pt;}
.yf_c00400{bottom:797.434267pt;}
.ye_c00400{bottom:812.477627pt;}
.yd_c00400{bottom:827.440827pt;}
.yc_c00400{bottom:842.484187pt;}
.yb_c00400{bottom:857.447387pt;}
.ya_c00400{bottom:872.490747pt;}
.y9_c00400{bottom:887.453947pt;}
.y8_c00400{bottom:902.497307pt;}
.y7_c00400{bottom:917.460507pt;}
.y6_c00400{bottom:932.503867pt;}
.y5_c00400{bottom:947.467067pt;}
.y4_c00400{bottom:983.787067pt;}
.y3_c00400{bottom:1014.347067pt;}
.y1_c00400{bottom:1063.867067pt;}
.h6_c00400{height:42.656250pt;}
.h7_c00400{height:44.388750pt;}
.h1_c00400{height:44.724687pt;}
.h5_c00400{height:44.789967pt;}
.h4_c00400{height:44.882127pt;}
.h3_c00400{height:53.562500pt;}
.h2_c00400{height:64.142500pt;}
.h0_c00400{height:1122.666667pt;}
.w1_c00400{width:793.333333pt;}
.w0_c00400{width:793.626667pt;}
.x0_c00400{left:0.000000pt;}
.x1_c00400{left:113.440000pt;}
.x3_c00400{left:137.280000pt;}
.x2_c00400{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_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_88d228ba1ec8f7abb1ac8204.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_72d845e80f3731fce0ead05e.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;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_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;}
.v1_c00401{vertical-align:15.134400px;}
.v2_c00401{vertical-align:29.880000px;}
.lsf_c00401{letter-spacing:-0.192384px;}
.lsd_c00401{letter-spacing:-0.186372px;}
.lsc_c00401{letter-spacing:-0.151200px;}
.ls15_c00401{letter-spacing:-0.050400px;}
.ls17_c00401{letter-spacing:-0.036000px;}
.ls12_c00401{letter-spacing:-0.028800px;}
.ls16_c00401{letter-spacing:-0.021600px;}
.ls11_c00401{letter-spacing:-0.014400px;}
.ls10_c00401{letter-spacing:-0.007200px;}
.lsa_c00401{letter-spacing:-0.006012px;}
.lsb_c00401{letter-spacing:0.000000px;}
.ls1_c00401{letter-spacing:0.007200px;}
.ls0_c00401{letter-spacing:0.012024px;}
.ls3_c00401{letter-spacing:0.014400px;}
.ls2_c00401{letter-spacing:0.028800px;}
.ls9_c00401{letter-spacing:0.033516px;}
.ls7_c00401{letter-spacing:0.036000px;}
.ls8_c00401{letter-spacing:0.038304px;}
.ls13_c00401{letter-spacing:0.054756px;}
.ls4_c00401{letter-spacing:0.064800px;}
.ls14_c00401{letter-spacing:0.093600px;}
.lse_c00401{letter-spacing:0.136080px;}
.ls5_c00401{letter-spacing:0.144000px;}
.ls6_c00401{letter-spacing:65.304000px;}
.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;}
}
.ws2_c00401{word-spacing:-17.985600px;}
.ws1_c00401{word-spacing:-10.584756px;}
.ws0_c00401{word-spacing:-9.856080px;}
.ws8_c00401{word-spacing:-0.264528px;}
.ws25_c00401{word-spacing:-0.086400px;}
.ws26_c00401{word-spacing:-0.019152px;}
.ws28_c00401{word-spacing:-0.014364px;}
.ws27_c00401{word-spacing:-0.009576px;}
.ws4_c00401{word-spacing:0.000000px;}
.ws10_c00401{word-spacing:0.007200px;}
.ws1b_c00401{word-spacing:0.021600px;}
.ws3_c00401{word-spacing:0.096192px;}
.wse_c00401{word-spacing:0.388800px;}
.ws23_c00401{word-spacing:0.684000px;}
.ws24_c00401{word-spacing:0.734400px;}
.ws5_c00401{word-spacing:1.875744px;}
.ws6_c00401{word-spacing:1.887768px;}
.ws7_c00401{word-spacing:2.074140px;}
.ws15_c00401{word-spacing:2.160000px;}
.ws16_c00401{word-spacing:2.210400px;}
.ws1e_c00401{word-spacing:2.872800px;}
.ws1f_c00401{word-spacing:2.923200px;}
.wsc_c00401{word-spacing:3.247200px;}
.wsb_c00401{word-spacing:3.276000px;}
.ws1c_c00401{word-spacing:4.370400px;}
.ws21_c00401{word-spacing:5.032800px;}
.ws22_c00401{word-spacing:5.097600px;}
.ws19_c00401{word-spacing:7.848000px;}
.ws1a_c00401{word-spacing:7.956000px;}
.ws9_c00401{word-spacing:8.647200px;}
.wsa_c00401{word-spacing:8.654400px;}
.wsd_c00401{word-spacing:9.014400px;}
.ws13_c00401{word-spacing:11.908800px;}
.ws14_c00401{word-spacing:11.930400px;}
.ws12_c00401{word-spacing:15.472800px;}
.ws11_c00401{word-spacing:15.487200px;}
.ws20_c00401{word-spacing:16.207200px;}
.ws18_c00401{word-spacing:18.655200px;}
.ws17_c00401{word-spacing:18.705600px;}
.ws1d_c00401{word-spacing:22.708800px;}
.wsf_c00401{word-spacing:23.385600px;}
._0_c00401{margin-left:-1.202400px;}
._1_c00401{width:1.334664px;}
.fc0_c00401{color:rgb(0,0,0);}
.fs3_c00401{font-size:38.880000px;}
.fs4_c00401{font-size:42.120000px;}
.fs5_c00401{font-size:47.880000px;}
.fs2_c00401{font-size:54.000000px;}
.fs0_c00401{font-size:60.120000px;}
.fs1_c00401{font-size:72.000000px;}
.y0_c00401{bottom:0.000000px;}
.y2_c00401{bottom:57.450450px;}
.y3_c00401{bottom:61.410450px;}
.y25_c00401{bottom:110.561610px;}
.y24_c00401{bottom:128.923590px;}
.y23_c00401{bottom:147.189810px;}
.y22_c00401{bottom:165.456030px;}
.y21_c00401{bottom:183.818010px;}
.y20_c00401{bottom:202.084230px;}
.y1f_c00401{bottom:220.350450px;}
.y1e_c00401{bottom:235.560450px;}
.y1d_c00401{bottom:256.260450px;}
.y1c_c00401{bottom:276.960450px;}
.y1b_c00401{bottom:321.510450px;}
.y1a_c00401{bottom:355.890450px;}
.y19_c00401{bottom:390.360450px;}
.y18_c00401{bottom:433.740450px;}
.y17_c00401{bottom:468.210450px;}
.y16_c00401{bottom:502.590450px;}
.y15_c00401{bottom:537.060450px;}
.y14_c00401{bottom:571.440450px;}
.y13_c00401{bottom:614.910450px;}
.y12_c00401{bottom:649.290450px;}
.y11_c00401{bottom:692.760450px;}
.y10_c00401{bottom:727.140450px;}
.yf_c00401{bottom:761.610450px;}
.ye_c00401{bottom:795.990450px;}
.yd_c00401{bottom:830.460450px;}
.yc_c00401{bottom:873.840450px;}
.yb_c00401{bottom:908.310450px;}
.ya_c00401{bottom:942.690450px;}
.y9_c00401{bottom:977.160450px;}
.y8_c00401{bottom:1020.540450px;}
.y7_c00401{bottom:1055.010450px;}
.y6_c00401{bottom:1089.390450px;}
.y5_c00401{bottom:1126.916850px;}
.y4_c00401{bottom:1143.750450px;}
.y1_c00401{bottom:1196.850450px;}
.h2_c00401{height:47.988281px;}
.h9_c00401{height:49.937344px;}
.h1_c00401{height:50.315273px;}
.h4_c00401{height:50.329673px;}
.h3_c00401{height:56.320312px;}
.h5_c00401{height:60.257812px;}
.h6_c00401{height:65.130820px;}
.h8_c00401{height:65.131420px;}
.h7_c00401{height:75.093750px;}
.h0_c00401{height:1263.000000px;}
.w1_c00401{width:892.500000px;}
.w0_c00401{width:892.830000px;}
.x0_c00401{left:0.000000px;}
.x5_c00401{left:127.620000px;}
.x4_c00401{left:181.620000px;}
.x6_c00401{left:207.720000px;}
.x7_c00401{left:249.120000px;}
.x3_c00401{left:435.240000px;}
.x2_c00401{left:446.490000px;}
.x1_c00401{left:499.050000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.v1_c00401{vertical-align:13.452800pt;}
.v2_c00401{vertical-align:26.560000pt;}
.lsf_c00401{letter-spacing:-0.171008pt;}
.lsd_c00401{letter-spacing:-0.165664pt;}
.lsc_c00401{letter-spacing:-0.134400pt;}
.ls15_c00401{letter-spacing:-0.044800pt;}
.ls17_c00401{letter-spacing:-0.032000pt;}
.ls12_c00401{letter-spacing:-0.025600pt;}
.ls16_c00401{letter-spacing:-0.019200pt;}
.ls11_c00401{letter-spacing:-0.012800pt;}
.ls10_c00401{letter-spacing:-0.006400pt;}
.lsa_c00401{letter-spacing:-0.005344pt;}
.lsb_c00401{letter-spacing:0.000000pt;}
.ls1_c00401{letter-spacing:0.006400pt;}
.ls0_c00401{letter-spacing:0.010688pt;}
.ls3_c00401{letter-spacing:0.012800pt;}
.ls2_c00401{letter-spacing:0.025600pt;}
.ls9_c00401{letter-spacing:0.029792pt;}
.ls7_c00401{letter-spacing:0.032000pt;}
.ls8_c00401{letter-spacing:0.034048pt;}
.ls13_c00401{letter-spacing:0.048672pt;}
.ls4_c00401{letter-spacing:0.057600pt;}
.ls14_c00401{letter-spacing:0.083200pt;}
.lse_c00401{letter-spacing:0.120960pt;}
.ls5_c00401{letter-spacing:0.128000pt;}
.ls6_c00401{letter-spacing:58.048000pt;}
.ws2_c00401{word-spacing:-15.987200pt;}
.ws1_c00401{word-spacing:-9.408672pt;}
.ws0_c00401{word-spacing:-8.760960pt;}
.ws8_c00401{word-spacing:-0.235136pt;}
.ws25_c00401{word-spacing:-0.076800pt;}
.ws26_c00401{word-spacing:-0.017024pt;}
.ws28_c00401{word-spacing:-0.012768pt;}
.ws27_c00401{word-spacing:-0.008512pt;}
.ws4_c00401{word-spacing:0.000000pt;}
.ws10_c00401{word-spacing:0.006400pt;}
.ws1b_c00401{word-spacing:0.019200pt;}
.ws3_c00401{word-spacing:0.085504pt;}
.wse_c00401{word-spacing:0.345600pt;}
.ws23_c00401{word-spacing:0.608000pt;}
.ws24_c00401{word-spacing:0.652800pt;}
.ws5_c00401{word-spacing:1.667328pt;}
.ws6_c00401{word-spacing:1.678016pt;}
.ws7_c00401{word-spacing:1.843680pt;}
.ws15_c00401{word-spacing:1.920000pt;}
.ws16_c00401{word-spacing:1.964800pt;}
.ws1e_c00401{word-spacing:2.553600pt;}
.ws1f_c00401{word-spacing:2.598400pt;}
.wsc_c00401{word-spacing:2.886400pt;}
.wsb_c00401{word-spacing:2.912000pt;}
.ws1c_c00401{word-spacing:3.884800pt;}
.ws21_c00401{word-spacing:4.473600pt;}
.ws22_c00401{word-spacing:4.531200pt;}
.ws19_c00401{word-spacing:6.976000pt;}
.ws1a_c00401{word-spacing:7.072000pt;}
.ws9_c00401{word-spacing:7.686400pt;}
.wsa_c00401{word-spacing:7.692800pt;}
.wsd_c00401{word-spacing:8.012800pt;}
.ws13_c00401{word-spacing:10.585600pt;}
.ws14_c00401{word-spacing:10.604800pt;}
.ws12_c00401{word-spacing:13.753600pt;}
.ws11_c00401{word-spacing:13.766400pt;}
.ws20_c00401{word-spacing:14.406400pt;}
.ws18_c00401{word-spacing:16.582400pt;}
.ws17_c00401{word-spacing:16.627200pt;}
.ws1d_c00401{word-spacing:20.185600pt;}
.wsf_c00401{word-spacing:20.787200pt;}
._0_c00401{margin-left:-1.068800pt;}
._1_c00401{width:1.186368pt;}
.fs3_c00401{font-size:34.560000pt;}
.fs4_c00401{font-size:37.440000pt;}
.fs5_c00401{font-size:42.560000pt;}
.fs2_c00401{font-size:48.000000pt;}
.fs0_c00401{font-size:53.440000pt;}
.fs1_c00401{font-size:64.000000pt;}
.y0_c00401{bottom:0.000000pt;}
.y2_c00401{bottom:51.067067pt;}
.y3_c00401{bottom:54.587067pt;}
.y25_c00401{bottom:98.276987pt;}
.y24_c00401{bottom:114.598747pt;}
.y23_c00401{bottom:130.835387pt;}
.y22_c00401{bottom:147.072027pt;}
.y21_c00401{bottom:163.393787pt;}
.y20_c00401{bottom:179.630427pt;}
.y1f_c00401{bottom:195.867067pt;}
.y1e_c00401{bottom:209.387067pt;}
.y1d_c00401{bottom:227.787067pt;}
.y1c_c00401{bottom:246.187067pt;}
.y1b_c00401{bottom:285.787067pt;}
.y1a_c00401{bottom:316.347067pt;}
.y19_c00401{bottom:346.987067pt;}
.y18_c00401{bottom:385.547067pt;}
.y17_c00401{bottom:416.187067pt;}
.y16_c00401{bottom:446.747067pt;}
.y15_c00401{bottom:477.387067pt;}
.y14_c00401{bottom:507.947067pt;}
.y13_c00401{bottom:546.587067pt;}
.y12_c00401{bottom:577.147067pt;}
.y11_c00401{bottom:615.787067pt;}
.y10_c00401{bottom:646.347067pt;}
.yf_c00401{bottom:676.987067pt;}
.ye_c00401{bottom:707.547067pt;}
.yd_c00401{bottom:738.187067pt;}
.yc_c00401{bottom:776.747067pt;}
.yb_c00401{bottom:807.387067pt;}
.ya_c00401{bottom:837.947067pt;}
.y9_c00401{bottom:868.587067pt;}
.y8_c00401{bottom:907.147067pt;}
.y7_c00401{bottom:937.787067pt;}
.y6_c00401{bottom:968.347067pt;}
.y5_c00401{bottom:1001.703867pt;}
.y4_c00401{bottom:1016.667067pt;}
.y1_c00401{bottom:1063.867067pt;}
.h2_c00401{height:42.656250pt;}
.h9_c00401{height:44.388750pt;}
.h1_c00401{height:44.724687pt;}
.h4_c00401{height:44.737488pt;}
.h3_c00401{height:50.062500pt;}
.h5_c00401{height:53.562500pt;}
.h6_c00401{height:57.894062pt;}
.h8_c00401{height:57.894596pt;}
.h7_c00401{height:66.750000pt;}
.h0_c00401{height:1122.666667pt;}
.w1_c00401{width:793.333333pt;}
.w0_c00401{width:793.626667pt;}
.x0_c00401{left:0.000000pt;}
.x5_c00401{left:113.440000pt;}
.x4_c00401{left:161.440000pt;}
.x6_c00401{left:184.640000pt;}
.x7_c00401{left:221.440000pt;}
.x3_c00401{left:386.880000pt;}
.x2_c00401{left:396.880000pt;}
.x1_c00401{left:443.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_56a44f9eb9e400e3670f8cb0.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00402;src:url('chunks/assets/font_e1b168efeffb928c2bbc9d7e.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00402;src:url('chunks/assets/font_e9e45e8e2b6f5226ef55fdc4.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00402;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00402{font-family:ff5_c00402;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_c00402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.v1_c00402{vertical-align:15.840000px;}
.v2_c00402{vertical-align:29.880000px;}
.lsd_c00402{letter-spacing:-0.151200px;}
.ls14_c00402{letter-spacing:-0.062496px;}
.ls18_c00402{letter-spacing:-0.043200px;}
.ls16_c00402{letter-spacing:-0.036000px;}
.ls17_c00402{letter-spacing:-0.028800px;}
.lse_c00402{letter-spacing:-0.021600px;}
.ls15_c00402{letter-spacing:-0.014400px;}
.ls13_c00402{letter-spacing:-0.007812px;}
.lsf_c00402{letter-spacing:-0.007200px;}
.ls10_c00402{letter-spacing:0.000000px;}
.ls4_c00402{letter-spacing:0.007200px;}
.ls7_c00402{letter-spacing:0.014400px;}
.ls8_c00402{letter-spacing:0.021600px;}
.lsa_c00402{letter-spacing:0.023940px;}
.lsc_c00402{letter-spacing:0.028728px;}
.lsb_c00402{letter-spacing:0.033516px;}
.ls9_c00402{letter-spacing:0.038304px;}
.ls0_c00402{letter-spacing:0.048096px;}
.ls11_c00402{letter-spacing:0.054756px;}
.ls12_c00402{letter-spacing:0.093600px;}
.ls2_c00402{letter-spacing:0.144000px;}
.ls6_c00402{letter-spacing:58.902480px;}
.ls5_c00402{letter-spacing:64.944000px;}
.ls3_c00402{letter-spacing:65.304000px;}
.ls1_c00402{letter-spacing:1212.120000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00402{word-spacing:-19.522188px;}
.ws0_c00402{word-spacing:-10.584756px;}
.wsc_c00402{word-spacing:-0.031248px;}
.ws24_c00402{word-spacing:-0.019152px;}
.ws26_c00402{word-spacing:-0.014364px;}
.ws27_c00402{word-spacing:-0.009576px;}
.ws25_c00402{word-spacing:-0.004788px;}
.ws3_c00402{word-spacing:0.000000px;}
.ws7_c00402{word-spacing:0.007200px;}
.ws2_c00402{word-spacing:0.042084px;}
.ws8_c00402{word-spacing:0.086400px;}
.ws15_c00402{word-spacing:0.352800px;}
.ws14_c00402{word-spacing:0.475200px;}
.wsd_c00402{word-spacing:0.684000px;}
.wse_c00402{word-spacing:0.734400px;}
.wsf_c00402{word-spacing:1.432800px;}
.ws10_c00402{word-spacing:1.454400px;}
.ws12_c00402{word-spacing:1.864800px;}
.ws1c_c00402{word-spacing:2.419200px;}
.ws1b_c00402{word-spacing:2.448000px;}
.ws1a_c00402{word-spacing:2.534400px;}
.ws23_c00402{word-spacing:2.858400px;}
.ws22_c00402{word-spacing:2.923200px;}
.ws5_c00402{word-spacing:2.930400px;}
.ws18_c00402{word-spacing:3.578400px;}
.wsb_c00402{word-spacing:3.592800px;}
.wsa_c00402{word-spacing:3.708000px;}
.ws19_c00402{word-spacing:3.744000px;}
.ws20_c00402{word-spacing:4.356000px;}
.ws21_c00402{word-spacing:4.370400px;}
.ws16_c00402{word-spacing:5.385600px;}
.ws17_c00402{word-spacing:5.407200px;}
.ws1d_c00402{word-spacing:6.127200px;}
.ws6_c00402{word-spacing:6.472800px;}
.ws1e_c00402{word-spacing:9.381600px;}
.ws1f_c00402{word-spacing:9.403200px;}
.ws13_c00402{word-spacing:17.272800px;}
.ws11_c00402{word-spacing:17.676000px;}
.ws9_c00402{word-spacing:18.007200px;}
.ws4_c00402{word-spacing:46.432800px;}
._0_c00402{margin-left:-1.322640px;}
._1_c00402{width:1.008000px;}
.fc0_c00402{color:rgb(0,0,0);}
.fs3_c00402{font-size:42.120000px;}
.fs5_c00402{font-size:47.880000px;}
.fs2_c00402{font-size:54.000000px;}
.fs0_c00402{font-size:60.120000px;}
.fs1_c00402{font-size:72.000000px;}
.fs4_c00402{font-size:78.120000px;}
.y0_c00402{bottom:0.000000px;}
.y2_c00402{bottom:57.450450px;}
.y21_c00402{bottom:113.704200px;}
.y20_c00402{bottom:132.066180px;}
.y1f_c00402{bottom:150.332400px;}
.y1e_c00402{bottom:168.598620px;}
.y1d_c00402{bottom:186.960600px;}
.y1c_c00402{bottom:202.170450px;}
.y1b_c00402{bottom:222.870450px;}
.y1a_c00402{bottom:243.570600px;}
.y19_c00402{bottom:317.910600px;}
.y18_c00402{bottom:352.380600px;}
.y17_c00402{bottom:386.760600px;}
.y16_c00402{bottom:421.230600px;}
.y15_c00402{bottom:455.610450px;}
.y14_c00402{bottom:490.080450px;}
.y13_c00402{bottom:533.460450px;}
.y12_c00402{bottom:567.930450px;}
.y11_c00402{bottom:602.310450px;}
.y10_c00402{bottom:636.780450px;}
.yf_c00402{bottom:671.160450px;}
.ye_c00402{bottom:714.630450px;}
.yd_c00402{bottom:749.010450px;}
.yc_c00402{bottom:783.480600px;}
.yb_c00402{bottom:817.860600px;}
.ya_c00402{bottom:862.950450px;}
.y9_c00402{bottom:925.590450px;}
.y8_c00402{bottom:960.060450px;}
.y7_c00402{bottom:994.440450px;}
.y6_c00402{bottom:1037.910450px;}
.y5_c00402{bottom:1072.290450px;}
.y4_c00402{bottom:1106.760450px;}
.y3_c00402{bottom:1141.140450px;}
.y1_c00402{bottom:1196.850450px;}
.h8_c00402{height:47.988281px;}
.h9_c00402{height:49.937344px;}
.h1_c00402{height:50.315273px;}
.h4_c00402{height:60.257812px;}
.h7_c00402{height:65.130220px;}
.h5_c00402{height:65.130820px;}
.h2_c00402{height:72.160312px;}
.h3_c00402{height:75.093750px;}
.h6_c00402{height:81.476719px;}
.h0_c00402{height:1263.000000px;}
.w1_c00402{width:892.500000px;}
.w0_c00402{width:892.830000px;}
.x0_c00402{left:0.000000px;}
.x1_c00402{left:127.620000px;}
.x2_c00402{left:180.720000px;}
.x3_c00402{left:207.720000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.v1_c00402{vertical-align:14.080000pt;}
.v2_c00402{vertical-align:26.560000pt;}
.lsd_c00402{letter-spacing:-0.134400pt;}
.ls14_c00402{letter-spacing:-0.055552pt;}
.ls18_c00402{letter-spacing:-0.038400pt;}
.ls16_c00402{letter-spacing:-0.032000pt;}
.ls17_c00402{letter-spacing:-0.025600pt;}
.lse_c00402{letter-spacing:-0.019200pt;}
.ls15_c00402{letter-spacing:-0.012800pt;}
.ls13_c00402{letter-spacing:-0.006944pt;}
.lsf_c00402{letter-spacing:-0.006400pt;}
.ls10_c00402{letter-spacing:0.000000pt;}
.ls4_c00402{letter-spacing:0.006400pt;}
.ls7_c00402{letter-spacing:0.012800pt;}
.ls8_c00402{letter-spacing:0.019200pt;}
.lsa_c00402{letter-spacing:0.021280pt;}
.lsc_c00402{letter-spacing:0.025536pt;}
.lsb_c00402{letter-spacing:0.029792pt;}
.ls9_c00402{letter-spacing:0.034048pt;}
.ls0_c00402{letter-spacing:0.042752pt;}
.ls11_c00402{letter-spacing:0.048672pt;}
.ls12_c00402{letter-spacing:0.083200pt;}
.ls2_c00402{letter-spacing:0.128000pt;}
.ls6_c00402{letter-spacing:52.357760pt;}
.ls5_c00402{letter-spacing:57.728000pt;}
.ls3_c00402{letter-spacing:58.048000pt;}
.ls1_c00402{letter-spacing:1077.440000pt;}
.ws1_c00402{word-spacing:-17.353056pt;}
.ws0_c00402{word-spacing:-9.408672pt;}
.wsc_c00402{word-spacing:-0.027776pt;}
.ws24_c00402{word-spacing:-0.017024pt;}
.ws26_c00402{word-spacing:-0.012768pt;}
.ws27_c00402{word-spacing:-0.008512pt;}
.ws25_c00402{word-spacing:-0.004256pt;}
.ws3_c00402{word-spacing:0.000000pt;}
.ws7_c00402{word-spacing:0.006400pt;}
.ws2_c00402{word-spacing:0.037408pt;}
.ws8_c00402{word-spacing:0.076800pt;}
.ws15_c00402{word-spacing:0.313600pt;}
.ws14_c00402{word-spacing:0.422400pt;}
.wsd_c00402{word-spacing:0.608000pt;}
.wse_c00402{word-spacing:0.652800pt;}
.wsf_c00402{word-spacing:1.273600pt;}
.ws10_c00402{word-spacing:1.292800pt;}
.ws12_c00402{word-spacing:1.657600pt;}
.ws1c_c00402{word-spacing:2.150400pt;}
.ws1b_c00402{word-spacing:2.176000pt;}
.ws1a_c00402{word-spacing:2.252800pt;}
.ws23_c00402{word-spacing:2.540800pt;}
.ws22_c00402{word-spacing:2.598400pt;}
.ws5_c00402{word-spacing:2.604800pt;}
.ws18_c00402{word-spacing:3.180800pt;}
.wsb_c00402{word-spacing:3.193600pt;}
.wsa_c00402{word-spacing:3.296000pt;}
.ws19_c00402{word-spacing:3.328000pt;}
.ws20_c00402{word-spacing:3.872000pt;}
.ws21_c00402{word-spacing:3.884800pt;}
.ws16_c00402{word-spacing:4.787200pt;}
.ws17_c00402{word-spacing:4.806400pt;}
.ws1d_c00402{word-spacing:5.446400pt;}
.ws6_c00402{word-spacing:5.753600pt;}
.ws1e_c00402{word-spacing:8.339200pt;}
.ws1f_c00402{word-spacing:8.358400pt;}
.ws13_c00402{word-spacing:15.353600pt;}
.ws11_c00402{word-spacing:15.712000pt;}
.ws9_c00402{word-spacing:16.006400pt;}
.ws4_c00402{word-spacing:41.273600pt;}
._0_c00402{margin-left:-1.175680pt;}
._1_c00402{width:0.896000pt;}
.fs3_c00402{font-size:37.440000pt;}
.fs5_c00402{font-size:42.560000pt;}
.fs2_c00402{font-size:48.000000pt;}
.fs0_c00402{font-size:53.440000pt;}
.fs1_c00402{font-size:64.000000pt;}
.fs4_c00402{font-size:69.440000pt;}
.y0_c00402{bottom:0.000000pt;}
.y2_c00402{bottom:51.067067pt;}
.y21_c00402{bottom:101.070400pt;}
.y20_c00402{bottom:117.392160pt;}
.y1f_c00402{bottom:133.628800pt;}
.y1e_c00402{bottom:149.865440pt;}
.y1d_c00402{bottom:166.187200pt;}
.y1c_c00402{bottom:179.707067pt;}
.y1b_c00402{bottom:198.107067pt;}
.y1a_c00402{bottom:216.507200pt;}
.y19_c00402{bottom:282.587200pt;}
.y18_c00402{bottom:313.227200pt;}
.y17_c00402{bottom:343.787200pt;}
.y16_c00402{bottom:374.427200pt;}
.y15_c00402{bottom:404.987067pt;}
.y14_c00402{bottom:435.627067pt;}
.y13_c00402{bottom:474.187067pt;}
.y12_c00402{bottom:504.827067pt;}
.y11_c00402{bottom:535.387067pt;}
.y10_c00402{bottom:566.027067pt;}
.yf_c00402{bottom:596.587067pt;}
.ye_c00402{bottom:635.227067pt;}
.yd_c00402{bottom:665.787067pt;}
.yc_c00402{bottom:696.427200pt;}
.yb_c00402{bottom:726.987200pt;}
.ya_c00402{bottom:767.067067pt;}
.y9_c00402{bottom:822.747067pt;}
.y8_c00402{bottom:853.387067pt;}
.y7_c00402{bottom:883.947067pt;}
.y6_c00402{bottom:922.587067pt;}
.y5_c00402{bottom:953.147067pt;}
.y4_c00402{bottom:983.787067pt;}
.y3_c00402{bottom:1014.347067pt;}
.y1_c00402{bottom:1063.867067pt;}
.h8_c00402{height:42.656250pt;}
.h9_c00402{height:44.388750pt;}
.h1_c00402{height:44.724687pt;}
.h4_c00402{height:53.562500pt;}
.h7_c00402{height:57.893529pt;}
.h5_c00402{height:57.894063pt;}
.h2_c00402{height:64.142500pt;}
.h3_c00402{height:66.750000pt;}
.h6_c00402{height:72.423750pt;}
.h0_c00402{height:1122.666667pt;}
.w1_c00402{width:793.333333pt;}
.w0_c00402{width:793.626667pt;}
.x0_c00402{left:0.000000pt;}
.x1_c00402{left:113.440000pt;}
.x2_c00402{left:160.640000pt;}
.x3_c00402{left:184.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_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_1d0af2a2be41f3eaed9e3add.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_3d5d2ba1b36f25821306d520.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00403;src:url('chunks/assets/font_6f22dc3479550cd77977868a.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:1.102051;font-style: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);}
.v2_c00403{vertical-align:-15.120000px;}
.v0_c00403{vertical-align:0.000000px;}
.v1_c00403{vertical-align:15.252480px;}
.ls1f_c00403{letter-spacing:-0.204408px;}
.ls13_c00403{letter-spacing:-0.151200px;}
.ls1c_c00403{letter-spacing:-0.096192px;}
.ls1e_c00403{letter-spacing:-0.072144px;}
.ls21_c00403{letter-spacing:-0.054108px;}
.ls1b_c00403{letter-spacing:-0.048096px;}
.ls19_c00403{letter-spacing:-0.043200px;}
.ls16_c00403{letter-spacing:-0.036072px;}
.ls20_c00403{letter-spacing:-0.030060px;}
.ls24_c00403{letter-spacing:-0.028800px;}
.ls1a_c00403{letter-spacing:-0.024048px;}
.ls23_c00403{letter-spacing:-0.021600px;}
.ls1d_c00403{letter-spacing:-0.018036px;}
.ls14_c00403{letter-spacing:-0.014400px;}
.ls17_c00403{letter-spacing:-0.012024px;}
.ls15_c00403{letter-spacing:-0.007200px;}
.ls11_c00403{letter-spacing:-0.006012px;}
.ls12_c00403{letter-spacing:0.000000px;}
.ls4_c00403{letter-spacing:0.006012px;}
.ls8_c00403{letter-spacing:0.007200px;}
.lsd_c00403{letter-spacing:0.012024px;}
.ls9_c00403{letter-spacing:0.014400px;}
.ls1_c00403{letter-spacing:0.018036px;}
.ls0_c00403{letter-spacing:0.021600px;}
.ls10_c00403{letter-spacing:0.023940px;}
.lsf_c00403{letter-spacing:0.024048px;}
.lsa_c00403{letter-spacing:0.030060px;}
.ls5_c00403{letter-spacing:0.042084px;}
.ls3_c00403{letter-spacing:0.048096px;}
.ls6_c00403{letter-spacing:0.060120px;}
.ls2_c00403{letter-spacing:0.066132px;}
.lsc_c00403{letter-spacing:0.072144px;}
.lse_c00403{letter-spacing:0.078156px;}
.lsb_c00403{letter-spacing:0.090180px;}
.ls18_c00403{letter-spacing:0.136080px;}
.ls22_c00403{letter-spacing:0.168336px;}
.ls7_c00403{letter-spacing:0.180360px;}
.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;}
}
.ws0_c00403{word-spacing:-9.856080px;}
.wsa_c00403{word-spacing:-0.288576px;}
.wsd_c00403{word-spacing:-0.276552px;}
.wse_c00403{word-spacing:-0.264528px;}
.ws8_c00403{word-spacing:-0.007200px;}
.ws3c_c00403{word-spacing:-0.004788px;}
.ws2_c00403{word-spacing:0.000000px;}
.ws7_c00403{word-spacing:0.007200px;}
.wsb_c00403{word-spacing:0.024048px;}
.ws1c_c00403{word-spacing:0.057600px;}
.ws1d_c00403{word-spacing:0.060120px;}
.ws35_c00403{word-spacing:0.066132px;}
.ws16_c00403{word-spacing:0.072144px;}
.ws5_c00403{word-spacing:0.086400px;}
.ws1_c00403{word-spacing:0.096192px;}
.ws9_c00403{word-spacing:0.126252px;}
.ws23_c00403{word-spacing:0.360720px;}
.ws30_c00403{word-spacing:0.366732px;}
.ws24_c00403{word-spacing:0.462924px;}
.ws31_c00403{word-spacing:0.480960px;}
.ws39_c00403{word-spacing:1.101600px;}
.ws2b_c00403{word-spacing:1.154304px;}
.ws38_c00403{word-spacing:1.159200px;}
.ws18_c00403{word-spacing:1.440000px;}
.ws15_c00403{word-spacing:1.466928px;}
.ws17_c00403{word-spacing:1.476000px;}
.ws14_c00403{word-spacing:1.478952px;}
.ws2a_c00403{word-spacing:1.515024px;}
.ws34_c00403{word-spacing:1.821636px;}
.ws11_c00403{word-spacing:1.893780px;}
.ws32_c00403{word-spacing:2.260512px;}
.ws33_c00403{word-spacing:2.302596px;}
.ws21_c00403{word-spacing:2.921832px;}
.ws22_c00403{word-spacing:3.066120px;}
.ws3_c00403{word-spacing:3.218400px;}
.ws6_c00403{word-spacing:3.225600px;}
.ws3a_c00403{word-spacing:3.247200px;}
.ws4_c00403{word-spacing:3.297600px;}
.ws3b_c00403{word-spacing:3.312000px;}
.ws1f_c00403{word-spacing:4.076136px;}
.ws1e_c00403{word-spacing:4.406796px;}
.ws20_c00403{word-spacing:4.454892px;}
.ws2f_c00403{word-spacing:5.050080px;}
.ws2e_c00403{word-spacing:5.158296px;}
.ws2d_c00403{word-spacing:5.807592px;}
.ws2c_c00403{word-spacing:5.825628px;}
.ws29_c00403{word-spacing:6.054084px;}
.ws27_c00403{word-spacing:6.246468px;}
.ws28_c00403{word-spacing:6.282540px;}
.ws26_c00403{word-spacing:6.859692px;}
.ws25_c00403{word-spacing:6.949872px;}
.ws12_c00403{word-spacing:7.274520px;}
.ws13_c00403{word-spacing:7.605180px;}
.ws10_c00403{word-spacing:9.793548px;}
.wsf_c00403{word-spacing:9.811584px;}
.ws37_c00403{word-spacing:10.432800px;}
.ws1b_c00403{word-spacing:10.476000px;}
.ws36_c00403{word-spacing:10.576800px;}
.ws1a_c00403{word-spacing:10.663200px;}
.wsc_c00403{word-spacing:13.364676px;}
.ws19_c00403{word-spacing:22.305600px;}
._0_c00403{margin-left:-1.202400px;}
._1_c00403{width:1.214424px;}
.fc0_c00403{color:rgb(0,0,0);}
.fs3_c00403{font-size:38.880000px;}
.fs4_c00403{font-size:47.880000px;}
.fs2_c00403{font-size:54.000000px;}
.fs0_c00403{font-size:60.120000px;}
.fs1_c00403{font-size:72.000000px;}
.y0_c00403{bottom:0.000000px;}
.y2_c00403{bottom:57.450450px;}
.y3_c00403{bottom:61.410450px;}
.y2c_c00403{bottom:113.698470px;}
.y2b_c00403{bottom:132.060450px;}
.y2a_c00403{bottom:147.270450px;}
.y29_c00403{bottom:167.970450px;}
.y28_c00403{bottom:188.670450px;}
.y27_c00403{bottom:250.410450px;}
.y26_c00403{bottom:284.790450px;}
.y25_c00403{bottom:319.260450px;}
.y24_c00403{bottom:353.640450px;}
.y23_c00403{bottom:391.129950px;}
.y22_c00403{bottom:407.963550px;}
.y21_c00403{bottom:424.887330px;}
.y20_c00403{bottom:441.720930px;}
.y1f_c00403{bottom:458.644710px;}
.y1e_c00403{bottom:475.478310px;}
.y1d_c00403{bottom:492.402090px;}
.y1c_c00403{bottom:509.235690px;}
.y1b_c00403{bottom:526.159470px;}
.y1a_c00403{bottom:542.993070px;}
.y19_c00403{bottom:559.916850px;}
.y18_c00403{bottom:576.750450px;}
.y17_c00403{bottom:617.610450px;}
.y16_c00403{bottom:651.990450px;}
.y15_c00403{bottom:695.460450px;}
.y14_c00403{bottom:729.840450px;}
.y13_c00403{bottom:764.310450px;}
.y12_c00403{bottom:798.690450px;}
.y11_c00403{bottom:836.187330px;}
.y10_c00403{bottom:853.020930px;}
.yf_c00403{bottom:869.944710px;}
.ye_c00403{bottom:886.778310px;}
.yd_c00403{bottom:903.702090px;}
.yc_c00403{bottom:920.535690px;}
.yb_c00403{bottom:937.459470px;}
.ya_c00403{bottom:954.293070px;}
.y9_c00403{bottom:971.216850px;}
.y8_c00403{bottom:988.050450px;}
.y7_c00403{bottom:1028.910450px;}
.y6_c00403{bottom:1063.290450px;}
.y5_c00403{bottom:1106.760450px;}
.y4_c00403{bottom:1141.140450px;}
.y1_c00403{bottom:1196.850450px;}
.h2_c00403{height:47.988281px;}
.h7_c00403{height:49.937344px;}
.h1_c00403{height:50.315273px;}
.h6_c00403{height:50.477273px;}
.h5_c00403{height:50.976152px;}
.h3_c00403{height:56.320312px;}
.h4_c00403{height:60.257812px;}
.h0_c00403{height:1263.000000px;}
.w1_c00403{width:892.500000px;}
.w0_c00403{width:892.830000px;}
.x0_c00403{left:0.000000px;}
.x4_c00403{left:127.620000px;}
.x6_c00403{left:154.440000px;}
.x5_c00403{left:180.810000px;}
.x3_c00403{left:435.240000px;}
.x2_c00403{left:446.490000px;}
.x1_c00403{left:499.050000px;}
@media print{
.v2_c00403{vertical-align:-13.440000pt;}
.v0_c00403{vertical-align:0.000000pt;}
.v1_c00403{vertical-align:13.557760pt;}
.ls1f_c00403{letter-spacing:-0.181696pt;}
.ls13_c00403{letter-spacing:-0.134400pt;}
.ls1c_c00403{letter-spacing:-0.085504pt;}
.ls1e_c00403{letter-spacing:-0.064128pt;}
.ls21_c00403{letter-spacing:-0.048096pt;}
.ls1b_c00403{letter-spacing:-0.042752pt;}
.ls19_c00403{letter-spacing:-0.038400pt;}
.ls16_c00403{letter-spacing:-0.032064pt;}
.ls20_c00403{letter-spacing:-0.026720pt;}
.ls24_c00403{letter-spacing:-0.025600pt;}
.ls1a_c00403{letter-spacing:-0.021376pt;}
.ls23_c00403{letter-spacing:-0.019200pt;}
.ls1d_c00403{letter-spacing:-0.016032pt;}
.ls14_c00403{letter-spacing:-0.012800pt;}
.ls17_c00403{letter-spacing:-0.010688pt;}
.ls15_c00403{letter-spacing:-0.006400pt;}
.ls11_c00403{letter-spacing:-0.005344pt;}
.ls12_c00403{letter-spacing:0.000000pt;}
.ls4_c00403{letter-spacing:0.005344pt;}
.ls8_c00403{letter-spacing:0.006400pt;}
.lsd_c00403{letter-spacing:0.010688pt;}
.ls9_c00403{letter-spacing:0.012800pt;}
.ls1_c00403{letter-spacing:0.016032pt;}
.ls0_c00403{letter-spacing:0.019200pt;}
.ls10_c00403{letter-spacing:0.021280pt;}
.lsf_c00403{letter-spacing:0.021376pt;}
.lsa_c00403{letter-spacing:0.026720pt;}
.ls5_c00403{letter-spacing:0.037408pt;}
.ls3_c00403{letter-spacing:0.042752pt;}
.ls6_c00403{letter-spacing:0.053440pt;}
.ls2_c00403{letter-spacing:0.058784pt;}
.lsc_c00403{letter-spacing:0.064128pt;}
.lse_c00403{letter-spacing:0.069472pt;}
.lsb_c00403{letter-spacing:0.080160pt;}
.ls18_c00403{letter-spacing:0.120960pt;}
.ls22_c00403{letter-spacing:0.149632pt;}
.ls7_c00403{letter-spacing:0.160320pt;}
.ws0_c00403{word-spacing:-8.760960pt;}
.wsa_c00403{word-spacing:-0.256512pt;}
.wsd_c00403{word-spacing:-0.245824pt;}
.wse_c00403{word-spacing:-0.235136pt;}
.ws8_c00403{word-spacing:-0.006400pt;}
.ws3c_c00403{word-spacing:-0.004256pt;}
.ws2_c00403{word-spacing:0.000000pt;}
.ws7_c00403{word-spacing:0.006400pt;}
.wsb_c00403{word-spacing:0.021376pt;}
.ws1c_c00403{word-spacing:0.051200pt;}
.ws1d_c00403{word-spacing:0.053440pt;}
.ws35_c00403{word-spacing:0.058784pt;}
.ws16_c00403{word-spacing:0.064128pt;}
.ws5_c00403{word-spacing:0.076800pt;}
.ws1_c00403{word-spacing:0.085504pt;}
.ws9_c00403{word-spacing:0.112224pt;}
.ws23_c00403{word-spacing:0.320640pt;}
.ws30_c00403{word-spacing:0.325984pt;}
.ws24_c00403{word-spacing:0.411488pt;}
.ws31_c00403{word-spacing:0.427520pt;}
.ws39_c00403{word-spacing:0.979200pt;}
.ws2b_c00403{word-spacing:1.026048pt;}
.ws38_c00403{word-spacing:1.030400pt;}
.ws18_c00403{word-spacing:1.280000pt;}
.ws15_c00403{word-spacing:1.303936pt;}
.ws17_c00403{word-spacing:1.312000pt;}
.ws14_c00403{word-spacing:1.314624pt;}
.ws2a_c00403{word-spacing:1.346688pt;}
.ws34_c00403{word-spacing:1.619232pt;}
.ws11_c00403{word-spacing:1.683360pt;}
.ws32_c00403{word-spacing:2.009344pt;}
.ws33_c00403{word-spacing:2.046752pt;}
.ws21_c00403{word-spacing:2.597184pt;}
.ws22_c00403{word-spacing:2.725440pt;}
.ws3_c00403{word-spacing:2.860800pt;}
.ws6_c00403{word-spacing:2.867200pt;}
.ws3a_c00403{word-spacing:2.886400pt;}
.ws4_c00403{word-spacing:2.931200pt;}
.ws3b_c00403{word-spacing:2.944000pt;}
.ws1f_c00403{word-spacing:3.623232pt;}
.ws1e_c00403{word-spacing:3.917152pt;}
.ws20_c00403{word-spacing:3.959904pt;}
.ws2f_c00403{word-spacing:4.488960pt;}
.ws2e_c00403{word-spacing:4.585152pt;}
.ws2d_c00403{word-spacing:5.162304pt;}
.ws2c_c00403{word-spacing:5.178336pt;}
.ws29_c00403{word-spacing:5.381408pt;}
.ws27_c00403{word-spacing:5.552416pt;}
.ws28_c00403{word-spacing:5.584480pt;}
.ws26_c00403{word-spacing:6.097504pt;}
.ws25_c00403{word-spacing:6.177664pt;}
.ws12_c00403{word-spacing:6.466240pt;}
.ws13_c00403{word-spacing:6.760160pt;}
.ws10_c00403{word-spacing:8.705376pt;}
.wsf_c00403{word-spacing:8.721408pt;}
.ws37_c00403{word-spacing:9.273600pt;}
.ws1b_c00403{word-spacing:9.312000pt;}
.ws36_c00403{word-spacing:9.401600pt;}
.ws1a_c00403{word-spacing:9.478400pt;}
.wsc_c00403{word-spacing:11.879712pt;}
.ws19_c00403{word-spacing:19.827200pt;}
._0_c00403{margin-left:-1.068800pt;}
._1_c00403{width:1.079488pt;}
.fs3_c00403{font-size:34.560000pt;}
.fs4_c00403{font-size:42.560000pt;}
.fs2_c00403{font-size:48.000000pt;}
.fs0_c00403{font-size:53.440000pt;}
.fs1_c00403{font-size:64.000000pt;}
.y0_c00403{bottom:0.000000pt;}
.y2_c00403{bottom:51.067067pt;}
.y3_c00403{bottom:54.587067pt;}
.y2c_c00403{bottom:101.065307pt;}
.y2b_c00403{bottom:117.387067pt;}
.y2a_c00403{bottom:130.907067pt;}
.y29_c00403{bottom:149.307067pt;}
.y28_c00403{bottom:167.707067pt;}
.y27_c00403{bottom:222.587067pt;}
.y26_c00403{bottom:253.147067pt;}
.y25_c00403{bottom:283.787067pt;}
.y24_c00403{bottom:314.347067pt;}
.y23_c00403{bottom:347.671067pt;}
.y22_c00403{bottom:362.634267pt;}
.y21_c00403{bottom:377.677627pt;}
.y20_c00403{bottom:392.640827pt;}
.y1f_c00403{bottom:407.684187pt;}
.y1e_c00403{bottom:422.647387pt;}
.y1d_c00403{bottom:437.690747pt;}
.y1c_c00403{bottom:452.653947pt;}
.y1b_c00403{bottom:467.697307pt;}
.y1a_c00403{bottom:482.660507pt;}
.y19_c00403{bottom:497.703867pt;}
.y18_c00403{bottom:512.667067pt;}
.y17_c00403{bottom:548.987067pt;}
.y16_c00403{bottom:579.547067pt;}
.y15_c00403{bottom:618.187067pt;}
.y14_c00403{bottom:648.747067pt;}
.y13_c00403{bottom:679.387067pt;}
.y12_c00403{bottom:709.947067pt;}
.y11_c00403{bottom:743.277627pt;}
.y10_c00403{bottom:758.240827pt;}
.yf_c00403{bottom:773.284187pt;}
.ye_c00403{bottom:788.247387pt;}
.yd_c00403{bottom:803.290747pt;}
.yc_c00403{bottom:818.253947pt;}
.yb_c00403{bottom:833.297307pt;}
.ya_c00403{bottom:848.260507pt;}
.y9_c00403{bottom:863.303867pt;}
.y8_c00403{bottom:878.267067pt;}
.y7_c00403{bottom:914.587067pt;}
.y6_c00403{bottom:945.147067pt;}
.y5_c00403{bottom:983.787067pt;}
.y4_c00403{bottom:1014.347067pt;}
.y1_c00403{bottom:1063.867067pt;}
.h2_c00403{height:42.656250pt;}
.h7_c00403{height:44.388750pt;}
.h1_c00403{height:44.724687pt;}
.h6_c00403{height:44.868687pt;}
.h5_c00403{height:45.312135pt;}
.h3_c00403{height:50.062500pt;}
.h4_c00403{height:53.562500pt;}
.h0_c00403{height:1122.666667pt;}
.w1_c00403{width:793.333333pt;}
.w0_c00403{width:793.626667pt;}
.x0_c00403{left:0.000000pt;}
.x4_c00403{left:113.440000pt;}
.x6_c00403{left:137.280000pt;}
.x5_c00403{left:160.720000pt;}
.x3_c00403{left:386.880000pt;}
.x2_c00403{left:396.880000pt;}
.x1_c00403{left:443.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5b3a5f5c9e7031ce0c4b0eb1.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_2579bf1a71451c8713380fb6.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_fc00d26cfd85980dce6dcebe.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00404;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00404{font-family:ff5_c00404;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;}
.m1_c00404{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m0_c00404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00404{vertical-align:-15.120000px;}
.v0_c00404{vertical-align:0.000000px;}
.v1_c00404{vertical-align:15.840000px;}
.v2_c00404{vertical-align:29.879400px;}
.lsc_c00404{letter-spacing:-0.151200px;}
.ls12_c00404{letter-spacing:-0.085932px;}
.ls10_c00404{letter-spacing:-0.075492px;}
.ls1a_c00404{letter-spacing:-0.054108px;}
.ls14_c00404{letter-spacing:-0.046872px;}
.ls19_c00404{letter-spacing:-0.042084px;}
.ls11_c00404{letter-spacing:-0.031248px;}
.ls1d_c00404{letter-spacing:-0.028800px;}
.ls13_c00404{letter-spacing:-0.023436px;}
.lsf_c00404{letter-spacing:-0.021600px;}
.lsd_c00404{letter-spacing:-0.014400px;}
.ls15_c00404{letter-spacing:-0.007200px;}
.ls18_c00404{letter-spacing:-0.006012px;}
.lse_c00404{letter-spacing:0.000000px;}
.ls4_c00404{letter-spacing:0.006012px;}
.ls7_c00404{letter-spacing:0.014400px;}
.ls8_c00404{letter-spacing:0.021600px;}
.lsb_c00404{letter-spacing:0.023940px;}
.ls3_c00404{letter-spacing:0.028800px;}
.lsa_c00404{letter-spacing:0.033516px;}
.ls9_c00404{letter-spacing:0.038304px;}
.ls6_c00404{letter-spacing:0.042084px;}
.ls0_c00404{letter-spacing:0.048096px;}
.ls5_c00404{letter-spacing:0.054108px;}
.ls16_c00404{letter-spacing:0.054756px;}
.ls17_c00404{letter-spacing:0.093600px;}
.ls1b_c00404{letter-spacing:0.136080px;}
.ls1c_c00404{letter-spacing:0.168336px;}
.ls2_c00404{letter-spacing:23.448960px;}
.ls1_c00404{letter-spacing:1212.120000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:-20.894508px;}
.ws1_c00404{word-spacing:-10.584756px;}
.ws2_c00404{word-spacing:-9.856080px;}
.ws11_c00404{word-spacing:-0.093600px;}
.wsc_c00404{word-spacing:-0.046872px;}
.ws29_c00404{word-spacing:-0.019152px;}
.ws2a_c00404{word-spacing:-0.004788px;}
.ws4_c00404{word-spacing:0.000000px;}
.ws16_c00404{word-spacing:0.014400px;}
.ws8_c00404{word-spacing:0.021600px;}
.ws3_c00404{word-spacing:0.042084px;}
.ws17_c00404{word-spacing:0.084168px;}
.ws1a_c00404{word-spacing:0.132264px;}
.ws1d_c00404{word-spacing:0.144288px;}
.ws14_c00404{word-spacing:0.367200px;}
.ws1e_c00404{word-spacing:0.374400px;}
.ws15_c00404{word-spacing:0.424800px;}
.ws22_c00404{word-spacing:1.137600px;}
.ws23_c00404{word-spacing:1.245600px;}
.ws21_c00404{word-spacing:1.828800px;}
.ws12_c00404{word-spacing:2.160000px;}
.ws1b_c00404{word-spacing:2.206404px;}
.ws1c_c00404{word-spacing:2.212416px;}
.wsb_c00404{word-spacing:2.812320px;}
.ws9_c00404{word-spacing:2.999808px;}
.ws27_c00404{word-spacing:3.189600px;}
.wsa_c00404{word-spacing:3.234168px;}
.ws28_c00404{word-spacing:3.254400px;}
.ws19_c00404{word-spacing:3.276540px;}
.ws18_c00404{word-spacing:3.336660px;}
.ws7_c00404{word-spacing:4.680000px;}
.ws10_c00404{word-spacing:5.767200px;}
.wsf_c00404{word-spacing:5.832000px;}
.wsd_c00404{word-spacing:6.091200px;}
.wse_c00404{word-spacing:6.148800px;}
.ws13_c00404{word-spacing:6.854400px;}
.ws6_c00404{word-spacing:8.625600px;}
.ws5_c00404{word-spacing:8.654400px;}
.ws1f_c00404{word-spacing:9.000000px;}
.ws24_c00404{word-spacing:12.945600px;}
.ws25_c00404{word-spacing:24.818400px;}
.ws26_c00404{word-spacing:24.897600px;}
.ws20_c00404{word-spacing:25.588800px;}
._0_c00404{margin-left:-1.322640px;}
._1_c00404{width:1.180800px;}
.fc0_c00404{color:rgb(0,0,0);}
.fs7_c00404{font-size:38.880000px;}
.fs5_c00404{font-size:42.120000px;}
.fs8_c00404{font-size:47.880000px;}
.fs6_c00404{font-size:50.602976px;}
.fs2_c00404{font-size:54.000000px;}
.fs0_c00404{font-size:60.120000px;}
.fs1_c00404{font-size:72.000000px;}
.fs4_c00404{font-size:78.120000px;}
.fs3_c00404{font-size:83.880000px;}
.y0_c00404{bottom:0.000000px;}
.y2_c00404{bottom:57.450450px;}
.y22_c00404{bottom:113.702250px;}
.y21_c00404{bottom:132.064230px;}
.y20_c00404{bottom:150.330450px;}
.y1f_c00404{bottom:165.540450px;}
.y1e_c00404{bottom:186.240450px;}
.y1d_c00404{bottom:206.940450px;}
.y1c_c00404{bottom:262.290450px;}
.y1b_c00404{bottom:296.670450px;}
.y1a_c00404{bottom:340.140450px;}
.y19_c00404{bottom:374.520450px;}
.y18_c00404{bottom:408.990450px;}
.y17_c00404{bottom:443.370450px;}
.y16_c00404{bottom:477.840450px;}
.y15_c00404{bottom:512.220450px;}
.y14_c00404{bottom:546.690450px;}
.y13_c00404{bottom:584.109750px;}
.y12_c00404{bottom:601.033530px;}
.y11_c00404{bottom:626.870100px;}
.y10_c00404{bottom:643.793880px;}
.yf_c00404{bottom:669.630450px;}
.ye_c00404{bottom:710.490450px;}
.yd_c00404{bottom:744.870450px;}
.yc_c00404{bottom:779.340450px;}
.yb_c00404{bottom:813.720450px;}
.ya_c00404{bottom:857.190600px;}
.y9_c00404{bottom:891.570600px;}
.y8_c00404{bottom:926.040600px;}
.y7_c00404{bottom:971.049090px;}
.y6_c00404{bottom:1008.390450px;}
.y5_c00404{bottom:1072.290450px;}
.y4_c00404{bottom:1106.760450px;}
.y3_c00404{bottom:1141.140450px;}
.y1_c00404{bottom:1196.850450px;}
.h7_c00404{height:42.399760px;}
.ha_c00404{height:47.988281px;}
.hb_c00404{height:49.937344px;}
.h1_c00404{height:50.315273px;}
.h8_c00404{height:50.398073px;}
.h3_c00404{height:60.257812px;}
.h6_c00404{height:65.130220px;}
.h9_c00404{height:65.131420px;}
.h5_c00404{height:65.456016px;}
.h2_c00404{height:72.160312px;}
.h4_c00404{height:87.484219px;}
.h0_c00404{height:1263.000000px;}
.w1_c00404{width:892.500000px;}
.w0_c00404{width:892.830000px;}
.x0_c00404{left:0.000000px;}
.x1_c00404{left:127.620000px;}
.x3_c00404{left:154.620000px;}
.x2_c00404{left:180.810000px;}
.x4_c00404{left:453.600000px;}
@media print{
.v3_c00404{vertical-align:-13.440000pt;}
.v0_c00404{vertical-align:0.000000pt;}
.v1_c00404{vertical-align:14.080000pt;}
.v2_c00404{vertical-align:26.559467pt;}
.lsc_c00404{letter-spacing:-0.134400pt;}
.ls12_c00404{letter-spacing:-0.076384pt;}
.ls10_c00404{letter-spacing:-0.067104pt;}
.ls1a_c00404{letter-spacing:-0.048096pt;}
.ls14_c00404{letter-spacing:-0.041664pt;}
.ls19_c00404{letter-spacing:-0.037408pt;}
.ls11_c00404{letter-spacing:-0.027776pt;}
.ls1d_c00404{letter-spacing:-0.025600pt;}
.ls13_c00404{letter-spacing:-0.020832pt;}
.lsf_c00404{letter-spacing:-0.019200pt;}
.lsd_c00404{letter-spacing:-0.012800pt;}
.ls15_c00404{letter-spacing:-0.006400pt;}
.ls18_c00404{letter-spacing:-0.005344pt;}
.lse_c00404{letter-spacing:0.000000pt;}
.ls4_c00404{letter-spacing:0.005344pt;}
.ls7_c00404{letter-spacing:0.012800pt;}
.ls8_c00404{letter-spacing:0.019200pt;}
.lsb_c00404{letter-spacing:0.021280pt;}
.ls3_c00404{letter-spacing:0.025600pt;}
.lsa_c00404{letter-spacing:0.029792pt;}
.ls9_c00404{letter-spacing:0.034048pt;}
.ls6_c00404{letter-spacing:0.037408pt;}
.ls0_c00404{letter-spacing:0.042752pt;}
.ls5_c00404{letter-spacing:0.048096pt;}
.ls16_c00404{letter-spacing:0.048672pt;}
.ls17_c00404{letter-spacing:0.083200pt;}
.ls1b_c00404{letter-spacing:0.120960pt;}
.ls1c_c00404{letter-spacing:0.149632pt;}
.ls2_c00404{letter-spacing:20.843520pt;}
.ls1_c00404{letter-spacing:1077.440000pt;}
.ws0_c00404{word-spacing:-18.572896pt;}
.ws1_c00404{word-spacing:-9.408672pt;}
.ws2_c00404{word-spacing:-8.760960pt;}
.ws11_c00404{word-spacing:-0.083200pt;}
.wsc_c00404{word-spacing:-0.041664pt;}
.ws29_c00404{word-spacing:-0.017024pt;}
.ws2a_c00404{word-spacing:-0.004256pt;}
.ws4_c00404{word-spacing:0.000000pt;}
.ws16_c00404{word-spacing:0.012800pt;}
.ws8_c00404{word-spacing:0.019200pt;}
.ws3_c00404{word-spacing:0.037408pt;}
.ws17_c00404{word-spacing:0.074816pt;}
.ws1a_c00404{word-spacing:0.117568pt;}
.ws1d_c00404{word-spacing:0.128256pt;}
.ws14_c00404{word-spacing:0.326400pt;}
.ws1e_c00404{word-spacing:0.332800pt;}
.ws15_c00404{word-spacing:0.377600pt;}
.ws22_c00404{word-spacing:1.011200pt;}
.ws23_c00404{word-spacing:1.107200pt;}
.ws21_c00404{word-spacing:1.625600pt;}
.ws12_c00404{word-spacing:1.920000pt;}
.ws1b_c00404{word-spacing:1.961248pt;}
.ws1c_c00404{word-spacing:1.966592pt;}
.wsb_c00404{word-spacing:2.499840pt;}
.ws9_c00404{word-spacing:2.666496pt;}
.ws27_c00404{word-spacing:2.835200pt;}
.wsa_c00404{word-spacing:2.874816pt;}
.ws28_c00404{word-spacing:2.892800pt;}
.ws19_c00404{word-spacing:2.912480pt;}
.ws18_c00404{word-spacing:2.965920pt;}
.ws7_c00404{word-spacing:4.160000pt;}
.ws10_c00404{word-spacing:5.126400pt;}
.wsf_c00404{word-spacing:5.184000pt;}
.wsd_c00404{word-spacing:5.414400pt;}
.wse_c00404{word-spacing:5.465600pt;}
.ws13_c00404{word-spacing:6.092800pt;}
.ws6_c00404{word-spacing:7.667200pt;}
.ws5_c00404{word-spacing:7.692800pt;}
.ws1f_c00404{word-spacing:8.000000pt;}
.ws24_c00404{word-spacing:11.507200pt;}
.ws25_c00404{word-spacing:22.060800pt;}
.ws26_c00404{word-spacing:22.131200pt;}
.ws20_c00404{word-spacing:22.745600pt;}
._0_c00404{margin-left:-1.175680pt;}
._1_c00404{width:1.049600pt;}
.fs7_c00404{font-size:34.560000pt;}
.fs5_c00404{font-size:37.440000pt;}
.fs8_c00404{font-size:42.560000pt;}
.fs6_c00404{font-size:44.980424pt;}
.fs2_c00404{font-size:48.000000pt;}
.fs0_c00404{font-size:53.440000pt;}
.fs1_c00404{font-size:64.000000pt;}
.fs4_c00404{font-size:69.440000pt;}
.fs3_c00404{font-size:74.560000pt;}
.y0_c00404{bottom:0.000000pt;}
.y2_c00404{bottom:51.067067pt;}
.y22_c00404{bottom:101.068667pt;}
.y21_c00404{bottom:117.390427pt;}
.y20_c00404{bottom:133.627067pt;}
.y1f_c00404{bottom:147.147067pt;}
.y1e_c00404{bottom:165.547067pt;}
.y1d_c00404{bottom:183.947067pt;}
.y1c_c00404{bottom:233.147067pt;}
.y1b_c00404{bottom:263.707067pt;}
.y1a_c00404{bottom:302.347067pt;}
.y19_c00404{bottom:332.907067pt;}
.y18_c00404{bottom:363.547067pt;}
.y17_c00404{bottom:394.107067pt;}
.y16_c00404{bottom:424.747067pt;}
.y15_c00404{bottom:455.307067pt;}
.y14_c00404{bottom:485.947067pt;}
.y13_c00404{bottom:519.208667pt;}
.y12_c00404{bottom:534.252027pt;}
.y11_c00404{bottom:557.217867pt;}
.y10_c00404{bottom:572.261227pt;}
.yf_c00404{bottom:595.227067pt;}
.ye_c00404{bottom:631.547067pt;}
.yd_c00404{bottom:662.107067pt;}
.yc_c00404{bottom:692.747067pt;}
.yb_c00404{bottom:723.307067pt;}
.ya_c00404{bottom:761.947200pt;}
.y9_c00404{bottom:792.507200pt;}
.y8_c00404{bottom:823.147200pt;}
.y7_c00404{bottom:863.154747pt;}
.y6_c00404{bottom:896.347067pt;}
.y5_c00404{bottom:953.147067pt;}
.y4_c00404{bottom:983.787067pt;}
.y3_c00404{bottom:1014.347067pt;}
.y1_c00404{bottom:1063.867067pt;}
.h7_c00404{height:37.688675pt;}
.ha_c00404{height:42.656250pt;}
.hb_c00404{height:44.388750pt;}
.h1_c00404{height:44.724687pt;}
.h8_c00404{height:44.798288pt;}
.h3_c00404{height:53.562500pt;}
.h6_c00404{height:57.893529pt;}
.h9_c00404{height:57.894596pt;}
.h5_c00404{height:58.183125pt;}
.h2_c00404{height:64.142500pt;}
.h4_c00404{height:77.763750pt;}
.h0_c00404{height:1122.666667pt;}
.w1_c00404{width:793.333333pt;}
.w0_c00404{width:793.626667pt;}
.x0_c00404{left:0.000000pt;}
.x1_c00404{left:113.440000pt;}
.x3_c00404{left:137.440000pt;}
.x2_c00404{left:160.720000pt;}
.x4_c00404{left:403.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_406ecb3b2476496c660b7fba.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00405;src:url('chunks/assets/font_7c46ac5428c605a4f6db53fa.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00405;src:url('chunks/assets/font_da78e0026fe025e8053e7a49.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;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_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.v1_c00405{vertical-align:29.880000px;}
.lse_c00405{letter-spacing:-0.151200px;}
.ls16_c00405{letter-spacing:-0.036000px;}
.ls15_c00405{letter-spacing:-0.028800px;}
.ls12_c00405{letter-spacing:-0.021600px;}
.lsf_c00405{letter-spacing:-0.014400px;}
.ls10_c00405{letter-spacing:-0.007200px;}
.lsc_c00405{letter-spacing:-0.006012px;}
.ls18_c00405{letter-spacing:-0.004788px;}
.ls17_c00405{letter-spacing:-0.003888px;}
.lsd_c00405{letter-spacing:0.000000px;}
.ls4_c00405{letter-spacing:0.007200px;}
.ls6_c00405{letter-spacing:0.014364px;}
.ls3_c00405{letter-spacing:0.014400px;}
.ls0_c00405{letter-spacing:0.021600px;}
.ls5_c00405{letter-spacing:0.028728px;}
.ls2_c00405{letter-spacing:0.028800px;}
.lsb_c00405{letter-spacing:0.033516px;}
.ls1_c00405{letter-spacing:0.036000px;}
.lsa_c00405{letter-spacing:0.038304px;}
.ls8_c00405{letter-spacing:0.047880px;}
.ls11_c00405{letter-spacing:0.054756px;}
.ls9_c00405{letter-spacing:0.057456px;}
.ls14_c00405{letter-spacing:0.057600px;}
.ls7_c00405{letter-spacing:0.062244px;}
.ls13_c00405{letter-spacing:0.093600px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00405{word-spacing:-17.964000px;}
.ws2_c00405{word-spacing:-13.310640px;}
.ws3_c00405{word-spacing:-10.804752px;}
.ws0_c00405{word-spacing:-10.584756px;}
.wsd_c00405{word-spacing:-0.086400px;}
.ws31_c00405{word-spacing:-0.028728px;}
.ws30_c00405{word-spacing:-0.019152px;}
.ws2b_c00405{word-spacing:-0.009576px;}
.ws5_c00405{word-spacing:0.000000px;}
.ws2f_c00405{word-spacing:0.023940px;}
.wsc_c00405{word-spacing:0.036000px;}
.ws4_c00405{word-spacing:0.096192px;}
.ws1a_c00405{word-spacing:0.345600px;}
.ws1b_c00405{word-spacing:0.367200px;}
.ws10_c00405{word-spacing:0.662400px;}
.wse_c00405{word-spacing:0.698400px;}
.ws7_c00405{word-spacing:0.734400px;}
.ws6_c00405{word-spacing:0.806400px;}
.wsf_c00405{word-spacing:0.835200px;}
.ws27_c00405{word-spacing:1.411200px;}
.ws25_c00405{word-spacing:1.432800px;}
.ws26_c00405{word-spacing:1.540800px;}
.ws15_c00405{word-spacing:3.571200px;}
.ws16_c00405{word-spacing:3.628800px;}
.ws29_c00405{word-spacing:3.952800px;}
.ws1d_c00405{word-spacing:3.967200px;}
.ws28_c00405{word-spacing:4.068000px;}
.ws24_c00405{word-spacing:4.341600px;}
.ws1c_c00405{word-spacing:6.508800px;}
.ws14_c00405{word-spacing:7.934400px;}
.ws13_c00405{word-spacing:7.999200px;}
.ws12_c00405{word-spacing:8.287200px;}
.ws11_c00405{word-spacing:8.337600px;}
.ws1f_c00405{word-spacing:8.640000px;}
.ws1e_c00405{word-spacing:8.697600px;}
.ws2d_c00405{word-spacing:9.317448px;}
.ws2e_c00405{word-spacing:9.331812px;}
.ws2c_c00405{word-spacing:9.365328px;}
.ws23_c00405{word-spacing:9.756000px;}
.ws18_c00405{word-spacing:11.484000px;}
.ws17_c00405{word-spacing:11.512800px;}
.ws19_c00405{word-spacing:11.548800px;}
.ws2a_c00405{word-spacing:12.549600px;}
.ws9_c00405{word-spacing:15.602400px;}
.ws20_c00405{word-spacing:16.214400px;}
.ws8_c00405{word-spacing:16.934400px;}
.wsa_c00405{word-spacing:17.668800px;}
.wsb_c00405{word-spacing:17.712000px;}
.ws22_c00405{word-spacing:19.094400px;}
.ws21_c00405{word-spacing:27.741600px;}
._0_c00405{margin-left:-1.202400px;}
._1_c00405{width:1.133928px;}
.fc0_c00405{color:rgb(0,0,0);}
.fs5_c00405{font-size:38.880000px;}
.fs3_c00405{font-size:42.120000px;}
.fs4_c00405{font-size:47.880000px;}
.fs2_c00405{font-size:54.000000px;}
.fs0_c00405{font-size:60.120000px;}
.fs1_c00405{font-size:72.000000px;}
.y0_c00405{bottom:0.000000px;}
.y2_c00405{bottom:57.450450px;}
.y3_c00405{bottom:61.410450px;}
.y25_c00405{bottom:113.708550px;}
.y24_c00405{bottom:132.070530px;}
.y23_c00405{bottom:150.336750px;}
.y22_c00405{bottom:168.602970px;}
.y21_c00405{bottom:186.964950px;}
.y20_c00405{bottom:200.734230px;}
.y1f_c00405{bottom:219.000450px;}
.y1e_c00405{bottom:234.210450px;}
.y1d_c00405{bottom:254.910450px;}
.y1c_c00405{bottom:275.610450px;}
.y1b_c00405{bottom:322.410450px;}
.y1a_c00405{bottom:356.790450px;}
.y19_c00405{bottom:391.260450px;}
.y18_c00405{bottom:425.640450px;}
.y17_c00405{bottom:460.110450px;}
.y16_c00405{bottom:494.490450px;}
.y15_c00405{bottom:537.960450px;}
.y14_c00405{bottom:572.340450px;}
.y13_c00405{bottom:606.810450px;}
.y12_c00405{bottom:641.190450px;}
.y11_c00405{bottom:675.660450px;}
.y10_c00405{bottom:710.040450px;}
.yf_c00405{bottom:753.510450px;}
.ye_c00405{bottom:787.890600px;}
.yd_c00405{bottom:822.360450px;}
.yc_c00405{bottom:856.740450px;}
.yb_c00405{bottom:891.210450px;}
.ya_c00405{bottom:925.590450px;}
.y9_c00405{bottom:960.060450px;}
.y8_c00405{bottom:1003.440450px;}
.y7_c00405{bottom:1037.910450px;}
.y6_c00405{bottom:1072.290450px;}
.y5_c00405{bottom:1106.760450px;}
.y4_c00405{bottom:1141.140450px;}
.y1_c00405{bottom:1196.850450px;}
.h2_c00405{height:47.988281px;}
.h6_c00405{height:49.937344px;}
.h1_c00405{height:50.315273px;}
.h3_c00405{height:56.320312px;}
.h4_c00405{height:60.257812px;}
.h5_c00405{height:65.130820px;}
.h0_c00405{height:1263.000000px;}
.w1_c00405{width:892.500000px;}
.w0_c00405{width:892.830000px;}
.x0_c00405{left:0.000000px;}
.x4_c00405{left:127.620000px;}
.x6_c00405{left:141.110010px;}
.x5_c00405{left:180.810000px;}
.x3_c00405{left:435.240000px;}
.x2_c00405{left:446.490000px;}
.x1_c00405{left:499.050000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.v1_c00405{vertical-align:26.560000pt;}
.lse_c00405{letter-spacing:-0.134400pt;}
.ls16_c00405{letter-spacing:-0.032000pt;}
.ls15_c00405{letter-spacing:-0.025600pt;}
.ls12_c00405{letter-spacing:-0.019200pt;}
.lsf_c00405{letter-spacing:-0.012800pt;}
.ls10_c00405{letter-spacing:-0.006400pt;}
.lsc_c00405{letter-spacing:-0.005344pt;}
.ls18_c00405{letter-spacing:-0.004256pt;}
.ls17_c00405{letter-spacing:-0.003456pt;}
.lsd_c00405{letter-spacing:0.000000pt;}
.ls4_c00405{letter-spacing:0.006400pt;}
.ls6_c00405{letter-spacing:0.012768pt;}
.ls3_c00405{letter-spacing:0.012800pt;}
.ls0_c00405{letter-spacing:0.019200pt;}
.ls5_c00405{letter-spacing:0.025536pt;}
.ls2_c00405{letter-spacing:0.025600pt;}
.lsb_c00405{letter-spacing:0.029792pt;}
.ls1_c00405{letter-spacing:0.032000pt;}
.lsa_c00405{letter-spacing:0.034048pt;}
.ls8_c00405{letter-spacing:0.042560pt;}
.ls11_c00405{letter-spacing:0.048672pt;}
.ls9_c00405{letter-spacing:0.051072pt;}
.ls14_c00405{letter-spacing:0.051200pt;}
.ls7_c00405{letter-spacing:0.055328pt;}
.ls13_c00405{letter-spacing:0.083200pt;}
.ws1_c00405{word-spacing:-15.968000pt;}
.ws2_c00405{word-spacing:-11.831680pt;}
.ws3_c00405{word-spacing:-9.604224pt;}
.ws0_c00405{word-spacing:-9.408672pt;}
.wsd_c00405{word-spacing:-0.076800pt;}
.ws31_c00405{word-spacing:-0.025536pt;}
.ws30_c00405{word-spacing:-0.017024pt;}
.ws2b_c00405{word-spacing:-0.008512pt;}
.ws5_c00405{word-spacing:0.000000pt;}
.ws2f_c00405{word-spacing:0.021280pt;}
.wsc_c00405{word-spacing:0.032000pt;}
.ws4_c00405{word-spacing:0.085504pt;}
.ws1a_c00405{word-spacing:0.307200pt;}
.ws1b_c00405{word-spacing:0.326400pt;}
.ws10_c00405{word-spacing:0.588800pt;}
.wse_c00405{word-spacing:0.620800pt;}
.ws7_c00405{word-spacing:0.652800pt;}
.ws6_c00405{word-spacing:0.716800pt;}
.wsf_c00405{word-spacing:0.742400pt;}
.ws27_c00405{word-spacing:1.254400pt;}
.ws25_c00405{word-spacing:1.273600pt;}
.ws26_c00405{word-spacing:1.369600pt;}
.ws15_c00405{word-spacing:3.174400pt;}
.ws16_c00405{word-spacing:3.225600pt;}
.ws29_c00405{word-spacing:3.513600pt;}
.ws1d_c00405{word-spacing:3.526400pt;}
.ws28_c00405{word-spacing:3.616000pt;}
.ws24_c00405{word-spacing:3.859200pt;}
.ws1c_c00405{word-spacing:5.785600pt;}
.ws14_c00405{word-spacing:7.052800pt;}
.ws13_c00405{word-spacing:7.110400pt;}
.ws12_c00405{word-spacing:7.366400pt;}
.ws11_c00405{word-spacing:7.411200pt;}
.ws1f_c00405{word-spacing:7.680000pt;}
.ws1e_c00405{word-spacing:7.731200pt;}
.ws2d_c00405{word-spacing:8.282176pt;}
.ws2e_c00405{word-spacing:8.294944pt;}
.ws2c_c00405{word-spacing:8.324736pt;}
.ws23_c00405{word-spacing:8.672000pt;}
.ws18_c00405{word-spacing:10.208000pt;}
.ws17_c00405{word-spacing:10.233600pt;}
.ws19_c00405{word-spacing:10.265600pt;}
.ws2a_c00405{word-spacing:11.155200pt;}
.ws9_c00405{word-spacing:13.868800pt;}
.ws20_c00405{word-spacing:14.412800pt;}
.ws8_c00405{word-spacing:15.052800pt;}
.wsa_c00405{word-spacing:15.705600pt;}
.wsb_c00405{word-spacing:15.744000pt;}
.ws22_c00405{word-spacing:16.972800pt;}
.ws21_c00405{word-spacing:24.659200pt;}
._0_c00405{margin-left:-1.068800pt;}
._1_c00405{width:1.007936pt;}
.fs5_c00405{font-size:34.560000pt;}
.fs3_c00405{font-size:37.440000pt;}
.fs4_c00405{font-size:42.560000pt;}
.fs2_c00405{font-size:48.000000pt;}
.fs0_c00405{font-size:53.440000pt;}
.fs1_c00405{font-size:64.000000pt;}
.y0_c00405{bottom:0.000000pt;}
.y2_c00405{bottom:51.067067pt;}
.y3_c00405{bottom:54.587067pt;}
.y25_c00405{bottom:101.074267pt;}
.y24_c00405{bottom:117.396027pt;}
.y23_c00405{bottom:133.632667pt;}
.y22_c00405{bottom:149.869307pt;}
.y21_c00405{bottom:166.191067pt;}
.y20_c00405{bottom:178.430427pt;}
.y1f_c00405{bottom:194.667067pt;}
.y1e_c00405{bottom:208.187067pt;}
.y1d_c00405{bottom:226.587067pt;}
.y1c_c00405{bottom:244.987067pt;}
.y1b_c00405{bottom:286.587067pt;}
.y1a_c00405{bottom:317.147067pt;}
.y19_c00405{bottom:347.787067pt;}
.y18_c00405{bottom:378.347067pt;}
.y17_c00405{bottom:408.987067pt;}
.y16_c00405{bottom:439.547067pt;}
.y15_c00405{bottom:478.187067pt;}
.y14_c00405{bottom:508.747067pt;}
.y13_c00405{bottom:539.387067pt;}
.y12_c00405{bottom:569.947067pt;}
.y11_c00405{bottom:600.587067pt;}
.y10_c00405{bottom:631.147067pt;}
.yf_c00405{bottom:669.787067pt;}
.ye_c00405{bottom:700.347200pt;}
.yd_c00405{bottom:730.987067pt;}
.yc_c00405{bottom:761.547067pt;}
.yb_c00405{bottom:792.187067pt;}
.ya_c00405{bottom:822.747067pt;}
.y9_c00405{bottom:853.387067pt;}
.y8_c00405{bottom:891.947067pt;}
.y7_c00405{bottom:922.587067pt;}
.y6_c00405{bottom:953.147067pt;}
.y5_c00405{bottom:983.787067pt;}
.y4_c00405{bottom:1014.347067pt;}
.y1_c00405{bottom:1063.867067pt;}
.h2_c00405{height:42.656250pt;}
.h6_c00405{height:44.388750pt;}
.h1_c00405{height:44.724687pt;}
.h3_c00405{height:50.062500pt;}
.h4_c00405{height:53.562500pt;}
.h5_c00405{height:57.894062pt;}
.h0_c00405{height:1122.666667pt;}
.w1_c00405{width:793.333333pt;}
.w0_c00405{width:793.626667pt;}
.x0_c00405{left:0.000000pt;}
.x4_c00405{left:113.440000pt;}
.x6_c00405{left:125.431120pt;}
.x5_c00405{left:160.720000pt;}
.x3_c00405{left:386.880000pt;}
.x2_c00405{left:396.880000pt;}
.x1_c00405{left:443.600000pt;}
}





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

.ir_c00406:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00406{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00406;src:url('chunks/assets/font_aedb2a8467d6ac1d6e3812fd.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_cfad9496f9e663798c1a2b46.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;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_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;}
.v1_c00406{vertical-align:15.840000px;}
.v2_c00406{vertical-align:29.880000px;}
.ls7_c00406{letter-spacing:-0.151200px;}
.lsf_c00406{letter-spacing:-0.054108px;}
.lse_c00406{letter-spacing:-0.036072px;}
.ls12_c00406{letter-spacing:-0.036000px;}
.ls11_c00406{letter-spacing:-0.028800px;}
.lsc_c00406{letter-spacing:-0.021600px;}
.ls8_c00406{letter-spacing:-0.014400px;}
.lsd_c00406{letter-spacing:-0.007200px;}
.ls9_c00406{letter-spacing:0.000000px;}
.ls3_c00406{letter-spacing:0.007200px;}
.ls2_c00406{letter-spacing:0.014400px;}
.ls6_c00406{letter-spacing:0.028728px;}
.ls4_c00406{letter-spacing:0.038304px;}
.ls5_c00406{letter-spacing:0.043092px;}
.ls0_c00406{letter-spacing:0.048096px;}
.lsa_c00406{letter-spacing:0.054756px;}
.lsb_c00406{letter-spacing:0.093600px;}
.ls10_c00406{letter-spacing:0.136080px;}
.ls1_c00406{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00406{word-spacing:-10.584756px;}
.ws1_c00406{word-spacing:-9.856080px;}
.ws1a_c00406{word-spacing:-0.023940px;}
.ws19_c00406{word-spacing:-0.019152px;}
.ws1b_c00406{word-spacing:-0.009576px;}
.ws8_c00406{word-spacing:-0.007200px;}
.ws3_c00406{word-spacing:0.000000px;}
.ws7_c00406{word-spacing:0.007200px;}
.ws2_c00406{word-spacing:0.042084px;}
.ws9_c00406{word-spacing:0.126252px;}
.wsa_c00406{word-spacing:0.144288px;}
.wsf_c00406{word-spacing:0.381600px;}
.ws14_c00406{word-spacing:0.748800px;}
.ws13_c00406{word-spacing:1.087200px;}
.wsb_c00406{word-spacing:3.196800px;}
.wsc_c00406{word-spacing:3.247200px;}
.ws16_c00406{word-spacing:7.941600px;}
.ws17_c00406{word-spacing:7.977600px;}
.ws10_c00406{word-spacing:9.396000px;}
.ws18_c00406{word-spacing:11.923200px;}
.ws15_c00406{word-spacing:13.356000px;}
.ws11_c00406{word-spacing:15.472800px;}
.ws12_c00406{word-spacing:15.494400px;}
.ws5_c00406{word-spacing:18.345600px;}
.ws4_c00406{word-spacing:18.460800px;}
.ws6_c00406{word-spacing:18.741600px;}
.wse_c00406{word-spacing:19.447200px;}
.wsd_c00406{word-spacing:19.454400px;}
._0_c00406{margin-left:-1.322640px;}
._1_c00406{width:1.065600px;}
.fc0_c00406{color:rgb(0,0,0);}
.fs4_c00406{font-size:38.880000px;}
.fs3_c00406{font-size:42.120000px;}
.fs5_c00406{font-size:47.880000px;}
.fs2_c00406{font-size:54.000000px;}
.fs0_c00406{font-size:60.120000px;}
.fs1_c00406{font-size:72.000000px;}
.y0_c00406{bottom:0.000000px;}
.y2_c00406{bottom:57.450450px;}
.y1a_c00406{bottom:113.702250px;}
.y19_c00406{bottom:132.064230px;}
.y18_c00406{bottom:150.330450px;}
.y17_c00406{bottom:165.540450px;}
.y16_c00406{bottom:186.240450px;}
.y15_c00406{bottom:206.940450px;}
.y14_c00406{bottom:284.340450px;}
.y13_c00406{bottom:318.720450px;}
.y12_c00406{bottom:353.190450px;}
.y11_c00406{bottom:387.570450px;}
.y10_c00406{bottom:431.040450px;}
.yf_c00406{bottom:465.420450px;}
.ye_c00406{bottom:499.890450px;}
.yd_c00406{bottom:534.270450px;}
.yc_c00406{bottom:568.740450px;}
.yb_c00406{bottom:612.120450px;}
.ya_c00406{bottom:646.590450px;}
.y9_c00406{bottom:680.970450px;}
.y8_c00406{bottom:718.500450px;}
.y7_c00406{bottom:731.370450px;}
.y6_c00406{bottom:1028.910450px;}
.y5_c00406{bottom:1063.290450px;}
.y4_c00406{bottom:1106.760450px;}
.y3_c00406{bottom:1141.140450px;}
.y1_c00406{bottom:1196.850450px;}
.h5_c00406{height:47.988281px;}
.h6_c00406{height:49.937344px;}
.h1_c00406{height:50.315273px;}
.h3_c00406{height:60.257812px;}
.h4_c00406{height:65.130820px;}
.h2_c00406{height:72.160312px;}
.h0_c00406{height:1263.000000px;}
.w1_c00406{width:892.500000px;}
.w0_c00406{width:892.830000px;}
.x0_c00406{left:0.000000px;}
.x1_c00406{left:127.620000px;}
.x2_c00406{left:180.720000px;}
.x4_c00406{left:187.830000px;}
.x3_c00406{left:798.210000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.v1_c00406{vertical-align:14.080000pt;}
.v2_c00406{vertical-align:26.560000pt;}
.ls7_c00406{letter-spacing:-0.134400pt;}
.lsf_c00406{letter-spacing:-0.048096pt;}
.lse_c00406{letter-spacing:-0.032064pt;}
.ls12_c00406{letter-spacing:-0.032000pt;}
.ls11_c00406{letter-spacing:-0.025600pt;}
.lsc_c00406{letter-spacing:-0.019200pt;}
.ls8_c00406{letter-spacing:-0.012800pt;}
.lsd_c00406{letter-spacing:-0.006400pt;}
.ls9_c00406{letter-spacing:0.000000pt;}
.ls3_c00406{letter-spacing:0.006400pt;}
.ls2_c00406{letter-spacing:0.012800pt;}
.ls6_c00406{letter-spacing:0.025536pt;}
.ls4_c00406{letter-spacing:0.034048pt;}
.ls5_c00406{letter-spacing:0.038304pt;}
.ls0_c00406{letter-spacing:0.042752pt;}
.lsa_c00406{letter-spacing:0.048672pt;}
.lsb_c00406{letter-spacing:0.083200pt;}
.ls10_c00406{letter-spacing:0.120960pt;}
.ls1_c00406{letter-spacing:1077.440000pt;}
.ws0_c00406{word-spacing:-9.408672pt;}
.ws1_c00406{word-spacing:-8.760960pt;}
.ws1a_c00406{word-spacing:-0.021280pt;}
.ws19_c00406{word-spacing:-0.017024pt;}
.ws1b_c00406{word-spacing:-0.008512pt;}
.ws8_c00406{word-spacing:-0.006400pt;}
.ws3_c00406{word-spacing:0.000000pt;}
.ws7_c00406{word-spacing:0.006400pt;}
.ws2_c00406{word-spacing:0.037408pt;}
.ws9_c00406{word-spacing:0.112224pt;}
.wsa_c00406{word-spacing:0.128256pt;}
.wsf_c00406{word-spacing:0.339200pt;}
.ws14_c00406{word-spacing:0.665600pt;}
.ws13_c00406{word-spacing:0.966400pt;}
.wsb_c00406{word-spacing:2.841600pt;}
.wsc_c00406{word-spacing:2.886400pt;}
.ws16_c00406{word-spacing:7.059200pt;}
.ws17_c00406{word-spacing:7.091200pt;}
.ws10_c00406{word-spacing:8.352000pt;}
.ws18_c00406{word-spacing:10.598400pt;}
.ws15_c00406{word-spacing:11.872000pt;}
.ws11_c00406{word-spacing:13.753600pt;}
.ws12_c00406{word-spacing:13.772800pt;}
.ws5_c00406{word-spacing:16.307200pt;}
.ws4_c00406{word-spacing:16.409600pt;}
.ws6_c00406{word-spacing:16.659200pt;}
.wse_c00406{word-spacing:17.286400pt;}
.wsd_c00406{word-spacing:17.292800pt;}
._0_c00406{margin-left:-1.175680pt;}
._1_c00406{width:0.947200pt;}
.fs4_c00406{font-size:34.560000pt;}
.fs3_c00406{font-size:37.440000pt;}
.fs5_c00406{font-size:42.560000pt;}
.fs2_c00406{font-size:48.000000pt;}
.fs0_c00406{font-size:53.440000pt;}
.fs1_c00406{font-size:64.000000pt;}
.y0_c00406{bottom:0.000000pt;}
.y2_c00406{bottom:51.067067pt;}
.y1a_c00406{bottom:101.068667pt;}
.y19_c00406{bottom:117.390427pt;}
.y18_c00406{bottom:133.627067pt;}
.y17_c00406{bottom:147.147067pt;}
.y16_c00406{bottom:165.547067pt;}
.y15_c00406{bottom:183.947067pt;}
.y14_c00406{bottom:252.747067pt;}
.y13_c00406{bottom:283.307067pt;}
.y12_c00406{bottom:313.947067pt;}
.y11_c00406{bottom:344.507067pt;}
.y10_c00406{bottom:383.147067pt;}
.yf_c00406{bottom:413.707067pt;}
.ye_c00406{bottom:444.347067pt;}
.yd_c00406{bottom:474.907067pt;}
.yc_c00406{bottom:505.547067pt;}
.yb_c00406{bottom:544.107067pt;}
.ya_c00406{bottom:574.747067pt;}
.y9_c00406{bottom:605.307067pt;}
.y8_c00406{bottom:638.667067pt;}
.y7_c00406{bottom:650.107067pt;}
.y6_c00406{bottom:914.587067pt;}
.y5_c00406{bottom:945.147067pt;}
.y4_c00406{bottom:983.787067pt;}
.y3_c00406{bottom:1014.347067pt;}
.y1_c00406{bottom:1063.867067pt;}
.h5_c00406{height:42.656250pt;}
.h6_c00406{height:44.388750pt;}
.h1_c00406{height:44.724687pt;}
.h3_c00406{height:53.562500pt;}
.h4_c00406{height:57.894063pt;}
.h2_c00406{height:64.142500pt;}
.h0_c00406{height:1122.666667pt;}
.w1_c00406{width:793.333333pt;}
.w0_c00406{width:793.626667pt;}
.x0_c00406{left:0.000000pt;}
.x1_c00406{left:113.440000pt;}
.x2_c00406{left:160.640000pt;}
.x4_c00406{left:166.960000pt;}
.x3_c00406{left:709.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_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_1ac90d5c8084af94ac11dd22.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00407;src:url('chunks/assets/font_682cf8ce279cb7e20acc5622.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.v1_c00407{vertical-align:29.880000px;}
.ls5_c00407{letter-spacing:-0.151200px;}
.ls9_c00407{letter-spacing:-0.021600px;}
.ls6_c00407{letter-spacing:-0.007200px;}
.ls3_c00407{letter-spacing:-0.006012px;}
.ls4_c00407{letter-spacing:0.000000px;}
.ls8_c00407{letter-spacing:0.007200px;}
.ls0_c00407{letter-spacing:0.014400px;}
.ls2_c00407{letter-spacing:0.028728px;}
.lsa_c00407{letter-spacing:0.028800px;}
.ls7_c00407{letter-spacing:0.036000px;}
.lsb_c00407{letter-spacing:0.054756px;}
.ls1_c00407{letter-spacing:0.093600px;}
.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.093600px;}
.ws1_c00407{word-spacing:-10.584756px;}
.ws13_c00407{word-spacing:-0.009576px;}
.ws3_c00407{word-spacing:0.000000px;}
.ws6_c00407{word-spacing:0.007200px;}
.ws2_c00407{word-spacing:0.096192px;}
.ws9_c00407{word-spacing:1.447200px;}
.wsa_c00407{word-spacing:1.490400px;}
.wsc_c00407{word-spacing:1.785600px;}
.wsb_c00407{word-spacing:1.800000px;}
.ws8_c00407{word-spacing:2.124000px;}
.ws7_c00407{word-spacing:2.145600px;}
.ws10_c00407{word-spacing:3.254400px;}
.wsf_c00407{word-spacing:3.333600px;}
.wse_c00407{word-spacing:4.312800px;}
.wsd_c00407{word-spacing:4.327200px;}
.ws4_c00407{word-spacing:5.745600px;}
.ws5_c00407{word-spacing:5.875200px;}
.ws12_c00407{word-spacing:7.228800px;}
.ws11_c00407{word-spacing:7.264800px;}
._0_c00407{margin-left:-1.202400px;}
._1_c00407{width:1.005480px;}
.fc0_c00407{color:rgb(0,0,0);}
.fs3_c00407{font-size:42.120000px;}
.fs4_c00407{font-size:47.880000px;}
.fs2_c00407{font-size:54.000000px;}
.fs0_c00407{font-size:60.120000px;}
.fs1_c00407{font-size:72.000000px;}
.y0_c00407{bottom:0.000000px;}
.y2_c00407{bottom:57.450450px;}
.y3_c00407{bottom:61.410450px;}
.y10_c00407{bottom:113.700450px;}
.yf_c00407{bottom:128.910450px;}
.ye_c00407{bottom:149.610450px;}
.yd_c00407{bottom:170.310450px;}
.yc_c00407{bottom:856.740450px;}
.yb_c00407{bottom:891.210450px;}
.ya_c00407{bottom:925.590450px;}
.y9_c00407{bottom:960.060450px;}
.y8_c00407{bottom:994.440450px;}
.y7_c00407{bottom:1028.910450px;}
.y6_c00407{bottom:1063.290450px;}
.y5_c00407{bottom:1106.760450px;}
.y4_c00407{bottom:1141.140450px;}
.y1_c00407{bottom:1196.850450px;}
.h2_c00407{height:47.988281px;}
.h6_c00407{height:49.937344px;}
.h1_c00407{height:50.315273px;}
.h3_c00407{height:56.320312px;}
.h4_c00407{height:60.257812px;}
.h5_c00407{height:65.130820px;}
.h0_c00407{height:1263.000000px;}
.w1_c00407{width:892.500000px;}
.w0_c00407{width:892.830000px;}
.x0_c00407{left:0.000000px;}
.x4_c00407{left:127.620000px;}
.x5_c00407{left:180.720000px;}
.x3_c00407{left:435.240000px;}
.x2_c00407{left:446.490000px;}
.x1_c00407{left:499.050000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.v1_c00407{vertical-align:26.560000pt;}
.ls5_c00407{letter-spacing:-0.134400pt;}
.ls9_c00407{letter-spacing:-0.019200pt;}
.ls6_c00407{letter-spacing:-0.006400pt;}
.ls3_c00407{letter-spacing:-0.005344pt;}
.ls4_c00407{letter-spacing:0.000000pt;}
.ls8_c00407{letter-spacing:0.006400pt;}
.ls0_c00407{letter-spacing:0.012800pt;}
.ls2_c00407{letter-spacing:0.025536pt;}
.lsa_c00407{letter-spacing:0.025600pt;}
.ls7_c00407{letter-spacing:0.032000pt;}
.lsb_c00407{letter-spacing:0.048672pt;}
.ls1_c00407{letter-spacing:0.083200pt;}
.ws0_c00407{word-spacing:-16.083200pt;}
.ws1_c00407{word-spacing:-9.408672pt;}
.ws13_c00407{word-spacing:-0.008512pt;}
.ws3_c00407{word-spacing:0.000000pt;}
.ws6_c00407{word-spacing:0.006400pt;}
.ws2_c00407{word-spacing:0.085504pt;}
.ws9_c00407{word-spacing:1.286400pt;}
.wsa_c00407{word-spacing:1.324800pt;}
.wsc_c00407{word-spacing:1.587200pt;}
.wsb_c00407{word-spacing:1.600000pt;}
.ws8_c00407{word-spacing:1.888000pt;}
.ws7_c00407{word-spacing:1.907200pt;}
.ws10_c00407{word-spacing:2.892800pt;}
.wsf_c00407{word-spacing:2.963200pt;}
.wse_c00407{word-spacing:3.833600pt;}
.wsd_c00407{word-spacing:3.846400pt;}
.ws4_c00407{word-spacing:5.107200pt;}
.ws5_c00407{word-spacing:5.222400pt;}
.ws12_c00407{word-spacing:6.425600pt;}
.ws11_c00407{word-spacing:6.457600pt;}
._0_c00407{margin-left:-1.068800pt;}
._1_c00407{width:0.893760pt;}
.fs3_c00407{font-size:37.440000pt;}
.fs4_c00407{font-size:42.560000pt;}
.fs2_c00407{font-size:48.000000pt;}
.fs0_c00407{font-size:53.440000pt;}
.fs1_c00407{font-size:64.000000pt;}
.y0_c00407{bottom:0.000000pt;}
.y2_c00407{bottom:51.067067pt;}
.y3_c00407{bottom:54.587067pt;}
.y10_c00407{bottom:101.067067pt;}
.yf_c00407{bottom:114.587067pt;}
.ye_c00407{bottom:132.987067pt;}
.yd_c00407{bottom:151.387067pt;}
.yc_c00407{bottom:761.547067pt;}
.yb_c00407{bottom:792.187067pt;}
.ya_c00407{bottom:822.747067pt;}
.y9_c00407{bottom:853.387067pt;}
.y8_c00407{bottom:883.947067pt;}
.y7_c00407{bottom:914.587067pt;}
.y6_c00407{bottom:945.147067pt;}
.y5_c00407{bottom:983.787067pt;}
.y4_c00407{bottom:1014.347067pt;}
.y1_c00407{bottom:1063.867067pt;}
.h2_c00407{height:42.656250pt;}
.h6_c00407{height:44.388750pt;}
.h1_c00407{height:44.724687pt;}
.h3_c00407{height:50.062500pt;}
.h4_c00407{height:53.562500pt;}
.h5_c00407{height:57.894063pt;}
.h0_c00407{height:1122.666667pt;}
.w1_c00407{width:793.333333pt;}
.w0_c00407{width:793.626667pt;}
.x0_c00407{left:0.000000pt;}
.x4_c00407{left:113.440000pt;}
.x5_c00407{left:160.640000pt;}
.x3_c00407{left:386.880000pt;}
.x2_c00407{left:396.880000pt;}
.x1_c00407{left:443.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00408;src:url('chunks/assets/font_daf2756aefc1e11998d0039d.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;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_c00408;src:url('chunks/assets/font_c7980fbb680a8e5abb333ab3.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.100098;font-style: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;}
.v1_c00408{vertical-align:15.840000px;}
.ls2_c00408{letter-spacing:-0.151200px;}
.ls1_c00408{letter-spacing:0.000000px;}
.ls0_c00408{letter-spacing:1212.120000px;}
.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:0.000000px;}
.fc1_c00408{color:rgb(255,255,255);}
.fc0_c00408{color:rgb(0,0,0);}
.fs1_c00408{font-size:54.000000px;}
.fs0_c00408{font-size:72.000000px;}
.y0_c00408{bottom:0.000000px;}
.y2_c00408{bottom:57.450450px;}
.y4_c00408{bottom:1097.760450px;}
.y3_c00408{bottom:1141.140450px;}
.y1_c00408{bottom:1193.250450px;}
.h1_c00408{height:47.988281px;}
.h3_c00408{height:60.257812px;}
.h2_c00408{height:72.160313px;}
.h0_c00408{height:1263.000000px;}
.w1_c00408{width:892.500000px;}
.w0_c00408{width:892.830000px;}
.x0_c00408{left:0.000000px;}
.x1_c00408{left:127.620000px;}
.x2_c00408{left:180.720000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.v1_c00408{vertical-align:14.080000pt;}
.ls2_c00408{letter-spacing:-0.134400pt;}
.ls1_c00408{letter-spacing:0.000000pt;}
.ls0_c00408{letter-spacing:1077.440000pt;}
.ws0_c00408{word-spacing:0.000000pt;}
.fs1_c00408{font-size:48.000000pt;}
.fs0_c00408{font-size:64.000000pt;}
.y0_c00408{bottom:0.000000pt;}
.y2_c00408{bottom:51.067067pt;}
.y4_c00408{bottom:975.787067pt;}
.y3_c00408{bottom:1014.347067pt;}
.y1_c00408{bottom:1060.667067pt;}
.h1_c00408{height:42.656250pt;}
.h3_c00408{height:53.562500pt;}
.h2_c00408{height:64.142500pt;}
.h0_c00408{height:1122.666667pt;}
.w1_c00408{width:793.333333pt;}
.w0_c00408{width:793.626667pt;}
.x0_c00408{left:0.000000pt;}
.x1_c00408{left:113.440000pt;}
.x2_c00408{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_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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00409;src:url('chunks/assets/font_3500771dcbbf9aeeebcc9bb4.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;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_c00409;src:url('chunks/assets/font_53854b1d52acfd2e0228c061.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00409;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00409;src:url('chunks/assets/font_a91c4852f41513fb2e42144e.woff2')format("woff");}.ff5_c00409{font-family:ff5_c00409;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00409;src:url('chunks/assets/font_20b64ffb0b492b31c7917d3b.woff2')format("woff");}.ff6_c00409{font-family:ff6_c00409;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_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;}
.v1_c00409{vertical-align:15.840000px;}
.v2_c00409{vertical-align:29.880000px;}
.lsd_c00409{letter-spacing:-0.151200px;}
.ls14_c00409{letter-spacing:-0.028800px;}
.ls11_c00409{letter-spacing:-0.021600px;}
.ls13_c00409{letter-spacing:-0.014400px;}
.lse_c00409{letter-spacing:-0.010800px;}
.ls16_c00409{letter-spacing:-0.007776px;}
.ls12_c00409{letter-spacing:-0.007200px;}
.lsc_c00409{letter-spacing:0.000000px;}
.ls2_c00409{letter-spacing:0.007200px;}
.lsf_c00409{letter-spacing:0.010800px;}
.ls5_c00409{letter-spacing:0.014364px;}
.ls3_c00409{letter-spacing:0.014400px;}
.lsb_c00409{letter-spacing:0.015840px;}
.lsa_c00409{letter-spacing:0.023940px;}
.ls15_c00409{letter-spacing:0.036000px;}
.ls7_c00409{letter-spacing:0.043092px;}
.ls10_c00409{letter-spacing:0.043200px;}
.ls4_c00409{letter-spacing:0.045720px;}
.ls9_c00409{letter-spacing:0.062244px;}
.ls8_c00409{letter-spacing:0.086184px;}
.ls6_c00409{letter-spacing:0.104040px;}
.ls0_c00409{letter-spacing:1212.120000px;}
.ls1_c00409{letter-spacing:1967.976000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00409{word-spacing:-10.800864px;}
.ws3_c00409{word-spacing:-0.054000px;}
.ws1b_c00409{word-spacing:-0.004788px;}
.ws1_c00409{word-spacing:0.000000px;}
.ws2_c00409{word-spacing:0.010800px;}
.wsd_c00409{word-spacing:0.014400px;}
.ws15_c00409{word-spacing:0.043200px;}
.ws8_c00409{word-spacing:0.057600px;}
.ws14_c00409{word-spacing:0.079200px;}
.ws19_c00409{word-spacing:2.092356px;}
.ws1a_c00409{word-spacing:2.116296px;}
.ws18_c00409{word-spacing:2.135448px;}
.ws16_c00409{word-spacing:2.164176px;}
.ws17_c00409{word-spacing:2.519424px;}
.ws7_c00409{word-spacing:3.261600px;}
.ws6_c00409{word-spacing:3.556800px;}
.ws5_c00409{word-spacing:3.592800px;}
.ws13_c00409{word-spacing:6.804000px;}
.ws11_c00409{word-spacing:6.847200px;}
.ws12_c00409{word-spacing:6.897600px;}
.ws10_c00409{word-spacing:7.927200px;}
.wsf_c00409{word-spacing:7.992000px;}
.ws9_c00409{word-spacing:8.287200px;}
.wsa_c00409{word-spacing:8.373600px;}
.wsc_c00409{word-spacing:10.461600px;}
.wsb_c00409{word-spacing:10.605600px;}
.ws4_c00409{word-spacing:11.901600px;}
.wse_c00409{word-spacing:17.308800px;}
._0_c00409{width:1.008000px;}
.fc0_c00409{color:rgb(0,0,0);}
.fs5_c00409{font-size:38.880000px;}
.fs3_c00409{font-size:42.120000px;}
.fs4_c00409{font-size:47.880000px;}
.fs1_c00409{font-size:54.000000px;}
.fs0_c00409{font-size:72.000000px;}
.fs2_c00409{font-size:108.000000px;}
.y0_c00409{bottom:0.000000px;}
.y2_c00409{bottom:57.450450px;}
.y15_c00409{bottom:113.699190px;}
.y14_c00409{bottom:127.560450px;}
.y13_c00409{bottom:142.770450px;}
.y12_c00409{bottom:163.470450px;}
.y11_c00409{bottom:184.170450px;}
.y10_c00409{bottom:273.270450px;}
.yf_c00409{bottom:307.650450px;}
.ye_c00409{bottom:342.120450px;}
.yd_c00409{bottom:376.500450px;}
.yc_c00409{bottom:419.970450px;}
.yb_c00409{bottom:454.350450px;}
.ya_c00409{bottom:488.820450px;}
.y9_c00409{bottom:532.200450px;}
.y8_c00409{bottom:566.670450px;}
.y7_c00409{bottom:601.050450px;}
.y6_c00409{bottom:635.520450px;}
.y5_c00409{bottom:790.302450px;}
.y4_c00409{bottom:835.851450px;}
.y3_c00409{bottom:881.400450px;}
.y1_c00409{bottom:1193.250450px;}
.h1_c00409{height:47.988281px;}
.h7_c00409{height:49.937344px;}
.h8_c00409{height:49.942384px;}
.h5_c00409{height:60.257812px;}
.h6_c00409{height:65.130820px;}
.h2_c00409{height:72.160313px;}
.h4_c00409{height:90.492188px;}
.h3_c00409{height:112.640625px;}
.h0_c00409{height:1263.000000px;}
.w1_c00409{width:892.500000px;}
.w0_c00409{width:892.830000px;}
.x0_c00409{left:0.000000px;}
.x2_c00409{left:121.950000px;}
.x1_c00409{left:127.620000px;}
.x4_c00409{left:141.120360px;}
.x3_c00409{left:180.720000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.v1_c00409{vertical-align:14.080000pt;}
.v2_c00409{vertical-align:26.560000pt;}
.lsd_c00409{letter-spacing:-0.134400pt;}
.ls14_c00409{letter-spacing:-0.025600pt;}
.ls11_c00409{letter-spacing:-0.019200pt;}
.ls13_c00409{letter-spacing:-0.012800pt;}
.lse_c00409{letter-spacing:-0.009600pt;}
.ls16_c00409{letter-spacing:-0.006912pt;}
.ls12_c00409{letter-spacing:-0.006400pt;}
.lsc_c00409{letter-spacing:0.000000pt;}
.ls2_c00409{letter-spacing:0.006400pt;}
.lsf_c00409{letter-spacing:0.009600pt;}
.ls5_c00409{letter-spacing:0.012768pt;}
.ls3_c00409{letter-spacing:0.012800pt;}
.lsb_c00409{letter-spacing:0.014080pt;}
.lsa_c00409{letter-spacing:0.021280pt;}
.ls15_c00409{letter-spacing:0.032000pt;}
.ls7_c00409{letter-spacing:0.038304pt;}
.ls10_c00409{letter-spacing:0.038400pt;}
.ls4_c00409{letter-spacing:0.040640pt;}
.ls9_c00409{letter-spacing:0.055328pt;}
.ls8_c00409{letter-spacing:0.076608pt;}
.ls6_c00409{letter-spacing:0.092480pt;}
.ls0_c00409{letter-spacing:1077.440000pt;}
.ls1_c00409{letter-spacing:1749.312000pt;}
.ws0_c00409{word-spacing:-9.600768pt;}
.ws3_c00409{word-spacing:-0.048000pt;}
.ws1b_c00409{word-spacing:-0.004256pt;}
.ws1_c00409{word-spacing:0.000000pt;}
.ws2_c00409{word-spacing:0.009600pt;}
.wsd_c00409{word-spacing:0.012800pt;}
.ws15_c00409{word-spacing:0.038400pt;}
.ws8_c00409{word-spacing:0.051200pt;}
.ws14_c00409{word-spacing:0.070400pt;}
.ws19_c00409{word-spacing:1.859872pt;}
.ws1a_c00409{word-spacing:1.881152pt;}
.ws18_c00409{word-spacing:1.898176pt;}
.ws16_c00409{word-spacing:1.923712pt;}
.ws17_c00409{word-spacing:2.239488pt;}
.ws7_c00409{word-spacing:2.899200pt;}
.ws6_c00409{word-spacing:3.161600pt;}
.ws5_c00409{word-spacing:3.193600pt;}
.ws13_c00409{word-spacing:6.048000pt;}
.ws11_c00409{word-spacing:6.086400pt;}
.ws12_c00409{word-spacing:6.131200pt;}
.ws10_c00409{word-spacing:7.046400pt;}
.wsf_c00409{word-spacing:7.104000pt;}
.ws9_c00409{word-spacing:7.366400pt;}
.wsa_c00409{word-spacing:7.443200pt;}
.wsc_c00409{word-spacing:9.299200pt;}
.wsb_c00409{word-spacing:9.427200pt;}
.ws4_c00409{word-spacing:10.579200pt;}
.wse_c00409{word-spacing:15.385600pt;}
._0_c00409{width:0.896000pt;}
.fs5_c00409{font-size:34.560000pt;}
.fs3_c00409{font-size:37.440000pt;}
.fs4_c00409{font-size:42.560000pt;}
.fs1_c00409{font-size:48.000000pt;}
.fs0_c00409{font-size:64.000000pt;}
.fs2_c00409{font-size:96.000000pt;}
.y0_c00409{bottom:0.000000pt;}
.y2_c00409{bottom:51.067067pt;}
.y15_c00409{bottom:101.065947pt;}
.y14_c00409{bottom:113.387067pt;}
.y13_c00409{bottom:126.907067pt;}
.y12_c00409{bottom:145.307067pt;}
.y11_c00409{bottom:163.707067pt;}
.y10_c00409{bottom:242.907067pt;}
.yf_c00409{bottom:273.467067pt;}
.ye_c00409{bottom:304.107067pt;}
.yd_c00409{bottom:334.667067pt;}
.yc_c00409{bottom:373.307067pt;}
.yb_c00409{bottom:403.867067pt;}
.ya_c00409{bottom:434.507067pt;}
.y9_c00409{bottom:473.067067pt;}
.y8_c00409{bottom:503.707067pt;}
.y7_c00409{bottom:534.267067pt;}
.y6_c00409{bottom:564.907067pt;}
.y5_c00409{bottom:702.491067pt;}
.y4_c00409{bottom:742.979067pt;}
.y3_c00409{bottom:783.467067pt;}
.y1_c00409{bottom:1060.667067pt;}
.h1_c00409{height:42.656250pt;}
.h7_c00409{height:44.388750pt;}
.h8_c00409{height:44.393230pt;}
.h5_c00409{height:53.562500pt;}
.h6_c00409{height:57.894063pt;}
.h2_c00409{height:64.142500pt;}
.h4_c00409{height:80.437500pt;}
.h3_c00409{height:100.125000pt;}
.h0_c00409{height:1122.666667pt;}
.w1_c00409{width:793.333333pt;}
.w0_c00409{width:793.626667pt;}
.x0_c00409{left:0.000000pt;}
.x2_c00409{left:108.400000pt;}
.x1_c00409{left:113.440000pt;}
.x4_c00409{left:125.440320pt;}
.x3_c00409{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_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_b5053b41b45039370d6e618b.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00410;src:url('chunks/assets/font_a4c85cdea2c2bdd1dc56a069.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00410;src:url('chunks/assets/font_c2a0cb9a87b74c2a6b892825.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00410;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00410{font-family:ff5_c00410;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_c00410;src:url('chunks/assets/font_b4272000e51497c7e2bc54a0.woff2')format("woff");}.ff6_c00410{font-family:ff6_c00410;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_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;}
.v1_c00410{vertical-align:15.840000px;}
.v2_c00410{vertical-align:29.880000px;}
.ls17_c00410{letter-spacing:-0.151200px;}
.ls1e_c00410{letter-spacing:-0.144000px;}
.ls21_c00410{letter-spacing:-0.092268px;}
.ls20_c00410{letter-spacing:-0.072000px;}
.ls25_c00410{letter-spacing:-0.062244px;}
.ls19_c00410{letter-spacing:-0.043200px;}
.ls22_c00410{letter-spacing:-0.039060px;}
.ls1a_c00410{letter-spacing:-0.036000px;}
.ls23_c00410{letter-spacing:-0.028800px;}
.ls1f_c00410{letter-spacing:-0.021600px;}
.ls18_c00410{letter-spacing:-0.014400px;}
.ls27_c00410{letter-spacing:-0.014364px;}
.ls2b_c00410{letter-spacing:-0.009576px;}
.ls2a_c00410{letter-spacing:-0.007776px;}
.ls1c_c00410{letter-spacing:-0.007200px;}
.ls26_c00410{letter-spacing:-0.004788px;}
.ls1d_c00410{letter-spacing:0.000000px;}
.ls4_c00410{letter-spacing:0.007200px;}
.lsd_c00410{letter-spacing:0.009576px;}
.lsb_c00410{letter-spacing:0.014364px;}
.ls8_c00410{letter-spacing:0.014400px;}
.ls29_c00410{letter-spacing:0.019152px;}
.ls5_c00410{letter-spacing:0.021600px;}
.lsf_c00410{letter-spacing:0.023940px;}
.ls7_c00410{letter-spacing:0.028800px;}
.ls10_c00410{letter-spacing:0.033516px;}
.lsa_c00410{letter-spacing:0.036000px;}
.lse_c00410{letter-spacing:0.038304px;}
.ls12_c00410{letter-spacing:0.043092px;}
.ls6_c00410{letter-spacing:0.045120px;}
.ls3_c00410{letter-spacing:0.045720px;}
.ls13_c00410{letter-spacing:0.047880px;}
.ls0_c00410{letter-spacing:0.048096px;}
.ls14_c00410{letter-spacing:0.052668px;}
.ls15_c00410{letter-spacing:0.057456px;}
.ls28_c00410{letter-spacing:0.071820px;}
.ls1b_c00410{letter-spacing:0.093600px;}
.ls16_c00410{letter-spacing:0.095760px;}
.lsc_c00410{letter-spacing:0.104040px;}
.ls2_c00410{letter-spacing:0.115200px;}
.ls24_c00410{letter-spacing:0.357696px;}
.ls11_c00410{letter-spacing:3.591000px;}
.ls9_c00410{letter-spacing:23.452200px;}
.ls1_c00410{letter-spacing:1212.120000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00410{word-spacing:-20.877732px;}
.ws0_c00410{word-spacing:-18.115200px;}
.ws1_c00410{word-spacing:-18.028800px;}
.wsa_c00410{word-spacing:-13.406400px;}
.ws8_c00410{word-spacing:-13.353732px;}
.ws7_c00410{word-spacing:-13.348944px;}
.ws5_c00410{word-spacing:-13.320216px;}
.ws9_c00410{word-spacing:-13.310640px;}
.ws4_c00410{word-spacing:-13.248396px;}
.ws3_c00410{word-spacing:-11.166336px;}
.ws6_c00410{word-spacing:-10.808640px;}
.ws2c_c00410{word-spacing:-0.195300px;}
.ws2d_c00410{word-spacing:-0.109368px;}
.ws12_c00410{word-spacing:-0.093600px;}
.ws3d_c00410{word-spacing:-0.028728px;}
.ws35_c00410{word-spacing:-0.019152px;}
.ws37_c00410{word-spacing:-0.014364px;}
.ws36_c00410{word-spacing:-0.004788px;}
.wsc_c00410{word-spacing:0.000000px;}
.ws32_c00410{word-spacing:0.004788px;}
.ws33_c00410{word-spacing:0.009576px;}
.ws2b_c00410{word-spacing:0.014400px;}
.ws34_c00410{word-spacing:0.019152px;}
.ws1b_c00410{word-spacing:0.021600px;}
.ws3b_c00410{word-spacing:0.023940px;}
.ws40_c00410{word-spacing:0.028728px;}
.ws3c_c00410{word-spacing:0.033516px;}
.wsb_c00410{word-spacing:0.042084px;}
.ws21_c00410{word-spacing:0.734400px;}
.ws22_c00410{word-spacing:0.792000px;}
.ws20_c00410{word-spacing:2.152800px;}
.ws1f_c00410{word-spacing:2.174400px;}
.ws2e_c00410{word-spacing:2.887200px;}
.ws23_c00410{word-spacing:3.232800px;}
.ws24_c00410{word-spacing:3.240000px;}
.ws2f_c00410{word-spacing:3.261600px;}
.ws30_c00410{word-spacing:3.283200px;}
.ws3f_c00410{word-spacing:3.562272px;}
.ws39_c00410{word-spacing:3.581424px;}
.ws38_c00410{word-spacing:3.605364px;}
.ws3e_c00410{word-spacing:3.610152px;}
.ws3a_c00410{word-spacing:3.624516px;}
.ws1e_c00410{word-spacing:5.385600px;}
.ws1d_c00410{word-spacing:5.428800px;}
.ws2a_c00410{word-spacing:6.156000px;}
.ws27_c00410{word-spacing:7.207200px;}
.wsd_c00410{word-spacing:7.214400px;}
.wse_c00410{word-spacing:7.243200px;}
.ws26_c00410{word-spacing:7.293600px;}
.ws28_c00410{word-spacing:8.265600px;}
.ws29_c00410{word-spacing:8.373600px;}
.ws19_c00410{word-spacing:8.935200px;}
.ws18_c00410{word-spacing:8.971200px;}
.ws1a_c00410{word-spacing:9.072000px;}
.ws10_c00410{word-spacing:10.454400px;}
.ws11_c00410{word-spacing:10.461600px;}
.ws13_c00410{word-spacing:12.232800px;}
.ws14_c00410{word-spacing:12.319200px;}
.wsf_c00410{word-spacing:17.676000px;}
.ws1c_c00410{word-spacing:18.352800px;}
.ws16_c00410{word-spacing:21.268800px;}
.ws15_c00410{word-spacing:21.297600px;}
.ws17_c00410{word-spacing:21.384000px;}
.ws31_c00410{word-spacing:22.377600px;}
.ws25_c00410{word-spacing:30.254400px;}
._0_c00410{margin-left:-1.322640px;}
._1_c00410{width:1.008000px;}
._2_c00410{width:3.954564px;}
.fc0_c00410{color:rgb(0,0,0);}
.fs7_c00410{font-size:38.880000px;}
.fs3_c00410{font-size:42.120000px;}
.fs6_c00410{font-size:47.880000px;}
.fs2_c00410{font-size:54.000000px;}
.fs0_c00410{font-size:60.120000px;}
.fs1_c00410{font-size:72.000000px;}
.fs5_c00410{font-size:78.120000px;}
.fs4_c00410{font-size:83.880000px;}
.y0_c00410{bottom:0.000000px;}
.y2_c00410{bottom:57.450450px;}
.y24_c00410{bottom:113.699190px;}
.y23_c00410{bottom:127.564230px;}
.y22_c00410{bottom:145.834230px;}
.y21_c00410{bottom:164.102970px;}
.y20_c00410{bottom:182.464950px;}
.y1f_c00410{bottom:196.234230px;}
.y1e_c00410{bottom:214.498470px;}
.y1d_c00410{bottom:232.860450px;}
.y1c_c00410{bottom:248.070450px;}
.y1b_c00410{bottom:268.770450px;}
.y1a_c00410{bottom:289.470450px;}
.y19_c00410{bottom:334.650450px;}
.y18_c00410{bottom:369.120450px;}
.y17_c00410{bottom:403.500450px;}
.y16_c00410{bottom:437.970450px;}
.y15_c00410{bottom:482.970450px;}
.y14_c00410{bottom:537.960450px;}
.y13_c00410{bottom:572.340450px;}
.y12_c00410{bottom:606.810450px;}
.y11_c00410{bottom:641.190450px;}
.y10_c00410{bottom:675.660450px;}
.yf_c00410{bottom:710.040450px;}
.ye_c00410{bottom:744.510450px;}
.yd_c00410{bottom:778.890450px;}
.yc_c00410{bottom:813.360450px;}
.yb_c00410{bottom:847.740450px;}
.ya_c00410{bottom:891.210450px;}
.y9_c00410{bottom:925.590450px;}
.y8_c00410{bottom:960.060450px;}
.y7_c00410{bottom:994.440450px;}
.y6_c00410{bottom:1037.910450px;}
.y5_c00410{bottom:1072.290450px;}
.y4_c00410{bottom:1106.760450px;}
.y3_c00410{bottom:1141.140450px;}
.y1_c00410{bottom:1196.850450px;}
.h6_c00410{height:47.988281px;}
.h7_c00410{height:49.937344px;}
.h8_c00410{height:49.945264px;}
.h1_c00410{height:50.315273px;}
.h3_c00410{height:60.257812px;}
.h4_c00410{height:65.130820px;}
.h2_c00410{height:72.160312px;}
.h5_c00410{height:87.484219px;}
.h0_c00410{height:1263.000000px;}
.w1_c00410{width:892.500000px;}
.w0_c00410{width:892.830000px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:127.620000px;}
.x3_c00410{left:141.119190px;}
.x2_c00410{left:180.720000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.v1_c00410{vertical-align:14.080000pt;}
.v2_c00410{vertical-align:26.560000pt;}
.ls17_c00410{letter-spacing:-0.134400pt;}
.ls1e_c00410{letter-spacing:-0.128000pt;}
.ls21_c00410{letter-spacing:-0.082016pt;}
.ls20_c00410{letter-spacing:-0.064000pt;}
.ls25_c00410{letter-spacing:-0.055328pt;}
.ls19_c00410{letter-spacing:-0.038400pt;}
.ls22_c00410{letter-spacing:-0.034720pt;}
.ls1a_c00410{letter-spacing:-0.032000pt;}
.ls23_c00410{letter-spacing:-0.025600pt;}
.ls1f_c00410{letter-spacing:-0.019200pt;}
.ls18_c00410{letter-spacing:-0.012800pt;}
.ls27_c00410{letter-spacing:-0.012768pt;}
.ls2b_c00410{letter-spacing:-0.008512pt;}
.ls2a_c00410{letter-spacing:-0.006912pt;}
.ls1c_c00410{letter-spacing:-0.006400pt;}
.ls26_c00410{letter-spacing:-0.004256pt;}
.ls1d_c00410{letter-spacing:0.000000pt;}
.ls4_c00410{letter-spacing:0.006400pt;}
.lsd_c00410{letter-spacing:0.008512pt;}
.lsb_c00410{letter-spacing:0.012768pt;}
.ls8_c00410{letter-spacing:0.012800pt;}
.ls29_c00410{letter-spacing:0.017024pt;}
.ls5_c00410{letter-spacing:0.019200pt;}
.lsf_c00410{letter-spacing:0.021280pt;}
.ls7_c00410{letter-spacing:0.025600pt;}
.ls10_c00410{letter-spacing:0.029792pt;}
.lsa_c00410{letter-spacing:0.032000pt;}
.lse_c00410{letter-spacing:0.034048pt;}
.ls12_c00410{letter-spacing:0.038304pt;}
.ls6_c00410{letter-spacing:0.040107pt;}
.ls3_c00410{letter-spacing:0.040640pt;}
.ls13_c00410{letter-spacing:0.042560pt;}
.ls0_c00410{letter-spacing:0.042752pt;}
.ls14_c00410{letter-spacing:0.046816pt;}
.ls15_c00410{letter-spacing:0.051072pt;}
.ls28_c00410{letter-spacing:0.063840pt;}
.ls1b_c00410{letter-spacing:0.083200pt;}
.ls16_c00410{letter-spacing:0.085120pt;}
.lsc_c00410{letter-spacing:0.092480pt;}
.ls2_c00410{letter-spacing:0.102400pt;}
.ls24_c00410{letter-spacing:0.317952pt;}
.ls11_c00410{letter-spacing:3.192000pt;}
.ls9_c00410{letter-spacing:20.846400pt;}
.ls1_c00410{letter-spacing:1077.440000pt;}
.ws2_c00410{word-spacing:-18.557984pt;}
.ws0_c00410{word-spacing:-16.102400pt;}
.ws1_c00410{word-spacing:-16.025600pt;}
.wsa_c00410{word-spacing:-11.916800pt;}
.ws8_c00410{word-spacing:-11.869984pt;}
.ws7_c00410{word-spacing:-11.865728pt;}
.ws5_c00410{word-spacing:-11.840192pt;}
.ws9_c00410{word-spacing:-11.831680pt;}
.ws4_c00410{word-spacing:-11.776352pt;}
.ws3_c00410{word-spacing:-9.925632pt;}
.ws6_c00410{word-spacing:-9.607680pt;}
.ws2c_c00410{word-spacing:-0.173600pt;}
.ws2d_c00410{word-spacing:-0.097216pt;}
.ws12_c00410{word-spacing:-0.083200pt;}
.ws3d_c00410{word-spacing:-0.025536pt;}
.ws35_c00410{word-spacing:-0.017024pt;}
.ws37_c00410{word-spacing:-0.012768pt;}
.ws36_c00410{word-spacing:-0.004256pt;}
.wsc_c00410{word-spacing:0.000000pt;}
.ws32_c00410{word-spacing:0.004256pt;}
.ws33_c00410{word-spacing:0.008512pt;}
.ws2b_c00410{word-spacing:0.012800pt;}
.ws34_c00410{word-spacing:0.017024pt;}
.ws1b_c00410{word-spacing:0.019200pt;}
.ws3b_c00410{word-spacing:0.021280pt;}
.ws40_c00410{word-spacing:0.025536pt;}
.ws3c_c00410{word-spacing:0.029792pt;}
.wsb_c00410{word-spacing:0.037408pt;}
.ws21_c00410{word-spacing:0.652800pt;}
.ws22_c00410{word-spacing:0.704000pt;}
.ws20_c00410{word-spacing:1.913600pt;}
.ws1f_c00410{word-spacing:1.932800pt;}
.ws2e_c00410{word-spacing:2.566400pt;}
.ws23_c00410{word-spacing:2.873600pt;}
.ws24_c00410{word-spacing:2.880000pt;}
.ws2f_c00410{word-spacing:2.899200pt;}
.ws30_c00410{word-spacing:2.918400pt;}
.ws3f_c00410{word-spacing:3.166464pt;}
.ws39_c00410{word-spacing:3.183488pt;}
.ws38_c00410{word-spacing:3.204768pt;}
.ws3e_c00410{word-spacing:3.209024pt;}
.ws3a_c00410{word-spacing:3.221792pt;}
.ws1e_c00410{word-spacing:4.787200pt;}
.ws1d_c00410{word-spacing:4.825600pt;}
.ws2a_c00410{word-spacing:5.472000pt;}
.ws27_c00410{word-spacing:6.406400pt;}
.wsd_c00410{word-spacing:6.412800pt;}
.wse_c00410{word-spacing:6.438400pt;}
.ws26_c00410{word-spacing:6.483200pt;}
.ws28_c00410{word-spacing:7.347200pt;}
.ws29_c00410{word-spacing:7.443200pt;}
.ws19_c00410{word-spacing:7.942400pt;}
.ws18_c00410{word-spacing:7.974400pt;}
.ws1a_c00410{word-spacing:8.064000pt;}
.ws10_c00410{word-spacing:9.292800pt;}
.ws11_c00410{word-spacing:9.299200pt;}
.ws13_c00410{word-spacing:10.873600pt;}
.ws14_c00410{word-spacing:10.950400pt;}
.wsf_c00410{word-spacing:15.712000pt;}
.ws1c_c00410{word-spacing:16.313600pt;}
.ws16_c00410{word-spacing:18.905600pt;}
.ws15_c00410{word-spacing:18.931200pt;}
.ws17_c00410{word-spacing:19.008000pt;}
.ws31_c00410{word-spacing:19.891200pt;}
.ws25_c00410{word-spacing:26.892800pt;}
._0_c00410{margin-left:-1.175680pt;}
._1_c00410{width:0.896000pt;}
._2_c00410{width:3.515168pt;}
.fs7_c00410{font-size:34.560000pt;}
.fs3_c00410{font-size:37.440000pt;}
.fs6_c00410{font-size:42.560000pt;}
.fs2_c00410{font-size:48.000000pt;}
.fs0_c00410{font-size:53.440000pt;}
.fs1_c00410{font-size:64.000000pt;}
.fs5_c00410{font-size:69.440000pt;}
.fs4_c00410{font-size:74.560000pt;}
.y0_c00410{bottom:0.000000pt;}
.y2_c00410{bottom:51.067067pt;}
.y24_c00410{bottom:101.065947pt;}
.y23_c00410{bottom:113.390427pt;}
.y22_c00410{bottom:129.630427pt;}
.y21_c00410{bottom:145.869307pt;}
.y20_c00410{bottom:162.191067pt;}
.y1f_c00410{bottom:174.430427pt;}
.y1e_c00410{bottom:190.665307pt;}
.y1d_c00410{bottom:206.987067pt;}
.y1c_c00410{bottom:220.507067pt;}
.y1b_c00410{bottom:238.907067pt;}
.y1a_c00410{bottom:257.307067pt;}
.y19_c00410{bottom:297.467067pt;}
.y18_c00410{bottom:328.107067pt;}
.y17_c00410{bottom:358.667067pt;}
.y16_c00410{bottom:389.307067pt;}
.y15_c00410{bottom:429.307067pt;}
.y14_c00410{bottom:478.187067pt;}
.y13_c00410{bottom:508.747067pt;}
.y12_c00410{bottom:539.387067pt;}
.y11_c00410{bottom:569.947067pt;}
.y10_c00410{bottom:600.587067pt;}
.yf_c00410{bottom:631.147067pt;}
.ye_c00410{bottom:661.787067pt;}
.yd_c00410{bottom:692.347067pt;}
.yc_c00410{bottom:722.987067pt;}
.yb_c00410{bottom:753.547067pt;}
.ya_c00410{bottom:792.187067pt;}
.y9_c00410{bottom:822.747067pt;}
.y8_c00410{bottom:853.387067pt;}
.y7_c00410{bottom:883.947067pt;}
.y6_c00410{bottom:922.587067pt;}
.y5_c00410{bottom:953.147067pt;}
.y4_c00410{bottom:983.787067pt;}
.y3_c00410{bottom:1014.347067pt;}
.y1_c00410{bottom:1063.867067pt;}
.h6_c00410{height:42.656250pt;}
.h7_c00410{height:44.388750pt;}
.h8_c00410{height:44.395790pt;}
.h1_c00410{height:44.724687pt;}
.h3_c00410{height:53.562500pt;}
.h4_c00410{height:57.894063pt;}
.h2_c00410{height:64.142500pt;}
.h5_c00410{height:77.763750pt;}
.h0_c00410{height:1122.666667pt;}
.w1_c00410{width:793.333333pt;}
.w0_c00410{width:793.626667pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:113.440000pt;}
.x3_c00410{left:125.439280pt;}
.x2_c00410{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_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_a8dadfcf3fc0286fa4013c49.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00411;src:url('chunks/assets/font_fb96f685d0679c20a6b34e8b.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00411;src:url('chunks/assets/font_d6a985e3fbc7777b5a04f2e2.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;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_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;}
.v1_c00411{vertical-align:29.880000px;}
.ls10_c00411{letter-spacing:-0.151200px;}
.lse_c00411{letter-spacing:-0.144288px;}
.ls13_c00411{letter-spacing:-0.108000px;}
.ls18_c00411{letter-spacing:-0.057600px;}
.ls17_c00411{letter-spacing:-0.050400px;}
.ls1b_c00411{letter-spacing:-0.036000px;}
.ls14_c00411{letter-spacing:-0.028800px;}
.ls1a_c00411{letter-spacing:-0.021600px;}
.ls11_c00411{letter-spacing:-0.014400px;}
.ls12_c00411{letter-spacing:-0.007200px;}
.ls1d_c00411{letter-spacing:-0.003888px;}
.lsf_c00411{letter-spacing:0.000000px;}
.ls6_c00411{letter-spacing:0.003888px;}
.ls3_c00411{letter-spacing:0.007200px;}
.lsa_c00411{letter-spacing:0.009576px;}
.ls5_c00411{letter-spacing:0.014364px;}
.ls1_c00411{letter-spacing:0.014400px;}
.lsb_c00411{letter-spacing:0.018720px;}
.ls4_c00411{letter-spacing:0.021600px;}
.lsd_c00411{letter-spacing:0.023940px;}
.ls9_c00411{letter-spacing:0.033516px;}
.ls7_c00411{letter-spacing:0.043092px;}
.ls15_c00411{letter-spacing:0.043200px;}
.ls2_c00411{letter-spacing:0.045720px;}
.ls8_c00411{letter-spacing:0.047880px;}
.ls0_c00411{letter-spacing:0.048096px;}
.ls19_c00411{letter-spacing:0.054756px;}
.ls1c_c00411{letter-spacing:0.062244px;}
.ls16_c00411{letter-spacing:0.093600px;}
.lsc_c00411{letter-spacing:0.104040px;}
.ls1e_c00411{letter-spacing:0.357696px;}
.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;}
}
.ws2_c00411{word-spacing:-18.000000px;}
.ws0_c00411{word-spacing:-17.942400px;}
.ws4_c00411{word-spacing:-13.320216px;}
.ws5_c00411{word-spacing:-11.166336px;}
.ws3_c00411{word-spacing:-10.812528px;}
.ws1_c00411{word-spacing:-10.584756px;}
.ws7_c00411{word-spacing:-0.126252px;}
.ws11_c00411{word-spacing:-0.093600px;}
.ws2e_c00411{word-spacing:-0.043092px;}
.ws2f_c00411{word-spacing:-0.028728px;}
.ws2d_c00411{word-spacing:-0.023940px;}
.ws30_c00411{word-spacing:-0.014364px;}
.ws15_c00411{word-spacing:-0.007200px;}
.ws31_c00411{word-spacing:-0.004788px;}
.ws8_c00411{word-spacing:0.000000px;}
.ws2c_c00411{word-spacing:0.004788px;}
.ws10_c00411{word-spacing:0.014400px;}
.ws2b_c00411{word-spacing:0.021600px;}
.ws6_c00411{word-spacing:0.042084px;}
.ws20_c00411{word-spacing:0.057600px;}
.wsf_c00411{word-spacing:1.756800px;}
.wsd_c00411{word-spacing:1.807200px;}
.wse_c00411{word-spacing:1.944000px;}
.ws18_c00411{word-spacing:3.189600px;}
.ws17_c00411{word-spacing:3.261600px;}
.ws19_c00411{word-spacing:3.636000px;}
.ws1a_c00411{word-spacing:3.664800px;}
.ws1c_c00411{word-spacing:4.024800px;}
.ws1d_c00411{word-spacing:4.125600px;}
.ws26_c00411{word-spacing:5.436000px;}
.ws27_c00411{word-spacing:5.500800px;}
.ws22_c00411{word-spacing:5.752800px;}
.ws23_c00411{word-spacing:5.788800px;}
.ws1b_c00411{word-spacing:7.207200px;}
.ws14_c00411{word-spacing:8.596800px;}
.wsa_c00411{word-spacing:8.647200px;}
.ws13_c00411{word-spacing:8.690400px;}
.ws1e_c00411{word-spacing:9.648000px;}
.ws21_c00411{word-spacing:9.770400px;}
.ws1f_c00411{word-spacing:9.792000px;}
.ws25_c00411{word-spacing:11.160000px;}
.ws24_c00411{word-spacing:11.196000px;}
.wsb_c00411{word-spacing:14.025600px;}
.wsc_c00411{word-spacing:14.112000px;}
.ws2a_c00411{word-spacing:15.436800px;}
.ws29_c00411{word-spacing:15.588000px;}
.ws16_c00411{word-spacing:17.654400px;}
.ws12_c00411{word-spacing:32.508000px;}
.ws28_c00411{word-spacing:35.265600px;}
.ws9_c00411{word-spacing:36.374400px;}
._0_c00411{margin-left:-1.142280px;}
._1_c00411{width:1.292580px;}
.fc0_c00411{color:rgb(0,0,0);}
.fs5_c00411{font-size:38.880000px;}
.fs3_c00411{font-size:42.120000px;}
.fs4_c00411{font-size:47.880000px;}
.fs2_c00411{font-size:54.000000px;}
.fs0_c00411{font-size:60.120000px;}
.fs1_c00411{font-size:72.000000px;}
.y0_c00411{bottom:0.000000px;}
.y2_c00411{bottom:57.450450px;}
.y3_c00411{bottom:61.410450px;}
.y24_c00411{bottom:113.698470px;}
.y23_c00411{bottom:132.069810px;}
.y22_c00411{bottom:150.336030px;}
.y21_c00411{bottom:168.602250px;}
.y20_c00411{bottom:186.964230px;}
.y1f_c00411{bottom:205.234230px;}
.y1e_c00411{bottom:223.500450px;}
.y1d_c00411{bottom:238.710450px;}
.y1c_c00411{bottom:259.410450px;}
.y1b_c00411{bottom:280.110600px;}
.y1a_c00411{bottom:347.790600px;}
.y19_c00411{bottom:382.260600px;}
.y18_c00411{bottom:416.640600px;}
.y17_c00411{bottom:460.110450px;}
.y16_c00411{bottom:494.490450px;}
.y15_c00411{bottom:528.960450px;}
.y14_c00411{bottom:563.340450px;}
.y13_c00411{bottom:597.810450px;}
.y12_c00411{bottom:641.190450px;}
.y11_c00411{bottom:675.660450px;}
.y10_c00411{bottom:710.040450px;}
.yf_c00411{bottom:744.510450px;}
.ye_c00411{bottom:778.890600px;}
.yd_c00411{bottom:813.360450px;}
.yc_c00411{bottom:847.740450px;}
.yb_c00411{bottom:891.210450px;}
.ya_c00411{bottom:925.590450px;}
.y9_c00411{bottom:960.060450px;}
.y8_c00411{bottom:1003.440450px;}
.y7_c00411{bottom:1037.910450px;}
.y6_c00411{bottom:1072.290450px;}
.y5_c00411{bottom:1106.760450px;}
.y4_c00411{bottom:1141.140450px;}
.y1_c00411{bottom:1196.940450px;}
.h2_c00411{height:47.988281px;}
.h6_c00411{height:49.937344px;}
.h1_c00411{height:50.315273px;}
.h3_c00411{height:56.320312px;}
.h4_c00411{height:60.257812px;}
.h5_c00411{height:65.130820px;}
.h0_c00411{height:1263.000000px;}
.w1_c00411{width:892.500000px;}
.w0_c00411{width:892.830000px;}
.x0_c00411{left:0.000000px;}
.x5_c00411{left:127.620000px;}
.x4_c00411{left:180.720000px;}
.x1_c00411{left:211.500000px;}
.x3_c00411{left:435.240000px;}
.x2_c00411{left:446.490000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.v1_c00411{vertical-align:26.560000pt;}
.ls10_c00411{letter-spacing:-0.134400pt;}
.lse_c00411{letter-spacing:-0.128256pt;}
.ls13_c00411{letter-spacing:-0.096000pt;}
.ls18_c00411{letter-spacing:-0.051200pt;}
.ls17_c00411{letter-spacing:-0.044800pt;}
.ls1b_c00411{letter-spacing:-0.032000pt;}
.ls14_c00411{letter-spacing:-0.025600pt;}
.ls1a_c00411{letter-spacing:-0.019200pt;}
.ls11_c00411{letter-spacing:-0.012800pt;}
.ls12_c00411{letter-spacing:-0.006400pt;}
.ls1d_c00411{letter-spacing:-0.003456pt;}
.lsf_c00411{letter-spacing:0.000000pt;}
.ls6_c00411{letter-spacing:0.003456pt;}
.ls3_c00411{letter-spacing:0.006400pt;}
.lsa_c00411{letter-spacing:0.008512pt;}
.ls5_c00411{letter-spacing:0.012768pt;}
.ls1_c00411{letter-spacing:0.012800pt;}
.lsb_c00411{letter-spacing:0.016640pt;}
.ls4_c00411{letter-spacing:0.019200pt;}
.lsd_c00411{letter-spacing:0.021280pt;}
.ls9_c00411{letter-spacing:0.029792pt;}
.ls7_c00411{letter-spacing:0.038304pt;}
.ls15_c00411{letter-spacing:0.038400pt;}
.ls2_c00411{letter-spacing:0.040640pt;}
.ls8_c00411{letter-spacing:0.042560pt;}
.ls0_c00411{letter-spacing:0.042752pt;}
.ls19_c00411{letter-spacing:0.048672pt;}
.ls1c_c00411{letter-spacing:0.055328pt;}
.ls16_c00411{letter-spacing:0.083200pt;}
.lsc_c00411{letter-spacing:0.092480pt;}
.ls1e_c00411{letter-spacing:0.317952pt;}
.ws2_c00411{word-spacing:-16.000000pt;}
.ws0_c00411{word-spacing:-15.948800pt;}
.ws4_c00411{word-spacing:-11.840192pt;}
.ws5_c00411{word-spacing:-9.925632pt;}
.ws3_c00411{word-spacing:-9.611136pt;}
.ws1_c00411{word-spacing:-9.408672pt;}
.ws7_c00411{word-spacing:-0.112224pt;}
.ws11_c00411{word-spacing:-0.083200pt;}
.ws2e_c00411{word-spacing:-0.038304pt;}
.ws2f_c00411{word-spacing:-0.025536pt;}
.ws2d_c00411{word-spacing:-0.021280pt;}
.ws30_c00411{word-spacing:-0.012768pt;}
.ws15_c00411{word-spacing:-0.006400pt;}
.ws31_c00411{word-spacing:-0.004256pt;}
.ws8_c00411{word-spacing:0.000000pt;}
.ws2c_c00411{word-spacing:0.004256pt;}
.ws10_c00411{word-spacing:0.012800pt;}
.ws2b_c00411{word-spacing:0.019200pt;}
.ws6_c00411{word-spacing:0.037408pt;}
.ws20_c00411{word-spacing:0.051200pt;}
.wsf_c00411{word-spacing:1.561600pt;}
.wsd_c00411{word-spacing:1.606400pt;}
.wse_c00411{word-spacing:1.728000pt;}
.ws18_c00411{word-spacing:2.835200pt;}
.ws17_c00411{word-spacing:2.899200pt;}
.ws19_c00411{word-spacing:3.232000pt;}
.ws1a_c00411{word-spacing:3.257600pt;}
.ws1c_c00411{word-spacing:3.577600pt;}
.ws1d_c00411{word-spacing:3.667200pt;}
.ws26_c00411{word-spacing:4.832000pt;}
.ws27_c00411{word-spacing:4.889600pt;}
.ws22_c00411{word-spacing:5.113600pt;}
.ws23_c00411{word-spacing:5.145600pt;}
.ws1b_c00411{word-spacing:6.406400pt;}
.ws14_c00411{word-spacing:7.641600pt;}
.wsa_c00411{word-spacing:7.686400pt;}
.ws13_c00411{word-spacing:7.724800pt;}
.ws1e_c00411{word-spacing:8.576000pt;}
.ws21_c00411{word-spacing:8.684800pt;}
.ws1f_c00411{word-spacing:8.704000pt;}
.ws25_c00411{word-spacing:9.920000pt;}
.ws24_c00411{word-spacing:9.952000pt;}
.wsb_c00411{word-spacing:12.467200pt;}
.wsc_c00411{word-spacing:12.544000pt;}
.ws2a_c00411{word-spacing:13.721600pt;}
.ws29_c00411{word-spacing:13.856000pt;}
.ws16_c00411{word-spacing:15.692800pt;}
.ws12_c00411{word-spacing:28.896000pt;}
.ws28_c00411{word-spacing:31.347200pt;}
.ws9_c00411{word-spacing:32.332800pt;}
._0_c00411{margin-left:-1.015360pt;}
._1_c00411{width:1.148960pt;}
.fs5_c00411{font-size:34.560000pt;}
.fs3_c00411{font-size:37.440000pt;}
.fs4_c00411{font-size:42.560000pt;}
.fs2_c00411{font-size:48.000000pt;}
.fs0_c00411{font-size:53.440000pt;}
.fs1_c00411{font-size:64.000000pt;}
.y0_c00411{bottom:0.000000pt;}
.y2_c00411{bottom:51.067067pt;}
.y3_c00411{bottom:54.587067pt;}
.y24_c00411{bottom:101.065307pt;}
.y23_c00411{bottom:117.395387pt;}
.y22_c00411{bottom:133.632027pt;}
.y21_c00411{bottom:149.868667pt;}
.y20_c00411{bottom:166.190427pt;}
.y1f_c00411{bottom:182.430427pt;}
.y1e_c00411{bottom:198.667067pt;}
.y1d_c00411{bottom:212.187067pt;}
.y1c_c00411{bottom:230.587067pt;}
.y1b_c00411{bottom:248.987200pt;}
.y1a_c00411{bottom:309.147200pt;}
.y19_c00411{bottom:339.787200pt;}
.y18_c00411{bottom:370.347200pt;}
.y17_c00411{bottom:408.987067pt;}
.y16_c00411{bottom:439.547067pt;}
.y15_c00411{bottom:470.187067pt;}
.y14_c00411{bottom:500.747067pt;}
.y13_c00411{bottom:531.387067pt;}
.y12_c00411{bottom:569.947067pt;}
.y11_c00411{bottom:600.587067pt;}
.y10_c00411{bottom:631.147067pt;}
.yf_c00411{bottom:661.787067pt;}
.ye_c00411{bottom:692.347200pt;}
.yd_c00411{bottom:722.987067pt;}
.yc_c00411{bottom:753.547067pt;}
.yb_c00411{bottom:792.187067pt;}
.ya_c00411{bottom:822.747067pt;}
.y9_c00411{bottom:853.387067pt;}
.y8_c00411{bottom:891.947067pt;}
.y7_c00411{bottom:922.587067pt;}
.y6_c00411{bottom:953.147067pt;}
.y5_c00411{bottom:983.787067pt;}
.y4_c00411{bottom:1014.347067pt;}
.y1_c00411{bottom:1063.947067pt;}
.h2_c00411{height:42.656250pt;}
.h6_c00411{height:44.388750pt;}
.h1_c00411{height:44.724687pt;}
.h3_c00411{height:50.062500pt;}
.h4_c00411{height:53.562500pt;}
.h5_c00411{height:57.894062pt;}
.h0_c00411{height:1122.666667pt;}
.w1_c00411{width:793.333333pt;}
.w0_c00411{width:793.626667pt;}
.x0_c00411{left:0.000000pt;}
.x5_c00411{left:113.440000pt;}
.x4_c00411{left:160.640000pt;}
.x1_c00411{left:188.000000pt;}
.x3_c00411{left:386.880000pt;}
.x2_c00411{left:396.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_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_a6bfff1c0c3e88d72121a5b5.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_cb8dfde44f9ad1af1254a95c.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_50c6714d2db15cf6f05bb1b7.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:1.102051;font-style:normal;font-weight:normal;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_d55e93b39c9de0f5fb1e8b54.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00412;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00412{font-family:ff6_c00412;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_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;}
.v1_c00412{vertical-align:15.840000px;}
.v2_c00412{vertical-align:29.880000px;}
.lsb_c00412{letter-spacing:-0.151200px;}
.lsc_c00412{letter-spacing:-0.064800px;}
.lsf_c00412{letter-spacing:-0.057600px;}
.ls15_c00412{letter-spacing:-0.036000px;}
.ls14_c00412{letter-spacing:-0.028800px;}
.ls16_c00412{letter-spacing:-0.023436px;}
.lsd_c00412{letter-spacing:-0.021600px;}
.ls11_c00412{letter-spacing:-0.014400px;}
.ls10_c00412{letter-spacing:-0.007200px;}
.lse_c00412{letter-spacing:0.000000px;}
.ls4_c00412{letter-spacing:0.007200px;}
.ls9_c00412{letter-spacing:0.014400px;}
.ls7_c00412{letter-spacing:0.015624px;}
.ls8_c00412{letter-spacing:0.025164px;}
.lsa_c00412{letter-spacing:0.033516px;}
.ls0_c00412{letter-spacing:0.048096px;}
.ls12_c00412{letter-spacing:0.054756px;}
.ls6_c00412{letter-spacing:0.067104px;}
.ls13_c00412{letter-spacing:0.093600px;}
.ls2_c00412{letter-spacing:0.144000px;}
.ls3_c00412{letter-spacing:65.304000px;}
.ls5_c00412{letter-spacing:88.783560px;}
.ls1_c00412{letter-spacing:1212.120000px;}
.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:-21.037104px;}
.ws4_c00412{word-spacing:-19.545624px;}
.ws2_c00412{word-spacing:-19.506564px;}
.ws1_c00412{word-spacing:-17.964000px;}
.ws0_c00412{word-spacing:-10.584756px;}
.ws15_c00412{word-spacing:-0.093600px;}
.ws28_c00412{word-spacing:-0.014364px;}
.ws29_c00412{word-spacing:-0.009576px;}
.ws6_c00412{word-spacing:0.000000px;}
.ws1f_c00412{word-spacing:0.007200px;}
.ws5_c00412{word-spacing:0.042084px;}
.ws20_c00412{word-spacing:0.058716px;}
.ws14_c00412{word-spacing:0.720000px;}
.wsc_c00412{word-spacing:2.152800px;}
.ws16_c00412{word-spacing:2.167200px;}
.wsd_c00412{word-spacing:2.181600px;}
.ws1a_c00412{word-spacing:2.534400px;}
.ws1b_c00412{word-spacing:2.584800px;}
.ws1c_c00412{word-spacing:3.556800px;}
.ws1e_c00412{word-spacing:3.607200px;}
.ws11_c00412{word-spacing:3.628800px;}
.ws1d_c00412{word-spacing:3.636000px;}
.ws22_c00412{word-spacing:5.054400px;}
.ws21_c00412{word-spacing:5.104800px;}
.ws27_c00412{word-spacing:7.905600px;}
.ws25_c00412{word-spacing:7.941600px;}
.ws26_c00412{word-spacing:8.028000px;}
.ws17_c00412{word-spacing:8.316000px;}
.wsf_c00412{word-spacing:9.381600px;}
.ws10_c00412{word-spacing:9.439200px;}
.wsb_c00412{word-spacing:11.167200px;}
.wsa_c00412{word-spacing:11.217600px;}
.ws23_c00412{word-spacing:12.607200px;}
.ws24_c00412{word-spacing:16.192800px;}
.ws7_c00412{word-spacing:17.452800px;}
.ws9_c00412{word-spacing:17.661600px;}
.ws13_c00412{word-spacing:17.928000px;}
.ws12_c00412{word-spacing:18.028800px;}
.ws8_c00412{word-spacing:18.064800px;}
.wse_c00412{word-spacing:18.403200px;}
.ws19_c00412{word-spacing:20.152800px;}
.ws18_c00412{word-spacing:20.246400px;}
._0_c00412{margin-left:-1.322640px;}
._1_c00412{width:1.008000px;}
.fc0_c00412{color:rgb(0,0,0);}
.fs3_c00412{font-size:42.120000px;}
.fs6_c00412{font-size:47.880000px;}
.fs2_c00412{font-size:54.000000px;}
.fs0_c00412{font-size:60.120000px;}
.fs1_c00412{font-size:72.000000px;}
.fs4_c00412{font-size:78.120000px;}
.fs5_c00412{font-size:83.880000px;}
.y0_c00412{bottom:0.000000px;}
.y2_c00412{bottom:57.450450px;}
.y21_c00412{bottom:113.702250px;}
.y20_c00412{bottom:132.064230px;}
.y1f_c00412{bottom:150.330450px;}
.y1e_c00412{bottom:165.540450px;}
.y1d_c00412{bottom:186.240450px;}
.y1c_c00412{bottom:206.940450px;}
.y1b_c00412{bottom:237.270450px;}
.y1a_c00412{bottom:271.650450px;}
.y19_c00412{bottom:306.120450px;}
.y18_c00412{bottom:340.500450px;}
.y17_c00412{bottom:374.970450px;}
.y16_c00412{bottom:421.500600px;}
.y15_c00412{bottom:485.490450px;}
.y14_c00412{bottom:519.960450px;}
.y13_c00412{bottom:554.340450px;}
.y12_c00412{bottom:588.810450px;}
.y11_c00412{bottom:623.190450px;}
.y10_c00412{bottom:666.660450px;}
.yf_c00412{bottom:701.040450px;}
.ye_c00412{bottom:735.510450px;}
.yd_c00412{bottom:778.890450px;}
.yc_c00412{bottom:813.360450px;}
.yb_c00412{bottom:847.740450px;}
.ya_c00412{bottom:891.210450px;}
.y9_c00412{bottom:925.590450px;}
.y8_c00412{bottom:960.060450px;}
.y7_c00412{bottom:994.440450px;}
.y6_c00412{bottom:1028.910450px;}
.y5_c00412{bottom:1063.290450px;}
.y4_c00412{bottom:1106.760450px;}
.y3_c00412{bottom:1141.140450px;}
.y1_c00412{bottom:1196.850450px;}
.h8_c00412{height:47.988281px;}
.h9_c00412{height:49.937344px;}
.h1_c00412{height:50.315273px;}
.h4_c00412{height:60.257812px;}
.h5_c00412{height:65.130820px;}
.h6_c00412{height:65.131420px;}
.h2_c00412{height:72.160312px;}
.h3_c00412{height:75.093750px;}
.h7_c00412{height:81.476719px;}
.h0_c00412{height:1263.000000px;}
.w1_c00412{width:892.500000px;}
.w0_c00412{width:892.830000px;}
.x0_c00412{left:0.000000px;}
.x1_c00412{left:127.620000px;}
.x2_c00412{left:154.620000px;}
.x3_c00412{left:181.620000px;}
.x4_c00412{left:207.000000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.v1_c00412{vertical-align:14.080000pt;}
.v2_c00412{vertical-align:26.560000pt;}
.lsb_c00412{letter-spacing:-0.134400pt;}
.lsc_c00412{letter-spacing:-0.057600pt;}
.lsf_c00412{letter-spacing:-0.051200pt;}
.ls15_c00412{letter-spacing:-0.032000pt;}
.ls14_c00412{letter-spacing:-0.025600pt;}
.ls16_c00412{letter-spacing:-0.020832pt;}
.lsd_c00412{letter-spacing:-0.019200pt;}
.ls11_c00412{letter-spacing:-0.012800pt;}
.ls10_c00412{letter-spacing:-0.006400pt;}
.lse_c00412{letter-spacing:0.000000pt;}
.ls4_c00412{letter-spacing:0.006400pt;}
.ls9_c00412{letter-spacing:0.012800pt;}
.ls7_c00412{letter-spacing:0.013888pt;}
.ls8_c00412{letter-spacing:0.022368pt;}
.lsa_c00412{letter-spacing:0.029792pt;}
.ls0_c00412{letter-spacing:0.042752pt;}
.ls12_c00412{letter-spacing:0.048672pt;}
.ls6_c00412{letter-spacing:0.059648pt;}
.ls13_c00412{letter-spacing:0.083200pt;}
.ls2_c00412{letter-spacing:0.128000pt;}
.ls3_c00412{letter-spacing:58.048000pt;}
.ls5_c00412{letter-spacing:78.918720pt;}
.ls1_c00412{letter-spacing:1077.440000pt;}
.ws3_c00412{word-spacing:-18.699648pt;}
.ws4_c00412{word-spacing:-17.373888pt;}
.ws2_c00412{word-spacing:-17.339168pt;}
.ws1_c00412{word-spacing:-15.968000pt;}
.ws0_c00412{word-spacing:-9.408672pt;}
.ws15_c00412{word-spacing:-0.083200pt;}
.ws28_c00412{word-spacing:-0.012768pt;}
.ws29_c00412{word-spacing:-0.008512pt;}
.ws6_c00412{word-spacing:0.000000pt;}
.ws1f_c00412{word-spacing:0.006400pt;}
.ws5_c00412{word-spacing:0.037408pt;}
.ws20_c00412{word-spacing:0.052192pt;}
.ws14_c00412{word-spacing:0.640000pt;}
.wsc_c00412{word-spacing:1.913600pt;}
.ws16_c00412{word-spacing:1.926400pt;}
.wsd_c00412{word-spacing:1.939200pt;}
.ws1a_c00412{word-spacing:2.252800pt;}
.ws1b_c00412{word-spacing:2.297600pt;}
.ws1c_c00412{word-spacing:3.161600pt;}
.ws1e_c00412{word-spacing:3.206400pt;}
.ws11_c00412{word-spacing:3.225600pt;}
.ws1d_c00412{word-spacing:3.232000pt;}
.ws22_c00412{word-spacing:4.492800pt;}
.ws21_c00412{word-spacing:4.537600pt;}
.ws27_c00412{word-spacing:7.027200pt;}
.ws25_c00412{word-spacing:7.059200pt;}
.ws26_c00412{word-spacing:7.136000pt;}
.ws17_c00412{word-spacing:7.392000pt;}
.wsf_c00412{word-spacing:8.339200pt;}
.ws10_c00412{word-spacing:8.390400pt;}
.wsb_c00412{word-spacing:9.926400pt;}
.wsa_c00412{word-spacing:9.971200pt;}
.ws23_c00412{word-spacing:11.206400pt;}
.ws24_c00412{word-spacing:14.393600pt;}
.ws7_c00412{word-spacing:15.513600pt;}
.ws9_c00412{word-spacing:15.699200pt;}
.ws13_c00412{word-spacing:15.936000pt;}
.ws12_c00412{word-spacing:16.025600pt;}
.ws8_c00412{word-spacing:16.057600pt;}
.wse_c00412{word-spacing:16.358400pt;}
.ws19_c00412{word-spacing:17.913600pt;}
.ws18_c00412{word-spacing:17.996800pt;}
._0_c00412{margin-left:-1.175680pt;}
._1_c00412{width:0.896000pt;}
.fs3_c00412{font-size:37.440000pt;}
.fs6_c00412{font-size:42.560000pt;}
.fs2_c00412{font-size:48.000000pt;}
.fs0_c00412{font-size:53.440000pt;}
.fs1_c00412{font-size:64.000000pt;}
.fs4_c00412{font-size:69.440000pt;}
.fs5_c00412{font-size:74.560000pt;}
.y0_c00412{bottom:0.000000pt;}
.y2_c00412{bottom:51.067067pt;}
.y21_c00412{bottom:101.068667pt;}
.y20_c00412{bottom:117.390427pt;}
.y1f_c00412{bottom:133.627067pt;}
.y1e_c00412{bottom:147.147067pt;}
.y1d_c00412{bottom:165.547067pt;}
.y1c_c00412{bottom:183.947067pt;}
.y1b_c00412{bottom:210.907067pt;}
.y1a_c00412{bottom:241.467067pt;}
.y19_c00412{bottom:272.107067pt;}
.y18_c00412{bottom:302.667067pt;}
.y17_c00412{bottom:333.307067pt;}
.y16_c00412{bottom:374.667200pt;}
.y15_c00412{bottom:431.547067pt;}
.y14_c00412{bottom:462.187067pt;}
.y13_c00412{bottom:492.747067pt;}
.y12_c00412{bottom:523.387067pt;}
.y11_c00412{bottom:553.947067pt;}
.y10_c00412{bottom:592.587067pt;}
.yf_c00412{bottom:623.147067pt;}
.ye_c00412{bottom:653.787067pt;}
.yd_c00412{bottom:692.347067pt;}
.yc_c00412{bottom:722.987067pt;}
.yb_c00412{bottom:753.547067pt;}
.ya_c00412{bottom:792.187067pt;}
.y9_c00412{bottom:822.747067pt;}
.y8_c00412{bottom:853.387067pt;}
.y7_c00412{bottom:883.947067pt;}
.y6_c00412{bottom:914.587067pt;}
.y5_c00412{bottom:945.147067pt;}
.y4_c00412{bottom:983.787067pt;}
.y3_c00412{bottom:1014.347067pt;}
.y1_c00412{bottom:1063.867067pt;}
.h8_c00412{height:42.656250pt;}
.h9_c00412{height:44.388750pt;}
.h1_c00412{height:44.724687pt;}
.h4_c00412{height:53.562500pt;}
.h5_c00412{height:57.894063pt;}
.h6_c00412{height:57.894596pt;}
.h2_c00412{height:64.142500pt;}
.h3_c00412{height:66.750000pt;}
.h7_c00412{height:72.423750pt;}
.h0_c00412{height:1122.666667pt;}
.w1_c00412{width:793.333333pt;}
.w0_c00412{width:793.626667pt;}
.x0_c00412{left:0.000000pt;}
.x1_c00412{left:113.440000pt;}
.x2_c00412{left:137.440000pt;}
.x3_c00412{left:161.440000pt;}
.x4_c00412{left:184.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_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_21b2ba90d803d9cf5f6bfbe2.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_e1166bff7c82c5b4f7894b21.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00413;src:url('chunks/assets/font_556892547d001c36bf7a1668.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v2_c00413{vertical-align:-37.094040px;}
.v4_c00413{vertical-align:-3.246480px;}
.v0_c00413{vertical-align:0.000000px;}
.v3_c00413{vertical-align:3.240000px;}
.v5_c00413{vertical-align:15.120000px;}
.v1_c00413{vertical-align:33.486840px;}
.ls1b_c00413{letter-spacing:-0.438876px;}
.ls1d_c00413{letter-spacing:-0.168336px;}
.ls10_c00413{letter-spacing:-0.151200px;}
.lse_c00413{letter-spacing:-0.144288px;}
.ls15_c00413{letter-spacing:-0.102204px;}
.ls13_c00413{letter-spacing:-0.072144px;}
.ls21_c00413{letter-spacing:-0.057600px;}
.ls19_c00413{letter-spacing:-0.048096px;}
.ls16_c00413{letter-spacing:-0.042084px;}
.ls12_c00413{letter-spacing:-0.036072px;}
.ls14_c00413{letter-spacing:-0.030060px;}
.ls20_c00413{letter-spacing:-0.028800px;}
.ls18_c00413{letter-spacing:-0.024048px;}
.ls1c_c00413{letter-spacing:-0.018036px;}
.ls17_c00413{letter-spacing:-0.012024px;}
.ls11_c00413{letter-spacing:-0.006012px;}
.lsf_c00413{letter-spacing:0.000000px;}
.lsa_c00413{letter-spacing:0.004788px;}
.ls5_c00413{letter-spacing:0.006012px;}
.ls1_c00413{letter-spacing:0.018036px;}
.ls8_c00413{letter-spacing:0.024048px;}
.lsd_c00413{letter-spacing:0.028728px;}
.lsc_c00413{letter-spacing:0.028800px;}
.ls4_c00413{letter-spacing:0.036072px;}
.lsb_c00413{letter-spacing:0.042084px;}
.ls0_c00413{letter-spacing:0.048096px;}
.ls2_c00413{letter-spacing:0.054108px;}
.ls3_c00413{letter-spacing:0.060120px;}
.ls6_c00413{letter-spacing:0.066132px;}
.ls9_c00413{letter-spacing:0.078156px;}
.ls7_c00413{letter-spacing:0.084168px;}
.ls1f_c00413{letter-spacing:0.136080px;}
.ls1a_c00413{letter-spacing:0.168336px;}
.ls1e_c00413{letter-spacing:578.967624px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00413{word-spacing:-9.856080px;}
.ws18_c00413{word-spacing:-0.354708px;}
.ws22_c00413{word-spacing:-0.348696px;}
.wse_c00413{word-spacing:-0.330660px;}
.ws8_c00413{word-spacing:-0.324648px;}
.ws25_c00413{word-spacing:-0.312624px;}
.ws19_c00413{word-spacing:-0.276552px;}
.ws20_c00413{word-spacing:-0.258516px;}
.ws1b_c00413{word-spacing:-0.252504px;}
.ws1c_c00413{word-spacing:-0.234468px;}
.ws24_c00413{word-spacing:-0.228456px;}
.ws13_c00413{word-spacing:-0.222444px;}
.ws2_c00413{word-spacing:-0.126252px;}
.ws2b_c00413{word-spacing:-0.009576px;}
.ws3_c00413{word-spacing:0.000000px;}
.ws26_c00413{word-spacing:0.006012px;}
.ws21_c00413{word-spacing:0.024048px;}
.ws1_c00413{word-spacing:0.042084px;}
.wsf_c00413{word-spacing:0.054108px;}
.ws1a_c00413{word-spacing:0.066132px;}
.ws6_c00413{word-spacing:0.072144px;}
.ws9_c00413{word-spacing:0.090180px;}
.wsd_c00413{word-spacing:0.102204px;}
.ws1f_c00413{word-spacing:0.108216px;}
.ws16_c00413{word-spacing:0.114228px;}
.ws1e_c00413{word-spacing:0.120240px;}
.ws5_c00413{word-spacing:0.126252px;}
.ws12_c00413{word-spacing:0.132264px;}
.ws7_c00413{word-spacing:0.162324px;}
.ws1d_c00413{word-spacing:0.258516px;}
.ws23_c00413{word-spacing:0.263340px;}
.ws17_c00413{word-spacing:0.529056px;}
.ws29_c00413{word-spacing:10.108800px;}
.ws2a_c00413{word-spacing:10.137600px;}
.ws28_c00413{word-spacing:12.621600px;}
.wsa_c00413{word-spacing:184.394052px;}
.wsc_c00413{word-spacing:213.612372px;}
.ws10_c00413{word-spacing:217.886904px;}
.ws11_c00413{word-spacing:260.752464px;}
.wsb_c00413{word-spacing:263.968884px;}
.ws27_c00413{word-spacing:263.974896px;}
.ws4_c00413{word-spacing:287.734320px;}
.ws14_c00413{word-spacing:557.558892px;}
.ws15_c00413{word-spacing:558.021816px;}
._17_c00413{margin-left:-558.352476px;}
._a_c00413{margin-left:-264.227400px;}
._15_c00413{margin-left:-260.980920px;}
._13_c00413{margin-left:-218.175480px;}
._d_c00413{margin-left:-213.486120px;}
._7_c00413{margin-left:-185.169600px;}
._0_c00413{margin-left:-1.142280px;}
._1_c00413{width:1.292580px;}
._2_c00413{width:81.059796px;}
._2f_c00413{width:100.550700px;}
._31_c00413{width:138.576600px;}
._2e_c00413{width:192.263760px;}
._26_c00413{width:200.650500px;}
._5_c00413{width:229.808700px;}
._8_c00413{width:245.530080px;}
._2c_c00413{width:253.465920px;}
._b_c00413{width:260.259480px;}
._c_c00413{width:293.746320px;}
._16_c00413{width:297.353520px;}
._14_c00413{width:319.267260px;}
._e_c00413{width:344.511648px;}
._9_c00413{width:352.429452px;}
._25_c00413{width:368.848224px;}
._2a_c00413{width:370.362024px;}
._32_c00413{width:382.988448px;}
._22_c00413{width:407.854080px;}
._28_c00413{width:430.236756px;}
._1c_c00413{width:439.272792px;}
._3_c00413{width:444.575376px;}
._1f_c00413{width:446.000220px;}
._23_c00413{width:458.998164px;}
._1d_c00413{width:460.759680px;}
._18_c00413{width:474.106320px;}
._2b_c00413{width:476.210520px;}
._24_c00413{width:478.098288px;}
._20_c00413{width:482.036148px;}
._21_c00413{width:490.549140px;}
._6_c00413{width:495.328680px;}
._2d_c00413{width:498.905820px;}
._19_c00413{width:500.565132px;}
._30_c00413{width:504.412812px;}
._10_c00413{width:510.899760px;}
._12_c00413{width:512.943840px;}
._1e_c00413{width:516.587112px;}
._29_c00413{width:521.991900px;}
._f_c00413{width:530.991864px;}
._11_c00413{width:537.142140px;}
._1a_c00413{width:549.797400px;}
._4_c00413{width:557.949672px;}
._27_c00413{width:559.356480px;}
._1b_c00413{width:578.925540px;}
.fc0_c00413{color:rgb(0,0,0);}
.fs4_c00413{font-size:38.880000px;}
.fs3_c00413{font-size:47.880000px;}
.fs2_c00413{font-size:54.000000px;}
.fs0_c00413{font-size:60.120000px;}
.fs1_c00413{font-size:72.000000px;}
.y0_c00413{bottom:0.000000px;}
.y2_c00413{bottom:57.450450px;}
.y3_c00413{bottom:61.410450px;}
.y46_c00413{bottom:113.700450px;}
.y45_c00413{bottom:128.910450px;}
.y44_c00413{bottom:149.610450px;}
.y43_c00413{bottom:170.310450px;}
.y42_c00413{bottom:208.650450px;}
.y41_c00413{bottom:243.030450px;}
.y40_c00413{bottom:272.280450px;}
.y3f_c00413{bottom:291.810450px;}
.y3e_c00413{bottom:318.450450px;}
.y3d_c00413{bottom:336.090450px;}
.y3c_c00413{bottom:353.725230px;}
.y3b_c00413{bottom:371.370450px;}
.y3a_c00413{bottom:388.200600px;}
.y39_c00413{bottom:405.840600px;}
.y38_c00413{bottom:423.480450px;}
.y37_c00413{bottom:441.024480px;}
.y35_c00413{bottom:458.670450px;}
.y36_c00413{bottom:459.120600px;}
.y34_c00413{bottom:476.310450px;}
.y33_c00413{bottom:493.948560px;}
.y32_c00413{bottom:502.410450px;}
.y31_c00413{bottom:528.414330px;}
.y2f_c00413{bottom:546.060450px;}
.y30_c00413{bottom:546.510450px;}
.y2e_c00413{bottom:563.700450px;}
.y2d_c00413{bottom:581.334510px;}
.y2b_c00413{bottom:598.980450px;}
.y2c_c00413{bottom:599.340450px;}
.y2a_c00413{bottom:616.530450px;}
.y29_c00413{bottom:634.164330px;}
.y27_c00413{bottom:651.810450px;}
.y28_c00413{bottom:652.260450px;}
.y26_c00413{bottom:669.450450px;}
.y25_c00413{bottom:687.092610px;}
.y22_c00413{bottom:704.730450px;}
.y24_c00413{bottom:714.176670px;}
.y21_c00413{bottom:722.280450px;}
.y23_c00413{bottom:731.100450px;}
.y20_c00413{bottom:739.920450px;}
.y1f_c00413{bottom:757.560450px;}
.y1e_c00413{bottom:775.204320px;}
.y1c_c00413{bottom:792.840450px;}
.y1b_c00413{bottom:810.480450px;}
.y1d_c00413{bottom:810.840450px;}
.y1a_c00413{bottom:828.030450px;}
.y19_c00413{bottom:845.670450px;}
.y18_c00413{bottom:863.315760px;}
.y16_c00413{bottom:880.950450px;}
.y17_c00413{bottom:898.230450px;}
.y14_c00413{bottom:898.583070px;}
.y13_c00413{bottom:915.416670px;}
.y15_c00413{bottom:915.506850px;}
.y12_c00413{bottom:932.340450px;}
.y11_c00413{bottom:949.980450px;}
.y10_c00413{bottom:967.530450px;}
.yf_c00413{bottom:985.164330px;}
.yd_c00413{bottom:1002.810450px;}
.ye_c00413{bottom:1003.260450px;}
.yc_c00413{bottom:1020.450450px;}
.yb_c00413{bottom:1038.090450px;}
.ya_c00413{bottom:1055.730450px;}
.y9_c00413{bottom:1073.280450px;}
.y8_c00413{bottom:1100.190450px;}
.y7_c00413{bottom:1108.560450px;}
.y5_c00413{bottom:1126.198560px;}
.y4_c00413{bottom:1134.660450px;}
.y6_c00413{bottom:1143.032160px;}
.y1_c00413{bottom:1196.940450px;}
.h2_c00413{height:47.988281px;}
.h9_c00413{height:49.937344px;}
.h1_c00413{height:50.315273px;}
.h5_c00413{height:50.373984px;}
.h3_c00413{height:56.320312px;}
.h8_c00413{height:60.257812px;}
.h6_c00413{height:83.802113px;}
.h4_c00413{height:83.860824px;}
.h7_c00413{height:84.162833px;}
.h0_c00413{height:1263.000000px;}
.w1_c00413{width:892.500000px;}
.w0_c00413{width:892.830000px;}
.x0_c00413{left:0.000000px;}
.x1d_c00413{left:127.620000px;}
.x1e_c00413{left:180.720000px;}
.x1c_c00413{left:190.710000px;}
.x9_c00413{left:195.480000px;}
.x4_c00413{left:196.560000px;}
.x17_c00413{left:209.520000px;}
.x1_c00413{left:211.500000px;}
.x1a_c00413{left:254.520000px;}
.xc_c00413{left:263.250000px;}
.x19_c00413{left:268.110000px;}
.x1b_c00413{left:269.550000px;}
.x12_c00413{left:272.070000px;}
.x8_c00413{left:273.420000px;}
.x13_c00413{left:277.378470px;}
.x11_c00413{left:280.715130px;}
.x16_c00413{left:282.600000px;}
.x18_c00413{left:284.848380px;}
.x15_c00413{left:286.110000px;}
.xe_c00413{left:287.989380px;}
.xb_c00413{left:290.070000px;}
.x14_c00413{left:291.510000px;}
.xa_c00413{left:294.930000px;}
.x10_c00413{left:296.460000px;}
.xd_c00413{left:314.367030px;}
.x3_c00413{left:435.240000px;}
.x2_c00413{left:446.490000px;}
.x5_c00413{left:450.627120px;}
.xf_c00413{left:503.985510px;}
.x6_c00413{left:608.667570px;}
.x7_c00413{left:634.759650px;}
@media print{
.v2_c00413{vertical-align:-32.972480pt;}
.v4_c00413{vertical-align:-2.885760pt;}
.v0_c00413{vertical-align:0.000000pt;}
.v3_c00413{vertical-align:2.880000pt;}
.v5_c00413{vertical-align:13.440000pt;}
.v1_c00413{vertical-align:29.766080pt;}
.ls1b_c00413{letter-spacing:-0.390112pt;}
.ls1d_c00413{letter-spacing:-0.149632pt;}
.ls10_c00413{letter-spacing:-0.134400pt;}
.lse_c00413{letter-spacing:-0.128256pt;}
.ls15_c00413{letter-spacing:-0.090848pt;}
.ls13_c00413{letter-spacing:-0.064128pt;}
.ls21_c00413{letter-spacing:-0.051200pt;}
.ls19_c00413{letter-spacing:-0.042752pt;}
.ls16_c00413{letter-spacing:-0.037408pt;}
.ls12_c00413{letter-spacing:-0.032064pt;}
.ls14_c00413{letter-spacing:-0.026720pt;}
.ls20_c00413{letter-spacing:-0.025600pt;}
.ls18_c00413{letter-spacing:-0.021376pt;}
.ls1c_c00413{letter-spacing:-0.016032pt;}
.ls17_c00413{letter-spacing:-0.010688pt;}
.ls11_c00413{letter-spacing:-0.005344pt;}
.lsf_c00413{letter-spacing:0.000000pt;}
.lsa_c00413{letter-spacing:0.004256pt;}
.ls5_c00413{letter-spacing:0.005344pt;}
.ls1_c00413{letter-spacing:0.016032pt;}
.ls8_c00413{letter-spacing:0.021376pt;}
.lsd_c00413{letter-spacing:0.025536pt;}
.lsc_c00413{letter-spacing:0.025600pt;}
.ls4_c00413{letter-spacing:0.032064pt;}
.lsb_c00413{letter-spacing:0.037408pt;}
.ls0_c00413{letter-spacing:0.042752pt;}
.ls2_c00413{letter-spacing:0.048096pt;}
.ls3_c00413{letter-spacing:0.053440pt;}
.ls6_c00413{letter-spacing:0.058784pt;}
.ls9_c00413{letter-spacing:0.069472pt;}
.ls7_c00413{letter-spacing:0.074816pt;}
.ls1f_c00413{letter-spacing:0.120960pt;}
.ls1a_c00413{letter-spacing:0.149632pt;}
.ls1e_c00413{letter-spacing:514.637888pt;}
.ws0_c00413{word-spacing:-8.760960pt;}
.ws18_c00413{word-spacing:-0.315296pt;}
.ws22_c00413{word-spacing:-0.309952pt;}
.wse_c00413{word-spacing:-0.293920pt;}
.ws8_c00413{word-spacing:-0.288576pt;}
.ws25_c00413{word-spacing:-0.277888pt;}
.ws19_c00413{word-spacing:-0.245824pt;}
.ws20_c00413{word-spacing:-0.229792pt;}
.ws1b_c00413{word-spacing:-0.224448pt;}
.ws1c_c00413{word-spacing:-0.208416pt;}
.ws24_c00413{word-spacing:-0.203072pt;}
.ws13_c00413{word-spacing:-0.197728pt;}
.ws2_c00413{word-spacing:-0.112224pt;}
.ws2b_c00413{word-spacing:-0.008512pt;}
.ws3_c00413{word-spacing:0.000000pt;}
.ws26_c00413{word-spacing:0.005344pt;}
.ws21_c00413{word-spacing:0.021376pt;}
.ws1_c00413{word-spacing:0.037408pt;}
.wsf_c00413{word-spacing:0.048096pt;}
.ws1a_c00413{word-spacing:0.058784pt;}
.ws6_c00413{word-spacing:0.064128pt;}
.ws9_c00413{word-spacing:0.080160pt;}
.wsd_c00413{word-spacing:0.090848pt;}
.ws1f_c00413{word-spacing:0.096192pt;}
.ws16_c00413{word-spacing:0.101536pt;}
.ws1e_c00413{word-spacing:0.106880pt;}
.ws5_c00413{word-spacing:0.112224pt;}
.ws12_c00413{word-spacing:0.117568pt;}
.ws7_c00413{word-spacing:0.144288pt;}
.ws1d_c00413{word-spacing:0.229792pt;}
.ws23_c00413{word-spacing:0.234080pt;}
.ws17_c00413{word-spacing:0.470272pt;}
.ws29_c00413{word-spacing:8.985600pt;}
.ws2a_c00413{word-spacing:9.011200pt;}
.ws28_c00413{word-spacing:11.219200pt;}
.wsa_c00413{word-spacing:163.905824pt;}
.wsc_c00413{word-spacing:189.877664pt;}
.ws10_c00413{word-spacing:193.677248pt;}
.ws11_c00413{word-spacing:231.779968pt;}
.wsb_c00413{word-spacing:234.639008pt;}
.ws27_c00413{word-spacing:234.644352pt;}
.ws4_c00413{word-spacing:255.763840pt;}
.ws14_c00413{word-spacing:495.607904pt;}
.ws15_c00413{word-spacing:496.019392pt;}
._17_c00413{margin-left:-496.313312pt;}
._a_c00413{margin-left:-234.868800pt;}
._15_c00413{margin-left:-231.983040pt;}
._13_c00413{margin-left:-193.933760pt;}
._d_c00413{margin-left:-189.765440pt;}
._7_c00413{margin-left:-164.595200pt;}
._0_c00413{margin-left:-1.015360pt;}
._1_c00413{width:1.148960pt;}
._2_c00413{width:72.053152pt;}
._2f_c00413{width:89.378400pt;}
._31_c00413{width:123.179200pt;}
._2e_c00413{width:170.901120pt;}
._26_c00413{width:178.356000pt;}
._5_c00413{width:204.274400pt;}
._8_c00413{width:218.248960pt;}
._2c_c00413{width:225.303040pt;}
._b_c00413{width:231.341760pt;}
._c_c00413{width:261.107840pt;}
._16_c00413{width:264.314240pt;}
._14_c00413{width:283.793120pt;}
._e_c00413{width:306.232576pt;}
._9_c00413{width:313.270624pt;}
._25_c00413{width:327.865088pt;}
._2a_c00413{width:329.210688pt;}
._32_c00413{width:340.434176pt;}
._22_c00413{width:362.536960pt;}
._28_c00413{width:382.432672pt;}
._1c_c00413{width:390.464704pt;}
._3_c00413{width:395.178112pt;}
._1f_c00413{width:396.444640pt;}
._23_c00413{width:407.998368pt;}
._1d_c00413{width:409.564160pt;}
._18_c00413{width:421.427840pt;}
._2b_c00413{width:423.298240pt;}
._24_c00413{width:424.976256pt;}
._20_c00413{width:428.476576pt;}
._21_c00413{width:436.043680pt;}
._6_c00413{width:440.292160pt;}
._2d_c00413{width:443.471840pt;}
._19_c00413{width:444.946784pt;}
._30_c00413{width:448.366944pt;}
._10_c00413{width:454.133120pt;}
._12_c00413{width:455.950080pt;}
._1e_c00413{width:459.188544pt;}
._29_c00413{width:463.992800pt;}
._f_c00413{width:471.992768pt;}
._11_c00413{width:477.459680pt;}
._1a_c00413{width:488.708800pt;}
._4_c00413{width:495.955264pt;}
._27_c00413{width:497.205760pt;}
._1b_c00413{width:514.600480pt;}
.fs4_c00413{font-size:34.560000pt;}
.fs3_c00413{font-size:42.560000pt;}
.fs2_c00413{font-size:48.000000pt;}
.fs0_c00413{font-size:53.440000pt;}
.fs1_c00413{font-size:64.000000pt;}
.y0_c00413{bottom:0.000000pt;}
.y2_c00413{bottom:51.067067pt;}
.y3_c00413{bottom:54.587067pt;}
.y46_c00413{bottom:101.067067pt;}
.y45_c00413{bottom:114.587067pt;}
.y44_c00413{bottom:132.987067pt;}
.y43_c00413{bottom:151.387067pt;}
.y42_c00413{bottom:185.467067pt;}
.y41_c00413{bottom:216.027067pt;}
.y40_c00413{bottom:242.027067pt;}
.y3f_c00413{bottom:259.387067pt;}
.y3e_c00413{bottom:283.067067pt;}
.y3d_c00413{bottom:298.747067pt;}
.y3c_c00413{bottom:314.422427pt;}
.y3b_c00413{bottom:330.107067pt;}
.y3a_c00413{bottom:345.067200pt;}
.y39_c00413{bottom:360.747200pt;}
.y38_c00413{bottom:376.427067pt;}
.y37_c00413{bottom:392.021760pt;}
.y35_c00413{bottom:407.707067pt;}
.y36_c00413{bottom:408.107200pt;}
.y34_c00413{bottom:423.387067pt;}
.y33_c00413{bottom:439.065387pt;}
.y32_c00413{bottom:446.587067pt;}
.y31_c00413{bottom:469.701627pt;}
.y2f_c00413{bottom:485.387067pt;}
.y30_c00413{bottom:485.787067pt;}
.y2e_c00413{bottom:501.067067pt;}
.y2d_c00413{bottom:516.741787pt;}
.y2b_c00413{bottom:532.427067pt;}
.y2c_c00413{bottom:532.747067pt;}
.y2a_c00413{bottom:548.027067pt;}
.y29_c00413{bottom:563.701627pt;}
.y27_c00413{bottom:579.387067pt;}
.y28_c00413{bottom:579.787067pt;}
.y26_c00413{bottom:595.067067pt;}
.y25_c00413{bottom:610.748987pt;}
.y22_c00413{bottom:626.427067pt;}
.y24_c00413{bottom:634.823707pt;}
.y21_c00413{bottom:642.027067pt;}
.y23_c00413{bottom:649.867067pt;}
.y20_c00413{bottom:657.707067pt;}
.y1f_c00413{bottom:673.387067pt;}
.y1e_c00413{bottom:689.070507pt;}
.y1c_c00413{bottom:704.747067pt;}
.y1b_c00413{bottom:720.427067pt;}
.y1d_c00413{bottom:720.747067pt;}
.y1a_c00413{bottom:736.027067pt;}
.y19_c00413{bottom:751.707067pt;}
.y18_c00413{bottom:767.391787pt;}
.y16_c00413{bottom:783.067067pt;}
.y17_c00413{bottom:798.427067pt;}
.y14_c00413{bottom:798.740507pt;}
.y13_c00413{bottom:813.703707pt;}
.y15_c00413{bottom:813.783867pt;}
.y12_c00413{bottom:828.747067pt;}
.y11_c00413{bottom:844.427067pt;}
.y10_c00413{bottom:860.027067pt;}
.yf_c00413{bottom:875.701627pt;}
.yd_c00413{bottom:891.387067pt;}
.ye_c00413{bottom:891.787067pt;}
.yc_c00413{bottom:907.067067pt;}
.yb_c00413{bottom:922.747067pt;}
.ya_c00413{bottom:938.427067pt;}
.y9_c00413{bottom:954.027067pt;}
.y8_c00413{bottom:977.947067pt;}
.y7_c00413{bottom:985.387067pt;}
.y5_c00413{bottom:1001.065387pt;}
.y4_c00413{bottom:1008.587067pt;}
.y6_c00413{bottom:1016.028587pt;}
.y1_c00413{bottom:1063.947067pt;}
.h2_c00413{height:42.656250pt;}
.h9_c00413{height:44.388750pt;}
.h1_c00413{height:44.724687pt;}
.h5_c00413{height:44.776875pt;}
.h3_c00413{height:50.062500pt;}
.h8_c00413{height:53.562500pt;}
.h6_c00413{height:74.490768pt;}
.h4_c00413{height:74.542955pt;}
.h7_c00413{height:74.811407pt;}
.h0_c00413{height:1122.666667pt;}
.w1_c00413{width:793.333333pt;}
.w0_c00413{width:793.626667pt;}
.x0_c00413{left:0.000000pt;}
.x1d_c00413{left:113.440000pt;}
.x1e_c00413{left:160.640000pt;}
.x1c_c00413{left:169.520000pt;}
.x9_c00413{left:173.760000pt;}
.x4_c00413{left:174.720000pt;}
.x17_c00413{left:186.240000pt;}
.x1_c00413{left:188.000000pt;}
.x1a_c00413{left:226.240000pt;}
.xc_c00413{left:234.000000pt;}
.x19_c00413{left:238.320000pt;}
.x1b_c00413{left:239.600000pt;}
.x12_c00413{left:241.840000pt;}
.x8_c00413{left:243.040000pt;}
.x13_c00413{left:246.558640pt;}
.x11_c00413{left:249.524560pt;}
.x16_c00413{left:251.200000pt;}
.x18_c00413{left:253.198560pt;}
.x15_c00413{left:254.320000pt;}
.xe_c00413{left:255.990560pt;}
.xb_c00413{left:257.840000pt;}
.x14_c00413{left:259.120000pt;}
.xa_c00413{left:262.160000pt;}
.x10_c00413{left:263.520000pt;}
.xd_c00413{left:279.437360pt;}
.x3_c00413{left:386.880000pt;}
.x2_c00413{left:396.880000pt;}
.x5_c00413{left:400.557440pt;}
.xf_c00413{left:447.987120pt;}
.x6_c00413{left:541.037840pt;}
.x7_c00413{left:564.230800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3aa8eac30251d81a60a5525.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_7f354efe0eac431c8cb82e97.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00414;src:url('chunks/assets/font_2b01612a235da17de7254930.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.v1_c00414{vertical-align:15.840000px;}
.v2_c00414{vertical-align:29.880000px;}
.v3_c00414{vertical-align:34.208280px;}
.ls7_c00414{letter-spacing:-0.151200px;}
.ls14_c00414{letter-spacing:-0.102204px;}
.ls17_c00414{letter-spacing:-0.060120px;}
.ls11_c00414{letter-spacing:-0.054108px;}
.ls13_c00414{letter-spacing:-0.048096px;}
.lsf_c00414{letter-spacing:-0.042084px;}
.ls16_c00414{letter-spacing:-0.036072px;}
.lse_c00414{letter-spacing:-0.028800px;}
.ls15_c00414{letter-spacing:-0.024048px;}
.lsc_c00414{letter-spacing:-0.021600px;}
.ls10_c00414{letter-spacing:-0.018036px;}
.ls9_c00414{letter-spacing:-0.014400px;}
.ls12_c00414{letter-spacing:-0.012024px;}
.ls8_c00414{letter-spacing:-0.007200px;}
.lsd_c00414{letter-spacing:0.000000px;}
.ls2_c00414{letter-spacing:0.007200px;}
.ls3_c00414{letter-spacing:0.014400px;}
.ls5_c00414{letter-spacing:0.028728px;}
.ls6_c00414{letter-spacing:0.038304px;}
.ls4_c00414{letter-spacing:0.046116px;}
.ls0_c00414{letter-spacing:0.048096px;}
.lsa_c00414{letter-spacing:0.054756px;}
.lsb_c00414{letter-spacing:0.093600px;}
.ls1_c00414{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00414{word-spacing:-10.584756px;}
.ws1f_c00414{word-spacing:-0.270540px;}
.ws1b_c00414{word-spacing:-0.258516px;}
.ws19_c00414{word-spacing:-0.252504px;}
.ws21_c00414{word-spacing:-0.246492px;}
.ws18_c00414{word-spacing:-0.228456px;}
.ws25_c00414{word-spacing:-0.019152px;}
.ws24_c00414{word-spacing:-0.009576px;}
.ws2_c00414{word-spacing:0.000000px;}
.ws4_c00414{word-spacing:0.014400px;}
.ws1_c00414{word-spacing:0.042084px;}
.ws17_c00414{word-spacing:0.046116px;}
.ws16_c00414{word-spacing:0.050400px;}
.ws15_c00414{word-spacing:0.064800px;}
.ws1c_c00414{word-spacing:0.108216px;}
.ws22_c00414{word-spacing:0.126252px;}
.ws1e_c00414{word-spacing:0.132264px;}
.ws1d_c00414{word-spacing:0.138276px;}
.ws1a_c00414{word-spacing:0.144288px;}
.ws23_c00414{word-spacing:0.150300px;}
.ws14_c00414{word-spacing:0.763200px;}
.ws12_c00414{word-spacing:1.094400px;}
.ws13_c00414{word-spacing:1.144800px;}
.ws10_c00414{word-spacing:1.440000px;}
.wsf_c00414{word-spacing:1.526400px;}
.ws7_c00414{word-spacing:6.105600px;}
.ws6_c00414{word-spacing:6.112800px;}
.ws9_c00414{word-spacing:6.494400px;}
.wsd_c00414{word-spacing:12.110400px;}
.wse_c00414{word-spacing:12.261600px;}
.ws8_c00414{word-spacing:12.650400px;}
.wsc_c00414{word-spacing:12.945600px;}
.wsb_c00414{word-spacing:13.089600px;}
.ws11_c00414{word-spacing:13.708800px;}
.ws3_c00414{word-spacing:16.567200px;}
.ws5_c00414{word-spacing:17.301600px;}
.wsa_c00414{word-spacing:39.600000px;}
.ws20_c00414{word-spacing:253.273536px;}
._0_c00414{margin-left:-1.322640px;}
._1_c00414{width:1.080000px;}
._3_c00414{width:65.023560px;}
._4_c00414{width:112.984200px;}
._d_c00414{width:133.225920px;}
._a_c00414{width:134.308080px;}
._7_c00414{width:149.037480px;}
._10_c00414{width:245.379780px;}
._9_c00414{width:253.465920px;}
._6_c00414{width:267.473880px;}
._b_c00414{width:335.890440px;}
._2_c00414{width:349.137648px;}
._11_c00414{width:350.980560px;}
._5_c00414{width:397.789992px;}
._e_c00414{width:410.553468px;}
._f_c00414{width:429.190668px;}
._c_c00414{width:449.661528px;}
._8_c00414{width:451.777752px;}
.fc0_c00414{color:rgb(0,0,0);}
.fs3_c00414{font-size:42.120000px;}
.fs5_c00414{font-size:47.880000px;}
.fs2_c00414{font-size:54.000000px;}
.fs0_c00414{font-size:60.120000px;}
.fs4_c00414{font-size:65.880000px;}
.fs1_c00414{font-size:72.000000px;}
.y0_c00414{bottom:0.000000px;}
.y2_c00414{bottom:57.450450px;}
.y21_c00414{bottom:113.700450px;}
.y20_c00414{bottom:128.910450px;}
.y1f_c00414{bottom:149.610450px;}
.y1e_c00414{bottom:170.310450px;}
.y1d_c00414{bottom:208.110450px;}
.y1c_c00414{bottom:243.656670px;}
.y1b_c00414{bottom:260.580450px;}
.y1a_c00414{bottom:296.220450px;}
.y19_c00414{bottom:331.860450px;}
.y18_c00414{bottom:367.410450px;}
.y17_c00414{bottom:403.050450px;}
.y16_c00414{bottom:438.690450px;}
.y15_c00414{bottom:474.330450px;}
.y14_c00414{bottom:509.970450px;}
.y13_c00414{bottom:545.880450px;}
.y12_c00414{bottom:597.810450px;}
.y11_c00414{bottom:632.190450px;}
.y10_c00414{bottom:666.660450px;}
.yf_c00414{bottom:710.040450px;}
.ye_c00414{bottom:744.510450px;}
.yd_c00414{bottom:778.890450px;}
.yc_c00414{bottom:813.360450px;}
.yb_c00414{bottom:847.740450px;}
.ya_c00414{bottom:882.210450px;}
.y9_c00414{bottom:916.590450px;}
.y8_c00414{bottom:951.060450px;}
.y7_c00414{bottom:994.440450px;}
.y6_c00414{bottom:1028.910450px;}
.y5_c00414{bottom:1063.290450px;}
.y4_c00414{bottom:1106.760450px;}
.y3_c00414{bottom:1141.140450px;}
.y1_c00414{bottom:1196.850450px;}
.h7_c00414{height:47.988281px;}
.h8_c00414{height:49.937344px;}
.h1_c00414{height:50.315273px;}
.h5_c00414{height:55.200234px;}
.h3_c00414{height:60.257812px;}
.h4_c00414{height:65.130820px;}
.h2_c00414{height:72.160312px;}
.h6_c00414{height:84.523553px;}
.h0_c00414{height:1263.000000px;}
.w1_c00414{width:892.500000px;}
.w0_c00414{width:892.830000px;}
.x0_c00414{left:0.000000px;}
.x1_c00414{left:127.620000px;}
.x2_c00414{left:180.720000px;}
.x3_c00414{left:188.100000px;}
.x4_c00414{left:509.666850px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.v1_c00414{vertical-align:14.080000pt;}
.v2_c00414{vertical-align:26.560000pt;}
.v3_c00414{vertical-align:30.407360pt;}
.ls7_c00414{letter-spacing:-0.134400pt;}
.ls14_c00414{letter-spacing:-0.090848pt;}
.ls17_c00414{letter-spacing:-0.053440pt;}
.ls11_c00414{letter-spacing:-0.048096pt;}
.ls13_c00414{letter-spacing:-0.042752pt;}
.lsf_c00414{letter-spacing:-0.037408pt;}
.ls16_c00414{letter-spacing:-0.032064pt;}
.lse_c00414{letter-spacing:-0.025600pt;}
.ls15_c00414{letter-spacing:-0.021376pt;}
.lsc_c00414{letter-spacing:-0.019200pt;}
.ls10_c00414{letter-spacing:-0.016032pt;}
.ls9_c00414{letter-spacing:-0.012800pt;}
.ls12_c00414{letter-spacing:-0.010688pt;}
.ls8_c00414{letter-spacing:-0.006400pt;}
.lsd_c00414{letter-spacing:0.000000pt;}
.ls2_c00414{letter-spacing:0.006400pt;}
.ls3_c00414{letter-spacing:0.012800pt;}
.ls5_c00414{letter-spacing:0.025536pt;}
.ls6_c00414{letter-spacing:0.034048pt;}
.ls4_c00414{letter-spacing:0.040992pt;}
.ls0_c00414{letter-spacing:0.042752pt;}
.lsa_c00414{letter-spacing:0.048672pt;}
.lsb_c00414{letter-spacing:0.083200pt;}
.ls1_c00414{letter-spacing:1077.440000pt;}
.ws0_c00414{word-spacing:-9.408672pt;}
.ws1f_c00414{word-spacing:-0.240480pt;}
.ws1b_c00414{word-spacing:-0.229792pt;}
.ws19_c00414{word-spacing:-0.224448pt;}
.ws21_c00414{word-spacing:-0.219104pt;}
.ws18_c00414{word-spacing:-0.203072pt;}
.ws25_c00414{word-spacing:-0.017024pt;}
.ws24_c00414{word-spacing:-0.008512pt;}
.ws2_c00414{word-spacing:0.000000pt;}
.ws4_c00414{word-spacing:0.012800pt;}
.ws1_c00414{word-spacing:0.037408pt;}
.ws17_c00414{word-spacing:0.040992pt;}
.ws16_c00414{word-spacing:0.044800pt;}
.ws15_c00414{word-spacing:0.057600pt;}
.ws1c_c00414{word-spacing:0.096192pt;}
.ws22_c00414{word-spacing:0.112224pt;}
.ws1e_c00414{word-spacing:0.117568pt;}
.ws1d_c00414{word-spacing:0.122912pt;}
.ws1a_c00414{word-spacing:0.128256pt;}
.ws23_c00414{word-spacing:0.133600pt;}
.ws14_c00414{word-spacing:0.678400pt;}
.ws12_c00414{word-spacing:0.972800pt;}
.ws13_c00414{word-spacing:1.017600pt;}
.ws10_c00414{word-spacing:1.280000pt;}
.wsf_c00414{word-spacing:1.356800pt;}
.ws7_c00414{word-spacing:5.427200pt;}
.ws6_c00414{word-spacing:5.433600pt;}
.ws9_c00414{word-spacing:5.772800pt;}
.wsd_c00414{word-spacing:10.764800pt;}
.wse_c00414{word-spacing:10.899200pt;}
.ws8_c00414{word-spacing:11.244800pt;}
.wsc_c00414{word-spacing:11.507200pt;}
.wsb_c00414{word-spacing:11.635200pt;}
.ws11_c00414{word-spacing:12.185600pt;}
.ws3_c00414{word-spacing:14.726400pt;}
.ws5_c00414{word-spacing:15.379200pt;}
.wsa_c00414{word-spacing:35.200000pt;}
.ws20_c00414{word-spacing:225.132032pt;}
._0_c00414{margin-left:-1.175680pt;}
._1_c00414{width:0.960000pt;}
._3_c00414{width:57.798720pt;}
._4_c00414{width:100.430400pt;}
._d_c00414{width:118.423040pt;}
._a_c00414{width:119.384960pt;}
._7_c00414{width:132.477760pt;}
._10_c00414{width:218.115360pt;}
._9_c00414{width:225.303040pt;}
._6_c00414{width:237.754560pt;}
._b_c00414{width:298.569280pt;}
._2_c00414{width:310.344576pt;}
._11_c00414{width:311.982720pt;}
._5_c00414{width:353.591104pt;}
._e_c00414{width:364.936416pt;}
._f_c00414{width:381.502816pt;}
._c_c00414{width:399.699136pt;}
._8_c00414{width:401.580224pt;}
.fs3_c00414{font-size:37.440000pt;}
.fs5_c00414{font-size:42.560000pt;}
.fs2_c00414{font-size:48.000000pt;}
.fs0_c00414{font-size:53.440000pt;}
.fs4_c00414{font-size:58.560000pt;}
.fs1_c00414{font-size:64.000000pt;}
.y0_c00414{bottom:0.000000pt;}
.y2_c00414{bottom:51.067067pt;}
.y21_c00414{bottom:101.067067pt;}
.y20_c00414{bottom:114.587067pt;}
.y1f_c00414{bottom:132.987067pt;}
.y1e_c00414{bottom:151.387067pt;}
.y1d_c00414{bottom:184.987067pt;}
.y1c_c00414{bottom:216.583707pt;}
.y1b_c00414{bottom:231.627067pt;}
.y1a_c00414{bottom:263.307067pt;}
.y19_c00414{bottom:294.987067pt;}
.y18_c00414{bottom:326.587067pt;}
.y17_c00414{bottom:358.267067pt;}
.y16_c00414{bottom:389.947067pt;}
.y15_c00414{bottom:421.627067pt;}
.y14_c00414{bottom:453.307067pt;}
.y13_c00414{bottom:485.227067pt;}
.y12_c00414{bottom:531.387067pt;}
.y11_c00414{bottom:561.947067pt;}
.y10_c00414{bottom:592.587067pt;}
.yf_c00414{bottom:631.147067pt;}
.ye_c00414{bottom:661.787067pt;}
.yd_c00414{bottom:692.347067pt;}
.yc_c00414{bottom:722.987067pt;}
.yb_c00414{bottom:753.547067pt;}
.ya_c00414{bottom:784.187067pt;}
.y9_c00414{bottom:814.747067pt;}
.y8_c00414{bottom:845.387067pt;}
.y7_c00414{bottom:883.947067pt;}
.y6_c00414{bottom:914.587067pt;}
.y5_c00414{bottom:945.147067pt;}
.y4_c00414{bottom:983.787067pt;}
.y3_c00414{bottom:1014.347067pt;}
.y1_c00414{bottom:1063.867067pt;}
.h7_c00414{height:42.656250pt;}
.h8_c00414{height:44.388750pt;}
.h1_c00414{height:44.724687pt;}
.h5_c00414{height:49.066875pt;}
.h3_c00414{height:53.562500pt;}
.h4_c00414{height:57.894063pt;}
.h2_c00414{height:64.142500pt;}
.h6_c00414{height:75.132048pt;}
.h0_c00414{height:1122.666667pt;}
.w1_c00414{width:793.333333pt;}
.w0_c00414{width:793.626667pt;}
.x0_c00414{left:0.000000pt;}
.x1_c00414{left:113.440000pt;}
.x2_c00414{left:160.640000pt;}
.x3_c00414{left:167.200000pt;}
.x4_c00414{left:453.037200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e8526455d12a619f1e0d1c2.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_2c645c8cb87b0dc85680447b.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;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_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);}
.v3_c00415{vertical-align:-15.120000px;}
.v0_c00415{vertical-align:0.000000px;}
.v2_c00415{vertical-align:15.120000px;}
.v4_c00415{vertical-align:29.880000px;}
.v1_c00415{vertical-align:34.208280px;}
.lsc_c00415{letter-spacing:-0.151200px;}
.lsa_c00415{letter-spacing:-0.144288px;}
.ls15_c00415{letter-spacing:-0.102204px;}
.ls12_c00415{letter-spacing:-0.090180px;}
.ls11_c00415{letter-spacing:-0.066132px;}
.ls13_c00415{letter-spacing:-0.060120px;}
.ls10_c00415{letter-spacing:-0.054108px;}
.lsf_c00415{letter-spacing:-0.048096px;}
.ls1c_c00415{letter-spacing:-0.043200px;}
.ls18_c00415{letter-spacing:-0.036000px;}
.lse_c00415{letter-spacing:-0.030060px;}
.lsd_c00415{letter-spacing:-0.024048px;}
.ls1b_c00415{letter-spacing:-0.021600px;}
.ls16_c00415{letter-spacing:-0.018036px;}
.ls1a_c00415{letter-spacing:-0.014400px;}
.ls19_c00415{letter-spacing:-0.007200px;}
.ls14_c00415{letter-spacing:-0.006012px;}
.lsb_c00415{letter-spacing:0.000000px;}
.ls7_c00415{letter-spacing:0.014364px;}
.ls4_c00415{letter-spacing:0.014400px;}
.ls5_c00415{letter-spacing:0.021600px;}
.ls9_c00415{letter-spacing:0.023940px;}
.ls6_c00415{letter-spacing:0.028728px;}
.ls3_c00415{letter-spacing:0.028800px;}
.ls2_c00415{letter-spacing:0.042084px;}
.ls0_c00415{letter-spacing:0.048096px;}
.ls1d_c00415{letter-spacing:0.054756px;}
.ls1_c00415{letter-spacing:0.084168px;}
.ls1e_c00415{letter-spacing:0.093600px;}
.ls8_c00415{letter-spacing:0.104040px;}
.ls17_c00415{letter-spacing:0.136080px;}
.ls1f_c00415{letter-spacing:0.357696px;}
.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;}
}
.ws1_c00415{word-spacing:-17.964000px;}
.ws3_c00415{word-spacing:-11.166336px;}
.ws2_c00415{word-spacing:-10.584756px;}
.ws0_c00415{word-spacing:-9.856080px;}
.ws12_c00415{word-spacing:-0.252504px;}
.ws8_c00415{word-spacing:-0.240480px;}
.ws9_c00415{word-spacing:-0.222444px;}
.ws5_c00415{word-spacing:-0.126252px;}
.ws2a_c00415{word-spacing:-0.014364px;}
.ws29_c00415{word-spacing:-0.009576px;}
.ws2c_c00415{word-spacing:-0.004788px;}
.ws6_c00415{word-spacing:0.000000px;}
.ws2b_c00415{word-spacing:0.004788px;}
.ws10_c00415{word-spacing:0.006012px;}
.ws24_c00415{word-spacing:0.007200px;}
.ws4_c00415{word-spacing:0.042084px;}
.ws13_c00415{word-spacing:0.054108px;}
.ws1c_c00415{word-spacing:0.057600px;}
.ws23_c00415{word-spacing:0.064800px;}
.wsf_c00415{word-spacing:0.096192px;}
.ws7_c00415{word-spacing:0.114228px;}
.wsd_c00415{word-spacing:0.138276px;}
.wsa_c00415{word-spacing:0.144288px;}
.wse_c00415{word-spacing:0.150300px;}
.wsb_c00415{word-spacing:0.156312px;}
.wsc_c00415{word-spacing:0.180360px;}
.ws18_c00415{word-spacing:1.800000px;}
.ws19_c00415{word-spacing:1.814400px;}
.ws17_c00415{word-spacing:3.909600px;}
.ws16_c00415{word-spacing:3.996000px;}
.ws1b_c00415{word-spacing:6.062400px;}
.ws1a_c00415{word-spacing:6.120000px;}
.ws27_c00415{word-spacing:6.134400px;}
.ws28_c00415{word-spacing:6.141600px;}
.ws1f_c00415{word-spacing:7.214400px;}
.ws22_c00415{word-spacing:9.014400px;}
.ws14_c00415{word-spacing:16.171200px;}
.ws15_c00415{word-spacing:16.272000px;}
.ws26_c00415{word-spacing:22.665600px;}
.ws25_c00415{word-spacing:22.680000px;}
.ws21_c00415{word-spacing:24.141600px;}
.ws20_c00415{word-spacing:24.220800px;}
.ws1e_c00415{word-spacing:27.000000px;}
.ws1d_c00415{word-spacing:27.093600px;}
.ws11_c00415{word-spacing:253.273536px;}
._10_c00415{margin-left:-253.105200px;}
._11_c00415{margin-left:-119.518560px;}
._0_c00415{margin-left:-1.142280px;}
._1_c00415{width:1.292580px;}
._4_c00415{width:133.586640px;}
._6_c00415{width:134.668800px;}
._b_c00415{width:148.676760px;}
._8_c00415{width:163.466280px;}
._e_c00415{width:249.137280px;}
._a_c00415{width:253.105200px;}
._3_c00415{width:267.113160px;}
._5_c00415{width:323.535780px;}
._9_c00415{width:335.890440px;}
._c_c00415{width:350.283168px;}
._d_c00415{width:368.685900px;}
._7_c00415{width:379.814112px;}
._2_c00415{width:401.379156px;}
._12_c00415{width:413.541432px;}
._f_c00415{width:622.987488px;}
.fc0_c00415{color:rgb(0,0,0);}
.fs3_c00415{font-size:38.880000px;}
.fs4_c00415{font-size:42.120000px;}
.fs5_c00415{font-size:47.880000px;}
.fs2_c00415{font-size:54.000000px;}
.fs0_c00415{font-size:60.120000px;}
.fs1_c00415{font-size:72.000000px;}
.y0_c00415{bottom:0.000000px;}
.y2_c00415{bottom:57.450450px;}
.y3_c00415{bottom:61.410450px;}
.y23_c00415{bottom:113.702250px;}
.y22_c00415{bottom:132.064230px;}
.y21_c00415{bottom:150.330450px;}
.y20_c00415{bottom:165.540450px;}
.y1f_c00415{bottom:186.240450px;}
.y1e_c00415{bottom:206.940600px;}
.y1d_c00415{bottom:298.650600px;}
.y1c_c00415{bottom:333.030600px;}
.y1b_c00415{bottom:376.500450px;}
.y1a_c00415{bottom:410.880450px;}
.y19_c00415{bottom:445.350450px;}
.y18_c00415{bottom:479.730450px;}
.y17_c00415{bottom:514.200450px;}
.y16_c00415{bottom:557.580450px;}
.y15_c00415{bottom:592.050450px;}
.y14_c00415{bottom:626.430450px;}
.y13_c00415{bottom:660.900450px;}
.y12_c00415{bottom:695.280450px;}
.y11_c00415{bottom:724.530450px;}
.y10_c00415{bottom:744.060450px;}
.yf_c00415{bottom:779.698560px;}
.ye_c00415{bottom:788.160450px;}
.yd_c00415{bottom:832.166670px;}
.yc_c00415{bottom:849.090450px;}
.yb_c00415{bottom:884.730450px;}
.ya_c00415{bottom:920.280450px;}
.y9_c00415{bottom:955.920450px;}
.y8_c00415{bottom:991.560450px;}
.y7_c00415{bottom:1027.200450px;}
.y6_c00415{bottom:1062.840450px;}
.y5_c00415{bottom:1098.480450px;}
.y4_c00415{bottom:1134.030450px;}
.y1_c00415{bottom:1196.940450px;}
.h2_c00415{height:47.988281px;}
.h8_c00415{height:49.937344px;}
.h1_c00415{height:50.315273px;}
.h3_c00415{height:56.320312px;}
.h6_c00415{height:60.257812px;}
.h7_c00415{height:65.130820px;}
.h5_c00415{height:83.802113px;}
.h4_c00415{height:84.523553px;}
.h0_c00415{height:1263.000000px;}
.w1_c00415{width:892.500000px;}
.w0_c00415{width:892.830000px;}
.x0_c00415{left:0.000000px;}
.x7_c00415{left:127.620000px;}
.x8_c00415{left:180.720000px;}
.x4_c00415{left:188.100000px;}
.x1_c00415{left:211.500000px;}
.x6_c00415{left:218.070000px;}
.x3_c00415{left:435.240000px;}
.x2_c00415{left:446.490000px;}
.x5_c00415{left:509.666850px;}
@media print{
.v3_c00415{vertical-align:-13.440000pt;}
.v0_c00415{vertical-align:0.000000pt;}
.v2_c00415{vertical-align:13.440000pt;}
.v4_c00415{vertical-align:26.560000pt;}
.v1_c00415{vertical-align:30.407360pt;}
.lsc_c00415{letter-spacing:-0.134400pt;}
.lsa_c00415{letter-spacing:-0.128256pt;}
.ls15_c00415{letter-spacing:-0.090848pt;}
.ls12_c00415{letter-spacing:-0.080160pt;}
.ls11_c00415{letter-spacing:-0.058784pt;}
.ls13_c00415{letter-spacing:-0.053440pt;}
.ls10_c00415{letter-spacing:-0.048096pt;}
.lsf_c00415{letter-spacing:-0.042752pt;}
.ls1c_c00415{letter-spacing:-0.038400pt;}
.ls18_c00415{letter-spacing:-0.032000pt;}
.lse_c00415{letter-spacing:-0.026720pt;}
.lsd_c00415{letter-spacing:-0.021376pt;}
.ls1b_c00415{letter-spacing:-0.019200pt;}
.ls16_c00415{letter-spacing:-0.016032pt;}
.ls1a_c00415{letter-spacing:-0.012800pt;}
.ls19_c00415{letter-spacing:-0.006400pt;}
.ls14_c00415{letter-spacing:-0.005344pt;}
.lsb_c00415{letter-spacing:0.000000pt;}
.ls7_c00415{letter-spacing:0.012768pt;}
.ls4_c00415{letter-spacing:0.012800pt;}
.ls5_c00415{letter-spacing:0.019200pt;}
.ls9_c00415{letter-spacing:0.021280pt;}
.ls6_c00415{letter-spacing:0.025536pt;}
.ls3_c00415{letter-spacing:0.025600pt;}
.ls2_c00415{letter-spacing:0.037408pt;}
.ls0_c00415{letter-spacing:0.042752pt;}
.ls1d_c00415{letter-spacing:0.048672pt;}
.ls1_c00415{letter-spacing:0.074816pt;}
.ls1e_c00415{letter-spacing:0.083200pt;}
.ls8_c00415{letter-spacing:0.092480pt;}
.ls17_c00415{letter-spacing:0.120960pt;}
.ls1f_c00415{letter-spacing:0.317952pt;}
.ws1_c00415{word-spacing:-15.968000pt;}
.ws3_c00415{word-spacing:-9.925632pt;}
.ws2_c00415{word-spacing:-9.408672pt;}
.ws0_c00415{word-spacing:-8.760960pt;}
.ws12_c00415{word-spacing:-0.224448pt;}
.ws8_c00415{word-spacing:-0.213760pt;}
.ws9_c00415{word-spacing:-0.197728pt;}
.ws5_c00415{word-spacing:-0.112224pt;}
.ws2a_c00415{word-spacing:-0.012768pt;}
.ws29_c00415{word-spacing:-0.008512pt;}
.ws2c_c00415{word-spacing:-0.004256pt;}
.ws6_c00415{word-spacing:0.000000pt;}
.ws2b_c00415{word-spacing:0.004256pt;}
.ws10_c00415{word-spacing:0.005344pt;}
.ws24_c00415{word-spacing:0.006400pt;}
.ws4_c00415{word-spacing:0.037408pt;}
.ws13_c00415{word-spacing:0.048096pt;}
.ws1c_c00415{word-spacing:0.051200pt;}
.ws23_c00415{word-spacing:0.057600pt;}
.wsf_c00415{word-spacing:0.085504pt;}
.ws7_c00415{word-spacing:0.101536pt;}
.wsd_c00415{word-spacing:0.122912pt;}
.wsa_c00415{word-spacing:0.128256pt;}
.wse_c00415{word-spacing:0.133600pt;}
.wsb_c00415{word-spacing:0.138944pt;}
.wsc_c00415{word-spacing:0.160320pt;}
.ws18_c00415{word-spacing:1.600000pt;}
.ws19_c00415{word-spacing:1.612800pt;}
.ws17_c00415{word-spacing:3.475200pt;}
.ws16_c00415{word-spacing:3.552000pt;}
.ws1b_c00415{word-spacing:5.388800pt;}
.ws1a_c00415{word-spacing:5.440000pt;}
.ws27_c00415{word-spacing:5.452800pt;}
.ws28_c00415{word-spacing:5.459200pt;}
.ws1f_c00415{word-spacing:6.412800pt;}
.ws22_c00415{word-spacing:8.012800pt;}
.ws14_c00415{word-spacing:14.374400pt;}
.ws15_c00415{word-spacing:14.464000pt;}
.ws26_c00415{word-spacing:20.147200pt;}
.ws25_c00415{word-spacing:20.160000pt;}
.ws21_c00415{word-spacing:21.459200pt;}
.ws20_c00415{word-spacing:21.529600pt;}
.ws1e_c00415{word-spacing:24.000000pt;}
.ws1d_c00415{word-spacing:24.083200pt;}
.ws11_c00415{word-spacing:225.132032pt;}
._10_c00415{margin-left:-224.982400pt;}
._11_c00415{margin-left:-106.238720pt;}
._0_c00415{margin-left:-1.015360pt;}
._1_c00415{width:1.148960pt;}
._4_c00415{width:118.743680pt;}
._6_c00415{width:119.705600pt;}
._b_c00415{width:132.157120pt;}
._8_c00415{width:145.303360pt;}
._e_c00415{width:221.455360pt;}
._a_c00415{width:224.982400pt;}
._3_c00415{width:237.433920pt;}
._5_c00415{width:287.587360pt;}
._9_c00415{width:298.569280pt;}
._c_c00415{width:311.362816pt;}
._d_c00415{width:327.720800pt;}
._7_c00415{width:337.612544pt;}
._2_c00415{width:356.781472pt;}
._12_c00415{width:367.592384pt;}
._f_c00415{width:553.766656pt;}
.fs3_c00415{font-size:34.560000pt;}
.fs4_c00415{font-size:37.440000pt;}
.fs5_c00415{font-size:42.560000pt;}
.fs2_c00415{font-size:48.000000pt;}
.fs0_c00415{font-size:53.440000pt;}
.fs1_c00415{font-size:64.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y2_c00415{bottom:51.067067pt;}
.y3_c00415{bottom:54.587067pt;}
.y23_c00415{bottom:101.068667pt;}
.y22_c00415{bottom:117.390427pt;}
.y21_c00415{bottom:133.627067pt;}
.y20_c00415{bottom:147.147067pt;}
.y1f_c00415{bottom:165.547067pt;}
.y1e_c00415{bottom:183.947200pt;}
.y1d_c00415{bottom:265.467200pt;}
.y1c_c00415{bottom:296.027200pt;}
.y1b_c00415{bottom:334.667067pt;}
.y1a_c00415{bottom:365.227067pt;}
.y19_c00415{bottom:395.867067pt;}
.y18_c00415{bottom:426.427067pt;}
.y17_c00415{bottom:457.067067pt;}
.y16_c00415{bottom:495.627067pt;}
.y15_c00415{bottom:526.267067pt;}
.y14_c00415{bottom:556.827067pt;}
.y13_c00415{bottom:587.467067pt;}
.y12_c00415{bottom:618.027067pt;}
.y11_c00415{bottom:644.027067pt;}
.y10_c00415{bottom:661.387067pt;}
.yf_c00415{bottom:693.065387pt;}
.ye_c00415{bottom:700.587067pt;}
.yd_c00415{bottom:739.703707pt;}
.yc_c00415{bottom:754.747067pt;}
.yb_c00415{bottom:786.427067pt;}
.ya_c00415{bottom:818.027067pt;}
.y9_c00415{bottom:849.707067pt;}
.y8_c00415{bottom:881.387067pt;}
.y7_c00415{bottom:913.067067pt;}
.y6_c00415{bottom:944.747067pt;}
.y5_c00415{bottom:976.427067pt;}
.y4_c00415{bottom:1008.027067pt;}
.y1_c00415{bottom:1063.947067pt;}
.h2_c00415{height:42.656250pt;}
.h8_c00415{height:44.388750pt;}
.h1_c00415{height:44.724687pt;}
.h3_c00415{height:50.062500pt;}
.h6_c00415{height:53.562500pt;}
.h7_c00415{height:57.894063pt;}
.h5_c00415{height:74.490768pt;}
.h4_c00415{height:75.132047pt;}
.h0_c00415{height:1122.666667pt;}
.w1_c00415{width:793.333333pt;}
.w0_c00415{width:793.626667pt;}
.x0_c00415{left:0.000000pt;}
.x7_c00415{left:113.440000pt;}
.x8_c00415{left:160.640000pt;}
.x4_c00415{left:167.200000pt;}
.x1_c00415{left:188.000000pt;}
.x6_c00415{left:193.840000pt;}
.x3_c00415{left:386.880000pt;}
.x2_c00415{left:396.880000pt;}
.x5_c00415{left:453.037200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00a2c83ef3825bb22ff30fe8.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_5fb5e87a574b74fde1de1ea1.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00416;src:url('chunks/assets/font_0fb82da43b65316e9aabb45a.woff2')format("woff");}.ff4_c00416{font-family:ff4_c00416;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_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);}
.v3_c00416{vertical-align:-29.880000px;}
.v0_c00416{vertical-align:0.000000px;}
.v1_c00416{vertical-align:15.840000px;}
.v2_c00416{vertical-align:29.880000px;}
.ls16_c00416{letter-spacing:-0.151200px;}
.ls17_c00416{letter-spacing:-0.036000px;}
.ls1d_c00416{letter-spacing:-0.028800px;}
.ls19_c00416{letter-spacing:-0.021600px;}
.ls1c_c00416{letter-spacing:-0.014400px;}
.ls21_c00416{letter-spacing:-0.011664px;}
.ls22_c00416{letter-spacing:-0.007776px;}
.ls1e_c00416{letter-spacing:-0.007200px;}
.ls25_c00416{letter-spacing:-0.003888px;}
.ls18_c00416{letter-spacing:0.000000px;}
.ls4_c00416{letter-spacing:0.007200px;}
.ls11_c00416{letter-spacing:0.009576px;}
.ls9_c00416{letter-spacing:0.014364px;}
.ls2_c00416{letter-spacing:0.014400px;}
.ls12_c00416{letter-spacing:0.018720px;}
.ls14_c00416{letter-spacing:0.019152px;}
.ls8_c00416{letter-spacing:0.021600px;}
.ls10_c00416{letter-spacing:0.023940px;}
.lsb_c00416{letter-spacing:0.028728px;}
.ls3_c00416{letter-spacing:0.028800px;}
.lsd_c00416{letter-spacing:0.033516px;}
.ls5_c00416{letter-spacing:0.036000px;}
.ls15_c00416{letter-spacing:0.038304px;}
.lsc_c00416{letter-spacing:0.047880px;}
.ls0_c00416{letter-spacing:0.048096px;}
.lsf_c00416{letter-spacing:0.052668px;}
.ls1a_c00416{letter-spacing:0.054756px;}
.lse_c00416{letter-spacing:0.057456px;}
.ls1f_c00416{letter-spacing:0.071820px;}
.ls1b_c00416{letter-spacing:0.093600px;}
.ls13_c00416{letter-spacing:0.104040px;}
.ls6_c00416{letter-spacing:0.144000px;}
.lsa_c00416{letter-spacing:0.180000px;}
.ls26_c00416{letter-spacing:0.357696px;}
.ls23_c00416{letter-spacing:0.378252px;}
.ls24_c00416{letter-spacing:0.478800px;}
.ls20_c00416{letter-spacing:0.737352px;}
.ls7_c00416{letter-spacing:65.304000px;}
.ls1_c00416{letter-spacing:1212.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:-13.334580px;}
.ws3_c00416{word-spacing:-13.320216px;}
.ws4_c00416{word-spacing:-11.166336px;}
.ws1_c00416{word-spacing:-10.800864px;}
.ws0_c00416{word-spacing:-10.584756px;}
.wsa_c00416{word-spacing:-0.086400px;}
.ws23_c00416{word-spacing:-0.036000px;}
.ws12_c00416{word-spacing:-0.028800px;}
.ws36_c00416{word-spacing:-0.019152px;}
.ws35_c00416{word-spacing:-0.004788px;}
.ws6_c00416{word-spacing:0.000000px;}
.ws34_c00416{word-spacing:0.004788px;}
.ws13_c00416{word-spacing:0.007200px;}
.ws9_c00416{word-spacing:0.021600px;}
.ws2d_c00416{word-spacing:0.036000px;}
.ws5_c00416{word-spacing:0.042084px;}
.ws1e_c00416{word-spacing:0.064800px;}
.ws1d_c00416{word-spacing:0.072000px;}
.ws28_c00416{word-spacing:0.079200px;}
.ws29_c00416{word-spacing:0.086400px;}
.ws2f_c00416{word-spacing:0.689472px;}
.ws30_c00416{word-spacing:0.703836px;}
.ws2e_c00416{word-spacing:0.708624px;}
.ws2c_c00416{word-spacing:2.865600px;}
.ws2b_c00416{word-spacing:2.944800px;}
.wse_c00416{word-spacing:4.370400px;}
.ws24_c00416{word-spacing:5.018400px;}
.ws25_c00416{word-spacing:5.090400px;}
.wsd_c00416{word-spacing:6.069600px;}
.wsc_c00416{word-spacing:6.148800px;}
.ws2a_c00416{word-spacing:6.170400px;}
.ws18_c00416{word-spacing:7.149600px;}
.ws17_c00416{word-spacing:7.207200px;}
.ws19_c00416{word-spacing:7.329600px;}
.ws27_c00416{word-spacing:7.927200px;}
.ws26_c00416{word-spacing:7.999200px;}
.ws1a_c00416{word-spacing:8.625600px;}
.ws1b_c00416{word-spacing:8.632800px;}
.ws1c_c00416{word-spacing:8.647200px;}
.ws20_c00416{word-spacing:11.167200px;}
.ws10_c00416{word-spacing:12.492000px;}
.wsf_c00416{word-spacing:12.585600px;}
.ws11_c00416{word-spacing:12.614400px;}
.ws1f_c00416{word-spacing:14.385600px;}
.ws16_c00416{word-spacing:15.112800px;}
.ws15_c00416{word-spacing:15.134400px;}
.ws21_c00416{word-spacing:15.825600px;}
.ws22_c00416{word-spacing:15.919200px;}
.ws8_c00416{word-spacing:19.080000px;}
.ws7_c00416{word-spacing:19.116000px;}
.wsb_c00416{word-spacing:25.581600px;}
.ws33_c00416{word-spacing:27.617184px;}
.ws31_c00416{word-spacing:28.038528px;}
.ws32_c00416{word-spacing:28.048104px;}
.ws14_c00416{word-spacing:37.094400px;}
._0_c00416{margin-left:-1.322640px;}
._1_c00416{width:1.152000px;}
.fc0_c00416{color:rgb(0,0,0);}
.fs5_c00416{font-size:38.880000px;}
.fs3_c00416{font-size:42.120000px;}
.fs4_c00416{font-size:47.880000px;}
.fs2_c00416{font-size:54.000000px;}
.fs0_c00416{font-size:60.120000px;}
.fs1_c00416{font-size:72.000000px;}
.y0_c00416{bottom:0.000000px;}
.y2_c00416{bottom:57.450450px;}
.y25_c00416{bottom:113.698470px;}
.y24_c00416{bottom:132.066180px;}
.y23_c00416{bottom:150.332400px;}
.y22_c00416{bottom:168.598620px;}
.y21_c00416{bottom:186.964230px;}
.y20_c00416{bottom:205.237470px;}
.y1f_c00416{bottom:223.503690px;}
.y1e_c00416{bottom:237.364950px;}
.y1d_c00416{bottom:251.130450px;}
.y1c_c00416{bottom:266.340450px;}
.y1b_c00416{bottom:287.040450px;}
.y1a_c00416{bottom:307.740450px;}
.y19_c00416{bottom:338.790600px;}
.y18_c00416{bottom:373.260600px;}
.y17_c00416{bottom:407.640600px;}
.y16_c00416{bottom:451.110450px;}
.y15_c00416{bottom:485.490450px;}
.y14_c00416{bottom:519.960450px;}
.y13_c00416{bottom:563.340450px;}
.y12_c00416{bottom:597.810450px;}
.y11_c00416{bottom:632.190450px;}
.y10_c00416{bottom:666.660450px;}
.yf_c00416{bottom:710.040450px;}
.ye_c00416{bottom:744.510450px;}
.yd_c00416{bottom:778.890450px;}
.yc_c00416{bottom:813.360450px;}
.yb_c00416{bottom:847.740450px;}
.ya_c00416{bottom:882.210450px;}
.y9_c00416{bottom:925.590450px;}
.y8_c00416{bottom:960.060450px;}
.y7_c00416{bottom:994.440450px;}
.y6_c00416{bottom:1028.910450px;}
.y5_c00416{bottom:1063.290450px;}
.y4_c00416{bottom:1106.760450px;}
.y3_c00416{bottom:1141.140450px;}
.y1_c00416{bottom:1196.850450px;}
.h7_c00416{height:47.988281px;}
.h8_c00416{height:49.937344px;}
.h9_c00416{height:49.945264px;}
.h1_c00416{height:50.315273px;}
.h3_c00416{height:60.257812px;}
.h6_c00416{height:65.130220px;}
.h4_c00416{height:65.130820px;}
.h2_c00416{height:72.160312px;}
.h5_c00416{height:75.093750px;}
.h0_c00416{height:1263.000000px;}
.w1_c00416{width:892.500000px;}
.w0_c00416{width:892.830000px;}
.x0_c00416{left:0.000000px;}
.x1_c00416{left:127.620000px;}
.x4_c00416{left:141.116310px;}
.x3_c00416{left:154.620000px;}
.x2_c00416{left:180.720000px;}
@media print{
.v3_c00416{vertical-align:-26.560000pt;}
.v0_c00416{vertical-align:0.000000pt;}
.v1_c00416{vertical-align:14.080000pt;}
.v2_c00416{vertical-align:26.560000pt;}
.ls16_c00416{letter-spacing:-0.134400pt;}
.ls17_c00416{letter-spacing:-0.032000pt;}
.ls1d_c00416{letter-spacing:-0.025600pt;}
.ls19_c00416{letter-spacing:-0.019200pt;}
.ls1c_c00416{letter-spacing:-0.012800pt;}
.ls21_c00416{letter-spacing:-0.010368pt;}
.ls22_c00416{letter-spacing:-0.006912pt;}
.ls1e_c00416{letter-spacing:-0.006400pt;}
.ls25_c00416{letter-spacing:-0.003456pt;}
.ls18_c00416{letter-spacing:0.000000pt;}
.ls4_c00416{letter-spacing:0.006400pt;}
.ls11_c00416{letter-spacing:0.008512pt;}
.ls9_c00416{letter-spacing:0.012768pt;}
.ls2_c00416{letter-spacing:0.012800pt;}
.ls12_c00416{letter-spacing:0.016640pt;}
.ls14_c00416{letter-spacing:0.017024pt;}
.ls8_c00416{letter-spacing:0.019200pt;}
.ls10_c00416{letter-spacing:0.021280pt;}
.lsb_c00416{letter-spacing:0.025536pt;}
.ls3_c00416{letter-spacing:0.025600pt;}
.lsd_c00416{letter-spacing:0.029792pt;}
.ls5_c00416{letter-spacing:0.032000pt;}
.ls15_c00416{letter-spacing:0.034048pt;}
.lsc_c00416{letter-spacing:0.042560pt;}
.ls0_c00416{letter-spacing:0.042752pt;}
.lsf_c00416{letter-spacing:0.046816pt;}
.ls1a_c00416{letter-spacing:0.048672pt;}
.lse_c00416{letter-spacing:0.051072pt;}
.ls1f_c00416{letter-spacing:0.063840pt;}
.ls1b_c00416{letter-spacing:0.083200pt;}
.ls13_c00416{letter-spacing:0.092480pt;}
.ls6_c00416{letter-spacing:0.128000pt;}
.lsa_c00416{letter-spacing:0.160000pt;}
.ls26_c00416{letter-spacing:0.317952pt;}
.ls23_c00416{letter-spacing:0.336224pt;}
.ls24_c00416{letter-spacing:0.425600pt;}
.ls20_c00416{letter-spacing:0.655424pt;}
.ls7_c00416{letter-spacing:58.048000pt;}
.ls1_c00416{letter-spacing:1077.440000pt;}
.ws2_c00416{word-spacing:-11.852960pt;}
.ws3_c00416{word-spacing:-11.840192pt;}
.ws4_c00416{word-spacing:-9.925632pt;}
.ws1_c00416{word-spacing:-9.600768pt;}
.ws0_c00416{word-spacing:-9.408672pt;}
.wsa_c00416{word-spacing:-0.076800pt;}
.ws23_c00416{word-spacing:-0.032000pt;}
.ws12_c00416{word-spacing:-0.025600pt;}
.ws36_c00416{word-spacing:-0.017024pt;}
.ws35_c00416{word-spacing:-0.004256pt;}
.ws6_c00416{word-spacing:0.000000pt;}
.ws34_c00416{word-spacing:0.004256pt;}
.ws13_c00416{word-spacing:0.006400pt;}
.ws9_c00416{word-spacing:0.019200pt;}
.ws2d_c00416{word-spacing:0.032000pt;}
.ws5_c00416{word-spacing:0.037408pt;}
.ws1e_c00416{word-spacing:0.057600pt;}
.ws1d_c00416{word-spacing:0.064000pt;}
.ws28_c00416{word-spacing:0.070400pt;}
.ws29_c00416{word-spacing:0.076800pt;}
.ws2f_c00416{word-spacing:0.612864pt;}
.ws30_c00416{word-spacing:0.625632pt;}
.ws2e_c00416{word-spacing:0.629888pt;}
.ws2c_c00416{word-spacing:2.547200pt;}
.ws2b_c00416{word-spacing:2.617600pt;}
.wse_c00416{word-spacing:3.884800pt;}
.ws24_c00416{word-spacing:4.460800pt;}
.ws25_c00416{word-spacing:4.524800pt;}
.wsd_c00416{word-spacing:5.395200pt;}
.wsc_c00416{word-spacing:5.465600pt;}
.ws2a_c00416{word-spacing:5.484800pt;}
.ws18_c00416{word-spacing:6.355200pt;}
.ws17_c00416{word-spacing:6.406400pt;}
.ws19_c00416{word-spacing:6.515200pt;}
.ws27_c00416{word-spacing:7.046400pt;}
.ws26_c00416{word-spacing:7.110400pt;}
.ws1a_c00416{word-spacing:7.667200pt;}
.ws1b_c00416{word-spacing:7.673600pt;}
.ws1c_c00416{word-spacing:7.686400pt;}
.ws20_c00416{word-spacing:9.926400pt;}
.ws10_c00416{word-spacing:11.104000pt;}
.wsf_c00416{word-spacing:11.187200pt;}
.ws11_c00416{word-spacing:11.212800pt;}
.ws1f_c00416{word-spacing:12.787200pt;}
.ws16_c00416{word-spacing:13.433600pt;}
.ws15_c00416{word-spacing:13.452800pt;}
.ws21_c00416{word-spacing:14.067200pt;}
.ws22_c00416{word-spacing:14.150400pt;}
.ws8_c00416{word-spacing:16.960000pt;}
.ws7_c00416{word-spacing:16.992000pt;}
.wsb_c00416{word-spacing:22.739200pt;}
.ws33_c00416{word-spacing:24.548608pt;}
.ws31_c00416{word-spacing:24.923136pt;}
.ws32_c00416{word-spacing:24.931648pt;}
.ws14_c00416{word-spacing:32.972800pt;}
._0_c00416{margin-left:-1.175680pt;}
._1_c00416{width:1.024000pt;}
.fs5_c00416{font-size:34.560000pt;}
.fs3_c00416{font-size:37.440000pt;}
.fs4_c00416{font-size:42.560000pt;}
.fs2_c00416{font-size:48.000000pt;}
.fs0_c00416{font-size:53.440000pt;}
.fs1_c00416{font-size:64.000000pt;}
.y0_c00416{bottom:0.000000pt;}
.y2_c00416{bottom:51.067067pt;}
.y25_c00416{bottom:101.065307pt;}
.y24_c00416{bottom:117.392160pt;}
.y23_c00416{bottom:133.628800pt;}
.y22_c00416{bottom:149.865440pt;}
.y21_c00416{bottom:166.190427pt;}
.y20_c00416{bottom:182.433307pt;}
.y1f_c00416{bottom:198.669947pt;}
.y1e_c00416{bottom:210.991067pt;}
.y1d_c00416{bottom:223.227067pt;}
.y1c_c00416{bottom:236.747067pt;}
.y1b_c00416{bottom:255.147067pt;}
.y1a_c00416{bottom:273.547067pt;}
.y19_c00416{bottom:301.147200pt;}
.y18_c00416{bottom:331.787200pt;}
.y17_c00416{bottom:362.347200pt;}
.y16_c00416{bottom:400.987067pt;}
.y15_c00416{bottom:431.547067pt;}
.y14_c00416{bottom:462.187067pt;}
.y13_c00416{bottom:500.747067pt;}
.y12_c00416{bottom:531.387067pt;}
.y11_c00416{bottom:561.947067pt;}
.y10_c00416{bottom:592.587067pt;}
.yf_c00416{bottom:631.147067pt;}
.ye_c00416{bottom:661.787067pt;}
.yd_c00416{bottom:692.347067pt;}
.yc_c00416{bottom:722.987067pt;}
.yb_c00416{bottom:753.547067pt;}
.ya_c00416{bottom:784.187067pt;}
.y9_c00416{bottom:822.747067pt;}
.y8_c00416{bottom:853.387067pt;}
.y7_c00416{bottom:883.947067pt;}
.y6_c00416{bottom:914.587067pt;}
.y5_c00416{bottom:945.147067pt;}
.y4_c00416{bottom:983.787067pt;}
.y3_c00416{bottom:1014.347067pt;}
.y1_c00416{bottom:1063.867067pt;}
.h7_c00416{height:42.656250pt;}
.h8_c00416{height:44.388750pt;}
.h9_c00416{height:44.395790pt;}
.h1_c00416{height:44.724687pt;}
.h3_c00416{height:53.562500pt;}
.h6_c00416{height:57.893529pt;}
.h4_c00416{height:57.894063pt;}
.h2_c00416{height:64.142500pt;}
.h5_c00416{height:66.750000pt;}
.h0_c00416{height:1122.666667pt;}
.w1_c00416{width:793.333333pt;}
.w0_c00416{width:793.626667pt;}
.x0_c00416{left:0.000000pt;}
.x1_c00416{left:113.440000pt;}
.x4_c00416{left:125.436720pt;}
.x3_c00416{left:137.440000pt;}
.x2_c00416{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_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_ec797635a42ab306c246c4f5.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_d0923f5a94b088f3f12b27c5.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00417;src:url('chunks/assets/font_afc8d58f3cbfad5cd46347db.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00417;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00417{vertical-align:29.880000px;}
.ls12_c00417{letter-spacing:-0.151200px;}
.ls10_c00417{letter-spacing:-0.144288px;}
.ls1b_c00417{letter-spacing:-0.036000px;}
.ls18_c00417{letter-spacing:-0.028800px;}
.ls1a_c00417{letter-spacing:-0.023436px;}
.ls19_c00417{letter-spacing:-0.021600px;}
.ls13_c00417{letter-spacing:-0.014400px;}
.ls14_c00417{letter-spacing:-0.007200px;}
.ls1d_c00417{letter-spacing:-0.003888px;}
.ls11_c00417{letter-spacing:0.000000px;}
.ls5_c00417{letter-spacing:0.007200px;}
.lse_c00417{letter-spacing:0.009576px;}
.lsb_c00417{letter-spacing:0.014364px;}
.ls6_c00417{letter-spacing:0.015624px;}
.lsf_c00417{letter-spacing:0.018720px;}
.lsa_c00417{letter-spacing:0.021600px;}
.lsd_c00417{letter-spacing:0.023940px;}
.ls9_c00417{letter-spacing:0.025164px;}
.ls17_c00417{letter-spacing:0.036000px;}
.ls8_c00417{letter-spacing:0.039060px;}
.ls3_c00417{letter-spacing:0.043200px;}
.ls0_c00417{letter-spacing:0.048096px;}
.ls15_c00417{letter-spacing:0.054756px;}
.ls16_c00417{letter-spacing:0.093600px;}
.lsc_c00417{letter-spacing:0.104040px;}
.ls1_c00417{letter-spacing:0.144000px;}
.ls1c_c00417{letter-spacing:0.357696px;}
.ls2_c00417{letter-spacing:65.304000px;}
.ls4_c00417{letter-spacing:66.024000px;}
.ls7_c00417{letter-spacing:83.041560px;}
.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:-20.995164px;}
.ws3_c00417{word-spacing:-19.569060px;}
.ws2_c00417{word-spacing:-19.545624px;}
.ws1_c00417{word-spacing:-18.007200px;}
.ws6_c00417{word-spacing:-13.320216px;}
.ws5_c00417{word-spacing:-11.166336px;}
.ws0_c00417{word-spacing:-10.584756px;}
.ws8_c00417{word-spacing:-0.126252px;}
.wsc_c00417{word-spacing:-0.093600px;}
.ws1e_c00417{word-spacing:-0.070308px;}
.ws23_c00417{word-spacing:-0.004788px;}
.ws9_c00417{word-spacing:0.000000px;}
.ws22_c00417{word-spacing:0.004788px;}
.wsb_c00417{word-spacing:0.007200px;}
.ws12_c00417{word-spacing:0.014400px;}
.ws7_c00417{word-spacing:0.042084px;}
.ws20_c00417{word-spacing:2.196000px;}
.ws1f_c00417{word-spacing:2.246400px;}
.ws21_c00417{word-spacing:5.796000px;}
.wsd_c00417{word-spacing:6.120000px;}
.ws18_c00417{word-spacing:6.163200px;}
.wse_c00417{word-spacing:6.228000px;}
.ws16_c00417{word-spacing:6.897600px;}
.wsa_c00417{word-spacing:7.934400px;}
.ws15_c00417{word-spacing:9.748800px;}
.ws10_c00417{word-spacing:10.036800px;}
.wsf_c00417{word-spacing:10.072800px;}
.ws11_c00417{word-spacing:10.130400px;}
.ws17_c00417{word-spacing:11.894400px;}
.ws19_c00417{word-spacing:18.360000px;}
.ws1a_c00417{word-spacing:18.432000px;}
.ws1b_c00417{word-spacing:19.468800px;}
.ws1c_c00417{word-spacing:33.148800px;}
.ws1d_c00417{word-spacing:33.228000px;}
.ws14_c00417{word-spacing:35.935200px;}
.ws13_c00417{word-spacing:36.007200px;}
._2_c00417{margin-left:-7.920000px;}
._3_c00417{margin-left:-4.680000px;}
._0_c00417{margin-left:-1.142280px;}
._1_c00417{width:1.292580px;}
.fc0_c00417{color:rgb(0,0,0);}
.fs7_c00417{font-size:38.880000px;}
.fs3_c00417{font-size:42.120000px;}
.fs6_c00417{font-size:47.880000px;}
.fs2_c00417{font-size:54.000000px;}
.fs0_c00417{font-size:60.120000px;}
.fs1_c00417{font-size:72.000000px;}
.fs4_c00417{font-size:78.120000px;}
.fs5_c00417{font-size:83.880000px;}
.y0_c00417{bottom:0.000000px;}
.y2_c00417{bottom:57.450450px;}
.y3_c00417{bottom:61.410450px;}
.y22_c00417{bottom:113.698470px;}
.y21_c00417{bottom:132.064230px;}
.y20_c00417{bottom:150.334230px;}
.y1f_c00417{bottom:168.598620px;}
.y1e_c00417{bottom:186.964230px;}
.y1d_c00417{bottom:205.234230px;}
.y1c_c00417{bottom:223.500450px;}
.y1b_c00417{bottom:238.710450px;}
.y1a_c00417{bottom:259.410450px;}
.y19_c00417{bottom:280.110450px;}
.y18_c00417{bottom:356.970450px;}
.y17_c00417{bottom:391.350450px;}
.y16_c00417{bottom:437.880450px;}
.y15_c00417{bottom:501.960450px;}
.y14_c00417{bottom:536.340450px;}
.y13_c00417{bottom:570.810450px;}
.y12_c00417{bottom:605.190450px;}
.y11_c00417{bottom:639.660450px;}
.y10_c00417{bottom:674.040450px;}
.yf_c00417{bottom:708.510450px;}
.ye_c00417{bottom:760.890450px;}
.yd_c00417{bottom:795.360450px;}
.yc_c00417{bottom:838.740450px;}
.yb_c00417{bottom:873.210450px;}
.ya_c00417{bottom:907.590450px;}
.y9_c00417{bottom:951.060450px;}
.y8_c00417{bottom:985.440450px;}
.y7_c00417{bottom:1028.910450px;}
.y6_c00417{bottom:1063.290450px;}
.y5_c00417{bottom:1106.760450px;}
.y4_c00417{bottom:1141.140450px;}
.y1_c00417{bottom:1196.940450px;}
.h2_c00417{height:47.988281px;}
.h9_c00417{height:49.937344px;}
.ha_c00417{height:49.944664px;}
.hb_c00417{height:49.945264px;}
.h1_c00417{height:50.315273px;}
.h3_c00417{height:56.320312px;}
.h6_c00417{height:60.257812px;}
.h5_c00417{height:65.130820px;}
.h7_c00417{height:65.131420px;}
.h4_c00417{height:75.093750px;}
.h8_c00417{height:81.476719px;}
.h0_c00417{height:1263.000000px;}
.w1_c00417{width:892.500000px;}
.w0_c00417{width:892.830000px;}
.x0_c00417{left:0.000000px;}
.x6_c00417{left:127.620000px;}
.x4_c00417{left:154.620000px;}
.x5_c00417{left:181.620000px;}
.x1_c00417{left:211.500000px;}
.x3_c00417{left:435.240000px;}
.x2_c00417{left:446.490000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.v1_c00417{vertical-align:26.560000pt;}
.ls12_c00417{letter-spacing:-0.134400pt;}
.ls10_c00417{letter-spacing:-0.128256pt;}
.ls1b_c00417{letter-spacing:-0.032000pt;}
.ls18_c00417{letter-spacing:-0.025600pt;}
.ls1a_c00417{letter-spacing:-0.020832pt;}
.ls19_c00417{letter-spacing:-0.019200pt;}
.ls13_c00417{letter-spacing:-0.012800pt;}
.ls14_c00417{letter-spacing:-0.006400pt;}
.ls1d_c00417{letter-spacing:-0.003456pt;}
.ls11_c00417{letter-spacing:0.000000pt;}
.ls5_c00417{letter-spacing:0.006400pt;}
.lse_c00417{letter-spacing:0.008512pt;}
.lsb_c00417{letter-spacing:0.012768pt;}
.ls6_c00417{letter-spacing:0.013888pt;}
.lsf_c00417{letter-spacing:0.016640pt;}
.lsa_c00417{letter-spacing:0.019200pt;}
.lsd_c00417{letter-spacing:0.021280pt;}
.ls9_c00417{letter-spacing:0.022368pt;}
.ls17_c00417{letter-spacing:0.032000pt;}
.ls8_c00417{letter-spacing:0.034720pt;}
.ls3_c00417{letter-spacing:0.038400pt;}
.ls0_c00417{letter-spacing:0.042752pt;}
.ls15_c00417{letter-spacing:0.048672pt;}
.ls16_c00417{letter-spacing:0.083200pt;}
.lsc_c00417{letter-spacing:0.092480pt;}
.ls1_c00417{letter-spacing:0.128000pt;}
.ls1c_c00417{letter-spacing:0.317952pt;}
.ls2_c00417{letter-spacing:58.048000pt;}
.ls4_c00417{letter-spacing:58.688000pt;}
.ls7_c00417{letter-spacing:73.814720pt;}
.ws4_c00417{word-spacing:-18.662368pt;}
.ws3_c00417{word-spacing:-17.394720pt;}
.ws2_c00417{word-spacing:-17.373888pt;}
.ws1_c00417{word-spacing:-16.006400pt;}
.ws6_c00417{word-spacing:-11.840192pt;}
.ws5_c00417{word-spacing:-9.925632pt;}
.ws0_c00417{word-spacing:-9.408672pt;}
.ws8_c00417{word-spacing:-0.112224pt;}
.wsc_c00417{word-spacing:-0.083200pt;}
.ws1e_c00417{word-spacing:-0.062496pt;}
.ws23_c00417{word-spacing:-0.004256pt;}
.ws9_c00417{word-spacing:0.000000pt;}
.ws22_c00417{word-spacing:0.004256pt;}
.wsb_c00417{word-spacing:0.006400pt;}
.ws12_c00417{word-spacing:0.012800pt;}
.ws7_c00417{word-spacing:0.037408pt;}
.ws20_c00417{word-spacing:1.952000pt;}
.ws1f_c00417{word-spacing:1.996800pt;}
.ws21_c00417{word-spacing:5.152000pt;}
.wsd_c00417{word-spacing:5.440000pt;}
.ws18_c00417{word-spacing:5.478400pt;}
.wse_c00417{word-spacing:5.536000pt;}
.ws16_c00417{word-spacing:6.131200pt;}
.wsa_c00417{word-spacing:7.052800pt;}
.ws15_c00417{word-spacing:8.665600pt;}
.ws10_c00417{word-spacing:8.921600pt;}
.wsf_c00417{word-spacing:8.953600pt;}
.ws11_c00417{word-spacing:9.004800pt;}
.ws17_c00417{word-spacing:10.572800pt;}
.ws19_c00417{word-spacing:16.320000pt;}
.ws1a_c00417{word-spacing:16.384000pt;}
.ws1b_c00417{word-spacing:17.305600pt;}
.ws1c_c00417{word-spacing:29.465600pt;}
.ws1d_c00417{word-spacing:29.536000pt;}
.ws14_c00417{word-spacing:31.942400pt;}
.ws13_c00417{word-spacing:32.006400pt;}
._2_c00417{margin-left:-7.040000pt;}
._3_c00417{margin-left:-4.160000pt;}
._0_c00417{margin-left:-1.015360pt;}
._1_c00417{width:1.148960pt;}
.fs7_c00417{font-size:34.560000pt;}
.fs3_c00417{font-size:37.440000pt;}
.fs6_c00417{font-size:42.560000pt;}
.fs2_c00417{font-size:48.000000pt;}
.fs0_c00417{font-size:53.440000pt;}
.fs1_c00417{font-size:64.000000pt;}
.fs4_c00417{font-size:69.440000pt;}
.fs5_c00417{font-size:74.560000pt;}
.y0_c00417{bottom:0.000000pt;}
.y2_c00417{bottom:51.067067pt;}
.y3_c00417{bottom:54.587067pt;}
.y22_c00417{bottom:101.065307pt;}
.y21_c00417{bottom:117.390427pt;}
.y20_c00417{bottom:133.630427pt;}
.y1f_c00417{bottom:149.865440pt;}
.y1e_c00417{bottom:166.190427pt;}
.y1d_c00417{bottom:182.430427pt;}
.y1c_c00417{bottom:198.667067pt;}
.y1b_c00417{bottom:212.187067pt;}
.y1a_c00417{bottom:230.587067pt;}
.y19_c00417{bottom:248.987067pt;}
.y18_c00417{bottom:317.307067pt;}
.y17_c00417{bottom:347.867067pt;}
.y16_c00417{bottom:389.227067pt;}
.y15_c00417{bottom:446.187067pt;}
.y14_c00417{bottom:476.747067pt;}
.y13_c00417{bottom:507.387067pt;}
.y12_c00417{bottom:537.947067pt;}
.y11_c00417{bottom:568.587067pt;}
.y10_c00417{bottom:599.147067pt;}
.yf_c00417{bottom:629.787067pt;}
.ye_c00417{bottom:676.347067pt;}
.yd_c00417{bottom:706.987067pt;}
.yc_c00417{bottom:745.547067pt;}
.yb_c00417{bottom:776.187067pt;}
.ya_c00417{bottom:806.747067pt;}
.y9_c00417{bottom:845.387067pt;}
.y8_c00417{bottom:875.947067pt;}
.y7_c00417{bottom:914.587067pt;}
.y6_c00417{bottom:945.147067pt;}
.y5_c00417{bottom:983.787067pt;}
.y4_c00417{bottom:1014.347067pt;}
.y1_c00417{bottom:1063.947067pt;}
.h2_c00417{height:42.656250pt;}
.h9_c00417{height:44.388750pt;}
.ha_c00417{height:44.395257pt;}
.hb_c00417{height:44.395790pt;}
.h1_c00417{height:44.724687pt;}
.h3_c00417{height:50.062500pt;}
.h6_c00417{height:53.562500pt;}
.h5_c00417{height:57.894063pt;}
.h7_c00417{height:57.894596pt;}
.h4_c00417{height:66.750000pt;}
.h8_c00417{height:72.423750pt;}
.h0_c00417{height:1122.666667pt;}
.w1_c00417{width:793.333333pt;}
.w0_c00417{width:793.626667pt;}
.x0_c00417{left:0.000000pt;}
.x6_c00417{left:113.440000pt;}
.x4_c00417{left:137.440000pt;}
.x5_c00417{left:161.440000pt;}
.x1_c00417{left:188.000000pt;}
.x3_c00417{left:386.880000pt;}
.x2_c00417{left:396.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_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_33fa8bebb99c200dee1a5060.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_62f2f0375fdf5450d92f070c.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;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_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);}
.v3_c00418{vertical-align:-29.880000px;}
.v0_c00418{vertical-align:0.000000px;}
.v1_c00418{vertical-align:15.840000px;}
.v2_c00418{vertical-align:29.880000px;}
.ls9_c00418{letter-spacing:-0.151200px;}
.lsc_c00418{letter-spacing:-0.036000px;}
.lsb_c00418{letter-spacing:-0.028800px;}
.lsf_c00418{letter-spacing:-0.021600px;}
.lsa_c00418{letter-spacing:-0.014400px;}
.ls11_c00418{letter-spacing:-0.007200px;}
.ls10_c00418{letter-spacing:0.000000px;}
.ls6_c00418{letter-spacing:0.007200px;}
.ls4_c00418{letter-spacing:0.014400px;}
.ls5_c00418{letter-spacing:0.028800px;}
.ls8_c00418{letter-spacing:0.033516px;}
.ls2_c00418{letter-spacing:0.036000px;}
.ls7_c00418{letter-spacing:0.038304px;}
.ls0_c00418{letter-spacing:0.048096px;}
.lsd_c00418{letter-spacing:0.054756px;}
.ls3_c00418{letter-spacing:0.057600px;}
.ls12_c00418{letter-spacing:0.064800px;}
.lse_c00418{letter-spacing:0.093600px;}
.ls1_c00418{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00418{word-spacing:-10.584756px;}
.wsc_c00418{word-spacing:-0.237600px;}
.wsd_c00418{word-spacing:-0.093600px;}
.ws6_c00418{word-spacing:-0.086400px;}
.wsb_c00418{word-spacing:-0.036000px;}
.ws28_c00418{word-spacing:-0.019152px;}
.ws29_c00418{word-spacing:-0.009576px;}
.ws2_c00418{word-spacing:0.000000px;}
.ws23_c00418{word-spacing:0.007200px;}
.ws1f_c00418{word-spacing:0.021600px;}
.ws5_c00418{word-spacing:0.036000px;}
.ws1_c00418{word-spacing:0.042084px;}
.ws14_c00418{word-spacing:0.057600px;}
.ws16_c00418{word-spacing:0.151200px;}
.ws1a_c00418{word-spacing:0.748800px;}
.ws19_c00418{word-spacing:0.777600px;}
.ws12_c00418{word-spacing:1.828800px;}
.ws11_c00418{word-spacing:1.879200px;}
.ws24_c00418{word-spacing:2.541600px;}
.ws10_c00418{word-spacing:2.880000px;}
.wsf_c00418{word-spacing:3.038400px;}
.ws27_c00418{word-spacing:3.232800px;}
.wse_c00418{word-spacing:3.240000px;}
.ws25_c00418{word-spacing:3.254400px;}
.ws26_c00418{word-spacing:3.326400px;}
.ws22_c00418{word-spacing:4.730400px;}
.ws21_c00418{word-spacing:4.795200px;}
.ws20_c00418{word-spacing:4.809600px;}
.ws1d_c00418{word-spacing:6.091200px;}
.ws1e_c00418{word-spacing:6.120000px;}
.ws17_c00418{word-spacing:7.934400px;}
.ws8_c00418{word-spacing:7.956000px;}
.ws1c_c00418{word-spacing:8.920800px;}
.ws1b_c00418{word-spacing:8.985600px;}
.ws15_c00418{word-spacing:11.894400px;}
.ws3_c00418{word-spacing:12.916800px;}
.ws4_c00418{word-spacing:12.988800px;}
.wsa_c00418{word-spacing:14.731200px;}
.ws9_c00418{word-spacing:14.760000px;}
.ws18_c00418{word-spacing:14.868000px;}
.ws7_c00418{word-spacing:15.501600px;}
.ws13_c00418{word-spacing:18.396000px;}
._0_c00418{margin-left:-1.322640px;}
._1_c00418{width:1.080000px;}
.fc0_c00418{color:rgb(0,0,0);}
.fs3_c00418{font-size:42.120000px;}
.fs4_c00418{font-size:47.880000px;}
.fs2_c00418{font-size:54.000000px;}
.fs0_c00418{font-size:60.120000px;}
.fs1_c00418{font-size:72.000000px;}
.y0_c00418{bottom:0.000000px;}
.y2_c00418{bottom:57.450450px;}
.y23_c00418{bottom:113.704200px;}
.y22_c00418{bottom:132.066180px;}
.y21_c00418{bottom:150.332400px;}
.y20_c00418{bottom:168.598620px;}
.y1f_c00418{bottom:186.960600px;}
.y1e_c00418{bottom:202.170450px;}
.y1d_c00418{bottom:222.870450px;}
.y1c_c00418{bottom:243.570450px;}
.y1b_c00418{bottom:269.940450px;}
.y1a_c00418{bottom:304.410450px;}
.y19_c00418{bottom:338.790450px;}
.y18_c00418{bottom:382.260600px;}
.y17_c00418{bottom:416.640600px;}
.y16_c00418{bottom:460.110450px;}
.y15_c00418{bottom:494.490450px;}
.y14_c00418{bottom:528.960450px;}
.y13_c00418{bottom:563.340450px;}
.y12_c00418{bottom:597.810450px;}
.y11_c00418{bottom:632.190450px;}
.y10_c00418{bottom:675.660450px;}
.yf_c00418{bottom:710.040450px;}
.ye_c00418{bottom:744.510450px;}
.yd_c00418{bottom:778.890450px;}
.yc_c00418{bottom:813.360450px;}
.yb_c00418{bottom:847.740450px;}
.ya_c00418{bottom:882.210450px;}
.y9_c00418{bottom:925.590450px;}
.y8_c00418{bottom:960.060450px;}
.y7_c00418{bottom:994.440450px;}
.y6_c00418{bottom:1028.910450px;}
.y5_c00418{bottom:1063.290450px;}
.y4_c00418{bottom:1106.760450px;}
.y3_c00418{bottom:1141.140450px;}
.y1_c00418{bottom:1196.850450px;}
.h7_c00418{height:47.988281px;}
.h8_c00418{height:49.937344px;}
.h1_c00418{height:50.315273px;}
.h3_c00418{height:60.257812px;}
.h6_c00418{height:65.130220px;}
.h4_c00418{height:65.130820px;}
.h5_c00418{height:65.131420px;}
.h2_c00418{height:72.160312px;}
.h0_c00418{height:1263.000000px;}
.w1_c00418{width:892.500000px;}
.w0_c00418{width:892.830000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:127.620000px;}
.x2_c00418{left:180.810000px;}
@media print{
.v3_c00418{vertical-align:-26.560000pt;}
.v0_c00418{vertical-align:0.000000pt;}
.v1_c00418{vertical-align:14.080000pt;}
.v2_c00418{vertical-align:26.560000pt;}
.ls9_c00418{letter-spacing:-0.134400pt;}
.lsc_c00418{letter-spacing:-0.032000pt;}
.lsb_c00418{letter-spacing:-0.025600pt;}
.lsf_c00418{letter-spacing:-0.019200pt;}
.lsa_c00418{letter-spacing:-0.012800pt;}
.ls11_c00418{letter-spacing:-0.006400pt;}
.ls10_c00418{letter-spacing:0.000000pt;}
.ls6_c00418{letter-spacing:0.006400pt;}
.ls4_c00418{letter-spacing:0.012800pt;}
.ls5_c00418{letter-spacing:0.025600pt;}
.ls8_c00418{letter-spacing:0.029792pt;}
.ls2_c00418{letter-spacing:0.032000pt;}
.ls7_c00418{letter-spacing:0.034048pt;}
.ls0_c00418{letter-spacing:0.042752pt;}
.lsd_c00418{letter-spacing:0.048672pt;}
.ls3_c00418{letter-spacing:0.051200pt;}
.ls12_c00418{letter-spacing:0.057600pt;}
.lse_c00418{letter-spacing:0.083200pt;}
.ls1_c00418{letter-spacing:1077.440000pt;}
.ws0_c00418{word-spacing:-9.408672pt;}
.wsc_c00418{word-spacing:-0.211200pt;}
.wsd_c00418{word-spacing:-0.083200pt;}
.ws6_c00418{word-spacing:-0.076800pt;}
.wsb_c00418{word-spacing:-0.032000pt;}
.ws28_c00418{word-spacing:-0.017024pt;}
.ws29_c00418{word-spacing:-0.008512pt;}
.ws2_c00418{word-spacing:0.000000pt;}
.ws23_c00418{word-spacing:0.006400pt;}
.ws1f_c00418{word-spacing:0.019200pt;}
.ws5_c00418{word-spacing:0.032000pt;}
.ws1_c00418{word-spacing:0.037408pt;}
.ws14_c00418{word-spacing:0.051200pt;}
.ws16_c00418{word-spacing:0.134400pt;}
.ws1a_c00418{word-spacing:0.665600pt;}
.ws19_c00418{word-spacing:0.691200pt;}
.ws12_c00418{word-spacing:1.625600pt;}
.ws11_c00418{word-spacing:1.670400pt;}
.ws24_c00418{word-spacing:2.259200pt;}
.ws10_c00418{word-spacing:2.560000pt;}
.wsf_c00418{word-spacing:2.700800pt;}
.ws27_c00418{word-spacing:2.873600pt;}
.wse_c00418{word-spacing:2.880000pt;}
.ws25_c00418{word-spacing:2.892800pt;}
.ws26_c00418{word-spacing:2.956800pt;}
.ws22_c00418{word-spacing:4.204800pt;}
.ws21_c00418{word-spacing:4.262400pt;}
.ws20_c00418{word-spacing:4.275200pt;}
.ws1d_c00418{word-spacing:5.414400pt;}
.ws1e_c00418{word-spacing:5.440000pt;}
.ws17_c00418{word-spacing:7.052800pt;}
.ws8_c00418{word-spacing:7.072000pt;}
.ws1c_c00418{word-spacing:7.929600pt;}
.ws1b_c00418{word-spacing:7.987200pt;}
.ws15_c00418{word-spacing:10.572800pt;}
.ws3_c00418{word-spacing:11.481600pt;}
.ws4_c00418{word-spacing:11.545600pt;}
.wsa_c00418{word-spacing:13.094400pt;}
.ws9_c00418{word-spacing:13.120000pt;}
.ws18_c00418{word-spacing:13.216000pt;}
.ws7_c00418{word-spacing:13.779200pt;}
.ws13_c00418{word-spacing:16.352000pt;}
._0_c00418{margin-left:-1.175680pt;}
._1_c00418{width:0.960000pt;}
.fs3_c00418{font-size:37.440000pt;}
.fs4_c00418{font-size:42.560000pt;}
.fs2_c00418{font-size:48.000000pt;}
.fs0_c00418{font-size:53.440000pt;}
.fs1_c00418{font-size:64.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.y2_c00418{bottom:51.067067pt;}
.y23_c00418{bottom:101.070400pt;}
.y22_c00418{bottom:117.392160pt;}
.y21_c00418{bottom:133.628800pt;}
.y20_c00418{bottom:149.865440pt;}
.y1f_c00418{bottom:166.187200pt;}
.y1e_c00418{bottom:179.707067pt;}
.y1d_c00418{bottom:198.107067pt;}
.y1c_c00418{bottom:216.507067pt;}
.y1b_c00418{bottom:239.947067pt;}
.y1a_c00418{bottom:270.587067pt;}
.y19_c00418{bottom:301.147067pt;}
.y18_c00418{bottom:339.787200pt;}
.y17_c00418{bottom:370.347200pt;}
.y16_c00418{bottom:408.987067pt;}
.y15_c00418{bottom:439.547067pt;}
.y14_c00418{bottom:470.187067pt;}
.y13_c00418{bottom:500.747067pt;}
.y12_c00418{bottom:531.387067pt;}
.y11_c00418{bottom:561.947067pt;}
.y10_c00418{bottom:600.587067pt;}
.yf_c00418{bottom:631.147067pt;}
.ye_c00418{bottom:661.787067pt;}
.yd_c00418{bottom:692.347067pt;}
.yc_c00418{bottom:722.987067pt;}
.yb_c00418{bottom:753.547067pt;}
.ya_c00418{bottom:784.187067pt;}
.y9_c00418{bottom:822.747067pt;}
.y8_c00418{bottom:853.387067pt;}
.y7_c00418{bottom:883.947067pt;}
.y6_c00418{bottom:914.587067pt;}
.y5_c00418{bottom:945.147067pt;}
.y4_c00418{bottom:983.787067pt;}
.y3_c00418{bottom:1014.347067pt;}
.y1_c00418{bottom:1063.867067pt;}
.h7_c00418{height:42.656250pt;}
.h8_c00418{height:44.388750pt;}
.h1_c00418{height:44.724687pt;}
.h3_c00418{height:53.562500pt;}
.h6_c00418{height:57.893529pt;}
.h4_c00418{height:57.894063pt;}
.h5_c00418{height:57.894596pt;}
.h2_c00418{height:64.142500pt;}
.h0_c00418{height:1122.666667pt;}
.w1_c00418{width:793.333333pt;}
.w0_c00418{width:793.626667pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:113.440000pt;}
.x2_c00418{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_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_81ee605f80556638b6847efa.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_6af2aeb33cef0c3caf79cf35.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00419;src:url('chunks/assets/font_093e0577fea71eefef433ef2.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00419;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00419{font-family:ff5_c00419;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_c00419;src:url('chunks/assets/font_c69b3601a90dda5c4c84288d.woff2')format("woff");}.ff6_c00419{font-family:ff6_c00419;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_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;}
.v1_c00419{vertical-align:29.880000px;}
.ls18_c00419{letter-spacing:-0.266400px;}
.ls10_c00419{letter-spacing:-0.151200px;}
.lse_c00419{letter-spacing:-0.144288px;}
.ls14_c00419{letter-spacing:-0.036000px;}
.ls19_c00419{letter-spacing:-0.031248px;}
.ls12_c00419{letter-spacing:-0.028800px;}
.ls13_c00419{letter-spacing:-0.021600px;}
.ls17_c00419{letter-spacing:-0.014400px;}
.ls1a_c00419{letter-spacing:-0.007200px;}
.ls1e_c00419{letter-spacing:-0.004788px;}
.ls1c_c00419{letter-spacing:-0.003888px;}
.lsf_c00419{letter-spacing:0.000000px;}
.lsc_c00419{letter-spacing:0.003888px;}
.ls2_c00419{letter-spacing:0.007200px;}
.ls6_c00419{letter-spacing:0.007812px;}
.ls1d_c00419{letter-spacing:0.009576px;}
.lsb_c00419{letter-spacing:0.014364px;}
.ls1_c00419{letter-spacing:0.014400px;}
.ls4_c00419{letter-spacing:0.015624px;}
.lsa_c00419{letter-spacing:0.023940px;}
.ls9_c00419{letter-spacing:0.028728px;}
.ls3_c00419{letter-spacing:0.028800px;}
.ls7_c00419{letter-spacing:0.033516px;}
.ls1b_c00419{letter-spacing:0.038304px;}
.ls11_c00419{letter-spacing:0.043200px;}
.ls8_c00419{letter-spacing:0.047880px;}
.ls0_c00419{letter-spacing:0.048096px;}
.ls15_c00419{letter-spacing:0.054756px;}
.ls16_c00419{letter-spacing:0.093600px;}
.lsd_c00419{letter-spacing:0.104040px;}
.ls5_c00419{letter-spacing:83.041560px;}
.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;}
}
.ws2_c00419{word-spacing:-19.545624px;}
.ws3_c00419{word-spacing:-17.971200px;}
.ws0_c00419{word-spacing:-17.964000px;}
.ws4_c00419{word-spacing:-10.804752px;}
.ws1_c00419{word-spacing:-10.584756px;}
.ws1d_c00419{word-spacing:-0.242172px;}
.ws6_c00419{word-spacing:-0.126252px;}
.ws1c_c00419{word-spacing:-0.101556px;}
.ws28_c00419{word-spacing:-0.028728px;}
.ws2b_c00419{word-spacing:-0.019152px;}
.ws18_c00419{word-spacing:-0.014400px;}
.ws27_c00419{word-spacing:-0.014364px;}
.ws29_c00419{word-spacing:-0.009576px;}
.ws2e_c00419{word-spacing:-0.007776px;}
.ws2a_c00419{word-spacing:-0.004788px;}
.ws7_c00419{word-spacing:0.000000px;}
.ws2d_c00419{word-spacing:0.004788px;}
.ws2f_c00419{word-spacing:0.009576px;}
.ws1b_c00419{word-spacing:0.014400px;}
.ws30_c00419{word-spacing:0.023940px;}
.ws5_c00419{word-spacing:0.042084px;}
.ws17_c00419{word-spacing:0.050400px;}
.ws11_c00419{word-spacing:0.712800px;}
.ws26_c00419{word-spacing:0.727200px;}
.ws19_c00419{word-spacing:1.411200px;}
.ws2c_c00419{word-spacing:1.431612px;}
.ws1a_c00419{word-spacing:1.454400px;}
.ws20_c00419{word-spacing:2.887200px;}
.ws21_c00419{word-spacing:2.937600px;}
.ws14_c00419{word-spacing:3.348000px;}
.ws15_c00419{word-spacing:3.434400px;}
.ws12_c00419{word-spacing:4.701600px;}
.ws13_c00419{word-spacing:4.780800px;}
.ws9_c00419{word-spacing:5.356800px;}
.ws8_c00419{word-spacing:5.551200px;}
.wsb_c00419{word-spacing:6.040800px;}
.wsa_c00419{word-spacing:6.148800px;}
.ws1e_c00419{word-spacing:6.487200px;}
.ws1f_c00419{word-spacing:6.566400px;}
.ws10_c00419{word-spacing:7.948800px;}
.ws22_c00419{word-spacing:8.272800px;}
.wsc_c00419{word-spacing:8.323200px;}
.ws23_c00419{word-spacing:8.352000px;}
.wsd_c00419{word-spacing:10.461600px;}
.ws24_c00419{word-spacing:15.847200px;}
.ws25_c00419{word-spacing:15.912000px;}
.ws16_c00419{word-spacing:21.240000px;}
.wse_c00419{word-spacing:52.560000px;}
.wsf_c00419{word-spacing:52.574400px;}
._0_c00419{margin-left:-1.142280px;}
._1_c00419{width:1.292580px;}
.fc0_c00419{color:rgb(0,0,0);}
.fs6_c00419{font-size:38.880000px;}
.fs3_c00419{font-size:42.120000px;}
.fs5_c00419{font-size:47.880000px;}
.fs2_c00419{font-size:54.000000px;}
.fs0_c00419{font-size:60.120000px;}
.fs1_c00419{font-size:72.000000px;}
.fs4_c00419{font-size:78.120000px;}
.y0_c00419{bottom:0.000000px;}
.y2_c00419{bottom:57.450450px;}
.y3_c00419{bottom:61.410450px;}
.y24_c00419{bottom:113.712330px;}
.y23_c00419{bottom:132.074310px;}
.y22_c00419{bottom:145.839810px;}
.y21_c00419{bottom:164.106030px;}
.y20_c00419{bottom:182.468010px;}
.y1f_c00419{bottom:200.734230px;}
.y1e_c00419{bottom:219.000450px;}
.y1d_c00419{bottom:234.210450px;}
.y1c_c00419{bottom:254.910450px;}
.y1b_c00419{bottom:275.610450px;}
.y1a_c00419{bottom:317.910450px;}
.y19_c00419{bottom:352.380450px;}
.y18_c00419{bottom:395.760450px;}
.y17_c00419{bottom:430.230450px;}
.y16_c00419{bottom:464.610450px;}
.y15_c00419{bottom:499.080450px;}
.y14_c00419{bottom:533.460450px;}
.y13_c00419{bottom:578.550450px;}
.y12_c00419{bottom:641.190450px;}
.y11_c00419{bottom:675.660450px;}
.y10_c00419{bottom:710.040450px;}
.yf_c00419{bottom:744.510450px;}
.ye_c00419{bottom:778.890450px;}
.yd_c00419{bottom:813.360450px;}
.yc_c00419{bottom:847.740450px;}
.yb_c00419{bottom:891.210450px;}
.ya_c00419{bottom:925.590450px;}
.y9_c00419{bottom:960.060450px;}
.y8_c00419{bottom:994.440450px;}
.y7_c00419{bottom:1037.910450px;}
.y6_c00419{bottom:1072.290450px;}
.y5_c00419{bottom:1106.760450px;}
.y4_c00419{bottom:1141.140450px;}
.y1_c00419{bottom:1196.940450px;}
.h2_c00419{height:47.988281px;}
.h8_c00419{height:49.937344px;}
.h1_c00419{height:50.315273px;}
.h3_c00419{height:56.320312px;}
.h4_c00419{height:60.257812px;}
.h5_c00419{height:65.130820px;}
.h6_c00419{height:65.131420px;}
.h7_c00419{height:81.476719px;}
.h0_c00419{height:1263.000000px;}
.w1_c00419{width:892.500000px;}
.w0_c00419{width:892.830000px;}
.x0_c00419{left:0.000000px;}
.x4_c00419{left:127.620000px;}
.x6_c00419{left:154.624320px;}
.x5_c00419{left:180.810000px;}
.x1_c00419{left:211.500000px;}
.x3_c00419{left:435.240000px;}
.x2_c00419{left:446.490000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.v1_c00419{vertical-align:26.560000pt;}
.ls18_c00419{letter-spacing:-0.236800pt;}
.ls10_c00419{letter-spacing:-0.134400pt;}
.lse_c00419{letter-spacing:-0.128256pt;}
.ls14_c00419{letter-spacing:-0.032000pt;}
.ls19_c00419{letter-spacing:-0.027776pt;}
.ls12_c00419{letter-spacing:-0.025600pt;}
.ls13_c00419{letter-spacing:-0.019200pt;}
.ls17_c00419{letter-spacing:-0.012800pt;}
.ls1a_c00419{letter-spacing:-0.006400pt;}
.ls1e_c00419{letter-spacing:-0.004256pt;}
.ls1c_c00419{letter-spacing:-0.003456pt;}
.lsf_c00419{letter-spacing:0.000000pt;}
.lsc_c00419{letter-spacing:0.003456pt;}
.ls2_c00419{letter-spacing:0.006400pt;}
.ls6_c00419{letter-spacing:0.006944pt;}
.ls1d_c00419{letter-spacing:0.008512pt;}
.lsb_c00419{letter-spacing:0.012768pt;}
.ls1_c00419{letter-spacing:0.012800pt;}
.ls4_c00419{letter-spacing:0.013888pt;}
.lsa_c00419{letter-spacing:0.021280pt;}
.ls9_c00419{letter-spacing:0.025536pt;}
.ls3_c00419{letter-spacing:0.025600pt;}
.ls7_c00419{letter-spacing:0.029792pt;}
.ls1b_c00419{letter-spacing:0.034048pt;}
.ls11_c00419{letter-spacing:0.038400pt;}
.ls8_c00419{letter-spacing:0.042560pt;}
.ls0_c00419{letter-spacing:0.042752pt;}
.ls15_c00419{letter-spacing:0.048672pt;}
.ls16_c00419{letter-spacing:0.083200pt;}
.lsd_c00419{letter-spacing:0.092480pt;}
.ls5_c00419{letter-spacing:73.814720pt;}
.ws2_c00419{word-spacing:-17.373888pt;}
.ws3_c00419{word-spacing:-15.974400pt;}
.ws0_c00419{word-spacing:-15.968000pt;}
.ws4_c00419{word-spacing:-9.604224pt;}
.ws1_c00419{word-spacing:-9.408672pt;}
.ws1d_c00419{word-spacing:-0.215264pt;}
.ws6_c00419{word-spacing:-0.112224pt;}
.ws1c_c00419{word-spacing:-0.090272pt;}
.ws28_c00419{word-spacing:-0.025536pt;}
.ws2b_c00419{word-spacing:-0.017024pt;}
.ws18_c00419{word-spacing:-0.012800pt;}
.ws27_c00419{word-spacing:-0.012768pt;}
.ws29_c00419{word-spacing:-0.008512pt;}
.ws2e_c00419{word-spacing:-0.006912pt;}
.ws2a_c00419{word-spacing:-0.004256pt;}
.ws7_c00419{word-spacing:0.000000pt;}
.ws2d_c00419{word-spacing:0.004256pt;}
.ws2f_c00419{word-spacing:0.008512pt;}
.ws1b_c00419{word-spacing:0.012800pt;}
.ws30_c00419{word-spacing:0.021280pt;}
.ws5_c00419{word-spacing:0.037408pt;}
.ws17_c00419{word-spacing:0.044800pt;}
.ws11_c00419{word-spacing:0.633600pt;}
.ws26_c00419{word-spacing:0.646400pt;}
.ws19_c00419{word-spacing:1.254400pt;}
.ws2c_c00419{word-spacing:1.272544pt;}
.ws1a_c00419{word-spacing:1.292800pt;}
.ws20_c00419{word-spacing:2.566400pt;}
.ws21_c00419{word-spacing:2.611200pt;}
.ws14_c00419{word-spacing:2.976000pt;}
.ws15_c00419{word-spacing:3.052800pt;}
.ws12_c00419{word-spacing:4.179200pt;}
.ws13_c00419{word-spacing:4.249600pt;}
.ws9_c00419{word-spacing:4.761600pt;}
.ws8_c00419{word-spacing:4.934400pt;}
.wsb_c00419{word-spacing:5.369600pt;}
.wsa_c00419{word-spacing:5.465600pt;}
.ws1e_c00419{word-spacing:5.766400pt;}
.ws1f_c00419{word-spacing:5.836800pt;}
.ws10_c00419{word-spacing:7.065600pt;}
.ws22_c00419{word-spacing:7.353600pt;}
.wsc_c00419{word-spacing:7.398400pt;}
.ws23_c00419{word-spacing:7.424000pt;}
.wsd_c00419{word-spacing:9.299200pt;}
.ws24_c00419{word-spacing:14.086400pt;}
.ws25_c00419{word-spacing:14.144000pt;}
.ws16_c00419{word-spacing:18.880000pt;}
.wse_c00419{word-spacing:46.720000pt;}
.wsf_c00419{word-spacing:46.732800pt;}
._0_c00419{margin-left:-1.015360pt;}
._1_c00419{width:1.148960pt;}
.fs6_c00419{font-size:34.560000pt;}
.fs3_c00419{font-size:37.440000pt;}
.fs5_c00419{font-size:42.560000pt;}
.fs2_c00419{font-size:48.000000pt;}
.fs0_c00419{font-size:53.440000pt;}
.fs1_c00419{font-size:64.000000pt;}
.fs4_c00419{font-size:69.440000pt;}
.y0_c00419{bottom:0.000000pt;}
.y2_c00419{bottom:51.067067pt;}
.y3_c00419{bottom:54.587067pt;}
.y24_c00419{bottom:101.077627pt;}
.y23_c00419{bottom:117.399387pt;}
.y22_c00419{bottom:129.635387pt;}
.y21_c00419{bottom:145.872027pt;}
.y20_c00419{bottom:162.193787pt;}
.y1f_c00419{bottom:178.430427pt;}
.y1e_c00419{bottom:194.667067pt;}
.y1d_c00419{bottom:208.187067pt;}
.y1c_c00419{bottom:226.587067pt;}
.y1b_c00419{bottom:244.987067pt;}
.y1a_c00419{bottom:282.587067pt;}
.y19_c00419{bottom:313.227067pt;}
.y18_c00419{bottom:351.787067pt;}
.y17_c00419{bottom:382.427067pt;}
.y16_c00419{bottom:412.987067pt;}
.y15_c00419{bottom:443.627067pt;}
.y14_c00419{bottom:474.187067pt;}
.y13_c00419{bottom:514.267067pt;}
.y12_c00419{bottom:569.947067pt;}
.y11_c00419{bottom:600.587067pt;}
.y10_c00419{bottom:631.147067pt;}
.yf_c00419{bottom:661.787067pt;}
.ye_c00419{bottom:692.347067pt;}
.yd_c00419{bottom:722.987067pt;}
.yc_c00419{bottom:753.547067pt;}
.yb_c00419{bottom:792.187067pt;}
.ya_c00419{bottom:822.747067pt;}
.y9_c00419{bottom:853.387067pt;}
.y8_c00419{bottom:883.947067pt;}
.y7_c00419{bottom:922.587067pt;}
.y6_c00419{bottom:953.147067pt;}
.y5_c00419{bottom:983.787067pt;}
.y4_c00419{bottom:1014.347067pt;}
.y1_c00419{bottom:1063.947067pt;}
.h2_c00419{height:42.656250pt;}
.h8_c00419{height:44.388750pt;}
.h1_c00419{height:44.724687pt;}
.h3_c00419{height:50.062500pt;}
.h4_c00419{height:53.562500pt;}
.h5_c00419{height:57.894063pt;}
.h6_c00419{height:57.894596pt;}
.h7_c00419{height:72.423750pt;}
.h0_c00419{height:1122.666667pt;}
.w1_c00419{width:793.333333pt;}
.w0_c00419{width:793.626667pt;}
.x0_c00419{left:0.000000pt;}
.x4_c00419{left:113.440000pt;}
.x6_c00419{left:137.443840pt;}
.x5_c00419{left:160.720000pt;}
.x1_c00419{left:188.000000pt;}
.x3_c00419{left:386.880000pt;}
.x2_c00419{left:396.880000pt;}
}





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




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e607bf4bd5059d513b1bbd87.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_e1b168efeffb928c2bbc9d7e.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;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_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);}
.v3_c00421{vertical-align:-15.120000px;}
.v0_c00421{vertical-align:0.000000px;}
.v2_c00421{vertical-align:15.252480px;}
.v1_c00421{vertical-align:29.880000px;}
.ls11_c00421{letter-spacing:-0.151200px;}
.lsf_c00421{letter-spacing:-0.144288px;}
.ls1c_c00421{letter-spacing:-0.060120px;}
.ls20_c00421{letter-spacing:-0.036000px;}
.ls17_c00421{letter-spacing:-0.028800px;}
.ls1d_c00421{letter-spacing:-0.024048px;}
.ls12_c00421{letter-spacing:-0.021600px;}
.ls18_c00421{letter-spacing:-0.018036px;}
.ls16_c00421{letter-spacing:-0.014400px;}
.ls19_c00421{letter-spacing:-0.012024px;}
.ls13_c00421{letter-spacing:-0.007200px;}
.ls1e_c00421{letter-spacing:-0.006012px;}
.ls10_c00421{letter-spacing:0.000000px;}
.ls9_c00421{letter-spacing:0.006012px;}
.lsd_c00421{letter-spacing:0.007200px;}
.ls5_c00421{letter-spacing:0.012024px;}
.ls7_c00421{letter-spacing:0.014400px;}
.ls4_c00421{letter-spacing:0.018036px;}
.ls1_c00421{letter-spacing:0.024048px;}
.lse_c00421{letter-spacing:0.028728px;}
.ls6_c00421{letter-spacing:0.030060px;}
.ls2_c00421{letter-spacing:0.036072px;}
.ls21_c00421{letter-spacing:0.038304px;}
.lsb_c00421{letter-spacing:0.042084px;}
.ls0_c00421{letter-spacing:0.048096px;}
.ls14_c00421{letter-spacing:0.054756px;}
.ls8_c00421{letter-spacing:0.060120px;}
.lsa_c00421{letter-spacing:0.066132px;}
.ls1f_c00421{letter-spacing:0.072000px;}
.ls3_c00421{letter-spacing:0.084168px;}
.ls15_c00421{letter-spacing:0.093600px;}
.lsc_c00421{letter-spacing:0.129600px;}
.ls1a_c00421{letter-spacing:0.136080px;}
.ls1b_c00421{letter-spacing:0.168336px;}
.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;}
}
.ws2_c00421{word-spacing:-18.007200px;}
.ws0_c00421{word-spacing:-10.584756px;}
.ws1_c00421{word-spacing:-9.856080px;}
.wsf_c00421{word-spacing:-0.294588px;}
.wsc_c00421{word-spacing:-0.270540px;}
.ws4_c00421{word-spacing:-0.126252px;}
.ws3c_c00421{word-spacing:-0.019152px;}
.ws3b_c00421{word-spacing:-0.009576px;}
.ws5_c00421{word-spacing:0.000000px;}
.ws20_c00421{word-spacing:0.014400px;}
.ws22_c00421{word-spacing:0.030060px;}
.ws3_c00421{word-spacing:0.042084px;}
.ws8_c00421{word-spacing:0.050400px;}
.ws1c_c00421{word-spacing:0.060120px;}
.ws30_c00421{word-spacing:0.096192px;}
.ws32_c00421{word-spacing:0.114228px;}
.wsb_c00421{word-spacing:0.129600px;}
.ws6_c00421{word-spacing:0.288000px;}
.ws7_c00421{word-spacing:0.352800px;}
.ws31_c00421{word-spacing:0.817632px;}
.ws10_c00421{word-spacing:1.088172px;}
.ws34_c00421{word-spacing:1.792800px;}
.ws25_c00421{word-spacing:1.821636px;}
.ws1d_c00421{word-spacing:1.843200px;}
.ws33_c00421{word-spacing:1.900800px;}
.ws28_c00421{word-spacing:2.218428px;}
.ws1a_c00421{word-spacing:2.230452px;}
.ws26_c00421{word-spacing:2.242476px;}
.ws18_c00421{word-spacing:2.260512px;}
.ws19_c00421{word-spacing:2.266524px;}
.ws27_c00421{word-spacing:2.308608px;}
.ws14_c00421{word-spacing:2.561112px;}
.ws15_c00421{word-spacing:2.573136px;}
.ws11_c00421{word-spacing:2.591172px;}
.ws12_c00421{word-spacing:2.597184px;}
.ws23_c00421{word-spacing:2.603196px;}
.ws24_c00421{word-spacing:2.621232px;}
.ws13_c00421{word-spacing:2.627244px;}
.ws2f_c00421{word-spacing:3.312612px;}
.ws2e_c00421{word-spacing:3.354696px;}
.ws1b_c00421{word-spacing:3.691368px;}
.ws9_c00421{word-spacing:3.924000px;}
.wsa_c00421{word-spacing:3.988800px;}
.ws2c_c00421{word-spacing:4.064112px;}
.ws2b_c00421{word-spacing:4.382748px;}
.ws16_c00421{word-spacing:4.749480px;}
.ws17_c00421{word-spacing:4.785552px;}
.ws29_c00421{word-spacing:5.086152px;}
.ws2a_c00421{word-spacing:5.098176px;}
.wse_c00421{word-spacing:9.414792px;}
.wsd_c00421{word-spacing:9.426816px;}
.ws1e_c00421{word-spacing:12.585600px;}
.ws1f_c00421{word-spacing:12.664800px;}
.ws2d_c00421{word-spacing:12.991932px;}
.ws21_c00421{word-spacing:13.687200px;}
.ws37_c00421{word-spacing:15.710400px;}
.ws38_c00421{word-spacing:15.948000px;}
.ws36_c00421{word-spacing:15.962400px;}
.ws35_c00421{word-spacing:17.301600px;}
.ws3a_c00421{word-spacing:38.196000px;}
.ws39_c00421{word-spacing:38.260800px;}
._0_c00421{margin-left:-1.142280px;}
._1_c00421{width:1.292580px;}
.fc0_c00421{color:rgb(0,0,0);}
.fs4_c00421{font-size:38.880000px;}
.fs3_c00421{font-size:42.120000px;}
.fs5_c00421{font-size:47.880000px;}
.fs2_c00421{font-size:54.000000px;}
.fs0_c00421{font-size:60.120000px;}
.fs1_c00421{font-size:72.000000px;}
.y0_c00421{bottom:0.000000px;}
.y2_c00421{bottom:57.450450px;}
.y3_c00421{bottom:61.410450px;}
.y2e_c00421{bottom:113.706030px;}
.y2d_c00421{bottom:132.068010px;}
.y2c_c00421{bottom:150.334230px;}
.y2b_c00421{bottom:168.600450px;}
.y2a_c00421{bottom:183.810600px;}
.y29_c00421{bottom:204.510600px;}
.y28_c00421{bottom:225.210600px;}
.y27_c00421{bottom:250.410600px;}
.y26_c00421{bottom:284.790600px;}
.y25_c00421{bottom:319.260600px;}
.y24_c00421{bottom:353.640600px;}
.y23_c00421{bottom:388.110600px;}
.y22_c00421{bottom:425.513550px;}
.y21_c00421{bottom:442.437330px;}
.y20_c00421{bottom:459.270930px;}
.y1f_c00421{bottom:476.194710px;}
.y1e_c00421{bottom:493.028310px;}
.y1d_c00421{bottom:509.952090px;}
.y1c_c00421{bottom:526.785690px;}
.y1b_c00421{bottom:543.709470px;}
.y1a_c00421{bottom:560.543070px;}
.y19_c00421{bottom:577.466850px;}
.y18_c00421{bottom:594.300450px;}
.y17_c00421{bottom:611.220450px;}
.y16_c00421{bottom:651.990450px;}
.y15_c00421{bottom:686.460450px;}
.y14_c00421{bottom:729.840450px;}
.y13_c00421{bottom:764.310450px;}
.y12_c00421{bottom:798.690450px;}
.y11_c00421{bottom:836.187330px;}
.y10_c00421{bottom:853.020930px;}
.yf_c00421{bottom:869.944710px;}
.ye_c00421{bottom:886.778310px;}
.yd_c00421{bottom:903.702090px;}
.yc_c00421{bottom:920.535690px;}
.yb_c00421{bottom:937.459470px;}
.ya_c00421{bottom:954.293070px;}
.y9_c00421{bottom:971.216850px;}
.y8_c00421{bottom:988.050450px;}
.y7_c00421{bottom:1028.910450px;}
.y6_c00421{bottom:1063.290450px;}
.y5_c00421{bottom:1106.760450px;}
.y4_c00421{bottom:1141.140450px;}
.y1_c00421{bottom:1196.940450px;}
.h2_c00421{height:47.988281px;}
.h8_c00421{height:49.937344px;}
.h1_c00421{height:50.315273px;}
.h6_c00421{height:50.447753px;}
.h7_c00421{height:50.462873px;}
.h3_c00421{height:56.320312px;}
.h4_c00421{height:60.257812px;}
.h5_c00421{height:65.130820px;}
.h0_c00421{height:1263.000000px;}
.w1_c00421{width:892.500000px;}
.w0_c00421{width:892.830000px;}
.x0_c00421{left:0.000000px;}
.x4_c00421{left:127.620000px;}
.x6_c00421{left:154.440000px;}
.x5_c00421{left:180.810000px;}
.x1_c00421{left:211.500000px;}
.x3_c00421{left:435.240000px;}
.x2_c00421{left:446.490000px;}
@media print{
.v3_c00421{vertical-align:-13.440000pt;}
.v0_c00421{vertical-align:0.000000pt;}
.v2_c00421{vertical-align:13.557760pt;}
.v1_c00421{vertical-align:26.560000pt;}
.ls11_c00421{letter-spacing:-0.134400pt;}
.lsf_c00421{letter-spacing:-0.128256pt;}
.ls1c_c00421{letter-spacing:-0.053440pt;}
.ls20_c00421{letter-spacing:-0.032000pt;}
.ls17_c00421{letter-spacing:-0.025600pt;}
.ls1d_c00421{letter-spacing:-0.021376pt;}
.ls12_c00421{letter-spacing:-0.019200pt;}
.ls18_c00421{letter-spacing:-0.016032pt;}
.ls16_c00421{letter-spacing:-0.012800pt;}
.ls19_c00421{letter-spacing:-0.010688pt;}
.ls13_c00421{letter-spacing:-0.006400pt;}
.ls1e_c00421{letter-spacing:-0.005344pt;}
.ls10_c00421{letter-spacing:0.000000pt;}
.ls9_c00421{letter-spacing:0.005344pt;}
.lsd_c00421{letter-spacing:0.006400pt;}
.ls5_c00421{letter-spacing:0.010688pt;}
.ls7_c00421{letter-spacing:0.012800pt;}
.ls4_c00421{letter-spacing:0.016032pt;}
.ls1_c00421{letter-spacing:0.021376pt;}
.lse_c00421{letter-spacing:0.025536pt;}
.ls6_c00421{letter-spacing:0.026720pt;}
.ls2_c00421{letter-spacing:0.032064pt;}
.ls21_c00421{letter-spacing:0.034048pt;}
.lsb_c00421{letter-spacing:0.037408pt;}
.ls0_c00421{letter-spacing:0.042752pt;}
.ls14_c00421{letter-spacing:0.048672pt;}
.ls8_c00421{letter-spacing:0.053440pt;}
.lsa_c00421{letter-spacing:0.058784pt;}
.ls1f_c00421{letter-spacing:0.064000pt;}
.ls3_c00421{letter-spacing:0.074816pt;}
.ls15_c00421{letter-spacing:0.083200pt;}
.lsc_c00421{letter-spacing:0.115200pt;}
.ls1a_c00421{letter-spacing:0.120960pt;}
.ls1b_c00421{letter-spacing:0.149632pt;}
.ws2_c00421{word-spacing:-16.006400pt;}
.ws0_c00421{word-spacing:-9.408672pt;}
.ws1_c00421{word-spacing:-8.760960pt;}
.wsf_c00421{word-spacing:-0.261856pt;}
.wsc_c00421{word-spacing:-0.240480pt;}
.ws4_c00421{word-spacing:-0.112224pt;}
.ws3c_c00421{word-spacing:-0.017024pt;}
.ws3b_c00421{word-spacing:-0.008512pt;}
.ws5_c00421{word-spacing:0.000000pt;}
.ws20_c00421{word-spacing:0.012800pt;}
.ws22_c00421{word-spacing:0.026720pt;}
.ws3_c00421{word-spacing:0.037408pt;}
.ws8_c00421{word-spacing:0.044800pt;}
.ws1c_c00421{word-spacing:0.053440pt;}
.ws30_c00421{word-spacing:0.085504pt;}
.ws32_c00421{word-spacing:0.101536pt;}
.wsb_c00421{word-spacing:0.115200pt;}
.ws6_c00421{word-spacing:0.256000pt;}
.ws7_c00421{word-spacing:0.313600pt;}
.ws31_c00421{word-spacing:0.726784pt;}
.ws10_c00421{word-spacing:0.967264pt;}
.ws34_c00421{word-spacing:1.593600pt;}
.ws25_c00421{word-spacing:1.619232pt;}
.ws1d_c00421{word-spacing:1.638400pt;}
.ws33_c00421{word-spacing:1.689600pt;}
.ws28_c00421{word-spacing:1.971936pt;}
.ws1a_c00421{word-spacing:1.982624pt;}
.ws26_c00421{word-spacing:1.993312pt;}
.ws18_c00421{word-spacing:2.009344pt;}
.ws19_c00421{word-spacing:2.014688pt;}
.ws27_c00421{word-spacing:2.052096pt;}
.ws14_c00421{word-spacing:2.276544pt;}
.ws15_c00421{word-spacing:2.287232pt;}
.ws11_c00421{word-spacing:2.303264pt;}
.ws12_c00421{word-spacing:2.308608pt;}
.ws23_c00421{word-spacing:2.313952pt;}
.ws24_c00421{word-spacing:2.329984pt;}
.ws13_c00421{word-spacing:2.335328pt;}
.ws2f_c00421{word-spacing:2.944544pt;}
.ws2e_c00421{word-spacing:2.981952pt;}
.ws1b_c00421{word-spacing:3.281216pt;}
.ws9_c00421{word-spacing:3.488000pt;}
.wsa_c00421{word-spacing:3.545600pt;}
.ws2c_c00421{word-spacing:3.612544pt;}
.ws2b_c00421{word-spacing:3.895776pt;}
.ws16_c00421{word-spacing:4.221760pt;}
.ws17_c00421{word-spacing:4.253824pt;}
.ws29_c00421{word-spacing:4.521024pt;}
.ws2a_c00421{word-spacing:4.531712pt;}
.wse_c00421{word-spacing:8.368704pt;}
.wsd_c00421{word-spacing:8.379392pt;}
.ws1e_c00421{word-spacing:11.187200pt;}
.ws1f_c00421{word-spacing:11.257600pt;}
.ws2d_c00421{word-spacing:11.548384pt;}
.ws21_c00421{word-spacing:12.166400pt;}
.ws37_c00421{word-spacing:13.964800pt;}
.ws38_c00421{word-spacing:14.176000pt;}
.ws36_c00421{word-spacing:14.188800pt;}
.ws35_c00421{word-spacing:15.379200pt;}
.ws3a_c00421{word-spacing:33.952000pt;}
.ws39_c00421{word-spacing:34.009600pt;}
._0_c00421{margin-left:-1.015360pt;}
._1_c00421{width:1.148960pt;}
.fs4_c00421{font-size:34.560000pt;}
.fs3_c00421{font-size:37.440000pt;}
.fs5_c00421{font-size:42.560000pt;}
.fs2_c00421{font-size:48.000000pt;}
.fs0_c00421{font-size:53.440000pt;}
.fs1_c00421{font-size:64.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.y2_c00421{bottom:51.067067pt;}
.y3_c00421{bottom:54.587067pt;}
.y2e_c00421{bottom:101.072027pt;}
.y2d_c00421{bottom:117.393787pt;}
.y2c_c00421{bottom:133.630427pt;}
.y2b_c00421{bottom:149.867067pt;}
.y2a_c00421{bottom:163.387200pt;}
.y29_c00421{bottom:181.787200pt;}
.y28_c00421{bottom:200.187200pt;}
.y27_c00421{bottom:222.587200pt;}
.y26_c00421{bottom:253.147200pt;}
.y25_c00421{bottom:283.787200pt;}
.y24_c00421{bottom:314.347200pt;}
.y23_c00421{bottom:344.987200pt;}
.y22_c00421{bottom:378.234267pt;}
.y21_c00421{bottom:393.277627pt;}
.y20_c00421{bottom:408.240827pt;}
.y1f_c00421{bottom:423.284187pt;}
.y1e_c00421{bottom:438.247387pt;}
.y1d_c00421{bottom:453.290747pt;}
.y1c_c00421{bottom:468.253947pt;}
.y1b_c00421{bottom:483.297307pt;}
.y1a_c00421{bottom:498.260507pt;}
.y19_c00421{bottom:513.303867pt;}
.y18_c00421{bottom:528.267067pt;}
.y17_c00421{bottom:543.307067pt;}
.y16_c00421{bottom:579.547067pt;}
.y15_c00421{bottom:610.187067pt;}
.y14_c00421{bottom:648.747067pt;}
.y13_c00421{bottom:679.387067pt;}
.y12_c00421{bottom:709.947067pt;}
.y11_c00421{bottom:743.277627pt;}
.y10_c00421{bottom:758.240827pt;}
.yf_c00421{bottom:773.284187pt;}
.ye_c00421{bottom:788.247387pt;}
.yd_c00421{bottom:803.290747pt;}
.yc_c00421{bottom:818.253947pt;}
.yb_c00421{bottom:833.297307pt;}
.ya_c00421{bottom:848.260507pt;}
.y9_c00421{bottom:863.303867pt;}
.y8_c00421{bottom:878.267067pt;}
.y7_c00421{bottom:914.587067pt;}
.y6_c00421{bottom:945.147067pt;}
.y5_c00421{bottom:983.787067pt;}
.y4_c00421{bottom:1014.347067pt;}
.y1_c00421{bottom:1063.947067pt;}
.h2_c00421{height:42.656250pt;}
.h8_c00421{height:44.388750pt;}
.h1_c00421{height:44.724687pt;}
.h6_c00421{height:44.842447pt;}
.h7_c00421{height:44.855888pt;}
.h3_c00421{height:50.062500pt;}
.h4_c00421{height:53.562500pt;}
.h5_c00421{height:57.894063pt;}
.h0_c00421{height:1122.666667pt;}
.w1_c00421{width:793.333333pt;}
.w0_c00421{width:793.626667pt;}
.x0_c00421{left:0.000000pt;}
.x4_c00421{left:113.440000pt;}
.x6_c00421{left:137.280000pt;}
.x5_c00421{left:160.720000pt;}
.x1_c00421{left:188.000000pt;}
.x3_c00421{left:386.880000pt;}
.x2_c00421{left:396.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_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_971f8328f76b55f626845e73.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_b2c229817999865ef001bb6f.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00422;src:url('chunks/assets/font_2d8c262e6f4a24c7b5212a4f.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;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_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;}
.v1_c00422{vertical-align:15.840000px;}
.v2_c00422{vertical-align:29.880000px;}
.ls13_c00422{letter-spacing:-0.151200px;}
.ls22_c00422{letter-spacing:-0.050400px;}
.ls20_c00422{letter-spacing:-0.048096px;}
.ls1a_c00422{letter-spacing:-0.042084px;}
.ls21_c00422{letter-spacing:-0.036000px;}
.ls1b_c00422{letter-spacing:-0.030060px;}
.ls14_c00422{letter-spacing:-0.028800px;}
.ls1f_c00422{letter-spacing:-0.024048px;}
.ls17_c00422{letter-spacing:-0.021600px;}
.ls19_c00422{letter-spacing:-0.014400px;}
.ls18_c00422{letter-spacing:-0.007200px;}
.ls26_c00422{letter-spacing:-0.004788px;}
.ls24_c00422{letter-spacing:-0.003888px;}
.ls1e_c00422{letter-spacing:0.000000px;}
.ls12_c00422{letter-spacing:0.003888px;}
.ls7_c00422{letter-spacing:0.006012px;}
.ls2_c00422{letter-spacing:0.007200px;}
.ls25_c00422{letter-spacing:0.009576px;}
.lsf_c00422{letter-spacing:0.014364px;}
.ls5_c00422{letter-spacing:0.018036px;}
.ls6_c00422{letter-spacing:0.021600px;}
.ls11_c00422{letter-spacing:0.023940px;}
.ls4_c00422{letter-spacing:0.024048px;}
.lse_c00422{letter-spacing:0.028728px;}
.ls8_c00422{letter-spacing:0.030060px;}
.ls9_c00422{letter-spacing:0.036072px;}
.lsb_c00422{letter-spacing:0.038304px;}
.ls3_c00422{letter-spacing:0.042084px;}
.lsd_c00422{letter-spacing:0.043092px;}
.lsc_c00422{letter-spacing:0.047880px;}
.ls0_c00422{letter-spacing:0.048096px;}
.lsa_c00422{letter-spacing:0.052668px;}
.ls15_c00422{letter-spacing:0.054756px;}
.ls16_c00422{letter-spacing:0.093600px;}
.ls10_c00422{letter-spacing:0.104040px;}
.ls1c_c00422{letter-spacing:0.136080px;}
.ls1d_c00422{letter-spacing:0.168336px;}
.ls23_c00422{letter-spacing:0.357696px;}
.ls1_c00422{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00422{word-spacing:-11.166336px;}
.ws3_c00422{word-spacing:-10.804752px;}
.ws0_c00422{word-spacing:-10.584756px;}
.ws1_c00422{word-spacing:-9.856080px;}
.ws17_c00422{word-spacing:-0.318636px;}
.ws18_c00422{word-spacing:-0.288576px;}
.ws2e_c00422{word-spacing:-0.033516px;}
.ws30_c00422{word-spacing:-0.028728px;}
.ws31_c00422{word-spacing:-0.023940px;}
.ws2f_c00422{word-spacing:-0.019152px;}
.ws32_c00422{word-spacing:-0.009576px;}
.ws35_c00422{word-spacing:-0.007776px;}
.ws34_c00422{word-spacing:-0.004788px;}
.ws5_c00422{word-spacing:0.000000px;}
.ws33_c00422{word-spacing:0.004788px;}
.ws12_c00422{word-spacing:0.007200px;}
.ws36_c00422{word-spacing:0.009576px;}
.ws2d_c00422{word-spacing:0.014400px;}
.ws1f_c00422{word-spacing:0.021600px;}
.ws37_c00422{word-spacing:0.023940px;}
.ws9_c00422{word-spacing:0.028800px;}
.ws4_c00422{word-spacing:0.042084px;}
.ws13_c00422{word-spacing:0.048096px;}
.ws27_c00422{word-spacing:0.138276px;}
.ws1a_c00422{word-spacing:0.360000px;}
.ws1b_c00422{word-spacing:0.496800px;}
.ws10_c00422{word-spacing:0.727200px;}
.ws1d_c00422{word-spacing:0.741600px;}
.ws11_c00422{word-spacing:0.792000px;}
.ws1e_c00422{word-spacing:0.828000px;}
.ws8_c00422{word-spacing:1.101600px;}
.wsa_c00422{word-spacing:1.735200px;}
.wsb_c00422{word-spacing:1.792800px;}
.ws25_c00422{word-spacing:1.869732px;}
.ws26_c00422{word-spacing:1.911816px;}
.ws1c_c00422{word-spacing:2.923200px;}
.wse_c00422{word-spacing:3.952800px;}
.wsc_c00422{word-spacing:3.981600px;}
.wsd_c00422{word-spacing:4.068000px;}
.ws2a_c00422{word-spacing:5.421600px;}
.ws2c_c00422{word-spacing:5.565600px;}
.ws2b_c00422{word-spacing:5.616000px;}
.ws14_c00422{word-spacing:6.547068px;}
.ws23_c00422{word-spacing:8.338644px;}
.ws22_c00422{word-spacing:8.398764px;}
.wsf_c00422{word-spacing:9.028800px;}
.ws15_c00422{word-spacing:9.492948px;}
.ws16_c00422{word-spacing:9.841644px;}
.ws6_c00422{word-spacing:11.908800px;}
.ws20_c00422{word-spacing:13.406760px;}
.ws21_c00422{word-spacing:13.442832px;}
.ws7_c00422{word-spacing:13.701600px;}
.ws19_c00422{word-spacing:15.127200px;}
.ws24_c00422{word-spacing:15.895728px;}
.ws28_c00422{word-spacing:32.414400px;}
.ws29_c00422{word-spacing:32.464800px;}
._0_c00422{margin-left:-1.322640px;}
._1_c00422{width:1.152000px;}
.fc0_c00422{color:rgb(0,0,0);}
.fs4_c00422{font-size:38.880000px;}
.fs3_c00422{font-size:42.120000px;}
.fs5_c00422{font-size:47.880000px;}
.fs2_c00422{font-size:54.000000px;}
.fs0_c00422{font-size:60.120000px;}
.fs1_c00422{font-size:72.000000px;}
.y0_c00422{bottom:0.000000px;}
.y2_c00422{bottom:57.450450px;}
.y25_c00422{bottom:113.698470px;}
.y24_c00422{bottom:132.066180px;}
.y23_c00422{bottom:150.332400px;}
.y22_c00422{bottom:168.598620px;}
.y21_c00422{bottom:186.960600px;}
.y20_c00422{bottom:202.170450px;}
.y1f_c00422{bottom:222.870450px;}
.y1e_c00422{bottom:243.570450px;}
.y1d_c00422{bottom:332.040450px;}
.y1c_c00422{bottom:366.510450px;}
.y1b_c00422{bottom:400.890450px;}
.y1a_c00422{bottom:438.405690px;}
.y19_c00422{bottom:455.239290px;}
.y18_c00422{bottom:472.163070px;}
.y17_c00422{bottom:488.996670px;}
.y16_c00422{bottom:505.920450px;}
.y15_c00422{bottom:546.690450px;}
.y14_c00422{bottom:581.160450px;}
.y13_c00422{bottom:624.540450px;}
.y12_c00422{bottom:659.010450px;}
.y11_c00422{bottom:693.390450px;}
.y10_c00422{bottom:727.860450px;}
.yf_c00422{bottom:765.289290px;}
.ye_c00422{bottom:782.213070px;}
.yd_c00422{bottom:799.046670px;}
.yc_c00422{bottom:815.970450px;}
.yb_c00422{bottom:856.740450px;}
.ya_c00422{bottom:891.210450px;}
.y9_c00422{bottom:925.590450px;}
.y8_c00422{bottom:960.060450px;}
.y7_c00422{bottom:994.440450px;}
.y6_c00422{bottom:1037.910450px;}
.y5_c00422{bottom:1072.290450px;}
.y4_c00422{bottom:1106.760450px;}
.y3_c00422{bottom:1141.140450px;}
.y1_c00422{bottom:1196.850450px;}
.h7_c00422{height:47.988281px;}
.h8_c00422{height:49.937344px;}
.h9_c00422{height:49.945264px;}
.h1_c00422{height:50.315273px;}
.h5_c00422{height:50.359913px;}
.h6_c00422{height:50.374313px;}
.h3_c00422{height:60.257812px;}
.h4_c00422{height:65.130820px;}
.h2_c00422{height:72.160312px;}
.h0_c00422{height:1263.000000px;}
.w1_c00422{width:892.500000px;}
.w0_c00422{width:892.830000px;}
.x0_c00422{left:0.000000px;}
.x1_c00422{left:127.620000px;}
.x3_c00422{left:154.440000px;}
.x2_c00422{left:180.810000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.v1_c00422{vertical-align:14.080000pt;}
.v2_c00422{vertical-align:26.560000pt;}
.ls13_c00422{letter-spacing:-0.134400pt;}
.ls22_c00422{letter-spacing:-0.044800pt;}
.ls20_c00422{letter-spacing:-0.042752pt;}
.ls1a_c00422{letter-spacing:-0.037408pt;}
.ls21_c00422{letter-spacing:-0.032000pt;}
.ls1b_c00422{letter-spacing:-0.026720pt;}
.ls14_c00422{letter-spacing:-0.025600pt;}
.ls1f_c00422{letter-spacing:-0.021376pt;}
.ls17_c00422{letter-spacing:-0.019200pt;}
.ls19_c00422{letter-spacing:-0.012800pt;}
.ls18_c00422{letter-spacing:-0.006400pt;}
.ls26_c00422{letter-spacing:-0.004256pt;}
.ls24_c00422{letter-spacing:-0.003456pt;}
.ls1e_c00422{letter-spacing:0.000000pt;}
.ls12_c00422{letter-spacing:0.003456pt;}
.ls7_c00422{letter-spacing:0.005344pt;}
.ls2_c00422{letter-spacing:0.006400pt;}
.ls25_c00422{letter-spacing:0.008512pt;}
.lsf_c00422{letter-spacing:0.012768pt;}
.ls5_c00422{letter-spacing:0.016032pt;}
.ls6_c00422{letter-spacing:0.019200pt;}
.ls11_c00422{letter-spacing:0.021280pt;}
.ls4_c00422{letter-spacing:0.021376pt;}
.lse_c00422{letter-spacing:0.025536pt;}
.ls8_c00422{letter-spacing:0.026720pt;}
.ls9_c00422{letter-spacing:0.032064pt;}
.lsb_c00422{letter-spacing:0.034048pt;}
.ls3_c00422{letter-spacing:0.037408pt;}
.lsd_c00422{letter-spacing:0.038304pt;}
.lsc_c00422{letter-spacing:0.042560pt;}
.ls0_c00422{letter-spacing:0.042752pt;}
.lsa_c00422{letter-spacing:0.046816pt;}
.ls15_c00422{letter-spacing:0.048672pt;}
.ls16_c00422{letter-spacing:0.083200pt;}
.ls10_c00422{letter-spacing:0.092480pt;}
.ls1c_c00422{letter-spacing:0.120960pt;}
.ls1d_c00422{letter-spacing:0.149632pt;}
.ls23_c00422{letter-spacing:0.317952pt;}
.ls1_c00422{letter-spacing:1077.440000pt;}
.ws2_c00422{word-spacing:-9.925632pt;}
.ws3_c00422{word-spacing:-9.604224pt;}
.ws0_c00422{word-spacing:-9.408672pt;}
.ws1_c00422{word-spacing:-8.760960pt;}
.ws17_c00422{word-spacing:-0.283232pt;}
.ws18_c00422{word-spacing:-0.256512pt;}
.ws2e_c00422{word-spacing:-0.029792pt;}
.ws30_c00422{word-spacing:-0.025536pt;}
.ws31_c00422{word-spacing:-0.021280pt;}
.ws2f_c00422{word-spacing:-0.017024pt;}
.ws32_c00422{word-spacing:-0.008512pt;}
.ws35_c00422{word-spacing:-0.006912pt;}
.ws34_c00422{word-spacing:-0.004256pt;}
.ws5_c00422{word-spacing:0.000000pt;}
.ws33_c00422{word-spacing:0.004256pt;}
.ws12_c00422{word-spacing:0.006400pt;}
.ws36_c00422{word-spacing:0.008512pt;}
.ws2d_c00422{word-spacing:0.012800pt;}
.ws1f_c00422{word-spacing:0.019200pt;}
.ws37_c00422{word-spacing:0.021280pt;}
.ws9_c00422{word-spacing:0.025600pt;}
.ws4_c00422{word-spacing:0.037408pt;}
.ws13_c00422{word-spacing:0.042752pt;}
.ws27_c00422{word-spacing:0.122912pt;}
.ws1a_c00422{word-spacing:0.320000pt;}
.ws1b_c00422{word-spacing:0.441600pt;}
.ws10_c00422{word-spacing:0.646400pt;}
.ws1d_c00422{word-spacing:0.659200pt;}
.ws11_c00422{word-spacing:0.704000pt;}
.ws1e_c00422{word-spacing:0.736000pt;}
.ws8_c00422{word-spacing:0.979200pt;}
.wsa_c00422{word-spacing:1.542400pt;}
.wsb_c00422{word-spacing:1.593600pt;}
.ws25_c00422{word-spacing:1.661984pt;}
.ws26_c00422{word-spacing:1.699392pt;}
.ws1c_c00422{word-spacing:2.598400pt;}
.wse_c00422{word-spacing:3.513600pt;}
.wsc_c00422{word-spacing:3.539200pt;}
.wsd_c00422{word-spacing:3.616000pt;}
.ws2a_c00422{word-spacing:4.819200pt;}
.ws2c_c00422{word-spacing:4.947200pt;}
.ws2b_c00422{word-spacing:4.992000pt;}
.ws14_c00422{word-spacing:5.819616pt;}
.ws23_c00422{word-spacing:7.412128pt;}
.ws22_c00422{word-spacing:7.465568pt;}
.wsf_c00422{word-spacing:8.025600pt;}
.ws15_c00422{word-spacing:8.438176pt;}
.ws16_c00422{word-spacing:8.748128pt;}
.ws6_c00422{word-spacing:10.585600pt;}
.ws20_c00422{word-spacing:11.917120pt;}
.ws21_c00422{word-spacing:11.949184pt;}
.ws7_c00422{word-spacing:12.179200pt;}
.ws19_c00422{word-spacing:13.446400pt;}
.ws24_c00422{word-spacing:14.129536pt;}
.ws28_c00422{word-spacing:28.812800pt;}
.ws29_c00422{word-spacing:28.857600pt;}
._0_c00422{margin-left:-1.175680pt;}
._1_c00422{width:1.024000pt;}
.fs4_c00422{font-size:34.560000pt;}
.fs3_c00422{font-size:37.440000pt;}
.fs5_c00422{font-size:42.560000pt;}
.fs2_c00422{font-size:48.000000pt;}
.fs0_c00422{font-size:53.440000pt;}
.fs1_c00422{font-size:64.000000pt;}
.y0_c00422{bottom:0.000000pt;}
.y2_c00422{bottom:51.067067pt;}
.y25_c00422{bottom:101.065307pt;}
.y24_c00422{bottom:117.392160pt;}
.y23_c00422{bottom:133.628800pt;}
.y22_c00422{bottom:149.865440pt;}
.y21_c00422{bottom:166.187200pt;}
.y20_c00422{bottom:179.707067pt;}
.y1f_c00422{bottom:198.107067pt;}
.y1e_c00422{bottom:216.507067pt;}
.y1d_c00422{bottom:295.147067pt;}
.y1c_c00422{bottom:325.787067pt;}
.y1b_c00422{bottom:356.347067pt;}
.y1a_c00422{bottom:389.693947pt;}
.y19_c00422{bottom:404.657147pt;}
.y18_c00422{bottom:419.700507pt;}
.y17_c00422{bottom:434.663707pt;}
.y16_c00422{bottom:449.707067pt;}
.y15_c00422{bottom:485.947067pt;}
.y14_c00422{bottom:516.587067pt;}
.y13_c00422{bottom:555.147067pt;}
.y12_c00422{bottom:585.787067pt;}
.y11_c00422{bottom:616.347067pt;}
.y10_c00422{bottom:646.987067pt;}
.yf_c00422{bottom:680.257147pt;}
.ye_c00422{bottom:695.300507pt;}
.yd_c00422{bottom:710.263707pt;}
.yc_c00422{bottom:725.307067pt;}
.yb_c00422{bottom:761.547067pt;}
.ya_c00422{bottom:792.187067pt;}
.y9_c00422{bottom:822.747067pt;}
.y8_c00422{bottom:853.387067pt;}
.y7_c00422{bottom:883.947067pt;}
.y6_c00422{bottom:922.587067pt;}
.y5_c00422{bottom:953.147067pt;}
.y4_c00422{bottom:983.787067pt;}
.y3_c00422{bottom:1014.347067pt;}
.y1_c00422{bottom:1063.867067pt;}
.h7_c00422{height:42.656250pt;}
.h8_c00422{height:44.388750pt;}
.h9_c00422{height:44.395790pt;}
.h1_c00422{height:44.724687pt;}
.h5_c00422{height:44.764367pt;}
.h6_c00422{height:44.777168pt;}
.h3_c00422{height:53.562500pt;}
.h4_c00422{height:57.894063pt;}
.h2_c00422{height:64.142500pt;}
.h0_c00422{height:1122.666667pt;}
.w1_c00422{width:793.333333pt;}
.w0_c00422{width:793.626667pt;}
.x0_c00422{left:0.000000pt;}
.x1_c00422{left:113.440000pt;}
.x3_c00422{left:137.280000pt;}
.x2_c00422{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_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_b7470893056170b452fca912.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_0b5d1e898ed5798ac80f0b5c.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;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_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;}
.v2_c00423{vertical-align:15.444720px;}
.v1_c00423{vertical-align:29.880000px;}
.ls19_c00423{letter-spacing:-0.198396px;}
.ls21_c00423{letter-spacing:-0.192384px;}
.ls11_c00423{letter-spacing:-0.151200px;}
.lsf_c00423{letter-spacing:-0.144288px;}
.ls1d_c00423{letter-spacing:-0.078156px;}
.ls1b_c00423{letter-spacing:-0.066132px;}
.ls23_c00423{letter-spacing:-0.048096px;}
.ls17_c00423{letter-spacing:-0.043200px;}
.ls1c_c00423{letter-spacing:-0.042084px;}
.ls18_c00423{letter-spacing:-0.036072px;}
.ls22_c00423{letter-spacing:-0.030060px;}
.ls15_c00423{letter-spacing:-0.028800px;}
.ls1a_c00423{letter-spacing:-0.024048px;}
.ls28_c00423{letter-spacing:-0.021600px;}
.ls20_c00423{letter-spacing:-0.018036px;}
.ls13_c00423{letter-spacing:-0.014400px;}
.ls1e_c00423{letter-spacing:-0.012024px;}
.ls12_c00423{letter-spacing:-0.007200px;}
.ls1f_c00423{letter-spacing:-0.006012px;}
.ls10_c00423{letter-spacing:0.000000px;}
.ls9_c00423{letter-spacing:0.007200px;}
.lsa_c00423{letter-spacing:0.014364px;}
.ls1_c00423{letter-spacing:0.014400px;}
.ls7_c00423{letter-spacing:0.018036px;}
.lse_c00423{letter-spacing:0.019152px;}
.ls14_c00423{letter-spacing:0.021600px;}
.lsc_c00423{letter-spacing:0.023940px;}
.ls5_c00423{letter-spacing:0.024048px;}
.ls27_c00423{letter-spacing:0.028800px;}
.ls3_c00423{letter-spacing:0.030060px;}
.ls6_c00423{letter-spacing:0.036072px;}
.ls4_c00423{letter-spacing:0.042084px;}
.lsd_c00423{letter-spacing:0.043092px;}
.ls0_c00423{letter-spacing:0.048096px;}
.ls16_c00423{letter-spacing:0.054756px;}
.ls2_c00423{letter-spacing:0.060120px;}
.ls8_c00423{letter-spacing:0.066132px;}
.lsb_c00423{letter-spacing:0.104040px;}
.ls25_c00423{letter-spacing:0.136080px;}
.ls26_c00423{letter-spacing:0.168336px;}
.ls29_c00423{letter-spacing:0.357696px;}
.ls24_c00423{letter-spacing:5.128236px;}
.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;}
}
.ws2_c00423{word-spacing:-11.166336px;}
.ws0_c00423{word-spacing:-10.584756px;}
.ws1_c00423{word-spacing:-9.856080px;}
.ws40_c00423{word-spacing:-0.336672px;}
.ws2c_c00423{word-spacing:-0.312624px;}
.ws41_c00423{word-spacing:-0.258516px;}
.ws1a_c00423{word-spacing:-0.246492px;}
.ws1b_c00423{word-spacing:-0.234468px;}
.ws4_c00423{word-spacing:-0.126252px;}
.ws17_c00423{word-spacing:-0.021600px;}
.ws48_c00423{word-spacing:-0.004788px;}
.ws5_c00423{word-spacing:0.000000px;}
.ws47_c00423{word-spacing:0.004788px;}
.ws12_c00423{word-spacing:0.014400px;}
.ws3_c00423{word-spacing:0.042084px;}
.ws2e_c00423{word-spacing:0.060120px;}
.ws2b_c00423{word-spacing:0.096192px;}
.ws36_c00423{word-spacing:0.102204px;}
.ws18_c00423{word-spacing:0.126252px;}
.ws19_c00423{word-spacing:0.288576px;}
.ws3a_c00423{word-spacing:0.486972px;}
.ws3b_c00423{word-spacing:0.498996px;}
.ws1c_c00423{word-spacing:0.877752px;}
.ws38_c00423{word-spacing:1.106208px;}
.ws2d_c00423{word-spacing:1.136268px;}
.ws37_c00423{word-spacing:1.154304px;}
.ws39_c00423{word-spacing:1.196388px;}
.ws26_c00423{word-spacing:1.484964px;}
.ws27_c00423{word-spacing:1.539072px;}
.wse_c00423{word-spacing:1.800000px;}
.wsc_c00423{word-spacing:1.828800px;}
.ws3e_c00423{word-spacing:1.893780px;}
.ws3f_c00423{word-spacing:1.911816px;}
.wsd_c00423{word-spacing:1.936800px;}
.wsf_c00423{word-spacing:2.505600px;}
.ws28_c00423{word-spacing:2.975940px;}
.ws2a_c00423{word-spacing:2.993976px;}
.ws29_c00423{word-spacing:3.006000px;}
.ws33_c00423{word-spacing:3.282552px;}
.ws16_c00423{word-spacing:3.607200px;}
.ws15_c00423{word-spacing:3.643200px;}
.ws1f_c00423{word-spacing:3.649284px;}
.ws34_c00423{word-spacing:3.715416px;}
.ws20_c00423{word-spacing:3.733452px;}
.ws21_c00423{word-spacing:3.769524px;}
.ws35_c00423{word-spacing:3.883752px;}
.wsb_c00423{word-spacing:4.658400px;}
.wsa_c00423{word-spacing:4.665600px;}
.ws3d_c00423{word-spacing:4.719420px;}
.ws45_c00423{word-spacing:4.752000px;}
.ws44_c00423{word-spacing:4.788000px;}
.ws30_c00423{word-spacing:6.523020px;}
.ws2f_c00423{word-spacing:6.589152px;}
.ws25_c00423{word-spacing:6.907788px;}
.ws24_c00423{word-spacing:6.931836px;}
.ws7_c00423{word-spacing:7.185600px;}
.ws1d_c00423{word-spacing:7.232436px;}
.ws1e_c00423{word-spacing:7.262496px;}
.ws9_c00423{word-spacing:7.315200px;}
.ws8_c00423{word-spacing:7.329600px;}
.ws23_c00423{word-spacing:7.334640px;}
.ws11_c00423{word-spacing:7.545600px;}
.ws10_c00423{word-spacing:7.596000px;}
.ws3c_c00423{word-spacing:7.959888px;}
.ws49_c00423{word-spacing:8.972712px;}
.ws4a_c00423{word-spacing:8.991864px;}
.ws4b_c00423{word-spacing:8.996652px;}
.ws43_c00423{word-spacing:10.051200px;}
.ws42_c00423{word-spacing:10.087200px;}
.ws32_c00423{word-spacing:11.212380px;}
.ws31_c00423{word-spacing:11.248452px;}
.ws46_c00423{word-spacing:12.247200px;}
.ws6_c00423{word-spacing:12.967200px;}
.ws13_c00423{word-spacing:17.265600px;}
.ws14_c00423{word-spacing:21.614400px;}
.ws22_c00423{word-spacing:23.446800px;}
._3_c00423{margin-left:-6.072120px;}
._2_c00423{margin-left:-5.050080px;}
._0_c00423{margin-left:-1.142280px;}
._1_c00423{width:1.292580px;}
._4_c00423{width:9.742968px;}
.fc0_c00423{color:rgb(0,0,0);}
.fs4_c00423{font-size:38.880000px;}
.fs3_c00423{font-size:42.120000px;}
.fs5_c00423{font-size:47.880000px;}
.fs2_c00423{font-size:54.000000px;}
.fs0_c00423{font-size:60.120000px;}
.fs1_c00423{font-size:72.000000px;}
.y0_c00423{bottom:0.000000px;}
.y2_c00423{bottom:57.450450px;}
.y3_c00423{bottom:61.410450px;}
.y2f_c00423{bottom:113.702970px;}
.y2e_c00423{bottom:132.064950px;}
.y2d_c00423{bottom:145.834230px;}
.y2c_c00423{bottom:164.100450px;}
.y2b_c00423{bottom:179.310600px;}
.y2a_c00423{bottom:200.010600px;}
.y29_c00423{bottom:220.710450px;}
.y28_c00423{bottom:269.490450px;}
.y27_c00423{bottom:303.960450px;}
.y26_c00423{bottom:338.340450px;}
.y25_c00423{bottom:375.789270px;}
.y24_c00423{bottom:392.622870px;}
.y23_c00423{bottom:409.546650px;}
.y22_c00423{bottom:426.380250px;}
.y21_c00423{bottom:443.304030px;}
.y20_c00423{bottom:460.137630px;}
.y1f_c00423{bottom:477.061410px;}
.y1e_c00423{bottom:493.895010px;}
.y1d_c00423{bottom:510.818790px;}
.y1c_c00423{bottom:527.652390px;}
.y1b_c00423{bottom:544.576170px;}
.y1a_c00423{bottom:561.409770px;}
.y19_c00423{bottom:578.333550px;}
.y18_c00423{bottom:595.167150px;}
.y17_c00423{bottom:612.090930px;}
.y16_c00423{bottom:628.924530px;}
.y15_c00423{bottom:645.848310px;}
.y14_c00423{bottom:662.681910px;}
.y13_c00423{bottom:679.605690px;}
.y12_c00423{bottom:696.439290px;}
.y11_c00423{bottom:713.363070px;}
.y10_c00423{bottom:730.196670px;}
.yf_c00423{bottom:747.120450px;}
.ye_c00423{bottom:787.890600px;}
.yd_c00423{bottom:822.360450px;}
.yc_c00423{bottom:856.740450px;}
.yb_c00423{bottom:891.210450px;}
.ya_c00423{bottom:934.590450px;}
.y9_c00423{bottom:969.060450px;}
.y8_c00423{bottom:1003.440450px;}
.y7_c00423{bottom:1037.910450px;}
.y6_c00423{bottom:1072.290450px;}
.y5_c00423{bottom:1106.760450px;}
.y4_c00423{bottom:1141.140450px;}
.y1_c00423{bottom:1196.940450px;}
.h2_c00423{height:47.988281px;}
.h7_c00423{height:47.988881px;}
.h8_c00423{height:49.937344px;}
.h1_c00423{height:50.315273px;}
.h6_c00423{height:50.639993px;}
.h3_c00423{height:56.320312px;}
.h4_c00423{height:60.257812px;}
.h5_c00423{height:65.130820px;}
.h0_c00423{height:1263.000000px;}
.w1_c00423{width:892.500000px;}
.w0_c00423{width:892.830000px;}
.x0_c00423{left:0.000000px;}
.x5_c00423{left:127.620000px;}
.x6_c00423{left:154.440000px;}
.x4_c00423{left:180.810000px;}
.x1_c00423{left:211.500000px;}
.x3_c00423{left:435.240000px;}
.x2_c00423{left:446.490000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.v2_c00423{vertical-align:13.728640pt;}
.v1_c00423{vertical-align:26.560000pt;}
.ls19_c00423{letter-spacing:-0.176352pt;}
.ls21_c00423{letter-spacing:-0.171008pt;}
.ls11_c00423{letter-spacing:-0.134400pt;}
.lsf_c00423{letter-spacing:-0.128256pt;}
.ls1d_c00423{letter-spacing:-0.069472pt;}
.ls1b_c00423{letter-spacing:-0.058784pt;}
.ls23_c00423{letter-spacing:-0.042752pt;}
.ls17_c00423{letter-spacing:-0.038400pt;}
.ls1c_c00423{letter-spacing:-0.037408pt;}
.ls18_c00423{letter-spacing:-0.032064pt;}
.ls22_c00423{letter-spacing:-0.026720pt;}
.ls15_c00423{letter-spacing:-0.025600pt;}
.ls1a_c00423{letter-spacing:-0.021376pt;}
.ls28_c00423{letter-spacing:-0.019200pt;}
.ls20_c00423{letter-spacing:-0.016032pt;}
.ls13_c00423{letter-spacing:-0.012800pt;}
.ls1e_c00423{letter-spacing:-0.010688pt;}
.ls12_c00423{letter-spacing:-0.006400pt;}
.ls1f_c00423{letter-spacing:-0.005344pt;}
.ls10_c00423{letter-spacing:0.000000pt;}
.ls9_c00423{letter-spacing:0.006400pt;}
.lsa_c00423{letter-spacing:0.012768pt;}
.ls1_c00423{letter-spacing:0.012800pt;}
.ls7_c00423{letter-spacing:0.016032pt;}
.lse_c00423{letter-spacing:0.017024pt;}
.ls14_c00423{letter-spacing:0.019200pt;}
.lsc_c00423{letter-spacing:0.021280pt;}
.ls5_c00423{letter-spacing:0.021376pt;}
.ls27_c00423{letter-spacing:0.025600pt;}
.ls3_c00423{letter-spacing:0.026720pt;}
.ls6_c00423{letter-spacing:0.032064pt;}
.ls4_c00423{letter-spacing:0.037408pt;}
.lsd_c00423{letter-spacing:0.038304pt;}
.ls0_c00423{letter-spacing:0.042752pt;}
.ls16_c00423{letter-spacing:0.048672pt;}
.ls2_c00423{letter-spacing:0.053440pt;}
.ls8_c00423{letter-spacing:0.058784pt;}
.lsb_c00423{letter-spacing:0.092480pt;}
.ls25_c00423{letter-spacing:0.120960pt;}
.ls26_c00423{letter-spacing:0.149632pt;}
.ls29_c00423{letter-spacing:0.317952pt;}
.ls24_c00423{letter-spacing:4.558432pt;}
.ws2_c00423{word-spacing:-9.925632pt;}
.ws0_c00423{word-spacing:-9.408672pt;}
.ws1_c00423{word-spacing:-8.760960pt;}
.ws40_c00423{word-spacing:-0.299264pt;}
.ws2c_c00423{word-spacing:-0.277888pt;}
.ws41_c00423{word-spacing:-0.229792pt;}
.ws1a_c00423{word-spacing:-0.219104pt;}
.ws1b_c00423{word-spacing:-0.208416pt;}
.ws4_c00423{word-spacing:-0.112224pt;}
.ws17_c00423{word-spacing:-0.019200pt;}
.ws48_c00423{word-spacing:-0.004256pt;}
.ws5_c00423{word-spacing:0.000000pt;}
.ws47_c00423{word-spacing:0.004256pt;}
.ws12_c00423{word-spacing:0.012800pt;}
.ws3_c00423{word-spacing:0.037408pt;}
.ws2e_c00423{word-spacing:0.053440pt;}
.ws2b_c00423{word-spacing:0.085504pt;}
.ws36_c00423{word-spacing:0.090848pt;}
.ws18_c00423{word-spacing:0.112224pt;}
.ws19_c00423{word-spacing:0.256512pt;}
.ws3a_c00423{word-spacing:0.432864pt;}
.ws3b_c00423{word-spacing:0.443552pt;}
.ws1c_c00423{word-spacing:0.780224pt;}
.ws38_c00423{word-spacing:0.983296pt;}
.ws2d_c00423{word-spacing:1.010016pt;}
.ws37_c00423{word-spacing:1.026048pt;}
.ws39_c00423{word-spacing:1.063456pt;}
.ws26_c00423{word-spacing:1.319968pt;}
.ws27_c00423{word-spacing:1.368064pt;}
.wse_c00423{word-spacing:1.600000pt;}
.wsc_c00423{word-spacing:1.625600pt;}
.ws3e_c00423{word-spacing:1.683360pt;}
.ws3f_c00423{word-spacing:1.699392pt;}
.wsd_c00423{word-spacing:1.721600pt;}
.wsf_c00423{word-spacing:2.227200pt;}
.ws28_c00423{word-spacing:2.645280pt;}
.ws2a_c00423{word-spacing:2.661312pt;}
.ws29_c00423{word-spacing:2.672000pt;}
.ws33_c00423{word-spacing:2.917824pt;}
.ws16_c00423{word-spacing:3.206400pt;}
.ws15_c00423{word-spacing:3.238400pt;}
.ws1f_c00423{word-spacing:3.243808pt;}
.ws34_c00423{word-spacing:3.302592pt;}
.ws20_c00423{word-spacing:3.318624pt;}
.ws21_c00423{word-spacing:3.350688pt;}
.ws35_c00423{word-spacing:3.452224pt;}
.wsb_c00423{word-spacing:4.140800pt;}
.wsa_c00423{word-spacing:4.147200pt;}
.ws3d_c00423{word-spacing:4.195040pt;}
.ws45_c00423{word-spacing:4.224000pt;}
.ws44_c00423{word-spacing:4.256000pt;}
.ws30_c00423{word-spacing:5.798240pt;}
.ws2f_c00423{word-spacing:5.857024pt;}
.ws25_c00423{word-spacing:6.140256pt;}
.ws24_c00423{word-spacing:6.161632pt;}
.ws7_c00423{word-spacing:6.387200pt;}
.ws1d_c00423{word-spacing:6.428832pt;}
.ws1e_c00423{word-spacing:6.455552pt;}
.ws9_c00423{word-spacing:6.502400pt;}
.ws8_c00423{word-spacing:6.515200pt;}
.ws23_c00423{word-spacing:6.519680pt;}
.ws11_c00423{word-spacing:6.707200pt;}
.ws10_c00423{word-spacing:6.752000pt;}
.ws3c_c00423{word-spacing:7.075456pt;}
.ws49_c00423{word-spacing:7.975744pt;}
.ws4a_c00423{word-spacing:7.992768pt;}
.ws4b_c00423{word-spacing:7.997024pt;}
.ws43_c00423{word-spacing:8.934400pt;}
.ws42_c00423{word-spacing:8.966400pt;}
.ws32_c00423{word-spacing:9.966560pt;}
.ws31_c00423{word-spacing:9.998624pt;}
.ws46_c00423{word-spacing:10.886400pt;}
.ws6_c00423{word-spacing:11.526400pt;}
.ws13_c00423{word-spacing:15.347200pt;}
.ws14_c00423{word-spacing:19.212800pt;}
.ws22_c00423{word-spacing:20.841600pt;}
._3_c00423{margin-left:-5.397440pt;}
._2_c00423{margin-left:-4.488960pt;}
._0_c00423{margin-left:-1.015360pt;}
._1_c00423{width:1.148960pt;}
._4_c00423{width:8.660416pt;}
.fs4_c00423{font-size:34.560000pt;}
.fs3_c00423{font-size:37.440000pt;}
.fs5_c00423{font-size:42.560000pt;}
.fs2_c00423{font-size:48.000000pt;}
.fs0_c00423{font-size:53.440000pt;}
.fs1_c00423{font-size:64.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y2_c00423{bottom:51.067067pt;}
.y3_c00423{bottom:54.587067pt;}
.y2f_c00423{bottom:101.069307pt;}
.y2e_c00423{bottom:117.391067pt;}
.y2d_c00423{bottom:129.630427pt;}
.y2c_c00423{bottom:145.867067pt;}
.y2b_c00423{bottom:159.387200pt;}
.y2a_c00423{bottom:177.787200pt;}
.y29_c00423{bottom:196.187067pt;}
.y28_c00423{bottom:239.547067pt;}
.y27_c00423{bottom:270.187067pt;}
.y26_c00423{bottom:300.747067pt;}
.y25_c00423{bottom:334.034907pt;}
.y24_c00423{bottom:348.998107pt;}
.y23_c00423{bottom:364.041467pt;}
.y22_c00423{bottom:379.004667pt;}
.y21_c00423{bottom:394.048027pt;}
.y20_c00423{bottom:409.011227pt;}
.y1f_c00423{bottom:424.054587pt;}
.y1e_c00423{bottom:439.017787pt;}
.y1d_c00423{bottom:454.061147pt;}
.y1c_c00423{bottom:469.024347pt;}
.y1b_c00423{bottom:484.067707pt;}
.y1a_c00423{bottom:499.030907pt;}
.y19_c00423{bottom:514.074267pt;}
.y18_c00423{bottom:529.037467pt;}
.y17_c00423{bottom:544.080827pt;}
.y16_c00423{bottom:559.044027pt;}
.y15_c00423{bottom:574.087387pt;}
.y14_c00423{bottom:589.050587pt;}
.y13_c00423{bottom:604.093947pt;}
.y12_c00423{bottom:619.057147pt;}
.y11_c00423{bottom:634.100507pt;}
.y10_c00423{bottom:649.063707pt;}
.yf_c00423{bottom:664.107067pt;}
.ye_c00423{bottom:700.347200pt;}
.yd_c00423{bottom:730.987067pt;}
.yc_c00423{bottom:761.547067pt;}
.yb_c00423{bottom:792.187067pt;}
.ya_c00423{bottom:830.747067pt;}
.y9_c00423{bottom:861.387067pt;}
.y8_c00423{bottom:891.947067pt;}
.y7_c00423{bottom:922.587067pt;}
.y6_c00423{bottom:953.147067pt;}
.y5_c00423{bottom:983.787067pt;}
.y4_c00423{bottom:1014.347067pt;}
.y1_c00423{bottom:1063.947067pt;}
.h2_c00423{height:42.656250pt;}
.h7_c00423{height:42.656783pt;}
.h8_c00423{height:44.388750pt;}
.h1_c00423{height:44.724687pt;}
.h6_c00423{height:45.013328pt;}
.h3_c00423{height:50.062500pt;}
.h4_c00423{height:53.562500pt;}
.h5_c00423{height:57.894062pt;}
.h0_c00423{height:1122.666667pt;}
.w1_c00423{width:793.333333pt;}
.w0_c00423{width:793.626667pt;}
.x0_c00423{left:0.000000pt;}
.x5_c00423{left:113.440000pt;}
.x6_c00423{left:137.280000pt;}
.x4_c00423{left:160.720000pt;}
.x1_c00423{left:188.000000pt;}
.x3_c00423{left:386.880000pt;}
.x2_c00423{left:396.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_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_27bc0c700d459d27433d7e26.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_32ad1e96ca205368c2d35812.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;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_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;}
.v1_c00424{vertical-align:15.840000px;}
.v2_c00424{vertical-align:29.880000px;}
.ls1f_c00424{letter-spacing:-0.306612px;}
.ls10_c00424{letter-spacing:-0.151200px;}
.ls1e_c00424{letter-spacing:-0.120240px;}
.ls1c_c00424{letter-spacing:-0.054108px;}
.ls1a_c00424{letter-spacing:-0.043200px;}
.ls12_c00424{letter-spacing:-0.036000px;}
.ls1d_c00424{letter-spacing:-0.030060px;}
.ls17_c00424{letter-spacing:-0.028800px;}
.ls15_c00424{letter-spacing:-0.021600px;}
.ls20_c00424{letter-spacing:-0.018036px;}
.ls16_c00424{letter-spacing:-0.014400px;}
.ls13_c00424{letter-spacing:-0.007200px;}
.ls11_c00424{letter-spacing:0.000000px;}
.ls3_c00424{letter-spacing:0.007200px;}
.ls6_c00424{letter-spacing:0.012024px;}
.lsd_c00424{letter-spacing:0.014364px;}
.ls14_c00424{letter-spacing:0.014400px;}
.lsc_c00424{letter-spacing:0.023940px;}
.ls7_c00424{letter-spacing:0.024048px;}
.ls2_c00424{letter-spacing:0.028800px;}
.lsb_c00424{letter-spacing:0.033516px;}
.ls9_c00424{letter-spacing:0.036072px;}
.lsf_c00424{letter-spacing:0.038304px;}
.ls4_c00424{letter-spacing:0.043200px;}
.ls0_c00424{letter-spacing:0.048096px;}
.ls5_c00424{letter-spacing:0.054108px;}
.ls18_c00424{letter-spacing:0.054756px;}
.lsa_c00424{letter-spacing:0.060120px;}
.ls19_c00424{letter-spacing:0.093600px;}
.ls8_c00424{letter-spacing:0.102204px;}
.lse_c00424{letter-spacing:0.104040px;}
.ls21_c00424{letter-spacing:0.136080px;}
.ls1b_c00424{letter-spacing:0.168336px;}
.ls22_c00424{letter-spacing:0.357696px;}
.ls1_c00424{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00424{word-spacing:-17.956800px;}
.ws3_c00424{word-spacing:-11.166336px;}
.ws0_c00424{word-spacing:-10.584756px;}
.ws2_c00424{word-spacing:-9.856080px;}
.ws35_c00424{word-spacing:-0.019152px;}
.wsb_c00424{word-spacing:-0.014400px;}
.ws31_c00424{word-spacing:-0.014364px;}
.ws34_c00424{word-spacing:-0.009576px;}
.ws32_c00424{word-spacing:-0.004788px;}
.ws5_c00424{word-spacing:0.000000px;}
.ws33_c00424{word-spacing:0.004788px;}
.ws11_c00424{word-spacing:0.014400px;}
.ws18_c00424{word-spacing:0.028800px;}
.ws30_c00424{word-spacing:0.030060px;}
.ws26_c00424{word-spacing:0.036072px;}
.ws4_c00424{word-spacing:0.042084px;}
.ws2d_c00424{word-spacing:0.108216px;}
.ws2f_c00424{word-spacing:0.120240px;}
.ws25_c00424{word-spacing:0.144288px;}
.ws21_c00424{word-spacing:0.345600px;}
.ws2c_c00424{word-spacing:0.348696px;}
.ws20_c00424{word-spacing:0.360000px;}
.ws10_c00424{word-spacing:1.101600px;}
.ws2a_c00424{word-spacing:1.292580px;}
.ws9_c00424{word-spacing:1.396800px;}
.ws8_c00424{word-spacing:1.411200px;}
.ws1c_c00424{word-spacing:1.425600px;}
.ws1d_c00424{word-spacing:1.461600px;}
.wsa_c00424{word-spacing:1.476000px;}
.ws2b_c00424{word-spacing:1.478952px;}
.ws6_c00424{word-spacing:1.728000px;}
.ws7_c00424{word-spacing:1.742400px;}
.ws28_c00424{word-spacing:2.224440px;}
.ws27_c00424{word-spacing:2.236464px;}
.ws29_c00424{word-spacing:2.278548px;}
.ws19_c00424{word-spacing:4.003200px;}
.ws14_c00424{word-spacing:4.730400px;}
.ws2e_c00424{word-spacing:4.731444px;}
.ws13_c00424{word-spacing:4.752000px;}
.ws15_c00424{word-spacing:5.400000px;}
.ws17_c00424{word-spacing:6.811200px;}
.ws16_c00424{word-spacing:6.832800px;}
.wsd_c00424{word-spacing:7.984800px;}
.wsc_c00424{word-spacing:8.013600px;}
.ws1f_c00424{word-spacing:8.236800px;}
.ws1e_c00424{word-spacing:8.272800px;}
.ws12_c00424{word-spacing:9.021600px;}
.ws24_c00424{word-spacing:10.454400px;}
.wsf_c00424{word-spacing:10.771200px;}
.ws23_c00424{word-spacing:10.778400px;}
.ws22_c00424{word-spacing:10.814400px;}
.wse_c00424{word-spacing:10.821600px;}
.ws1b_c00424{word-spacing:21.621600px;}
.ws1a_c00424{word-spacing:21.679200px;}
._0_c00424{margin-left:-1.322640px;}
._1_c00424{width:1.044000px;}
._2_c00424{width:10.256976px;}
.fc0_c00424{color:rgb(0,0,0);}
.fs4_c00424{font-size:38.880000px;}
.fs3_c00424{font-size:42.120000px;}
.fs5_c00424{font-size:47.880000px;}
.fs2_c00424{font-size:54.000000px;}
.fs0_c00424{font-size:60.120000px;}
.fs1_c00424{font-size:72.000000px;}
.y0_c00424{bottom:0.000000px;}
.y2_c00424{bottom:57.450450px;}
.y25_c00424{bottom:113.702250px;}
.y24_c00424{bottom:132.064230px;}
.y23_c00424{bottom:150.334230px;}
.y22_c00424{bottom:168.600450px;}
.y21_c00424{bottom:183.810600px;}
.y20_c00424{bottom:204.510600px;}
.y1f_c00424{bottom:225.210600px;}
.y1e_c00424{bottom:274.598310px;}
.y1d_c00424{bottom:291.431910px;}
.y1c_c00424{bottom:308.355690px;}
.y1b_c00424{bottom:325.189290px;}
.y1a_c00424{bottom:342.113070px;}
.y19_c00424{bottom:358.946670px;}
.y18_c00424{bottom:375.870450px;}
.y17_c00424{bottom:416.640450px;}
.y16_c00424{bottom:451.110450px;}
.y15_c00424{bottom:485.490450px;}
.y14_c00424{bottom:519.960450px;}
.y13_c00424{bottom:554.340450px;}
.y12_c00424{bottom:588.810450px;}
.y11_c00424{bottom:632.190450px;}
.y10_c00424{bottom:666.660450px;}
.yf_c00424{bottom:701.040450px;}
.ye_c00424{bottom:744.510450px;}
.yd_c00424{bottom:778.890450px;}
.yc_c00424{bottom:813.360450px;}
.yb_c00424{bottom:847.740450px;}
.ya_c00424{bottom:882.210450px;}
.y9_c00424{bottom:925.590450px;}
.y8_c00424{bottom:960.060450px;}
.y7_c00424{bottom:994.440450px;}
.y6_c00424{bottom:1028.910450px;}
.y5_c00424{bottom:1072.290450px;}
.y4_c00424{bottom:1106.760450px;}
.y3_c00424{bottom:1141.140450px;}
.y1_c00424{bottom:1196.850450px;}
.h7_c00424{height:47.988281px;}
.h8_c00424{height:49.937344px;}
.h1_c00424{height:50.315273px;}
.h6_c00424{height:50.403833px;}
.h3_c00424{height:60.257812px;}
.h4_c00424{height:65.130820px;}
.h5_c00424{height:65.131420px;}
.h2_c00424{height:72.160312px;}
.h0_c00424{height:1263.000000px;}
.w1_c00424{width:892.500000px;}
.w0_c00424{width:892.830000px;}
.x0_c00424{left:0.000000px;}
.x1_c00424{left:127.620000px;}
.x3_c00424{left:154.440000px;}
.x2_c00424{left:180.810000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.v1_c00424{vertical-align:14.080000pt;}
.v2_c00424{vertical-align:26.560000pt;}
.ls1f_c00424{letter-spacing:-0.272544pt;}
.ls10_c00424{letter-spacing:-0.134400pt;}
.ls1e_c00424{letter-spacing:-0.106880pt;}
.ls1c_c00424{letter-spacing:-0.048096pt;}
.ls1a_c00424{letter-spacing:-0.038400pt;}
.ls12_c00424{letter-spacing:-0.032000pt;}
.ls1d_c00424{letter-spacing:-0.026720pt;}
.ls17_c00424{letter-spacing:-0.025600pt;}
.ls15_c00424{letter-spacing:-0.019200pt;}
.ls20_c00424{letter-spacing:-0.016032pt;}
.ls16_c00424{letter-spacing:-0.012800pt;}
.ls13_c00424{letter-spacing:-0.006400pt;}
.ls11_c00424{letter-spacing:0.000000pt;}
.ls3_c00424{letter-spacing:0.006400pt;}
.ls6_c00424{letter-spacing:0.010688pt;}
.lsd_c00424{letter-spacing:0.012768pt;}
.ls14_c00424{letter-spacing:0.012800pt;}
.lsc_c00424{letter-spacing:0.021280pt;}
.ls7_c00424{letter-spacing:0.021376pt;}
.ls2_c00424{letter-spacing:0.025600pt;}
.lsb_c00424{letter-spacing:0.029792pt;}
.ls9_c00424{letter-spacing:0.032064pt;}
.lsf_c00424{letter-spacing:0.034048pt;}
.ls4_c00424{letter-spacing:0.038400pt;}
.ls0_c00424{letter-spacing:0.042752pt;}
.ls5_c00424{letter-spacing:0.048096pt;}
.ls18_c00424{letter-spacing:0.048672pt;}
.lsa_c00424{letter-spacing:0.053440pt;}
.ls19_c00424{letter-spacing:0.083200pt;}
.ls8_c00424{letter-spacing:0.090848pt;}
.lse_c00424{letter-spacing:0.092480pt;}
.ls21_c00424{letter-spacing:0.120960pt;}
.ls1b_c00424{letter-spacing:0.149632pt;}
.ls22_c00424{letter-spacing:0.317952pt;}
.ls1_c00424{letter-spacing:1077.440000pt;}
.ws1_c00424{word-spacing:-15.961600pt;}
.ws3_c00424{word-spacing:-9.925632pt;}
.ws0_c00424{word-spacing:-9.408672pt;}
.ws2_c00424{word-spacing:-8.760960pt;}
.ws35_c00424{word-spacing:-0.017024pt;}
.wsb_c00424{word-spacing:-0.012800pt;}
.ws31_c00424{word-spacing:-0.012768pt;}
.ws34_c00424{word-spacing:-0.008512pt;}
.ws32_c00424{word-spacing:-0.004256pt;}
.ws5_c00424{word-spacing:0.000000pt;}
.ws33_c00424{word-spacing:0.004256pt;}
.ws11_c00424{word-spacing:0.012800pt;}
.ws18_c00424{word-spacing:0.025600pt;}
.ws30_c00424{word-spacing:0.026720pt;}
.ws26_c00424{word-spacing:0.032064pt;}
.ws4_c00424{word-spacing:0.037408pt;}
.ws2d_c00424{word-spacing:0.096192pt;}
.ws2f_c00424{word-spacing:0.106880pt;}
.ws25_c00424{word-spacing:0.128256pt;}
.ws21_c00424{word-spacing:0.307200pt;}
.ws2c_c00424{word-spacing:0.309952pt;}
.ws20_c00424{word-spacing:0.320000pt;}
.ws10_c00424{word-spacing:0.979200pt;}
.ws2a_c00424{word-spacing:1.148960pt;}
.ws9_c00424{word-spacing:1.241600pt;}
.ws8_c00424{word-spacing:1.254400pt;}
.ws1c_c00424{word-spacing:1.267200pt;}
.ws1d_c00424{word-spacing:1.299200pt;}
.wsa_c00424{word-spacing:1.312000pt;}
.ws2b_c00424{word-spacing:1.314624pt;}
.ws6_c00424{word-spacing:1.536000pt;}
.ws7_c00424{word-spacing:1.548800pt;}
.ws28_c00424{word-spacing:1.977280pt;}
.ws27_c00424{word-spacing:1.987968pt;}
.ws29_c00424{word-spacing:2.025376pt;}
.ws19_c00424{word-spacing:3.558400pt;}
.ws14_c00424{word-spacing:4.204800pt;}
.ws2e_c00424{word-spacing:4.205728pt;}
.ws13_c00424{word-spacing:4.224000pt;}
.ws15_c00424{word-spacing:4.800000pt;}
.ws17_c00424{word-spacing:6.054400pt;}
.ws16_c00424{word-spacing:6.073600pt;}
.wsd_c00424{word-spacing:7.097600pt;}
.wsc_c00424{word-spacing:7.123200pt;}
.ws1f_c00424{word-spacing:7.321600pt;}
.ws1e_c00424{word-spacing:7.353600pt;}
.ws12_c00424{word-spacing:8.019200pt;}
.ws24_c00424{word-spacing:9.292800pt;}
.wsf_c00424{word-spacing:9.574400pt;}
.ws23_c00424{word-spacing:9.580800pt;}
.ws22_c00424{word-spacing:9.612800pt;}
.wse_c00424{word-spacing:9.619200pt;}
.ws1b_c00424{word-spacing:19.219200pt;}
.ws1a_c00424{word-spacing:19.270400pt;}
._0_c00424{margin-left:-1.175680pt;}
._1_c00424{width:0.928000pt;}
._2_c00424{width:9.117312pt;}
.fs4_c00424{font-size:34.560000pt;}
.fs3_c00424{font-size:37.440000pt;}
.fs5_c00424{font-size:42.560000pt;}
.fs2_c00424{font-size:48.000000pt;}
.fs0_c00424{font-size:53.440000pt;}
.fs1_c00424{font-size:64.000000pt;}
.y0_c00424{bottom:0.000000pt;}
.y2_c00424{bottom:51.067067pt;}
.y25_c00424{bottom:101.068667pt;}
.y24_c00424{bottom:117.390427pt;}
.y23_c00424{bottom:133.630427pt;}
.y22_c00424{bottom:149.867067pt;}
.y21_c00424{bottom:163.387200pt;}
.y20_c00424{bottom:181.787200pt;}
.y1f_c00424{bottom:200.187200pt;}
.y1e_c00424{bottom:244.087387pt;}
.y1d_c00424{bottom:259.050587pt;}
.y1c_c00424{bottom:274.093947pt;}
.y1b_c00424{bottom:289.057147pt;}
.y1a_c00424{bottom:304.100507pt;}
.y19_c00424{bottom:319.063707pt;}
.y18_c00424{bottom:334.107067pt;}
.y17_c00424{bottom:370.347067pt;}
.y16_c00424{bottom:400.987067pt;}
.y15_c00424{bottom:431.547067pt;}
.y14_c00424{bottom:462.187067pt;}
.y13_c00424{bottom:492.747067pt;}
.y12_c00424{bottom:523.387067pt;}
.y11_c00424{bottom:561.947067pt;}
.y10_c00424{bottom:592.587067pt;}
.yf_c00424{bottom:623.147067pt;}
.ye_c00424{bottom:661.787067pt;}
.yd_c00424{bottom:692.347067pt;}
.yc_c00424{bottom:722.987067pt;}
.yb_c00424{bottom:753.547067pt;}
.ya_c00424{bottom:784.187067pt;}
.y9_c00424{bottom:822.747067pt;}
.y8_c00424{bottom:853.387067pt;}
.y7_c00424{bottom:883.947067pt;}
.y6_c00424{bottom:914.587067pt;}
.y5_c00424{bottom:953.147067pt;}
.y4_c00424{bottom:983.787067pt;}
.y3_c00424{bottom:1014.347067pt;}
.y1_c00424{bottom:1063.867067pt;}
.h7_c00424{height:42.656250pt;}
.h8_c00424{height:44.388750pt;}
.h1_c00424{height:44.724687pt;}
.h6_c00424{height:44.803408pt;}
.h3_c00424{height:53.562500pt;}
.h4_c00424{height:57.894062pt;}
.h5_c00424{height:57.894596pt;}
.h2_c00424{height:64.142500pt;}
.h0_c00424{height:1122.666667pt;}
.w1_c00424{width:793.333333pt;}
.w0_c00424{width:793.626667pt;}
.x0_c00424{left:0.000000pt;}
.x1_c00424{left:113.440000pt;}
.x3_c00424{left:137.280000pt;}
.x2_c00424{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_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_13314cfca9c06b81b4b5e84e.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_682cf8ce279cb7e20acc5622.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;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_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;}
.v1_c00425{vertical-align:15.179040px;}
.ls1d_c00425{letter-spacing:-0.258516px;}
.ls1f_c00425{letter-spacing:-0.222444px;}
.lsf_c00425{letter-spacing:-0.151200px;}
.lsd_c00425{letter-spacing:-0.144288px;}
.ls1b_c00425{letter-spacing:-0.078156px;}
.ls13_c00425{letter-spacing:-0.066132px;}
.ls21_c00425{letter-spacing:-0.054108px;}
.ls18_c00425{letter-spacing:-0.048096px;}
.ls1c_c00425{letter-spacing:-0.042084px;}
.ls24_c00425{letter-spacing:-0.036000px;}
.ls10_c00425{letter-spacing:-0.028800px;}
.ls14_c00425{letter-spacing:-0.024048px;}
.ls12_c00425{letter-spacing:-0.021600px;}
.ls19_c00425{letter-spacing:-0.018036px;}
.ls17_c00425{letter-spacing:-0.014400px;}
.ls22_c00425{letter-spacing:-0.012024px;}
.ls23_c00425{letter-spacing:-0.007200px;}
.ls1a_c00425{letter-spacing:-0.006012px;}
.lse_c00425{letter-spacing:0.000000px;}
.ls3_c00425{letter-spacing:0.006012px;}
.ls11_c00425{letter-spacing:0.007200px;}
.ls5_c00425{letter-spacing:0.012024px;}
.lsa_c00425{letter-spacing:0.021600px;}
.lsc_c00425{letter-spacing:0.023940px;}
.lsb_c00425{letter-spacing:0.028728px;}
.ls8_c00425{letter-spacing:0.030060px;}
.ls1_c00425{letter-spacing:0.036000px;}
.ls2_c00425{letter-spacing:0.042084px;}
.ls0_c00425{letter-spacing:0.048096px;}
.ls9_c00425{letter-spacing:0.054108px;}
.ls6_c00425{letter-spacing:0.060120px;}
.ls7_c00425{letter-spacing:0.072144px;}
.ls4_c00425{letter-spacing:0.078156px;}
.ls15_c00425{letter-spacing:0.136080px;}
.ls16_c00425{letter-spacing:0.168336px;}
.ls20_c00425{letter-spacing:6.931836px;}
.ls1e_c00425{letter-spacing:8.729424px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00425{word-spacing:-9.856080px;}
.ws24_c00425{word-spacing:-0.324648px;}
.wsb_c00425{word-spacing:-0.318636px;}
.ws29_c00425{word-spacing:-0.258516px;}
.ws2_c00425{word-spacing:-0.126252px;}
.ws35_c00425{word-spacing:-0.014364px;}
.ws34_c00425{word-spacing:-0.009576px;}
.ws36_c00425{word-spacing:-0.004788px;}
.ws3_c00425{word-spacing:0.000000px;}
.ws2d_c00425{word-spacing:0.014400px;}
.ws12_c00425{word-spacing:0.036000px;}
.ws1_c00425{word-spacing:0.042084px;}
.ws26_c00425{word-spacing:0.078156px;}
.ws15_c00425{word-spacing:0.108216px;}
.wsa_c00425{word-spacing:0.156312px;}
.ws2e_c00425{word-spacing:0.158400px;}
.ws7_c00425{word-spacing:0.172800px;}
.ws25_c00425{word-spacing:0.408816px;}
.ws4_c00425{word-spacing:0.770400px;}
.ws14_c00425{word-spacing:1.112220px;}
.ws13_c00425{word-spacing:1.220436px;}
.ws1d_c00425{word-spacing:2.549088px;}
.ws1a_c00425{word-spacing:2.897784px;}
.ws8_c00425{word-spacing:2.901600px;}
.ws19_c00425{word-spacing:2.957904px;}
.ws5_c00425{word-spacing:5.004000px;}
.ws6_c00425{word-spacing:5.212800px;}
.ws11_c00425{word-spacing:5.760000px;}
.ws1e_c00425{word-spacing:5.819616px;}
.ws2b_c00425{word-spacing:6.919200px;}
.ws10_c00425{word-spacing:6.919812px;}
.ws2a_c00425{word-spacing:6.962400px;}
.ws28_c00425{word-spacing:6.985944px;}
.ws27_c00425{word-spacing:6.997968px;}
.wsf_c00425{word-spacing:7.214400px;}
.ws1f_c00425{word-spacing:7.605180px;}
.ws20_c00425{word-spacing:7.653276px;}
.ws1b_c00425{word-spacing:8.771508px;}
.ws1c_c00425{word-spacing:8.987940px;}
.wsc_c00425{word-spacing:9.048060px;}
.ws23_c00425{word-spacing:10.166292px;}
.ws21_c00425{word-spacing:10.569096px;}
.ws22_c00425{word-spacing:10.749456px;}
.ws2c_c00425{word-spacing:13.694400px;}
.ws2f_c00425{word-spacing:14.738400px;}
.ws30_c00425{word-spacing:14.875200px;}
.ws32_c00425{word-spacing:15.199200px;}
.ws31_c00425{word-spacing:15.213600px;}
.wse_c00425{word-spacing:15.565068px;}
.wsd_c00425{word-spacing:15.595128px;}
.ws9_c00425{word-spacing:15.861600px;}
.ws17_c00425{word-spacing:16.286508px;}
.ws18_c00425{word-spacing:16.370676px;}
.ws16_c00425{word-spacing:16.653240px;}
.ws33_c00425{word-spacing:19.058400px;}
._2_c00425{margin-left:-8.849664px;}
._3_c00425{margin-left:-7.707384px;}
._4_c00425{margin-left:-6.180336px;}
._0_c00425{margin-left:-1.142280px;}
._1_c00425{width:1.292580px;}
.fc0_c00425{color:rgb(0,0,0);}
.fs3_c00425{font-size:38.880000px;}
.fs4_c00425{font-size:47.880000px;}
.fs2_c00425{font-size:54.000000px;}
.fs0_c00425{font-size:60.120000px;}
.fs1_c00425{font-size:72.000000px;}
.y0_c00425{bottom:0.000000px;}
.y2_c00425{bottom:57.450450px;}
.y3_c00425{bottom:61.410450px;}
.y28_c00425{bottom:113.698470px;}
.y27_c00425{bottom:132.060450px;}
.y26_c00425{bottom:147.270450px;}
.y25_c00425{bottom:167.970450px;}
.y24_c00425{bottom:188.670450px;}
.y23_c00425{bottom:317.910450px;}
.y22_c00425{bottom:352.290450px;}
.y21_c00425{bottom:386.760450px;}
.y20_c00425{bottom:430.140450px;}
.y1f_c00425{bottom:464.610450px;}
.y1e_c00425{bottom:498.990450px;}
.y1d_c00425{bottom:536.476170px;}
.y1c_c00425{bottom:553.309770px;}
.y1b_c00425{bottom:570.233550px;}
.y1a_c00425{bottom:587.067150px;}
.y19_c00425{bottom:603.990930px;}
.y18_c00425{bottom:620.824530px;}
.y17_c00425{bottom:637.748310px;}
.y16_c00425{bottom:654.581910px;}
.y15_c00425{bottom:671.505690px;}
.y14_c00425{bottom:688.339290px;}
.y13_c00425{bottom:705.263070px;}
.y12_c00425{bottom:722.096670px;}
.y11_c00425{bottom:739.020450px;}
.y10_c00425{bottom:779.790450px;}
.yf_c00425{bottom:814.260450px;}
.ye_c00425{bottom:851.685690px;}
.yd_c00425{bottom:868.609470px;}
.yc_c00425{bottom:885.443070px;}
.yb_c00425{bottom:902.366850px;}
.ya_c00425{bottom:919.200450px;}
.y9_c00425{bottom:960.060450px;}
.y8_c00425{bottom:994.440450px;}
.y7_c00425{bottom:1028.910450px;}
.y6_c00425{bottom:1072.290450px;}
.y5_c00425{bottom:1106.760450px;}
.y4_c00425{bottom:1141.140450px;}
.y1_c00425{bottom:1196.940450px;}
.h2_c00425{height:47.988281px;}
.h7_c00425{height:49.937344px;}
.h1_c00425{height:50.315273px;}
.h5_c00425{height:50.374313px;}
.h6_c00425{height:50.492393px;}
.h3_c00425{height:56.320312px;}
.h4_c00425{height:60.257812px;}
.h0_c00425{height:1263.000000px;}
.w1_c00425{width:892.500000px;}
.w0_c00425{width:892.830000px;}
.x0_c00425{left:0.000000px;}
.x5_c00425{left:127.620000px;}
.x6_c00425{left:154.440000px;}
.x4_c00425{left:180.810000px;}
.x1_c00425{left:211.500000px;}
.x3_c00425{left:435.240000px;}
.x2_c00425{left:446.490000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.v1_c00425{vertical-align:13.492480pt;}
.ls1d_c00425{letter-spacing:-0.229792pt;}
.ls1f_c00425{letter-spacing:-0.197728pt;}
.lsf_c00425{letter-spacing:-0.134400pt;}
.lsd_c00425{letter-spacing:-0.128256pt;}
.ls1b_c00425{letter-spacing:-0.069472pt;}
.ls13_c00425{letter-spacing:-0.058784pt;}
.ls21_c00425{letter-spacing:-0.048096pt;}
.ls18_c00425{letter-spacing:-0.042752pt;}
.ls1c_c00425{letter-spacing:-0.037408pt;}
.ls24_c00425{letter-spacing:-0.032000pt;}
.ls10_c00425{letter-spacing:-0.025600pt;}
.ls14_c00425{letter-spacing:-0.021376pt;}
.ls12_c00425{letter-spacing:-0.019200pt;}
.ls19_c00425{letter-spacing:-0.016032pt;}
.ls17_c00425{letter-spacing:-0.012800pt;}
.ls22_c00425{letter-spacing:-0.010688pt;}
.ls23_c00425{letter-spacing:-0.006400pt;}
.ls1a_c00425{letter-spacing:-0.005344pt;}
.lse_c00425{letter-spacing:0.000000pt;}
.ls3_c00425{letter-spacing:0.005344pt;}
.ls11_c00425{letter-spacing:0.006400pt;}
.ls5_c00425{letter-spacing:0.010688pt;}
.lsa_c00425{letter-spacing:0.019200pt;}
.lsc_c00425{letter-spacing:0.021280pt;}
.lsb_c00425{letter-spacing:0.025536pt;}
.ls8_c00425{letter-spacing:0.026720pt;}
.ls1_c00425{letter-spacing:0.032000pt;}
.ls2_c00425{letter-spacing:0.037408pt;}
.ls0_c00425{letter-spacing:0.042752pt;}
.ls9_c00425{letter-spacing:0.048096pt;}
.ls6_c00425{letter-spacing:0.053440pt;}
.ls7_c00425{letter-spacing:0.064128pt;}
.ls4_c00425{letter-spacing:0.069472pt;}
.ls15_c00425{letter-spacing:0.120960pt;}
.ls16_c00425{letter-spacing:0.149632pt;}
.ls20_c00425{letter-spacing:6.161632pt;}
.ls1e_c00425{letter-spacing:7.759488pt;}
.ws0_c00425{word-spacing:-8.760960pt;}
.ws24_c00425{word-spacing:-0.288576pt;}
.wsb_c00425{word-spacing:-0.283232pt;}
.ws29_c00425{word-spacing:-0.229792pt;}
.ws2_c00425{word-spacing:-0.112224pt;}
.ws35_c00425{word-spacing:-0.012768pt;}
.ws34_c00425{word-spacing:-0.008512pt;}
.ws36_c00425{word-spacing:-0.004256pt;}
.ws3_c00425{word-spacing:0.000000pt;}
.ws2d_c00425{word-spacing:0.012800pt;}
.ws12_c00425{word-spacing:0.032000pt;}
.ws1_c00425{word-spacing:0.037408pt;}
.ws26_c00425{word-spacing:0.069472pt;}
.ws15_c00425{word-spacing:0.096192pt;}
.wsa_c00425{word-spacing:0.138944pt;}
.ws2e_c00425{word-spacing:0.140800pt;}
.ws7_c00425{word-spacing:0.153600pt;}
.ws25_c00425{word-spacing:0.363392pt;}
.ws4_c00425{word-spacing:0.684800pt;}
.ws14_c00425{word-spacing:0.988640pt;}
.ws13_c00425{word-spacing:1.084832pt;}
.ws1d_c00425{word-spacing:2.265856pt;}
.ws1a_c00425{word-spacing:2.575808pt;}
.ws8_c00425{word-spacing:2.579200pt;}
.ws19_c00425{word-spacing:2.629248pt;}
.ws5_c00425{word-spacing:4.448000pt;}
.ws6_c00425{word-spacing:4.633600pt;}
.ws11_c00425{word-spacing:5.120000pt;}
.ws1e_c00425{word-spacing:5.172992pt;}
.ws2b_c00425{word-spacing:6.150400pt;}
.ws10_c00425{word-spacing:6.150944pt;}
.ws2a_c00425{word-spacing:6.188800pt;}
.ws28_c00425{word-spacing:6.209728pt;}
.ws27_c00425{word-spacing:6.220416pt;}
.wsf_c00425{word-spacing:6.412800pt;}
.ws1f_c00425{word-spacing:6.760160pt;}
.ws20_c00425{word-spacing:6.802912pt;}
.ws1b_c00425{word-spacing:7.796896pt;}
.ws1c_c00425{word-spacing:7.989280pt;}
.wsc_c00425{word-spacing:8.042720pt;}
.ws23_c00425{word-spacing:9.036704pt;}
.ws21_c00425{word-spacing:9.394752pt;}
.ws22_c00425{word-spacing:9.555072pt;}
.ws2c_c00425{word-spacing:12.172800pt;}
.ws2f_c00425{word-spacing:13.100800pt;}
.ws30_c00425{word-spacing:13.222400pt;}
.ws32_c00425{word-spacing:13.510400pt;}
.ws31_c00425{word-spacing:13.523200pt;}
.wse_c00425{word-spacing:13.835616pt;}
.wsd_c00425{word-spacing:13.862336pt;}
.ws9_c00425{word-spacing:14.099200pt;}
.ws17_c00425{word-spacing:14.476896pt;}
.ws18_c00425{word-spacing:14.551712pt;}
.ws16_c00425{word-spacing:14.802880pt;}
.ws33_c00425{word-spacing:16.940800pt;}
._2_c00425{margin-left:-7.866368pt;}
._3_c00425{margin-left:-6.851008pt;}
._4_c00425{margin-left:-5.493632pt;}
._0_c00425{margin-left:-1.015360pt;}
._1_c00425{width:1.148960pt;}
.fs3_c00425{font-size:34.560000pt;}
.fs4_c00425{font-size:42.560000pt;}
.fs2_c00425{font-size:48.000000pt;}
.fs0_c00425{font-size:53.440000pt;}
.fs1_c00425{font-size:64.000000pt;}
.y0_c00425{bottom:0.000000pt;}
.y2_c00425{bottom:51.067067pt;}
.y3_c00425{bottom:54.587067pt;}
.y28_c00425{bottom:101.065307pt;}
.y27_c00425{bottom:117.387067pt;}
.y26_c00425{bottom:130.907067pt;}
.y25_c00425{bottom:149.307067pt;}
.y24_c00425{bottom:167.707067pt;}
.y23_c00425{bottom:282.587067pt;}
.y22_c00425{bottom:313.147067pt;}
.y21_c00425{bottom:343.787067pt;}
.y20_c00425{bottom:382.347067pt;}
.y1f_c00425{bottom:412.987067pt;}
.y1e_c00425{bottom:443.547067pt;}
.y1d_c00425{bottom:476.867707pt;}
.y1c_c00425{bottom:491.830907pt;}
.y1b_c00425{bottom:506.874267pt;}
.y1a_c00425{bottom:521.837467pt;}
.y19_c00425{bottom:536.880827pt;}
.y18_c00425{bottom:551.844027pt;}
.y17_c00425{bottom:566.887387pt;}
.y16_c00425{bottom:581.850587pt;}
.y15_c00425{bottom:596.893947pt;}
.y14_c00425{bottom:611.857147pt;}
.y13_c00425{bottom:626.900507pt;}
.y12_c00425{bottom:641.863707pt;}
.y11_c00425{bottom:656.907067pt;}
.y10_c00425{bottom:693.147067pt;}
.yf_c00425{bottom:723.787067pt;}
.ye_c00425{bottom:757.053947pt;}
.yd_c00425{bottom:772.097307pt;}
.yc_c00425{bottom:787.060507pt;}
.yb_c00425{bottom:802.103867pt;}
.ya_c00425{bottom:817.067067pt;}
.y9_c00425{bottom:853.387067pt;}
.y8_c00425{bottom:883.947067pt;}
.y7_c00425{bottom:914.587067pt;}
.y6_c00425{bottom:953.147067pt;}
.y5_c00425{bottom:983.787067pt;}
.y4_c00425{bottom:1014.347067pt;}
.y1_c00425{bottom:1063.947067pt;}
.h2_c00425{height:42.656250pt;}
.h7_c00425{height:44.388750pt;}
.h1_c00425{height:44.724687pt;}
.h5_c00425{height:44.777168pt;}
.h6_c00425{height:44.882127pt;}
.h3_c00425{height:50.062500pt;}
.h4_c00425{height:53.562500pt;}
.h0_c00425{height:1122.666667pt;}
.w1_c00425{width:793.333333pt;}
.w0_c00425{width:793.626667pt;}
.x0_c00425{left:0.000000pt;}
.x5_c00425{left:113.440000pt;}
.x6_c00425{left:137.280000pt;}
.x4_c00425{left:160.720000pt;}
.x1_c00425{left:188.000000pt;}
.x3_c00425{left:386.880000pt;}
.x2_c00425{left:396.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_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_832f4313eb38cb7a410c5b18.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_395bb3f80db09fb3d2124364.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;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_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;}
.v1_c00426{vertical-align:15.840000px;}
.v2_c00426{vertical-align:29.880000px;}
.ls11_c00426{letter-spacing:-0.151200px;}
.ls24_c00426{letter-spacing:-0.090180px;}
.ls22_c00426{letter-spacing:-0.066132px;}
.ls1b_c00426{letter-spacing:-0.043200px;}
.ls21_c00426{letter-spacing:-0.036072px;}
.ls1a_c00426{letter-spacing:-0.036000px;}
.ls14_c00426{letter-spacing:-0.028800px;}
.ls1e_c00426{letter-spacing:-0.024048px;}
.ls18_c00426{letter-spacing:-0.021600px;}
.ls23_c00426{letter-spacing:-0.018036px;}
.ls12_c00426{letter-spacing:-0.014400px;}
.ls1f_c00426{letter-spacing:-0.012024px;}
.ls19_c00426{letter-spacing:-0.007200px;}
.ls20_c00426{letter-spacing:-0.006012px;}
.ls17_c00426{letter-spacing:0.000000px;}
.ls7_c00426{letter-spacing:0.006012px;}
.ls1d_c00426{letter-spacing:0.007200px;}
.ls9_c00426{letter-spacing:0.014364px;}
.ls2_c00426{letter-spacing:0.014400px;}
.ls3_c00426{letter-spacing:0.021600px;}
.lsd_c00426{letter-spacing:0.023940px;}
.lsb_c00426{letter-spacing:0.028728px;}
.ls1c_c00426{letter-spacing:0.028800px;}
.lsf_c00426{letter-spacing:0.033516px;}
.ls4_c00426{letter-spacing:0.036000px;}
.ls5_c00426{letter-spacing:0.036072px;}
.lsc_c00426{letter-spacing:0.038304px;}
.ls8_c00426{letter-spacing:0.042084px;}
.lse_c00426{letter-spacing:0.043092px;}
.ls10_c00426{letter-spacing:0.047880px;}
.ls0_c00426{letter-spacing:0.048096px;}
.ls15_c00426{letter-spacing:0.054756px;}
.ls6_c00426{letter-spacing:0.060120px;}
.ls16_c00426{letter-spacing:0.093600px;}
.lsa_c00426{letter-spacing:0.104040px;}
.ls25_c00426{letter-spacing:0.357696px;}
.ls13_c00426{letter-spacing:20.880000px;}
.ls1_c00426{letter-spacing:1212.120000px;}
.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:-11.166336px;}
.ws0_c00426{word-spacing:-10.584756px;}
.ws2c_c00426{word-spacing:-0.180360px;}
.ws36_c00426{word-spacing:-0.028728px;}
.ws31_c00426{word-spacing:-0.019152px;}
.ws2f_c00426{word-spacing:-0.014364px;}
.ws30_c00426{word-spacing:-0.009576px;}
.ws1c_c00426{word-spacing:-0.007200px;}
.ws33_c00426{word-spacing:-0.004788px;}
.ws3_c00426{word-spacing:0.000000px;}
.ws32_c00426{word-spacing:0.004788px;}
.ws5_c00426{word-spacing:0.014400px;}
.ws2_c00426{word-spacing:0.042084px;}
.ws24_c00426{word-spacing:0.048096px;}
.ws25_c00426{word-spacing:0.096192px;}
.ws6_c00426{word-spacing:0.100800px;}
.ws2b_c00426{word-spacing:0.108216px;}
.ws18_c00426{word-spacing:0.374400px;}
.wse_c00426{word-spacing:0.388800px;}
.ws1a_c00426{word-spacing:0.439200px;}
.wsf_c00426{word-spacing:0.446400px;}
.ws19_c00426{word-spacing:0.489600px;}
.ws1d_c00426{word-spacing:1.124244px;}
.ws1e_c00426{word-spacing:1.136268px;}
.ws22_c00426{word-spacing:2.963916px;}
.ws23_c00426{word-spacing:2.969928px;}
.wsa_c00426{word-spacing:3.225600px;}
.ws13_c00426{word-spacing:3.254400px;}
.ws1b_c00426{word-spacing:3.261600px;}
.ws9_c00426{word-spacing:3.290400px;}
.ws2e_c00426{word-spacing:3.586212px;}
.ws2d_c00426{word-spacing:3.605364px;}
.ws16_c00426{word-spacing:3.808800px;}
.ws15_c00426{word-spacing:3.981600px;}
.ws20_c00426{word-spacing:5.428836px;}
.ws21_c00426{word-spacing:5.500980px;}
.ws1f_c00426{word-spacing:5.513004px;}
.ws17_c00426{word-spacing:6.148800px;}
.ws27_c00426{word-spacing:6.162300px;}
.ws28_c00426{word-spacing:6.222420px;}
.ws29_c00426{word-spacing:6.246468px;}
.ws2a_c00426{word-spacing:6.276528px;}
.ws35_c00426{word-spacing:8.972712px;}
.ws34_c00426{word-spacing:8.987076px;}
.wsd_c00426{word-spacing:9.964800px;}
.wsc_c00426{word-spacing:10.101600px;}
.ws26_c00426{word-spacing:10.178316px;}
.ws11_c00426{word-spacing:13.327200px;}
.ws10_c00426{word-spacing:13.363200px;}
.ws8_c00426{word-spacing:14.774400px;}
.ws7_c00426{word-spacing:14.788800px;}
.wsb_c00426{word-spacing:16.574400px;}
.ws4_c00426{word-spacing:21.009600px;}
.ws14_c00426{word-spacing:21.621600px;}
.ws12_c00426{word-spacing:32.068800px;}
._2_c00426{margin-left:-21.715200px;}
._1_c00426{margin-left:-20.563200px;}
._0_c00426{margin-left:-1.322640px;}
._3_c00426{width:1.080000px;}
._4_c00426{width:3.936096px;}
.fc0_c00426{color:rgb(0,0,0);}
.fs5_c00426{font-size:38.880000px;}
.fs3_c00426{font-size:42.120000px;}
.fs4_c00426{font-size:47.880000px;}
.fs2_c00426{font-size:54.000000px;}
.fs0_c00426{font-size:60.120000px;}
.fs1_c00426{font-size:72.000000px;}
.y0_c00426{bottom:0.000000px;}
.y2_c00426{bottom:57.450450px;}
.y28_c00426{bottom:113.698470px;}
.y27_c00426{bottom:132.066900px;}
.y26_c00426{bottom:150.333120px;}
.y25_c00426{bottom:164.098620px;}
.y24_c00426{bottom:182.466750px;}
.y23_c00426{bottom:200.732970px;}
.y22_c00426{bottom:218.999190px;}
.y21_c00426{bottom:232.860450px;}
.y20_c00426{bottom:248.070450px;}
.y1f_c00426{bottom:268.770450px;}
.y1e_c00426{bottom:289.470450px;}
.y1d_c00426{bottom:335.524530px;}
.y1c_c00426{bottom:352.448310px;}
.y1b_c00426{bottom:369.281910px;}
.y1a_c00426{bottom:386.205690px;}
.y19_c00426{bottom:403.039290px;}
.y18_c00426{bottom:419.963070px;}
.y17_c00426{bottom:436.796670px;}
.y16_c00426{bottom:453.720450px;}
.y15_c00426{bottom:494.490450px;}
.y14_c00426{bottom:528.960450px;}
.y13_c00426{bottom:563.340450px;}
.y12_c00426{bottom:597.810450px;}
.y11_c00426{bottom:632.190450px;}
.y10_c00426{bottom:675.660450px;}
.yf_c00426{bottom:710.040450px;}
.ye_c00426{bottom:744.510450px;}
.yd_c00426{bottom:778.890450px;}
.yc_c00426{bottom:822.360450px;}
.yb_c00426{bottom:856.740450px;}
.ya_c00426{bottom:891.210450px;}
.y9_c00426{bottom:925.590450px;}
.y8_c00426{bottom:960.060450px;}
.y7_c00426{bottom:994.440450px;}
.y6_c00426{bottom:1028.910450px;}
.y5_c00426{bottom:1063.290450px;}
.y4_c00426{bottom:1106.760450px;}
.y3_c00426{bottom:1141.140450px;}
.y1_c00426{bottom:1196.850450px;}
.h5_c00426{height:47.988281px;}
.h6_c00426{height:49.937344px;}
.h1_c00426{height:50.315273px;}
.h3_c00426{height:60.257812px;}
.h4_c00426{height:65.130820px;}
.h2_c00426{height:72.160312px;}
.h0_c00426{height:1263.000000px;}
.w1_c00426{width:892.500000px;}
.w0_c00426{width:892.830000px;}
.x0_c00426{left:0.000000px;}
.x1_c00426{left:127.620000px;}
.x3_c00426{left:154.618020px;}
.x2_c00426{left:180.809850px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.v1_c00426{vertical-align:14.080000pt;}
.v2_c00426{vertical-align:26.560000pt;}
.ls11_c00426{letter-spacing:-0.134400pt;}
.ls24_c00426{letter-spacing:-0.080160pt;}
.ls22_c00426{letter-spacing:-0.058784pt;}
.ls1b_c00426{letter-spacing:-0.038400pt;}
.ls21_c00426{letter-spacing:-0.032064pt;}
.ls1a_c00426{letter-spacing:-0.032000pt;}
.ls14_c00426{letter-spacing:-0.025600pt;}
.ls1e_c00426{letter-spacing:-0.021376pt;}
.ls18_c00426{letter-spacing:-0.019200pt;}
.ls23_c00426{letter-spacing:-0.016032pt;}
.ls12_c00426{letter-spacing:-0.012800pt;}
.ls1f_c00426{letter-spacing:-0.010688pt;}
.ls19_c00426{letter-spacing:-0.006400pt;}
.ls20_c00426{letter-spacing:-0.005344pt;}
.ls17_c00426{letter-spacing:0.000000pt;}
.ls7_c00426{letter-spacing:0.005344pt;}
.ls1d_c00426{letter-spacing:0.006400pt;}
.ls9_c00426{letter-spacing:0.012768pt;}
.ls2_c00426{letter-spacing:0.012800pt;}
.ls3_c00426{letter-spacing:0.019200pt;}
.lsd_c00426{letter-spacing:0.021280pt;}
.lsb_c00426{letter-spacing:0.025536pt;}
.ls1c_c00426{letter-spacing:0.025600pt;}
.lsf_c00426{letter-spacing:0.029792pt;}
.ls4_c00426{letter-spacing:0.032000pt;}
.ls5_c00426{letter-spacing:0.032064pt;}
.lsc_c00426{letter-spacing:0.034048pt;}
.ls8_c00426{letter-spacing:0.037408pt;}
.lse_c00426{letter-spacing:0.038304pt;}
.ls10_c00426{letter-spacing:0.042560pt;}
.ls0_c00426{letter-spacing:0.042752pt;}
.ls15_c00426{letter-spacing:0.048672pt;}
.ls6_c00426{letter-spacing:0.053440pt;}
.ls16_c00426{letter-spacing:0.083200pt;}
.lsa_c00426{letter-spacing:0.092480pt;}
.ls25_c00426{letter-spacing:0.317952pt;}
.ls13_c00426{letter-spacing:18.560000pt;}
.ls1_c00426{letter-spacing:1077.440000pt;}
.ws1_c00426{word-spacing:-9.925632pt;}
.ws0_c00426{word-spacing:-9.408672pt;}
.ws2c_c00426{word-spacing:-0.160320pt;}
.ws36_c00426{word-spacing:-0.025536pt;}
.ws31_c00426{word-spacing:-0.017024pt;}
.ws2f_c00426{word-spacing:-0.012768pt;}
.ws30_c00426{word-spacing:-0.008512pt;}
.ws1c_c00426{word-spacing:-0.006400pt;}
.ws33_c00426{word-spacing:-0.004256pt;}
.ws3_c00426{word-spacing:0.000000pt;}
.ws32_c00426{word-spacing:0.004256pt;}
.ws5_c00426{word-spacing:0.012800pt;}
.ws2_c00426{word-spacing:0.037408pt;}
.ws24_c00426{word-spacing:0.042752pt;}
.ws25_c00426{word-spacing:0.085504pt;}
.ws6_c00426{word-spacing:0.089600pt;}
.ws2b_c00426{word-spacing:0.096192pt;}
.ws18_c00426{word-spacing:0.332800pt;}
.wse_c00426{word-spacing:0.345600pt;}
.ws1a_c00426{word-spacing:0.390400pt;}
.wsf_c00426{word-spacing:0.396800pt;}
.ws19_c00426{word-spacing:0.435200pt;}
.ws1d_c00426{word-spacing:0.999328pt;}
.ws1e_c00426{word-spacing:1.010016pt;}
.ws22_c00426{word-spacing:2.634592pt;}
.ws23_c00426{word-spacing:2.639936pt;}
.wsa_c00426{word-spacing:2.867200pt;}
.ws13_c00426{word-spacing:2.892800pt;}
.ws1b_c00426{word-spacing:2.899200pt;}
.ws9_c00426{word-spacing:2.924800pt;}
.ws2e_c00426{word-spacing:3.187744pt;}
.ws2d_c00426{word-spacing:3.204768pt;}
.ws16_c00426{word-spacing:3.385600pt;}
.ws15_c00426{word-spacing:3.539200pt;}
.ws20_c00426{word-spacing:4.825632pt;}
.ws21_c00426{word-spacing:4.889760pt;}
.ws1f_c00426{word-spacing:4.900448pt;}
.ws17_c00426{word-spacing:5.465600pt;}
.ws27_c00426{word-spacing:5.477600pt;}
.ws28_c00426{word-spacing:5.531040pt;}
.ws29_c00426{word-spacing:5.552416pt;}
.ws2a_c00426{word-spacing:5.579136pt;}
.ws35_c00426{word-spacing:7.975744pt;}
.ws34_c00426{word-spacing:7.988512pt;}
.wsd_c00426{word-spacing:8.857600pt;}
.wsc_c00426{word-spacing:8.979200pt;}
.ws26_c00426{word-spacing:9.047392pt;}
.ws11_c00426{word-spacing:11.846400pt;}
.ws10_c00426{word-spacing:11.878400pt;}
.ws8_c00426{word-spacing:13.132800pt;}
.ws7_c00426{word-spacing:13.145600pt;}
.wsb_c00426{word-spacing:14.732800pt;}
.ws4_c00426{word-spacing:18.675200pt;}
.ws14_c00426{word-spacing:19.219200pt;}
.ws12_c00426{word-spacing:28.505600pt;}
._2_c00426{margin-left:-19.302400pt;}
._1_c00426{margin-left:-18.278400pt;}
._0_c00426{margin-left:-1.175680pt;}
._3_c00426{width:0.960000pt;}
._4_c00426{width:3.498752pt;}
.fs5_c00426{font-size:34.560000pt;}
.fs3_c00426{font-size:37.440000pt;}
.fs4_c00426{font-size:42.560000pt;}
.fs2_c00426{font-size:48.000000pt;}
.fs0_c00426{font-size:53.440000pt;}
.fs1_c00426{font-size:64.000000pt;}
.y0_c00426{bottom:0.000000pt;}
.y2_c00426{bottom:51.067067pt;}
.y28_c00426{bottom:101.065307pt;}
.y27_c00426{bottom:117.392800pt;}
.y26_c00426{bottom:133.629440pt;}
.y25_c00426{bottom:145.865440pt;}
.y24_c00426{bottom:162.192667pt;}
.y23_c00426{bottom:178.429307pt;}
.y22_c00426{bottom:194.665947pt;}
.y21_c00426{bottom:206.987067pt;}
.y20_c00426{bottom:220.507067pt;}
.y1f_c00426{bottom:238.907067pt;}
.y1e_c00426{bottom:257.307067pt;}
.y1d_c00426{bottom:298.244027pt;}
.y1c_c00426{bottom:313.287387pt;}
.y1b_c00426{bottom:328.250587pt;}
.y1a_c00426{bottom:343.293947pt;}
.y19_c00426{bottom:358.257147pt;}
.y18_c00426{bottom:373.300507pt;}
.y17_c00426{bottom:388.263707pt;}
.y16_c00426{bottom:403.307067pt;}
.y15_c00426{bottom:439.547067pt;}
.y14_c00426{bottom:470.187067pt;}
.y13_c00426{bottom:500.747067pt;}
.y12_c00426{bottom:531.387067pt;}
.y11_c00426{bottom:561.947067pt;}
.y10_c00426{bottom:600.587067pt;}
.yf_c00426{bottom:631.147067pt;}
.ye_c00426{bottom:661.787067pt;}
.yd_c00426{bottom:692.347067pt;}
.yc_c00426{bottom:730.987067pt;}
.yb_c00426{bottom:761.547067pt;}
.ya_c00426{bottom:792.187067pt;}
.y9_c00426{bottom:822.747067pt;}
.y8_c00426{bottom:853.387067pt;}
.y7_c00426{bottom:883.947067pt;}
.y6_c00426{bottom:914.587067pt;}
.y5_c00426{bottom:945.147067pt;}
.y4_c00426{bottom:983.787067pt;}
.y3_c00426{bottom:1014.347067pt;}
.y1_c00426{bottom:1063.867067pt;}
.h5_c00426{height:42.656250pt;}
.h6_c00426{height:44.388750pt;}
.h1_c00426{height:44.724687pt;}
.h3_c00426{height:53.562500pt;}
.h4_c00426{height:57.894063pt;}
.h2_c00426{height:64.142500pt;}
.h0_c00426{height:1122.666667pt;}
.w1_c00426{width:793.333333pt;}
.w0_c00426{width:793.626667pt;}
.x0_c00426{left:0.000000pt;}
.x1_c00426{left:113.440000pt;}
.x3_c00426{left:137.438240pt;}
.x2_c00426{left:160.719867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_024a7d697bf2cd39a5122a50.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_a0cfc326af914efefda45491.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00427;src:url('chunks/assets/font_2d8c262e6f4a24c7b5212a4f.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;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_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);}
.v3_c00427{vertical-align:-15.120600px;}
.v0_c00427{vertical-align:0.000000px;}
.v1_c00427{vertical-align:15.120000px;}
.v2_c00427{vertical-align:29.880000px;}
.lsc_c00427{letter-spacing:-0.151200px;}
.lsa_c00427{letter-spacing:-0.144288px;}
.ls15_c00427{letter-spacing:-0.090180px;}
.ls13_c00427{letter-spacing:-0.050400px;}
.lsd_c00427{letter-spacing:-0.048096px;}
.ls18_c00427{letter-spacing:-0.043200px;}
.ls1a_c00427{letter-spacing:-0.036000px;}
.ls19_c00427{letter-spacing:-0.028800px;}
.ls17_c00427{letter-spacing:-0.024048px;}
.ls10_c00427{letter-spacing:-0.021600px;}
.ls12_c00427{letter-spacing:-0.014400px;}
.ls16_c00427{letter-spacing:-0.012024px;}
.ls11_c00427{letter-spacing:-0.007200px;}
.ls1c_c00427{letter-spacing:-0.003888px;}
.lsb_c00427{letter-spacing:0.000000px;}
.ls8_c00427{letter-spacing:0.003888px;}
.ls5_c00427{letter-spacing:0.007200px;}
.ls1d_c00427{letter-spacing:0.009576px;}
.ls2_c00427{letter-spacing:0.012024px;}
.ls7_c00427{letter-spacing:0.014364px;}
.ls3_c00427{letter-spacing:0.018036px;}
.ls6_c00427{letter-spacing:0.028728px;}
.ls4_c00427{letter-spacing:0.030060px;}
.ls1_c00427{letter-spacing:0.036072px;}
.ls0_c00427{letter-spacing:0.048096px;}
.ls14_c00427{letter-spacing:0.054756px;}
.ls1b_c00427{letter-spacing:0.093600px;}
.ls9_c00427{letter-spacing:0.104040px;}
.lse_c00427{letter-spacing:0.136080px;}
.lsf_c00427{letter-spacing:0.168336px;}
.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;}
}
.ws2_c00427{word-spacing:-10.804752px;}
.ws1_c00427{word-spacing:-10.584756px;}
.ws0_c00427{word-spacing:-9.856080px;}
.ws4_c00427{word-spacing:-0.126252px;}
.ws27_c00427{word-spacing:-0.009576px;}
.ws29_c00427{word-spacing:-0.007776px;}
.ws5_c00427{word-spacing:0.000000px;}
.ws28_c00427{word-spacing:0.004788px;}
.ws2a_c00427{word-spacing:0.009576px;}
.ws18_c00427{word-spacing:0.021600px;}
.ws1d_c00427{word-spacing:0.036000px;}
.ws3_c00427{word-spacing:0.042084px;}
.ws16_c00427{word-spacing:0.060120px;}
.wsc_c00427{word-spacing:0.100800px;}
.wsf_c00427{word-spacing:0.102204px;}
.ws6_c00427{word-spacing:0.138276px;}
.wse_c00427{word-spacing:0.180360px;}
.ws14_c00427{word-spacing:2.212416px;}
.ws1a_c00427{word-spacing:2.541600px;}
.ws13_c00427{word-spacing:2.933856px;}
.ws12_c00427{word-spacing:2.957904px;}
.ws1f_c00427{word-spacing:3.981600px;}
.ws9_c00427{word-spacing:4.262400px;}
.ws8_c00427{word-spacing:4.327200px;}
.ws24_c00427{word-spacing:4.680000px;}
.ws23_c00427{word-spacing:4.759200px;}
.ws15_c00427{word-spacing:5.110200px;}
.ws10_c00427{word-spacing:5.140260px;}
.ws11_c00427{word-spacing:5.152284px;}
.wsb_c00427{word-spacing:5.313600px;}
.wsa_c00427{word-spacing:5.450400px;}
.ws20_c00427{word-spacing:6.112800px;}
.ws21_c00427{word-spacing:6.256800px;}
.ws1b_c00427{word-spacing:9.367200px;}
.ws1c_c00427{word-spacing:9.388800px;}
.ws22_c00427{word-spacing:11.174400px;}
.ws19_c00427{word-spacing:12.600000px;}
.ws17_c00427{word-spacing:17.647200px;}
.ws7_c00427{word-spacing:17.661600px;}
.ws25_c00427{word-spacing:18.360000px;}
.ws26_c00427{word-spacing:18.367200px;}
.ws1e_c00427{word-spacing:20.952000px;}
.wsd_c00427{word-spacing:22.015944px;}
._0_c00427{margin-left:-1.142280px;}
._1_c00427{width:1.292580px;}
.fc0_c00427{color:rgb(0,0,0);}
.fs3_c00427{font-size:38.880000px;}
.fs4_c00427{font-size:42.120000px;}
.fs5_c00427{font-size:47.880000px;}
.fs2_c00427{font-size:54.000000px;}
.fs0_c00427{font-size:60.120000px;}
.fs1_c00427{font-size:72.000000px;}
.y0_c00427{bottom:0.000000px;}
.y2_c00427{bottom:57.450450px;}
.y3_c00427{bottom:61.410450px;}
.y25_c00427{bottom:113.706030px;}
.y24_c00427{bottom:132.068010px;}
.y23_c00427{bottom:150.334230px;}
.y22_c00427{bottom:168.600450px;}
.y21_c00427{bottom:183.810600px;}
.y20_c00427{bottom:204.510600px;}
.y1f_c00427{bottom:225.210450px;}
.y1e_c00427{bottom:287.490450px;}
.y1d_c00427{bottom:339.960450px;}
.y1c_c00427{bottom:392.340450px;}
.y1b_c00427{bottom:426.810450px;}
.y1a_c00427{bottom:461.190450px;}
.y19_c00427{bottom:495.660450px;}
.y18_c00427{bottom:530.040450px;}
.y17_c00427{bottom:564.510450px;}
.y16_c00427{bottom:598.890450px;}
.y15_c00427{bottom:642.360450px;}
.y14_c00427{bottom:676.740450px;}
.y13_c00427{bottom:711.210450px;}
.y12_c00427{bottom:745.590450px;}
.y11_c00427{bottom:789.060450px;}
.y10_c00427{bottom:823.440450px;}
.yf_c00427{bottom:860.948310px;}
.ye_c00427{bottom:877.781910px;}
.yd_c00427{bottom:894.705690px;}
.yc_c00427{bottom:911.539290px;}
.yb_c00427{bottom:928.463070px;}
.ya_c00427{bottom:945.296670px;}
.y9_c00427{bottom:962.220450px;}
.y8_c00427{bottom:1002.990450px;}
.y7_c00427{bottom:1037.460450px;}
.y6_c00427{bottom:1071.840450px;}
.y5_c00427{bottom:1106.310450px;}
.y4_c00427{bottom:1143.750450px;}
.y1_c00427{bottom:1196.940450px;}
.h2_c00427{height:47.988281px;}
.h7_c00427{height:47.988881px;}
.h8_c00427{height:49.937344px;}
.h1_c00427{height:50.315273px;}
.h6_c00427{height:50.403833px;}
.h3_c00427{height:56.320312px;}
.h4_c00427{height:60.257812px;}
.h5_c00427{height:65.130820px;}
.h0_c00427{height:1263.000000px;}
.w1_c00427{width:892.500000px;}
.w0_c00427{width:892.830000px;}
.x0_c00427{left:0.000000px;}
.x5_c00427{left:127.620000px;}
.x6_c00427{left:154.440000px;}
.x4_c00427{left:180.810000px;}
.x1_c00427{left:211.500000px;}
.x3_c00427{left:435.240000px;}
.x2_c00427{left:446.490000px;}
@media print{
.v3_c00427{vertical-align:-13.440533pt;}
.v0_c00427{vertical-align:0.000000pt;}
.v1_c00427{vertical-align:13.440000pt;}
.v2_c00427{vertical-align:26.560000pt;}
.lsc_c00427{letter-spacing:-0.134400pt;}
.lsa_c00427{letter-spacing:-0.128256pt;}
.ls15_c00427{letter-spacing:-0.080160pt;}
.ls13_c00427{letter-spacing:-0.044800pt;}
.lsd_c00427{letter-spacing:-0.042752pt;}
.ls18_c00427{letter-spacing:-0.038400pt;}
.ls1a_c00427{letter-spacing:-0.032000pt;}
.ls19_c00427{letter-spacing:-0.025600pt;}
.ls17_c00427{letter-spacing:-0.021376pt;}
.ls10_c00427{letter-spacing:-0.019200pt;}
.ls12_c00427{letter-spacing:-0.012800pt;}
.ls16_c00427{letter-spacing:-0.010688pt;}
.ls11_c00427{letter-spacing:-0.006400pt;}
.ls1c_c00427{letter-spacing:-0.003456pt;}
.lsb_c00427{letter-spacing:0.000000pt;}
.ls8_c00427{letter-spacing:0.003456pt;}
.ls5_c00427{letter-spacing:0.006400pt;}
.ls1d_c00427{letter-spacing:0.008512pt;}
.ls2_c00427{letter-spacing:0.010688pt;}
.ls7_c00427{letter-spacing:0.012768pt;}
.ls3_c00427{letter-spacing:0.016032pt;}
.ls6_c00427{letter-spacing:0.025536pt;}
.ls4_c00427{letter-spacing:0.026720pt;}
.ls1_c00427{letter-spacing:0.032064pt;}
.ls0_c00427{letter-spacing:0.042752pt;}
.ls14_c00427{letter-spacing:0.048672pt;}
.ls1b_c00427{letter-spacing:0.083200pt;}
.ls9_c00427{letter-spacing:0.092480pt;}
.lse_c00427{letter-spacing:0.120960pt;}
.lsf_c00427{letter-spacing:0.149632pt;}
.ws2_c00427{word-spacing:-9.604224pt;}
.ws1_c00427{word-spacing:-9.408672pt;}
.ws0_c00427{word-spacing:-8.760960pt;}
.ws4_c00427{word-spacing:-0.112224pt;}
.ws27_c00427{word-spacing:-0.008512pt;}
.ws29_c00427{word-spacing:-0.006912pt;}
.ws5_c00427{word-spacing:0.000000pt;}
.ws28_c00427{word-spacing:0.004256pt;}
.ws2a_c00427{word-spacing:0.008512pt;}
.ws18_c00427{word-spacing:0.019200pt;}
.ws1d_c00427{word-spacing:0.032000pt;}
.ws3_c00427{word-spacing:0.037408pt;}
.ws16_c00427{word-spacing:0.053440pt;}
.wsc_c00427{word-spacing:0.089600pt;}
.wsf_c00427{word-spacing:0.090848pt;}
.ws6_c00427{word-spacing:0.122912pt;}
.wse_c00427{word-spacing:0.160320pt;}
.ws14_c00427{word-spacing:1.966592pt;}
.ws1a_c00427{word-spacing:2.259200pt;}
.ws13_c00427{word-spacing:2.607872pt;}
.ws12_c00427{word-spacing:2.629248pt;}
.ws1f_c00427{word-spacing:3.539200pt;}
.ws9_c00427{word-spacing:3.788800pt;}
.ws8_c00427{word-spacing:3.846400pt;}
.ws24_c00427{word-spacing:4.160000pt;}
.ws23_c00427{word-spacing:4.230400pt;}
.ws15_c00427{word-spacing:4.542400pt;}
.ws10_c00427{word-spacing:4.569120pt;}
.ws11_c00427{word-spacing:4.579808pt;}
.wsb_c00427{word-spacing:4.723200pt;}
.wsa_c00427{word-spacing:4.844800pt;}
.ws20_c00427{word-spacing:5.433600pt;}
.ws21_c00427{word-spacing:5.561600pt;}
.ws1b_c00427{word-spacing:8.326400pt;}
.ws1c_c00427{word-spacing:8.345600pt;}
.ws22_c00427{word-spacing:9.932800pt;}
.ws19_c00427{word-spacing:11.200000pt;}
.ws17_c00427{word-spacing:15.686400pt;}
.ws7_c00427{word-spacing:15.699200pt;}
.ws25_c00427{word-spacing:16.320000pt;}
.ws26_c00427{word-spacing:16.326400pt;}
.ws1e_c00427{word-spacing:18.624000pt;}
.wsd_c00427{word-spacing:19.569728pt;}
._0_c00427{margin-left:-1.015360pt;}
._1_c00427{width:1.148960pt;}
.fs3_c00427{font-size:34.560000pt;}
.fs4_c00427{font-size:37.440000pt;}
.fs5_c00427{font-size:42.560000pt;}
.fs2_c00427{font-size:48.000000pt;}
.fs0_c00427{font-size:53.440000pt;}
.fs1_c00427{font-size:64.000000pt;}
.y0_c00427{bottom:0.000000pt;}
.y2_c00427{bottom:51.067067pt;}
.y3_c00427{bottom:54.587067pt;}
.y25_c00427{bottom:101.072027pt;}
.y24_c00427{bottom:117.393787pt;}
.y23_c00427{bottom:133.630427pt;}
.y22_c00427{bottom:149.867067pt;}
.y21_c00427{bottom:163.387200pt;}
.y20_c00427{bottom:181.787200pt;}
.y1f_c00427{bottom:200.187067pt;}
.y1e_c00427{bottom:255.547067pt;}
.y1d_c00427{bottom:302.187067pt;}
.y1c_c00427{bottom:348.747067pt;}
.y1b_c00427{bottom:379.387067pt;}
.y1a_c00427{bottom:409.947067pt;}
.y19_c00427{bottom:440.587067pt;}
.y18_c00427{bottom:471.147067pt;}
.y17_c00427{bottom:501.787067pt;}
.y16_c00427{bottom:532.347067pt;}
.y15_c00427{bottom:570.987067pt;}
.y14_c00427{bottom:601.547067pt;}
.y13_c00427{bottom:632.187067pt;}
.y12_c00427{bottom:662.747067pt;}
.y11_c00427{bottom:701.387067pt;}
.y10_c00427{bottom:731.947067pt;}
.yf_c00427{bottom:765.287387pt;}
.ye_c00427{bottom:780.250587pt;}
.yd_c00427{bottom:795.293947pt;}
.yc_c00427{bottom:810.257147pt;}
.yb_c00427{bottom:825.300507pt;}
.ya_c00427{bottom:840.263707pt;}
.y9_c00427{bottom:855.307067pt;}
.y8_c00427{bottom:891.547067pt;}
.y7_c00427{bottom:922.187067pt;}
.y6_c00427{bottom:952.747067pt;}
.y5_c00427{bottom:983.387067pt;}
.y4_c00427{bottom:1016.667067pt;}
.y1_c00427{bottom:1063.947067pt;}
.h2_c00427{height:42.656250pt;}
.h7_c00427{height:42.656783pt;}
.h8_c00427{height:44.388750pt;}
.h1_c00427{height:44.724687pt;}
.h6_c00427{height:44.803408pt;}
.h3_c00427{height:50.062500pt;}
.h4_c00427{height:53.562500pt;}
.h5_c00427{height:57.894063pt;}
.h0_c00427{height:1122.666667pt;}
.w1_c00427{width:793.333333pt;}
.w0_c00427{width:793.626667pt;}
.x0_c00427{left:0.000000pt;}
.x5_c00427{left:113.440000pt;}
.x6_c00427{left:137.280000pt;}
.x4_c00427{left:160.720000pt;}
.x1_c00427{left:188.000000pt;}
.x3_c00427{left:386.880000pt;}
.x2_c00427{left:396.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_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_8d79788d964147fd48808446.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00428;src:url('chunks/assets/font_344b21ff045932625484e3ad.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00428;src:url('chunks/assets/font_490ea765da33aba4fa7dd927.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00428;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00428{font-family:ff5_c00428;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_c00428;src:url('chunks/assets/font_8343dd46d579c52fdf447750.woff2')format("woff");}.ff6_c00428{font-family:ff6_c00428;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_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;}
.v1_c00428{vertical-align:15.840000px;}
.v2_c00428{vertical-align:29.880000px;}
.ls11_c00428{letter-spacing:-0.151200px;}
.ls20_c00428{letter-spacing:-0.093744px;}
.ls12_c00428{letter-spacing:-0.075492px;}
.ls1f_c00428{letter-spacing:-0.054684px;}
.ls19_c00428{letter-spacing:-0.036000px;}
.ls1c_c00428{letter-spacing:-0.028800px;}
.ls1a_c00428{letter-spacing:-0.021600px;}
.ls16_c00428{letter-spacing:-0.014400px;}
.ls24_c00428{letter-spacing:-0.011664px;}
.ls13_c00428{letter-spacing:-0.008388px;}
.ls1d_c00428{letter-spacing:-0.007812px;}
.ls25_c00428{letter-spacing:-0.007776px;}
.ls1b_c00428{letter-spacing:-0.007200px;}
.ls29_c00428{letter-spacing:-0.004788px;}
.ls28_c00428{letter-spacing:-0.003888px;}
.ls14_c00428{letter-spacing:0.000000px;}
.lsb_c00428{letter-spacing:0.003888px;}
.ls4_c00428{letter-spacing:0.007200px;}
.lsd_c00428{letter-spacing:0.009576px;}
.ls7_c00428{letter-spacing:0.014364px;}
.ls26_c00428{letter-spacing:0.019152px;}
.ls9_c00428{letter-spacing:0.028728px;}
.ls6_c00428{letter-spacing:0.033516px;}
.ls5_c00428{letter-spacing:0.038304px;}
.ls21_c00428{letter-spacing:0.043200px;}
.lsa_c00428{letter-spacing:0.047880px;}
.ls0_c00428{letter-spacing:0.048096px;}
.ls1e_c00428{letter-spacing:0.054684px;}
.ls17_c00428{letter-spacing:0.054756px;}
.ls10_c00428{letter-spacing:0.057456px;}
.lsf_c00428{letter-spacing:0.067032px;}
.ls22_c00428{letter-spacing:0.071820px;}
.lse_c00428{letter-spacing:0.075960px;}
.ls15_c00428{letter-spacing:0.083880px;}
.ls18_c00428{letter-spacing:0.093600px;}
.lsc_c00428{letter-spacing:0.104040px;}
.ls8_c00428{letter-spacing:0.180000px;}
.ls2a_c00428{letter-spacing:0.346032px;}
.ls27_c00428{letter-spacing:0.378252px;}
.ls23_c00428{letter-spacing:0.737352px;}
.ls2_c00428{letter-spacing:17.363160px;}
.ls3_c00428{letter-spacing:83.041560px;}
.ls1_c00428{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00428{word-spacing:-20.961612px;}
.ws0_c00428{word-spacing:-20.894508px;}
.ws3_c00428{word-spacing:-19.522188px;}
.ws6_c00428{word-spacing:-11.154672px;}
.ws5_c00428{word-spacing:-10.804752px;}
.ws4_c00428{word-spacing:-10.800864px;}
.ws2_c00428{word-spacing:-10.584756px;}
.ws9_c00428{word-spacing:-0.176148px;}
.wsc_c00428{word-spacing:-0.093600px;}
.ws1d_c00428{word-spacing:-0.039060px;}
.ws2f_c00428{word-spacing:-0.028728px;}
.ws2b_c00428{word-spacing:-0.019152px;}
.ws33_c00428{word-spacing:-0.009576px;}
.ws31_c00428{word-spacing:-0.007776px;}
.ws8_c00428{word-spacing:0.000000px;}
.ws30_c00428{word-spacing:0.004788px;}
.ws32_c00428{word-spacing:0.009576px;}
.ws13_c00428{word-spacing:0.014400px;}
.ws34_c00428{word-spacing:0.023940px;}
.ws1c_c00428{word-spacing:0.028800px;}
.ws7_c00428{word-spacing:0.042084px;}
.ws26_c00428{word-spacing:0.050400px;}
.wsb_c00428{word-spacing:0.064800px;}
.wsd_c00428{word-spacing:0.360000px;}
.ws27_c00428{word-spacing:0.424800px;}
.wse_c00428{word-spacing:0.446400px;}
.ws2d_c00428{word-spacing:0.689472px;}
.ws2e_c00428{word-spacing:0.703836px;}
.ws2c_c00428{word-spacing:0.708624px;}
.ws1b_c00428{word-spacing:2.124000px;}
.ws11_c00428{word-spacing:2.181600px;}
.ws1a_c00428{word-spacing:2.188800px;}
.ws12_c00428{word-spacing:2.196000px;}
.ws14_c00428{word-spacing:2.527200px;}
.ws15_c00428{word-spacing:2.541600px;}
.ws18_c00428{word-spacing:3.549600px;}
.wsa_c00428{word-spacing:3.600000px;}
.ws23_c00428{word-spacing:3.607200px;}
.ws17_c00428{word-spacing:3.628800px;}
.ws1e_c00428{word-spacing:3.974400px;}
.ws38_c00428{word-spacing:5.027400px;}
.ws36_c00428{word-spacing:5.038848px;}
.ws35_c00428{word-spacing:5.041764px;}
.ws37_c00428{word-spacing:5.046552px;}
.ws2a_c00428{word-spacing:5.328000px;}
.ws25_c00428{word-spacing:5.342400px;}
.ws24_c00428{word-spacing:5.349600px;}
.ws29_c00428{word-spacing:5.421600px;}
.ws28_c00428{word-spacing:5.436000px;}
.ws19_c00428{word-spacing:6.141600px;}
.ws1f_c00428{word-spacing:7.516800px;}
.ws3c_c00428{word-spacing:7.517160px;}
.ws3d_c00428{word-spacing:7.541100px;}
.ws20_c00428{word-spacing:7.574400px;}
.ws3b_c00428{word-spacing:8.240148px;}
.ws39_c00428{word-spacing:8.259300px;}
.ws3a_c00428{word-spacing:8.589672px;}
.ws10_c00428{word-spacing:14.061600px;}
.wsf_c00428{word-spacing:14.076000px;}
.ws21_c00428{word-spacing:15.112800px;}
.ws22_c00428{word-spacing:15.127200px;}
.ws16_c00428{word-spacing:21.967200px;}
._0_c00428{margin-left:-1.322640px;}
._1_c00428{width:1.296000px;}
._2_c00428{width:8.953632px;}
.fc0_c00428{color:rgb(0,0,0);}
.fs7_c00428{font-size:38.880000px;}
.fs4_c00428{font-size:42.120000px;}
.fs6_c00428{font-size:47.880000px;}
.fs2_c00428{font-size:54.000000px;}
.fs0_c00428{font-size:60.120000px;}
.fs1_c00428{font-size:72.000000px;}
.fs5_c00428{font-size:78.120000px;}
.fs3_c00428{font-size:83.880000px;}
.y0_c00428{bottom:0.000000px;}
.y2_c00428{bottom:57.450450px;}
.y24_c00428{bottom:113.703690px;}
.y23_c00428{bottom:127.564950px;}
.y22_c00428{bottom:141.334950px;}
.y21_c00428{bottom:155.098620px;}
.y20_c00428{bottom:173.468730px;}
.y1f_c00428{bottom:191.734950px;}
.y1e_c00428{bottom:205.502250px;}
.y1d_c00428{bottom:223.864230px;}
.y1c_c00428{bottom:242.130450px;}
.y1b_c00428{bottom:257.340450px;}
.y1a_c00428{bottom:278.040450px;}
.y19_c00428{bottom:298.740450px;}
.y18_c00428{bottom:337.620450px;}
.y17_c00428{bottom:372.090450px;}
.y16_c00428{bottom:415.470450px;}
.y15_c00428{bottom:449.940450px;}
.y14_c00428{bottom:484.320450px;}
.y13_c00428{bottom:518.790450px;}
.y12_c00428{bottom:553.170450px;}
.y11_c00428{bottom:587.640450px;}
.y10_c00428{bottom:632.640450px;}
.yf_c00428{bottom:695.370450px;}
.ye_c00428{bottom:729.750450px;}
.yd_c00428{bottom:764.220450px;}
.yc_c00428{bottom:798.600450px;}
.yb_c00428{bottom:833.070450px;}
.ya_c00428{bottom:867.450450px;}
.y9_c00428{bottom:910.920450px;}
.y8_c00428{bottom:945.300450px;}
.y7_c00428{bottom:979.770450px;}
.y6_c00428{bottom:1014.150450px;}
.y5_c00428{bottom:1057.620450px;}
.y4_c00428{bottom:1092.000450px;}
.y3_c00428{bottom:1138.530450px;}
.y1_c00428{bottom:1196.850450px;}
.h7_c00428{height:47.988281px;}
.h8_c00428{height:49.937344px;}
.h9_c00428{height:49.944664px;}
.h1_c00428{height:50.315273px;}
.h4_c00428{height:60.257812px;}
.h5_c00428{height:65.130820px;}
.h2_c00428{height:72.160312px;}
.h6_c00428{height:81.476719px;}
.h3_c00428{height:87.484219px;}
.h0_c00428{height:1263.000000px;}
.w1_c00428{width:892.500000px;}
.w0_c00428{width:892.830000px;}
.x0_c00428{left:0.000000px;}
.x1_c00428{left:127.620000px;}
.x3_c00428{left:141.116310px;}
.x2_c00428{left:180.810000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.v1_c00428{vertical-align:14.080000pt;}
.v2_c00428{vertical-align:26.560000pt;}
.ls11_c00428{letter-spacing:-0.134400pt;}
.ls20_c00428{letter-spacing:-0.083328pt;}
.ls12_c00428{letter-spacing:-0.067104pt;}
.ls1f_c00428{letter-spacing:-0.048608pt;}
.ls19_c00428{letter-spacing:-0.032000pt;}
.ls1c_c00428{letter-spacing:-0.025600pt;}
.ls1a_c00428{letter-spacing:-0.019200pt;}
.ls16_c00428{letter-spacing:-0.012800pt;}
.ls24_c00428{letter-spacing:-0.010368pt;}
.ls13_c00428{letter-spacing:-0.007456pt;}
.ls1d_c00428{letter-spacing:-0.006944pt;}
.ls25_c00428{letter-spacing:-0.006912pt;}
.ls1b_c00428{letter-spacing:-0.006400pt;}
.ls29_c00428{letter-spacing:-0.004256pt;}
.ls28_c00428{letter-spacing:-0.003456pt;}
.ls14_c00428{letter-spacing:0.000000pt;}
.lsb_c00428{letter-spacing:0.003456pt;}
.ls4_c00428{letter-spacing:0.006400pt;}
.lsd_c00428{letter-spacing:0.008512pt;}
.ls7_c00428{letter-spacing:0.012768pt;}
.ls26_c00428{letter-spacing:0.017024pt;}
.ls9_c00428{letter-spacing:0.025536pt;}
.ls6_c00428{letter-spacing:0.029792pt;}
.ls5_c00428{letter-spacing:0.034048pt;}
.ls21_c00428{letter-spacing:0.038400pt;}
.lsa_c00428{letter-spacing:0.042560pt;}
.ls0_c00428{letter-spacing:0.042752pt;}
.ls1e_c00428{letter-spacing:0.048608pt;}
.ls17_c00428{letter-spacing:0.048672pt;}
.ls10_c00428{letter-spacing:0.051072pt;}
.lsf_c00428{letter-spacing:0.059584pt;}
.ls22_c00428{letter-spacing:0.063840pt;}
.lse_c00428{letter-spacing:0.067520pt;}
.ls15_c00428{letter-spacing:0.074560pt;}
.ls18_c00428{letter-spacing:0.083200pt;}
.lsc_c00428{letter-spacing:0.092480pt;}
.ls8_c00428{letter-spacing:0.160000pt;}
.ls2a_c00428{letter-spacing:0.307584pt;}
.ls27_c00428{letter-spacing:0.336224pt;}
.ls23_c00428{letter-spacing:0.655424pt;}
.ls2_c00428{letter-spacing:15.433920pt;}
.ls3_c00428{letter-spacing:73.814720pt;}
.ls1_c00428{letter-spacing:1077.440000pt;}
.ws1_c00428{word-spacing:-18.632544pt;}
.ws0_c00428{word-spacing:-18.572896pt;}
.ws3_c00428{word-spacing:-17.353056pt;}
.ws6_c00428{word-spacing:-9.915264pt;}
.ws5_c00428{word-spacing:-9.604224pt;}
.ws4_c00428{word-spacing:-9.600768pt;}
.ws2_c00428{word-spacing:-9.408672pt;}
.ws9_c00428{word-spacing:-0.156576pt;}
.wsc_c00428{word-spacing:-0.083200pt;}
.ws1d_c00428{word-spacing:-0.034720pt;}
.ws2f_c00428{word-spacing:-0.025536pt;}
.ws2b_c00428{word-spacing:-0.017024pt;}
.ws33_c00428{word-spacing:-0.008512pt;}
.ws31_c00428{word-spacing:-0.006912pt;}
.ws8_c00428{word-spacing:0.000000pt;}
.ws30_c00428{word-spacing:0.004256pt;}
.ws32_c00428{word-spacing:0.008512pt;}
.ws13_c00428{word-spacing:0.012800pt;}
.ws34_c00428{word-spacing:0.021280pt;}
.ws1c_c00428{word-spacing:0.025600pt;}
.ws7_c00428{word-spacing:0.037408pt;}
.ws26_c00428{word-spacing:0.044800pt;}
.wsb_c00428{word-spacing:0.057600pt;}
.wsd_c00428{word-spacing:0.320000pt;}
.ws27_c00428{word-spacing:0.377600pt;}
.wse_c00428{word-spacing:0.396800pt;}
.ws2d_c00428{word-spacing:0.612864pt;}
.ws2e_c00428{word-spacing:0.625632pt;}
.ws2c_c00428{word-spacing:0.629888pt;}
.ws1b_c00428{word-spacing:1.888000pt;}
.ws11_c00428{word-spacing:1.939200pt;}
.ws1a_c00428{word-spacing:1.945600pt;}
.ws12_c00428{word-spacing:1.952000pt;}
.ws14_c00428{word-spacing:2.246400pt;}
.ws15_c00428{word-spacing:2.259200pt;}
.ws18_c00428{word-spacing:3.155200pt;}
.wsa_c00428{word-spacing:3.200000pt;}
.ws23_c00428{word-spacing:3.206400pt;}
.ws17_c00428{word-spacing:3.225600pt;}
.ws1e_c00428{word-spacing:3.532800pt;}
.ws38_c00428{word-spacing:4.468800pt;}
.ws36_c00428{word-spacing:4.478976pt;}
.ws35_c00428{word-spacing:4.481568pt;}
.ws37_c00428{word-spacing:4.485824pt;}
.ws2a_c00428{word-spacing:4.736000pt;}
.ws25_c00428{word-spacing:4.748800pt;}
.ws24_c00428{word-spacing:4.755200pt;}
.ws29_c00428{word-spacing:4.819200pt;}
.ws28_c00428{word-spacing:4.832000pt;}
.ws19_c00428{word-spacing:5.459200pt;}
.ws1f_c00428{word-spacing:6.681600pt;}
.ws3c_c00428{word-spacing:6.681920pt;}
.ws3d_c00428{word-spacing:6.703200pt;}
.ws20_c00428{word-spacing:6.732800pt;}
.ws3b_c00428{word-spacing:7.324576pt;}
.ws39_c00428{word-spacing:7.341600pt;}
.ws3a_c00428{word-spacing:7.635264pt;}
.ws10_c00428{word-spacing:12.499200pt;}
.wsf_c00428{word-spacing:12.512000pt;}
.ws21_c00428{word-spacing:13.433600pt;}
.ws22_c00428{word-spacing:13.446400pt;}
.ws16_c00428{word-spacing:19.526400pt;}
._0_c00428{margin-left:-1.175680pt;}
._1_c00428{width:1.152000pt;}
._2_c00428{width:7.958784pt;}
.fs7_c00428{font-size:34.560000pt;}
.fs4_c00428{font-size:37.440000pt;}
.fs6_c00428{font-size:42.560000pt;}
.fs2_c00428{font-size:48.000000pt;}
.fs0_c00428{font-size:53.440000pt;}
.fs1_c00428{font-size:64.000000pt;}
.fs5_c00428{font-size:69.440000pt;}
.fs3_c00428{font-size:74.560000pt;}
.y0_c00428{bottom:0.000000pt;}
.y2_c00428{bottom:51.067067pt;}
.y24_c00428{bottom:101.069947pt;}
.y23_c00428{bottom:113.391067pt;}
.y22_c00428{bottom:125.631067pt;}
.y21_c00428{bottom:137.865440pt;}
.y20_c00428{bottom:154.194427pt;}
.y1f_c00428{bottom:170.431067pt;}
.y1e_c00428{bottom:182.668667pt;}
.y1d_c00428{bottom:198.990427pt;}
.y1c_c00428{bottom:215.227067pt;}
.y1b_c00428{bottom:228.747067pt;}
.y1a_c00428{bottom:247.147067pt;}
.y19_c00428{bottom:265.547067pt;}
.y18_c00428{bottom:300.107067pt;}
.y17_c00428{bottom:330.747067pt;}
.y16_c00428{bottom:369.307067pt;}
.y15_c00428{bottom:399.947067pt;}
.y14_c00428{bottom:430.507067pt;}
.y13_c00428{bottom:461.147067pt;}
.y12_c00428{bottom:491.707067pt;}
.y11_c00428{bottom:522.347067pt;}
.y10_c00428{bottom:562.347067pt;}
.yf_c00428{bottom:618.107067pt;}
.ye_c00428{bottom:648.667067pt;}
.yd_c00428{bottom:679.307067pt;}
.yc_c00428{bottom:709.867067pt;}
.yb_c00428{bottom:740.507067pt;}
.ya_c00428{bottom:771.067067pt;}
.y9_c00428{bottom:809.707067pt;}
.y8_c00428{bottom:840.267067pt;}
.y7_c00428{bottom:870.907067pt;}
.y6_c00428{bottom:901.467067pt;}
.y5_c00428{bottom:940.107067pt;}
.y4_c00428{bottom:970.667067pt;}
.y3_c00428{bottom:1012.027067pt;}
.y1_c00428{bottom:1063.867067pt;}
.h7_c00428{height:42.656250pt;}
.h8_c00428{height:44.388750pt;}
.h9_c00428{height:44.395257pt;}
.h1_c00428{height:44.724687pt;}
.h4_c00428{height:53.562500pt;}
.h5_c00428{height:57.894062pt;}
.h2_c00428{height:64.142500pt;}
.h6_c00428{height:72.423750pt;}
.h3_c00428{height:77.763750pt;}
.h0_c00428{height:1122.666667pt;}
.w1_c00428{width:793.333333pt;}
.w0_c00428{width:793.626667pt;}
.x0_c00428{left:0.000000pt;}
.x1_c00428{left:113.440000pt;}
.x3_c00428{left:125.436720pt;}
.x2_c00428{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_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_cb2e43cb7d9ffd94c780736b.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00429;src:url('chunks/assets/font_acbd72fa7fff083e03b39a84.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00429;src:url('chunks/assets/font_73daa8f670fba3f6b26f43b5.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.v1_c00429{vertical-align:29.880000px;}
.ls18_c00429{letter-spacing:-0.266400px;}
.ls12_c00429{letter-spacing:-0.151200px;}
.ls10_c00429{letter-spacing:-0.144288px;}
.ls19_c00429{letter-spacing:-0.043200px;}
.ls1b_c00429{letter-spacing:-0.036000px;}
.ls13_c00429{letter-spacing:-0.028800px;}
.ls17_c00429{letter-spacing:-0.021600px;}
.ls14_c00429{letter-spacing:-0.014400px;}
.ls1f_c00429{letter-spacing:-0.007776px;}
.ls1a_c00429{letter-spacing:-0.007200px;}
.ls1d_c00429{letter-spacing:-0.004788px;}
.ls1c_c00429{letter-spacing:-0.003888px;}
.ls11_c00429{letter-spacing:0.000000px;}
.ls5_c00429{letter-spacing:0.003888px;}
.ls1_c00429{letter-spacing:0.007200px;}
.ls9_c00429{letter-spacing:0.009576px;}
.ls4_c00429{letter-spacing:0.014364px;}
.ls3_c00429{letter-spacing:0.014400px;}
.ls8_c00429{letter-spacing:0.023940px;}
.ls7_c00429{letter-spacing:0.028728px;}
.lsf_c00429{letter-spacing:0.038304px;}
.ls0_c00429{letter-spacing:0.048096px;}
.ls15_c00429{letter-spacing:0.054756px;}
.lsc_c00429{letter-spacing:0.057456px;}
.lsa_c00429{letter-spacing:0.075960px;}
.lse_c00429{letter-spacing:0.086184px;}
.ls16_c00429{letter-spacing:0.093600px;}
.ls6_c00429{letter-spacing:0.104040px;}
.ls2_c00429{letter-spacing:0.129600px;}
.lsb_c00429{letter-spacing:0.134064px;}
.ls21_c00429{letter-spacing:0.346032px;}
.ls1e_c00429{letter-spacing:0.357696px;}
.ls20_c00429{letter-spacing:0.378252px;}
.lsd_c00429{letter-spacing:0.435960px;}
.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;}
}
.ws3_c00429{word-spacing:-13.320216px;}
.ws4_c00429{word-spacing:-13.310640px;}
.ws2_c00429{word-spacing:-11.166336px;}
.ws7_c00429{word-spacing:-11.154672px;}
.ws6_c00429{word-spacing:-10.808640px;}
.ws1_c00429{word-spacing:-10.804752px;}
.ws5_c00429{word-spacing:-10.800864px;}
.ws0_c00429{word-spacing:-10.584756px;}
.ws9_c00429{word-spacing:-0.126252px;}
.wsd_c00429{word-spacing:-0.086400px;}
.ws33_c00429{word-spacing:-0.067032px;}
.ws34_c00429{word-spacing:-0.019152px;}
.ws29_c00429{word-spacing:-0.009576px;}
.ws27_c00429{word-spacing:-0.007776px;}
.ws2b_c00429{word-spacing:-0.004788px;}
.wsa_c00429{word-spacing:0.000000px;}
.ws26_c00429{word-spacing:0.004788px;}
.ws1c_c00429{word-spacing:0.007200px;}
.ws28_c00429{word-spacing:0.009576px;}
.ws2a_c00429{word-spacing:0.023940px;}
.ws8_c00429{word-spacing:0.042084px;}
.wsc_c00429{word-spacing:0.064800px;}
.ws12_c00429{word-spacing:0.201600px;}
.ws25_c00429{word-spacing:0.374400px;}
.ws24_c00429{word-spacing:0.475200px;}
.ws21_c00429{word-spacing:0.705600px;}
.ws1b_c00429{word-spacing:0.734400px;}
.ws20_c00429{word-spacing:0.842400px;}
.ws1a_c00429{word-spacing:1.087200px;}
.ws19_c00429{word-spacing:1.144800px;}
.ws1f_c00429{word-spacing:2.894400px;}
.ws31_c00429{word-spacing:3.121776px;}
.ws32_c00429{word-spacing:3.198384px;}
.ws2c_c00429{word-spacing:3.241476px;}
.ws2e_c00429{word-spacing:3.246264px;}
.ws30_c00429{word-spacing:3.260628px;}
.ws23_c00429{word-spacing:3.312000px;}
.ws22_c00429{word-spacing:3.355200px;}
.ws2f_c00429{word-spacing:3.591000px;}
.ws2d_c00429{word-spacing:3.596400px;}
.ws13_c00429{word-spacing:3.988800px;}
.ws1e_c00429{word-spacing:5.414400px;}
.ws18_c00429{word-spacing:5.630400px;}
.ws17_c00429{word-spacing:5.752800px;}
.ws16_c00429{word-spacing:5.774400px;}
.ws10_c00429{word-spacing:6.861600px;}
.ws11_c00429{word-spacing:6.883200px;}
.wsb_c00429{word-spacing:9.388800px;}
.ws14_c00429{word-spacing:13.312800px;}
.ws15_c00429{word-spacing:13.327200px;}
.wsf_c00429{word-spacing:14.752800px;}
.wse_c00429{word-spacing:14.839200px;}
.ws1d_c00429{word-spacing:15.847200px;}
._0_c00429{margin-left:-1.142280px;}
._1_c00429{width:1.292580px;}
._2_c00429{width:3.369384px;}
.fc0_c00429{color:rgb(0,0,0);}
.fs5_c00429{font-size:38.880000px;}
.fs3_c00429{font-size:42.120000px;}
.fs4_c00429{font-size:47.880000px;}
.fs2_c00429{font-size:54.000000px;}
.fs0_c00429{font-size:60.120000px;}
.fs1_c00429{font-size:72.000000px;}
.y0_c00429{bottom:0.000000px;}
.y2_c00429{bottom:57.450450px;}
.y3_c00429{bottom:61.410450px;}
.y22_c00429{bottom:113.698470px;}
.y21_c00429{bottom:132.068010px;}
.y20_c00429{bottom:150.334230px;}
.y1f_c00429{bottom:168.599340px;}
.y1e_c00429{bottom:182.464230px;}
.y1d_c00429{bottom:200.732250px;}
.y1c_c00429{bottom:218.998470px;}
.y1b_c00429{bottom:237.364230px;}
.y1a_c00429{bottom:255.630450px;}
.y19_c00429{bottom:270.840450px;}
.y18_c00429{bottom:291.540450px;}
.y17_c00429{bottom:312.240450px;}
.y16_c00429{bottom:494.490600px;}
.y15_c00429{bottom:528.960600px;}
.y14_c00429{bottom:563.340600px;}
.y13_c00429{bottom:597.810600px;}
.y12_c00429{bottom:632.190600px;}
.y11_c00429{bottom:666.660600px;}
.y10_c00429{bottom:701.040600px;}
.yf_c00429{bottom:735.510600px;}
.ye_c00429{bottom:769.890600px;}
.yd_c00429{bottom:813.360450px;}
.yc_c00429{bottom:847.740450px;}
.yb_c00429{bottom:882.210450px;}
.ya_c00429{bottom:916.590450px;}
.y9_c00429{bottom:951.060450px;}
.y8_c00429{bottom:994.440450px;}
.y7_c00429{bottom:1028.910450px;}
.y6_c00429{bottom:1063.290450px;}
.y5_c00429{bottom:1106.760450px;}
.y4_c00429{bottom:1141.140450px;}
.y1_c00429{bottom:1196.940450px;}
.h2_c00429{height:47.988281px;}
.h7_c00429{height:49.937344px;}
.h8_c00429{height:49.941784px;}
.h9_c00429{height:49.945264px;}
.h1_c00429{height:50.315273px;}
.h3_c00429{height:56.320312px;}
.h4_c00429{height:60.257812px;}
.h5_c00429{height:65.130820px;}
.h6_c00429{height:65.131420px;}
.h0_c00429{height:1263.000000px;}
.w1_c00429{width:892.500000px;}
.w0_c00429{width:892.830000px;}
.x0_c00429{left:0.000000px;}
.x4_c00429{left:127.620000px;}
.x6_c00429{left:141.124050px;}
.x5_c00429{left:180.810000px;}
.x1_c00429{left:211.500000px;}
.x3_c00429{left:435.240000px;}
.x2_c00429{left:446.490000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.v1_c00429{vertical-align:26.560000pt;}
.ls18_c00429{letter-spacing:-0.236800pt;}
.ls12_c00429{letter-spacing:-0.134400pt;}
.ls10_c00429{letter-spacing:-0.128256pt;}
.ls19_c00429{letter-spacing:-0.038400pt;}
.ls1b_c00429{letter-spacing:-0.032000pt;}
.ls13_c00429{letter-spacing:-0.025600pt;}
.ls17_c00429{letter-spacing:-0.019200pt;}
.ls14_c00429{letter-spacing:-0.012800pt;}
.ls1f_c00429{letter-spacing:-0.006912pt;}
.ls1a_c00429{letter-spacing:-0.006400pt;}
.ls1d_c00429{letter-spacing:-0.004256pt;}
.ls1c_c00429{letter-spacing:-0.003456pt;}
.ls11_c00429{letter-spacing:0.000000pt;}
.ls5_c00429{letter-spacing:0.003456pt;}
.ls1_c00429{letter-spacing:0.006400pt;}
.ls9_c00429{letter-spacing:0.008512pt;}
.ls4_c00429{letter-spacing:0.012768pt;}
.ls3_c00429{letter-spacing:0.012800pt;}
.ls8_c00429{letter-spacing:0.021280pt;}
.ls7_c00429{letter-spacing:0.025536pt;}
.lsf_c00429{letter-spacing:0.034048pt;}
.ls0_c00429{letter-spacing:0.042752pt;}
.ls15_c00429{letter-spacing:0.048672pt;}
.lsc_c00429{letter-spacing:0.051072pt;}
.lsa_c00429{letter-spacing:0.067520pt;}
.lse_c00429{letter-spacing:0.076608pt;}
.ls16_c00429{letter-spacing:0.083200pt;}
.ls6_c00429{letter-spacing:0.092480pt;}
.ls2_c00429{letter-spacing:0.115200pt;}
.lsb_c00429{letter-spacing:0.119168pt;}
.ls21_c00429{letter-spacing:0.307584pt;}
.ls1e_c00429{letter-spacing:0.317952pt;}
.ls20_c00429{letter-spacing:0.336224pt;}
.lsd_c00429{letter-spacing:0.387520pt;}
.ws3_c00429{word-spacing:-11.840192pt;}
.ws4_c00429{word-spacing:-11.831680pt;}
.ws2_c00429{word-spacing:-9.925632pt;}
.ws7_c00429{word-spacing:-9.915264pt;}
.ws6_c00429{word-spacing:-9.607680pt;}
.ws1_c00429{word-spacing:-9.604224pt;}
.ws5_c00429{word-spacing:-9.600768pt;}
.ws0_c00429{word-spacing:-9.408672pt;}
.ws9_c00429{word-spacing:-0.112224pt;}
.wsd_c00429{word-spacing:-0.076800pt;}
.ws33_c00429{word-spacing:-0.059584pt;}
.ws34_c00429{word-spacing:-0.017024pt;}
.ws29_c00429{word-spacing:-0.008512pt;}
.ws27_c00429{word-spacing:-0.006912pt;}
.ws2b_c00429{word-spacing:-0.004256pt;}
.wsa_c00429{word-spacing:0.000000pt;}
.ws26_c00429{word-spacing:0.004256pt;}
.ws1c_c00429{word-spacing:0.006400pt;}
.ws28_c00429{word-spacing:0.008512pt;}
.ws2a_c00429{word-spacing:0.021280pt;}
.ws8_c00429{word-spacing:0.037408pt;}
.wsc_c00429{word-spacing:0.057600pt;}
.ws12_c00429{word-spacing:0.179200pt;}
.ws25_c00429{word-spacing:0.332800pt;}
.ws24_c00429{word-spacing:0.422400pt;}
.ws21_c00429{word-spacing:0.627200pt;}
.ws1b_c00429{word-spacing:0.652800pt;}
.ws20_c00429{word-spacing:0.748800pt;}
.ws1a_c00429{word-spacing:0.966400pt;}
.ws19_c00429{word-spacing:1.017600pt;}
.ws1f_c00429{word-spacing:2.572800pt;}
.ws31_c00429{word-spacing:2.774912pt;}
.ws32_c00429{word-spacing:2.843008pt;}
.ws2c_c00429{word-spacing:2.881312pt;}
.ws2e_c00429{word-spacing:2.885568pt;}
.ws30_c00429{word-spacing:2.898336pt;}
.ws23_c00429{word-spacing:2.944000pt;}
.ws22_c00429{word-spacing:2.982400pt;}
.ws2f_c00429{word-spacing:3.192000pt;}
.ws2d_c00429{word-spacing:3.196800pt;}
.ws13_c00429{word-spacing:3.545600pt;}
.ws1e_c00429{word-spacing:4.812800pt;}
.ws18_c00429{word-spacing:5.004800pt;}
.ws17_c00429{word-spacing:5.113600pt;}
.ws16_c00429{word-spacing:5.132800pt;}
.ws10_c00429{word-spacing:6.099200pt;}
.ws11_c00429{word-spacing:6.118400pt;}
.wsb_c00429{word-spacing:8.345600pt;}
.ws14_c00429{word-spacing:11.833600pt;}
.ws15_c00429{word-spacing:11.846400pt;}
.wsf_c00429{word-spacing:13.113600pt;}
.wse_c00429{word-spacing:13.190400pt;}
.ws1d_c00429{word-spacing:14.086400pt;}
._0_c00429{margin-left:-1.015360pt;}
._1_c00429{width:1.148960pt;}
._2_c00429{width:2.995008pt;}
.fs5_c00429{font-size:34.560000pt;}
.fs3_c00429{font-size:37.440000pt;}
.fs4_c00429{font-size:42.560000pt;}
.fs2_c00429{font-size:48.000000pt;}
.fs0_c00429{font-size:53.440000pt;}
.fs1_c00429{font-size:64.000000pt;}
.y0_c00429{bottom:0.000000pt;}
.y2_c00429{bottom:51.067067pt;}
.y3_c00429{bottom:54.587067pt;}
.y22_c00429{bottom:101.065307pt;}
.y21_c00429{bottom:117.393787pt;}
.y20_c00429{bottom:133.630427pt;}
.y1f_c00429{bottom:149.866080pt;}
.y1e_c00429{bottom:162.190427pt;}
.y1d_c00429{bottom:178.428667pt;}
.y1c_c00429{bottom:194.665307pt;}
.y1b_c00429{bottom:210.990427pt;}
.y1a_c00429{bottom:227.227067pt;}
.y19_c00429{bottom:240.747067pt;}
.y18_c00429{bottom:259.147067pt;}
.y17_c00429{bottom:277.547067pt;}
.y16_c00429{bottom:439.547200pt;}
.y15_c00429{bottom:470.187200pt;}
.y14_c00429{bottom:500.747200pt;}
.y13_c00429{bottom:531.387200pt;}
.y12_c00429{bottom:561.947200pt;}
.y11_c00429{bottom:592.587200pt;}
.y10_c00429{bottom:623.147200pt;}
.yf_c00429{bottom:653.787200pt;}
.ye_c00429{bottom:684.347200pt;}
.yd_c00429{bottom:722.987067pt;}
.yc_c00429{bottom:753.547067pt;}
.yb_c00429{bottom:784.187067pt;}
.ya_c00429{bottom:814.747067pt;}
.y9_c00429{bottom:845.387067pt;}
.y8_c00429{bottom:883.947067pt;}
.y7_c00429{bottom:914.587067pt;}
.y6_c00429{bottom:945.147067pt;}
.y5_c00429{bottom:983.787067pt;}
.y4_c00429{bottom:1014.347067pt;}
.y1_c00429{bottom:1063.947067pt;}
.h2_c00429{height:42.656250pt;}
.h7_c00429{height:44.388750pt;}
.h8_c00429{height:44.392697pt;}
.h9_c00429{height:44.395790pt;}
.h1_c00429{height:44.724687pt;}
.h3_c00429{height:50.062500pt;}
.h4_c00429{height:53.562500pt;}
.h5_c00429{height:57.894063pt;}
.h6_c00429{height:57.894596pt;}
.h0_c00429{height:1122.666667pt;}
.w1_c00429{width:793.333333pt;}
.w0_c00429{width:793.626667pt;}
.x0_c00429{left:0.000000pt;}
.x4_c00429{left:113.440000pt;}
.x6_c00429{left:125.443600pt;}
.x5_c00429{left:160.720000pt;}
.x1_c00429{left:188.000000pt;}
.x3_c00429{left:386.880000pt;}
.x2_c00429{left:396.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_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_4ac5b797579134e7fe1cedbd.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_2c466f9e2c069a4c69718054.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00430;src:url('chunks/assets/font_cc1212344f6a2107bc7aad4d.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00430;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00430{font-family:ff5_c00430;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_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;}
.v1_c00430{vertical-align:15.840000px;}
.lsc_c00430{letter-spacing:-0.151200px;}
.ls17_c00430{letter-spacing:-0.060120px;}
.ls19_c00430{letter-spacing:-0.048096px;}
.lsf_c00430{letter-spacing:-0.042084px;}
.ls1d_c00430{letter-spacing:-0.039060px;}
.ls16_c00430{letter-spacing:-0.036072px;}
.ls1e_c00430{letter-spacing:-0.036000px;}
.ls12_c00430{letter-spacing:-0.028800px;}
.lse_c00430{letter-spacing:-0.024048px;}
.ls1b_c00430{letter-spacing:-0.021600px;}
.ls15_c00430{letter-spacing:-0.018036px;}
.ls11_c00430{letter-spacing:-0.014400px;}
.ls13_c00430{letter-spacing:-0.007200px;}
.ls18_c00430{letter-spacing:-0.006012px;}
.lsd_c00430{letter-spacing:0.000000px;}
.ls7_c00430{letter-spacing:0.006012px;}
.ls3_c00430{letter-spacing:0.007200px;}
.ls6_c00430{letter-spacing:0.012024px;}
.ls14_c00430{letter-spacing:0.014400px;}
.lsa_c00430{letter-spacing:0.023940px;}
.ls5_c00430{letter-spacing:0.030060px;}
.ls8_c00430{letter-spacing:0.031248px;}
.lsb_c00430{letter-spacing:0.033516px;}
.ls0_c00430{letter-spacing:0.048096px;}
.ls4_c00430{letter-spacing:0.054108px;}
.ls1c_c00430{letter-spacing:0.054684px;}
.ls2_c00430{letter-spacing:0.060120px;}
.ls10_c00430{letter-spacing:0.136080px;}
.ls1a_c00430{letter-spacing:0.168336px;}
.ls9_c00430{letter-spacing:77.260680px;}
.ls1_c00430{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00430{word-spacing:-19.561248px;}
.ws1_c00430{word-spacing:-14.981904px;}
.ws0_c00430{word-spacing:-9.856080px;}
.ws6_c00430{word-spacing:-0.330660px;}
.ws1f_c00430{word-spacing:-0.054684px;}
.ws25_c00430{word-spacing:-0.014364px;}
.ws26_c00430{word-spacing:-0.009576px;}
.wse_c00430{word-spacing:-0.007200px;}
.ws24_c00430{word-spacing:-0.004788px;}
.ws4_c00430{word-spacing:0.000000px;}
.wsf_c00430{word-spacing:0.007200px;}
.ws1e_c00430{word-spacing:0.014400px;}
.ws10_c00430{word-spacing:0.036072px;}
.ws3_c00430{word-spacing:0.042084px;}
.ws5_c00430{word-spacing:0.114228px;}
.ws7_c00430{word-spacing:0.132264px;}
.ws1b_c00430{word-spacing:1.124244px;}
.ws14_c00430{word-spacing:2.200392px;}
.ws15_c00430{word-spacing:2.218428px;}
.ws16_c00430{word-spacing:3.318624px;}
.ws8_c00430{word-spacing:3.549600px;}
.ws9_c00430{word-spacing:3.571200px;}
.wsd_c00430{word-spacing:3.636000px;}
.wsc_c00430{word-spacing:3.650400px;}
.ws11_c00430{word-spacing:3.709404px;}
.ws12_c00430{word-spacing:4.088160px;}
.ws13_c00430{word-spacing:4.112208px;}
.ws1c_c00430{word-spacing:4.701600px;}
.wsb_c00430{word-spacing:5.356800px;}
.wsa_c00430{word-spacing:5.400000px;}
.ws1a_c00430{word-spacing:6.523020px;}
.ws19_c00430{word-spacing:6.577128px;}
.ws21_c00430{word-spacing:7.185600px;}
.ws20_c00430{word-spacing:7.264800px;}
.ws18_c00430{word-spacing:9.444852px;}
.ws17_c00430{word-spacing:9.474912px;}
.ws22_c00430{word-spacing:18.014400px;}
.ws23_c00430{word-spacing:18.036000px;}
.ws1d_c00430{word-spacing:21.247200px;}
._0_c00430{margin-left:-1.322640px;}
._1_c00430{width:1.080000px;}
.fc0_c00430{color:rgb(0,0,0);}
.fs3_c00430{font-size:38.880000px;}
.fs5_c00430{font-size:47.880000px;}
.fs2_c00430{font-size:54.000000px;}
.fs0_c00430{font-size:60.120000px;}
.fs1_c00430{font-size:72.000000px;}
.fs4_c00430{font-size:78.120000px;}
.y0_c00430{bottom:0.000000px;}
.y2_c00430{bottom:57.450450px;}
.y1c_c00430{bottom:113.698470px;}
.y1b_c00430{bottom:132.060450px;}
.y1a_c00430{bottom:147.270450px;}
.y19_c00430{bottom:167.970450px;}
.y18_c00430{bottom:188.670450px;}
.y17_c00430{bottom:258.240450px;}
.y16_c00430{bottom:292.620450px;}
.y15_c00430{bottom:337.710600px;}
.y14_c00430{bottom:400.350600px;}
.y13_c00430{bottom:434.820600px;}
.y12_c00430{bottom:469.200600px;}
.y11_c00430{bottom:506.701740px;}
.y10_c00430{bottom:523.535340px;}
.yf_c00430{bottom:540.459120px;}
.ye_c00430{bottom:557.292720px;}
.yd_c00430{bottom:574.216500px;}
.yc_c00430{bottom:591.050100px;}
.yb_c00430{bottom:607.973880px;}
.ya_c00430{bottom:633.810450px;}
.y9_c00430{bottom:674.670450px;}
.y8_c00430{bottom:709.050450px;}
.y7_c00430{bottom:743.520450px;}
.y6_c00430{bottom:777.900450px;}
.y5_c00430{bottom:807.150450px;}
.y4_c00430{bottom:826.684770px;}
.y3_c00430{bottom:839.550450px;}
.y1_c00430{bottom:1196.850450px;}
.h7_c00430{height:47.988281px;}
.h8_c00430{height:49.937344px;}
.h1_c00430{height:50.315273px;}
.h3_c00430{height:50.373984px;}
.h5_c00430{height:50.430113px;}
.h4_c00430{height:60.257812px;}
.h2_c00430{height:72.160312px;}
.h6_c00430{height:81.476719px;}
.h0_c00430{height:1263.000000px;}
.w1_c00430{width:892.500000px;}
.w0_c00430{width:892.830000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:127.620000px;}
.x5_c00430{left:154.620000px;}
.x4_c00430{left:180.810000px;}
.x3_c00430{left:189.714870px;}
.x2_c00430{left:620.640000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.v1_c00430{vertical-align:14.080000pt;}
.lsc_c00430{letter-spacing:-0.134400pt;}
.ls17_c00430{letter-spacing:-0.053440pt;}
.ls19_c00430{letter-spacing:-0.042752pt;}
.lsf_c00430{letter-spacing:-0.037408pt;}
.ls1d_c00430{letter-spacing:-0.034720pt;}
.ls16_c00430{letter-spacing:-0.032064pt;}
.ls1e_c00430{letter-spacing:-0.032000pt;}
.ls12_c00430{letter-spacing:-0.025600pt;}
.lse_c00430{letter-spacing:-0.021376pt;}
.ls1b_c00430{letter-spacing:-0.019200pt;}
.ls15_c00430{letter-spacing:-0.016032pt;}
.ls11_c00430{letter-spacing:-0.012800pt;}
.ls13_c00430{letter-spacing:-0.006400pt;}
.ls18_c00430{letter-spacing:-0.005344pt;}
.lsd_c00430{letter-spacing:0.000000pt;}
.ls7_c00430{letter-spacing:0.005344pt;}
.ls3_c00430{letter-spacing:0.006400pt;}
.ls6_c00430{letter-spacing:0.010688pt;}
.ls14_c00430{letter-spacing:0.012800pt;}
.lsa_c00430{letter-spacing:0.021280pt;}
.ls5_c00430{letter-spacing:0.026720pt;}
.ls8_c00430{letter-spacing:0.027776pt;}
.lsb_c00430{letter-spacing:0.029792pt;}
.ls0_c00430{letter-spacing:0.042752pt;}
.ls4_c00430{letter-spacing:0.048096pt;}
.ls1c_c00430{letter-spacing:0.048608pt;}
.ls2_c00430{letter-spacing:0.053440pt;}
.ls10_c00430{letter-spacing:0.120960pt;}
.ls1a_c00430{letter-spacing:0.149632pt;}
.ls9_c00430{letter-spacing:68.676160pt;}
.ls1_c00430{letter-spacing:1077.440000pt;}
.ws2_c00430{word-spacing:-17.387776pt;}
.ws1_c00430{word-spacing:-13.317248pt;}
.ws0_c00430{word-spacing:-8.760960pt;}
.ws6_c00430{word-spacing:-0.293920pt;}
.ws1f_c00430{word-spacing:-0.048608pt;}
.ws25_c00430{word-spacing:-0.012768pt;}
.ws26_c00430{word-spacing:-0.008512pt;}
.wse_c00430{word-spacing:-0.006400pt;}
.ws24_c00430{word-spacing:-0.004256pt;}
.ws4_c00430{word-spacing:0.000000pt;}
.wsf_c00430{word-spacing:0.006400pt;}
.ws1e_c00430{word-spacing:0.012800pt;}
.ws10_c00430{word-spacing:0.032064pt;}
.ws3_c00430{word-spacing:0.037408pt;}
.ws5_c00430{word-spacing:0.101536pt;}
.ws7_c00430{word-spacing:0.117568pt;}
.ws1b_c00430{word-spacing:0.999328pt;}
.ws14_c00430{word-spacing:1.955904pt;}
.ws15_c00430{word-spacing:1.971936pt;}
.ws16_c00430{word-spacing:2.949888pt;}
.ws8_c00430{word-spacing:3.155200pt;}
.ws9_c00430{word-spacing:3.174400pt;}
.wsd_c00430{word-spacing:3.232000pt;}
.wsc_c00430{word-spacing:3.244800pt;}
.ws11_c00430{word-spacing:3.297248pt;}
.ws12_c00430{word-spacing:3.633920pt;}
.ws13_c00430{word-spacing:3.655296pt;}
.ws1c_c00430{word-spacing:4.179200pt;}
.wsb_c00430{word-spacing:4.761600pt;}
.wsa_c00430{word-spacing:4.800000pt;}
.ws1a_c00430{word-spacing:5.798240pt;}
.ws19_c00430{word-spacing:5.846336pt;}
.ws21_c00430{word-spacing:6.387200pt;}
.ws20_c00430{word-spacing:6.457600pt;}
.ws18_c00430{word-spacing:8.395424pt;}
.ws17_c00430{word-spacing:8.422144pt;}
.ws22_c00430{word-spacing:16.012800pt;}
.ws23_c00430{word-spacing:16.032000pt;}
.ws1d_c00430{word-spacing:18.886400pt;}
._0_c00430{margin-left:-1.175680pt;}
._1_c00430{width:0.960000pt;}
.fs3_c00430{font-size:34.560000pt;}
.fs5_c00430{font-size:42.560000pt;}
.fs2_c00430{font-size:48.000000pt;}
.fs0_c00430{font-size:53.440000pt;}
.fs1_c00430{font-size:64.000000pt;}
.fs4_c00430{font-size:69.440000pt;}
.y0_c00430{bottom:0.000000pt;}
.y2_c00430{bottom:51.067067pt;}
.y1c_c00430{bottom:101.065307pt;}
.y1b_c00430{bottom:117.387067pt;}
.y1a_c00430{bottom:130.907067pt;}
.y19_c00430{bottom:149.307067pt;}
.y18_c00430{bottom:167.707067pt;}
.y17_c00430{bottom:229.547067pt;}
.y16_c00430{bottom:260.107067pt;}
.y15_c00430{bottom:300.187200pt;}
.y14_c00430{bottom:355.867200pt;}
.y13_c00430{bottom:386.507200pt;}
.y12_c00430{bottom:417.067200pt;}
.y11_c00430{bottom:450.401547pt;}
.y10_c00430{bottom:465.364747pt;}
.yf_c00430{bottom:480.408107pt;}
.ye_c00430{bottom:495.371307pt;}
.yd_c00430{bottom:510.414667pt;}
.yc_c00430{bottom:525.377867pt;}
.yb_c00430{bottom:540.421227pt;}
.ya_c00430{bottom:563.387067pt;}
.y9_c00430{bottom:599.707067pt;}
.y8_c00430{bottom:630.267067pt;}
.y7_c00430{bottom:660.907067pt;}
.y6_c00430{bottom:691.467067pt;}
.y5_c00430{bottom:717.467067pt;}
.y4_c00430{bottom:734.830907pt;}
.y3_c00430{bottom:746.267067pt;}
.y1_c00430{bottom:1063.867067pt;}
.h7_c00430{height:42.656250pt;}
.h8_c00430{height:44.388750pt;}
.h1_c00430{height:44.724687pt;}
.h3_c00430{height:44.776875pt;}
.h5_c00430{height:44.826767pt;}
.h4_c00430{height:53.562500pt;}
.h2_c00430{height:64.142500pt;}
.h6_c00430{height:72.423750pt;}
.h0_c00430{height:1122.666667pt;}
.w1_c00430{width:793.333333pt;}
.w0_c00430{width:793.626667pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:113.440000pt;}
.x5_c00430{left:137.440000pt;}
.x4_c00430{left:160.720000pt;}
.x3_c00430{left:168.635440pt;}
.x2_c00430{left:551.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a2cff0255540ddd480e40ed6.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_3f3f2271fb25e4b87731c24e.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;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_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;}
.v1_c00431{vertical-align:29.880000px;}
.lsc_c00431{letter-spacing:-0.151200px;}
.lsa_c00431{letter-spacing:-0.144288px;}
.ls16_c00431{letter-spacing:-0.057600px;}
.ls15_c00431{letter-spacing:-0.050400px;}
.ls17_c00431{letter-spacing:-0.043200px;}
.ls11_c00431{letter-spacing:-0.036000px;}
.lsf_c00431{letter-spacing:-0.028800px;}
.lsd_c00431{letter-spacing:-0.021600px;}
.lse_c00431{letter-spacing:-0.014400px;}
.ls10_c00431{letter-spacing:-0.007200px;}
.lsb_c00431{letter-spacing:0.000000px;}
.ls14_c00431{letter-spacing:0.007200px;}
.ls6_c00431{letter-spacing:0.014364px;}
.ls3_c00431{letter-spacing:0.014400px;}
.ls4_c00431{letter-spacing:0.021600px;}
.ls8_c00431{letter-spacing:0.023940px;}
.ls9_c00431{letter-spacing:0.047880px;}
.ls0_c00431{letter-spacing:0.048096px;}
.ls12_c00431{letter-spacing:0.054756px;}
.ls13_c00431{letter-spacing:0.093600px;}
.ls7_c00431{letter-spacing:0.104040px;}
.ls1_c00431{letter-spacing:0.144000px;}
.ls18_c00431{letter-spacing:0.357696px;}
.ls2_c00431{letter-spacing:65.304000px;}
.ls5_c00431{letter-spacing:66.024000px;}
.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;}
}
.ws1_c00431{word-spacing:-17.942400px;}
.ws2_c00431{word-spacing:-11.166336px;}
.ws0_c00431{word-spacing:-10.584756px;}
.ws4_c00431{word-spacing:-0.126252px;}
.ws2b_c00431{word-spacing:-0.028728px;}
.ws1e_c00431{word-spacing:-0.007200px;}
.ws2a_c00431{word-spacing:-0.004788px;}
.ws5_c00431{word-spacing:0.000000px;}
.ws29_c00431{word-spacing:0.004788px;}
.ws16_c00431{word-spacing:0.007200px;}
.ws24_c00431{word-spacing:0.021600px;}
.ws3_c00431{word-spacing:0.042084px;}
.ws17_c00431{word-spacing:0.086400px;}
.ws14_c00431{word-spacing:0.734400px;}
.ws6_c00431{word-spacing:0.741600px;}
.ws15_c00431{word-spacing:0.792000px;}
.ws7_c00431{word-spacing:1.094400px;}
.ws10_c00431{word-spacing:1.108800px;}
.wsc_c00431{word-spacing:1.152000px;}
.wsa_c00431{word-spacing:1.411200px;}
.wsb_c00431{word-spacing:1.468800px;}
.ws22_c00431{word-spacing:2.210400px;}
.ws23_c00431{word-spacing:2.239200px;}
.ws8_c00431{word-spacing:2.520000px;}
.ws9_c00431{word-spacing:2.556000px;}
.ws19_c00431{word-spacing:4.334400px;}
.ws18_c00431{word-spacing:4.341600px;}
.ws11_c00431{word-spacing:5.407200px;}
.ws26_c00431{word-spacing:9.748800px;}
.wsd_c00431{word-spacing:10.447200px;}
.ws20_c00431{word-spacing:12.657600px;}
.ws1f_c00431{word-spacing:12.686400px;}
.ws27_c00431{word-spacing:14.018400px;}
.wsf_c00431{word-spacing:15.818400px;}
.wse_c00431{word-spacing:15.876000px;}
.ws12_c00431{word-spacing:17.280000px;}
.ws13_c00431{word-spacing:17.308800px;}
.ws28_c00431{word-spacing:19.123200px;}
.ws25_c00431{word-spacing:20.865600px;}
.ws1c_c00431{word-spacing:22.334400px;}
.ws1b_c00431{word-spacing:22.370400px;}
.ws1d_c00431{word-spacing:22.384800px;}
.ws1a_c00431{word-spacing:22.413600px;}
.ws21_c00431{word-spacing:29.908800px;}
._0_c00431{margin-left:-1.142280px;}
._1_c00431{width:1.292580px;}
.fc0_c00431{color:rgb(0,0,0);}
.fs5_c00431{font-size:38.880000px;}
.fs3_c00431{font-size:42.120000px;}
.fs4_c00431{font-size:47.880000px;}
.fs2_c00431{font-size:54.000000px;}
.fs0_c00431{font-size:60.120000px;}
.fs1_c00431{font-size:72.000000px;}
.y0_c00431{bottom:0.000000px;}
.y2_c00431{bottom:57.450450px;}
.y3_c00431{bottom:61.410450px;}
.y23_c00431{bottom:113.698470px;}
.y22_c00431{bottom:132.064230px;}
.y21_c00431{bottom:150.334230px;}
.y20_c00431{bottom:168.600450px;}
.y1f_c00431{bottom:183.810600px;}
.y1e_c00431{bottom:204.510600px;}
.y1d_c00431{bottom:225.210450px;}
.y1c_c00431{bottom:278.940450px;}
.y1b_c00431{bottom:313.410450px;}
.y1a_c00431{bottom:347.790450px;}
.y19_c00431{bottom:382.260450px;}
.y18_c00431{bottom:425.640450px;}
.y17_c00431{bottom:460.110450px;}
.y16_c00431{bottom:494.490450px;}
.y15_c00431{bottom:528.960450px;}
.y14_c00431{bottom:572.340450px;}
.y13_c00431{bottom:606.810450px;}
.y12_c00431{bottom:641.190450px;}
.y11_c00431{bottom:675.660450px;}
.y10_c00431{bottom:710.040450px;}
.yf_c00431{bottom:744.510450px;}
.ye_c00431{bottom:778.890450px;}
.yd_c00431{bottom:813.360450px;}
.yc_c00431{bottom:847.740450px;}
.yb_c00431{bottom:882.210450px;}
.ya_c00431{bottom:916.590450px;}
.y9_c00431{bottom:960.060450px;}
.y8_c00431{bottom:994.440450px;}
.y7_c00431{bottom:1028.910450px;}
.y6_c00431{bottom:1063.290450px;}
.y5_c00431{bottom:1106.760450px;}
.y4_c00431{bottom:1141.140450px;}
.y1_c00431{bottom:1196.940450px;}
.h2_c00431{height:47.988281px;}
.h8_c00431{height:47.988881px;}
.h9_c00431{height:49.937344px;}
.h1_c00431{height:50.315273px;}
.h3_c00431{height:56.320312px;}
.h4_c00431{height:60.257812px;}
.h6_c00431{height:65.130820px;}
.h7_c00431{height:65.131420px;}
.h5_c00431{height:75.093750px;}
.h0_c00431{height:1263.000000px;}
.w1_c00431{width:892.500000px;}
.w0_c00431{width:892.830000px;}
.x0_c00431{left:0.000000px;}
.x4_c00431{left:127.620000px;}
.x6_c00431{left:154.620000px;}
.x5_c00431{left:180.810000px;}
.x1_c00431{left:211.500000px;}
.x3_c00431{left:435.240000px;}
.x2_c00431{left:446.490000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.v1_c00431{vertical-align:26.560000pt;}
.lsc_c00431{letter-spacing:-0.134400pt;}
.lsa_c00431{letter-spacing:-0.128256pt;}
.ls16_c00431{letter-spacing:-0.051200pt;}
.ls15_c00431{letter-spacing:-0.044800pt;}
.ls17_c00431{letter-spacing:-0.038400pt;}
.ls11_c00431{letter-spacing:-0.032000pt;}
.lsf_c00431{letter-spacing:-0.025600pt;}
.lsd_c00431{letter-spacing:-0.019200pt;}
.lse_c00431{letter-spacing:-0.012800pt;}
.ls10_c00431{letter-spacing:-0.006400pt;}
.lsb_c00431{letter-spacing:0.000000pt;}
.ls14_c00431{letter-spacing:0.006400pt;}
.ls6_c00431{letter-spacing:0.012768pt;}
.ls3_c00431{letter-spacing:0.012800pt;}
.ls4_c00431{letter-spacing:0.019200pt;}
.ls8_c00431{letter-spacing:0.021280pt;}
.ls9_c00431{letter-spacing:0.042560pt;}
.ls0_c00431{letter-spacing:0.042752pt;}
.ls12_c00431{letter-spacing:0.048672pt;}
.ls13_c00431{letter-spacing:0.083200pt;}
.ls7_c00431{letter-spacing:0.092480pt;}
.ls1_c00431{letter-spacing:0.128000pt;}
.ls18_c00431{letter-spacing:0.317952pt;}
.ls2_c00431{letter-spacing:58.048000pt;}
.ls5_c00431{letter-spacing:58.688000pt;}
.ws1_c00431{word-spacing:-15.948800pt;}
.ws2_c00431{word-spacing:-9.925632pt;}
.ws0_c00431{word-spacing:-9.408672pt;}
.ws4_c00431{word-spacing:-0.112224pt;}
.ws2b_c00431{word-spacing:-0.025536pt;}
.ws1e_c00431{word-spacing:-0.006400pt;}
.ws2a_c00431{word-spacing:-0.004256pt;}
.ws5_c00431{word-spacing:0.000000pt;}
.ws29_c00431{word-spacing:0.004256pt;}
.ws16_c00431{word-spacing:0.006400pt;}
.ws24_c00431{word-spacing:0.019200pt;}
.ws3_c00431{word-spacing:0.037408pt;}
.ws17_c00431{word-spacing:0.076800pt;}
.ws14_c00431{word-spacing:0.652800pt;}
.ws6_c00431{word-spacing:0.659200pt;}
.ws15_c00431{word-spacing:0.704000pt;}
.ws7_c00431{word-spacing:0.972800pt;}
.ws10_c00431{word-spacing:0.985600pt;}
.wsc_c00431{word-spacing:1.024000pt;}
.wsa_c00431{word-spacing:1.254400pt;}
.wsb_c00431{word-spacing:1.305600pt;}
.ws22_c00431{word-spacing:1.964800pt;}
.ws23_c00431{word-spacing:1.990400pt;}
.ws8_c00431{word-spacing:2.240000pt;}
.ws9_c00431{word-spacing:2.272000pt;}
.ws19_c00431{word-spacing:3.852800pt;}
.ws18_c00431{word-spacing:3.859200pt;}
.ws11_c00431{word-spacing:4.806400pt;}
.ws26_c00431{word-spacing:8.665600pt;}
.wsd_c00431{word-spacing:9.286400pt;}
.ws20_c00431{word-spacing:11.251200pt;}
.ws1f_c00431{word-spacing:11.276800pt;}
.ws27_c00431{word-spacing:12.460800pt;}
.wsf_c00431{word-spacing:14.060800pt;}
.wse_c00431{word-spacing:14.112000pt;}
.ws12_c00431{word-spacing:15.360000pt;}
.ws13_c00431{word-spacing:15.385600pt;}
.ws28_c00431{word-spacing:16.998400pt;}
.ws25_c00431{word-spacing:18.547200pt;}
.ws1c_c00431{word-spacing:19.852800pt;}
.ws1b_c00431{word-spacing:19.884800pt;}
.ws1d_c00431{word-spacing:19.897600pt;}
.ws1a_c00431{word-spacing:19.923200pt;}
.ws21_c00431{word-spacing:26.585600pt;}
._0_c00431{margin-left:-1.015360pt;}
._1_c00431{width:1.148960pt;}
.fs5_c00431{font-size:34.560000pt;}
.fs3_c00431{font-size:37.440000pt;}
.fs4_c00431{font-size:42.560000pt;}
.fs2_c00431{font-size:48.000000pt;}
.fs0_c00431{font-size:53.440000pt;}
.fs1_c00431{font-size:64.000000pt;}
.y0_c00431{bottom:0.000000pt;}
.y2_c00431{bottom:51.067067pt;}
.y3_c00431{bottom:54.587067pt;}
.y23_c00431{bottom:101.065307pt;}
.y22_c00431{bottom:117.390427pt;}
.y21_c00431{bottom:133.630427pt;}
.y20_c00431{bottom:149.867067pt;}
.y1f_c00431{bottom:163.387200pt;}
.y1e_c00431{bottom:181.787200pt;}
.y1d_c00431{bottom:200.187067pt;}
.y1c_c00431{bottom:247.947067pt;}
.y1b_c00431{bottom:278.587067pt;}
.y1a_c00431{bottom:309.147067pt;}
.y19_c00431{bottom:339.787067pt;}
.y18_c00431{bottom:378.347067pt;}
.y17_c00431{bottom:408.987067pt;}
.y16_c00431{bottom:439.547067pt;}
.y15_c00431{bottom:470.187067pt;}
.y14_c00431{bottom:508.747067pt;}
.y13_c00431{bottom:539.387067pt;}
.y12_c00431{bottom:569.947067pt;}
.y11_c00431{bottom:600.587067pt;}
.y10_c00431{bottom:631.147067pt;}
.yf_c00431{bottom:661.787067pt;}
.ye_c00431{bottom:692.347067pt;}
.yd_c00431{bottom:722.987067pt;}
.yc_c00431{bottom:753.547067pt;}
.yb_c00431{bottom:784.187067pt;}
.ya_c00431{bottom:814.747067pt;}
.y9_c00431{bottom:853.387067pt;}
.y8_c00431{bottom:883.947067pt;}
.y7_c00431{bottom:914.587067pt;}
.y6_c00431{bottom:945.147067pt;}
.y5_c00431{bottom:983.787067pt;}
.y4_c00431{bottom:1014.347067pt;}
.y1_c00431{bottom:1063.947067pt;}
.h2_c00431{height:42.656250pt;}
.h8_c00431{height:42.656783pt;}
.h9_c00431{height:44.388750pt;}
.h1_c00431{height:44.724687pt;}
.h3_c00431{height:50.062500pt;}
.h4_c00431{height:53.562500pt;}
.h6_c00431{height:57.894063pt;}
.h7_c00431{height:57.894596pt;}
.h5_c00431{height:66.750000pt;}
.h0_c00431{height:1122.666667pt;}
.w1_c00431{width:793.333333pt;}
.w0_c00431{width:793.626667pt;}
.x0_c00431{left:0.000000pt;}
.x4_c00431{left:113.440000pt;}
.x6_c00431{left:137.440000pt;}
.x5_c00431{left:160.720000pt;}
.x1_c00431{left:188.000000pt;}
.x3_c00431{left:386.880000pt;}
.x2_c00431{left:396.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_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_48cdc6cecf3a65577eca5d9d.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00432;src:url('chunks/assets/font_ae98b42f7307a6649cc4cea7.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00432;src:url('chunks/assets/font_a461bf4fa99f159d222babb2.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00432;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00432{font-family:ff5_c00432;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_c00432;src:url('chunks/assets/font_e1551359f1dc8d541f241ad5.woff2')format("woff");}.ff6_c00432{font-family:ff6_c00432;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_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;}
.v1_c00432{vertical-align:15.840000px;}
.v2_c00432{vertical-align:29.880000px;}
.lsf_c00432{letter-spacing:-0.151200px;}
.ls18_c00432{letter-spacing:-0.050400px;}
.ls10_c00432{letter-spacing:-0.028800px;}
.ls16_c00432{letter-spacing:-0.021600px;}
.ls15_c00432{letter-spacing:-0.015624px;}
.ls14_c00432{letter-spacing:-0.014400px;}
.ls12_c00432{letter-spacing:-0.007200px;}
.ls1b_c00432{letter-spacing:-0.004788px;}
.ls19_c00432{letter-spacing:-0.003888px;}
.ls11_c00432{letter-spacing:0.000000px;}
.lsc_c00432{letter-spacing:0.003888px;}
.ls8_c00432{letter-spacing:0.007200px;}
.ls1a_c00432{letter-spacing:0.009576px;}
.lsb_c00432{letter-spacing:0.014364px;}
.ls3_c00432{letter-spacing:0.014400px;}
.ls5_c00432{letter-spacing:0.015624px;}
.ls2_c00432{letter-spacing:0.021600px;}
.lse_c00432{letter-spacing:0.028728px;}
.ls7_c00432{letter-spacing:0.028800px;}
.ls6_c00432{letter-spacing:0.031248px;}
.lsa_c00432{letter-spacing:0.033516px;}
.ls13_c00432{letter-spacing:0.043200px;}
.ls1c_c00432{letter-spacing:0.047880px;}
.ls0_c00432{letter-spacing:0.048096px;}
.ls9_c00432{letter-spacing:0.054756px;}
.ls17_c00432{letter-spacing:0.093600px;}
.lsd_c00432{letter-spacing:0.104040px;}
.ls4_c00432{letter-spacing:72.573480px;}
.ls1_c00432{letter-spacing:1212.120000px;}
.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:-19.514376px;}
.ws2_c00432{word-spacing:-17.949600px;}
.ws3_c00432{word-spacing:-10.804752px;}
.ws1_c00432{word-spacing:-10.584756px;}
.ws16_c00432{word-spacing:-0.453600px;}
.wsf_c00432{word-spacing:-0.124992px;}
.wse_c00432{word-spacing:-0.109368px;}
.ws22_c00432{word-spacing:-0.086400px;}
.ws2e_c00432{word-spacing:-0.028728px;}
.ws28_c00432{word-spacing:-0.014364px;}
.ws2c_c00432{word-spacing:-0.009576px;}
.ws2a_c00432{word-spacing:-0.007776px;}
.ws9_c00432{word-spacing:-0.007200px;}
.ws5_c00432{word-spacing:0.000000px;}
.ws29_c00432{word-spacing:0.004788px;}
.ws21_c00432{word-spacing:0.007200px;}
.ws2b_c00432{word-spacing:0.009576px;}
.ws15_c00432{word-spacing:0.014400px;}
.ws2d_c00432{word-spacing:0.023940px;}
.ws4_c00432{word-spacing:0.042084px;}
.ws10_c00432{word-spacing:0.331200px;}
.ws11_c00432{word-spacing:0.410400px;}
.ws8_c00432{word-spacing:1.418400px;}
.ws7_c00432{word-spacing:1.440000px;}
.wsd_c00432{word-spacing:2.145600px;}
.ws1d_c00432{word-spacing:2.167200px;}
.wsc_c00432{word-spacing:2.174400px;}
.ws1e_c00432{word-spacing:2.253600px;}
.ws6_c00432{word-spacing:2.908800px;}
.ws1f_c00432{word-spacing:3.283200px;}
.ws23_c00432{word-spacing:3.938400px;}
.ws24_c00432{word-spacing:3.996000px;}
.ws1b_c00432{word-spacing:4.384800px;}
.ws1a_c00432{word-spacing:4.406400px;}
.ws12_c00432{word-spacing:6.480000px;}
.ws14_c00432{word-spacing:6.854400px;}
.ws13_c00432{word-spacing:6.904800px;}
.ws17_c00432{word-spacing:15.487200px;}
.ws20_c00432{word-spacing:16.214400px;}
.ws25_c00432{word-spacing:16.243200px;}
.ws26_c00432{word-spacing:16.250400px;}
.wsb_c00432{word-spacing:17.596800px;}
.wsa_c00432{word-spacing:17.762400px;}
.ws18_c00432{word-spacing:19.382400px;}
.ws19_c00432{word-spacing:19.432800px;}
.ws27_c00432{word-spacing:19.461600px;}
.ws1c_c00432{word-spacing:22.341600px;}
._0_c00432{margin-left:-1.322640px;}
._1_c00432{width:1.080000px;}
.fc0_c00432{color:rgb(0,0,0);}
.fs6_c00432{font-size:38.880000px;}
.fs4_c00432{font-size:42.120000px;}
.fs5_c00432{font-size:47.880000px;}
.fs2_c00432{font-size:54.000000px;}
.fs0_c00432{font-size:60.120000px;}
.fs1_c00432{font-size:72.000000px;}
.fs3_c00432{font-size:78.120000px;}
.y0_c00432{bottom:0.000000px;}
.y2_c00432{bottom:57.450450px;}
.y1f_c00432{bottom:113.698470px;}
.y1e_c00432{bottom:132.064230px;}
.y1d_c00432{bottom:150.330450px;}
.y1c_c00432{bottom:165.540450px;}
.y1b_c00432{bottom:186.240450px;}
.y1a_c00432{bottom:206.940450px;}
.y19_c00432{bottom:308.910600px;}
.y18_c00432{bottom:343.380600px;}
.y17_c00432{bottom:377.760600px;}
.y16_c00432{bottom:412.230600px;}
.y15_c00432{bottom:455.610450px;}
.y14_c00432{bottom:490.080450px;}
.y13_c00432{bottom:524.460450px;}
.y12_c00432{bottom:558.930450px;}
.y11_c00432{bottom:593.310450px;}
.y10_c00432{bottom:627.780450px;}
.yf_c00432{bottom:662.160450px;}
.ye_c00432{bottom:696.630450px;}
.yd_c00432{bottom:740.010450px;}
.yc_c00432{bottom:774.480450px;}
.yb_c00432{bottom:808.860450px;}
.ya_c00432{bottom:843.330450px;}
.y9_c00432{bottom:888.330450px;}
.y8_c00432{bottom:951.060450px;}
.y7_c00432{bottom:985.440450px;}
.y6_c00432{bottom:1019.910450px;}
.y5_c00432{bottom:1072.290450px;}
.y4_c00432{bottom:1106.760450px;}
.y3_c00432{bottom:1141.140450px;}
.y1_c00432{bottom:1196.850450px;}
.h7_c00432{height:47.988281px;}
.h8_c00432{height:49.937344px;}
.h9_c00432{height:49.945264px;}
.h1_c00432{height:50.315273px;}
.h3_c00432{height:60.257812px;}
.h6_c00432{height:65.130220px;}
.h5_c00432{height:65.130820px;}
.h2_c00432{height:72.160312px;}
.h4_c00432{height:81.476719px;}
.h0_c00432{height:1263.000000px;}
.w1_c00432{width:892.500000px;}
.w0_c00432{width:892.830000px;}
.x0_c00432{left:0.000000px;}
.x1_c00432{left:127.620000px;}
.x2_c00432{left:181.170000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.v1_c00432{vertical-align:14.080000pt;}
.v2_c00432{vertical-align:26.560000pt;}
.lsf_c00432{letter-spacing:-0.134400pt;}
.ls18_c00432{letter-spacing:-0.044800pt;}
.ls10_c00432{letter-spacing:-0.025600pt;}
.ls16_c00432{letter-spacing:-0.019200pt;}
.ls15_c00432{letter-spacing:-0.013888pt;}
.ls14_c00432{letter-spacing:-0.012800pt;}
.ls12_c00432{letter-spacing:-0.006400pt;}
.ls1b_c00432{letter-spacing:-0.004256pt;}
.ls19_c00432{letter-spacing:-0.003456pt;}
.ls11_c00432{letter-spacing:0.000000pt;}
.lsc_c00432{letter-spacing:0.003456pt;}
.ls8_c00432{letter-spacing:0.006400pt;}
.ls1a_c00432{letter-spacing:0.008512pt;}
.lsb_c00432{letter-spacing:0.012768pt;}
.ls3_c00432{letter-spacing:0.012800pt;}
.ls5_c00432{letter-spacing:0.013888pt;}
.ls2_c00432{letter-spacing:0.019200pt;}
.lse_c00432{letter-spacing:0.025536pt;}
.ls7_c00432{letter-spacing:0.025600pt;}
.ls6_c00432{letter-spacing:0.027776pt;}
.lsa_c00432{letter-spacing:0.029792pt;}
.ls13_c00432{letter-spacing:0.038400pt;}
.ls1c_c00432{letter-spacing:0.042560pt;}
.ls0_c00432{letter-spacing:0.042752pt;}
.ls9_c00432{letter-spacing:0.048672pt;}
.ls17_c00432{letter-spacing:0.083200pt;}
.lsd_c00432{letter-spacing:0.092480pt;}
.ls4_c00432{letter-spacing:64.509760pt;}
.ls1_c00432{letter-spacing:1077.440000pt;}
.ws0_c00432{word-spacing:-17.346112pt;}
.ws2_c00432{word-spacing:-15.955200pt;}
.ws3_c00432{word-spacing:-9.604224pt;}
.ws1_c00432{word-spacing:-9.408672pt;}
.ws16_c00432{word-spacing:-0.403200pt;}
.wsf_c00432{word-spacing:-0.111104pt;}
.wse_c00432{word-spacing:-0.097216pt;}
.ws22_c00432{word-spacing:-0.076800pt;}
.ws2e_c00432{word-spacing:-0.025536pt;}
.ws28_c00432{word-spacing:-0.012768pt;}
.ws2c_c00432{word-spacing:-0.008512pt;}
.ws2a_c00432{word-spacing:-0.006912pt;}
.ws9_c00432{word-spacing:-0.006400pt;}
.ws5_c00432{word-spacing:0.000000pt;}
.ws29_c00432{word-spacing:0.004256pt;}
.ws21_c00432{word-spacing:0.006400pt;}
.ws2b_c00432{word-spacing:0.008512pt;}
.ws15_c00432{word-spacing:0.012800pt;}
.ws2d_c00432{word-spacing:0.021280pt;}
.ws4_c00432{word-spacing:0.037408pt;}
.ws10_c00432{word-spacing:0.294400pt;}
.ws11_c00432{word-spacing:0.364800pt;}
.ws8_c00432{word-spacing:1.260800pt;}
.ws7_c00432{word-spacing:1.280000pt;}
.wsd_c00432{word-spacing:1.907200pt;}
.ws1d_c00432{word-spacing:1.926400pt;}
.wsc_c00432{word-spacing:1.932800pt;}
.ws1e_c00432{word-spacing:2.003200pt;}
.ws6_c00432{word-spacing:2.585600pt;}
.ws1f_c00432{word-spacing:2.918400pt;}
.ws23_c00432{word-spacing:3.500800pt;}
.ws24_c00432{word-spacing:3.552000pt;}
.ws1b_c00432{word-spacing:3.897600pt;}
.ws1a_c00432{word-spacing:3.916800pt;}
.ws12_c00432{word-spacing:5.760000pt;}
.ws14_c00432{word-spacing:6.092800pt;}
.ws13_c00432{word-spacing:6.137600pt;}
.ws17_c00432{word-spacing:13.766400pt;}
.ws20_c00432{word-spacing:14.412800pt;}
.ws25_c00432{word-spacing:14.438400pt;}
.ws26_c00432{word-spacing:14.444800pt;}
.wsb_c00432{word-spacing:15.641600pt;}
.wsa_c00432{word-spacing:15.788800pt;}
.ws18_c00432{word-spacing:17.228800pt;}
.ws19_c00432{word-spacing:17.273600pt;}
.ws27_c00432{word-spacing:17.299200pt;}
.ws1c_c00432{word-spacing:19.859200pt;}
._0_c00432{margin-left:-1.175680pt;}
._1_c00432{width:0.960000pt;}
.fs6_c00432{font-size:34.560000pt;}
.fs4_c00432{font-size:37.440000pt;}
.fs5_c00432{font-size:42.560000pt;}
.fs2_c00432{font-size:48.000000pt;}
.fs0_c00432{font-size:53.440000pt;}
.fs1_c00432{font-size:64.000000pt;}
.fs3_c00432{font-size:69.440000pt;}
.y0_c00432{bottom:0.000000pt;}
.y2_c00432{bottom:51.067067pt;}
.y1f_c00432{bottom:101.065307pt;}
.y1e_c00432{bottom:117.390427pt;}
.y1d_c00432{bottom:133.627067pt;}
.y1c_c00432{bottom:147.147067pt;}
.y1b_c00432{bottom:165.547067pt;}
.y1a_c00432{bottom:183.947067pt;}
.y19_c00432{bottom:274.587200pt;}
.y18_c00432{bottom:305.227200pt;}
.y17_c00432{bottom:335.787200pt;}
.y16_c00432{bottom:366.427200pt;}
.y15_c00432{bottom:404.987067pt;}
.y14_c00432{bottom:435.627067pt;}
.y13_c00432{bottom:466.187067pt;}
.y12_c00432{bottom:496.827067pt;}
.y11_c00432{bottom:527.387067pt;}
.y10_c00432{bottom:558.027067pt;}
.yf_c00432{bottom:588.587067pt;}
.ye_c00432{bottom:619.227067pt;}
.yd_c00432{bottom:657.787067pt;}
.yc_c00432{bottom:688.427067pt;}
.yb_c00432{bottom:718.987067pt;}
.ya_c00432{bottom:749.627067pt;}
.y9_c00432{bottom:789.627067pt;}
.y8_c00432{bottom:845.387067pt;}
.y7_c00432{bottom:875.947067pt;}
.y6_c00432{bottom:906.587067pt;}
.y5_c00432{bottom:953.147067pt;}
.y4_c00432{bottom:983.787067pt;}
.y3_c00432{bottom:1014.347067pt;}
.y1_c00432{bottom:1063.867067pt;}
.h7_c00432{height:42.656250pt;}
.h8_c00432{height:44.388750pt;}
.h9_c00432{height:44.395790pt;}
.h1_c00432{height:44.724687pt;}
.h3_c00432{height:53.562500pt;}
.h6_c00432{height:57.893529pt;}
.h5_c00432{height:57.894062pt;}
.h2_c00432{height:64.142500pt;}
.h4_c00432{height:72.423750pt;}
.h0_c00432{height:1122.666667pt;}
.w1_c00432{width:793.333333pt;}
.w0_c00432{width:793.626667pt;}
.x0_c00432{left:0.000000pt;}
.x1_c00432{left:113.440000pt;}
.x2_c00432{left:161.040000pt;}
}





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




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

.ir_c00434:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00434;src:url('chunks/assets/font_c12e735d2582d7be704db8a2.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00434;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00434;src:url('chunks/assets/font_33c7d526949dc8a6d13e8ddb.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00434;src:url('chunks/assets/font_e1551359f1dc8d541f241ad5.woff2')format("woff");}.ff4_c00434{font-family:ff4_c00434;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_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.v1_c00434{vertical-align:15.840000px;}
.v2_c00434{vertical-align:29.880000px;}
.ls12_c00434{letter-spacing:-0.151200px;}
.ls1b_c00434{letter-spacing:-0.108000px;}
.ls1a_c00434{letter-spacing:-0.057600px;}
.ls18_c00434{letter-spacing:-0.050400px;}
.ls1d_c00434{letter-spacing:-0.036000px;}
.ls17_c00434{letter-spacing:-0.028800px;}
.ls13_c00434{letter-spacing:-0.021600px;}
.ls15_c00434{letter-spacing:-0.014400px;}
.ls21_c00434{letter-spacing:-0.011664px;}
.ls19_c00434{letter-spacing:-0.007200px;}
.ls1f_c00434{letter-spacing:-0.004788px;}
.ls1e_c00434{letter-spacing:-0.003888px;}
.ls16_c00434{letter-spacing:0.000000px;}
.lsa_c00434{letter-spacing:0.003888px;}
.ls6_c00434{letter-spacing:0.007200px;}
.lse_c00434{letter-spacing:0.009576px;}
.ls9_c00434{letter-spacing:0.014364px;}
.ls3_c00434{letter-spacing:0.014400px;}
.ls1c_c00434{letter-spacing:0.021600px;}
.lsc_c00434{letter-spacing:0.023940px;}
.lsf_c00434{letter-spacing:0.028728px;}
.ls8_c00434{letter-spacing:0.033516px;}
.ls11_c00434{letter-spacing:0.038304px;}
.ls10_c00434{letter-spacing:0.043092px;}
.ls0_c00434{letter-spacing:0.048096px;}
.ls2_c00434{letter-spacing:0.054756px;}
.ls14_c00434{letter-spacing:0.093600px;}
.lsb_c00434{letter-spacing:0.104040px;}
.ls4_c00434{letter-spacing:0.144000px;}
.ls7_c00434{letter-spacing:0.151200px;}
.ls20_c00434{letter-spacing:0.357696px;}
.ls22_c00434{letter-spacing:0.378252px;}
.lsd_c00434{letter-spacing:3.231360px;}
.ls5_c00434{letter-spacing:65.304000px;}
.ls1_c00434{letter-spacing:1212.120000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00434{word-spacing:-17.971200px;}
.ws4_c00434{word-spacing:-13.310640px;}
.ws3_c00434{word-spacing:-11.166336px;}
.ws2_c00434{word-spacing:-10.804752px;}
.ws5_c00434{word-spacing:-10.796976px;}
.ws0_c00434{word-spacing:-10.584756px;}
.wsa_c00434{word-spacing:-0.086400px;}
.ws38_c00434{word-spacing:-0.023940px;}
.ws39_c00434{word-spacing:-0.019152px;}
.ws2c_c00434{word-spacing:-0.014364px;}
.ws37_c00434{word-spacing:-0.009576px;}
.ws2e_c00434{word-spacing:-0.007776px;}
.ws13_c00434{word-spacing:-0.007200px;}
.ws36_c00434{word-spacing:-0.004788px;}
.ws7_c00434{word-spacing:0.000000px;}
.ws2d_c00434{word-spacing:0.004788px;}
.ws2f_c00434{word-spacing:0.009576px;}
.ws23_c00434{word-spacing:0.021600px;}
.ws30_c00434{word-spacing:0.023940px;}
.ws9_c00434{word-spacing:0.028800px;}
.ws6_c00434{word-spacing:0.042084px;}
.ws10_c00434{word-spacing:0.079200px;}
.ws25_c00434{word-spacing:0.367200px;}
.ws26_c00434{word-spacing:0.424800px;}
.ws1f_c00434{word-spacing:0.698400px;}
.ws16_c00434{word-spacing:0.712800px;}
.ws1e_c00434{word-spacing:0.806400px;}
.ws28_c00434{word-spacing:1.648800px;}
.ws27_c00434{word-spacing:1.821600px;}
.ws20_c00434{word-spacing:2.887200px;}
.ws21_c00434{word-spacing:2.894400px;}
.ws35_c00434{word-spacing:3.222324px;}
.ws32_c00434{word-spacing:3.231900px;}
.ws33_c00434{word-spacing:3.238704px;}
.ws31_c00434{word-spacing:3.241476px;}
.ws34_c00434{word-spacing:3.246264px;}
.ws2a_c00434{word-spacing:3.276000px;}
.ws11_c00434{word-spacing:3.283200px;}
.ws2b_c00434{word-spacing:3.355200px;}
.ws17_c00434{word-spacing:4.636800px;}
.ws18_c00434{word-spacing:4.737600px;}
.wsb_c00434{word-spacing:5.054400px;}
.ws8_c00434{word-spacing:5.083200px;}
.ws1c_c00434{word-spacing:6.357600px;}
.wse_c00434{word-spacing:6.465600px;}
.wsf_c00434{word-spacing:6.494400px;}
.ws1b_c00434{word-spacing:6.501600px;}
.ws1d_c00434{word-spacing:6.588000px;}
.ws19_c00434{word-spacing:7.149600px;}
.ws1a_c00434{word-spacing:7.228800px;}
.wsd_c00434{word-spacing:8.568000px;}
.wsc_c00434{word-spacing:8.589600px;}
.ws12_c00434{word-spacing:11.908800px;}
.ws24_c00434{word-spacing:12.240000px;}
.ws15_c00434{word-spacing:16.207200px;}
.ws14_c00434{word-spacing:16.322400px;}
.ws29_c00434{word-spacing:16.596000px;}
.ws22_c00434{word-spacing:50.407200px;}
._0_c00434{margin-left:-1.322640px;}
._1_c00434{width:1.008000px;}
._2_c00434{width:3.262356px;}
.fc0_c00434{color:rgb(0,0,0);}
.fs5_c00434{font-size:38.880000px;}
.fs3_c00434{font-size:42.120000px;}
.fs4_c00434{font-size:47.880000px;}
.fs2_c00434{font-size:54.000000px;}
.fs0_c00434{font-size:60.120000px;}
.fs1_c00434{font-size:72.000000px;}
.y0_c00434{bottom:0.000000px;}
.y2_c00434{bottom:57.450450px;}
.y24_c00434{bottom:113.702250px;}
.y23_c00434{bottom:132.064230px;}
.y22_c00434{bottom:150.334230px;}
.y21_c00434{bottom:168.602970px;}
.y20_c00434{bottom:186.964950px;}
.y1f_c00434{bottom:200.734230px;}
.y1e_c00434{bottom:218.998470px;}
.y1d_c00434{bottom:237.360450px;}
.y1c_c00434{bottom:252.570450px;}
.y1b_c00434{bottom:273.270450px;}
.y1a_c00434{bottom:293.970450px;}
.y19_c00434{bottom:347.790450px;}
.y18_c00434{bottom:382.260450px;}
.y17_c00434{bottom:416.640450px;}
.y16_c00434{bottom:451.110450px;}
.y15_c00434{bottom:485.490450px;}
.y14_c00434{bottom:528.960450px;}
.y13_c00434{bottom:563.340450px;}
.y12_c00434{bottom:597.810450px;}
.y11_c00434{bottom:632.190450px;}
.y10_c00434{bottom:666.660450px;}
.yf_c00434{bottom:701.040450px;}
.ye_c00434{bottom:735.510450px;}
.yd_c00434{bottom:769.890450px;}
.yc_c00434{bottom:804.360450px;}
.yb_c00434{bottom:847.740450px;}
.ya_c00434{bottom:882.210450px;}
.y9_c00434{bottom:916.590450px;}
.y8_c00434{bottom:960.060450px;}
.y7_c00434{bottom:994.440450px;}
.y6_c00434{bottom:1028.910450px;}
.y5_c00434{bottom:1063.290450px;}
.y4_c00434{bottom:1106.760450px;}
.y3_c00434{bottom:1141.140450px;}
.y1_c00434{bottom:1196.850450px;}
.h6_c00434{height:47.988281px;}
.h7_c00434{height:49.937344px;}
.h8_c00434{height:49.945264px;}
.h1_c00434{height:50.315273px;}
.h3_c00434{height:60.257812px;}
.h4_c00434{height:65.130820px;}
.h2_c00434{height:72.160312px;}
.h5_c00434{height:75.093750px;}
.h0_c00434{height:1263.000000px;}
.w1_c00434{width:892.500000px;}
.w0_c00434{width:892.830000px;}
.x0_c00434{left:0.000000px;}
.x1_c00434{left:127.620000px;}
.x5_c00434{left:141.119190px;}
.x2_c00434{left:180.810000px;}
.x3_c00434{left:208.440000px;}
.x4_c00434{left:235.620000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.v1_c00434{vertical-align:14.080000pt;}
.v2_c00434{vertical-align:26.560000pt;}
.ls12_c00434{letter-spacing:-0.134400pt;}
.ls1b_c00434{letter-spacing:-0.096000pt;}
.ls1a_c00434{letter-spacing:-0.051200pt;}
.ls18_c00434{letter-spacing:-0.044800pt;}
.ls1d_c00434{letter-spacing:-0.032000pt;}
.ls17_c00434{letter-spacing:-0.025600pt;}
.ls13_c00434{letter-spacing:-0.019200pt;}
.ls15_c00434{letter-spacing:-0.012800pt;}
.ls21_c00434{letter-spacing:-0.010368pt;}
.ls19_c00434{letter-spacing:-0.006400pt;}
.ls1f_c00434{letter-spacing:-0.004256pt;}
.ls1e_c00434{letter-spacing:-0.003456pt;}
.ls16_c00434{letter-spacing:0.000000pt;}
.lsa_c00434{letter-spacing:0.003456pt;}
.ls6_c00434{letter-spacing:0.006400pt;}
.lse_c00434{letter-spacing:0.008512pt;}
.ls9_c00434{letter-spacing:0.012768pt;}
.ls3_c00434{letter-spacing:0.012800pt;}
.ls1c_c00434{letter-spacing:0.019200pt;}
.lsc_c00434{letter-spacing:0.021280pt;}
.lsf_c00434{letter-spacing:0.025536pt;}
.ls8_c00434{letter-spacing:0.029792pt;}
.ls11_c00434{letter-spacing:0.034048pt;}
.ls10_c00434{letter-spacing:0.038304pt;}
.ls0_c00434{letter-spacing:0.042752pt;}
.ls2_c00434{letter-spacing:0.048672pt;}
.ls14_c00434{letter-spacing:0.083200pt;}
.lsb_c00434{letter-spacing:0.092480pt;}
.ls4_c00434{letter-spacing:0.128000pt;}
.ls7_c00434{letter-spacing:0.134400pt;}
.ls20_c00434{letter-spacing:0.317952pt;}
.ls22_c00434{letter-spacing:0.336224pt;}
.lsd_c00434{letter-spacing:2.872320pt;}
.ls5_c00434{letter-spacing:58.048000pt;}
.ls1_c00434{letter-spacing:1077.440000pt;}
.ws1_c00434{word-spacing:-15.974400pt;}
.ws4_c00434{word-spacing:-11.831680pt;}
.ws3_c00434{word-spacing:-9.925632pt;}
.ws2_c00434{word-spacing:-9.604224pt;}
.ws5_c00434{word-spacing:-9.597312pt;}
.ws0_c00434{word-spacing:-9.408672pt;}
.wsa_c00434{word-spacing:-0.076800pt;}
.ws38_c00434{word-spacing:-0.021280pt;}
.ws39_c00434{word-spacing:-0.017024pt;}
.ws2c_c00434{word-spacing:-0.012768pt;}
.ws37_c00434{word-spacing:-0.008512pt;}
.ws2e_c00434{word-spacing:-0.006912pt;}
.ws13_c00434{word-spacing:-0.006400pt;}
.ws36_c00434{word-spacing:-0.004256pt;}
.ws7_c00434{word-spacing:0.000000pt;}
.ws2d_c00434{word-spacing:0.004256pt;}
.ws2f_c00434{word-spacing:0.008512pt;}
.ws23_c00434{word-spacing:0.019200pt;}
.ws30_c00434{word-spacing:0.021280pt;}
.ws9_c00434{word-spacing:0.025600pt;}
.ws6_c00434{word-spacing:0.037408pt;}
.ws10_c00434{word-spacing:0.070400pt;}
.ws25_c00434{word-spacing:0.326400pt;}
.ws26_c00434{word-spacing:0.377600pt;}
.ws1f_c00434{word-spacing:0.620800pt;}
.ws16_c00434{word-spacing:0.633600pt;}
.ws1e_c00434{word-spacing:0.716800pt;}
.ws28_c00434{word-spacing:1.465600pt;}
.ws27_c00434{word-spacing:1.619200pt;}
.ws20_c00434{word-spacing:2.566400pt;}
.ws21_c00434{word-spacing:2.572800pt;}
.ws35_c00434{word-spacing:2.864288pt;}
.ws32_c00434{word-spacing:2.872800pt;}
.ws33_c00434{word-spacing:2.878848pt;}
.ws31_c00434{word-spacing:2.881312pt;}
.ws34_c00434{word-spacing:2.885568pt;}
.ws2a_c00434{word-spacing:2.912000pt;}
.ws11_c00434{word-spacing:2.918400pt;}
.ws2b_c00434{word-spacing:2.982400pt;}
.ws17_c00434{word-spacing:4.121600pt;}
.ws18_c00434{word-spacing:4.211200pt;}
.wsb_c00434{word-spacing:4.492800pt;}
.ws8_c00434{word-spacing:4.518400pt;}
.ws1c_c00434{word-spacing:5.651200pt;}
.wse_c00434{word-spacing:5.747200pt;}
.wsf_c00434{word-spacing:5.772800pt;}
.ws1b_c00434{word-spacing:5.779200pt;}
.ws1d_c00434{word-spacing:5.856000pt;}
.ws19_c00434{word-spacing:6.355200pt;}
.ws1a_c00434{word-spacing:6.425600pt;}
.wsd_c00434{word-spacing:7.616000pt;}
.wsc_c00434{word-spacing:7.635200pt;}
.ws12_c00434{word-spacing:10.585600pt;}
.ws24_c00434{word-spacing:10.880000pt;}
.ws15_c00434{word-spacing:14.406400pt;}
.ws14_c00434{word-spacing:14.508800pt;}
.ws29_c00434{word-spacing:14.752000pt;}
.ws22_c00434{word-spacing:44.806400pt;}
._0_c00434{margin-left:-1.175680pt;}
._1_c00434{width:0.896000pt;}
._2_c00434{width:2.899872pt;}
.fs5_c00434{font-size:34.560000pt;}
.fs3_c00434{font-size:37.440000pt;}
.fs4_c00434{font-size:42.560000pt;}
.fs2_c00434{font-size:48.000000pt;}
.fs0_c00434{font-size:53.440000pt;}
.fs1_c00434{font-size:64.000000pt;}
.y0_c00434{bottom:0.000000pt;}
.y2_c00434{bottom:51.067067pt;}
.y24_c00434{bottom:101.068667pt;}
.y23_c00434{bottom:117.390427pt;}
.y22_c00434{bottom:133.630427pt;}
.y21_c00434{bottom:149.869307pt;}
.y20_c00434{bottom:166.191067pt;}
.y1f_c00434{bottom:178.430427pt;}
.y1e_c00434{bottom:194.665307pt;}
.y1d_c00434{bottom:210.987067pt;}
.y1c_c00434{bottom:224.507067pt;}
.y1b_c00434{bottom:242.907067pt;}
.y1a_c00434{bottom:261.307067pt;}
.y19_c00434{bottom:309.147067pt;}
.y18_c00434{bottom:339.787067pt;}
.y17_c00434{bottom:370.347067pt;}
.y16_c00434{bottom:400.987067pt;}
.y15_c00434{bottom:431.547067pt;}
.y14_c00434{bottom:470.187067pt;}
.y13_c00434{bottom:500.747067pt;}
.y12_c00434{bottom:531.387067pt;}
.y11_c00434{bottom:561.947067pt;}
.y10_c00434{bottom:592.587067pt;}
.yf_c00434{bottom:623.147067pt;}
.ye_c00434{bottom:653.787067pt;}
.yd_c00434{bottom:684.347067pt;}
.yc_c00434{bottom:714.987067pt;}
.yb_c00434{bottom:753.547067pt;}
.ya_c00434{bottom:784.187067pt;}
.y9_c00434{bottom:814.747067pt;}
.y8_c00434{bottom:853.387067pt;}
.y7_c00434{bottom:883.947067pt;}
.y6_c00434{bottom:914.587067pt;}
.y5_c00434{bottom:945.147067pt;}
.y4_c00434{bottom:983.787067pt;}
.y3_c00434{bottom:1014.347067pt;}
.y1_c00434{bottom:1063.867067pt;}
.h6_c00434{height:42.656250pt;}
.h7_c00434{height:44.388750pt;}
.h8_c00434{height:44.395790pt;}
.h1_c00434{height:44.724687pt;}
.h3_c00434{height:53.562500pt;}
.h4_c00434{height:57.894063pt;}
.h2_c00434{height:64.142500pt;}
.h5_c00434{height:66.750000pt;}
.h0_c00434{height:1122.666667pt;}
.w1_c00434{width:793.333333pt;}
.w0_c00434{width:793.626667pt;}
.x0_c00434{left:0.000000pt;}
.x1_c00434{left:113.440000pt;}
.x5_c00434{left:125.439280pt;}
.x2_c00434{left:160.720000pt;}
.x3_c00434{left:185.280000pt;}
.x4_c00434{left:209.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_c00435 {
    display:none;
  }
  .loading-indicator_c00435.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00435 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00435 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00435" -> "#page-container .classname_c00435")
 */
.pf_c00435 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00435 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00435 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00435 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00435 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00435 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00435 {overflow:visible;}
  }
}
.c_c00435 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00435 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00435:after { /* webkit #35443 */
  content: '';
}
.t_c00435:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00435 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00435 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00435 { /* info for Javascript */
  display:none;
}
.l_c00435 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00435 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00435 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00435:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00435;src:url('chunks/assets/font_bd41c2795571d33bed3a00c5.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00435;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00435;src:url('chunks/assets/font_df6dadee9c87cdf158d3a4f0.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00435;src:url('chunks/assets/font_dc11649987d38596dbc2ef13.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00435;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00435{font-family:ff5_c00435;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_c00435;src:url('chunks/assets/font_e1551359f1dc8d541f241ad5.woff2')format("woff");}.ff6_c00435{font-family:ff6_c00435;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_c00435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.v1_c00435{vertical-align:29.880000px;}
.ls13_c00435{letter-spacing:-0.151200px;}
.ls11_c00435{letter-spacing:-0.144288px;}
.ls1a_c00435{letter-spacing:-0.093600px;}
.ls1b_c00435{letter-spacing:-0.043200px;}
.ls1c_c00435{letter-spacing:-0.039060px;}
.ls14_c00435{letter-spacing:-0.028800px;}
.ls17_c00435{letter-spacing:-0.021600px;}
.ls16_c00435{letter-spacing:-0.014400px;}
.ls19_c00435{letter-spacing:-0.007200px;}
.ls20_c00435{letter-spacing:-0.004788px;}
.ls1f_c00435{letter-spacing:-0.003888px;}
.ls12_c00435{letter-spacing:0.000000px;}
.ls9_c00435{letter-spacing:0.003888px;}
.ls2_c00435{letter-spacing:0.007200px;}
.ls5_c00435{letter-spacing:0.007812px;}
.lsc_c00435{letter-spacing:0.009576px;}
.ls8_c00435{letter-spacing:0.014364px;}
.ls7_c00435{letter-spacing:0.014400px;}
.lsd_c00435{letter-spacing:0.018720px;}
.ls10_c00435{letter-spacing:0.019152px;}
.ls1d_c00435{letter-spacing:0.021600px;}
.lse_c00435{letter-spacing:0.023940px;}
.lsb_c00435{letter-spacing:0.028728px;}
.ls15_c00435{letter-spacing:0.028800px;}
.lsf_c00435{letter-spacing:0.033516px;}
.ls1e_c00435{letter-spacing:0.036000px;}
.ls0_c00435{letter-spacing:0.048096px;}
.ls1_c00435{letter-spacing:0.054756px;}
.ls18_c00435{letter-spacing:0.093600px;}
.lsa_c00435{letter-spacing:0.104040px;}
.ls3_c00435{letter-spacing:0.144000px;}
.ls21_c00435{letter-spacing:0.357696px;}
.ls4_c00435{letter-spacing:65.304000px;}
.ls6_c00435{letter-spacing:66.870720px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00435{word-spacing:-19.537812px;}
.ws1_c00435{word-spacing:-17.906400px;}
.ws4_c00435{word-spacing:-13.320216px;}
.ws5_c00435{word-spacing:-11.166336px;}
.ws3_c00435{word-spacing:-10.804752px;}
.ws0_c00435{word-spacing:-10.584756px;}
.ws7_c00435{word-spacing:-0.126252px;}
.ws1e_c00435{word-spacing:-0.093600px;}
.ws17_c00435{word-spacing:-0.054684px;}
.ws2b_c00435{word-spacing:-0.014364px;}
.ws28_c00435{word-spacing:-0.009576px;}
.ws26_c00435{word-spacing:-0.007776px;}
.ws2a_c00435{word-spacing:-0.004788px;}
.ws8_c00435{word-spacing:0.000000px;}
.ws25_c00435{word-spacing:0.004788px;}
.ws27_c00435{word-spacing:0.009576px;}
.ws11_c00435{word-spacing:0.014400px;}
.ws29_c00435{word-spacing:0.023940px;}
.ws6_c00435{word-spacing:0.042084px;}
.wsd_c00435{word-spacing:0.079200px;}
.ws1a_c00435{word-spacing:0.338400px;}
.ws19_c00435{word-spacing:0.403200px;}
.ws12_c00435{word-spacing:0.727200px;}
.wsa_c00435{word-spacing:1.771200px;}
.ws9_c00435{word-spacing:2.008800px;}
.ws10_c00435{word-spacing:2.887200px;}
.ws16_c00435{word-spacing:2.923200px;}
.ws1f_c00435{word-spacing:3.146400px;}
.ws20_c00435{word-spacing:3.189600px;}
.wse_c00435{word-spacing:3.556800px;}
.ws21_c00435{word-spacing:3.585600px;}
.wsf_c00435{word-spacing:3.614400px;}
.ws22_c00435{word-spacing:6.501600px;}
.ws24_c00435{word-spacing:7.610400px;}
.ws23_c00435{word-spacing:7.617600px;}
.ws1b_c00435{word-spacing:7.740000px;}
.ws1c_c00435{word-spacing:7.848000px;}
.ws1d_c00435{word-spacing:7.884000px;}
.ws18_c00435{word-spacing:9.381600px;}
.ws14_c00435{word-spacing:11.894400px;}
.ws15_c00435{word-spacing:11.901600px;}
.wsb_c00435{word-spacing:18.352800px;}
.wsc_c00435{word-spacing:18.432000px;}
.ws13_c00435{word-spacing:19.800000px;}
._0_c00435{margin-left:-1.142280px;}
._1_c00435{width:1.292580px;}
.fc0_c00435{color:rgb(0,0,0);}
.fs6_c00435{font-size:38.880000px;}
.fs3_c00435{font-size:42.120000px;}
.fs5_c00435{font-size:47.880000px;}
.fs2_c00435{font-size:54.000000px;}
.fs0_c00435{font-size:60.120000px;}
.fs1_c00435{font-size:72.000000px;}
.fs4_c00435{font-size:78.120000px;}
.y0_c00435{bottom:0.000000px;}
.y2_c00435{bottom:57.450450px;}
.y3_c00435{bottom:61.410450px;}
.y25_c00435{bottom:113.698470px;}
.y24_c00435{bottom:132.069810px;}
.y23_c00435{bottom:150.336030px;}
.y22_c00435{bottom:168.602250px;}
.y21_c00435{bottom:186.964230px;}
.y20_c00435{bottom:205.234230px;}
.y1f_c00435{bottom:223.498620px;}
.y1e_c00435{bottom:241.864230px;}
.y1d_c00435{bottom:260.130450px;}
.y1c_c00435{bottom:275.340450px;}
.y1b_c00435{bottom:296.040450px;}
.y1a_c00435{bottom:316.740600px;}
.y19_c00435{bottom:343.380600px;}
.y18_c00435{bottom:377.760600px;}
.y17_c00435{bottom:412.230600px;}
.y16_c00435{bottom:446.610600px;}
.y15_c00435{bottom:481.080600px;}
.y14_c00435{bottom:524.460450px;}
.y13_c00435{bottom:558.930450px;}
.y12_c00435{bottom:593.310450px;}
.y11_c00435{bottom:627.780450px;}
.y10_c00435{bottom:672.780450px;}
.yf_c00435{bottom:735.510600px;}
.ye_c00435{bottom:769.890600px;}
.yd_c00435{bottom:804.360450px;}
.yc_c00435{bottom:838.740450px;}
.yb_c00435{bottom:873.210450px;}
.ya_c00435{bottom:916.590450px;}
.y9_c00435{bottom:951.060450px;}
.y8_c00435{bottom:994.440450px;}
.y7_c00435{bottom:1028.910450px;}
.y6_c00435{bottom:1072.290450px;}
.y5_c00435{bottom:1106.760450px;}
.y4_c00435{bottom:1141.140450px;}
.y1_c00435{bottom:1196.940450px;}
.h2_c00435{height:47.988281px;}
.h9_c00435{height:49.937344px;}
.ha_c00435{height:49.944664px;}
.h1_c00435{height:50.315273px;}
.h3_c00435{height:56.320312px;}
.h5_c00435{height:60.257812px;}
.h7_c00435{height:65.130220px;}
.h4_c00435{height:65.130820px;}
.h6_c00435{height:75.093750px;}
.h8_c00435{height:81.476719px;}
.h0_c00435{height:1263.000000px;}
.w1_c00435{width:892.500000px;}
.w0_c00435{width:892.830000px;}
.x0_c00435{left:0.000000px;}
.x7_c00435{left:127.620000px;}
.x6_c00435{left:181.620000px;}
.x4_c00435{left:208.440000px;}
.x1_c00435{left:211.500000px;}
.x5_c00435{left:235.620000px;}
.x3_c00435{left:435.240000px;}
.x2_c00435{left:446.490000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.v1_c00435{vertical-align:26.560000pt;}
.ls13_c00435{letter-spacing:-0.134400pt;}
.ls11_c00435{letter-spacing:-0.128256pt;}
.ls1a_c00435{letter-spacing:-0.083200pt;}
.ls1b_c00435{letter-spacing:-0.038400pt;}
.ls1c_c00435{letter-spacing:-0.034720pt;}
.ls14_c00435{letter-spacing:-0.025600pt;}
.ls17_c00435{letter-spacing:-0.019200pt;}
.ls16_c00435{letter-spacing:-0.012800pt;}
.ls19_c00435{letter-spacing:-0.006400pt;}
.ls20_c00435{letter-spacing:-0.004256pt;}
.ls1f_c00435{letter-spacing:-0.003456pt;}
.ls12_c00435{letter-spacing:0.000000pt;}
.ls9_c00435{letter-spacing:0.003456pt;}
.ls2_c00435{letter-spacing:0.006400pt;}
.ls5_c00435{letter-spacing:0.006944pt;}
.lsc_c00435{letter-spacing:0.008512pt;}
.ls8_c00435{letter-spacing:0.012768pt;}
.ls7_c00435{letter-spacing:0.012800pt;}
.lsd_c00435{letter-spacing:0.016640pt;}
.ls10_c00435{letter-spacing:0.017024pt;}
.ls1d_c00435{letter-spacing:0.019200pt;}
.lse_c00435{letter-spacing:0.021280pt;}
.lsb_c00435{letter-spacing:0.025536pt;}
.ls15_c00435{letter-spacing:0.025600pt;}
.lsf_c00435{letter-spacing:0.029792pt;}
.ls1e_c00435{letter-spacing:0.032000pt;}
.ls0_c00435{letter-spacing:0.042752pt;}
.ls1_c00435{letter-spacing:0.048672pt;}
.ls18_c00435{letter-spacing:0.083200pt;}
.lsa_c00435{letter-spacing:0.092480pt;}
.ls3_c00435{letter-spacing:0.128000pt;}
.ls21_c00435{letter-spacing:0.317952pt;}
.ls4_c00435{letter-spacing:58.048000pt;}
.ls6_c00435{letter-spacing:59.440640pt;}
.ws2_c00435{word-spacing:-17.366944pt;}
.ws1_c00435{word-spacing:-15.916800pt;}
.ws4_c00435{word-spacing:-11.840192pt;}
.ws5_c00435{word-spacing:-9.925632pt;}
.ws3_c00435{word-spacing:-9.604224pt;}
.ws0_c00435{word-spacing:-9.408672pt;}
.ws7_c00435{word-spacing:-0.112224pt;}
.ws1e_c00435{word-spacing:-0.083200pt;}
.ws17_c00435{word-spacing:-0.048608pt;}
.ws2b_c00435{word-spacing:-0.012768pt;}
.ws28_c00435{word-spacing:-0.008512pt;}
.ws26_c00435{word-spacing:-0.006912pt;}
.ws2a_c00435{word-spacing:-0.004256pt;}
.ws8_c00435{word-spacing:0.000000pt;}
.ws25_c00435{word-spacing:0.004256pt;}
.ws27_c00435{word-spacing:0.008512pt;}
.ws11_c00435{word-spacing:0.012800pt;}
.ws29_c00435{word-spacing:0.021280pt;}
.ws6_c00435{word-spacing:0.037408pt;}
.wsd_c00435{word-spacing:0.070400pt;}
.ws1a_c00435{word-spacing:0.300800pt;}
.ws19_c00435{word-spacing:0.358400pt;}
.ws12_c00435{word-spacing:0.646400pt;}
.wsa_c00435{word-spacing:1.574400pt;}
.ws9_c00435{word-spacing:1.785600pt;}
.ws10_c00435{word-spacing:2.566400pt;}
.ws16_c00435{word-spacing:2.598400pt;}
.ws1f_c00435{word-spacing:2.796800pt;}
.ws20_c00435{word-spacing:2.835200pt;}
.wse_c00435{word-spacing:3.161600pt;}
.ws21_c00435{word-spacing:3.187200pt;}
.wsf_c00435{word-spacing:3.212800pt;}
.ws22_c00435{word-spacing:5.779200pt;}
.ws24_c00435{word-spacing:6.764800pt;}
.ws23_c00435{word-spacing:6.771200pt;}
.ws1b_c00435{word-spacing:6.880000pt;}
.ws1c_c00435{word-spacing:6.976000pt;}
.ws1d_c00435{word-spacing:7.008000pt;}
.ws18_c00435{word-spacing:8.339200pt;}
.ws14_c00435{word-spacing:10.572800pt;}
.ws15_c00435{word-spacing:10.579200pt;}
.wsb_c00435{word-spacing:16.313600pt;}
.wsc_c00435{word-spacing:16.384000pt;}
.ws13_c00435{word-spacing:17.600000pt;}
._0_c00435{margin-left:-1.015360pt;}
._1_c00435{width:1.148960pt;}
.fs6_c00435{font-size:34.560000pt;}
.fs3_c00435{font-size:37.440000pt;}
.fs5_c00435{font-size:42.560000pt;}
.fs2_c00435{font-size:48.000000pt;}
.fs0_c00435{font-size:53.440000pt;}
.fs1_c00435{font-size:64.000000pt;}
.fs4_c00435{font-size:69.440000pt;}
.y0_c00435{bottom:0.000000pt;}
.y2_c00435{bottom:51.067067pt;}
.y3_c00435{bottom:54.587067pt;}
.y25_c00435{bottom:101.065307pt;}
.y24_c00435{bottom:117.395387pt;}
.y23_c00435{bottom:133.632027pt;}
.y22_c00435{bottom:149.868667pt;}
.y21_c00435{bottom:166.190427pt;}
.y20_c00435{bottom:182.430427pt;}
.y1f_c00435{bottom:198.665440pt;}
.y1e_c00435{bottom:214.990427pt;}
.y1d_c00435{bottom:231.227067pt;}
.y1c_c00435{bottom:244.747067pt;}
.y1b_c00435{bottom:263.147067pt;}
.y1a_c00435{bottom:281.547200pt;}
.y19_c00435{bottom:305.227200pt;}
.y18_c00435{bottom:335.787200pt;}
.y17_c00435{bottom:366.427200pt;}
.y16_c00435{bottom:396.987200pt;}
.y15_c00435{bottom:427.627200pt;}
.y14_c00435{bottom:466.187067pt;}
.y13_c00435{bottom:496.827067pt;}
.y12_c00435{bottom:527.387067pt;}
.y11_c00435{bottom:558.027067pt;}
.y10_c00435{bottom:598.027067pt;}
.yf_c00435{bottom:653.787200pt;}
.ye_c00435{bottom:684.347200pt;}
.yd_c00435{bottom:714.987067pt;}
.yc_c00435{bottom:745.547067pt;}
.yb_c00435{bottom:776.187067pt;}
.ya_c00435{bottom:814.747067pt;}
.y9_c00435{bottom:845.387067pt;}
.y8_c00435{bottom:883.947067pt;}
.y7_c00435{bottom:914.587067pt;}
.y6_c00435{bottom:953.147067pt;}
.y5_c00435{bottom:983.787067pt;}
.y4_c00435{bottom:1014.347067pt;}
.y1_c00435{bottom:1063.947067pt;}
.h2_c00435{height:42.656250pt;}
.h9_c00435{height:44.388750pt;}
.ha_c00435{height:44.395257pt;}
.h1_c00435{height:44.724687pt;}
.h3_c00435{height:50.062500pt;}
.h5_c00435{height:53.562500pt;}
.h7_c00435{height:57.893529pt;}
.h4_c00435{height:57.894063pt;}
.h6_c00435{height:66.750000pt;}
.h8_c00435{height:72.423750pt;}
.h0_c00435{height:1122.666667pt;}
.w1_c00435{width:793.333333pt;}
.w0_c00435{width:793.626667pt;}
.x0_c00435{left:0.000000pt;}
.x7_c00435{left:113.440000pt;}
.x6_c00435{left:161.440000pt;}
.x4_c00435{left:185.280000pt;}
.x1_c00435{left:188.000000pt;}
.x5_c00435{left:209.440000pt;}
.x3_c00435{left:386.880000pt;}
.x2_c00435{left:396.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_c00436 {
    display:none;
  }
  .loading-indicator_c00436.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00436 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00436 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00436" -> "#page-container .classname_c00436")
 */
.pf_c00436 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00436 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00436 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00436 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00436 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00436 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00436 {overflow:visible;}
  }
}
.c_c00436 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00436 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00436:after { /* webkit #35443 */
  content: '';
}
.t_c00436:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00436 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00436 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00436 { /* info for Javascript */
  display:none;
}
.l_c00436 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00436 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00436 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00436:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00436{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00436;src:url('chunks/assets/font_7f3d5a280ae83047b3e400ff.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00436;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_1a16ced6c21566f574e5b217.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00436;src:url('chunks/assets/font_2d8c262e6f4a24c7b5212a4f.woff2')format("woff");}.ff4_c00436{font-family:ff4_c00436;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_c00436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.v1_c00436{vertical-align:15.840000px;}
.v2_c00436{vertical-align:29.880000px;}
.lsc_c00436{letter-spacing:-0.151200px;}
.lsf_c00436{letter-spacing:-0.043200px;}
.ls13_c00436{letter-spacing:-0.036000px;}
.ls11_c00436{letter-spacing:-0.028800px;}
.lse_c00436{letter-spacing:-0.021600px;}
.lsd_c00436{letter-spacing:-0.014400px;}
.ls10_c00436{letter-spacing:-0.007200px;}
.ls15_c00436{letter-spacing:-0.003888px;}
.ls12_c00436{letter-spacing:0.000000px;}
.ls8_c00436{letter-spacing:0.003888px;}
.ls2_c00436{letter-spacing:0.007200px;}
.ls16_c00436{letter-spacing:0.009576px;}
.ls7_c00436{letter-spacing:0.014364px;}
.ls5_c00436{letter-spacing:0.014400px;}
.ls3_c00436{letter-spacing:0.021600px;}
.lsa_c00436{letter-spacing:0.028728px;}
.ls6_c00436{letter-spacing:0.033516px;}
.lsb_c00436{letter-spacing:0.038304px;}
.ls0_c00436{letter-spacing:0.048096px;}
.ls4_c00436{letter-spacing:0.054756px;}
.ls14_c00436{letter-spacing:0.093600px;}
.ls9_c00436{letter-spacing:0.104040px;}
.ls1_c00436{letter-spacing:1212.120000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00436{word-spacing:-10.804752px;}
.ws0_c00436{word-spacing:-10.584756px;}
.ws28_c00436{word-spacing:-0.093600px;}
.ws30_c00436{word-spacing:-0.019152px;}
.ws2b_c00436{word-spacing:-0.014364px;}
.ws2f_c00436{word-spacing:-0.009576px;}
.ws2d_c00436{word-spacing:-0.007776px;}
.ws10_c00436{word-spacing:-0.007200px;}
.ws3_c00436{word-spacing:0.000000px;}
.ws2c_c00436{word-spacing:0.004788px;}
.wsf_c00436{word-spacing:0.007200px;}
.ws2e_c00436{word-spacing:0.009576px;}
.ws27_c00436{word-spacing:0.014400px;}
.ws23_c00436{word-spacing:0.036000px;}
.ws2_c00436{word-spacing:0.042084px;}
.ws2a_c00436{word-spacing:0.093600px;}
.wsb_c00436{word-spacing:1.814400px;}
.ws1a_c00436{word-spacing:2.124000px;}
.ws19_c00436{word-spacing:2.174400px;}
.ws1f_c00436{word-spacing:2.505600px;}
.wsc_c00436{word-spacing:2.887200px;}
.ws18_c00436{word-spacing:3.578400px;}
.ws17_c00436{word-spacing:3.614400px;}
.ws8_c00436{word-spacing:3.974400px;}
.ws9_c00436{word-spacing:4.104000px;}
.ws24_c00436{word-spacing:4.716000px;}
.wse_c00436{word-spacing:5.090400px;}
.ws6_c00436{word-spacing:5.104800px;}
.wsd_c00436{word-spacing:5.169600px;}
.ws7_c00436{word-spacing:5.176800px;}
.ws20_c00436{word-spacing:6.098400px;}
.ws4_c00436{word-spacing:6.134400px;}
.ws5_c00436{word-spacing:6.141600px;}
.ws25_c00436{word-spacing:6.854400px;}
.ws26_c00436{word-spacing:6.933600px;}
.ws13_c00436{word-spacing:7.610400px;}
.ws14_c00436{word-spacing:7.668000px;}
.wsa_c00436{word-spacing:12.952800px;}
.ws1b_c00436{word-spacing:15.516000px;}
.ws1c_c00436{word-spacing:15.573600px;}
.ws21_c00436{word-spacing:15.854400px;}
.ws22_c00436{word-spacing:15.861600px;}
.ws15_c00436{word-spacing:17.604000px;}
.ws16_c00436{word-spacing:17.676000px;}
.ws1d_c00436{word-spacing:20.102400px;}
.ws1e_c00436{word-spacing:20.174400px;}
.ws29_c00436{word-spacing:21.621600px;}
.ws12_c00436{word-spacing:22.680000px;}
.ws11_c00436{word-spacing:22.701600px;}
._0_c00436{margin-left:-1.322640px;}
._1_c00436{width:1.216800px;}
.fc0_c00436{color:rgb(0,0,0);}
.fs5_c00436{font-size:38.880000px;}
.fs3_c00436{font-size:42.120000px;}
.fs4_c00436{font-size:47.880000px;}
.fs2_c00436{font-size:54.000000px;}
.fs0_c00436{font-size:60.120000px;}
.fs1_c00436{font-size:72.000000px;}
.y0_c00436{bottom:0.000000px;}
.y2_c00436{bottom:57.450450px;}
.y22_c00436{bottom:113.702250px;}
.y21_c00436{bottom:132.064230px;}
.y20_c00436{bottom:150.334230px;}
.y1f_c00436{bottom:168.600450px;}
.y1e_c00436{bottom:183.810600px;}
.y1d_c00436{bottom:204.510600px;}
.y1c_c00436{bottom:225.210600px;}
.y1b_c00436{bottom:278.940600px;}
.y1a_c00436{bottom:313.410600px;}
.y19_c00436{bottom:356.790600px;}
.y18_c00436{bottom:391.260600px;}
.y17_c00436{bottom:425.640600px;}
.y16_c00436{bottom:469.110450px;}
.y15_c00436{bottom:503.490450px;}
.y14_c00436{bottom:537.960450px;}
.y13_c00436{bottom:572.340450px;}
.y12_c00436{bottom:606.810450px;}
.y11_c00436{bottom:641.190450px;}
.y10_c00436{bottom:675.660450px;}
.yf_c00436{bottom:719.040450px;}
.ye_c00436{bottom:753.510450px;}
.yd_c00436{bottom:787.890450px;}
.yc_c00436{bottom:822.360450px;}
.yb_c00436{bottom:856.740450px;}
.ya_c00436{bottom:900.210450px;}
.y9_c00436{bottom:934.590450px;}
.y8_c00436{bottom:969.060450px;}
.y7_c00436{bottom:1003.440450px;}
.y6_c00436{bottom:1037.910450px;}
.y5_c00436{bottom:1072.290450px;}
.y4_c00436{bottom:1106.760450px;}
.y3_c00436{bottom:1141.140450px;}
.y1_c00436{bottom:1196.850450px;}
.h6_c00436{height:47.988281px;}
.h7_c00436{height:49.937344px;}
.h1_c00436{height:50.315273px;}
.h3_c00436{height:60.257812px;}
.h5_c00436{height:65.130220px;}
.h4_c00436{height:65.130820px;}
.h2_c00436{height:72.160312px;}
.h0_c00436{height:1263.000000px;}
.w1_c00436{width:892.500000px;}
.w0_c00436{width:892.830000px;}
.x0_c00436{left:0.000000px;}
.x1_c00436{left:127.620000px;}
.x2_c00436{left:180.810000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.v1_c00436{vertical-align:14.080000pt;}
.v2_c00436{vertical-align:26.560000pt;}
.lsc_c00436{letter-spacing:-0.134400pt;}
.lsf_c00436{letter-spacing:-0.038400pt;}
.ls13_c00436{letter-spacing:-0.032000pt;}
.ls11_c00436{letter-spacing:-0.025600pt;}
.lse_c00436{letter-spacing:-0.019200pt;}
.lsd_c00436{letter-spacing:-0.012800pt;}
.ls10_c00436{letter-spacing:-0.006400pt;}
.ls15_c00436{letter-spacing:-0.003456pt;}
.ls12_c00436{letter-spacing:0.000000pt;}
.ls8_c00436{letter-spacing:0.003456pt;}
.ls2_c00436{letter-spacing:0.006400pt;}
.ls16_c00436{letter-spacing:0.008512pt;}
.ls7_c00436{letter-spacing:0.012768pt;}
.ls5_c00436{letter-spacing:0.012800pt;}
.ls3_c00436{letter-spacing:0.019200pt;}
.lsa_c00436{letter-spacing:0.025536pt;}
.ls6_c00436{letter-spacing:0.029792pt;}
.lsb_c00436{letter-spacing:0.034048pt;}
.ls0_c00436{letter-spacing:0.042752pt;}
.ls4_c00436{letter-spacing:0.048672pt;}
.ls14_c00436{letter-spacing:0.083200pt;}
.ls9_c00436{letter-spacing:0.092480pt;}
.ls1_c00436{letter-spacing:1077.440000pt;}
.ws1_c00436{word-spacing:-9.604224pt;}
.ws0_c00436{word-spacing:-9.408672pt;}
.ws28_c00436{word-spacing:-0.083200pt;}
.ws30_c00436{word-spacing:-0.017024pt;}
.ws2b_c00436{word-spacing:-0.012768pt;}
.ws2f_c00436{word-spacing:-0.008512pt;}
.ws2d_c00436{word-spacing:-0.006912pt;}
.ws10_c00436{word-spacing:-0.006400pt;}
.ws3_c00436{word-spacing:0.000000pt;}
.ws2c_c00436{word-spacing:0.004256pt;}
.wsf_c00436{word-spacing:0.006400pt;}
.ws2e_c00436{word-spacing:0.008512pt;}
.ws27_c00436{word-spacing:0.012800pt;}
.ws23_c00436{word-spacing:0.032000pt;}
.ws2_c00436{word-spacing:0.037408pt;}
.ws2a_c00436{word-spacing:0.083200pt;}
.wsb_c00436{word-spacing:1.612800pt;}
.ws1a_c00436{word-spacing:1.888000pt;}
.ws19_c00436{word-spacing:1.932800pt;}
.ws1f_c00436{word-spacing:2.227200pt;}
.wsc_c00436{word-spacing:2.566400pt;}
.ws18_c00436{word-spacing:3.180800pt;}
.ws17_c00436{word-spacing:3.212800pt;}
.ws8_c00436{word-spacing:3.532800pt;}
.ws9_c00436{word-spacing:3.648000pt;}
.ws24_c00436{word-spacing:4.192000pt;}
.wse_c00436{word-spacing:4.524800pt;}
.ws6_c00436{word-spacing:4.537600pt;}
.wsd_c00436{word-spacing:4.595200pt;}
.ws7_c00436{word-spacing:4.601600pt;}
.ws20_c00436{word-spacing:5.420800pt;}
.ws4_c00436{word-spacing:5.452800pt;}
.ws5_c00436{word-spacing:5.459200pt;}
.ws25_c00436{word-spacing:6.092800pt;}
.ws26_c00436{word-spacing:6.163200pt;}
.ws13_c00436{word-spacing:6.764800pt;}
.ws14_c00436{word-spacing:6.816000pt;}
.wsa_c00436{word-spacing:11.513600pt;}
.ws1b_c00436{word-spacing:13.792000pt;}
.ws1c_c00436{word-spacing:13.843200pt;}
.ws21_c00436{word-spacing:14.092800pt;}
.ws22_c00436{word-spacing:14.099200pt;}
.ws15_c00436{word-spacing:15.648000pt;}
.ws16_c00436{word-spacing:15.712000pt;}
.ws1d_c00436{word-spacing:17.868800pt;}
.ws1e_c00436{word-spacing:17.932800pt;}
.ws29_c00436{word-spacing:19.219200pt;}
.ws12_c00436{word-spacing:20.160000pt;}
.ws11_c00436{word-spacing:20.179200pt;}
._0_c00436{margin-left:-1.175680pt;}
._1_c00436{width:1.081600pt;}
.fs5_c00436{font-size:34.560000pt;}
.fs3_c00436{font-size:37.440000pt;}
.fs4_c00436{font-size:42.560000pt;}
.fs2_c00436{font-size:48.000000pt;}
.fs0_c00436{font-size:53.440000pt;}
.fs1_c00436{font-size:64.000000pt;}
.y0_c00436{bottom:0.000000pt;}
.y2_c00436{bottom:51.067067pt;}
.y22_c00436{bottom:101.068667pt;}
.y21_c00436{bottom:117.390427pt;}
.y20_c00436{bottom:133.630427pt;}
.y1f_c00436{bottom:149.867067pt;}
.y1e_c00436{bottom:163.387200pt;}
.y1d_c00436{bottom:181.787200pt;}
.y1c_c00436{bottom:200.187200pt;}
.y1b_c00436{bottom:247.947200pt;}
.y1a_c00436{bottom:278.587200pt;}
.y19_c00436{bottom:317.147200pt;}
.y18_c00436{bottom:347.787200pt;}
.y17_c00436{bottom:378.347200pt;}
.y16_c00436{bottom:416.987067pt;}
.y15_c00436{bottom:447.547067pt;}
.y14_c00436{bottom:478.187067pt;}
.y13_c00436{bottom:508.747067pt;}
.y12_c00436{bottom:539.387067pt;}
.y11_c00436{bottom:569.947067pt;}
.y10_c00436{bottom:600.587067pt;}
.yf_c00436{bottom:639.147067pt;}
.ye_c00436{bottom:669.787067pt;}
.yd_c00436{bottom:700.347067pt;}
.yc_c00436{bottom:730.987067pt;}
.yb_c00436{bottom:761.547067pt;}
.ya_c00436{bottom:800.187067pt;}
.y9_c00436{bottom:830.747067pt;}
.y8_c00436{bottom:861.387067pt;}
.y7_c00436{bottom:891.947067pt;}
.y6_c00436{bottom:922.587067pt;}
.y5_c00436{bottom:953.147067pt;}
.y4_c00436{bottom:983.787067pt;}
.y3_c00436{bottom:1014.347067pt;}
.y1_c00436{bottom:1063.867067pt;}
.h6_c00436{height:42.656250pt;}
.h7_c00436{height:44.388750pt;}
.h1_c00436{height:44.724687pt;}
.h3_c00436{height:53.562500pt;}
.h5_c00436{height:57.893529pt;}
.h4_c00436{height:57.894062pt;}
.h2_c00436{height:64.142500pt;}
.h0_c00436{height:1122.666667pt;}
.w1_c00436{width:793.333333pt;}
.w0_c00436{width:793.626667pt;}
.x0_c00436{left:0.000000pt;}
.x1_c00436{left:113.440000pt;}
.x2_c00436{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_c00437 {
    display:none;
  }
  .loading-indicator_c00437.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00437 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00437 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00437" -> "#page-container .classname_c00437")
 */
.pf_c00437 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00437 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00437 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00437 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00437 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00437 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00437 {overflow:visible;}
  }
}
.c_c00437 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00437 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00437:after { /* webkit #35443 */
  content: '';
}
.t_c00437:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00437 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00437 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00437 { /* info for Javascript */
  display:none;
}
.l_c00437 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00437 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00437 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00437:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00437{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00437;src:url('chunks/assets/font_d966ed4acc835afc80504a7d.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00437;src:url('chunks/assets/font_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_3e3fb59e8a46f1f937b733bf.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;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_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.v1_c00437{vertical-align:15.279480px;}
.v2_c00437{vertical-align:29.880600px;}
.ls11_c00437{letter-spacing:-0.151200px;}
.lsf_c00437{letter-spacing:-0.144288px;}
.ls15_c00437{letter-spacing:-0.054108px;}
.ls1b_c00437{letter-spacing:-0.048096px;}
.ls1a_c00437{letter-spacing:-0.028800px;}
.ls19_c00437{letter-spacing:-0.024048px;}
.ls17_c00437{letter-spacing:-0.021600px;}
.ls14_c00437{letter-spacing:-0.018036px;}
.ls18_c00437{letter-spacing:-0.014400px;}
.ls13_c00437{letter-spacing:-0.006012px;}
.ls10_c00437{letter-spacing:0.000000px;}
.ls2_c00437{letter-spacing:0.006012px;}
.ls9_c00437{letter-spacing:0.007200px;}
.ls3_c00437{letter-spacing:0.012024px;}
.lsa_c00437{letter-spacing:0.014400px;}
.ls8_c00437{letter-spacing:0.021600px;}
.lse_c00437{letter-spacing:0.033516px;}
.ls4_c00437{letter-spacing:0.036072px;}
.lsd_c00437{letter-spacing:0.038304px;}
.ls5_c00437{letter-spacing:0.042084px;}
.ls0_c00437{letter-spacing:0.048096px;}
.ls1_c00437{letter-spacing:0.054108px;}
.lsb_c00437{letter-spacing:0.054756px;}
.lsc_c00437{letter-spacing:0.060120px;}
.ls6_c00437{letter-spacing:0.078156px;}
.ls7_c00437{letter-spacing:0.136080px;}
.ls16_c00437{letter-spacing:0.168336px;}
.ls12_c00437{letter-spacing:2.609208px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00437{word-spacing:-14.981904px;}
.ws1_c00437{word-spacing:-10.584756px;}
.ws0_c00437{word-spacing:-9.856080px;}
.ws22_c00437{word-spacing:-0.312624px;}
.ws1d_c00437{word-spacing:-0.276552px;}
.ws15_c00437{word-spacing:-0.216432px;}
.ws4_c00437{word-spacing:-0.126252px;}
.ws36_c00437{word-spacing:-0.019152px;}
.ws1b_c00437{word-spacing:-0.007200px;}
.ws5_c00437{word-spacing:0.000000px;}
.ws2f_c00437{word-spacing:0.021600px;}
.ws6_c00437{word-spacing:0.036072px;}
.ws3_c00437{word-spacing:0.042084px;}
.ws1a_c00437{word-spacing:0.050400px;}
.ws31_c00437{word-spacing:0.054108px;}
.ws30_c00437{word-spacing:0.096192px;}
.ws1c_c00437{word-spacing:0.114228px;}
.ws21_c00437{word-spacing:0.769536px;}
.ws28_c00437{word-spacing:1.044000px;}
.ws20_c00437{word-spacing:1.094184px;}
.ws27_c00437{word-spacing:1.108800px;}
.ws29_c00437{word-spacing:1.735200px;}
.ws2a_c00437{word-spacing:1.814400px;}
.wsa_c00437{word-spacing:1.839672px;}
.wsb_c00437{word-spacing:1.875744px;}
.ws1f_c00437{word-spacing:2.200392px;}
.ws1e_c00437{word-spacing:2.561112px;}
.ws7_c00437{word-spacing:2.603196px;}
.ws34_c00437{word-spacing:2.627244px;}
.ws16_c00437{word-spacing:4.298400px;}
.wse_c00437{word-spacing:4.352688px;}
.ws17_c00437{word-spacing:4.377600px;}
.ws2d_c00437{word-spacing:5.032800px;}
.ws2e_c00437{word-spacing:5.076000px;}
.ws8_c00437{word-spacing:5.080140px;}
.ws11_c00437{word-spacing:5.446872px;}
.ws9_c00437{word-spacing:5.476932px;}
.ws19_c00437{word-spacing:5.760000px;}
.ws18_c00437{word-spacing:5.781600px;}
.ws14_c00437{word-spacing:6.132240px;}
.ws12_c00437{word-spacing:6.883740px;}
.wsd_c00437{word-spacing:6.919812px;}
.ws13_c00437{word-spacing:6.949872px;}
.wsc_c00437{word-spacing:7.298568px;}
.wsf_c00437{word-spacing:7.611192px;}
.ws10_c00437{word-spacing:7.665300px;}
.ws24_c00437{word-spacing:7.905600px;}
.ws35_c00437{word-spacing:10.112184px;}
.ws26_c00437{word-spacing:14.335200px;}
.ws25_c00437{word-spacing:14.428800px;}
.ws2c_c00437{word-spacing:15.112800px;}
.ws2b_c00437{word-spacing:15.120000px;}
.ws33_c00437{word-spacing:15.955848px;}
.ws32_c00437{word-spacing:16.310556px;}
.ws23_c00437{word-spacing:25.574400px;}
._2_c00437{margin-left:-3.042072px;}
._0_c00437{margin-left:-1.142280px;}
._1_c00437{width:1.292580px;}
.fc0_c00437{color:rgb(0,0,0);}
.fs3_c00437{font-size:38.880000px;}
.fs4_c00437{font-size:42.120000px;}
.fs5_c00437{font-size:47.880000px;}
.fs2_c00437{font-size:54.000000px;}
.fs0_c00437{font-size:60.120000px;}
.fs1_c00437{font-size:72.000000px;}
.y0_c00437{bottom:0.000000px;}
.y2_c00437{bottom:57.450450px;}
.y3_c00437{bottom:61.410450px;}
.y2b_c00437{bottom:113.706030px;}
.y2a_c00437{bottom:132.068010px;}
.y29_c00437{bottom:150.334230px;}
.y28_c00437{bottom:168.600450px;}
.y27_c00437{bottom:183.810600px;}
.y26_c00437{bottom:204.510600px;}
.y25_c00437{bottom:225.210600px;}
.y24_c00437{bottom:285.585690px;}
.y23_c00437{bottom:302.509470px;}
.y22_c00437{bottom:319.343070px;}
.y21_c00437{bottom:336.266850px;}
.y20_c00437{bottom:353.100450px;}
.y1f_c00437{bottom:393.960450px;}
.y1e_c00437{bottom:428.340450px;}
.y1d_c00437{bottom:462.810450px;}
.y1c_c00437{bottom:497.190450px;}
.y1b_c00437{bottom:540.660450px;}
.y1a_c00437{bottom:575.040450px;}
.y19_c00437{bottom:609.510450px;}
.y18_c00437{bottom:643.890450px;}
.y17_c00437{bottom:687.360450px;}
.y16_c00437{bottom:721.740450px;}
.y15_c00437{bottom:759.256500px;}
.y14_c00437{bottom:776.090100px;}
.y13_c00437{bottom:793.013880px;}
.y12_c00437{bottom:818.850450px;}
.y11_c00437{bottom:859.710450px;}
.y10_c00437{bottom:894.090450px;}
.yf_c00437{bottom:928.560450px;}
.ye_c00437{bottom:965.960580px;}
.yd_c00437{bottom:982.884360px;}
.yc_c00437{bottom:999.717960px;}
.yb_c00437{bottom:1016.641740px;}
.ya_c00437{bottom:1033.475340px;}
.y9_c00437{bottom:1050.399120px;}
.y8_c00437{bottom:1067.232720px;}
.y7_c00437{bottom:1084.156500px;}
.y6_c00437{bottom:1100.990100px;}
.y5_c00437{bottom:1117.913880px;}
.y4_c00437{bottom:1143.750450px;}
.y1_c00437{bottom:1196.940450px;}
.h2_c00437{height:47.988281px;}
.h9_c00437{height:49.937344px;}
.h1_c00437{height:50.315273px;}
.h6_c00437{height:50.371073px;}
.h8_c00437{height:50.374313px;}
.h4_c00437{height:50.474753px;}
.h3_c00437{height:56.320312px;}
.h5_c00437{height:60.257812px;}
.h7_c00437{height:65.131420px;}
.h0_c00437{height:1263.000000px;}
.w1_c00437{width:892.500000px;}
.w0_c00437{width:892.830000px;}
.x0_c00437{left:0.000000px;}
.x6_c00437{left:127.620000px;}
.x4_c00437{left:154.620000px;}
.x5_c00437{left:180.817290px;}
.x1_c00437{left:211.500000px;}
.x3_c00437{left:435.240000px;}
.x2_c00437{left:446.490000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.v1_c00437{vertical-align:13.581760pt;}
.v2_c00437{vertical-align:26.560533pt;}
.ls11_c00437{letter-spacing:-0.134400pt;}
.lsf_c00437{letter-spacing:-0.128256pt;}
.ls15_c00437{letter-spacing:-0.048096pt;}
.ls1b_c00437{letter-spacing:-0.042752pt;}
.ls1a_c00437{letter-spacing:-0.025600pt;}
.ls19_c00437{letter-spacing:-0.021376pt;}
.ls17_c00437{letter-spacing:-0.019200pt;}
.ls14_c00437{letter-spacing:-0.016032pt;}
.ls18_c00437{letter-spacing:-0.012800pt;}
.ls13_c00437{letter-spacing:-0.005344pt;}
.ls10_c00437{letter-spacing:0.000000pt;}
.ls2_c00437{letter-spacing:0.005344pt;}
.ls9_c00437{letter-spacing:0.006400pt;}
.ls3_c00437{letter-spacing:0.010688pt;}
.lsa_c00437{letter-spacing:0.012800pt;}
.ls8_c00437{letter-spacing:0.019200pt;}
.lse_c00437{letter-spacing:0.029792pt;}
.ls4_c00437{letter-spacing:0.032064pt;}
.lsd_c00437{letter-spacing:0.034048pt;}
.ls5_c00437{letter-spacing:0.037408pt;}
.ls0_c00437{letter-spacing:0.042752pt;}
.ls1_c00437{letter-spacing:0.048096pt;}
.lsb_c00437{letter-spacing:0.048672pt;}
.lsc_c00437{letter-spacing:0.053440pt;}
.ls6_c00437{letter-spacing:0.069472pt;}
.ls7_c00437{letter-spacing:0.120960pt;}
.ls16_c00437{letter-spacing:0.149632pt;}
.ls12_c00437{letter-spacing:2.319296pt;}
.ws2_c00437{word-spacing:-13.317248pt;}
.ws1_c00437{word-spacing:-9.408672pt;}
.ws0_c00437{word-spacing:-8.760960pt;}
.ws22_c00437{word-spacing:-0.277888pt;}
.ws1d_c00437{word-spacing:-0.245824pt;}
.ws15_c00437{word-spacing:-0.192384pt;}
.ws4_c00437{word-spacing:-0.112224pt;}
.ws36_c00437{word-spacing:-0.017024pt;}
.ws1b_c00437{word-spacing:-0.006400pt;}
.ws5_c00437{word-spacing:0.000000pt;}
.ws2f_c00437{word-spacing:0.019200pt;}
.ws6_c00437{word-spacing:0.032064pt;}
.ws3_c00437{word-spacing:0.037408pt;}
.ws1a_c00437{word-spacing:0.044800pt;}
.ws31_c00437{word-spacing:0.048096pt;}
.ws30_c00437{word-spacing:0.085504pt;}
.ws1c_c00437{word-spacing:0.101536pt;}
.ws21_c00437{word-spacing:0.684032pt;}
.ws28_c00437{word-spacing:0.928000pt;}
.ws20_c00437{word-spacing:0.972608pt;}
.ws27_c00437{word-spacing:0.985600pt;}
.ws29_c00437{word-spacing:1.542400pt;}
.ws2a_c00437{word-spacing:1.612800pt;}
.wsa_c00437{word-spacing:1.635264pt;}
.wsb_c00437{word-spacing:1.667328pt;}
.ws1f_c00437{word-spacing:1.955904pt;}
.ws1e_c00437{word-spacing:2.276544pt;}
.ws7_c00437{word-spacing:2.313952pt;}
.ws34_c00437{word-spacing:2.335328pt;}
.ws16_c00437{word-spacing:3.820800pt;}
.wse_c00437{word-spacing:3.869056pt;}
.ws17_c00437{word-spacing:3.891200pt;}
.ws2d_c00437{word-spacing:4.473600pt;}
.ws2e_c00437{word-spacing:4.512000pt;}
.ws8_c00437{word-spacing:4.515680pt;}
.ws11_c00437{word-spacing:4.841664pt;}
.ws9_c00437{word-spacing:4.868384pt;}
.ws19_c00437{word-spacing:5.120000pt;}
.ws18_c00437{word-spacing:5.139200pt;}
.ws14_c00437{word-spacing:5.450880pt;}
.ws12_c00437{word-spacing:6.118880pt;}
.wsd_c00437{word-spacing:6.150944pt;}
.ws13_c00437{word-spacing:6.177664pt;}
.wsc_c00437{word-spacing:6.487616pt;}
.wsf_c00437{word-spacing:6.765504pt;}
.ws10_c00437{word-spacing:6.813600pt;}
.ws24_c00437{word-spacing:7.027200pt;}
.ws35_c00437{word-spacing:8.988608pt;}
.ws26_c00437{word-spacing:12.742400pt;}
.ws25_c00437{word-spacing:12.825600pt;}
.ws2c_c00437{word-spacing:13.433600pt;}
.ws2b_c00437{word-spacing:13.440000pt;}
.ws33_c00437{word-spacing:14.182976pt;}
.ws32_c00437{word-spacing:14.498272pt;}
.ws23_c00437{word-spacing:22.732800pt;}
._2_c00437{margin-left:-2.704064pt;}
._0_c00437{margin-left:-1.015360pt;}
._1_c00437{width:1.148960pt;}
.fs3_c00437{font-size:34.560000pt;}
.fs4_c00437{font-size:37.440000pt;}
.fs5_c00437{font-size:42.560000pt;}
.fs2_c00437{font-size:48.000000pt;}
.fs0_c00437{font-size:53.440000pt;}
.fs1_c00437{font-size:64.000000pt;}
.y0_c00437{bottom:0.000000pt;}
.y2_c00437{bottom:51.067067pt;}
.y3_c00437{bottom:54.587067pt;}
.y2b_c00437{bottom:101.072027pt;}
.y2a_c00437{bottom:117.393787pt;}
.y29_c00437{bottom:133.630427pt;}
.y28_c00437{bottom:149.867067pt;}
.y27_c00437{bottom:163.387200pt;}
.y26_c00437{bottom:181.787200pt;}
.y25_c00437{bottom:200.187200pt;}
.y24_c00437{bottom:253.853947pt;}
.y23_c00437{bottom:268.897307pt;}
.y22_c00437{bottom:283.860507pt;}
.y21_c00437{bottom:298.903867pt;}
.y20_c00437{bottom:313.867067pt;}
.y1f_c00437{bottom:350.187067pt;}
.y1e_c00437{bottom:380.747067pt;}
.y1d_c00437{bottom:411.387067pt;}
.y1c_c00437{bottom:441.947067pt;}
.y1b_c00437{bottom:480.587067pt;}
.y1a_c00437{bottom:511.147067pt;}
.y19_c00437{bottom:541.787067pt;}
.y18_c00437{bottom:572.347067pt;}
.y17_c00437{bottom:610.987067pt;}
.y16_c00437{bottom:641.547067pt;}
.y15_c00437{bottom:674.894667pt;}
.y14_c00437{bottom:689.857867pt;}
.y13_c00437{bottom:704.901227pt;}
.y12_c00437{bottom:727.867067pt;}
.y11_c00437{bottom:764.187067pt;}
.y10_c00437{bottom:794.747067pt;}
.yf_c00437{bottom:825.387067pt;}
.ye_c00437{bottom:858.631627pt;}
.yd_c00437{bottom:873.674987pt;}
.yc_c00437{bottom:888.638187pt;}
.yb_c00437{bottom:903.681547pt;}
.ya_c00437{bottom:918.644747pt;}
.y9_c00437{bottom:933.688107pt;}
.y8_c00437{bottom:948.651307pt;}
.y7_c00437{bottom:963.694667pt;}
.y6_c00437{bottom:978.657867pt;}
.y5_c00437{bottom:993.701227pt;}
.y4_c00437{bottom:1016.667067pt;}
.y1_c00437{bottom:1063.947067pt;}
.h2_c00437{height:42.656250pt;}
.h9_c00437{height:44.388750pt;}
.h1_c00437{height:44.724687pt;}
.h6_c00437{height:44.774287pt;}
.h8_c00437{height:44.777168pt;}
.h4_c00437{height:44.866448pt;}
.h3_c00437{height:50.062500pt;}
.h5_c00437{height:53.562500pt;}
.h7_c00437{height:57.894596pt;}
.h0_c00437{height:1122.666667pt;}
.w1_c00437{width:793.333333pt;}
.w0_c00437{width:793.626667pt;}
.x0_c00437{left:0.000000pt;}
.x6_c00437{left:113.440000pt;}
.x4_c00437{left:137.440000pt;}
.x5_c00437{left:160.726480pt;}
.x1_c00437{left:188.000000pt;}
.x3_c00437{left:386.880000pt;}
.x2_c00437{left:396.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_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_5b5b6f64f372c22a6735c8b6.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_12d1595622ae4b047168b217.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00438;src:url('chunks/assets/font_2d8c262e6f4a24c7b5212a4f.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;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_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;}
.v1_c00438{vertical-align:15.840000px;}
.v2_c00438{vertical-align:29.880000px;}
.lsb_c00438{letter-spacing:-0.151200px;}
.ls12_c00438{letter-spacing:-0.050400px;}
.ls10_c00438{letter-spacing:-0.036000px;}
.lsc_c00438{letter-spacing:-0.028800px;}
.lsf_c00438{letter-spacing:-0.021600px;}
.lsd_c00438{letter-spacing:-0.014400px;}
.lse_c00438{letter-spacing:-0.007200px;}
.ls17_c00438{letter-spacing:-0.004788px;}
.ls15_c00438{letter-spacing:-0.003888px;}
.ls13_c00438{letter-spacing:0.000000px;}
.ls8_c00438{letter-spacing:0.003888px;}
.ls3_c00438{letter-spacing:0.007200px;}
.ls16_c00438{letter-spacing:0.009576px;}
.ls7_c00438{letter-spacing:0.014364px;}
.ls6_c00438{letter-spacing:0.014400px;}
.ls4_c00438{letter-spacing:0.021600px;}
.lsa_c00438{letter-spacing:0.028728px;}
.ls5_c00438{letter-spacing:0.028800px;}
.ls11_c00438{letter-spacing:0.036000px;}
.ls0_c00438{letter-spacing:0.048096px;}
.ls2_c00438{letter-spacing:0.054756px;}
.ls14_c00438{letter-spacing:0.093600px;}
.ls9_c00438{letter-spacing:0.104040px;}
.ls1_c00438{letter-spacing:1212.120000px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00438{word-spacing:-10.804752px;}
.ws0_c00438{word-spacing:-10.584756px;}
.ws23_c00438{word-spacing:-0.086400px;}
.ws2a_c00438{word-spacing:-0.009576px;}
.ws28_c00438{word-spacing:-0.007776px;}
.ws1a_c00438{word-spacing:-0.007200px;}
.ws3_c00438{word-spacing:0.000000px;}
.ws27_c00438{word-spacing:0.004788px;}
.ws29_c00438{word-spacing:0.009576px;}
.ws6_c00438{word-spacing:0.014400px;}
.ws17_c00438{word-spacing:0.021600px;}
.ws2b_c00438{word-spacing:0.023940px;}
.ws2_c00438{word-spacing:0.042084px;}
.ws26_c00438{word-spacing:0.050400px;}
.ws22_c00438{word-spacing:0.086400px;}
.ws18_c00438{word-spacing:0.727200px;}
.ws19_c00438{word-spacing:0.770400px;}
.ws25_c00438{word-spacing:1.454400px;}
.ws24_c00438{word-spacing:1.461600px;}
.ws7_c00438{word-spacing:1.742400px;}
.ws8_c00438{word-spacing:1.821600px;}
.wsf_c00438{word-spacing:2.188800px;}
.wsa_c00438{word-spacing:2.901600px;}
.wsb_c00438{word-spacing:2.908800px;}
.wse_c00438{word-spacing:4.716000px;}
.ws1e_c00438{word-spacing:5.040000px;}
.ws1d_c00438{word-spacing:5.047200px;}
.wsd_c00438{word-spacing:5.364000px;}
.wsc_c00438{word-spacing:5.371200px;}
.ws13_c00438{word-spacing:5.774400px;}
.ws20_c00438{word-spacing:6.508800px;}
.ws1f_c00438{word-spacing:6.530400px;}
.ws1c_c00438{word-spacing:7.531200px;}
.ws14_c00438{word-spacing:7.552800px;}
.ws1b_c00438{word-spacing:7.567200px;}
.ws15_c00438{word-spacing:7.596000px;}
.ws16_c00438{word-spacing:7.610400px;}
.ws21_c00438{word-spacing:10.425600px;}
.ws5_c00438{word-spacing:10.814400px;}
.ws4_c00438{word-spacing:12.268800px;}
.ws10_c00438{word-spacing:17.956800px;}
.ws11_c00438{word-spacing:18.036000px;}
.ws12_c00438{word-spacing:24.141600px;}
.ws9_c00438{word-spacing:29.174400px;}
._0_c00438{margin-left:-1.322640px;}
._1_c00438{width:1.080000px;}
.fc0_c00438{color:rgb(0,0,0);}
.fs5_c00438{font-size:38.880000px;}
.fs3_c00438{font-size:42.120000px;}
.fs4_c00438{font-size:47.880000px;}
.fs2_c00438{font-size:54.000000px;}
.fs0_c00438{font-size:60.120000px;}
.fs1_c00438{font-size:72.000000px;}
.y0_c00438{bottom:0.000000px;}
.y2_c00438{bottom:57.450450px;}
.y21_c00438{bottom:113.698470px;}
.y20_c00438{bottom:132.064230px;}
.y1f_c00438{bottom:150.334230px;}
.y1e_c00438{bottom:168.600450px;}
.y1d_c00438{bottom:183.810600px;}
.y1c_c00438{bottom:204.510600px;}
.y1b_c00438{bottom:225.210450px;}
.y1a_c00438{bottom:322.410450px;}
.y19_c00438{bottom:356.790450px;}
.y18_c00438{bottom:400.260450px;}
.y17_c00438{bottom:434.640450px;}
.y16_c00438{bottom:469.110450px;}
.y15_c00438{bottom:503.490450px;}
.y14_c00438{bottom:537.960450px;}
.y13_c00438{bottom:572.340450px;}
.y12_c00438{bottom:606.810450px;}
.y11_c00438{bottom:650.190450px;}
.y10_c00438{bottom:684.660450px;}
.yf_c00438{bottom:719.040450px;}
.ye_c00438{bottom:753.510450px;}
.yd_c00438{bottom:787.890450px;}
.yc_c00438{bottom:822.360450px;}
.yb_c00438{bottom:856.740450px;}
.ya_c00438{bottom:891.210450px;}
.y9_c00438{bottom:925.590450px;}
.y8_c00438{bottom:960.060450px;}
.y7_c00438{bottom:994.440450px;}
.y6_c00438{bottom:1028.910450px;}
.y5_c00438{bottom:1072.290450px;}
.y4_c00438{bottom:1106.760450px;}
.y3_c00438{bottom:1141.140450px;}
.y1_c00438{bottom:1196.850450px;}
.h6_c00438{height:47.988281px;}
.h5_c00438{height:47.988881px;}
.h7_c00438{height:49.937344px;}
.h1_c00438{height:50.315273px;}
.h3_c00438{height:60.257812px;}
.h4_c00438{height:65.130820px;}
.h2_c00438{height:72.160312px;}
.h0_c00438{height:1263.000000px;}
.w1_c00438{width:892.500000px;}
.w0_c00438{width:892.830000px;}
.x0_c00438{left:0.000000px;}
.x1_c00438{left:127.620000px;}
.x2_c00438{left:180.810000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.v1_c00438{vertical-align:14.080000pt;}
.v2_c00438{vertical-align:26.560000pt;}
.lsb_c00438{letter-spacing:-0.134400pt;}
.ls12_c00438{letter-spacing:-0.044800pt;}
.ls10_c00438{letter-spacing:-0.032000pt;}
.lsc_c00438{letter-spacing:-0.025600pt;}
.lsf_c00438{letter-spacing:-0.019200pt;}
.lsd_c00438{letter-spacing:-0.012800pt;}
.lse_c00438{letter-spacing:-0.006400pt;}
.ls17_c00438{letter-spacing:-0.004256pt;}
.ls15_c00438{letter-spacing:-0.003456pt;}
.ls13_c00438{letter-spacing:0.000000pt;}
.ls8_c00438{letter-spacing:0.003456pt;}
.ls3_c00438{letter-spacing:0.006400pt;}
.ls16_c00438{letter-spacing:0.008512pt;}
.ls7_c00438{letter-spacing:0.012768pt;}
.ls6_c00438{letter-spacing:0.012800pt;}
.ls4_c00438{letter-spacing:0.019200pt;}
.lsa_c00438{letter-spacing:0.025536pt;}
.ls5_c00438{letter-spacing:0.025600pt;}
.ls11_c00438{letter-spacing:0.032000pt;}
.ls0_c00438{letter-spacing:0.042752pt;}
.ls2_c00438{letter-spacing:0.048672pt;}
.ls14_c00438{letter-spacing:0.083200pt;}
.ls9_c00438{letter-spacing:0.092480pt;}
.ls1_c00438{letter-spacing:1077.440000pt;}
.ws1_c00438{word-spacing:-9.604224pt;}
.ws0_c00438{word-spacing:-9.408672pt;}
.ws23_c00438{word-spacing:-0.076800pt;}
.ws2a_c00438{word-spacing:-0.008512pt;}
.ws28_c00438{word-spacing:-0.006912pt;}
.ws1a_c00438{word-spacing:-0.006400pt;}
.ws3_c00438{word-spacing:0.000000pt;}
.ws27_c00438{word-spacing:0.004256pt;}
.ws29_c00438{word-spacing:0.008512pt;}
.ws6_c00438{word-spacing:0.012800pt;}
.ws17_c00438{word-spacing:0.019200pt;}
.ws2b_c00438{word-spacing:0.021280pt;}
.ws2_c00438{word-spacing:0.037408pt;}
.ws26_c00438{word-spacing:0.044800pt;}
.ws22_c00438{word-spacing:0.076800pt;}
.ws18_c00438{word-spacing:0.646400pt;}
.ws19_c00438{word-spacing:0.684800pt;}
.ws25_c00438{word-spacing:1.292800pt;}
.ws24_c00438{word-spacing:1.299200pt;}
.ws7_c00438{word-spacing:1.548800pt;}
.ws8_c00438{word-spacing:1.619200pt;}
.wsf_c00438{word-spacing:1.945600pt;}
.wsa_c00438{word-spacing:2.579200pt;}
.wsb_c00438{word-spacing:2.585600pt;}
.wse_c00438{word-spacing:4.192000pt;}
.ws1e_c00438{word-spacing:4.480000pt;}
.ws1d_c00438{word-spacing:4.486400pt;}
.wsd_c00438{word-spacing:4.768000pt;}
.wsc_c00438{word-spacing:4.774400pt;}
.ws13_c00438{word-spacing:5.132800pt;}
.ws20_c00438{word-spacing:5.785600pt;}
.ws1f_c00438{word-spacing:5.804800pt;}
.ws1c_c00438{word-spacing:6.694400pt;}
.ws14_c00438{word-spacing:6.713600pt;}
.ws1b_c00438{word-spacing:6.726400pt;}
.ws15_c00438{word-spacing:6.752000pt;}
.ws16_c00438{word-spacing:6.764800pt;}
.ws21_c00438{word-spacing:9.267200pt;}
.ws5_c00438{word-spacing:9.612800pt;}
.ws4_c00438{word-spacing:10.905600pt;}
.ws10_c00438{word-spacing:15.961600pt;}
.ws11_c00438{word-spacing:16.032000pt;}
.ws12_c00438{word-spacing:21.459200pt;}
.ws9_c00438{word-spacing:25.932800pt;}
._0_c00438{margin-left:-1.175680pt;}
._1_c00438{width:0.960000pt;}
.fs5_c00438{font-size:34.560000pt;}
.fs3_c00438{font-size:37.440000pt;}
.fs4_c00438{font-size:42.560000pt;}
.fs2_c00438{font-size:48.000000pt;}
.fs0_c00438{font-size:53.440000pt;}
.fs1_c00438{font-size:64.000000pt;}
.y0_c00438{bottom:0.000000pt;}
.y2_c00438{bottom:51.067067pt;}
.y21_c00438{bottom:101.065307pt;}
.y20_c00438{bottom:117.390427pt;}
.y1f_c00438{bottom:133.630427pt;}
.y1e_c00438{bottom:149.867067pt;}
.y1d_c00438{bottom:163.387200pt;}
.y1c_c00438{bottom:181.787200pt;}
.y1b_c00438{bottom:200.187067pt;}
.y1a_c00438{bottom:286.587067pt;}
.y19_c00438{bottom:317.147067pt;}
.y18_c00438{bottom:355.787067pt;}
.y17_c00438{bottom:386.347067pt;}
.y16_c00438{bottom:416.987067pt;}
.y15_c00438{bottom:447.547067pt;}
.y14_c00438{bottom:478.187067pt;}
.y13_c00438{bottom:508.747067pt;}
.y12_c00438{bottom:539.387067pt;}
.y11_c00438{bottom:577.947067pt;}
.y10_c00438{bottom:608.587067pt;}
.yf_c00438{bottom:639.147067pt;}
.ye_c00438{bottom:669.787067pt;}
.yd_c00438{bottom:700.347067pt;}
.yc_c00438{bottom:730.987067pt;}
.yb_c00438{bottom:761.547067pt;}
.ya_c00438{bottom:792.187067pt;}
.y9_c00438{bottom:822.747067pt;}
.y8_c00438{bottom:853.387067pt;}
.y7_c00438{bottom:883.947067pt;}
.y6_c00438{bottom:914.587067pt;}
.y5_c00438{bottom:953.147067pt;}
.y4_c00438{bottom:983.787067pt;}
.y3_c00438{bottom:1014.347067pt;}
.y1_c00438{bottom:1063.867067pt;}
.h6_c00438{height:42.656250pt;}
.h5_c00438{height:42.656783pt;}
.h7_c00438{height:44.388750pt;}
.h1_c00438{height:44.724687pt;}
.h3_c00438{height:53.562500pt;}
.h4_c00438{height:57.894062pt;}
.h2_c00438{height:64.142500pt;}
.h0_c00438{height:1122.666667pt;}
.w1_c00438{width:793.333333pt;}
.w0_c00438{width:793.626667pt;}
.x0_c00438{left:0.000000pt;}
.x1_c00438{left:113.440000pt;}
.x2_c00438{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_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_b2ef632d8b4d122d887a3350.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_7be4362e9dc23aa2ebd25e37.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c00439{vertical-align:-15.120000px;}
.v0_c00439{vertical-align:0.000000px;}
.v2_c00439{vertical-align:15.179040px;}
.v1_c00439{vertical-align:29.880000px;}
.ls13_c00439{letter-spacing:-0.151200px;}
.ls11_c00439{letter-spacing:-0.144288px;}
.ls16_c00439{letter-spacing:-0.057600px;}
.ls1a_c00439{letter-spacing:-0.043200px;}
.ls1c_c00439{letter-spacing:-0.042084px;}
.ls1e_c00439{letter-spacing:-0.028800px;}
.ls1b_c00439{letter-spacing:-0.024048px;}
.ls15_c00439{letter-spacing:-0.021600px;}
.ls18_c00439{letter-spacing:-0.014400px;}
.ls17_c00439{letter-spacing:-0.007200px;}
.ls12_c00439{letter-spacing:0.000000px;}
.ls5_c00439{letter-spacing:0.007200px;}
.lse_c00439{letter-spacing:0.009576px;}
.ls3_c00439{letter-spacing:0.014400px;}
.ls1_c00439{letter-spacing:0.021600px;}
.lsc_c00439{letter-spacing:0.023940px;}
.ls6_c00439{letter-spacing:0.024048px;}
.lsb_c00439{letter-spacing:0.028728px;}
.ls4_c00439{letter-spacing:0.028800px;}
.ls7_c00439{letter-spacing:0.030060px;}
.lsf_c00439{letter-spacing:0.033516px;}
.lsa_c00439{letter-spacing:0.038304px;}
.ls8_c00439{letter-spacing:0.042084px;}
.ls14_c00439{letter-spacing:0.043200px;}
.ls0_c00439{letter-spacing:0.048096px;}
.ls2_c00439{letter-spacing:0.054756px;}
.ls19_c00439{letter-spacing:0.093600px;}
.ls10_c00439{letter-spacing:0.105336px;}
.ls9_c00439{letter-spacing:0.136080px;}
.lsd_c00439{letter-spacing:0.138852px;}
.ls1d_c00439{letter-spacing:0.168336px;}
.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;}
}
.ws0_c00439{word-spacing:-17.942400px;}
.ws1_c00439{word-spacing:-10.584756px;}
.ws2_c00439{word-spacing:-9.856080px;}
.ws4_c00439{word-spacing:-0.126252px;}
.ws16_c00439{word-spacing:-0.093600px;}
.ws31_c00439{word-spacing:-0.086184px;}
.ws2a_c00439{word-spacing:-0.019152px;}
.ws1a_c00439{word-spacing:-0.014400px;}
.ws2b_c00439{word-spacing:-0.009576px;}
.ws5_c00439{word-spacing:0.000000px;}
.wsa_c00439{word-spacing:0.007200px;}
.ws2e_c00439{word-spacing:0.009576px;}
.ws3_c00439{word-spacing:0.042084px;}
.ws25_c00439{word-spacing:0.090180px;}
.ws15_c00439{word-spacing:0.705600px;}
.ws14_c00439{word-spacing:0.727200px;}
.ws28_c00439{word-spacing:1.497600px;}
.ws27_c00439{word-spacing:1.519200px;}
.ws2c_c00439{word-spacing:1.781136px;}
.ws2d_c00439{word-spacing:1.795500px;}
.wsc_c00439{word-spacing:2.563200px;}
.ws1b_c00439{word-spacing:2.872800px;}
.ws9_c00439{word-spacing:2.901600px;}
.ws1c_c00439{word-spacing:2.923200px;}
.ws2f_c00439{word-spacing:3.222324px;}
.ws30_c00439{word-spacing:3.231900px;}
.ws22_c00439{word-spacing:5.080140px;}
.ws21_c00439{word-spacing:5.152284px;}
.ws11_c00439{word-spacing:5.385600px;}
.ws12_c00439{word-spacing:5.457600px;}
.ws13_c00439{word-spacing:5.515200px;}
.ws19_c00439{word-spacing:6.112800px;}
.ws20_c00439{word-spacing:7.617204px;}
.ws26_c00439{word-spacing:8.287200px;}
.wse_c00439{word-spacing:8.618400px;}
.wsd_c00439{word-spacing:8.697600px;}
.ws8_c00439{word-spacing:8.992800px;}
.wsf_c00439{word-spacing:9.374400px;}
.ws10_c00439{word-spacing:9.424800px;}
.ws1f_c00439{word-spacing:9.426816px;}
.ws29_c00439{word-spacing:9.734400px;}
.ws7_c00439{word-spacing:10.036800px;}
.ws6_c00439{word-spacing:10.116000px;}
.wsb_c00439{word-spacing:10.785600px;}
.ws23_c00439{word-spacing:10.845648px;}
.ws24_c00439{word-spacing:10.929816px;}
.ws17_c00439{word-spacing:14.126400px;}
.ws18_c00439{word-spacing:14.198400px;}
.ws1d_c00439{word-spacing:15.861600px;}
.ws1e_c00439{word-spacing:16.063200px;}
._0_c00439{margin-left:-1.142280px;}
._1_c00439{width:1.292580px;}
.fc0_c00439{color:rgb(0,0,0);}
.fs4_c00439{font-size:38.880000px;}
.fs3_c00439{font-size:42.120000px;}
.fs5_c00439{font-size:47.880000px;}
.fs2_c00439{font-size:54.000000px;}
.fs0_c00439{font-size:60.120000px;}
.fs1_c00439{font-size:72.000000px;}
.y0_c00439{bottom:0.000000px;}
.y2_c00439{bottom:57.450450px;}
.y3_c00439{bottom:61.410450px;}
.y26_c00439{bottom:113.713050px;}
.y25_c00439{bottom:132.075030px;}
.y24_c00439{bottom:145.840530px;}
.y23_c00439{bottom:164.106750px;}
.y22_c00439{bottom:182.468730px;}
.y21_c00439{bottom:196.234230px;}
.y20_c00439{bottom:214.500450px;}
.y1f_c00439{bottom:229.710450px;}
.y1e_c00439{bottom:250.410450px;}
.y1d_c00439{bottom:271.110600px;}
.y1c_c00439{bottom:348.690600px;}
.y1b_c00439{bottom:383.160600px;}
.y1a_c00439{bottom:417.540600px;}
.y19_c00439{bottom:455.055690px;}
.y18_c00439{bottom:471.889290px;}
.y17_c00439{bottom:488.813070px;}
.y16_c00439{bottom:505.646670px;}
.y15_c00439{bottom:522.570450px;}
.y14_c00439{bottom:563.340450px;}
.y13_c00439{bottom:597.810450px;}
.y12_c00439{bottom:632.190450px;}
.y11_c00439{bottom:675.660450px;}
.y10_c00439{bottom:710.040450px;}
.yf_c00439{bottom:744.510450px;}
.ye_c00439{bottom:787.890450px;}
.yd_c00439{bottom:822.360450px;}
.yc_c00439{bottom:856.740450px;}
.yb_c00439{bottom:891.210450px;}
.ya_c00439{bottom:925.590450px;}
.y9_c00439{bottom:960.060450px;}
.y8_c00439{bottom:994.440450px;}
.y7_c00439{bottom:1037.910450px;}
.y6_c00439{bottom:1072.290450px;}
.y5_c00439{bottom:1106.760450px;}
.y4_c00439{bottom:1141.140450px;}
.y1_c00439{bottom:1196.940450px;}
.h2_c00439{height:47.988281px;}
.h8_c00439{height:49.937344px;}
.h1_c00439{height:50.315273px;}
.h7_c00439{height:50.374313px;}
.h3_c00439{height:56.320312px;}
.h4_c00439{height:60.257812px;}
.h5_c00439{height:65.130820px;}
.h6_c00439{height:65.131420px;}
.h0_c00439{height:1263.000000px;}
.w1_c00439{width:892.500000px;}
.w0_c00439{width:892.830000px;}
.x0_c00439{left:0.000000px;}
.x5_c00439{left:127.620000px;}
.x6_c00439{left:141.122160px;}
.x4_c00439{left:180.810000px;}
.x1_c00439{left:211.500000px;}
.x3_c00439{left:435.240000px;}
.x2_c00439{left:446.490000px;}
@media print{
.v3_c00439{vertical-align:-13.440000pt;}
.v0_c00439{vertical-align:0.000000pt;}
.v2_c00439{vertical-align:13.492480pt;}
.v1_c00439{vertical-align:26.560000pt;}
.ls13_c00439{letter-spacing:-0.134400pt;}
.ls11_c00439{letter-spacing:-0.128256pt;}
.ls16_c00439{letter-spacing:-0.051200pt;}
.ls1a_c00439{letter-spacing:-0.038400pt;}
.ls1c_c00439{letter-spacing:-0.037408pt;}
.ls1e_c00439{letter-spacing:-0.025600pt;}
.ls1b_c00439{letter-spacing:-0.021376pt;}
.ls15_c00439{letter-spacing:-0.019200pt;}
.ls18_c00439{letter-spacing:-0.012800pt;}
.ls17_c00439{letter-spacing:-0.006400pt;}
.ls12_c00439{letter-spacing:0.000000pt;}
.ls5_c00439{letter-spacing:0.006400pt;}
.lse_c00439{letter-spacing:0.008512pt;}
.ls3_c00439{letter-spacing:0.012800pt;}
.ls1_c00439{letter-spacing:0.019200pt;}
.lsc_c00439{letter-spacing:0.021280pt;}
.ls6_c00439{letter-spacing:0.021376pt;}
.lsb_c00439{letter-spacing:0.025536pt;}
.ls4_c00439{letter-spacing:0.025600pt;}
.ls7_c00439{letter-spacing:0.026720pt;}
.lsf_c00439{letter-spacing:0.029792pt;}
.lsa_c00439{letter-spacing:0.034048pt;}
.ls8_c00439{letter-spacing:0.037408pt;}
.ls14_c00439{letter-spacing:0.038400pt;}
.ls0_c00439{letter-spacing:0.042752pt;}
.ls2_c00439{letter-spacing:0.048672pt;}
.ls19_c00439{letter-spacing:0.083200pt;}
.ls10_c00439{letter-spacing:0.093632pt;}
.ls9_c00439{letter-spacing:0.120960pt;}
.lsd_c00439{letter-spacing:0.123424pt;}
.ls1d_c00439{letter-spacing:0.149632pt;}
.ws0_c00439{word-spacing:-15.948800pt;}
.ws1_c00439{word-spacing:-9.408672pt;}
.ws2_c00439{word-spacing:-8.760960pt;}
.ws4_c00439{word-spacing:-0.112224pt;}
.ws16_c00439{word-spacing:-0.083200pt;}
.ws31_c00439{word-spacing:-0.076608pt;}
.ws2a_c00439{word-spacing:-0.017024pt;}
.ws1a_c00439{word-spacing:-0.012800pt;}
.ws2b_c00439{word-spacing:-0.008512pt;}
.ws5_c00439{word-spacing:0.000000pt;}
.wsa_c00439{word-spacing:0.006400pt;}
.ws2e_c00439{word-spacing:0.008512pt;}
.ws3_c00439{word-spacing:0.037408pt;}
.ws25_c00439{word-spacing:0.080160pt;}
.ws15_c00439{word-spacing:0.627200pt;}
.ws14_c00439{word-spacing:0.646400pt;}
.ws28_c00439{word-spacing:1.331200pt;}
.ws27_c00439{word-spacing:1.350400pt;}
.ws2c_c00439{word-spacing:1.583232pt;}
.ws2d_c00439{word-spacing:1.596000pt;}
.wsc_c00439{word-spacing:2.278400pt;}
.ws1b_c00439{word-spacing:2.553600pt;}
.ws9_c00439{word-spacing:2.579200pt;}
.ws1c_c00439{word-spacing:2.598400pt;}
.ws2f_c00439{word-spacing:2.864288pt;}
.ws30_c00439{word-spacing:2.872800pt;}
.ws22_c00439{word-spacing:4.515680pt;}
.ws21_c00439{word-spacing:4.579808pt;}
.ws11_c00439{word-spacing:4.787200pt;}
.ws12_c00439{word-spacing:4.851200pt;}
.ws13_c00439{word-spacing:4.902400pt;}
.ws19_c00439{word-spacing:5.433600pt;}
.ws20_c00439{word-spacing:6.770848pt;}
.ws26_c00439{word-spacing:7.366400pt;}
.wse_c00439{word-spacing:7.660800pt;}
.wsd_c00439{word-spacing:7.731200pt;}
.ws8_c00439{word-spacing:7.993600pt;}
.wsf_c00439{word-spacing:8.332800pt;}
.ws10_c00439{word-spacing:8.377600pt;}
.ws1f_c00439{word-spacing:8.379392pt;}
.ws29_c00439{word-spacing:8.652800pt;}
.ws7_c00439{word-spacing:8.921600pt;}
.ws6_c00439{word-spacing:8.992000pt;}
.wsb_c00439{word-spacing:9.587200pt;}
.ws23_c00439{word-spacing:9.640576pt;}
.ws24_c00439{word-spacing:9.715392pt;}
.ws17_c00439{word-spacing:12.556800pt;}
.ws18_c00439{word-spacing:12.620800pt;}
.ws1d_c00439{word-spacing:14.099200pt;}
.ws1e_c00439{word-spacing:14.278400pt;}
._0_c00439{margin-left:-1.015360pt;}
._1_c00439{width:1.148960pt;}
.fs4_c00439{font-size:34.560000pt;}
.fs3_c00439{font-size:37.440000pt;}
.fs5_c00439{font-size:42.560000pt;}
.fs2_c00439{font-size:48.000000pt;}
.fs0_c00439{font-size:53.440000pt;}
.fs1_c00439{font-size:64.000000pt;}
.y0_c00439{bottom:0.000000pt;}
.y2_c00439{bottom:51.067067pt;}
.y3_c00439{bottom:54.587067pt;}
.y26_c00439{bottom:101.078267pt;}
.y25_c00439{bottom:117.400027pt;}
.y24_c00439{bottom:129.636027pt;}
.y23_c00439{bottom:145.872667pt;}
.y22_c00439{bottom:162.194427pt;}
.y21_c00439{bottom:174.430427pt;}
.y20_c00439{bottom:190.667067pt;}
.y1f_c00439{bottom:204.187067pt;}
.y1e_c00439{bottom:222.587067pt;}
.y1d_c00439{bottom:240.987200pt;}
.y1c_c00439{bottom:309.947200pt;}
.y1b_c00439{bottom:340.587200pt;}
.y1a_c00439{bottom:371.147200pt;}
.y19_c00439{bottom:404.493947pt;}
.y18_c00439{bottom:419.457147pt;}
.y17_c00439{bottom:434.500507pt;}
.y16_c00439{bottom:449.463707pt;}
.y15_c00439{bottom:464.507067pt;}
.y14_c00439{bottom:500.747067pt;}
.y13_c00439{bottom:531.387067pt;}
.y12_c00439{bottom:561.947067pt;}
.y11_c00439{bottom:600.587067pt;}
.y10_c00439{bottom:631.147067pt;}
.yf_c00439{bottom:661.787067pt;}
.ye_c00439{bottom:700.347067pt;}
.yd_c00439{bottom:730.987067pt;}
.yc_c00439{bottom:761.547067pt;}
.yb_c00439{bottom:792.187067pt;}
.ya_c00439{bottom:822.747067pt;}
.y9_c00439{bottom:853.387067pt;}
.y8_c00439{bottom:883.947067pt;}
.y7_c00439{bottom:922.587067pt;}
.y6_c00439{bottom:953.147067pt;}
.y5_c00439{bottom:983.787067pt;}
.y4_c00439{bottom:1014.347067pt;}
.y1_c00439{bottom:1063.947067pt;}
.h2_c00439{height:42.656250pt;}
.h8_c00439{height:44.388750pt;}
.h1_c00439{height:44.724687pt;}
.h7_c00439{height:44.777168pt;}
.h3_c00439{height:50.062500pt;}
.h4_c00439{height:53.562500pt;}
.h5_c00439{height:57.894063pt;}
.h6_c00439{height:57.894596pt;}
.h0_c00439{height:1122.666667pt;}
.w1_c00439{width:793.333333pt;}
.w0_c00439{width:793.626667pt;}
.x0_c00439{left:0.000000pt;}
.x5_c00439{left:113.440000pt;}
.x6_c00439{left:125.441920pt;}
.x4_c00439{left:160.720000pt;}
.x1_c00439{left:188.000000pt;}
.x3_c00439{left:386.880000pt;}
.x2_c00439{left:396.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_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_80f9eb256ba9bc59ad33ddb1.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00440;src:url('chunks/assets/font_3d5d2ba1b36f25821306d520.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00440;src:url('chunks/assets/font_6f22dc3479550cd77977868a.woff2')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:1.102051;font-style: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;}
.v1_c00440{vertical-align:15.840000px;}
.v2_c00440{vertical-align:29.880000px;}
.lsa_c00440{letter-spacing:-0.151200px;}
.ls11_c00440{letter-spacing:-0.036000px;}
.lse_c00440{letter-spacing:-0.028800px;}
.lsc_c00440{letter-spacing:-0.021600px;}
.lsd_c00440{letter-spacing:-0.014400px;}
.lsb_c00440{letter-spacing:-0.007200px;}
.ls10_c00440{letter-spacing:0.000000px;}
.ls2_c00440{letter-spacing:0.007200px;}
.ls7_c00440{letter-spacing:0.014400px;}
.ls8_c00440{letter-spacing:0.028728px;}
.ls4_c00440{letter-spacing:0.028800px;}
.ls9_c00440{letter-spacing:0.038304px;}
.ls0_c00440{letter-spacing:0.048096px;}
.ls3_c00440{letter-spacing:0.054756px;}
.lsf_c00440{letter-spacing:0.093600px;}
.ls5_c00440{letter-spacing:0.153720px;}
.ls6_c00440{letter-spacing:22.680000px;}
.ls1_c00440{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00440{word-spacing:-10.584756px;}
.wsc_c00440{word-spacing:-0.086400px;}
.ws28_c00440{word-spacing:-0.019152px;}
.ws29_c00440{word-spacing:-0.014364px;}
.ws27_c00440{word-spacing:-0.009576px;}
.ws2_c00440{word-spacing:0.000000px;}
.ws26_c00440{word-spacing:0.014400px;}
.ws16_c00440{word-spacing:0.021600px;}
.wsb_c00440{word-spacing:0.028800px;}
.ws1_c00440{word-spacing:0.042084px;}
.ws15_c00440{word-spacing:0.057600px;}
.ws17_c00440{word-spacing:0.064800px;}
.ws13_c00440{word-spacing:0.727200px;}
.ws14_c00440{word-spacing:0.828000px;}
.ws24_c00440{word-spacing:1.432800px;}
.ws25_c00440{word-spacing:1.483200px;}
.ws12_c00440{word-spacing:1.749600px;}
.ws11_c00440{word-spacing:1.807200px;}
.wsa_c00440{word-spacing:1.843200px;}
.ws19_c00440{word-spacing:3.247200px;}
.ws1a_c00440{word-spacing:3.319200px;}
.ws5_c00440{word-spacing:3.636000px;}
.ws6_c00440{word-spacing:3.686400px;}
.wsf_c00440{word-spacing:3.981600px;}
.ws10_c00440{word-spacing:4.053600px;}
.ws1d_c00440{word-spacing:4.687200px;}
.ws1e_c00440{word-spacing:4.809600px;}
.ws1b_c00440{word-spacing:5.414400px;}
.ws1c_c00440{word-spacing:5.464800px;}
.ws9_c00440{word-spacing:6.112800px;}
.ws8_c00440{word-spacing:6.148800px;}
.ws7_c00440{word-spacing:7.963200px;}
.wse_c00440{word-spacing:13.269600px;}
.wsd_c00440{word-spacing:13.291200px;}
.ws1f_c00440{word-spacing:13.701600px;}
.ws23_c00440{word-spacing:19.454400px;}
.ws3_c00440{word-spacing:19.756800px;}
.ws4_c00440{word-spacing:19.821600px;}
.ws20_c00440{word-spacing:22.687200px;}
.ws22_c00440{word-spacing:22.701600px;}
.ws21_c00440{word-spacing:22.716000px;}
.ws18_c00440{word-spacing:25.588800px;}
._0_c00440{margin-left:-1.322640px;}
._1_c00440{width:1.252800px;}
.fc0_c00440{color:rgb(0,0,0);}
.fs3_c00440{font-size:42.120000px;}
.fs4_c00440{font-size:47.880000px;}
.fs2_c00440{font-size:54.000000px;}
.fs0_c00440{font-size:60.120000px;}
.fs1_c00440{font-size:72.000000px;}
.y0_c00440{bottom:0.000000px;}
.y2_c00440{bottom:57.450450px;}
.y1e_c00440{bottom:113.702250px;}
.y1d_c00440{bottom:132.064230px;}
.y1c_c00440{bottom:150.330450px;}
.y1b_c00440{bottom:165.540450px;}
.y1a_c00440{bottom:186.240450px;}
.y19_c00440{bottom:206.940450px;}
.y18_c00440{bottom:391.260450px;}
.y17_c00440{bottom:425.640450px;}
.y16_c00440{bottom:460.110450px;}
.y15_c00440{bottom:494.490450px;}
.y14_c00440{bottom:528.960450px;}
.y13_c00440{bottom:563.340450px;}
.y12_c00440{bottom:597.810450px;}
.y11_c00440{bottom:632.190450px;}
.y10_c00440{bottom:666.660450px;}
.yf_c00440{bottom:710.040450px;}
.ye_c00440{bottom:744.510450px;}
.yd_c00440{bottom:778.890450px;}
.yc_c00440{bottom:813.360450px;}
.yb_c00440{bottom:847.740450px;}
.ya_c00440{bottom:882.210450px;}
.y9_c00440{bottom:925.590450px;}
.y8_c00440{bottom:960.060450px;}
.y7_c00440{bottom:994.440450px;}
.y6_c00440{bottom:1028.910450px;}
.y5_c00440{bottom:1063.290450px;}
.y4_c00440{bottom:1106.760450px;}
.y3_c00440{bottom:1141.140450px;}
.y1_c00440{bottom:1196.850450px;}
.h6_c00440{height:47.988281px;}
.h7_c00440{height:49.937344px;}
.h1_c00440{height:50.315273px;}
.h3_c00440{height:60.257812px;}
.h4_c00440{height:65.130820px;}
.h5_c00440{height:65.131420px;}
.h2_c00440{height:72.160312px;}
.h0_c00440{height:1263.000000px;}
.w1_c00440{width:892.500000px;}
.w0_c00440{width:892.830000px;}
.x0_c00440{left:0.000000px;}
.x1_c00440{left:127.620000px;}
.x2_c00440{left:180.810000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.v1_c00440{vertical-align:14.080000pt;}
.v2_c00440{vertical-align:26.560000pt;}
.lsa_c00440{letter-spacing:-0.134400pt;}
.ls11_c00440{letter-spacing:-0.032000pt;}
.lse_c00440{letter-spacing:-0.025600pt;}
.lsc_c00440{letter-spacing:-0.019200pt;}
.lsd_c00440{letter-spacing:-0.012800pt;}
.lsb_c00440{letter-spacing:-0.006400pt;}
.ls10_c00440{letter-spacing:0.000000pt;}
.ls2_c00440{letter-spacing:0.006400pt;}
.ls7_c00440{letter-spacing:0.012800pt;}
.ls8_c00440{letter-spacing:0.025536pt;}
.ls4_c00440{letter-spacing:0.025600pt;}
.ls9_c00440{letter-spacing:0.034048pt;}
.ls0_c00440{letter-spacing:0.042752pt;}
.ls3_c00440{letter-spacing:0.048672pt;}
.lsf_c00440{letter-spacing:0.083200pt;}
.ls5_c00440{letter-spacing:0.136640pt;}
.ls6_c00440{letter-spacing:20.160000pt;}
.ls1_c00440{letter-spacing:1077.440000pt;}
.ws0_c00440{word-spacing:-9.408672pt;}
.wsc_c00440{word-spacing:-0.076800pt;}
.ws28_c00440{word-spacing:-0.017024pt;}
.ws29_c00440{word-spacing:-0.012768pt;}
.ws27_c00440{word-spacing:-0.008512pt;}
.ws2_c00440{word-spacing:0.000000pt;}
.ws26_c00440{word-spacing:0.012800pt;}
.ws16_c00440{word-spacing:0.019200pt;}
.wsb_c00440{word-spacing:0.025600pt;}
.ws1_c00440{word-spacing:0.037408pt;}
.ws15_c00440{word-spacing:0.051200pt;}
.ws17_c00440{word-spacing:0.057600pt;}
.ws13_c00440{word-spacing:0.646400pt;}
.ws14_c00440{word-spacing:0.736000pt;}
.ws24_c00440{word-spacing:1.273600pt;}
.ws25_c00440{word-spacing:1.318400pt;}
.ws12_c00440{word-spacing:1.555200pt;}
.ws11_c00440{word-spacing:1.606400pt;}
.wsa_c00440{word-spacing:1.638400pt;}
.ws19_c00440{word-spacing:2.886400pt;}
.ws1a_c00440{word-spacing:2.950400pt;}
.ws5_c00440{word-spacing:3.232000pt;}
.ws6_c00440{word-spacing:3.276800pt;}
.wsf_c00440{word-spacing:3.539200pt;}
.ws10_c00440{word-spacing:3.603200pt;}
.ws1d_c00440{word-spacing:4.166400pt;}
.ws1e_c00440{word-spacing:4.275200pt;}
.ws1b_c00440{word-spacing:4.812800pt;}
.ws1c_c00440{word-spacing:4.857600pt;}
.ws9_c00440{word-spacing:5.433600pt;}
.ws8_c00440{word-spacing:5.465600pt;}
.ws7_c00440{word-spacing:7.078400pt;}
.wse_c00440{word-spacing:11.795200pt;}
.wsd_c00440{word-spacing:11.814400pt;}
.ws1f_c00440{word-spacing:12.179200pt;}
.ws23_c00440{word-spacing:17.292800pt;}
.ws3_c00440{word-spacing:17.561600pt;}
.ws4_c00440{word-spacing:17.619200pt;}
.ws20_c00440{word-spacing:20.166400pt;}
.ws22_c00440{word-spacing:20.179200pt;}
.ws21_c00440{word-spacing:20.192000pt;}
.ws18_c00440{word-spacing:22.745600pt;}
._0_c00440{margin-left:-1.175680pt;}
._1_c00440{width:1.113600pt;}
.fs3_c00440{font-size:37.440000pt;}
.fs4_c00440{font-size:42.560000pt;}
.fs2_c00440{font-size:48.000000pt;}
.fs0_c00440{font-size:53.440000pt;}
.fs1_c00440{font-size:64.000000pt;}
.y0_c00440{bottom:0.000000pt;}
.y2_c00440{bottom:51.067067pt;}
.y1e_c00440{bottom:101.068667pt;}
.y1d_c00440{bottom:117.390427pt;}
.y1c_c00440{bottom:133.627067pt;}
.y1b_c00440{bottom:147.147067pt;}
.y1a_c00440{bottom:165.547067pt;}
.y19_c00440{bottom:183.947067pt;}
.y18_c00440{bottom:347.787067pt;}
.y17_c00440{bottom:378.347067pt;}
.y16_c00440{bottom:408.987067pt;}
.y15_c00440{bottom:439.547067pt;}
.y14_c00440{bottom:470.187067pt;}
.y13_c00440{bottom:500.747067pt;}
.y12_c00440{bottom:531.387067pt;}
.y11_c00440{bottom:561.947067pt;}
.y10_c00440{bottom:592.587067pt;}
.yf_c00440{bottom:631.147067pt;}
.ye_c00440{bottom:661.787067pt;}
.yd_c00440{bottom:692.347067pt;}
.yc_c00440{bottom:722.987067pt;}
.yb_c00440{bottom:753.547067pt;}
.ya_c00440{bottom:784.187067pt;}
.y9_c00440{bottom:822.747067pt;}
.y8_c00440{bottom:853.387067pt;}
.y7_c00440{bottom:883.947067pt;}
.y6_c00440{bottom:914.587067pt;}
.y5_c00440{bottom:945.147067pt;}
.y4_c00440{bottom:983.787067pt;}
.y3_c00440{bottom:1014.347067pt;}
.y1_c00440{bottom:1063.867067pt;}
.h6_c00440{height:42.656250pt;}
.h7_c00440{height:44.388750pt;}
.h1_c00440{height:44.724687pt;}
.h3_c00440{height:53.562500pt;}
.h4_c00440{height:57.894062pt;}
.h5_c00440{height:57.894596pt;}
.h2_c00440{height:64.142500pt;}
.h0_c00440{height:1122.666667pt;}
.w1_c00440{width:793.333333pt;}
.w0_c00440{width:793.626667pt;}
.x0_c00440{left:0.000000pt;}
.x1_c00440{left:113.440000pt;}
.x2_c00440{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_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_2f1a73836b399135714dbd88.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00441;src:url('chunks/assets/font_e7ad257d4066ceadf2f5e7f1.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00441;src:url('chunks/assets/font_49b79d73adbba99397714ebb.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00441;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00441{font-family:ff5_c00441;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_c00441;src:url('chunks/assets/font_6c2fb283def26fbdc4ce4442.woff2')format("woff");}.ff6_c00441{font-family:ff6_c00441;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_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;}
.v1_c00441{vertical-align:29.880000px;}
.ls10_c00441{letter-spacing:-0.151200px;}
.lse_c00441{letter-spacing:-0.144288px;}
.ls16_c00441{letter-spacing:-0.036000px;}
.ls12_c00441{letter-spacing:-0.028800px;}
.ls15_c00441{letter-spacing:-0.021600px;}
.ls14_c00441{letter-spacing:-0.014400px;}
.ls19_c00441{letter-spacing:-0.011664px;}
.ls11_c00441{letter-spacing:-0.007200px;}
.lsf_c00441{letter-spacing:0.000000px;}
.ls5_c00441{letter-spacing:0.007200px;}
.lsc_c00441{letter-spacing:0.014364px;}
.ls7_c00441{letter-spacing:0.019152px;}
.ls6_c00441{letter-spacing:0.021600px;}
.lsb_c00441{letter-spacing:0.023940px;}
.ls8_c00441{letter-spacing:0.028728px;}
.ls1_c00441{letter-spacing:0.031248px;}
.ls17_c00441{letter-spacing:0.036000px;}
.ls9_c00441{letter-spacing:0.038304px;}
.ls3_c00441{letter-spacing:0.039060px;}
.lsa_c00441{letter-spacing:0.043092px;}
.ls0_c00441{letter-spacing:0.048096px;}
.ls18_c00441{letter-spacing:0.052668px;}
.ls4_c00441{letter-spacing:0.054756px;}
.ls13_c00441{letter-spacing:0.093600px;}
.lsd_c00441{letter-spacing:0.104040px;}
.ls2_c00441{letter-spacing:77.260680px;}
.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;}
}
.ws1_c00441{word-spacing:-19.569060px;}
.ws0_c00441{word-spacing:-19.561248px;}
.ws3_c00441{word-spacing:-10.796976px;}
.ws2_c00441{word-spacing:-10.584756px;}
.ws7_c00441{word-spacing:-0.164052px;}
.ws5_c00441{word-spacing:-0.126252px;}
.ws23_c00441{word-spacing:-0.021600px;}
.ws2c_c00441{word-spacing:-0.019152px;}
.ws2f_c00441{word-spacing:-0.004788px;}
.ws31_c00441{word-spacing:-0.003888px;}
.ws6_c00441{word-spacing:0.000000px;}
.ws30_c00441{word-spacing:0.004788px;}
.wsa_c00441{word-spacing:0.007200px;}
.ws1a_c00441{word-spacing:0.014400px;}
.ws14_c00441{word-spacing:0.021600px;}
.ws4_c00441{word-spacing:0.042084px;}
.ws29_c00441{word-spacing:0.043200px;}
.ws28_c00441{word-spacing:0.331200px;}
.ws32_c00441{word-spacing:0.359100px;}
.ws27_c00441{word-spacing:0.388800px;}
.ws21_c00441{word-spacing:1.101600px;}
.wsd_c00441{word-spacing:2.152800px;}
.wse_c00441{word-spacing:2.232000px;}
.ws22_c00441{word-spacing:3.254400px;}
.ws1f_c00441{word-spacing:3.578400px;}
.ws1e_c00441{word-spacing:3.650400px;}
.ws25_c00441{word-spacing:3.924000px;}
.ws24_c00441{word-spacing:3.967200px;}
.ws2b_c00441{word-spacing:4.309200px;}
.ws2a_c00441{word-spacing:4.318776px;}
.ws1c_c00441{word-spacing:4.320000px;}
.ws1d_c00441{word-spacing:4.406400px;}
.ws8_c00441{word-spacing:4.622400px;}
.ws9_c00441{word-spacing:4.708800px;}
.ws20_c00441{word-spacing:6.141600px;}
.ws19_c00441{word-spacing:6.876000px;}
.ws18_c00441{word-spacing:6.904800px;}
.ws2e_c00441{word-spacing:7.536312px;}
.ws2d_c00441{word-spacing:7.541100px;}
.wsb_c00441{word-spacing:7.689600px;}
.wsc_c00441{word-spacing:7.725600px;}
.ws13_c00441{word-spacing:8.308800px;}
.ws15_c00441{word-spacing:8.668800px;}
.ws26_c00441{word-spacing:10.454400px;}
.ws10_c00441{word-spacing:11.152800px;}
.wsf_c00441{word-spacing:11.188800px;}
.ws16_c00441{word-spacing:18.374400px;}
.ws17_c00441{word-spacing:18.424800px;}
.ws1b_c00441{word-spacing:20.577600px;}
.ws12_c00441{word-spacing:21.974400px;}
.ws11_c00441{word-spacing:21.996000px;}
._0_c00441{margin-left:-1.142280px;}
._1_c00441{width:1.292580px;}
.fc0_c00441{color:rgb(0,0,0);}
.fs6_c00441{font-size:38.880000px;}
.fs4_c00441{font-size:42.120000px;}
.fs5_c00441{font-size:47.880000px;}
.fs2_c00441{font-size:54.000000px;}
.fs0_c00441{font-size:60.120000px;}
.fs1_c00441{font-size:72.000000px;}
.fs3_c00441{font-size:78.120000px;}
.y0_c00441{bottom:0.000000px;}
.y2_c00441{bottom:57.450450px;}
.y3_c00441{bottom:61.410450px;}
.y23_c00441{bottom:113.705640px;}
.y22_c00441{bottom:132.067620px;}
.y21_c00441{bottom:145.833120px;}
.y20_c00441{bottom:164.099340px;}
.y1f_c00441{bottom:177.960600px;}
.y1e_c00441{bottom:193.170450px;}
.y1d_c00441{bottom:213.870450px;}
.y1c_c00441{bottom:234.570450px;}
.y1b_c00441{bottom:301.530450px;}
.y1a_c00441{bottom:335.910450px;}
.y19_c00441{bottom:370.380450px;}
.y18_c00441{bottom:404.760450px;}
.y17_c00441{bottom:448.230450px;}
.y16_c00441{bottom:482.610450px;}
.y15_c00441{bottom:517.080450px;}
.y14_c00441{bottom:551.460450px;}
.y13_c00441{bottom:585.930450px;}
.y12_c00441{bottom:620.310450px;}
.y11_c00441{bottom:654.780450px;}
.y10_c00441{bottom:698.160450px;}
.yf_c00441{bottom:732.630450px;}
.ye_c00441{bottom:767.010450px;}
.yd_c00441{bottom:801.480450px;}
.yc_c00441{bottom:844.860450px;}
.yb_c00441{bottom:879.330450px;}
.ya_c00441{bottom:913.710450px;}
.y9_c00441{bottom:948.180450px;}
.y8_c00441{bottom:982.560450px;}
.y7_c00441{bottom:1017.030450px;}
.y6_c00441{bottom:1060.410450px;}
.y5_c00441{bottom:1094.880450px;}
.y4_c00441{bottom:1139.880450px;}
.y1_c00441{bottom:1196.940450px;}
.h2_c00441{height:47.988281px;}
.h8_c00441{height:49.937344px;}
.h1_c00441{height:50.315273px;}
.h3_c00441{height:56.320312px;}
.h5_c00441{height:60.257812px;}
.h6_c00441{height:65.130820px;}
.h7_c00441{height:65.131420px;}
.h4_c00441{height:81.476719px;}
.h0_c00441{height:1263.000000px;}
.w1_c00441{width:892.500000px;}
.w0_c00441{width:892.830000px;}
.x0_c00441{left:0.000000px;}
.x4_c00441{left:127.620000px;}
.x6_c00441{left:141.122160px;}
.x5_c00441{left:180.810000px;}
.x1_c00441{left:211.500000px;}
.x3_c00441{left:435.240000px;}
.x2_c00441{left:446.490000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.v1_c00441{vertical-align:26.560000pt;}
.ls10_c00441{letter-spacing:-0.134400pt;}
.lse_c00441{letter-spacing:-0.128256pt;}
.ls16_c00441{letter-spacing:-0.032000pt;}
.ls12_c00441{letter-spacing:-0.025600pt;}
.ls15_c00441{letter-spacing:-0.019200pt;}
.ls14_c00441{letter-spacing:-0.012800pt;}
.ls19_c00441{letter-spacing:-0.010368pt;}
.ls11_c00441{letter-spacing:-0.006400pt;}
.lsf_c00441{letter-spacing:0.000000pt;}
.ls5_c00441{letter-spacing:0.006400pt;}
.lsc_c00441{letter-spacing:0.012768pt;}
.ls7_c00441{letter-spacing:0.017024pt;}
.ls6_c00441{letter-spacing:0.019200pt;}
.lsb_c00441{letter-spacing:0.021280pt;}
.ls8_c00441{letter-spacing:0.025536pt;}
.ls1_c00441{letter-spacing:0.027776pt;}
.ls17_c00441{letter-spacing:0.032000pt;}
.ls9_c00441{letter-spacing:0.034048pt;}
.ls3_c00441{letter-spacing:0.034720pt;}
.lsa_c00441{letter-spacing:0.038304pt;}
.ls0_c00441{letter-spacing:0.042752pt;}
.ls18_c00441{letter-spacing:0.046816pt;}
.ls4_c00441{letter-spacing:0.048672pt;}
.ls13_c00441{letter-spacing:0.083200pt;}
.lsd_c00441{letter-spacing:0.092480pt;}
.ls2_c00441{letter-spacing:68.676160pt;}
.ws1_c00441{word-spacing:-17.394720pt;}
.ws0_c00441{word-spacing:-17.387776pt;}
.ws3_c00441{word-spacing:-9.597312pt;}
.ws2_c00441{word-spacing:-9.408672pt;}
.ws7_c00441{word-spacing:-0.145824pt;}
.ws5_c00441{word-spacing:-0.112224pt;}
.ws23_c00441{word-spacing:-0.019200pt;}
.ws2c_c00441{word-spacing:-0.017024pt;}
.ws2f_c00441{word-spacing:-0.004256pt;}
.ws31_c00441{word-spacing:-0.003456pt;}
.ws6_c00441{word-spacing:0.000000pt;}
.ws30_c00441{word-spacing:0.004256pt;}
.wsa_c00441{word-spacing:0.006400pt;}
.ws1a_c00441{word-spacing:0.012800pt;}
.ws14_c00441{word-spacing:0.019200pt;}
.ws4_c00441{word-spacing:0.037408pt;}
.ws29_c00441{word-spacing:0.038400pt;}
.ws28_c00441{word-spacing:0.294400pt;}
.ws32_c00441{word-spacing:0.319200pt;}
.ws27_c00441{word-spacing:0.345600pt;}
.ws21_c00441{word-spacing:0.979200pt;}
.wsd_c00441{word-spacing:1.913600pt;}
.wse_c00441{word-spacing:1.984000pt;}
.ws22_c00441{word-spacing:2.892800pt;}
.ws1f_c00441{word-spacing:3.180800pt;}
.ws1e_c00441{word-spacing:3.244800pt;}
.ws25_c00441{word-spacing:3.488000pt;}
.ws24_c00441{word-spacing:3.526400pt;}
.ws2b_c00441{word-spacing:3.830400pt;}
.ws2a_c00441{word-spacing:3.838912pt;}
.ws1c_c00441{word-spacing:3.840000pt;}
.ws1d_c00441{word-spacing:3.916800pt;}
.ws8_c00441{word-spacing:4.108800pt;}
.ws9_c00441{word-spacing:4.185600pt;}
.ws20_c00441{word-spacing:5.459200pt;}
.ws19_c00441{word-spacing:6.112000pt;}
.ws18_c00441{word-spacing:6.137600pt;}
.ws2e_c00441{word-spacing:6.698944pt;}
.ws2d_c00441{word-spacing:6.703200pt;}
.wsb_c00441{word-spacing:6.835200pt;}
.wsc_c00441{word-spacing:6.867200pt;}
.ws13_c00441{word-spacing:7.385600pt;}
.ws15_c00441{word-spacing:7.705600pt;}
.ws26_c00441{word-spacing:9.292800pt;}
.ws10_c00441{word-spacing:9.913600pt;}
.wsf_c00441{word-spacing:9.945600pt;}
.ws16_c00441{word-spacing:16.332800pt;}
.ws17_c00441{word-spacing:16.377600pt;}
.ws1b_c00441{word-spacing:18.291200pt;}
.ws12_c00441{word-spacing:19.532800pt;}
.ws11_c00441{word-spacing:19.552000pt;}
._0_c00441{margin-left:-1.015360pt;}
._1_c00441{width:1.148960pt;}
.fs6_c00441{font-size:34.560000pt;}
.fs4_c00441{font-size:37.440000pt;}
.fs5_c00441{font-size:42.560000pt;}
.fs2_c00441{font-size:48.000000pt;}
.fs0_c00441{font-size:53.440000pt;}
.fs1_c00441{font-size:64.000000pt;}
.fs3_c00441{font-size:69.440000pt;}
.y0_c00441{bottom:0.000000pt;}
.y2_c00441{bottom:51.067067pt;}
.y3_c00441{bottom:54.587067pt;}
.y23_c00441{bottom:101.071680pt;}
.y22_c00441{bottom:117.393440pt;}
.y21_c00441{bottom:129.629440pt;}
.y20_c00441{bottom:145.866080pt;}
.y1f_c00441{bottom:158.187200pt;}
.y1e_c00441{bottom:171.707067pt;}
.y1d_c00441{bottom:190.107067pt;}
.y1c_c00441{bottom:208.507067pt;}
.y1b_c00441{bottom:268.027067pt;}
.y1a_c00441{bottom:298.587067pt;}
.y19_c00441{bottom:329.227067pt;}
.y18_c00441{bottom:359.787067pt;}
.y17_c00441{bottom:398.427067pt;}
.y16_c00441{bottom:428.987067pt;}
.y15_c00441{bottom:459.627067pt;}
.y14_c00441{bottom:490.187067pt;}
.y13_c00441{bottom:520.827067pt;}
.y12_c00441{bottom:551.387067pt;}
.y11_c00441{bottom:582.027067pt;}
.y10_c00441{bottom:620.587067pt;}
.yf_c00441{bottom:651.227067pt;}
.ye_c00441{bottom:681.787067pt;}
.yd_c00441{bottom:712.427067pt;}
.yc_c00441{bottom:750.987067pt;}
.yb_c00441{bottom:781.627067pt;}
.ya_c00441{bottom:812.187067pt;}
.y9_c00441{bottom:842.827067pt;}
.y8_c00441{bottom:873.387067pt;}
.y7_c00441{bottom:904.027067pt;}
.y6_c00441{bottom:942.587067pt;}
.y5_c00441{bottom:973.227067pt;}
.y4_c00441{bottom:1013.227067pt;}
.y1_c00441{bottom:1063.947067pt;}
.h2_c00441{height:42.656250pt;}
.h8_c00441{height:44.388750pt;}
.h1_c00441{height:44.724687pt;}
.h3_c00441{height:50.062500pt;}
.h5_c00441{height:53.562500pt;}
.h6_c00441{height:57.894063pt;}
.h7_c00441{height:57.894596pt;}
.h4_c00441{height:72.423750pt;}
.h0_c00441{height:1122.666667pt;}
.w1_c00441{width:793.333333pt;}
.w0_c00441{width:793.626667pt;}
.x0_c00441{left:0.000000pt;}
.x4_c00441{left:113.440000pt;}
.x6_c00441{left:125.441920pt;}
.x5_c00441{left:160.720000pt;}
.x1_c00441{left:188.000000pt;}
.x3_c00441{left:386.880000pt;}
.x2_c00441{left:396.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_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_af9b75e0f20b689d7e35664b.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00442;src:url('chunks/assets/font_a2ae05c2a564673db006f016.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00442;src:url('chunks/assets/font_6b14fd36651e6d61789d79f4.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00442;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00442{font-family:ff5_c00442;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_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);}
.v2_c00442{vertical-align:-15.120000px;}
.v0_c00442{vertical-align:0.000000px;}
.v1_c00442{vertical-align:15.840000px;}
.ls15_c00442{letter-spacing:-0.151200px;}
.ls1f_c00442{letter-spacing:-0.048096px;}
.ls1b_c00442{letter-spacing:-0.042084px;}
.ls17_c00442{letter-spacing:-0.039060px;}
.ls1e_c00442{letter-spacing:-0.036072px;}
.ls1c_c00442{letter-spacing:-0.030060px;}
.ls19_c00442{letter-spacing:-0.028800px;}
.ls21_c00442{letter-spacing:-0.024048px;}
.ls1d_c00442{letter-spacing:-0.018036px;}
.ls1a_c00442{letter-spacing:-0.014400px;}
.ls18_c00442{letter-spacing:-0.007812px;}
.ls20_c00442{letter-spacing:-0.007200px;}
.ls22_c00442{letter-spacing:-0.006012px;}
.ls16_c00442{letter-spacing:0.000000px;}
.ls10_c00442{letter-spacing:0.006012px;}
.ls6_c00442{letter-spacing:0.007200px;}
.ls5_c00442{letter-spacing:0.014400px;}
.lsa_c00442{letter-spacing:0.018036px;}
.lsf_c00442{letter-spacing:0.021600px;}
.ls13_c00442{letter-spacing:0.023940px;}
.ls14_c00442{letter-spacing:0.028728px;}
.ls11_c00442{letter-spacing:0.030060px;}
.ls2_c00442{letter-spacing:0.031248px;}
.ls12_c00442{letter-spacing:0.033516px;}
.ls9_c00442{letter-spacing:0.036072px;}
.ls4_c00442{letter-spacing:0.039060px;}
.lsc_c00442{letter-spacing:0.042084px;}
.ls0_c00442{letter-spacing:0.048096px;}
.lsb_c00442{letter-spacing:0.072144px;}
.lsd_c00442{letter-spacing:0.136080px;}
.ls7_c00442{letter-spacing:0.144000px;}
.ls8_c00442{letter-spacing:66.024000px;}
.lse_c00442{letter-spacing:73.296360px;}
.ls3_c00442{letter-spacing:77.260680px;}
.ls1_c00442{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00442{word-spacing:-19.569060px;}
.ws0_c00442{word-spacing:-19.561248px;}
.ws4_c00442{word-spacing:-18.000000px;}
.ws3_c00442{word-spacing:-15.030000px;}
.ws2_c00442{word-spacing:-9.856080px;}
.ws31_c00442{word-spacing:-0.300600px;}
.ws2a_c00442{word-spacing:-0.270540px;}
.ws8_c00442{word-spacing:-0.226548px;}
.ws7_c00442{word-spacing:-0.054684px;}
.ws32_c00442{word-spacing:-0.014364px;}
.ws34_c00442{word-spacing:-0.009576px;}
.ws15_c00442{word-spacing:-0.007200px;}
.ws33_c00442{word-spacing:-0.004788px;}
.ws6_c00442{word-spacing:0.000000px;}
.ws12_c00442{word-spacing:0.014400px;}
.ws5_c00442{word-spacing:0.042084px;}
.ws11_c00442{word-spacing:0.072000px;}
.ws21_c00442{word-spacing:0.108216px;}
.ws30_c00442{word-spacing:0.120240px;}
.ws19_c00442{word-spacing:0.132264px;}
.ws10_c00442{word-spacing:1.094400px;}
.ws2d_c00442{word-spacing:1.124244px;}
.ws2f_c00442{word-spacing:2.603196px;}
.ws2e_c00442{word-spacing:2.615220px;}
.ws1f_c00442{word-spacing:3.709404px;}
.ws1e_c00442{word-spacing:3.721428px;}
.ws1d_c00442{word-spacing:4.034052px;}
.ws1c_c00442{word-spacing:4.442868px;}
.ws14_c00442{word-spacing:5.436000px;}
.ws13_c00442{word-spacing:5.457600px;}
.ws25_c00442{word-spacing:6.529032px;}
.ws2b_c00442{word-spacing:6.565104px;}
.ws2c_c00442{word-spacing:6.595164px;}
.ws1b_c00442{word-spacing:6.913800px;}
.ws16_c00442{word-spacing:7.214400px;}
.ws1a_c00442{word-spacing:7.256484px;}
.ws29_c00442{word-spacing:10.432800px;}
.wse_c00442{word-spacing:10.454400px;}
.ws27_c00442{word-spacing:10.778400px;}
.ws26_c00442{word-spacing:10.807200px;}
.ws20_c00442{word-spacing:11.176308px;}
.ws9_c00442{word-spacing:11.599200px;}
.wsa_c00442{word-spacing:11.606400px;}
.ws23_c00442{word-spacing:13.448844px;}
.ws24_c00442{word-spacing:13.460868px;}
.ws22_c00442{word-spacing:13.725396px;}
.ws18_c00442{word-spacing:16.855200px;}
.ws17_c00442{word-spacing:16.934400px;}
.ws28_c00442{word-spacing:25.588800px;}
.wsc_c00442{word-spacing:28.425600px;}
.wsb_c00442{word-spacing:28.526400px;}
.wsd_c00442{word-spacing:28.612800px;}
.wsf_c00442{word-spacing:42.192000px;}
._0_c00442{margin-left:-1.322640px;}
._1_c00442{width:1.080000px;}
.fc0_c00442{color:rgb(0,0,0);}
.fs4_c00442{font-size:38.880000px;}
.fs5_c00442{font-size:47.880000px;}
.fs2_c00442{font-size:54.000000px;}
.fs0_c00442{font-size:60.120000px;}
.fs1_c00442{font-size:72.000000px;}
.fs3_c00442{font-size:78.120000px;}
.y0_c00442{bottom:0.000000px;}
.y2_c00442{bottom:57.450450px;}
.y26_c00442{bottom:113.698470px;}
.y25_c00442{bottom:132.060450px;}
.y24_c00442{bottom:147.270450px;}
.y23_c00442{bottom:167.970450px;}
.y22_c00442{bottom:188.670450px;}
.y21_c00442{bottom:264.249120px;}
.y20_c00442{bottom:281.172900px;}
.y1f_c00442{bottom:298.006500px;}
.y1e_c00442{bottom:314.930280px;}
.y1d_c00442{bottom:331.763880px;}
.y1c_c00442{bottom:372.630600px;}
.y1b_c00442{bottom:407.010600px;}
.y1a_c00442{bottom:441.480600px;}
.y19_c00442{bottom:475.860540px;}
.y18_c00442{bottom:513.364710px;}
.y17_c00442{bottom:530.198310px;}
.y16_c00442{bottom:547.122090px;}
.y15_c00442{bottom:563.955690px;}
.y14_c00442{bottom:580.879470px;}
.y13_c00442{bottom:597.713070px;}
.y12_c00442{bottom:614.636850px;}
.y11_c00442{bottom:631.470450px;}
.y10_c00442{bottom:648.390450px;}
.yf_c00442{bottom:689.160450px;}
.ye_c00442{bottom:723.630450px;}
.yd_c00442{bottom:758.010450px;}
.yc_c00442{bottom:801.480450px;}
.yb_c00442{bottom:835.860450px;}
.ya_c00442{bottom:879.330450px;}
.y9_c00442{bottom:913.710450px;}
.y8_c00442{bottom:948.180450px;}
.y7_c00442{bottom:982.560450px;}
.y6_c00442{bottom:1026.030450px;}
.y5_c00442{bottom:1060.410450px;}
.y4_c00442{bottom:1094.880450px;}
.y3_c00442{bottom:1139.880450px;}
.y1_c00442{bottom:1196.850450px;}
.h9_c00442{height:47.988281px;}
.ha_c00442{height:49.937344px;}
.h1_c00442{height:50.315273px;}
.h8_c00442{height:50.400593px;}
.h6_c00442{height:50.418233px;}
.h4_c00442{height:60.257812px;}
.h7_c00442{height:62.703281px;}
.h2_c00442{height:72.160312px;}
.h5_c00442{height:75.093750px;}
.h3_c00442{height:81.476719px;}
.h0_c00442{height:1263.000000px;}
.w1_c00442{width:892.500000px;}
.w0_c00442{width:892.830000px;}
.x0_c00442{left:0.000000px;}
.x1_c00442{left:127.620000px;}
.x3_c00442{left:154.440000px;}
.x2_c00442{left:180.810000px;}
.x4_c00442{left:195.300000px;}
.x6_c00442{left:233.996760px;}
.x5_c00442{left:235.620000px;}
@media print{
.v2_c00442{vertical-align:-13.440000pt;}
.v0_c00442{vertical-align:0.000000pt;}
.v1_c00442{vertical-align:14.080000pt;}
.ls15_c00442{letter-spacing:-0.134400pt;}
.ls1f_c00442{letter-spacing:-0.042752pt;}
.ls1b_c00442{letter-spacing:-0.037408pt;}
.ls17_c00442{letter-spacing:-0.034720pt;}
.ls1e_c00442{letter-spacing:-0.032064pt;}
.ls1c_c00442{letter-spacing:-0.026720pt;}
.ls19_c00442{letter-spacing:-0.025600pt;}
.ls21_c00442{letter-spacing:-0.021376pt;}
.ls1d_c00442{letter-spacing:-0.016032pt;}
.ls1a_c00442{letter-spacing:-0.012800pt;}
.ls18_c00442{letter-spacing:-0.006944pt;}
.ls20_c00442{letter-spacing:-0.006400pt;}
.ls22_c00442{letter-spacing:-0.005344pt;}
.ls16_c00442{letter-spacing:0.000000pt;}
.ls10_c00442{letter-spacing:0.005344pt;}
.ls6_c00442{letter-spacing:0.006400pt;}
.ls5_c00442{letter-spacing:0.012800pt;}
.lsa_c00442{letter-spacing:0.016032pt;}
.lsf_c00442{letter-spacing:0.019200pt;}
.ls13_c00442{letter-spacing:0.021280pt;}
.ls14_c00442{letter-spacing:0.025536pt;}
.ls11_c00442{letter-spacing:0.026720pt;}
.ls2_c00442{letter-spacing:0.027776pt;}
.ls12_c00442{letter-spacing:0.029792pt;}
.ls9_c00442{letter-spacing:0.032064pt;}
.ls4_c00442{letter-spacing:0.034720pt;}
.lsc_c00442{letter-spacing:0.037408pt;}
.ls0_c00442{letter-spacing:0.042752pt;}
.lsb_c00442{letter-spacing:0.064128pt;}
.lsd_c00442{letter-spacing:0.120960pt;}
.ls7_c00442{letter-spacing:0.128000pt;}
.ls8_c00442{letter-spacing:58.688000pt;}
.lse_c00442{letter-spacing:65.152320pt;}
.ls3_c00442{letter-spacing:68.676160pt;}
.ls1_c00442{letter-spacing:1077.440000pt;}
.ws1_c00442{word-spacing:-17.394720pt;}
.ws0_c00442{word-spacing:-17.387776pt;}
.ws4_c00442{word-spacing:-16.000000pt;}
.ws3_c00442{word-spacing:-13.360000pt;}
.ws2_c00442{word-spacing:-8.760960pt;}
.ws31_c00442{word-spacing:-0.267200pt;}
.ws2a_c00442{word-spacing:-0.240480pt;}
.ws8_c00442{word-spacing:-0.201376pt;}
.ws7_c00442{word-spacing:-0.048608pt;}
.ws32_c00442{word-spacing:-0.012768pt;}
.ws34_c00442{word-spacing:-0.008512pt;}
.ws15_c00442{word-spacing:-0.006400pt;}
.ws33_c00442{word-spacing:-0.004256pt;}
.ws6_c00442{word-spacing:0.000000pt;}
.ws12_c00442{word-spacing:0.012800pt;}
.ws5_c00442{word-spacing:0.037408pt;}
.ws11_c00442{word-spacing:0.064000pt;}
.ws21_c00442{word-spacing:0.096192pt;}
.ws30_c00442{word-spacing:0.106880pt;}
.ws19_c00442{word-spacing:0.117568pt;}
.ws10_c00442{word-spacing:0.972800pt;}
.ws2d_c00442{word-spacing:0.999328pt;}
.ws2f_c00442{word-spacing:2.313952pt;}
.ws2e_c00442{word-spacing:2.324640pt;}
.ws1f_c00442{word-spacing:3.297248pt;}
.ws1e_c00442{word-spacing:3.307936pt;}
.ws1d_c00442{word-spacing:3.585824pt;}
.ws1c_c00442{word-spacing:3.949216pt;}
.ws14_c00442{word-spacing:4.832000pt;}
.ws13_c00442{word-spacing:4.851200pt;}
.ws25_c00442{word-spacing:5.803584pt;}
.ws2b_c00442{word-spacing:5.835648pt;}
.ws2c_c00442{word-spacing:5.862368pt;}
.ws1b_c00442{word-spacing:6.145600pt;}
.ws16_c00442{word-spacing:6.412800pt;}
.ws1a_c00442{word-spacing:6.450208pt;}
.ws29_c00442{word-spacing:9.273600pt;}
.wse_c00442{word-spacing:9.292800pt;}
.ws27_c00442{word-spacing:9.580800pt;}
.ws26_c00442{word-spacing:9.606400pt;}
.ws20_c00442{word-spacing:9.934496pt;}
.ws9_c00442{word-spacing:10.310400pt;}
.wsa_c00442{word-spacing:10.316800pt;}
.ws23_c00442{word-spacing:11.954528pt;}
.ws24_c00442{word-spacing:11.965216pt;}
.ws22_c00442{word-spacing:12.200352pt;}
.ws18_c00442{word-spacing:14.982400pt;}
.ws17_c00442{word-spacing:15.052800pt;}
.ws28_c00442{word-spacing:22.745600pt;}
.wsc_c00442{word-spacing:25.267200pt;}
.wsb_c00442{word-spacing:25.356800pt;}
.wsd_c00442{word-spacing:25.433600pt;}
.wsf_c00442{word-spacing:37.504000pt;}
._0_c00442{margin-left:-1.175680pt;}
._1_c00442{width:0.960000pt;}
.fs4_c00442{font-size:34.560000pt;}
.fs5_c00442{font-size:42.560000pt;}
.fs2_c00442{font-size:48.000000pt;}
.fs0_c00442{font-size:53.440000pt;}
.fs1_c00442{font-size:64.000000pt;}
.fs3_c00442{font-size:69.440000pt;}
.y0_c00442{bottom:0.000000pt;}
.y2_c00442{bottom:51.067067pt;}
.y26_c00442{bottom:101.065307pt;}
.y25_c00442{bottom:117.387067pt;}
.y24_c00442{bottom:130.907067pt;}
.y23_c00442{bottom:149.307067pt;}
.y22_c00442{bottom:167.707067pt;}
.y21_c00442{bottom:234.888107pt;}
.y20_c00442{bottom:249.931467pt;}
.y1f_c00442{bottom:264.894667pt;}
.y1e_c00442{bottom:279.938027pt;}
.y1d_c00442{bottom:294.901227pt;}
.y1c_c00442{bottom:331.227200pt;}
.y1b_c00442{bottom:361.787200pt;}
.y1a_c00442{bottom:392.427200pt;}
.y19_c00442{bottom:422.987147pt;}
.y18_c00442{bottom:456.324187pt;}
.y17_c00442{bottom:471.287387pt;}
.y16_c00442{bottom:486.330747pt;}
.y15_c00442{bottom:501.293947pt;}
.y14_c00442{bottom:516.337307pt;}
.y13_c00442{bottom:531.300507pt;}
.y12_c00442{bottom:546.343867pt;}
.y11_c00442{bottom:561.307067pt;}
.y10_c00442{bottom:576.347067pt;}
.yf_c00442{bottom:612.587067pt;}
.ye_c00442{bottom:643.227067pt;}
.yd_c00442{bottom:673.787067pt;}
.yc_c00442{bottom:712.427067pt;}
.yb_c00442{bottom:742.987067pt;}
.ya_c00442{bottom:781.627067pt;}
.y9_c00442{bottom:812.187067pt;}
.y8_c00442{bottom:842.827067pt;}
.y7_c00442{bottom:873.387067pt;}
.y6_c00442{bottom:912.027067pt;}
.y5_c00442{bottom:942.587067pt;}
.y4_c00442{bottom:973.227067pt;}
.y3_c00442{bottom:1013.227067pt;}
.y1_c00442{bottom:1063.867067pt;}
.h9_c00442{height:42.656250pt;}
.ha_c00442{height:44.388750pt;}
.h1_c00442{height:44.724687pt;}
.h8_c00442{height:44.800527pt;}
.h6_c00442{height:44.816208pt;}
.h4_c00442{height:53.562500pt;}
.h7_c00442{height:55.736250pt;}
.h2_c00442{height:64.142500pt;}
.h5_c00442{height:66.750000pt;}
.h3_c00442{height:72.423750pt;}
.h0_c00442{height:1122.666667pt;}
.w1_c00442{width:793.333333pt;}
.w0_c00442{width:793.626667pt;}
.x0_c00442{left:0.000000pt;}
.x1_c00442{left:113.440000pt;}
.x3_c00442{left:137.280000pt;}
.x2_c00442{left:160.720000pt;}
.x4_c00442{left:173.600000pt;}
.x6_c00442{left:207.997120pt;}
.x5_c00442{left:209.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_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_43a219c5c66a5b8f69588445.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_6da0174e59f47e6cbc3441a4.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00443;src:url('chunks/assets/font_942c276693be11c5fd025372.woff2')format("woff");}.ff4_c00443{font-family:ff4_c00443;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_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;}
.v1_c00443{vertical-align:15.206040px;}
.v2_c00443{vertical-align:29.880000px;}
.ls13_c00443{letter-spacing:-0.151200px;}
.ls11_c00443{letter-spacing:-0.144288px;}
.ls19_c00443{letter-spacing:-0.048096px;}
.ls16_c00443{letter-spacing:-0.030060px;}
.ls14_c00443{letter-spacing:-0.028800px;}
.ls17_c00443{letter-spacing:-0.024048px;}
.ls1c_c00443{letter-spacing:-0.021600px;}
.ls15_c00443{letter-spacing:-0.014400px;}
.ls1a_c00443{letter-spacing:-0.012024px;}
.ls1d_c00443{letter-spacing:-0.007200px;}
.ls18_c00443{letter-spacing:-0.006012px;}
.ls24_c00443{letter-spacing:-0.004788px;}
.ls23_c00443{letter-spacing:-0.003888px;}
.ls12_c00443{letter-spacing:0.000000px;}
.ls3_c00443{letter-spacing:0.006012px;}
.ls1f_c00443{letter-spacing:0.007200px;}
.ls2_c00443{letter-spacing:0.012024px;}
.ls21_c00443{letter-spacing:0.014364px;}
.ls20_c00443{letter-spacing:0.014400px;}
.lsf_c00443{letter-spacing:0.019152px;}
.lsc_c00443{letter-spacing:0.021600px;}
.lsd_c00443{letter-spacing:0.028728px;}
.ls8_c00443{letter-spacing:0.028800px;}
.ls5_c00443{letter-spacing:0.030060px;}
.lse_c00443{letter-spacing:0.038304px;}
.ls10_c00443{letter-spacing:0.047880px;}
.ls0_c00443{letter-spacing:0.048096px;}
.ls1_c00443{letter-spacing:0.054108px;}
.ls7_c00443{letter-spacing:0.054756px;}
.ls22_c00443{letter-spacing:0.071820px;}
.ls4_c00443{letter-spacing:0.090180px;}
.ls1e_c00443{letter-spacing:0.093600px;}
.ls6_c00443{letter-spacing:0.136080px;}
.ls9_c00443{letter-spacing:0.144000px;}
.ls1b_c00443{letter-spacing:0.168336px;}
.lsa_c00443{letter-spacing:65.304000px;}
.lsb_c00443{letter-spacing:72.589320px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00443{word-spacing:-15.030000px;}
.ws4_c00443{word-spacing:-13.329792px;}
.ws3_c00443{word-spacing:-10.804752px;}
.ws1_c00443{word-spacing:-10.584756px;}
.ws0_c00443{word-spacing:-9.856080px;}
.wsd_c00443{word-spacing:-0.324648px;}
.ws18_c00443{word-spacing:-0.222444px;}
.ws6_c00443{word-spacing:-0.126252px;}
.ws2e_c00443{word-spacing:-0.028728px;}
.ws2c_c00443{word-spacing:-0.019152px;}
.ws2b_c00443{word-spacing:-0.009576px;}
.ws7_c00443{word-spacing:0.000000px;}
.ws2d_c00443{word-spacing:0.023940px;}
.ws5_c00443{word-spacing:0.042084px;}
.ws25_c00443{word-spacing:0.064800px;}
.wse_c00443{word-spacing:0.078156px;}
.wsb_c00443{word-spacing:0.086400px;}
.wsf_c00443{word-spacing:0.090180px;}
.ws19_c00443{word-spacing:0.102204px;}
.wsc_c00443{word-spacing:0.120240px;}
.ws17_c00443{word-spacing:0.138276px;}
.ws16_c00443{word-spacing:3.300588px;}
.ws15_c00443{word-spacing:3.697380px;}
.ws28_c00443{word-spacing:5.076000px;}
.ws13_c00443{word-spacing:6.234444px;}
.ws14_c00443{word-spacing:6.480936px;}
.wsa_c00443{word-spacing:6.494400px;}
.ws9_c00443{word-spacing:6.566400px;}
.ws12_c00443{word-spacing:6.571116px;}
.ws26_c00443{word-spacing:6.818400px;}
.ws27_c00443{word-spacing:6.832800px;}
.ws11_c00443{word-spacing:6.931836px;}
.ws10_c00443{word-spacing:6.961896px;}
.ws2a_c00443{word-spacing:7.545600px;}
.ws29_c00443{word-spacing:7.639200px;}
.ws1d_c00443{word-spacing:10.821600px;}
.ws21_c00443{word-spacing:11.131200px;}
.ws8_c00443{word-spacing:11.188800px;}
.ws22_c00443{word-spacing:11.246400px;}
.ws1a_c00443{word-spacing:12.254400px;}
.ws1f_c00443{word-spacing:17.971200px;}
.ws1e_c00443{word-spacing:18.014400px;}
.ws20_c00443{word-spacing:18.079200px;}
.ws1c_c00443{word-spacing:22.341600px;}
.ws1b_c00443{word-spacing:22.392000px;}
.ws24_c00443{word-spacing:24.494400px;}
.ws23_c00443{word-spacing:24.717600px;}
._0_c00443{margin-left:-1.142280px;}
._1_c00443{width:1.292580px;}
.fc0_c00443{color:rgb(0,0,0);}
.fs3_c00443{font-size:38.880000px;}
.fs4_c00443{font-size:42.120000px;}
.fs5_c00443{font-size:47.880000px;}
.fs2_c00443{font-size:54.000000px;}
.fs0_c00443{font-size:60.120000px;}
.fs1_c00443{font-size:72.000000px;}
.y0_c00443{bottom:0.000000px;}
.y2_c00443{bottom:57.450450px;}
.y3_c00443{bottom:61.410450px;}
.y20_c00443{bottom:113.702250px;}
.y1f_c00443{bottom:132.064230px;}
.y1e_c00443{bottom:150.334230px;}
.y1d_c00443{bottom:168.600450px;}
.y1c_c00443{bottom:183.810600px;}
.y1b_c00443{bottom:204.510600px;}
.y1a_c00443{bottom:225.210600px;}
.y19_c00443{bottom:460.560450px;}
.y18_c00443{bottom:494.940450px;}
.y17_c00443{bottom:529.410450px;}
.y16_c00443{bottom:563.790450px;}
.y15_c00443{bottom:607.260450px;}
.y14_c00443{bottom:641.640450px;}
.y13_c00443{bottom:676.110450px;}
.y12_c00443{bottom:719.490450px;}
.y11_c00443{bottom:753.960450px;}
.y10_c00443{bottom:788.340450px;}
.yf_c00443{bottom:831.810450px;}
.ye_c00443{bottom:866.190450px;}
.yd_c00443{bottom:900.660450px;}
.yc_c00443{bottom:938.078940px;}
.yb_c00443{bottom:955.002720px;}
.ya_c00443{bottom:971.836320px;}
.y9_c00443{bottom:988.760100px;}
.y8_c00443{bottom:1005.593700px;}
.y7_c00443{bottom:1031.520450px;}
.y6_c00443{bottom:1072.290450px;}
.y5_c00443{bottom:1106.760450px;}
.y4_c00443{bottom:1141.140450px;}
.y1_c00443{bottom:1196.940450px;}
.h2_c00443{height:47.988281px;}
.ha_c00443{height:49.937344px;}
.h1_c00443{height:50.315273px;}
.h5_c00443{height:50.401313px;}
.h3_c00443{height:56.320312px;}
.h4_c00443{height:60.257812px;}
.h8_c00443{height:62.703281px;}
.h6_c00443{height:65.130820px;}
.h9_c00443{height:65.131420px;}
.h7_c00443{height:75.093750px;}
.h0_c00443{height:1263.000000px;}
.w1_c00443{width:892.500000px;}
.w0_c00443{width:892.830000px;}
.x0_c00443{left:0.000000px;}
.x5_c00443{left:127.620000px;}
.x6_c00443{left:154.620000px;}
.x4_c00443{left:180.810000px;}
.x1_c00443{left:211.500000px;}
.x3_c00443{left:435.240000px;}
.x2_c00443{left:446.490000px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.v1_c00443{vertical-align:13.516480pt;}
.v2_c00443{vertical-align:26.560000pt;}
.ls13_c00443{letter-spacing:-0.134400pt;}
.ls11_c00443{letter-spacing:-0.128256pt;}
.ls19_c00443{letter-spacing:-0.042752pt;}
.ls16_c00443{letter-spacing:-0.026720pt;}
.ls14_c00443{letter-spacing:-0.025600pt;}
.ls17_c00443{letter-spacing:-0.021376pt;}
.ls1c_c00443{letter-spacing:-0.019200pt;}
.ls15_c00443{letter-spacing:-0.012800pt;}
.ls1a_c00443{letter-spacing:-0.010688pt;}
.ls1d_c00443{letter-spacing:-0.006400pt;}
.ls18_c00443{letter-spacing:-0.005344pt;}
.ls24_c00443{letter-spacing:-0.004256pt;}
.ls23_c00443{letter-spacing:-0.003456pt;}
.ls12_c00443{letter-spacing:0.000000pt;}
.ls3_c00443{letter-spacing:0.005344pt;}
.ls1f_c00443{letter-spacing:0.006400pt;}
.ls2_c00443{letter-spacing:0.010688pt;}
.ls21_c00443{letter-spacing:0.012768pt;}
.ls20_c00443{letter-spacing:0.012800pt;}
.lsf_c00443{letter-spacing:0.017024pt;}
.lsc_c00443{letter-spacing:0.019200pt;}
.lsd_c00443{letter-spacing:0.025536pt;}
.ls8_c00443{letter-spacing:0.025600pt;}
.ls5_c00443{letter-spacing:0.026720pt;}
.lse_c00443{letter-spacing:0.034048pt;}
.ls10_c00443{letter-spacing:0.042560pt;}
.ls0_c00443{letter-spacing:0.042752pt;}
.ls1_c00443{letter-spacing:0.048096pt;}
.ls7_c00443{letter-spacing:0.048672pt;}
.ls22_c00443{letter-spacing:0.063840pt;}
.ls4_c00443{letter-spacing:0.080160pt;}
.ls1e_c00443{letter-spacing:0.083200pt;}
.ls6_c00443{letter-spacing:0.120960pt;}
.ls9_c00443{letter-spacing:0.128000pt;}
.ls1b_c00443{letter-spacing:0.149632pt;}
.lsa_c00443{letter-spacing:58.048000pt;}
.lsb_c00443{letter-spacing:64.523840pt;}
.ws2_c00443{word-spacing:-13.360000pt;}
.ws4_c00443{word-spacing:-11.848704pt;}
.ws3_c00443{word-spacing:-9.604224pt;}
.ws1_c00443{word-spacing:-9.408672pt;}
.ws0_c00443{word-spacing:-8.760960pt;}
.wsd_c00443{word-spacing:-0.288576pt;}
.ws18_c00443{word-spacing:-0.197728pt;}
.ws6_c00443{word-spacing:-0.112224pt;}
.ws2e_c00443{word-spacing:-0.025536pt;}
.ws2c_c00443{word-spacing:-0.017024pt;}
.ws2b_c00443{word-spacing:-0.008512pt;}
.ws7_c00443{word-spacing:0.000000pt;}
.ws2d_c00443{word-spacing:0.021280pt;}
.ws5_c00443{word-spacing:0.037408pt;}
.ws25_c00443{word-spacing:0.057600pt;}
.wse_c00443{word-spacing:0.069472pt;}
.wsb_c00443{word-spacing:0.076800pt;}
.wsf_c00443{word-spacing:0.080160pt;}
.ws19_c00443{word-spacing:0.090848pt;}
.wsc_c00443{word-spacing:0.106880pt;}
.ws17_c00443{word-spacing:0.122912pt;}
.ws16_c00443{word-spacing:2.933856pt;}
.ws15_c00443{word-spacing:3.286560pt;}
.ws28_c00443{word-spacing:4.512000pt;}
.ws13_c00443{word-spacing:5.541728pt;}
.ws14_c00443{word-spacing:5.760832pt;}
.wsa_c00443{word-spacing:5.772800pt;}
.ws9_c00443{word-spacing:5.836800pt;}
.ws12_c00443{word-spacing:5.840992pt;}
.ws26_c00443{word-spacing:6.060800pt;}
.ws27_c00443{word-spacing:6.073600pt;}
.ws11_c00443{word-spacing:6.161632pt;}
.ws10_c00443{word-spacing:6.188352pt;}
.ws2a_c00443{word-spacing:6.707200pt;}
.ws29_c00443{word-spacing:6.790400pt;}
.ws1d_c00443{word-spacing:9.619200pt;}
.ws21_c00443{word-spacing:9.894400pt;}
.ws8_c00443{word-spacing:9.945600pt;}
.ws22_c00443{word-spacing:9.996800pt;}
.ws1a_c00443{word-spacing:10.892800pt;}
.ws1f_c00443{word-spacing:15.974400pt;}
.ws1e_c00443{word-spacing:16.012800pt;}
.ws20_c00443{word-spacing:16.070400pt;}
.ws1c_c00443{word-spacing:19.859200pt;}
.ws1b_c00443{word-spacing:19.904000pt;}
.ws24_c00443{word-spacing:21.772800pt;}
.ws23_c00443{word-spacing:21.971200pt;}
._0_c00443{margin-left:-1.015360pt;}
._1_c00443{width:1.148960pt;}
.fs3_c00443{font-size:34.560000pt;}
.fs4_c00443{font-size:37.440000pt;}
.fs5_c00443{font-size:42.560000pt;}
.fs2_c00443{font-size:48.000000pt;}
.fs0_c00443{font-size:53.440000pt;}
.fs1_c00443{font-size:64.000000pt;}
.y0_c00443{bottom:0.000000pt;}
.y2_c00443{bottom:51.067067pt;}
.y3_c00443{bottom:54.587067pt;}
.y20_c00443{bottom:101.068667pt;}
.y1f_c00443{bottom:117.390427pt;}
.y1e_c00443{bottom:133.630427pt;}
.y1d_c00443{bottom:149.867067pt;}
.y1c_c00443{bottom:163.387200pt;}
.y1b_c00443{bottom:181.787200pt;}
.y1a_c00443{bottom:200.187200pt;}
.y19_c00443{bottom:409.387067pt;}
.y18_c00443{bottom:439.947067pt;}
.y17_c00443{bottom:470.587067pt;}
.y16_c00443{bottom:501.147067pt;}
.y15_c00443{bottom:539.787067pt;}
.y14_c00443{bottom:570.347067pt;}
.y13_c00443{bottom:600.987067pt;}
.y12_c00443{bottom:639.547067pt;}
.y11_c00443{bottom:670.187067pt;}
.y10_c00443{bottom:700.747067pt;}
.yf_c00443{bottom:739.387067pt;}
.ye_c00443{bottom:769.947067pt;}
.yd_c00443{bottom:800.587067pt;}
.yc_c00443{bottom:833.847947pt;}
.yb_c00443{bottom:848.891307pt;}
.ya_c00443{bottom:863.854507pt;}
.y9_c00443{bottom:878.897867pt;}
.y8_c00443{bottom:893.861067pt;}
.y7_c00443{bottom:916.907067pt;}
.y6_c00443{bottom:953.147067pt;}
.y5_c00443{bottom:983.787067pt;}
.y4_c00443{bottom:1014.347067pt;}
.y1_c00443{bottom:1063.947067pt;}
.h2_c00443{height:42.656250pt;}
.ha_c00443{height:44.388750pt;}
.h1_c00443{height:44.724687pt;}
.h5_c00443{height:44.801167pt;}
.h3_c00443{height:50.062500pt;}
.h4_c00443{height:53.562500pt;}
.h8_c00443{height:55.736250pt;}
.h6_c00443{height:57.894062pt;}
.h9_c00443{height:57.894596pt;}
.h7_c00443{height:66.750000pt;}
.h0_c00443{height:1122.666667pt;}
.w1_c00443{width:793.333333pt;}
.w0_c00443{width:793.626667pt;}
.x0_c00443{left:0.000000pt;}
.x5_c00443{left:113.440000pt;}
.x6_c00443{left:137.440000pt;}
.x4_c00443{left:160.720000pt;}
.x1_c00443{left:188.000000pt;}
.x3_c00443{left:386.880000pt;}
.x2_c00443{left:396.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_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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00444;src:url('chunks/assets/font_daaa35e0d52f67ad01bcfb82.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00444;src:url('chunks/assets/font_c7980fbb680a8e5abb333ab3.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.100098;font-style: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;}
.v1_c00444{vertical-align:15.840000px;}
.ls2_c00444{letter-spacing:-0.151200px;}
.ls1_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00444{word-spacing:0.000000px;}
.fc1_c00444{color:rgb(255,255,255);}
.fc0_c00444{color:rgb(0,0,0);}
.fs1_c00444{font-size:54.000000px;}
.fs2_c00444{font-size:60.120000px;}
.fs0_c00444{font-size:72.000000px;}
.y0_c00444{bottom:0.000000px;}
.y2_c00444{bottom:57.450450px;}
.y4_c00444{bottom:1106.130360px;}
.y3_c00444{bottom:1143.750450px;}
.y1_c00444{bottom:1193.250450px;}
.h1_c00444{height:47.988281px;}
.h3_c00444{height:50.315273px;}
.h2_c00444{height:72.160313px;}
.h0_c00444{height:1263.000000px;}
.w1_c00444{width:892.500000px;}
.w0_c00444{width:892.830000px;}
.x0_c00444{left:0.000000px;}
.x1_c00444{left:127.620000px;}
.x2_c00444{left:154.620000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.v1_c00444{vertical-align:14.080000pt;}
.ls2_c00444{letter-spacing:-0.134400pt;}
.ls1_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:1077.440000pt;}
.ws0_c00444{word-spacing:0.000000pt;}
.fs1_c00444{font-size:48.000000pt;}
.fs2_c00444{font-size:53.440000pt;}
.fs0_c00444{font-size:64.000000pt;}
.y0_c00444{bottom:0.000000pt;}
.y2_c00444{bottom:51.067067pt;}
.y4_c00444{bottom:983.226987pt;}
.y3_c00444{bottom:1016.667067pt;}
.y1_c00444{bottom:1060.667067pt;}
.h1_c00444{height:42.656250pt;}
.h3_c00444{height:44.724687pt;}
.h2_c00444{height:64.142500pt;}
.h0_c00444{height:1122.666667pt;}
.w1_c00444{width:793.333333pt;}
.w0_c00444{width:793.626667pt;}
.x0_c00444{left:0.000000pt;}
.x1_c00444{left:113.440000pt;}
.x2_c00444{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_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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_91541f866881a886e9bfcf2e.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;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_c00445;src:url('chunks/assets/font_edbb172ddfadad66c56158c5.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00445;src:url('chunks/assets/font_fa9efbfb27064f425c0e9220.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00445;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;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_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;}
.v1_c00445{vertical-align:15.840000px;}
.ls7_c00445{letter-spacing:-0.151200px;}
.lse_c00445{letter-spacing:-0.057600px;}
.lsc_c00445{letter-spacing:-0.028800px;}
.ls8_c00445{letter-spacing:-0.021600px;}
.lsa_c00445{letter-spacing:-0.014400px;}
.ls9_c00445{letter-spacing:-0.010800px;}
.lsb_c00445{letter-spacing:-0.007200px;}
.ls6_c00445{letter-spacing:0.000000px;}
.ls2_c00445{letter-spacing:0.007200px;}
.ls5_c00445{letter-spacing:0.014400px;}
.ls4_c00445{letter-spacing:0.021600px;}
.ls3_c00445{letter-spacing:0.028800px;}
.lsd_c00445{letter-spacing:0.036000px;}
.ls0_c00445{letter-spacing:1212.120000px;}
.ls1_c00445{letter-spacing:2021.976000px;}
.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;}
}
.wsc_c00445{word-spacing:-0.028800px;}
.ws6_c00445{word-spacing:-0.007200px;}
.ws0_c00445{word-spacing:0.000000px;}
.ws2_c00445{word-spacing:0.010800px;}
.ws1_c00445{word-spacing:0.021600px;}
.wsb_c00445{word-spacing:0.050400px;}
.ws5_c00445{word-spacing:0.705600px;}
.ws4_c00445{word-spacing:0.777600px;}
.ws12_c00445{word-spacing:1.065600px;}
.ws13_c00445{word-spacing:1.101600px;}
.ws9_c00445{word-spacing:2.894400px;}
.ws8_c00445{word-spacing:2.901600px;}
.wsa_c00445{word-spacing:3.628800px;}
.ws7_c00445{word-spacing:5.428800px;}
.ws3_c00445{word-spacing:6.818400px;}
.ws14_c00445{word-spacing:8.654400px;}
.ws15_c00445{word-spacing:8.661600px;}
.wse_c00445{word-spacing:13.233600px;}
.wsd_c00445{word-spacing:13.327200px;}
.ws16_c00445{word-spacing:13.593600px;}
.ws17_c00445{word-spacing:13.737600px;}
.wsf_c00445{word-spacing:16.920000px;}
.ws10_c00445{word-spacing:16.934400px;}
.ws11_c00445{word-spacing:18.763200px;}
.ws18_c00445{word-spacing:23.400000px;}
._1_c00445{margin-left:-1.404000px;}
._0_c00445{width:1.296000px;}
.fc0_c00445{color:rgb(0,0,0);}
.fs1_c00445{font-size:54.000000px;}
.fs0_c00445{font-size:72.000000px;}
.fs2_c00445{font-size:108.000000px;}
.y0_c00445{bottom:0.000000px;}
.y2_c00445{bottom:57.450450px;}
.y15_c00445{bottom:115.320450px;}
.y14_c00445{bottom:149.700450px;}
.y13_c00445{bottom:184.170450px;}
.y12_c00445{bottom:218.550450px;}
.y11_c00445{bottom:253.020450px;}
.y10_c00445{bottom:287.400450px;}
.yf_c00445{bottom:321.870450px;}
.ye_c00445{bottom:356.250450px;}
.yd_c00445{bottom:390.720450px;}
.yc_c00445{bottom:425.100450px;}
.yb_c00445{bottom:459.570450px;}
.ya_c00445{bottom:502.950450px;}
.y9_c00445{bottom:537.420450px;}
.y8_c00445{bottom:571.800450px;}
.y7_c00445{bottom:601.050450px;}
.y6_c00445{bottom:755.841450px;}
.y5_c00445{bottom:801.471450px;}
.y4_c00445{bottom:847.020450px;}
.y3_c00445{bottom:1141.140450px;}
.y1_c00445{bottom:1193.250450px;}
.h1_c00445{height:47.988281px;}
.h3_c00445{height:60.257812px;}
.h2_c00445{height:72.160313px;}
.h5_c00445{height:90.492188px;}
.h4_c00445{height:112.640625px;}
.h0_c00445{height:1263.000000px;}
.w1_c00445{width:892.500000px;}
.w0_c00445{width:892.830000px;}
.x0_c00445{left:0.000000px;}
.x2_c00445{left:119.160000px;}
.x1_c00445{left:127.620000px;}
.x3_c00445{left:180.810000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.v1_c00445{vertical-align:14.080000pt;}
.ls7_c00445{letter-spacing:-0.134400pt;}
.lse_c00445{letter-spacing:-0.051200pt;}
.lsc_c00445{letter-spacing:-0.025600pt;}
.ls8_c00445{letter-spacing:-0.019200pt;}
.lsa_c00445{letter-spacing:-0.012800pt;}
.ls9_c00445{letter-spacing:-0.009600pt;}
.lsb_c00445{letter-spacing:-0.006400pt;}
.ls6_c00445{letter-spacing:0.000000pt;}
.ls2_c00445{letter-spacing:0.006400pt;}
.ls5_c00445{letter-spacing:0.012800pt;}
.ls4_c00445{letter-spacing:0.019200pt;}
.ls3_c00445{letter-spacing:0.025600pt;}
.lsd_c00445{letter-spacing:0.032000pt;}
.ls0_c00445{letter-spacing:1077.440000pt;}
.ls1_c00445{letter-spacing:1797.312000pt;}
.wsc_c00445{word-spacing:-0.025600pt;}
.ws6_c00445{word-spacing:-0.006400pt;}
.ws0_c00445{word-spacing:0.000000pt;}
.ws2_c00445{word-spacing:0.009600pt;}
.ws1_c00445{word-spacing:0.019200pt;}
.wsb_c00445{word-spacing:0.044800pt;}
.ws5_c00445{word-spacing:0.627200pt;}
.ws4_c00445{word-spacing:0.691200pt;}
.ws12_c00445{word-spacing:0.947200pt;}
.ws13_c00445{word-spacing:0.979200pt;}
.ws9_c00445{word-spacing:2.572800pt;}
.ws8_c00445{word-spacing:2.579200pt;}
.wsa_c00445{word-spacing:3.225600pt;}
.ws7_c00445{word-spacing:4.825600pt;}
.ws3_c00445{word-spacing:6.060800pt;}
.ws14_c00445{word-spacing:7.692800pt;}
.ws15_c00445{word-spacing:7.699200pt;}
.wse_c00445{word-spacing:11.763200pt;}
.wsd_c00445{word-spacing:11.846400pt;}
.ws16_c00445{word-spacing:12.083200pt;}
.ws17_c00445{word-spacing:12.211200pt;}
.wsf_c00445{word-spacing:15.040000pt;}
.ws10_c00445{word-spacing:15.052800pt;}
.ws11_c00445{word-spacing:16.678400pt;}
.ws18_c00445{word-spacing:20.800000pt;}
._1_c00445{margin-left:-1.248000pt;}
._0_c00445{width:1.152000pt;}
.fs1_c00445{font-size:48.000000pt;}
.fs0_c00445{font-size:64.000000pt;}
.fs2_c00445{font-size:96.000000pt;}
.y0_c00445{bottom:0.000000pt;}
.y2_c00445{bottom:51.067067pt;}
.y15_c00445{bottom:102.507067pt;}
.y14_c00445{bottom:133.067067pt;}
.y13_c00445{bottom:163.707067pt;}
.y12_c00445{bottom:194.267067pt;}
.y11_c00445{bottom:224.907067pt;}
.y10_c00445{bottom:255.467067pt;}
.yf_c00445{bottom:286.107067pt;}
.ye_c00445{bottom:316.667067pt;}
.yd_c00445{bottom:347.307067pt;}
.yc_c00445{bottom:377.867067pt;}
.yb_c00445{bottom:408.507067pt;}
.ya_c00445{bottom:447.067067pt;}
.y9_c00445{bottom:477.707067pt;}
.y8_c00445{bottom:508.267067pt;}
.y7_c00445{bottom:534.267067pt;}
.y6_c00445{bottom:671.859067pt;}
.y5_c00445{bottom:712.419067pt;}
.y4_c00445{bottom:752.907067pt;}
.y3_c00445{bottom:1014.347067pt;}
.y1_c00445{bottom:1060.667067pt;}
.h1_c00445{height:42.656250pt;}
.h3_c00445{height:53.562500pt;}
.h2_c00445{height:64.142500pt;}
.h5_c00445{height:80.437500pt;}
.h4_c00445{height:100.125000pt;}
.h0_c00445{height:1122.666667pt;}
.w1_c00445{width:793.333333pt;}
.w0_c00445{width:793.626667pt;}
.x0_c00445{left:0.000000pt;}
.x2_c00445{left:105.920000pt;}
.x1_c00445{left:113.440000pt;}
.x3_c00445{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_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_04decfc7bb05d4af5afc6b5f.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_5aaf1f7ab2f7193d19c28cd5.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00446;src:url('chunks/assets/font_2a5ee4cbc6350ad7a3933e48.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00446;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00446{font-family:ff5_c00446;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_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.v1_c00446{vertical-align:15.840000px;}
.ls7_c00446{letter-spacing:-0.151200px;}
.lsd_c00446{letter-spacing:-0.092268px;}
.lsf_c00446{letter-spacing:-0.043200px;}
.ls11_c00446{letter-spacing:-0.039060px;}
.ls10_c00446{letter-spacing:-0.023436px;}
.lsa_c00446{letter-spacing:-0.021600px;}
.ls9_c00446{letter-spacing:-0.014400px;}
.ls8_c00446{letter-spacing:-0.007200px;}
.lsb_c00446{letter-spacing:0.000000px;}
.ls3_c00446{letter-spacing:0.007200px;}
.ls2_c00446{letter-spacing:0.014400px;}
.ls6_c00446{letter-spacing:0.028800px;}
.lsc_c00446{letter-spacing:0.036000px;}
.ls0_c00446{letter-spacing:0.048096px;}
.lse_c00446{letter-spacing:0.058716px;}
.ls4_c00446{letter-spacing:23.486400px;}
.ls5_c00446{letter-spacing:38.044440px;}
.ls1_c00446{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00446{word-spacing:-20.877732px;}
.ws1_c00446{word-spacing:-19.506564px;}
.ws1a_c00446{word-spacing:-0.083880px;}
.ws27_c00446{word-spacing:-0.054684px;}
.ws3_c00446{word-spacing:0.000000px;}
.ws19_c00446{word-spacing:0.014400px;}
.ws20_c00446{word-spacing:0.021600px;}
.ws2_c00446{word-spacing:0.042084px;}
.ws26_c00446{word-spacing:0.050400px;}
.ws2f_c00446{word-spacing:0.057600px;}
.wsd_c00446{word-spacing:0.302400px;}
.wsc_c00446{word-spacing:0.345600px;}
.ws2e_c00446{word-spacing:0.698400px;}
.ws28_c00446{word-spacing:1.476000px;}
.ws9_c00446{word-spacing:1.497600px;}
.wsa_c00446{word-spacing:1.512000px;}
.ws2d_c00446{word-spacing:1.771200px;}
.ws2b_c00446{word-spacing:1.792800px;}
.ws2c_c00446{word-spacing:1.886400px;}
.ws1d_c00446{word-spacing:2.167200px;}
.ws7_c00446{word-spacing:2.476800px;}
.ws8_c00446{word-spacing:2.541600px;}
.ws4_c00446{word-spacing:2.887200px;}
.wsb_c00446{word-spacing:3.967200px;}
.ws24_c00446{word-spacing:4.320000px;}
.wse_c00446{word-spacing:4.341600px;}
.ws10_c00446{word-spacing:4.442400px;}
.wsf_c00446{word-spacing:4.464000px;}
.ws1e_c00446{word-spacing:4.651200px;}
.ws1f_c00446{word-spacing:4.694400px;}
.ws16_c00446{word-spacing:5.724000px;}
.ws14_c00446{word-spacing:5.767200px;}
.ws15_c00446{word-spacing:5.817600px;}
.ws23_c00446{word-spacing:6.084000px;}
.ws22_c00446{word-spacing:6.163200px;}
.ws29_c00446{word-spacing:8.280000px;}
.ws2a_c00446{word-spacing:8.337600px;}
.ws11_c00446{word-spacing:9.352800px;}
.ws25_c00446{word-spacing:9.727200px;}
.ws1c_c00446{word-spacing:11.844000px;}
.ws1b_c00446{word-spacing:11.923200px;}
.ws12_c00446{word-spacing:14.025600px;}
.ws13_c00446{word-spacing:14.162400px;}
.ws17_c00446{word-spacing:16.214400px;}
.ws18_c00446{word-spacing:16.286400px;}
.ws21_c00446{word-spacing:31.334400px;}
.ws6_c00446{word-spacing:38.167200px;}
.ws5_c00446{word-spacing:38.174400px;}
._0_c00446{margin-left:-1.322640px;}
._1_c00446{width:1.008000px;}
.fc0_c00446{color:rgb(0,0,0);}
.fs2_c00446{font-size:54.000000px;}
.fs0_c00446{font-size:60.120000px;}
.fs1_c00446{font-size:72.000000px;}
.fs4_c00446{font-size:78.120000px;}
.fs3_c00446{font-size:83.880000px;}
.y0_c00446{bottom:0.000000px;}
.y2_c00446{bottom:57.450450px;}
.y1e_c00446{bottom:131.070450px;}
.y1d_c00446{bottom:165.540450px;}
.y1c_c00446{bottom:199.920450px;}
.y1b_c00446{bottom:234.390450px;}
.y1a_c00446{bottom:268.770450px;}
.y19_c00446{bottom:313.860450px;}
.y18_c00446{bottom:376.500450px;}
.y17_c00446{bottom:410.970450px;}
.y16_c00446{bottom:445.350450px;}
.y15_c00446{bottom:479.820450px;}
.y14_c00446{bottom:514.200450px;}
.y13_c00446{bottom:557.670450px;}
.y12_c00446{bottom:592.050450px;}
.y11_c00446{bottom:626.520450px;}
.y10_c00446{bottom:660.900450px;}
.yf_c00446{bottom:707.430450px;}
.ye_c00446{bottom:762.510450px;}
.yd_c00446{bottom:796.890450px;}
.yc_c00446{bottom:831.360450px;}
.yb_c00446{bottom:865.740450px;}
.ya_c00446{bottom:900.210450px;}
.y9_c00446{bottom:934.590450px;}
.y8_c00446{bottom:969.060450px;}
.y7_c00446{bottom:1003.440450px;}
.y6_c00446{bottom:1037.910450px;}
.y5_c00446{bottom:1072.290450px;}
.y4_c00446{bottom:1106.760450px;}
.y3_c00446{bottom:1141.140450px;}
.y1_c00446{bottom:1196.850450px;}
.h1_c00446{height:50.315273px;}
.h3_c00446{height:60.257812px;}
.h2_c00446{height:72.160312px;}
.h5_c00446{height:81.476719px;}
.h4_c00446{height:87.484219px;}
.h0_c00446{height:1263.000000px;}
.w1_c00446{width:892.500000px;}
.w0_c00446{width:892.830000px;}
.x0_c00446{left:0.000000px;}
.x1_c00446{left:127.620000px;}
.x2_c00446{left:180.810000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.v1_c00446{vertical-align:14.080000pt;}
.ls7_c00446{letter-spacing:-0.134400pt;}
.lsd_c00446{letter-spacing:-0.082016pt;}
.lsf_c00446{letter-spacing:-0.038400pt;}
.ls11_c00446{letter-spacing:-0.034720pt;}
.ls10_c00446{letter-spacing:-0.020832pt;}
.lsa_c00446{letter-spacing:-0.019200pt;}
.ls9_c00446{letter-spacing:-0.012800pt;}
.ls8_c00446{letter-spacing:-0.006400pt;}
.lsb_c00446{letter-spacing:0.000000pt;}
.ls3_c00446{letter-spacing:0.006400pt;}
.ls2_c00446{letter-spacing:0.012800pt;}
.ls6_c00446{letter-spacing:0.025600pt;}
.lsc_c00446{letter-spacing:0.032000pt;}
.ls0_c00446{letter-spacing:0.042752pt;}
.lse_c00446{letter-spacing:0.052192pt;}
.ls4_c00446{letter-spacing:20.876800pt;}
.ls5_c00446{letter-spacing:33.817280pt;}
.ls1_c00446{letter-spacing:1077.440000pt;}
.ws0_c00446{word-spacing:-18.557984pt;}
.ws1_c00446{word-spacing:-17.339168pt;}
.ws1a_c00446{word-spacing:-0.074560pt;}
.ws27_c00446{word-spacing:-0.048608pt;}
.ws3_c00446{word-spacing:0.000000pt;}
.ws19_c00446{word-spacing:0.012800pt;}
.ws20_c00446{word-spacing:0.019200pt;}
.ws2_c00446{word-spacing:0.037408pt;}
.ws26_c00446{word-spacing:0.044800pt;}
.ws2f_c00446{word-spacing:0.051200pt;}
.wsd_c00446{word-spacing:0.268800pt;}
.wsc_c00446{word-spacing:0.307200pt;}
.ws2e_c00446{word-spacing:0.620800pt;}
.ws28_c00446{word-spacing:1.312000pt;}
.ws9_c00446{word-spacing:1.331200pt;}
.wsa_c00446{word-spacing:1.344000pt;}
.ws2d_c00446{word-spacing:1.574400pt;}
.ws2b_c00446{word-spacing:1.593600pt;}
.ws2c_c00446{word-spacing:1.676800pt;}
.ws1d_c00446{word-spacing:1.926400pt;}
.ws7_c00446{word-spacing:2.201600pt;}
.ws8_c00446{word-spacing:2.259200pt;}
.ws4_c00446{word-spacing:2.566400pt;}
.wsb_c00446{word-spacing:3.526400pt;}
.ws24_c00446{word-spacing:3.840000pt;}
.wse_c00446{word-spacing:3.859200pt;}
.ws10_c00446{word-spacing:3.948800pt;}
.wsf_c00446{word-spacing:3.968000pt;}
.ws1e_c00446{word-spacing:4.134400pt;}
.ws1f_c00446{word-spacing:4.172800pt;}
.ws16_c00446{word-spacing:5.088000pt;}
.ws14_c00446{word-spacing:5.126400pt;}
.ws15_c00446{word-spacing:5.171200pt;}
.ws23_c00446{word-spacing:5.408000pt;}
.ws22_c00446{word-spacing:5.478400pt;}
.ws29_c00446{word-spacing:7.360000pt;}
.ws2a_c00446{word-spacing:7.411200pt;}
.ws11_c00446{word-spacing:8.313600pt;}
.ws25_c00446{word-spacing:8.646400pt;}
.ws1c_c00446{word-spacing:10.528000pt;}
.ws1b_c00446{word-spacing:10.598400pt;}
.ws12_c00446{word-spacing:12.467200pt;}
.ws13_c00446{word-spacing:12.588800pt;}
.ws17_c00446{word-spacing:14.412800pt;}
.ws18_c00446{word-spacing:14.476800pt;}
.ws21_c00446{word-spacing:27.852800pt;}
.ws6_c00446{word-spacing:33.926400pt;}
.ws5_c00446{word-spacing:33.932800pt;}
._0_c00446{margin-left:-1.175680pt;}
._1_c00446{width:0.896000pt;}
.fs2_c00446{font-size:48.000000pt;}
.fs0_c00446{font-size:53.440000pt;}
.fs1_c00446{font-size:64.000000pt;}
.fs4_c00446{font-size:69.440000pt;}
.fs3_c00446{font-size:74.560000pt;}
.y0_c00446{bottom:0.000000pt;}
.y2_c00446{bottom:51.067067pt;}
.y1e_c00446{bottom:116.507067pt;}
.y1d_c00446{bottom:147.147067pt;}
.y1c_c00446{bottom:177.707067pt;}
.y1b_c00446{bottom:208.347067pt;}
.y1a_c00446{bottom:238.907067pt;}
.y19_c00446{bottom:278.987067pt;}
.y18_c00446{bottom:334.667067pt;}
.y17_c00446{bottom:365.307067pt;}
.y16_c00446{bottom:395.867067pt;}
.y15_c00446{bottom:426.507067pt;}
.y14_c00446{bottom:457.067067pt;}
.y13_c00446{bottom:495.707067pt;}
.y12_c00446{bottom:526.267067pt;}
.y11_c00446{bottom:556.907067pt;}
.y10_c00446{bottom:587.467067pt;}
.yf_c00446{bottom:628.827067pt;}
.ye_c00446{bottom:677.787067pt;}
.yd_c00446{bottom:708.347067pt;}
.yc_c00446{bottom:738.987067pt;}
.yb_c00446{bottom:769.547067pt;}
.ya_c00446{bottom:800.187067pt;}
.y9_c00446{bottom:830.747067pt;}
.y8_c00446{bottom:861.387067pt;}
.y7_c00446{bottom:891.947067pt;}
.y6_c00446{bottom:922.587067pt;}
.y5_c00446{bottom:953.147067pt;}
.y4_c00446{bottom:983.787067pt;}
.y3_c00446{bottom:1014.347067pt;}
.y1_c00446{bottom:1063.867067pt;}
.h1_c00446{height:44.724687pt;}
.h3_c00446{height:53.562500pt;}
.h2_c00446{height:64.142500pt;}
.h5_c00446{height:72.423750pt;}
.h4_c00446{height:77.763750pt;}
.h0_c00446{height:1122.666667pt;}
.w1_c00446{width:793.333333pt;}
.w0_c00446{width:793.626667pt;}
.x0_c00446{left:0.000000pt;}
.x1_c00446{left:113.440000pt;}
.x2_c00446{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_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_ffc60a1e251d871993669a63.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_e71dabd48e59542169dc7e50.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00447;src:url('chunks/assets/font_789c8596374f4c72ecf7c1f4.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;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_c00447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00447{vertical-align:-15.120000px;}
.v0_c00447{vertical-align:0.000000px;}
.v1_c00447{vertical-align:15.120000px;}
.lse_c00447{letter-spacing:-0.151200px;}
.ls15_c00447{letter-spacing:-0.050400px;}
.ls1a_c00447{letter-spacing:-0.043092px;}
.lsb_c00447{letter-spacing:-0.030060px;}
.lsf_c00447{letter-spacing:-0.028800px;}
.ls17_c00447{letter-spacing:-0.021600px;}
.ls11_c00447{letter-spacing:-0.014400px;}
.ls13_c00447{letter-spacing:-0.013176px;}
.ls18_c00447{letter-spacing:-0.011664px;}
.ls10_c00447{letter-spacing:-0.007200px;}
.lsc_c00447{letter-spacing:-0.006012px;}
.lsd_c00447{letter-spacing:0.000000px;}
.ls9_c00447{letter-spacing:0.003888px;}
.ls14_c00447{letter-spacing:0.007200px;}
.lsa_c00447{letter-spacing:0.009576px;}
.ls5_c00447{letter-spacing:0.014364px;}
.ls4_c00447{letter-spacing:0.014400px;}
.ls7_c00447{letter-spacing:0.019152px;}
.ls3_c00447{letter-spacing:0.028800px;}
.ls8_c00447{letter-spacing:0.033516px;}
.ls16_c00447{letter-spacing:0.036000px;}
.ls0_c00447{letter-spacing:0.042084px;}
.ls2_c00447{letter-spacing:0.045720px;}
.ls19_c00447{letter-spacing:0.047880px;}
.ls6_c00447{letter-spacing:0.062244px;}
.ls1_c00447{letter-spacing:0.125280px;}
.ls12_c00447{letter-spacing:0.168336px;}
.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;}
}
.ws2_c00447{word-spacing:-10.812528px;}
.ws1_c00447{word-spacing:-10.808640px;}
.ws0_c00447{word-spacing:-10.796976px;}
.ws4_c00447{word-spacing:-0.264528px;}
.ws3_c00447{word-spacing:-0.240480px;}
.ws22_c00447{word-spacing:-0.028728px;}
.ws5_c00447{word-spacing:0.000000px;}
.ws23_c00447{word-spacing:0.004788px;}
.wsd_c00447{word-spacing:0.014400px;}
.wse_c00447{word-spacing:0.043200px;}
.wsf_c00447{word-spacing:0.048096px;}
.ws25_c00447{word-spacing:0.368676px;}
.ws24_c00447{word-spacing:0.421344px;}
.ws1e_c00447{word-spacing:3.193596px;}
.ws21_c00447{word-spacing:3.222324px;}
.ws1f_c00447{word-spacing:3.236688px;}
.ws20_c00447{word-spacing:3.600576px;}
.ws1b_c00447{word-spacing:3.909600px;}
.ws1c_c00447{word-spacing:3.981600px;}
.ws9_c00447{word-spacing:5.788800px;}
.ws18_c00447{word-spacing:6.444000px;}
.ws17_c00447{word-spacing:6.465600px;}
.ws8_c00447{word-spacing:6.645600px;}
.wsb_c00447{word-spacing:6.789600px;}
.ws7_c00447{word-spacing:6.840000px;}
.wsa_c00447{word-spacing:6.890400px;}
.ws6_c00447{word-spacing:6.926400px;}
.ws16_c00447{word-spacing:7.632000px;}
.ws14_c00447{word-spacing:7.660800px;}
.ws15_c00447{word-spacing:7.675200px;}
.ws10_c00447{word-spacing:8.632800px;}
.ws19_c00447{word-spacing:11.138400px;}
.ws1a_c00447{word-spacing:11.260800px;}
.ws11_c00447{word-spacing:12.945600px;}
.ws12_c00447{word-spacing:12.967200px;}
.ws1d_c00447{word-spacing:14.767200px;}
.wsc_c00447{word-spacing:16.588800px;}
.ws13_c00447{word-spacing:17.294400px;}
._1_c00447{margin-left:-1.022040px;}
._0_c00447{width:1.052100px;}
._2_c00447{width:3.260628px;}
.fc0_c00447{color:rgb(0,0,0);}
.fs3_c00447{font-size:38.880000px;}
.fs4_c00447{font-size:42.120000px;}
.fs6_c00447{font-size:47.880000px;}
.fs2_c00447{font-size:54.000000px;}
.fs0_c00447{font-size:60.120000px;}
.fs5_c00447{font-size:65.880000px;}
.fs1_c00447{font-size:72.000000px;}
.y0_c00447{bottom:0.000000px;}
.y3_c00447{bottom:57.450450px;}
.y4_c00447{bottom:61.410450px;}
.y1b_c00447{bottom:88.232970px;}
.y1a_c00447{bottom:106.499190px;}
.y19_c00447{bottom:120.360450px;}
.y18_c00447{bottom:135.570450px;}
.y17_c00447{bottom:156.270450px;}
.y16_c00447{bottom:176.970600px;}
.y15_c00447{bottom:234.570600px;}
.y14_c00447{bottom:268.950600px;}
.y13_c00447{bottom:303.420600px;}
.y12_c00447{bottom:337.800600px;}
.y11_c00447{bottom:372.270600px;}
.y10_c00447{bottom:406.650600px;}
.yf_c00447{bottom:441.120600px;}
.ye_c00447{bottom:475.500600px;}
.yd_c00447{bottom:513.302070px;}
.yc_c00447{bottom:527.520450px;}
.yb_c00447{bottom:758.370450px;}
.ya_c00447{bottom:771.240450px;}
.y9_c00447{bottom:1003.440450px;}
.y8_c00447{bottom:1037.910450px;}
.y7_c00447{bottom:1072.290450px;}
.y6_c00447{bottom:1106.760450px;}
.y5_c00447{bottom:1141.140450px;}
.y2_c00447{bottom:1176.420450px;}
.y1_c00447{bottom:1196.940450px;}
.h2_c00447{height:47.988281px;}
.h6_c00447{height:49.937344px;}
.h1_c00447{height:50.315273px;}
.h5_c00447{height:55.129418px;}
.h3_c00447{height:56.320312px;}
.h4_c00447{height:60.257812px;}
.h0_c00447{height:1263.000000px;}
.w1_c00447{width:892.500000px;}
.w0_c00447{width:892.830000px;}
.x0_c00447{left:0.000000px;}
.x2_c00447{left:127.620000px;}
.xa_c00447{left:154.624050px;}
.x5_c00447{left:180.810000px;}
.x1_c00447{left:217.440000px;}
.x7_c00447{left:267.210000px;}
.x9_c00447{left:291.241350px;}
.x4_c00447{left:435.240000px;}
.x3_c00447{left:446.490000px;}
.x8_c00447{left:764.010000px;}
.x6_c00447{left:768.420000px;}
@media print{
.v2_c00447{vertical-align:-13.440000pt;}
.v0_c00447{vertical-align:0.000000pt;}
.v1_c00447{vertical-align:13.440000pt;}
.lse_c00447{letter-spacing:-0.134400pt;}
.ls15_c00447{letter-spacing:-0.044800pt;}
.ls1a_c00447{letter-spacing:-0.038304pt;}
.lsb_c00447{letter-spacing:-0.026720pt;}
.lsf_c00447{letter-spacing:-0.025600pt;}
.ls17_c00447{letter-spacing:-0.019200pt;}
.ls11_c00447{letter-spacing:-0.012800pt;}
.ls13_c00447{letter-spacing:-0.011712pt;}
.ls18_c00447{letter-spacing:-0.010368pt;}
.ls10_c00447{letter-spacing:-0.006400pt;}
.lsc_c00447{letter-spacing:-0.005344pt;}
.lsd_c00447{letter-spacing:0.000000pt;}
.ls9_c00447{letter-spacing:0.003456pt;}
.ls14_c00447{letter-spacing:0.006400pt;}
.lsa_c00447{letter-spacing:0.008512pt;}
.ls5_c00447{letter-spacing:0.012768pt;}
.ls4_c00447{letter-spacing:0.012800pt;}
.ls7_c00447{letter-spacing:0.017024pt;}
.ls3_c00447{letter-spacing:0.025600pt;}
.ls8_c00447{letter-spacing:0.029792pt;}
.ls16_c00447{letter-spacing:0.032000pt;}
.ls0_c00447{letter-spacing:0.037408pt;}
.ls2_c00447{letter-spacing:0.040640pt;}
.ls19_c00447{letter-spacing:0.042560pt;}
.ls6_c00447{letter-spacing:0.055328pt;}
.ls1_c00447{letter-spacing:0.111360pt;}
.ls12_c00447{letter-spacing:0.149632pt;}
.ws2_c00447{word-spacing:-9.611136pt;}
.ws1_c00447{word-spacing:-9.607680pt;}
.ws0_c00447{word-spacing:-9.597312pt;}
.ws4_c00447{word-spacing:-0.235136pt;}
.ws3_c00447{word-spacing:-0.213760pt;}
.ws22_c00447{word-spacing:-0.025536pt;}
.ws5_c00447{word-spacing:0.000000pt;}
.ws23_c00447{word-spacing:0.004256pt;}
.wsd_c00447{word-spacing:0.012800pt;}
.wse_c00447{word-spacing:0.038400pt;}
.wsf_c00447{word-spacing:0.042752pt;}
.ws25_c00447{word-spacing:0.327712pt;}
.ws24_c00447{word-spacing:0.374528pt;}
.ws1e_c00447{word-spacing:2.838752pt;}
.ws21_c00447{word-spacing:2.864288pt;}
.ws1f_c00447{word-spacing:2.877056pt;}
.ws20_c00447{word-spacing:3.200512pt;}
.ws1b_c00447{word-spacing:3.475200pt;}
.ws1c_c00447{word-spacing:3.539200pt;}
.ws9_c00447{word-spacing:5.145600pt;}
.ws18_c00447{word-spacing:5.728000pt;}
.ws17_c00447{word-spacing:5.747200pt;}
.ws8_c00447{word-spacing:5.907200pt;}
.wsb_c00447{word-spacing:6.035200pt;}
.ws7_c00447{word-spacing:6.080000pt;}
.wsa_c00447{word-spacing:6.124800pt;}
.ws6_c00447{word-spacing:6.156800pt;}
.ws16_c00447{word-spacing:6.784000pt;}
.ws14_c00447{word-spacing:6.809600pt;}
.ws15_c00447{word-spacing:6.822400pt;}
.ws10_c00447{word-spacing:7.673600pt;}
.ws19_c00447{word-spacing:9.900800pt;}
.ws1a_c00447{word-spacing:10.009600pt;}
.ws11_c00447{word-spacing:11.507200pt;}
.ws12_c00447{word-spacing:11.526400pt;}
.ws1d_c00447{word-spacing:13.126400pt;}
.wsc_c00447{word-spacing:14.745600pt;}
.ws13_c00447{word-spacing:15.372800pt;}
._1_c00447{margin-left:-0.908480pt;}
._0_c00447{width:0.935200pt;}
._2_c00447{width:2.898336pt;}
.fs3_c00447{font-size:34.560000pt;}
.fs4_c00447{font-size:37.440000pt;}
.fs6_c00447{font-size:42.560000pt;}
.fs2_c00447{font-size:48.000000pt;}
.fs0_c00447{font-size:53.440000pt;}
.fs5_c00447{font-size:58.560000pt;}
.fs1_c00447{font-size:64.000000pt;}
.y0_c00447{bottom:0.000000pt;}
.y3_c00447{bottom:51.067067pt;}
.y4_c00447{bottom:54.587067pt;}
.y1b_c00447{bottom:78.429307pt;}
.y1a_c00447{bottom:94.665947pt;}
.y19_c00447{bottom:106.987067pt;}
.y18_c00447{bottom:120.507067pt;}
.y17_c00447{bottom:138.907067pt;}
.y16_c00447{bottom:157.307200pt;}
.y15_c00447{bottom:208.507200pt;}
.y14_c00447{bottom:239.067200pt;}
.y13_c00447{bottom:269.707200pt;}
.y12_c00447{bottom:300.267200pt;}
.y11_c00447{bottom:330.907200pt;}
.y10_c00447{bottom:361.467200pt;}
.yf_c00447{bottom:392.107200pt;}
.ye_c00447{bottom:422.667200pt;}
.yd_c00447{bottom:456.268507pt;}
.yc_c00447{bottom:468.907067pt;}
.yb_c00447{bottom:674.107067pt;}
.ya_c00447{bottom:685.547067pt;}
.y9_c00447{bottom:891.947067pt;}
.y8_c00447{bottom:922.587067pt;}
.y7_c00447{bottom:953.147067pt;}
.y6_c00447{bottom:983.787067pt;}
.y5_c00447{bottom:1014.347067pt;}
.y2_c00447{bottom:1045.707067pt;}
.y1_c00447{bottom:1063.947067pt;}
.h2_c00447{height:42.656250pt;}
.h6_c00447{height:44.388750pt;}
.h1_c00447{height:44.724687pt;}
.h5_c00447{height:49.003927pt;}
.h3_c00447{height:50.062500pt;}
.h4_c00447{height:53.562500pt;}
.h0_c00447{height:1122.666667pt;}
.w1_c00447{width:793.333333pt;}
.w0_c00447{width:793.626667pt;}
.x0_c00447{left:0.000000pt;}
.x2_c00447{left:113.440000pt;}
.xa_c00447{left:137.443600pt;}
.x5_c00447{left:160.720000pt;}
.x1_c00447{left:193.280000pt;}
.x7_c00447{left:237.520000pt;}
.x9_c00447{left:258.881200pt;}
.x4_c00447{left:386.880000pt;}
.x3_c00447{left:396.880000pt;}
.x8_c00447{left:679.120000pt;}
.x6_c00447{left:683.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2b54a005e7cdf636cb469921.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00448;src:url('chunks/assets/font_5e5abcb6ef24f90c0d75b343.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;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_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;}
.v1_c00448{vertical-align:15.840000px;}
.v2_c00448{vertical-align:29.880000px;}
.ls9_c00448{letter-spacing:-0.151200px;}
.lsf_c00448{letter-spacing:-0.036000px;}
.lse_c00448{letter-spacing:-0.028800px;}
.ls11_c00448{letter-spacing:-0.021600px;}
.ls10_c00448{letter-spacing:-0.014400px;}
.lsb_c00448{letter-spacing:-0.007200px;}
.lsc_c00448{letter-spacing:0.000000px;}
.ls2_c00448{letter-spacing:0.006012px;}
.ls4_c00448{letter-spacing:0.007200px;}
.ls5_c00448{letter-spacing:0.014400px;}
.ls7_c00448{letter-spacing:0.023940px;}
.ls6_c00448{letter-spacing:0.028728px;}
.ls8_c00448{letter-spacing:0.033516px;}
.ls13_c00448{letter-spacing:0.043092px;}
.ls3_c00448{letter-spacing:0.045720px;}
.ls0_c00448{letter-spacing:0.048096px;}
.ls12_c00448{letter-spacing:0.093600px;}
.lsd_c00448{letter-spacing:0.168336px;}
.lsa_c00448{letter-spacing:7.560000px;}
.ls1_c00448{letter-spacing:1212.120000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:-9.720000px;}
.wsc_c00448{word-spacing:-0.093600px;}
.ws1f_c00448{word-spacing:-0.023940px;}
.ws20_c00448{word-spacing:-0.014364px;}
.ws1c_c00448{word-spacing:-0.009576px;}
.ws1d_c00448{word-spacing:-0.004788px;}
.ws2_c00448{word-spacing:0.000000px;}
.ws4_c00448{word-spacing:0.007200px;}
.ws3_c00448{word-spacing:0.014400px;}
.ws1_c00448{word-spacing:0.042084px;}
.ws5_c00448{word-spacing:0.084168px;}
.ws16_c00448{word-spacing:0.734400px;}
.ws17_c00448{word-spacing:0.756000px;}
.ws1e_c00448{word-spacing:1.062936px;}
.ws14_c00448{word-spacing:1.425600px;}
.ws15_c00448{word-spacing:1.476000px;}
.ws10_c00448{word-spacing:2.872800px;}
.wsf_c00448{word-spacing:2.937600px;}
.ws11_c00448{word-spacing:2.944800px;}
.ws13_c00448{word-spacing:3.225600px;}
.ws12_c00448{word-spacing:3.254400px;}
.ws1a_c00448{word-spacing:4.312800px;}
.ws1b_c00448{word-spacing:4.356000px;}
.ws9_c00448{word-spacing:4.968000px;}
.wsa_c00448{word-spacing:5.032800px;}
.ws8_c00448{word-spacing:5.054400px;}
.ws6_c00448{word-spacing:6.868800px;}
.ws7_c00448{word-spacing:6.876000px;}
.wse_c00448{word-spacing:7.912800px;}
.wsd_c00448{word-spacing:7.984800px;}
.wsb_c00448{word-spacing:10.814400px;}
.ws18_c00448{word-spacing:13.320000px;}
.ws19_c00448{word-spacing:13.370400px;}
._1_c00448{margin-left:-7.704000px;}
._2_c00448{margin-left:-6.192000px;}
._0_c00448{margin-left:-1.322640px;}
._3_c00448{width:1.123200px;}
.fc0_c00448{color:rgb(0,0,0);}
.fs3_c00448{font-size:38.880000px;}
.fs4_c00448{font-size:42.120000px;}
.fs5_c00448{font-size:47.880000px;}
.fs2_c00448{font-size:54.000000px;}
.fs0_c00448{font-size:60.120000px;}
.fs1_c00448{font-size:72.000000px;}
.y0_c00448{bottom:0.000000px;}
.y2_c00448{bottom:57.450450px;}
.y1a_c00448{bottom:88.236750px;}
.y19_c00448{bottom:106.502970px;}
.y18_c00448{bottom:120.364230px;}
.y17_c00448{bottom:138.630450px;}
.y16_c00448{bottom:153.840450px;}
.y15_c00448{bottom:174.540450px;}
.y14_c00448{bottom:195.240450px;}
.y13_c00448{bottom:246.270450px;}
.y12_c00448{bottom:280.650450px;}
.y11_c00448{bottom:315.120450px;}
.y10_c00448{bottom:358.500450px;}
.yf_c00448{bottom:392.970450px;}
.ye_c00448{bottom:427.350450px;}
.yd_c00448{bottom:461.820450px;}
.yc_c00448{bottom:496.200450px;}
.yb_c00448{bottom:530.670450px;}
.ya_c00448{bottom:574.050450px;}
.y9_c00448{bottom:608.520450px;}
.y8_c00448{bottom:642.900450px;}
.y7_c00448{bottom:677.370450px;}
.y6_c00448{bottom:717.600450px;}
.y5_c00448{bottom:739.470450px;}
.y4_c00448{bottom:1106.760450px;}
.y3_c00448{bottom:1141.140450px;}
.y1_c00448{bottom:1196.850450px;}
.h6_c00448{height:47.988281px;}
.h7_c00448{height:49.937344px;}
.h1_c00448{height:50.315273px;}
.h3_c00448{height:60.257812px;}
.h4_c00448{height:65.130820px;}
.h5_c00448{height:65.131420px;}
.h2_c00448{height:72.160312px;}
.h0_c00448{height:1263.000000px;}
.w1_c00448{width:892.500000px;}
.w0_c00448{width:892.830000px;}
.x0_c00448{left:0.000000px;}
.x1_c00448{left:127.620000px;}
.x5_c00448{left:141.122160px;}
.x4_c00448{left:180.810000px;}
.x3_c00448{left:304.110000px;}
.x2_c00448{left:748.170000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.v1_c00448{vertical-align:14.080000pt;}
.v2_c00448{vertical-align:26.560000pt;}
.ls9_c00448{letter-spacing:-0.134400pt;}
.lsf_c00448{letter-spacing:-0.032000pt;}
.lse_c00448{letter-spacing:-0.025600pt;}
.ls11_c00448{letter-spacing:-0.019200pt;}
.ls10_c00448{letter-spacing:-0.012800pt;}
.lsb_c00448{letter-spacing:-0.006400pt;}
.lsc_c00448{letter-spacing:0.000000pt;}
.ls2_c00448{letter-spacing:0.005344pt;}
.ls4_c00448{letter-spacing:0.006400pt;}
.ls5_c00448{letter-spacing:0.012800pt;}
.ls7_c00448{letter-spacing:0.021280pt;}
.ls6_c00448{letter-spacing:0.025536pt;}
.ls8_c00448{letter-spacing:0.029792pt;}
.ls13_c00448{letter-spacing:0.038304pt;}
.ls3_c00448{letter-spacing:0.040640pt;}
.ls0_c00448{letter-spacing:0.042752pt;}
.ls12_c00448{letter-spacing:0.083200pt;}
.lsd_c00448{letter-spacing:0.149632pt;}
.lsa_c00448{letter-spacing:6.720000pt;}
.ls1_c00448{letter-spacing:1077.440000pt;}
.ws0_c00448{word-spacing:-8.640000pt;}
.wsc_c00448{word-spacing:-0.083200pt;}
.ws1f_c00448{word-spacing:-0.021280pt;}
.ws20_c00448{word-spacing:-0.012768pt;}
.ws1c_c00448{word-spacing:-0.008512pt;}
.ws1d_c00448{word-spacing:-0.004256pt;}
.ws2_c00448{word-spacing:0.000000pt;}
.ws4_c00448{word-spacing:0.006400pt;}
.ws3_c00448{word-spacing:0.012800pt;}
.ws1_c00448{word-spacing:0.037408pt;}
.ws5_c00448{word-spacing:0.074816pt;}
.ws16_c00448{word-spacing:0.652800pt;}
.ws17_c00448{word-spacing:0.672000pt;}
.ws1e_c00448{word-spacing:0.944832pt;}
.ws14_c00448{word-spacing:1.267200pt;}
.ws15_c00448{word-spacing:1.312000pt;}
.ws10_c00448{word-spacing:2.553600pt;}
.wsf_c00448{word-spacing:2.611200pt;}
.ws11_c00448{word-spacing:2.617600pt;}
.ws13_c00448{word-spacing:2.867200pt;}
.ws12_c00448{word-spacing:2.892800pt;}
.ws1a_c00448{word-spacing:3.833600pt;}
.ws1b_c00448{word-spacing:3.872000pt;}
.ws9_c00448{word-spacing:4.416000pt;}
.wsa_c00448{word-spacing:4.473600pt;}
.ws8_c00448{word-spacing:4.492800pt;}
.ws6_c00448{word-spacing:6.105600pt;}
.ws7_c00448{word-spacing:6.112000pt;}
.wse_c00448{word-spacing:7.033600pt;}
.wsd_c00448{word-spacing:7.097600pt;}
.wsb_c00448{word-spacing:9.612800pt;}
.ws18_c00448{word-spacing:11.840000pt;}
.ws19_c00448{word-spacing:11.884800pt;}
._1_c00448{margin-left:-6.848000pt;}
._2_c00448{margin-left:-5.504000pt;}
._0_c00448{margin-left:-1.175680pt;}
._3_c00448{width:0.998400pt;}
.fs3_c00448{font-size:34.560000pt;}
.fs4_c00448{font-size:37.440000pt;}
.fs5_c00448{font-size:42.560000pt;}
.fs2_c00448{font-size:48.000000pt;}
.fs0_c00448{font-size:53.440000pt;}
.fs1_c00448{font-size:64.000000pt;}
.y0_c00448{bottom:0.000000pt;}
.y2_c00448{bottom:51.067067pt;}
.y1a_c00448{bottom:78.432667pt;}
.y19_c00448{bottom:94.669307pt;}
.y18_c00448{bottom:106.990427pt;}
.y17_c00448{bottom:123.227067pt;}
.y16_c00448{bottom:136.747067pt;}
.y15_c00448{bottom:155.147067pt;}
.y14_c00448{bottom:173.547067pt;}
.y13_c00448{bottom:218.907067pt;}
.y12_c00448{bottom:249.467067pt;}
.y11_c00448{bottom:280.107067pt;}
.y10_c00448{bottom:318.667067pt;}
.yf_c00448{bottom:349.307067pt;}
.ye_c00448{bottom:379.867067pt;}
.yd_c00448{bottom:410.507067pt;}
.yc_c00448{bottom:441.067067pt;}
.yb_c00448{bottom:471.707067pt;}
.ya_c00448{bottom:510.267067pt;}
.y9_c00448{bottom:540.907067pt;}
.y8_c00448{bottom:571.467067pt;}
.y7_c00448{bottom:602.107067pt;}
.y6_c00448{bottom:637.867067pt;}
.y5_c00448{bottom:657.307067pt;}
.y4_c00448{bottom:983.787067pt;}
.y3_c00448{bottom:1014.347067pt;}
.y1_c00448{bottom:1063.867067pt;}
.h6_c00448{height:42.656250pt;}
.h7_c00448{height:44.388750pt;}
.h1_c00448{height:44.724687pt;}
.h3_c00448{height:53.562500pt;}
.h4_c00448{height:57.894063pt;}
.h5_c00448{height:57.894596pt;}
.h2_c00448{height:64.142500pt;}
.h0_c00448{height:1122.666667pt;}
.w1_c00448{width:793.333333pt;}
.w0_c00448{width:793.626667pt;}
.x0_c00448{left:0.000000pt;}
.x1_c00448{left:113.440000pt;}
.x5_c00448{left:125.441920pt;}
.x4_c00448{left:160.720000pt;}
.x3_c00448{left:270.320000pt;}
.x2_c00448{left:665.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_332fd22c11ae057b1739c577.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_41058c284c1a6961216daf13.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;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_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;}
.v1_c00449{vertical-align:29.880000px;}
.ls8_c00449{letter-spacing:-0.151200px;}
.lsb_c00449{letter-spacing:-0.043200px;}
.lse_c00449{letter-spacing:-0.036000px;}
.ls5_c00449{letter-spacing:-0.030060px;}
.ls9_c00449{letter-spacing:-0.028800px;}
.lsc_c00449{letter-spacing:-0.021600px;}
.lsd_c00449{letter-spacing:-0.014400px;}
.lsa_c00449{letter-spacing:-0.007200px;}
.ls6_c00449{letter-spacing:-0.006012px;}
.ls7_c00449{letter-spacing:0.000000px;}
.ls1_c00449{letter-spacing:0.007200px;}
.ls2_c00449{letter-spacing:0.014400px;}
.ls3_c00449{letter-spacing:0.021600px;}
.ls4_c00449{letter-spacing:0.033516px;}
.ls0_c00449{letter-spacing:0.045720px;}
.lsf_c00449{letter-spacing:0.050400px;}
.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;}
}
.ws1_c00449{word-spacing:-0.264528px;}
.ws0_c00449{word-spacing:-0.240480px;}
.ws28_c00449{word-spacing:-0.014364px;}
.ws15_c00449{word-spacing:-0.007200px;}
.ws2_c00449{word-spacing:0.000000px;}
.ws1d_c00449{word-spacing:0.007200px;}
.ws27_c00449{word-spacing:0.014400px;}
.wsf_c00449{word-spacing:0.309600px;}
.wse_c00449{word-spacing:0.446400px;}
.ws1f_c00449{word-spacing:0.691200px;}
.wsb_c00449{word-spacing:0.756000px;}
.ws1e_c00449{word-spacing:0.763200px;}
.wsd_c00449{word-spacing:1.504800px;}
.wsc_c00449{word-spacing:1.576800px;}
.ws19_c00449{word-spacing:1.792800px;}
.ws5_c00449{word-spacing:1.807200px;}
.ws1a_c00449{word-spacing:1.965600px;}
.ws3_c00449{word-spacing:2.160000px;}
.ws4_c00449{word-spacing:2.246400px;}
.ws14_c00449{word-spacing:2.570400px;}
.ws13_c00449{word-spacing:2.606400px;}
.ws16_c00449{word-spacing:3.297600px;}
.ws20_c00449{word-spacing:3.578400px;}
.ws21_c00449{word-spacing:3.607200px;}
.ws24_c00449{word-spacing:4.341600px;}
.ws25_c00449{word-spacing:4.384800px;}
.ws17_c00449{word-spacing:5.004000px;}
.ws18_c00449{word-spacing:5.068800px;}
.ws10_c00449{word-spacing:5.752800px;}
.ws22_c00449{word-spacing:5.788800px;}
.ws11_c00449{word-spacing:5.810400px;}
.ws12_c00449{word-spacing:6.148800px;}
.wsa_c00449{word-spacing:6.523200px;}
.ws9_c00449{word-spacing:6.638400px;}
.ws23_c00449{word-spacing:7.581600px;}
.ws26_c00449{word-spacing:11.160000px;}
.ws7_c00449{word-spacing:12.319200px;}
.ws6_c00449{word-spacing:12.384000px;}
.ws1b_c00449{word-spacing:19.065600px;}
.ws1c_c00449{word-spacing:19.216800px;}
.ws8_c00449{word-spacing:23.061600px;}
._0_c00449{width:1.052100px;}
.fc0_c00449{color:rgb(0,0,0);}
.fs3_c00449{font-size:42.120000px;}
.fs4_c00449{font-size:47.880000px;}
.fs2_c00449{font-size:54.000000px;}
.fs0_c00449{font-size:60.120000px;}
.fs1_c00449{font-size:72.000000px;}
.y0_c00449{bottom:0.000000px;}
.y3_c00449{bottom:57.450450px;}
.y4_c00449{bottom:61.410450px;}
.y23_c00449{bottom:88.230450px;}
.y22_c00449{bottom:103.440450px;}
.y21_c00449{bottom:124.140450px;}
.y20_c00449{bottom:144.840450px;}
.y1f_c00449{bottom:210.090450px;}
.y1e_c00449{bottom:244.560450px;}
.y1d_c00449{bottom:278.940450px;}
.y1c_c00449{bottom:313.410450px;}
.y1b_c00449{bottom:347.790450px;}
.y1a_c00449{bottom:391.260450px;}
.y19_c00449{bottom:425.640450px;}
.y18_c00449{bottom:460.110450px;}
.y17_c00449{bottom:494.490450px;}
.y16_c00449{bottom:537.960450px;}
.y15_c00449{bottom:572.340450px;}
.y14_c00449{bottom:606.810450px;}
.y13_c00449{bottom:641.190450px;}
.y12_c00449{bottom:675.660450px;}
.y11_c00449{bottom:719.040450px;}
.y10_c00449{bottom:753.510450px;}
.yf_c00449{bottom:787.890450px;}
.ye_c00449{bottom:822.360450px;}
.yd_c00449{bottom:856.740450px;}
.yc_c00449{bottom:891.210450px;}
.yb_c00449{bottom:934.590450px;}
.ya_c00449{bottom:969.060450px;}
.y9_c00449{bottom:1003.440450px;}
.y8_c00449{bottom:1037.910450px;}
.y7_c00449{bottom:1072.290450px;}
.y6_c00449{bottom:1106.760450px;}
.y5_c00449{bottom:1141.140450px;}
.y2_c00449{bottom:1176.420450px;}
.y1_c00449{bottom:1196.940450px;}
.h2_c00449{height:47.988281px;}
.h6_c00449{height:49.937344px;}
.h1_c00449{height:50.315273px;}
.h3_c00449{height:56.320312px;}
.h5_c00449{height:60.257812px;}
.h4_c00449{height:65.130820px;}
.h0_c00449{height:1263.000000px;}
.w1_c00449{width:892.500000px;}
.w0_c00449{width:892.830000px;}
.x0_c00449{left:0.000000px;}
.x2_c00449{left:127.620000px;}
.x5_c00449{left:180.810000px;}
.x1_c00449{left:217.440000px;}
.x4_c00449{left:435.240000px;}
.x3_c00449{left:446.490000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.v1_c00449{vertical-align:26.560000pt;}
.ls8_c00449{letter-spacing:-0.134400pt;}
.lsb_c00449{letter-spacing:-0.038400pt;}
.lse_c00449{letter-spacing:-0.032000pt;}
.ls5_c00449{letter-spacing:-0.026720pt;}
.ls9_c00449{letter-spacing:-0.025600pt;}
.lsc_c00449{letter-spacing:-0.019200pt;}
.lsd_c00449{letter-spacing:-0.012800pt;}
.lsa_c00449{letter-spacing:-0.006400pt;}
.ls6_c00449{letter-spacing:-0.005344pt;}
.ls7_c00449{letter-spacing:0.000000pt;}
.ls1_c00449{letter-spacing:0.006400pt;}
.ls2_c00449{letter-spacing:0.012800pt;}
.ls3_c00449{letter-spacing:0.019200pt;}
.ls4_c00449{letter-spacing:0.029792pt;}
.ls0_c00449{letter-spacing:0.040640pt;}
.lsf_c00449{letter-spacing:0.044800pt;}
.ws1_c00449{word-spacing:-0.235136pt;}
.ws0_c00449{word-spacing:-0.213760pt;}
.ws28_c00449{word-spacing:-0.012768pt;}
.ws15_c00449{word-spacing:-0.006400pt;}
.ws2_c00449{word-spacing:0.000000pt;}
.ws1d_c00449{word-spacing:0.006400pt;}
.ws27_c00449{word-spacing:0.012800pt;}
.wsf_c00449{word-spacing:0.275200pt;}
.wse_c00449{word-spacing:0.396800pt;}
.ws1f_c00449{word-spacing:0.614400pt;}
.wsb_c00449{word-spacing:0.672000pt;}
.ws1e_c00449{word-spacing:0.678400pt;}
.wsd_c00449{word-spacing:1.337600pt;}
.wsc_c00449{word-spacing:1.401600pt;}
.ws19_c00449{word-spacing:1.593600pt;}
.ws5_c00449{word-spacing:1.606400pt;}
.ws1a_c00449{word-spacing:1.747200pt;}
.ws3_c00449{word-spacing:1.920000pt;}
.ws4_c00449{word-spacing:1.996800pt;}
.ws14_c00449{word-spacing:2.284800pt;}
.ws13_c00449{word-spacing:2.316800pt;}
.ws16_c00449{word-spacing:2.931200pt;}
.ws20_c00449{word-spacing:3.180800pt;}
.ws21_c00449{word-spacing:3.206400pt;}
.ws24_c00449{word-spacing:3.859200pt;}
.ws25_c00449{word-spacing:3.897600pt;}
.ws17_c00449{word-spacing:4.448000pt;}
.ws18_c00449{word-spacing:4.505600pt;}
.ws10_c00449{word-spacing:5.113600pt;}
.ws22_c00449{word-spacing:5.145600pt;}
.ws11_c00449{word-spacing:5.164800pt;}
.ws12_c00449{word-spacing:5.465600pt;}
.wsa_c00449{word-spacing:5.798400pt;}
.ws9_c00449{word-spacing:5.900800pt;}
.ws23_c00449{word-spacing:6.739200pt;}
.ws26_c00449{word-spacing:9.920000pt;}
.ws7_c00449{word-spacing:10.950400pt;}
.ws6_c00449{word-spacing:11.008000pt;}
.ws1b_c00449{word-spacing:16.947200pt;}
.ws1c_c00449{word-spacing:17.081600pt;}
.ws8_c00449{word-spacing:20.499200pt;}
._0_c00449{width:0.935200pt;}
.fs3_c00449{font-size:37.440000pt;}
.fs4_c00449{font-size:42.560000pt;}
.fs2_c00449{font-size:48.000000pt;}
.fs0_c00449{font-size:53.440000pt;}
.fs1_c00449{font-size:64.000000pt;}
.y0_c00449{bottom:0.000000pt;}
.y3_c00449{bottom:51.067067pt;}
.y4_c00449{bottom:54.587067pt;}
.y23_c00449{bottom:78.427067pt;}
.y22_c00449{bottom:91.947067pt;}
.y21_c00449{bottom:110.347067pt;}
.y20_c00449{bottom:128.747067pt;}
.y1f_c00449{bottom:186.747067pt;}
.y1e_c00449{bottom:217.387067pt;}
.y1d_c00449{bottom:247.947067pt;}
.y1c_c00449{bottom:278.587067pt;}
.y1b_c00449{bottom:309.147067pt;}
.y1a_c00449{bottom:347.787067pt;}
.y19_c00449{bottom:378.347067pt;}
.y18_c00449{bottom:408.987067pt;}
.y17_c00449{bottom:439.547067pt;}
.y16_c00449{bottom:478.187067pt;}
.y15_c00449{bottom:508.747067pt;}
.y14_c00449{bottom:539.387067pt;}
.y13_c00449{bottom:569.947067pt;}
.y12_c00449{bottom:600.587067pt;}
.y11_c00449{bottom:639.147067pt;}
.y10_c00449{bottom:669.787067pt;}
.yf_c00449{bottom:700.347067pt;}
.ye_c00449{bottom:730.987067pt;}
.yd_c00449{bottom:761.547067pt;}
.yc_c00449{bottom:792.187067pt;}
.yb_c00449{bottom:830.747067pt;}
.ya_c00449{bottom:861.387067pt;}
.y9_c00449{bottom:891.947067pt;}
.y8_c00449{bottom:922.587067pt;}
.y7_c00449{bottom:953.147067pt;}
.y6_c00449{bottom:983.787067pt;}
.y5_c00449{bottom:1014.347067pt;}
.y2_c00449{bottom:1045.707067pt;}
.y1_c00449{bottom:1063.947067pt;}
.h2_c00449{height:42.656250pt;}
.h6_c00449{height:44.388750pt;}
.h1_c00449{height:44.724687pt;}
.h3_c00449{height:50.062500pt;}
.h5_c00449{height:53.562500pt;}
.h4_c00449{height:57.894063pt;}
.h0_c00449{height:1122.666667pt;}
.w1_c00449{width:793.333333pt;}
.w0_c00449{width:793.626667pt;}
.x0_c00449{left:0.000000pt;}
.x2_c00449{left:113.440000pt;}
.x5_c00449{left:160.720000pt;}
.x1_c00449{left:193.280000pt;}
.x4_c00449{left:386.880000pt;}
.x3_c00449{left:396.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_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_b7fe122653f86528133f88cb.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_9bc6931c0c5a8a7abba1f453.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00450;src:url('chunks/assets/font_96bc0d50118d90452bd896fb.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;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_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;}
.v1_c00450{vertical-align:15.840000px;}
.v2_c00450{vertical-align:29.880000px;}
.lsf_c00450{letter-spacing:-0.151200px;}
.ls15_c00450{letter-spacing:-0.050400px;}
.ls17_c00450{letter-spacing:-0.043200px;}
.ls12_c00450{letter-spacing:-0.036000px;}
.ls13_c00450{letter-spacing:-0.028800px;}
.ls18_c00450{letter-spacing:-0.021600px;}
.ls10_c00450{letter-spacing:-0.014400px;}
.ls11_c00450{letter-spacing:-0.007200px;}
.ls14_c00450{letter-spacing:0.000000px;}
.ls2_c00450{letter-spacing:0.007200px;}
.lsc_c00450{letter-spacing:0.009576px;}
.lsa_c00450{letter-spacing:0.014364px;}
.ls3_c00450{letter-spacing:0.014400px;}
.ls1a_c00450{letter-spacing:0.019152px;}
.ls8_c00450{letter-spacing:0.021600px;}
.lsd_c00450{letter-spacing:0.023940px;}
.lse_c00450{letter-spacing:0.028728px;}
.ls4_c00450{letter-spacing:0.028800px;}
.ls9_c00450{letter-spacing:0.033516px;}
.ls16_c00450{letter-spacing:0.036000px;}
.lsb_c00450{letter-spacing:0.038304px;}
.ls6_c00450{letter-spacing:0.043200px;}
.ls5_c00450{letter-spacing:0.045720px;}
.ls0_c00450{letter-spacing:0.048096px;}
.ls7_c00450{letter-spacing:0.057600px;}
.ls19_c00450{letter-spacing:0.093600px;}
.ls1_c00450{letter-spacing:1212.120000px;}
.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;}
}
.ws2c_c00450{word-spacing:-0.014364px;}
.ws31_c00450{word-spacing:-0.009576px;}
.ws30_c00450{word-spacing:-0.004788px;}
.ws1_c00450{word-spacing:0.000000px;}
.ws2f_c00450{word-spacing:0.009576px;}
.ws23_c00450{word-spacing:0.021600px;}
.ws7_c00450{word-spacing:0.028800px;}
.ws0_c00450{word-spacing:0.042084px;}
.ws13_c00450{word-spacing:0.050400px;}
.wsb_c00450{word-spacing:0.367200px;}
.wsa_c00450{word-spacing:0.403200px;}
.ws15_c00450{word-spacing:0.727200px;}
.ws14_c00450{word-spacing:0.748800px;}
.ws19_c00450{word-spacing:1.116000px;}
.ws18_c00450{word-spacing:1.130400px;}
.ws20_c00450{word-spacing:1.771200px;}
.ws1f_c00450{word-spacing:1.778400px;}
.ws27_c00450{word-spacing:1.864800px;}
.ws28_c00450{word-spacing:1.893600px;}
.ws11_c00450{word-spacing:2.131200px;}
.ws2e_c00450{word-spacing:2.145024px;}
.ws10_c00450{word-spacing:2.174400px;}
.ws1c_c00450{word-spacing:2.196000px;}
.ws2d_c00450{word-spacing:2.499336px;}
.ws9_c00450{word-spacing:3.240000px;}
.ws8_c00450{word-spacing:3.268800px;}
.ws3_c00450{word-spacing:4.312800px;}
.ws24_c00450{word-spacing:4.334400px;}
.ws4_c00450{word-spacing:4.384800px;}
.ws17_c00450{word-spacing:4.586400px;}
.wse_c00450{word-spacing:4.708800px;}
.ws16_c00450{word-spacing:4.716000px;}
.wsf_c00450{word-spacing:4.730400px;}
.ws21_c00450{word-spacing:5.335200px;}
.ws22_c00450{word-spacing:5.400000px;}
.ws26_c00450{word-spacing:8.647200px;}
.ws25_c00450{word-spacing:8.654400px;}
.ws29_c00450{word-spacing:9.806400px;}
.wsd_c00450{word-spacing:11.138400px;}
.wsc_c00450{word-spacing:11.160000px;}
.ws6_c00450{word-spacing:11.505600px;}
.ws5_c00450{word-spacing:11.736000px;}
.ws1d_c00450{word-spacing:15.062400px;}
.ws1e_c00450{word-spacing:15.156000px;}
.ws2b_c00450{word-spacing:16.567200px;}
.ws2a_c00450{word-spacing:16.711200px;}
.ws2_c00450{word-spacing:18.374400px;}
.ws12_c00450{word-spacing:18.734400px;}
.ws1b_c00450{word-spacing:21.909600px;}
.ws1a_c00450{word-spacing:21.960000px;}
._0_c00450{margin-left:-1.322640px;}
._1_c00450{width:1.008000px;}
._2_c00450{width:2.494548px;}
.fc0_c00450{color:rgb(0,0,0);}
.fs3_c00450{font-size:42.120000px;}
.fs4_c00450{font-size:47.880000px;}
.fs2_c00450{font-size:54.000000px;}
.fs0_c00450{font-size:60.120000px;}
.fs1_c00450{font-size:72.000000px;}
.y0_c00450{bottom:0.000000px;}
.y2_c00450{bottom:57.450450px;}
.y22_c00450{bottom:88.237470px;}
.y21_c00450{bottom:101.919180px;}
.y20_c00450{bottom:115.864230px;}
.y1f_c00450{bottom:134.130450px;}
.y1e_c00450{bottom:149.340450px;}
.y1d_c00450{bottom:170.040450px;}
.y1c_c00450{bottom:190.740600px;}
.y1b_c00450{bottom:287.940600px;}
.y1a_c00450{bottom:322.410600px;}
.y19_c00450{bottom:356.790600px;}
.y18_c00450{bottom:391.260600px;}
.y17_c00450{bottom:425.640600px;}
.y16_c00450{bottom:469.110450px;}
.y15_c00450{bottom:503.490450px;}
.y14_c00450{bottom:537.960450px;}
.y13_c00450{bottom:572.340450px;}
.y12_c00450{bottom:606.810450px;}
.y11_c00450{bottom:641.190450px;}
.y10_c00450{bottom:675.660450px;}
.yf_c00450{bottom:710.040450px;}
.ye_c00450{bottom:744.510450px;}
.yd_c00450{bottom:787.890450px;}
.yc_c00450{bottom:822.360450px;}
.yb_c00450{bottom:856.740450px;}
.ya_c00450{bottom:891.210450px;}
.y9_c00450{bottom:925.590450px;}
.y8_c00450{bottom:960.060450px;}
.y7_c00450{bottom:994.440450px;}
.y6_c00450{bottom:1037.910450px;}
.y5_c00450{bottom:1072.290450px;}
.y4_c00450{bottom:1106.760450px;}
.y3_c00450{bottom:1141.140450px;}
.y1_c00450{bottom:1196.850450px;}
.h5_c00450{height:47.988281px;}
.h6_c00450{height:49.937344px;}
.h1_c00450{height:50.315273px;}
.h3_c00450{height:60.257812px;}
.h4_c00450{height:65.130820px;}
.h2_c00450{height:72.160312px;}
.h0_c00450{height:1263.000000px;}
.w1_c00450{width:892.500000px;}
.w0_c00450{width:892.830000px;}
.x0_c00450{left:0.000000px;}
.x1_c00450{left:127.620000px;}
.x3_c00450{left:141.122160px;}
.x2_c00450{left:180.810000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.v1_c00450{vertical-align:14.080000pt;}
.v2_c00450{vertical-align:26.560000pt;}
.lsf_c00450{letter-spacing:-0.134400pt;}
.ls15_c00450{letter-spacing:-0.044800pt;}
.ls17_c00450{letter-spacing:-0.038400pt;}
.ls12_c00450{letter-spacing:-0.032000pt;}
.ls13_c00450{letter-spacing:-0.025600pt;}
.ls18_c00450{letter-spacing:-0.019200pt;}
.ls10_c00450{letter-spacing:-0.012800pt;}
.ls11_c00450{letter-spacing:-0.006400pt;}
.ls14_c00450{letter-spacing:0.000000pt;}
.ls2_c00450{letter-spacing:0.006400pt;}
.lsc_c00450{letter-spacing:0.008512pt;}
.lsa_c00450{letter-spacing:0.012768pt;}
.ls3_c00450{letter-spacing:0.012800pt;}
.ls1a_c00450{letter-spacing:0.017024pt;}
.ls8_c00450{letter-spacing:0.019200pt;}
.lsd_c00450{letter-spacing:0.021280pt;}
.lse_c00450{letter-spacing:0.025536pt;}
.ls4_c00450{letter-spacing:0.025600pt;}
.ls9_c00450{letter-spacing:0.029792pt;}
.ls16_c00450{letter-spacing:0.032000pt;}
.lsb_c00450{letter-spacing:0.034048pt;}
.ls6_c00450{letter-spacing:0.038400pt;}
.ls5_c00450{letter-spacing:0.040640pt;}
.ls0_c00450{letter-spacing:0.042752pt;}
.ls7_c00450{letter-spacing:0.051200pt;}
.ls19_c00450{letter-spacing:0.083200pt;}
.ls1_c00450{letter-spacing:1077.440000pt;}
.ws2c_c00450{word-spacing:-0.012768pt;}
.ws31_c00450{word-spacing:-0.008512pt;}
.ws30_c00450{word-spacing:-0.004256pt;}
.ws1_c00450{word-spacing:0.000000pt;}
.ws2f_c00450{word-spacing:0.008512pt;}
.ws23_c00450{word-spacing:0.019200pt;}
.ws7_c00450{word-spacing:0.025600pt;}
.ws0_c00450{word-spacing:0.037408pt;}
.ws13_c00450{word-spacing:0.044800pt;}
.wsb_c00450{word-spacing:0.326400pt;}
.wsa_c00450{word-spacing:0.358400pt;}
.ws15_c00450{word-spacing:0.646400pt;}
.ws14_c00450{word-spacing:0.665600pt;}
.ws19_c00450{word-spacing:0.992000pt;}
.ws18_c00450{word-spacing:1.004800pt;}
.ws20_c00450{word-spacing:1.574400pt;}
.ws1f_c00450{word-spacing:1.580800pt;}
.ws27_c00450{word-spacing:1.657600pt;}
.ws28_c00450{word-spacing:1.683200pt;}
.ws11_c00450{word-spacing:1.894400pt;}
.ws2e_c00450{word-spacing:1.906688pt;}
.ws10_c00450{word-spacing:1.932800pt;}
.ws1c_c00450{word-spacing:1.952000pt;}
.ws2d_c00450{word-spacing:2.221632pt;}
.ws9_c00450{word-spacing:2.880000pt;}
.ws8_c00450{word-spacing:2.905600pt;}
.ws3_c00450{word-spacing:3.833600pt;}
.ws24_c00450{word-spacing:3.852800pt;}
.ws4_c00450{word-spacing:3.897600pt;}
.ws17_c00450{word-spacing:4.076800pt;}
.wse_c00450{word-spacing:4.185600pt;}
.ws16_c00450{word-spacing:4.192000pt;}
.wsf_c00450{word-spacing:4.204800pt;}
.ws21_c00450{word-spacing:4.742400pt;}
.ws22_c00450{word-spacing:4.800000pt;}
.ws26_c00450{word-spacing:7.686400pt;}
.ws25_c00450{word-spacing:7.692800pt;}
.ws29_c00450{word-spacing:8.716800pt;}
.wsd_c00450{word-spacing:9.900800pt;}
.wsc_c00450{word-spacing:9.920000pt;}
.ws6_c00450{word-spacing:10.227200pt;}
.ws5_c00450{word-spacing:10.432000pt;}
.ws1d_c00450{word-spacing:13.388800pt;}
.ws1e_c00450{word-spacing:13.472000pt;}
.ws2b_c00450{word-spacing:14.726400pt;}
.ws2a_c00450{word-spacing:14.854400pt;}
.ws2_c00450{word-spacing:16.332800pt;}
.ws12_c00450{word-spacing:16.652800pt;}
.ws1b_c00450{word-spacing:19.475200pt;}
.ws1a_c00450{word-spacing:19.520000pt;}
._0_c00450{margin-left:-1.175680pt;}
._1_c00450{width:0.896000pt;}
._2_c00450{width:2.217376pt;}
.fs3_c00450{font-size:37.440000pt;}
.fs4_c00450{font-size:42.560000pt;}
.fs2_c00450{font-size:48.000000pt;}
.fs0_c00450{font-size:53.440000pt;}
.fs1_c00450{font-size:64.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y2_c00450{bottom:51.067067pt;}
.y22_c00450{bottom:78.433307pt;}
.y21_c00450{bottom:90.594827pt;}
.y20_c00450{bottom:102.990427pt;}
.y1f_c00450{bottom:119.227067pt;}
.y1e_c00450{bottom:132.747067pt;}
.y1d_c00450{bottom:151.147067pt;}
.y1c_c00450{bottom:169.547200pt;}
.y1b_c00450{bottom:255.947200pt;}
.y1a_c00450{bottom:286.587200pt;}
.y19_c00450{bottom:317.147200pt;}
.y18_c00450{bottom:347.787200pt;}
.y17_c00450{bottom:378.347200pt;}
.y16_c00450{bottom:416.987067pt;}
.y15_c00450{bottom:447.547067pt;}
.y14_c00450{bottom:478.187067pt;}
.y13_c00450{bottom:508.747067pt;}
.y12_c00450{bottom:539.387067pt;}
.y11_c00450{bottom:569.947067pt;}
.y10_c00450{bottom:600.587067pt;}
.yf_c00450{bottom:631.147067pt;}
.ye_c00450{bottom:661.787067pt;}
.yd_c00450{bottom:700.347067pt;}
.yc_c00450{bottom:730.987067pt;}
.yb_c00450{bottom:761.547067pt;}
.ya_c00450{bottom:792.187067pt;}
.y9_c00450{bottom:822.747067pt;}
.y8_c00450{bottom:853.387067pt;}
.y7_c00450{bottom:883.947067pt;}
.y6_c00450{bottom:922.587067pt;}
.y5_c00450{bottom:953.147067pt;}
.y4_c00450{bottom:983.787067pt;}
.y3_c00450{bottom:1014.347067pt;}
.y1_c00450{bottom:1063.867067pt;}
.h5_c00450{height:42.656250pt;}
.h6_c00450{height:44.388750pt;}
.h1_c00450{height:44.724687pt;}
.h3_c00450{height:53.562500pt;}
.h4_c00450{height:57.894063pt;}
.h2_c00450{height:64.142500pt;}
.h0_c00450{height:1122.666667pt;}
.w1_c00450{width:793.333333pt;}
.w0_c00450{width:793.626667pt;}
.x0_c00450{left:0.000000pt;}
.x1_c00450{left:113.440000pt;}
.x3_c00450{left:125.441920pt;}
.x2_c00450{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_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_975f61d70791f8437f597a8c.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00451;src:url('chunks/assets/font_080eb8910f7886df3e2717e7.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00451;src:url('chunks/assets/font_57911a476ecd34051f74bea4.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;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_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;}
.v2_c00451{vertical-align:15.120000px;}
.v1_c00451{vertical-align:29.880000px;}
.ls10_c00451{letter-spacing:-0.156312px;}
.lsd_c00451{letter-spacing:-0.151200px;}
.ls16_c00451{letter-spacing:-0.043200px;}
.ls17_c00451{letter-spacing:-0.036000px;}
.lsa_c00451{letter-spacing:-0.030060px;}
.ls14_c00451{letter-spacing:-0.028800px;}
.lsf_c00451{letter-spacing:-0.021600px;}
.lse_c00451{letter-spacing:-0.014400px;}
.ls1b_c00451{letter-spacing:-0.009576px;}
.ls19_c00451{letter-spacing:-0.007776px;}
.ls12_c00451{letter-spacing:-0.007200px;}
.lsb_c00451{letter-spacing:-0.006012px;}
.ls1a_c00451{letter-spacing:-0.003888px;}
.lsc_c00451{letter-spacing:0.000000px;}
.ls3_c00451{letter-spacing:0.007200px;}
.ls7_c00451{letter-spacing:0.014364px;}
.ls2_c00451{letter-spacing:0.014400px;}
.ls5_c00451{letter-spacing:0.023940px;}
.ls0_c00451{letter-spacing:0.028800px;}
.ls4_c00451{letter-spacing:0.033516px;}
.ls9_c00451{letter-spacing:0.043092px;}
.ls1_c00451{letter-spacing:0.045720px;}
.ls6_c00451{letter-spacing:0.047880px;}
.ls13_c00451{letter-spacing:0.054756px;}
.ls15_c00451{letter-spacing:0.093600px;}
.ls8_c00451{letter-spacing:0.104040px;}
.ls11_c00451{letter-spacing:0.136080px;}
.ls18_c00451{letter-spacing:5.421600px;}
.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;}
}
.ws3_c00451{word-spacing:-13.353732px;}
.ws2_c00451{word-spacing:-10.804752px;}
.ws1_c00451{word-spacing:-10.584756px;}
.ws0_c00451{word-spacing:-9.856080px;}
.ws5_c00451{word-spacing:-0.264528px;}
.ws4_c00451{word-spacing:-0.240480px;}
.ws28_c00451{word-spacing:-0.028728px;}
.ws2a_c00451{word-spacing:-0.023940px;}
.ws25_c00451{word-spacing:-0.014364px;}
.ws26_c00451{word-spacing:-0.009576px;}
.wsa_c00451{word-spacing:-0.007200px;}
.ws27_c00451{word-spacing:-0.004788px;}
.ws6_c00451{word-spacing:0.000000px;}
.ws29_c00451{word-spacing:0.004788px;}
.wsd_c00451{word-spacing:0.014400px;}
.ws9_c00451{word-spacing:0.021600px;}
.ws2b_c00451{word-spacing:0.028728px;}
.ws20_c00451{word-spacing:0.043200px;}
.ws24_c00451{word-spacing:0.086400px;}
.wsb_c00451{word-spacing:0.120240px;}
.wsc_c00451{word-spacing:0.246492px;}
.ws22_c00451{word-spacing:0.604800px;}
.ws17_c00451{word-spacing:0.669600px;}
.ws16_c00451{word-spacing:0.741600px;}
.ws23_c00451{word-spacing:0.756000px;}
.ws12_c00451{word-spacing:1.051200px;}
.ws14_c00451{word-spacing:1.087200px;}
.ws13_c00451{word-spacing:1.274400px;}
.ws1a_c00451{word-spacing:2.606400px;}
.ws21_c00451{word-spacing:3.340800px;}
.ws1c_c00451{word-spacing:5.047200px;}
.ws1b_c00451{word-spacing:5.104800px;}
.ws1d_c00451{word-spacing:5.248800px;}
.ws7_c00451{word-spacing:5.371200px;}
.ws19_c00451{word-spacing:5.414400px;}
.ws8_c00451{word-spacing:5.464800px;}
.ws18_c00451{word-spacing:5.493600px;}
.ws15_c00451{word-spacing:11.527200px;}
.ws11_c00451{word-spacing:11.822400px;}
.ws10_c00451{word-spacing:11.937600px;}
.ws1e_c00451{word-spacing:13.320000px;}
.ws1f_c00451{word-spacing:13.363200px;}
.wse_c00451{word-spacing:20.865600px;}
.wsf_c00451{word-spacing:20.894400px;}
._2_c00451{margin-left:-5.544000px;}
._3_c00451{margin-left:-4.536000px;}
._1_c00451{margin-left:-1.112220px;}
._0_c00451{width:1.052100px;}
.fc0_c00451{color:rgb(0,0,0);}
.fs4_c00451{font-size:38.880000px;}
.fs3_c00451{font-size:42.120000px;}
.fs5_c00451{font-size:47.880000px;}
.fs2_c00451{font-size:54.000000px;}
.fs0_c00451{font-size:60.120000px;}
.fs1_c00451{font-size:72.000000px;}
.y0_c00451{bottom:0.000000px;}
.y3_c00451{bottom:57.450450px;}
.y4_c00451{bottom:61.410450px;}
.y20_c00451{bottom:88.234230px;}
.y1f_c00451{bottom:106.506030px;}
.y1e_c00451{bottom:124.868010px;}
.y1d_c00451{bottom:143.134230px;}
.y1c_c00451{bottom:161.400450px;}
.y1b_c00451{bottom:176.610450px;}
.y1a_c00451{bottom:197.310450px;}
.y19_c00451{bottom:218.010450px;}
.y18_c00451{bottom:276.150450px;}
.y17_c00451{bottom:310.620450px;}
.y16_c00451{bottom:345.000450px;}
.y15_c00451{bottom:379.470450px;}
.y14_c00451{bottom:422.850450px;}
.y13_c00451{bottom:457.320450px;}
.y12_c00451{bottom:491.700450px;}
.y11_c00451{bottom:526.170450px;}
.y10_c00451{bottom:560.550450px;}
.yf_c00451{bottom:595.020450px;}
.ye_c00451{bottom:629.400450px;}
.yd_c00451{bottom:663.870450px;}
.yc_c00451{bottom:707.250450px;}
.yb_c00451{bottom:741.720450px;}
.ya_c00451{bottom:776.100450px;}
.y9_c00451{bottom:810.570450px;}
.y8_c00451{bottom:859.800450px;}
.y7_c00451{bottom:881.670450px;}
.y6_c00451{bottom:1106.760450px;}
.y5_c00451{bottom:1141.140450px;}
.y2_c00451{bottom:1176.420450px;}
.y1_c00451{bottom:1196.940450px;}
.h2_c00451{height:47.988281px;}
.h6_c00451{height:49.937344px;}
.h1_c00451{height:50.315273px;}
.h3_c00451{height:56.320312px;}
.h4_c00451{height:60.257812px;}
.h5_c00451{height:65.130820px;}
.h0_c00451{height:1263.000000px;}
.w1_c00451{width:892.500000px;}
.w0_c00451{width:892.830000px;}
.x0_c00451{left:0.000000px;}
.x2_c00451{left:127.620000px;}
.x7_c00451{left:180.810000px;}
.x1_c00451{left:217.440000px;}
.x6_c00451{left:255.600000px;}
.x4_c00451{left:435.240000px;}
.x3_c00451{left:446.490000px;}
.x5_c00451{left:675.450000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.v2_c00451{vertical-align:13.440000pt;}
.v1_c00451{vertical-align:26.560000pt;}
.ls10_c00451{letter-spacing:-0.138944pt;}
.lsd_c00451{letter-spacing:-0.134400pt;}
.ls16_c00451{letter-spacing:-0.038400pt;}
.ls17_c00451{letter-spacing:-0.032000pt;}
.lsa_c00451{letter-spacing:-0.026720pt;}
.ls14_c00451{letter-spacing:-0.025600pt;}
.lsf_c00451{letter-spacing:-0.019200pt;}
.lse_c00451{letter-spacing:-0.012800pt;}
.ls1b_c00451{letter-spacing:-0.008512pt;}
.ls19_c00451{letter-spacing:-0.006912pt;}
.ls12_c00451{letter-spacing:-0.006400pt;}
.lsb_c00451{letter-spacing:-0.005344pt;}
.ls1a_c00451{letter-spacing:-0.003456pt;}
.lsc_c00451{letter-spacing:0.000000pt;}
.ls3_c00451{letter-spacing:0.006400pt;}
.ls7_c00451{letter-spacing:0.012768pt;}
.ls2_c00451{letter-spacing:0.012800pt;}
.ls5_c00451{letter-spacing:0.021280pt;}
.ls0_c00451{letter-spacing:0.025600pt;}
.ls4_c00451{letter-spacing:0.029792pt;}
.ls9_c00451{letter-spacing:0.038304pt;}
.ls1_c00451{letter-spacing:0.040640pt;}
.ls6_c00451{letter-spacing:0.042560pt;}
.ls13_c00451{letter-spacing:0.048672pt;}
.ls15_c00451{letter-spacing:0.083200pt;}
.ls8_c00451{letter-spacing:0.092480pt;}
.ls11_c00451{letter-spacing:0.120960pt;}
.ls18_c00451{letter-spacing:4.819200pt;}
.ws3_c00451{word-spacing:-11.869984pt;}
.ws2_c00451{word-spacing:-9.604224pt;}
.ws1_c00451{word-spacing:-9.408672pt;}
.ws0_c00451{word-spacing:-8.760960pt;}
.ws5_c00451{word-spacing:-0.235136pt;}
.ws4_c00451{word-spacing:-0.213760pt;}
.ws28_c00451{word-spacing:-0.025536pt;}
.ws2a_c00451{word-spacing:-0.021280pt;}
.ws25_c00451{word-spacing:-0.012768pt;}
.ws26_c00451{word-spacing:-0.008512pt;}
.wsa_c00451{word-spacing:-0.006400pt;}
.ws27_c00451{word-spacing:-0.004256pt;}
.ws6_c00451{word-spacing:0.000000pt;}
.ws29_c00451{word-spacing:0.004256pt;}
.wsd_c00451{word-spacing:0.012800pt;}
.ws9_c00451{word-spacing:0.019200pt;}
.ws2b_c00451{word-spacing:0.025536pt;}
.ws20_c00451{word-spacing:0.038400pt;}
.ws24_c00451{word-spacing:0.076800pt;}
.wsb_c00451{word-spacing:0.106880pt;}
.wsc_c00451{word-spacing:0.219104pt;}
.ws22_c00451{word-spacing:0.537600pt;}
.ws17_c00451{word-spacing:0.595200pt;}
.ws16_c00451{word-spacing:0.659200pt;}
.ws23_c00451{word-spacing:0.672000pt;}
.ws12_c00451{word-spacing:0.934400pt;}
.ws14_c00451{word-spacing:0.966400pt;}
.ws13_c00451{word-spacing:1.132800pt;}
.ws1a_c00451{word-spacing:2.316800pt;}
.ws21_c00451{word-spacing:2.969600pt;}
.ws1c_c00451{word-spacing:4.486400pt;}
.ws1b_c00451{word-spacing:4.537600pt;}
.ws1d_c00451{word-spacing:4.665600pt;}
.ws7_c00451{word-spacing:4.774400pt;}
.ws19_c00451{word-spacing:4.812800pt;}
.ws8_c00451{word-spacing:4.857600pt;}
.ws18_c00451{word-spacing:4.883200pt;}
.ws15_c00451{word-spacing:10.246400pt;}
.ws11_c00451{word-spacing:10.508800pt;}
.ws10_c00451{word-spacing:10.611200pt;}
.ws1e_c00451{word-spacing:11.840000pt;}
.ws1f_c00451{word-spacing:11.878400pt;}
.wse_c00451{word-spacing:18.547200pt;}
.wsf_c00451{word-spacing:18.572800pt;}
._2_c00451{margin-left:-4.928000pt;}
._3_c00451{margin-left:-4.032000pt;}
._1_c00451{margin-left:-0.988640pt;}
._0_c00451{width:0.935200pt;}
.fs4_c00451{font-size:34.560000pt;}
.fs3_c00451{font-size:37.440000pt;}
.fs5_c00451{font-size:42.560000pt;}
.fs2_c00451{font-size:48.000000pt;}
.fs0_c00451{font-size:53.440000pt;}
.fs1_c00451{font-size:64.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y3_c00451{bottom:51.067067pt;}
.y4_c00451{bottom:54.587067pt;}
.y20_c00451{bottom:78.430427pt;}
.y1f_c00451{bottom:94.672027pt;}
.y1e_c00451{bottom:110.993787pt;}
.y1d_c00451{bottom:127.230427pt;}
.y1c_c00451{bottom:143.467067pt;}
.y1b_c00451{bottom:156.987067pt;}
.y1a_c00451{bottom:175.387067pt;}
.y19_c00451{bottom:193.787067pt;}
.y18_c00451{bottom:245.467067pt;}
.y17_c00451{bottom:276.107067pt;}
.y16_c00451{bottom:306.667067pt;}
.y15_c00451{bottom:337.307067pt;}
.y14_c00451{bottom:375.867067pt;}
.y13_c00451{bottom:406.507067pt;}
.y12_c00451{bottom:437.067067pt;}
.y11_c00451{bottom:467.707067pt;}
.y10_c00451{bottom:498.267067pt;}
.yf_c00451{bottom:528.907067pt;}
.ye_c00451{bottom:559.467067pt;}
.yd_c00451{bottom:590.107067pt;}
.yc_c00451{bottom:628.667067pt;}
.yb_c00451{bottom:659.307067pt;}
.ya_c00451{bottom:689.867067pt;}
.y9_c00451{bottom:720.507067pt;}
.y8_c00451{bottom:764.267067pt;}
.y7_c00451{bottom:783.707067pt;}
.y6_c00451{bottom:983.787067pt;}
.y5_c00451{bottom:1014.347067pt;}
.y2_c00451{bottom:1045.707067pt;}
.y1_c00451{bottom:1063.947067pt;}
.h2_c00451{height:42.656250pt;}
.h6_c00451{height:44.388750pt;}
.h1_c00451{height:44.724687pt;}
.h3_c00451{height:50.062500pt;}
.h4_c00451{height:53.562500pt;}
.h5_c00451{height:57.894063pt;}
.h0_c00451{height:1122.666667pt;}
.w1_c00451{width:793.333333pt;}
.w0_c00451{width:793.626667pt;}
.x0_c00451{left:0.000000pt;}
.x2_c00451{left:113.440000pt;}
.x7_c00451{left:160.720000pt;}
.x1_c00451{left:193.280000pt;}
.x6_c00451{left:227.200000pt;}
.x4_c00451{left:386.880000pt;}
.x3_c00451{left:396.880000pt;}
.x5_c00451{left:600.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_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_ac30074f7385306226215d41.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_a3b117dafa3a0b93363c583c.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;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_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;}
.v1_c00452{vertical-align:15.840000px;}
.v2_c00452{vertical-align:29.879400px;}
.lsf_c00452{letter-spacing:-0.266400px;}
.ls6_c00452{letter-spacing:-0.151200px;}
.ls10_c00452{letter-spacing:-0.043200px;}
.lsc_c00452{letter-spacing:-0.036000px;}
.ls9_c00452{letter-spacing:-0.028800px;}
.lsb_c00452{letter-spacing:-0.021600px;}
.lsa_c00452{letter-spacing:-0.014400px;}
.ls7_c00452{letter-spacing:-0.007200px;}
.ls8_c00452{letter-spacing:0.000000px;}
.ls3_c00452{letter-spacing:0.007200px;}
.ls2_c00452{letter-spacing:0.014400px;}
.ls4_c00452{letter-spacing:0.021600px;}
.ls5_c00452{letter-spacing:0.033516px;}
.ls0_c00452{letter-spacing:0.048096px;}
.lse_c00452{letter-spacing:0.054756px;}
.lsd_c00452{letter-spacing:2.563200px;}
.ls1_c00452{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00452{word-spacing:-10.584756px;}
.ws2e_c00452{word-spacing:-0.014364px;}
.ws2d_c00452{word-spacing:-0.007200px;}
.ws2_c00452{word-spacing:0.000000px;}
.wsf_c00452{word-spacing:0.021600px;}
.ws1d_c00452{word-spacing:0.036000px;}
.ws1_c00452{word-spacing:0.042084px;}
.ws10_c00452{word-spacing:0.050400px;}
.wse_c00452{word-spacing:0.079200px;}
.ws15_c00452{word-spacing:0.633600px;}
.ws1c_c00452{word-spacing:0.705600px;}
.ws26_c00452{word-spacing:0.727200px;}
.ws14_c00452{word-spacing:0.784800px;}
.ws1f_c00452{word-spacing:1.058400px;}
.ws4_c00452{word-spacing:1.065600px;}
.ws1e_c00452{word-spacing:1.080000px;}
.ws3_c00452{word-spacing:1.087200px;}
.ws20_c00452{word-spacing:1.130400px;}
.ws27_c00452{word-spacing:1.821600px;}
.ws21_c00452{word-spacing:1.828800px;}
.ws11_c00452{word-spacing:2.498400px;}
.wsb_c00452{word-spacing:3.247200px;}
.ws25_c00452{word-spacing:3.592800px;}
.ws24_c00452{word-spacing:3.614400px;}
.ws29_c00452{word-spacing:3.693600px;}
.ws28_c00452{word-spacing:3.729600px;}
.ws18_c00452{word-spacing:4.017600px;}
.ws19_c00452{word-spacing:4.068000px;}
.ws2c_c00452{word-spacing:4.435200px;}
.ws2b_c00452{word-spacing:4.615200px;}
.wsd_c00452{word-spacing:4.694400px;}
.ws2a_c00452{word-spacing:4.723200px;}
.wsc_c00452{word-spacing:4.737600px;}
.ws7_c00452{word-spacing:5.810400px;}
.ws1b_c00452{word-spacing:6.141600px;}
.ws1a_c00452{word-spacing:6.177600px;}
.ws5_c00452{word-spacing:6.868800px;}
.ws6_c00452{word-spacing:6.926400px;}
.ws17_c00452{word-spacing:7.560000px;}
.ws8_c00452{word-spacing:8.287200px;}
.ws9_c00452{word-spacing:10.756800px;}
.wsa_c00452{word-spacing:10.821600px;}
.ws13_c00452{word-spacing:15.163200px;}
.ws12_c00452{word-spacing:15.184800px;}
.ws23_c00452{word-spacing:22.672800px;}
.ws22_c00452{word-spacing:22.701600px;}
.ws16_c00452{word-spacing:24.127200px;}
._2_c00452{margin-left:-2.664000px;}
._0_c00452{margin-left:-1.322640px;}
._1_c00452{width:1.296000px;}
.fc0_c00452{color:rgb(0,0,0);}
.fs4_c00452{font-size:42.120000px;}
.fs3_c00452{font-size:47.880000px;}
.fs2_c00452{font-size:54.000000px;}
.fs0_c00452{font-size:60.120000px;}
.fs1_c00452{font-size:72.000000px;}
.y0_c00452{bottom:0.000000px;}
.y2_c00452{bottom:57.450450px;}
.y21_c00452{bottom:88.230450px;}
.y20_c00452{bottom:103.440450px;}
.y1f_c00452{bottom:124.140450px;}
.y1e_c00452{bottom:144.840600px;}
.y1d_c00452{bottom:228.090600px;}
.y1c_c00452{bottom:262.560600px;}
.y1b_c00452{bottom:296.940600px;}
.y1a_c00452{bottom:331.410600px;}
.y19_c00452{bottom:365.790600px;}
.y18_c00452{bottom:400.260600px;}
.y17_c00452{bottom:434.640600px;}
.y16_c00452{bottom:469.110600px;}
.y15_c00452{bottom:503.490600px;}
.y14_c00452{bottom:546.960600px;}
.y13_c00452{bottom:581.340600px;}
.y12_c00452{bottom:615.810600px;}
.y11_c00452{bottom:650.190600px;}
.y10_c00452{bottom:684.660600px;}
.yf_c00452{bottom:719.040600px;}
.ye_c00452{bottom:753.510600px;}
.yd_c00452{bottom:787.890600px;}
.yc_c00452{bottom:822.360600px;}
.yb_c00452{bottom:865.740450px;}
.ya_c00452{bottom:900.210450px;}
.y9_c00452{bottom:934.590450px;}
.y8_c00452{bottom:969.060450px;}
.y7_c00452{bottom:1003.440450px;}
.y6_c00452{bottom:1037.910450px;}
.y5_c00452{bottom:1072.290450px;}
.y4_c00452{bottom:1106.760450px;}
.y3_c00452{bottom:1141.140450px;}
.y1_c00452{bottom:1196.850450px;}
.h5_c00452{height:47.988281px;}
.h6_c00452{height:49.937344px;}
.h1_c00452{height:50.315273px;}
.h3_c00452{height:60.257812px;}
.h4_c00452{height:65.130220px;}
.h2_c00452{height:72.160312px;}
.h0_c00452{height:1263.000000px;}
.w1_c00452{width:892.500000px;}
.w0_c00452{width:892.830000px;}
.x0_c00452{left:0.000000px;}
.x1_c00452{left:127.620000px;}
.x2_c00452{left:180.810000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.v1_c00452{vertical-align:14.080000pt;}
.v2_c00452{vertical-align:26.559467pt;}
.lsf_c00452{letter-spacing:-0.236800pt;}
.ls6_c00452{letter-spacing:-0.134400pt;}
.ls10_c00452{letter-spacing:-0.038400pt;}
.lsc_c00452{letter-spacing:-0.032000pt;}
.ls9_c00452{letter-spacing:-0.025600pt;}
.lsb_c00452{letter-spacing:-0.019200pt;}
.lsa_c00452{letter-spacing:-0.012800pt;}
.ls7_c00452{letter-spacing:-0.006400pt;}
.ls8_c00452{letter-spacing:0.000000pt;}
.ls3_c00452{letter-spacing:0.006400pt;}
.ls2_c00452{letter-spacing:0.012800pt;}
.ls4_c00452{letter-spacing:0.019200pt;}
.ls5_c00452{letter-spacing:0.029792pt;}
.ls0_c00452{letter-spacing:0.042752pt;}
.lse_c00452{letter-spacing:0.048672pt;}
.lsd_c00452{letter-spacing:2.278400pt;}
.ls1_c00452{letter-spacing:1077.440000pt;}
.ws0_c00452{word-spacing:-9.408672pt;}
.ws2e_c00452{word-spacing:-0.012768pt;}
.ws2d_c00452{word-spacing:-0.006400pt;}
.ws2_c00452{word-spacing:0.000000pt;}
.wsf_c00452{word-spacing:0.019200pt;}
.ws1d_c00452{word-spacing:0.032000pt;}
.ws1_c00452{word-spacing:0.037408pt;}
.ws10_c00452{word-spacing:0.044800pt;}
.wse_c00452{word-spacing:0.070400pt;}
.ws15_c00452{word-spacing:0.563200pt;}
.ws1c_c00452{word-spacing:0.627200pt;}
.ws26_c00452{word-spacing:0.646400pt;}
.ws14_c00452{word-spacing:0.697600pt;}
.ws1f_c00452{word-spacing:0.940800pt;}
.ws4_c00452{word-spacing:0.947200pt;}
.ws1e_c00452{word-spacing:0.960000pt;}
.ws3_c00452{word-spacing:0.966400pt;}
.ws20_c00452{word-spacing:1.004800pt;}
.ws27_c00452{word-spacing:1.619200pt;}
.ws21_c00452{word-spacing:1.625600pt;}
.ws11_c00452{word-spacing:2.220800pt;}
.wsb_c00452{word-spacing:2.886400pt;}
.ws25_c00452{word-spacing:3.193600pt;}
.ws24_c00452{word-spacing:3.212800pt;}
.ws29_c00452{word-spacing:3.283200pt;}
.ws28_c00452{word-spacing:3.315200pt;}
.ws18_c00452{word-spacing:3.571200pt;}
.ws19_c00452{word-spacing:3.616000pt;}
.ws2c_c00452{word-spacing:3.942400pt;}
.ws2b_c00452{word-spacing:4.102400pt;}
.wsd_c00452{word-spacing:4.172800pt;}
.ws2a_c00452{word-spacing:4.198400pt;}
.wsc_c00452{word-spacing:4.211200pt;}
.ws7_c00452{word-spacing:5.164800pt;}
.ws1b_c00452{word-spacing:5.459200pt;}
.ws1a_c00452{word-spacing:5.491200pt;}
.ws5_c00452{word-spacing:6.105600pt;}
.ws6_c00452{word-spacing:6.156800pt;}
.ws17_c00452{word-spacing:6.720000pt;}
.ws8_c00452{word-spacing:7.366400pt;}
.ws9_c00452{word-spacing:9.561600pt;}
.wsa_c00452{word-spacing:9.619200pt;}
.ws13_c00452{word-spacing:13.478400pt;}
.ws12_c00452{word-spacing:13.497600pt;}
.ws23_c00452{word-spacing:20.153600pt;}
.ws22_c00452{word-spacing:20.179200pt;}
.ws16_c00452{word-spacing:21.446400pt;}
._2_c00452{margin-left:-2.368000pt;}
._0_c00452{margin-left:-1.175680pt;}
._1_c00452{width:1.152000pt;}
.fs4_c00452{font-size:37.440000pt;}
.fs3_c00452{font-size:42.560000pt;}
.fs2_c00452{font-size:48.000000pt;}
.fs0_c00452{font-size:53.440000pt;}
.fs1_c00452{font-size:64.000000pt;}
.y0_c00452{bottom:0.000000pt;}
.y2_c00452{bottom:51.067067pt;}
.y21_c00452{bottom:78.427067pt;}
.y20_c00452{bottom:91.947067pt;}
.y1f_c00452{bottom:110.347067pt;}
.y1e_c00452{bottom:128.747200pt;}
.y1d_c00452{bottom:202.747200pt;}
.y1c_c00452{bottom:233.387200pt;}
.y1b_c00452{bottom:263.947200pt;}
.y1a_c00452{bottom:294.587200pt;}
.y19_c00452{bottom:325.147200pt;}
.y18_c00452{bottom:355.787200pt;}
.y17_c00452{bottom:386.347200pt;}
.y16_c00452{bottom:416.987200pt;}
.y15_c00452{bottom:447.547200pt;}
.y14_c00452{bottom:486.187200pt;}
.y13_c00452{bottom:516.747200pt;}
.y12_c00452{bottom:547.387200pt;}
.y11_c00452{bottom:577.947200pt;}
.y10_c00452{bottom:608.587200pt;}
.yf_c00452{bottom:639.147200pt;}
.ye_c00452{bottom:669.787200pt;}
.yd_c00452{bottom:700.347200pt;}
.yc_c00452{bottom:730.987200pt;}
.yb_c00452{bottom:769.547067pt;}
.ya_c00452{bottom:800.187067pt;}
.y9_c00452{bottom:830.747067pt;}
.y8_c00452{bottom:861.387067pt;}
.y7_c00452{bottom:891.947067pt;}
.y6_c00452{bottom:922.587067pt;}
.y5_c00452{bottom:953.147067pt;}
.y4_c00452{bottom:983.787067pt;}
.y3_c00452{bottom:1014.347067pt;}
.y1_c00452{bottom:1063.867067pt;}
.h5_c00452{height:42.656250pt;}
.h6_c00452{height:44.388750pt;}
.h1_c00452{height:44.724687pt;}
.h3_c00452{height:53.562500pt;}
.h4_c00452{height:57.893529pt;}
.h2_c00452{height:64.142500pt;}
.h0_c00452{height:1122.666667pt;}
.w1_c00452{width:793.333333pt;}
.w0_c00452{width:793.626667pt;}
.x0_c00452{left:0.000000pt;}
.x1_c00452{left:113.440000pt;}
.x2_c00452{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_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_1cd04edf49d20d3f1f08576e.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_936020e478e85104f38c8ff5.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00453;src:url('chunks/assets/font_85d0a3d6a67f3705c4367895.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00453;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00453{font-family:ff5_c00453;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_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;}
.v1_c00453{vertical-align:29.880000px;}
.lsa_c00453{letter-spacing:-0.151200px;}
.lsb_c00453{letter-spacing:-0.046872px;}
.ls12_c00453{letter-spacing:-0.043200px;}
.lsc_c00453{letter-spacing:-0.036000px;}
.ls7_c00453{letter-spacing:-0.030060px;}
.ls10_c00453{letter-spacing:-0.028800px;}
.lsd_c00453{letter-spacing:-0.021600px;}
.lsf_c00453{letter-spacing:-0.014400px;}
.lse_c00453{letter-spacing:-0.007200px;}
.ls8_c00453{letter-spacing:-0.006012px;}
.ls9_c00453{letter-spacing:0.000000px;}
.ls2_c00453{letter-spacing:0.007200px;}
.ls11_c00453{letter-spacing:0.014400px;}
.ls0_c00453{letter-spacing:0.015624px;}
.ls6_c00453{letter-spacing:0.028728px;}
.ls3_c00453{letter-spacing:0.028800px;}
.ls13_c00453{letter-spacing:0.054756px;}
.ls14_c00453{letter-spacing:0.093600px;}
.ls4_c00453{letter-spacing:0.144000px;}
.ls1_c00453{letter-spacing:32.263560px;}
.ls5_c00453{letter-spacing:66.024000px;}
.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;}
}
.ws0_c00453{word-spacing:-19.545624px;}
.ws1_c00453{word-spacing:-10.584756px;}
.ws3_c00453{word-spacing:-0.264528px;}
.ws2_c00453{word-spacing:-0.240480px;}
.ws1b_c00453{word-spacing:-0.050400px;}
.ws5_c00453{word-spacing:-0.046872px;}
.ws21_c00453{word-spacing:-0.014400px;}
.ws24_c00453{word-spacing:-0.009576px;}
.ws4_c00453{word-spacing:0.000000px;}
.ws11_c00453{word-spacing:0.007200px;}
.ws1a_c00453{word-spacing:0.028800px;}
.ws1c_c00453{word-spacing:0.043200px;}
.ws20_c00453{word-spacing:0.100800px;}
.ws1f_c00453{word-spacing:0.115200px;}
.ws8_c00453{word-spacing:1.094400px;}
.ws7_c00453{word-spacing:1.116000px;}
.ws12_c00453{word-spacing:1.497600px;}
.ws13_c00453{word-spacing:1.555200px;}
.ws9_c00453{word-spacing:1.800000px;}
.wsb_c00453{word-spacing:1.807200px;}
.ws23_c00453{word-spacing:1.814400px;}
.wsa_c00453{word-spacing:1.821600px;}
.wse_c00453{word-spacing:2.894400px;}
.ws17_c00453{word-spacing:4.449600px;}
.ws16_c00453{word-spacing:4.716000px;}
.ws14_c00453{word-spacing:7.948800px;}
.ws15_c00453{word-spacing:7.992000px;}
.ws22_c00453{word-spacing:14.781600px;}
.ws1e_c00453{word-spacing:15.156000px;}
.ws1d_c00453{word-spacing:15.228000px;}
.wsc_c00453{word-spacing:15.487200px;}
.ws19_c00453{word-spacing:16.531200px;}
.ws18_c00453{word-spacing:16.574400px;}
.wsd_c00453{word-spacing:16.581600px;}
.ws6_c00453{word-spacing:16.596000px;}
.ws10_c00453{word-spacing:16.912800px;}
.wsf_c00453{word-spacing:16.999200px;}
._0_c00453{width:1.052100px;}
.fc0_c00453{color:rgb(0,0,0);}
.fs4_c00453{font-size:42.120000px;}
.fs5_c00453{font-size:47.880000px;}
.fs2_c00453{font-size:54.000000px;}
.fs0_c00453{font-size:60.120000px;}
.fs1_c00453{font-size:72.000000px;}
.fs3_c00453{font-size:78.120000px;}
.y0_c00453{bottom:0.000000px;}
.y3_c00453{bottom:57.450450px;}
.y4_c00453{bottom:61.410450px;}
.y20_c00453{bottom:88.230450px;}
.y1f_c00453{bottom:103.440450px;}
.y1e_c00453{bottom:124.140450px;}
.y1d_c00453{bottom:144.840450px;}
.y1c_c00453{bottom:265.530450px;}
.y1b_c00453{bottom:299.910450px;}
.y1a_c00453{bottom:352.380450px;}
.y19_c00453{bottom:395.760450px;}
.y18_c00453{bottom:430.230450px;}
.y17_c00453{bottom:473.610450px;}
.y16_c00453{bottom:517.080450px;}
.y15_c00453{bottom:560.460450px;}
.y14_c00453{bottom:594.930450px;}
.y13_c00453{bottom:638.310450px;}
.y12_c00453{bottom:672.780450px;}
.y11_c00453{bottom:707.160450px;}
.y10_c00453{bottom:741.630450px;}
.yf_c00453{bottom:776.010450px;}
.ye_c00453{bottom:819.480450px;}
.yd_c00453{bottom:853.860450px;}
.yc_c00453{bottom:888.330450px;}
.yb_c00453{bottom:922.710450px;}
.ya_c00453{bottom:957.180450px;}
.y9_c00453{bottom:991.560450px;}
.y8_c00453{bottom:1026.030450px;}
.y7_c00453{bottom:1060.410450px;}
.y6_c00453{bottom:1094.880450px;}
.y5_c00453{bottom:1139.880450px;}
.y2_c00453{bottom:1176.420450px;}
.y1_c00453{bottom:1196.940450px;}
.h2_c00453{height:47.988281px;}
.h8_c00453{height:49.937344px;}
.h1_c00453{height:50.315273px;}
.h3_c00453{height:56.320312px;}
.h5_c00453{height:60.257812px;}
.h7_c00453{height:65.130820px;}
.h6_c00453{height:75.093750px;}
.h4_c00453{height:81.476719px;}
.h0_c00453{height:1263.000000px;}
.w1_c00453{width:892.500000px;}
.w0_c00453{width:892.830000px;}
.x0_c00453{left:0.000000px;}
.x2_c00453{left:127.620000px;}
.x6_c00453{left:154.440000px;}
.x5_c00453{left:180.810000px;}
.x1_c00453{left:217.440000px;}
.x4_c00453{left:435.240000px;}
.x3_c00453{left:446.490000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.v1_c00453{vertical-align:26.560000pt;}
.lsa_c00453{letter-spacing:-0.134400pt;}
.lsb_c00453{letter-spacing:-0.041664pt;}
.ls12_c00453{letter-spacing:-0.038400pt;}
.lsc_c00453{letter-spacing:-0.032000pt;}
.ls7_c00453{letter-spacing:-0.026720pt;}
.ls10_c00453{letter-spacing:-0.025600pt;}
.lsd_c00453{letter-spacing:-0.019200pt;}
.lsf_c00453{letter-spacing:-0.012800pt;}
.lse_c00453{letter-spacing:-0.006400pt;}
.ls8_c00453{letter-spacing:-0.005344pt;}
.ls9_c00453{letter-spacing:0.000000pt;}
.ls2_c00453{letter-spacing:0.006400pt;}
.ls11_c00453{letter-spacing:0.012800pt;}
.ls0_c00453{letter-spacing:0.013888pt;}
.ls6_c00453{letter-spacing:0.025536pt;}
.ls3_c00453{letter-spacing:0.025600pt;}
.ls13_c00453{letter-spacing:0.048672pt;}
.ls14_c00453{letter-spacing:0.083200pt;}
.ls4_c00453{letter-spacing:0.128000pt;}
.ls1_c00453{letter-spacing:28.678720pt;}
.ls5_c00453{letter-spacing:58.688000pt;}
.ws0_c00453{word-spacing:-17.373888pt;}
.ws1_c00453{word-spacing:-9.408672pt;}
.ws3_c00453{word-spacing:-0.235136pt;}
.ws2_c00453{word-spacing:-0.213760pt;}
.ws1b_c00453{word-spacing:-0.044800pt;}
.ws5_c00453{word-spacing:-0.041664pt;}
.ws21_c00453{word-spacing:-0.012800pt;}
.ws24_c00453{word-spacing:-0.008512pt;}
.ws4_c00453{word-spacing:0.000000pt;}
.ws11_c00453{word-spacing:0.006400pt;}
.ws1a_c00453{word-spacing:0.025600pt;}
.ws1c_c00453{word-spacing:0.038400pt;}
.ws20_c00453{word-spacing:0.089600pt;}
.ws1f_c00453{word-spacing:0.102400pt;}
.ws8_c00453{word-spacing:0.972800pt;}
.ws7_c00453{word-spacing:0.992000pt;}
.ws12_c00453{word-spacing:1.331200pt;}
.ws13_c00453{word-spacing:1.382400pt;}
.ws9_c00453{word-spacing:1.600000pt;}
.wsb_c00453{word-spacing:1.606400pt;}
.ws23_c00453{word-spacing:1.612800pt;}
.wsa_c00453{word-spacing:1.619200pt;}
.wse_c00453{word-spacing:2.572800pt;}
.ws17_c00453{word-spacing:3.955200pt;}
.ws16_c00453{word-spacing:4.192000pt;}
.ws14_c00453{word-spacing:7.065600pt;}
.ws15_c00453{word-spacing:7.104000pt;}
.ws22_c00453{word-spacing:13.139200pt;}
.ws1e_c00453{word-spacing:13.472000pt;}
.ws1d_c00453{word-spacing:13.536000pt;}
.wsc_c00453{word-spacing:13.766400pt;}
.ws19_c00453{word-spacing:14.694400pt;}
.ws18_c00453{word-spacing:14.732800pt;}
.wsd_c00453{word-spacing:14.739200pt;}
.ws6_c00453{word-spacing:14.752000pt;}
.ws10_c00453{word-spacing:15.033600pt;}
.wsf_c00453{word-spacing:15.110400pt;}
._0_c00453{width:0.935200pt;}
.fs4_c00453{font-size:37.440000pt;}
.fs5_c00453{font-size:42.560000pt;}
.fs2_c00453{font-size:48.000000pt;}
.fs0_c00453{font-size:53.440000pt;}
.fs1_c00453{font-size:64.000000pt;}
.fs3_c00453{font-size:69.440000pt;}
.y0_c00453{bottom:0.000000pt;}
.y3_c00453{bottom:51.067067pt;}
.y4_c00453{bottom:54.587067pt;}
.y20_c00453{bottom:78.427067pt;}
.y1f_c00453{bottom:91.947067pt;}
.y1e_c00453{bottom:110.347067pt;}
.y1d_c00453{bottom:128.747067pt;}
.y1c_c00453{bottom:236.027067pt;}
.y1b_c00453{bottom:266.587067pt;}
.y1a_c00453{bottom:313.227067pt;}
.y19_c00453{bottom:351.787067pt;}
.y18_c00453{bottom:382.427067pt;}
.y17_c00453{bottom:420.987067pt;}
.y16_c00453{bottom:459.627067pt;}
.y15_c00453{bottom:498.187067pt;}
.y14_c00453{bottom:528.827067pt;}
.y13_c00453{bottom:567.387067pt;}
.y12_c00453{bottom:598.027067pt;}
.y11_c00453{bottom:628.587067pt;}
.y10_c00453{bottom:659.227067pt;}
.yf_c00453{bottom:689.787067pt;}
.ye_c00453{bottom:728.427067pt;}
.yd_c00453{bottom:758.987067pt;}
.yc_c00453{bottom:789.627067pt;}
.yb_c00453{bottom:820.187067pt;}
.ya_c00453{bottom:850.827067pt;}
.y9_c00453{bottom:881.387067pt;}
.y8_c00453{bottom:912.027067pt;}
.y7_c00453{bottom:942.587067pt;}
.y6_c00453{bottom:973.227067pt;}
.y5_c00453{bottom:1013.227067pt;}
.y2_c00453{bottom:1045.707067pt;}
.y1_c00453{bottom:1063.947067pt;}
.h2_c00453{height:42.656250pt;}
.h8_c00453{height:44.388750pt;}
.h1_c00453{height:44.724687pt;}
.h3_c00453{height:50.062500pt;}
.h5_c00453{height:53.562500pt;}
.h7_c00453{height:57.894062pt;}
.h6_c00453{height:66.750000pt;}
.h4_c00453{height:72.423750pt;}
.h0_c00453{height:1122.666667pt;}
.w1_c00453{width:793.333333pt;}
.w0_c00453{width:793.626667pt;}
.x0_c00453{left:0.000000pt;}
.x2_c00453{left:113.440000pt;}
.x6_c00453{left:137.280000pt;}
.x5_c00453{left:160.720000pt;}
.x1_c00453{left:193.280000pt;}
.x4_c00453{left:386.880000pt;}
.x3_c00453{left:396.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_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_97534bf5463d36d025134a3a.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_a60bd6f9fdf765787b15800d.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00454;src:url('chunks/assets/font_9c3cbdefe1c4178d41c88dfb.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:1.102051;font-style:normal;font-weight:normal;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_0982f0434877b022237f369f.woff2')format("woff");}.ff5_c00454{font-family:ff5_c00454;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00454;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00454{font-family:ff6_c00454;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00454;src:url('chunks/assets/font_19e294226a64089d0ff916ba.woff2')format("woff");}.ff7_c00454{font-family:ff7_c00454;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_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;}
.v1_c00454{vertical-align:15.840000px;}
.v2_c00454{vertical-align:29.880000px;}
.ls14_c00454{letter-spacing:-0.151200px;}
.ls1b_c00454{letter-spacing:-0.036000px;}
.ls18_c00454{letter-spacing:-0.028800px;}
.ls1d_c00454{letter-spacing:-0.023436px;}
.ls1c_c00454{letter-spacing:-0.021600px;}
.ls19_c00454{letter-spacing:-0.014400px;}
.ls1a_c00454{letter-spacing:-0.007200px;}
.ls1e_c00454{letter-spacing:-0.003888px;}
.ls15_c00454{letter-spacing:0.000000px;}
.ls13_c00454{letter-spacing:0.004788px;}
.ls3_c00454{letter-spacing:0.007200px;}
.ls9_c00454{letter-spacing:0.009576px;}
.lsd_c00454{letter-spacing:0.014364px;}
.ls2_c00454{letter-spacing:0.014400px;}
.ls10_c00454{letter-spacing:0.019152px;}
.ls11_c00454{letter-spacing:0.023940px;}
.ls4_c00454{letter-spacing:0.028800px;}
.ls8_c00454{letter-spacing:0.033516px;}
.lse_c00454{letter-spacing:0.043092px;}
.ls12_c00454{letter-spacing:0.047880px;}
.ls0_c00454{letter-spacing:0.048096px;}
.lsf_c00454{letter-spacing:0.052668px;}
.ls16_c00454{letter-spacing:0.054756px;}
.ls17_c00454{letter-spacing:0.093600px;}
.lsb_c00454{letter-spacing:0.104040px;}
.ls6_c00454{letter-spacing:0.144000px;}
.lsa_c00454{letter-spacing:0.351360px;}
.lsc_c00454{letter-spacing:0.464040px;}
.ls5_c00454{letter-spacing:35.154000px;}
.ls7_c00454{letter-spacing:66.024000px;}
.ls1_c00454{letter-spacing:1212.120000px;}
.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:-19.506564px;}
.ws4_c00454{word-spacing:-13.358520px;}
.ws2_c00454{word-spacing:-13.320216px;}
.ws3_c00454{word-spacing:-10.804752px;}
.ws0_c00454{word-spacing:-10.584756px;}
.ws13_c00454{word-spacing:-0.093600px;}
.ws1c_c00454{word-spacing:-0.086400px;}
.ws17_c00454{word-spacing:-0.070308px;}
.ws31_c00454{word-spacing:-0.028728px;}
.ws28_c00454{word-spacing:-0.014364px;}
.ws2e_c00454{word-spacing:-0.004788px;}
.ws6_c00454{word-spacing:0.000000px;}
.ws2f_c00454{word-spacing:0.004788px;}
.ws27_c00454{word-spacing:0.007200px;}
.ws32_c00454{word-spacing:0.014364px;}
.ws12_c00454{word-spacing:0.036000px;}
.ws5_c00454{word-spacing:0.042084px;}
.ws16_c00454{word-spacing:0.050400px;}
.wsc_c00454{word-spacing:0.057600px;}
.ws23_c00454{word-spacing:0.072000px;}
.ws2b_c00454{word-spacing:0.335160px;}
.ws29_c00454{word-spacing:0.357696px;}
.ws30_c00454{word-spacing:0.363888px;}
.ws18_c00454{word-spacing:0.720000px;}
.ws2a_c00454{word-spacing:0.722988px;}
.ws1e_c00454{word-spacing:0.777600px;}
.ws1d_c00454{word-spacing:0.792000px;}
.ws19_c00454{word-spacing:0.907200px;}
.ws22_c00454{word-spacing:1.080000px;}
.ws21_c00454{word-spacing:1.137600px;}
.ws2c_c00454{word-spacing:3.203172px;}
.ws2d_c00454{word-spacing:3.236688px;}
.ws11_c00454{word-spacing:3.240000px;}
.wsd_c00454{word-spacing:5.047200px;}
.wse_c00454{word-spacing:5.083200px;}
.ws26_c00454{word-spacing:6.091200px;}
.ws24_c00454{word-spacing:6.156000px;}
.ws25_c00454{word-spacing:6.242400px;}
.wsb_c00454{word-spacing:7.574400px;}
.ws10_c00454{word-spacing:7.905600px;}
.wsf_c00454{word-spacing:7.927200px;}
.ws7_c00454{word-spacing:8.625600px;}
.ws8_c00454{word-spacing:8.632800px;}
.ws9_c00454{word-spacing:9.331200px;}
.wsa_c00454{word-spacing:9.388800px;}
.ws1a_c00454{word-spacing:10.432800px;}
.ws1b_c00454{word-spacing:10.440000px;}
.ws14_c00454{word-spacing:12.600000px;}
.ws15_c00454{word-spacing:12.679200px;}
.ws20_c00454{word-spacing:14.428800px;}
.ws1f_c00454{word-spacing:22.348800px;}
._0_c00454{margin-left:-1.322640px;}
._1_c00454{width:1.008000px;}
._2_c00454{width:5.083200px;}
.fc0_c00454{color:rgb(0,0,0);}
.fs6_c00454{font-size:38.880000px;}
.fs3_c00454{font-size:42.120000px;}
.fs5_c00454{font-size:47.880000px;}
.fs2_c00454{font-size:54.000000px;}
.fs0_c00454{font-size:60.120000px;}
.fs1_c00454{font-size:72.000000px;}
.fs4_c00454{font-size:78.120000px;}
.y0_c00454{bottom:0.000000px;}
.y2_c00454{bottom:57.450450px;}
.y22_c00454{bottom:88.229280px;}
.y21_c00454{bottom:106.495500px;}
.y20_c00454{bottom:124.857480px;}
.y1f_c00454{bottom:138.539190px;}
.y1e_c00454{bottom:152.398470px;}
.y1d_c00454{bottom:170.760450px;}
.y1c_c00454{bottom:185.970600px;}
.y1b_c00454{bottom:206.670600px;}
.y1a_c00454{bottom:227.370450px;}
.y19_c00454{bottom:290.910450px;}
.y18_c00454{bottom:325.380450px;}
.y17_c00454{bottom:368.760450px;}
.y16_c00454{bottom:403.230450px;}
.y15_c00454{bottom:446.610450px;}
.y14_c00454{bottom:481.080450px;}
.y13_c00454{bottom:515.460450px;}
.y12_c00454{bottom:549.930450px;}
.y11_c00454{bottom:593.310450px;}
.y10_c00454{bottom:627.780450px;}
.yf_c00454{bottom:662.160450px;}
.ye_c00454{bottom:707.250450px;}
.yd_c00454{bottom:769.890450px;}
.yc_c00454{bottom:804.360450px;}
.yb_c00454{bottom:847.740450px;}
.ya_c00454{bottom:882.210450px;}
.y9_c00454{bottom:916.590450px;}
.y8_c00454{bottom:951.060450px;}
.y7_c00454{bottom:994.440450px;}
.y6_c00454{bottom:1028.910450px;}
.y5_c00454{bottom:1063.290450px;}
.y4_c00454{bottom:1106.760450px;}
.y3_c00454{bottom:1141.140450px;}
.y1_c00454{bottom:1196.850450px;}
.h9_c00454{height:47.988281px;}
.h8_c00454{height:47.988881px;}
.ha_c00454{height:49.937344px;}
.hc_c00454{height:49.942024px;}
.hb_c00454{height:49.945264px;}
.h1_c00454{height:50.315273px;}
.h3_c00454{height:60.257812px;}
.h5_c00454{height:60.890625px;}
.h4_c00454{height:65.130820px;}
.h2_c00454{height:72.160312px;}
.h7_c00454{height:75.093750px;}
.h6_c00454{height:81.476719px;}
.h0_c00454{height:1263.000000px;}
.w1_c00454{width:892.500000px;}
.w0_c00454{width:892.830000px;}
.x0_c00454{left:0.000000px;}
.x1_c00454{left:127.620000px;}
.x4_c00454{left:141.113790px;}
.x3_c00454{left:154.440000px;}
.x2_c00454{left:180.810000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.v1_c00454{vertical-align:14.080000pt;}
.v2_c00454{vertical-align:26.560000pt;}
.ls14_c00454{letter-spacing:-0.134400pt;}
.ls1b_c00454{letter-spacing:-0.032000pt;}
.ls18_c00454{letter-spacing:-0.025600pt;}
.ls1d_c00454{letter-spacing:-0.020832pt;}
.ls1c_c00454{letter-spacing:-0.019200pt;}
.ls19_c00454{letter-spacing:-0.012800pt;}
.ls1a_c00454{letter-spacing:-0.006400pt;}
.ls1e_c00454{letter-spacing:-0.003456pt;}
.ls15_c00454{letter-spacing:0.000000pt;}
.ls13_c00454{letter-spacing:0.004256pt;}
.ls3_c00454{letter-spacing:0.006400pt;}
.ls9_c00454{letter-spacing:0.008512pt;}
.lsd_c00454{letter-spacing:0.012768pt;}
.ls2_c00454{letter-spacing:0.012800pt;}
.ls10_c00454{letter-spacing:0.017024pt;}
.ls11_c00454{letter-spacing:0.021280pt;}
.ls4_c00454{letter-spacing:0.025600pt;}
.ls8_c00454{letter-spacing:0.029792pt;}
.lse_c00454{letter-spacing:0.038304pt;}
.ls12_c00454{letter-spacing:0.042560pt;}
.ls0_c00454{letter-spacing:0.042752pt;}
.lsf_c00454{letter-spacing:0.046816pt;}
.ls16_c00454{letter-spacing:0.048672pt;}
.ls17_c00454{letter-spacing:0.083200pt;}
.lsb_c00454{letter-spacing:0.092480pt;}
.ls6_c00454{letter-spacing:0.128000pt;}
.lsa_c00454{letter-spacing:0.312320pt;}
.lsc_c00454{letter-spacing:0.412480pt;}
.ls5_c00454{letter-spacing:31.248000pt;}
.ls7_c00454{letter-spacing:58.688000pt;}
.ls1_c00454{letter-spacing:1077.440000pt;}
.ws1_c00454{word-spacing:-17.339168pt;}
.ws4_c00454{word-spacing:-11.874240pt;}
.ws2_c00454{word-spacing:-11.840192pt;}
.ws3_c00454{word-spacing:-9.604224pt;}
.ws0_c00454{word-spacing:-9.408672pt;}
.ws13_c00454{word-spacing:-0.083200pt;}
.ws1c_c00454{word-spacing:-0.076800pt;}
.ws17_c00454{word-spacing:-0.062496pt;}
.ws31_c00454{word-spacing:-0.025536pt;}
.ws28_c00454{word-spacing:-0.012768pt;}
.ws2e_c00454{word-spacing:-0.004256pt;}
.ws6_c00454{word-spacing:0.000000pt;}
.ws2f_c00454{word-spacing:0.004256pt;}
.ws27_c00454{word-spacing:0.006400pt;}
.ws32_c00454{word-spacing:0.012768pt;}
.ws12_c00454{word-spacing:0.032000pt;}
.ws5_c00454{word-spacing:0.037408pt;}
.ws16_c00454{word-spacing:0.044800pt;}
.wsc_c00454{word-spacing:0.051200pt;}
.ws23_c00454{word-spacing:0.064000pt;}
.ws2b_c00454{word-spacing:0.297920pt;}
.ws29_c00454{word-spacing:0.317952pt;}
.ws30_c00454{word-spacing:0.323456pt;}
.ws18_c00454{word-spacing:0.640000pt;}
.ws2a_c00454{word-spacing:0.642656pt;}
.ws1e_c00454{word-spacing:0.691200pt;}
.ws1d_c00454{word-spacing:0.704000pt;}
.ws19_c00454{word-spacing:0.806400pt;}
.ws22_c00454{word-spacing:0.960000pt;}
.ws21_c00454{word-spacing:1.011200pt;}
.ws2c_c00454{word-spacing:2.847264pt;}
.ws2d_c00454{word-spacing:2.877056pt;}
.ws11_c00454{word-spacing:2.880000pt;}
.wsd_c00454{word-spacing:4.486400pt;}
.wse_c00454{word-spacing:4.518400pt;}
.ws26_c00454{word-spacing:5.414400pt;}
.ws24_c00454{word-spacing:5.472000pt;}
.ws25_c00454{word-spacing:5.548800pt;}
.wsb_c00454{word-spacing:6.732800pt;}
.ws10_c00454{word-spacing:7.027200pt;}
.wsf_c00454{word-spacing:7.046400pt;}
.ws7_c00454{word-spacing:7.667200pt;}
.ws8_c00454{word-spacing:7.673600pt;}
.ws9_c00454{word-spacing:8.294400pt;}
.wsa_c00454{word-spacing:8.345600pt;}
.ws1a_c00454{word-spacing:9.273600pt;}
.ws1b_c00454{word-spacing:9.280000pt;}
.ws14_c00454{word-spacing:11.200000pt;}
.ws15_c00454{word-spacing:11.270400pt;}
.ws20_c00454{word-spacing:12.825600pt;}
.ws1f_c00454{word-spacing:19.865600pt;}
._0_c00454{margin-left:-1.175680pt;}
._1_c00454{width:0.896000pt;}
._2_c00454{width:4.518400pt;}
.fs6_c00454{font-size:34.560000pt;}
.fs3_c00454{font-size:37.440000pt;}
.fs5_c00454{font-size:42.560000pt;}
.fs2_c00454{font-size:48.000000pt;}
.fs0_c00454{font-size:53.440000pt;}
.fs1_c00454{font-size:64.000000pt;}
.fs4_c00454{font-size:69.440000pt;}
.y0_c00454{bottom:0.000000pt;}
.y2_c00454{bottom:51.067067pt;}
.y22_c00454{bottom:78.426027pt;}
.y21_c00454{bottom:94.662667pt;}
.y20_c00454{bottom:110.984427pt;}
.y1f_c00454{bottom:123.145947pt;}
.y1e_c00454{bottom:135.465307pt;}
.y1d_c00454{bottom:151.787067pt;}
.y1c_c00454{bottom:165.307200pt;}
.y1b_c00454{bottom:183.707200pt;}
.y1a_c00454{bottom:202.107067pt;}
.y19_c00454{bottom:258.587067pt;}
.y18_c00454{bottom:289.227067pt;}
.y17_c00454{bottom:327.787067pt;}
.y16_c00454{bottom:358.427067pt;}
.y15_c00454{bottom:396.987067pt;}
.y14_c00454{bottom:427.627067pt;}
.y13_c00454{bottom:458.187067pt;}
.y12_c00454{bottom:488.827067pt;}
.y11_c00454{bottom:527.387067pt;}
.y10_c00454{bottom:558.027067pt;}
.yf_c00454{bottom:588.587067pt;}
.ye_c00454{bottom:628.667067pt;}
.yd_c00454{bottom:684.347067pt;}
.yc_c00454{bottom:714.987067pt;}
.yb_c00454{bottom:753.547067pt;}
.ya_c00454{bottom:784.187067pt;}
.y9_c00454{bottom:814.747067pt;}
.y8_c00454{bottom:845.387067pt;}
.y7_c00454{bottom:883.947067pt;}
.y6_c00454{bottom:914.587067pt;}
.y5_c00454{bottom:945.147067pt;}
.y4_c00454{bottom:983.787067pt;}
.y3_c00454{bottom:1014.347067pt;}
.y1_c00454{bottom:1063.867067pt;}
.h9_c00454{height:42.656250pt;}
.h8_c00454{height:42.656783pt;}
.ha_c00454{height:44.388750pt;}
.hc_c00454{height:44.392910pt;}
.hb_c00454{height:44.395790pt;}
.h1_c00454{height:44.724687pt;}
.h3_c00454{height:53.562500pt;}
.h5_c00454{height:54.125000pt;}
.h4_c00454{height:57.894063pt;}
.h2_c00454{height:64.142500pt;}
.h7_c00454{height:66.750000pt;}
.h6_c00454{height:72.423750pt;}
.h0_c00454{height:1122.666667pt;}
.w1_c00454{width:793.333333pt;}
.w0_c00454{width:793.626667pt;}
.x0_c00454{left:0.000000pt;}
.x1_c00454{left:113.440000pt;}
.x4_c00454{left:125.434480pt;}
.x3_c00454{left:137.280000pt;}
.x2_c00454{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_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_e26e5021acc7f3b8915d6e35.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_15cb7da7ebe0f47308518e12.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00455;src:url('chunks/assets/font_1fc2da025aa7f6065e16fa17.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00455;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00455{font-family:ff5_c00455;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_c00455;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff6_c00455{font-family:ff6_c00455;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_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;}
.v1_c00455{vertical-align:29.880000px;}
.lse_c00455{letter-spacing:-0.151200px;}
.ls10_c00455{letter-spacing:-0.057600px;}
.ls1a_c00455{letter-spacing:-0.050400px;}
.ls15_c00455{letter-spacing:-0.039060px;}
.ls18_c00455{letter-spacing:-0.036000px;}
.lsb_c00455{letter-spacing:-0.030060px;}
.lsf_c00455{letter-spacing:-0.028800px;}
.ls19_c00455{letter-spacing:-0.023436px;}
.ls13_c00455{letter-spacing:-0.021600px;}
.ls11_c00455{letter-spacing:-0.014400px;}
.ls14_c00455{letter-spacing:-0.007200px;}
.lsc_c00455{letter-spacing:-0.006012px;}
.ls1b_c00455{letter-spacing:-0.003888px;}
.lsd_c00455{letter-spacing:0.000000px;}
.ls9_c00455{letter-spacing:0.004788px;}
.ls3_c00455{letter-spacing:0.007200px;}
.ls6_c00455{letter-spacing:0.014364px;}
.ls5_c00455{letter-spacing:0.014400px;}
.ls4_c00455{letter-spacing:0.021600px;}
.ls1_c00455{letter-spacing:0.028800px;}
.lsa_c00455{letter-spacing:0.033516px;}
.ls2_c00455{letter-spacing:0.036000px;}
.ls8_c00455{letter-spacing:0.047880px;}
.ls16_c00455{letter-spacing:0.050400px;}
.ls12_c00455{letter-spacing:0.054756px;}
.ls17_c00455{letter-spacing:0.093600px;}
.ls7_c00455{letter-spacing:0.464040px;}
.ls0_c00455{letter-spacing:29.373120px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00455{word-spacing:-19.530000px;}
.ws2_c00455{word-spacing:-17.978400px;}
.ws3_c00455{word-spacing:-10.804752px;}
.ws0_c00455{word-spacing:-10.584756px;}
.ws5_c00455{word-spacing:-0.264528px;}
.ws4_c00455{word-spacing:-0.240480px;}
.ws17_c00455{word-spacing:-0.086400px;}
.ws25_c00455{word-spacing:-0.070308px;}
.ws10_c00455{word-spacing:-0.054684px;}
.ws30_c00455{word-spacing:-0.028728px;}
.ws32_c00455{word-spacing:-0.014364px;}
.ws6_c00455{word-spacing:0.000000px;}
.ws2e_c00455{word-spacing:0.004788px;}
.ws24_c00455{word-spacing:0.007200px;}
.ws31_c00455{word-spacing:0.014364px;}
.wsf_c00455{word-spacing:0.072000px;}
.wse_c00455{word-spacing:0.086400px;}
.ws12_c00455{word-spacing:0.309600px;}
.ws11_c00455{word-spacing:0.331200px;}
.ws2f_c00455{word-spacing:0.363888px;}
.ws1e_c00455{word-spacing:1.101600px;}
.wsa_c00455{word-spacing:2.491200px;}
.ws9_c00455{word-spacing:2.584800px;}
.ws1b_c00455{word-spacing:3.218400px;}
.ws1a_c00455{word-spacing:3.232800px;}
.ws1c_c00455{word-spacing:4.291200px;}
.ws2b_c00455{word-spacing:4.341600px;}
.ws1d_c00455{word-spacing:4.363200px;}
.ws7_c00455{word-spacing:7.660800px;}
.ws8_c00455{word-spacing:7.797600px;}
.ws13_c00455{word-spacing:8.244000px;}
.wsc_c00455{word-spacing:8.280000px;}
.ws2a_c00455{word-spacing:8.308800px;}
.ws26_c00455{word-spacing:8.330400px;}
.ws14_c00455{word-spacing:8.337600px;}
.ws29_c00455{word-spacing:8.474400px;}
.wsd_c00455{word-spacing:8.481600px;}
.ws15_c00455{word-spacing:8.503200px;}
.ws23_c00455{word-spacing:9.360000px;}
.ws22_c00455{word-spacing:9.439200px;}
.ws2d_c00455{word-spacing:11.613600px;}
.ws2c_c00455{word-spacing:11.620800px;}
.ws19_c00455{word-spacing:14.392800px;}
.ws18_c00455{word-spacing:14.464800px;}
.wsb_c00455{word-spacing:15.436800px;}
.ws20_c00455{word-spacing:16.552800px;}
.ws21_c00455{word-spacing:16.660800px;}
.ws27_c00455{word-spacing:19.065600px;}
.ws28_c00455{word-spacing:19.087200px;}
.ws1f_c00455{word-spacing:19.166400px;}
.ws16_c00455{word-spacing:28.101600px;}
._1_c00455{margin-left:-1.324800px;}
._0_c00455{width:1.052100px;}
.fc0_c00455{color:rgb(0,0,0);}
.fs6_c00455{font-size:38.880000px;}
.fs3_c00455{font-size:42.120000px;}
.fs5_c00455{font-size:47.880000px;}
.fs2_c00455{font-size:54.000000px;}
.fs0_c00455{font-size:60.120000px;}
.fs1_c00455{font-size:72.000000px;}
.fs4_c00455{font-size:78.120000px;}
.y0_c00455{bottom:0.000000px;}
.y3_c00455{bottom:57.450450px;}
.y4_c00455{bottom:61.410450px;}
.y22_c00455{bottom:88.234230px;}
.y21_c00455{bottom:106.500450px;}
.y20_c00455{bottom:121.710450px;}
.y1f_c00455{bottom:142.410450px;}
.y1e_c00455{bottom:163.110450px;}
.y1d_c00455{bottom:219.270450px;}
.y1c_c00455{bottom:253.650450px;}
.y1b_c00455{bottom:288.120450px;}
.y1a_c00455{bottom:322.500450px;}
.y19_c00455{bottom:356.970450px;}
.y18_c00455{bottom:401.970450px;}
.y17_c00455{bottom:464.610450px;}
.y16_c00455{bottom:499.080450px;}
.y15_c00455{bottom:533.460450px;}
.y14_c00455{bottom:567.930450px;}
.y13_c00455{bottom:611.310450px;}
.y12_c00455{bottom:645.780450px;}
.y11_c00455{bottom:680.160450px;}
.y10_c00455{bottom:714.630450px;}
.yf_c00455{bottom:749.010450px;}
.ye_c00455{bottom:792.480450px;}
.yd_c00455{bottom:826.860450px;}
.yc_c00455{bottom:861.330450px;}
.yb_c00455{bottom:895.710450px;}
.ya_c00455{bottom:940.800450px;}
.y9_c00455{bottom:1003.440450px;}
.y8_c00455{bottom:1037.910450px;}
.y7_c00455{bottom:1072.290450px;}
.y6_c00455{bottom:1106.760450px;}
.y5_c00455{bottom:1141.140450px;}
.y2_c00455{bottom:1176.420450px;}
.y1_c00455{bottom:1196.940450px;}
.h2_c00455{height:47.988281px;}
.h7_c00455{height:49.937344px;}
.h1_c00455{height:50.315273px;}
.h3_c00455{height:56.320312px;}
.h4_c00455{height:60.257812px;}
.h5_c00455{height:65.130820px;}
.h6_c00455{height:81.476719px;}
.h0_c00455{height:1263.000000px;}
.w1_c00455{width:892.500000px;}
.w0_c00455{width:892.830000px;}
.x0_c00455{left:0.000000px;}
.x2_c00455{left:127.620000px;}
.x5_c00455{left:180.810000px;}
.x1_c00455{left:217.440000px;}
.x4_c00455{left:435.240000px;}
.x3_c00455{left:446.490000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.v1_c00455{vertical-align:26.560000pt;}
.lse_c00455{letter-spacing:-0.134400pt;}
.ls10_c00455{letter-spacing:-0.051200pt;}
.ls1a_c00455{letter-spacing:-0.044800pt;}
.ls15_c00455{letter-spacing:-0.034720pt;}
.ls18_c00455{letter-spacing:-0.032000pt;}
.lsb_c00455{letter-spacing:-0.026720pt;}
.lsf_c00455{letter-spacing:-0.025600pt;}
.ls19_c00455{letter-spacing:-0.020832pt;}
.ls13_c00455{letter-spacing:-0.019200pt;}
.ls11_c00455{letter-spacing:-0.012800pt;}
.ls14_c00455{letter-spacing:-0.006400pt;}
.lsc_c00455{letter-spacing:-0.005344pt;}
.ls1b_c00455{letter-spacing:-0.003456pt;}
.lsd_c00455{letter-spacing:0.000000pt;}
.ls9_c00455{letter-spacing:0.004256pt;}
.ls3_c00455{letter-spacing:0.006400pt;}
.ls6_c00455{letter-spacing:0.012768pt;}
.ls5_c00455{letter-spacing:0.012800pt;}
.ls4_c00455{letter-spacing:0.019200pt;}
.ls1_c00455{letter-spacing:0.025600pt;}
.lsa_c00455{letter-spacing:0.029792pt;}
.ls2_c00455{letter-spacing:0.032000pt;}
.ls8_c00455{letter-spacing:0.042560pt;}
.ls16_c00455{letter-spacing:0.044800pt;}
.ls12_c00455{letter-spacing:0.048672pt;}
.ls17_c00455{letter-spacing:0.083200pt;}
.ls7_c00455{letter-spacing:0.412480pt;}
.ls0_c00455{letter-spacing:26.109440pt;}
.ws1_c00455{word-spacing:-17.360000pt;}
.ws2_c00455{word-spacing:-15.980800pt;}
.ws3_c00455{word-spacing:-9.604224pt;}
.ws0_c00455{word-spacing:-9.408672pt;}
.ws5_c00455{word-spacing:-0.235136pt;}
.ws4_c00455{word-spacing:-0.213760pt;}
.ws17_c00455{word-spacing:-0.076800pt;}
.ws25_c00455{word-spacing:-0.062496pt;}
.ws10_c00455{word-spacing:-0.048608pt;}
.ws30_c00455{word-spacing:-0.025536pt;}
.ws32_c00455{word-spacing:-0.012768pt;}
.ws6_c00455{word-spacing:0.000000pt;}
.ws2e_c00455{word-spacing:0.004256pt;}
.ws24_c00455{word-spacing:0.006400pt;}
.ws31_c00455{word-spacing:0.012768pt;}
.wsf_c00455{word-spacing:0.064000pt;}
.wse_c00455{word-spacing:0.076800pt;}
.ws12_c00455{word-spacing:0.275200pt;}
.ws11_c00455{word-spacing:0.294400pt;}
.ws2f_c00455{word-spacing:0.323456pt;}
.ws1e_c00455{word-spacing:0.979200pt;}
.wsa_c00455{word-spacing:2.214400pt;}
.ws9_c00455{word-spacing:2.297600pt;}
.ws1b_c00455{word-spacing:2.860800pt;}
.ws1a_c00455{word-spacing:2.873600pt;}
.ws1c_c00455{word-spacing:3.814400pt;}
.ws2b_c00455{word-spacing:3.859200pt;}
.ws1d_c00455{word-spacing:3.878400pt;}
.ws7_c00455{word-spacing:6.809600pt;}
.ws8_c00455{word-spacing:6.931200pt;}
.ws13_c00455{word-spacing:7.328000pt;}
.wsc_c00455{word-spacing:7.360000pt;}
.ws2a_c00455{word-spacing:7.385600pt;}
.ws26_c00455{word-spacing:7.404800pt;}
.ws14_c00455{word-spacing:7.411200pt;}
.ws29_c00455{word-spacing:7.532800pt;}
.wsd_c00455{word-spacing:7.539200pt;}
.ws15_c00455{word-spacing:7.558400pt;}
.ws23_c00455{word-spacing:8.320000pt;}
.ws22_c00455{word-spacing:8.390400pt;}
.ws2d_c00455{word-spacing:10.323200pt;}
.ws2c_c00455{word-spacing:10.329600pt;}
.ws19_c00455{word-spacing:12.793600pt;}
.ws18_c00455{word-spacing:12.857600pt;}
.wsb_c00455{word-spacing:13.721600pt;}
.ws20_c00455{word-spacing:14.713600pt;}
.ws21_c00455{word-spacing:14.809600pt;}
.ws27_c00455{word-spacing:16.947200pt;}
.ws28_c00455{word-spacing:16.966400pt;}
.ws1f_c00455{word-spacing:17.036800pt;}
.ws16_c00455{word-spacing:24.979200pt;}
._1_c00455{margin-left:-1.177600pt;}
._0_c00455{width:0.935200pt;}
.fs6_c00455{font-size:34.560000pt;}
.fs3_c00455{font-size:37.440000pt;}
.fs5_c00455{font-size:42.560000pt;}
.fs2_c00455{font-size:48.000000pt;}
.fs0_c00455{font-size:53.440000pt;}
.fs1_c00455{font-size:64.000000pt;}
.fs4_c00455{font-size:69.440000pt;}
.y0_c00455{bottom:0.000000pt;}
.y3_c00455{bottom:51.067067pt;}
.y4_c00455{bottom:54.587067pt;}
.y22_c00455{bottom:78.430427pt;}
.y21_c00455{bottom:94.667067pt;}
.y20_c00455{bottom:108.187067pt;}
.y1f_c00455{bottom:126.587067pt;}
.y1e_c00455{bottom:144.987067pt;}
.y1d_c00455{bottom:194.907067pt;}
.y1c_c00455{bottom:225.467067pt;}
.y1b_c00455{bottom:256.107067pt;}
.y1a_c00455{bottom:286.667067pt;}
.y19_c00455{bottom:317.307067pt;}
.y18_c00455{bottom:357.307067pt;}
.y17_c00455{bottom:412.987067pt;}
.y16_c00455{bottom:443.627067pt;}
.y15_c00455{bottom:474.187067pt;}
.y14_c00455{bottom:504.827067pt;}
.y13_c00455{bottom:543.387067pt;}
.y12_c00455{bottom:574.027067pt;}
.y11_c00455{bottom:604.587067pt;}
.y10_c00455{bottom:635.227067pt;}
.yf_c00455{bottom:665.787067pt;}
.ye_c00455{bottom:704.427067pt;}
.yd_c00455{bottom:734.987067pt;}
.yc_c00455{bottom:765.627067pt;}
.yb_c00455{bottom:796.187067pt;}
.ya_c00455{bottom:836.267067pt;}
.y9_c00455{bottom:891.947067pt;}
.y8_c00455{bottom:922.587067pt;}
.y7_c00455{bottom:953.147067pt;}
.y6_c00455{bottom:983.787067pt;}
.y5_c00455{bottom:1014.347067pt;}
.y2_c00455{bottom:1045.707067pt;}
.y1_c00455{bottom:1063.947067pt;}
.h2_c00455{height:42.656250pt;}
.h7_c00455{height:44.388750pt;}
.h1_c00455{height:44.724687pt;}
.h3_c00455{height:50.062500pt;}
.h4_c00455{height:53.562500pt;}
.h5_c00455{height:57.894063pt;}
.h6_c00455{height:72.423750pt;}
.h0_c00455{height:1122.666667pt;}
.w1_c00455{width:793.333333pt;}
.w0_c00455{width:793.626667pt;}
.x0_c00455{left:0.000000pt;}
.x2_c00455{left:113.440000pt;}
.x5_c00455{left:160.720000pt;}
.x1_c00455{left:193.280000pt;}
.x4_c00455{left:386.880000pt;}
.x3_c00455{left:396.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_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_e0ea65b228aeb7f2f5bbc4c9.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_63595b4f0d50f8bb4b2c9e44.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00456;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff4_c00456{font-family:ff4_c00456;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_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;}
.v1_c00456{vertical-align:15.840000px;}
.v2_c00456{vertical-align:29.880000px;}
.lsb_c00456{letter-spacing:-0.151200px;}
.lsc_c00456{letter-spacing:-0.036000px;}
.ls10_c00456{letter-spacing:-0.028800px;}
.ls12_c00456{letter-spacing:-0.021600px;}
.ls11_c00456{letter-spacing:-0.014400px;}
.lsd_c00456{letter-spacing:-0.007200px;}
.ls14_c00456{letter-spacing:-0.003888px;}
.ls13_c00456{letter-spacing:0.000000px;}
.ls9_c00456{letter-spacing:0.004788px;}
.ls5_c00456{letter-spacing:0.007200px;}
.ls6_c00456{letter-spacing:0.014364px;}
.ls2_c00456{letter-spacing:0.021600px;}
.lsa_c00456{letter-spacing:0.033516px;}
.ls8_c00456{letter-spacing:0.047880px;}
.ls0_c00456{letter-spacing:0.048096px;}
.lse_c00456{letter-spacing:0.054756px;}
.lsf_c00456{letter-spacing:0.093600px;}
.ls3_c00456{letter-spacing:0.144000px;}
.ls7_c00456{letter-spacing:0.464040px;}
.ls4_c00456{letter-spacing:66.024000px;}
.ls1_c00456{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00456{word-spacing:-10.804752px;}
.ws0_c00456{word-spacing:-10.584756px;}
.ws1c_c00456{word-spacing:-0.093600px;}
.ws1f_c00456{word-spacing:-0.028728px;}
.ws17_c00456{word-spacing:-0.021600px;}
.ws21_c00456{word-spacing:-0.014364px;}
.ws3_c00456{word-spacing:0.000000px;}
.ws1d_c00456{word-spacing:0.004788px;}
.ws5_c00456{word-spacing:0.007200px;}
.ws20_c00456{word-spacing:0.014364px;}
.ws16_c00456{word-spacing:0.014400px;}
.wse_c00456{word-spacing:0.028800px;}
.ws2_c00456{word-spacing:0.042084px;}
.ws1e_c00456{word-spacing:0.363888px;}
.ws13_c00456{word-spacing:0.417600px;}
.ws14_c00456{word-spacing:0.446400px;}
.ws7_c00456{word-spacing:0.734400px;}
.wsf_c00456{word-spacing:1.087200px;}
.ws18_c00456{word-spacing:2.152800px;}
.wsa_c00456{word-spacing:2.196000px;}
.ws19_c00456{word-spacing:2.282400px;}
.ws8_c00456{word-spacing:2.930400px;}
.ws9_c00456{word-spacing:2.937600px;}
.ws6_c00456{word-spacing:5.068800px;}
.ws10_c00456{word-spacing:5.076000px;}
.wsd_c00456{word-spacing:5.774400px;}
.wsc_c00456{word-spacing:5.824800px;}
.ws4_c00456{word-spacing:7.920000px;}
.wsb_c00456{word-spacing:8.316000px;}
.ws12_c00456{word-spacing:8.654400px;}
.ws11_c00456{word-spacing:8.661600px;}
.ws1a_c00456{word-spacing:8.668800px;}
.ws1b_c00456{word-spacing:9.763200px;}
.ws15_c00456{word-spacing:12.988800px;}
._0_c00456{margin-left:-1.322640px;}
._1_c00456{width:1.152000px;}
.fc0_c00456{color:rgb(0,0,0);}
.fs5_c00456{font-size:38.880000px;}
.fs3_c00456{font-size:42.120000px;}
.fs4_c00456{font-size:47.880000px;}
.fs2_c00456{font-size:54.000000px;}
.fs0_c00456{font-size:60.120000px;}
.fs1_c00456{font-size:72.000000px;}
.y0_c00456{bottom:0.000000px;}
.y2_c00456{bottom:57.450450px;}
.y1f_c00456{bottom:88.234230px;}
.y1e_c00456{bottom:106.502250px;}
.y1d_c00456{bottom:124.864230px;}
.y1c_c00456{bottom:143.130450px;}
.y1b_c00456{bottom:158.340450px;}
.y1a_c00456{bottom:179.040450px;}
.y19_c00456{bottom:199.740450px;}
.y18_c00456{bottom:355.260450px;}
.y17_c00456{bottom:389.640450px;}
.y16_c00456{bottom:424.110450px;}
.y15_c00456{bottom:458.490450px;}
.y14_c00456{bottom:510.960450px;}
.y13_c00456{bottom:554.340450px;}
.y12_c00456{bottom:597.810450px;}
.y11_c00456{bottom:632.190450px;}
.y10_c00456{bottom:666.660450px;}
.yf_c00456{bottom:710.040450px;}
.ye_c00456{bottom:744.510450px;}
.yd_c00456{bottom:778.890450px;}
.yc_c00456{bottom:813.360450px;}
.yb_c00456{bottom:856.740450px;}
.ya_c00456{bottom:891.210450px;}
.y9_c00456{bottom:925.590450px;}
.y8_c00456{bottom:960.060450px;}
.y7_c00456{bottom:994.440450px;}
.y6_c00456{bottom:1028.910450px;}
.y5_c00456{bottom:1063.290450px;}
.y4_c00456{bottom:1106.760450px;}
.y3_c00456{bottom:1141.140450px;}
.y1_c00456{bottom:1196.850450px;}
.h6_c00456{height:47.988281px;}
.h7_c00456{height:49.937344px;}
.h1_c00456{height:50.315273px;}
.h3_c00456{height:60.257812px;}
.h4_c00456{height:65.130820px;}
.h2_c00456{height:72.160312px;}
.h5_c00456{height:75.093750px;}
.h0_c00456{height:1263.000000px;}
.w1_c00456{width:892.500000px;}
.w0_c00456{width:892.830000px;}
.x0_c00456{left:0.000000px;}
.x1_c00456{left:127.620000px;}
.x3_c00456{left:154.440000px;}
.x2_c00456{left:180.810000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.v1_c00456{vertical-align:14.080000pt;}
.v2_c00456{vertical-align:26.560000pt;}
.lsb_c00456{letter-spacing:-0.134400pt;}
.lsc_c00456{letter-spacing:-0.032000pt;}
.ls10_c00456{letter-spacing:-0.025600pt;}
.ls12_c00456{letter-spacing:-0.019200pt;}
.ls11_c00456{letter-spacing:-0.012800pt;}
.lsd_c00456{letter-spacing:-0.006400pt;}
.ls14_c00456{letter-spacing:-0.003456pt;}
.ls13_c00456{letter-spacing:0.000000pt;}
.ls9_c00456{letter-spacing:0.004256pt;}
.ls5_c00456{letter-spacing:0.006400pt;}
.ls6_c00456{letter-spacing:0.012768pt;}
.ls2_c00456{letter-spacing:0.019200pt;}
.lsa_c00456{letter-spacing:0.029792pt;}
.ls8_c00456{letter-spacing:0.042560pt;}
.ls0_c00456{letter-spacing:0.042752pt;}
.lse_c00456{letter-spacing:0.048672pt;}
.lsf_c00456{letter-spacing:0.083200pt;}
.ls3_c00456{letter-spacing:0.128000pt;}
.ls7_c00456{letter-spacing:0.412480pt;}
.ls4_c00456{letter-spacing:58.688000pt;}
.ls1_c00456{letter-spacing:1077.440000pt;}
.ws1_c00456{word-spacing:-9.604224pt;}
.ws0_c00456{word-spacing:-9.408672pt;}
.ws1c_c00456{word-spacing:-0.083200pt;}
.ws1f_c00456{word-spacing:-0.025536pt;}
.ws17_c00456{word-spacing:-0.019200pt;}
.ws21_c00456{word-spacing:-0.012768pt;}
.ws3_c00456{word-spacing:0.000000pt;}
.ws1d_c00456{word-spacing:0.004256pt;}
.ws5_c00456{word-spacing:0.006400pt;}
.ws20_c00456{word-spacing:0.012768pt;}
.ws16_c00456{word-spacing:0.012800pt;}
.wse_c00456{word-spacing:0.025600pt;}
.ws2_c00456{word-spacing:0.037408pt;}
.ws1e_c00456{word-spacing:0.323456pt;}
.ws13_c00456{word-spacing:0.371200pt;}
.ws14_c00456{word-spacing:0.396800pt;}
.ws7_c00456{word-spacing:0.652800pt;}
.wsf_c00456{word-spacing:0.966400pt;}
.ws18_c00456{word-spacing:1.913600pt;}
.wsa_c00456{word-spacing:1.952000pt;}
.ws19_c00456{word-spacing:2.028800pt;}
.ws8_c00456{word-spacing:2.604800pt;}
.ws9_c00456{word-spacing:2.611200pt;}
.ws6_c00456{word-spacing:4.505600pt;}
.ws10_c00456{word-spacing:4.512000pt;}
.wsd_c00456{word-spacing:5.132800pt;}
.wsc_c00456{word-spacing:5.177600pt;}
.ws4_c00456{word-spacing:7.040000pt;}
.wsb_c00456{word-spacing:7.392000pt;}
.ws12_c00456{word-spacing:7.692800pt;}
.ws11_c00456{word-spacing:7.699200pt;}
.ws1a_c00456{word-spacing:7.705600pt;}
.ws1b_c00456{word-spacing:8.678400pt;}
.ws15_c00456{word-spacing:11.545600pt;}
._0_c00456{margin-left:-1.175680pt;}
._1_c00456{width:1.024000pt;}
.fs5_c00456{font-size:34.560000pt;}
.fs3_c00456{font-size:37.440000pt;}
.fs4_c00456{font-size:42.560000pt;}
.fs2_c00456{font-size:48.000000pt;}
.fs0_c00456{font-size:53.440000pt;}
.fs1_c00456{font-size:64.000000pt;}
.y0_c00456{bottom:0.000000pt;}
.y2_c00456{bottom:51.067067pt;}
.y1f_c00456{bottom:78.430427pt;}
.y1e_c00456{bottom:94.668667pt;}
.y1d_c00456{bottom:110.990427pt;}
.y1c_c00456{bottom:127.227067pt;}
.y1b_c00456{bottom:140.747067pt;}
.y1a_c00456{bottom:159.147067pt;}
.y19_c00456{bottom:177.547067pt;}
.y18_c00456{bottom:315.787067pt;}
.y17_c00456{bottom:346.347067pt;}
.y16_c00456{bottom:376.987067pt;}
.y15_c00456{bottom:407.547067pt;}
.y14_c00456{bottom:454.187067pt;}
.y13_c00456{bottom:492.747067pt;}
.y12_c00456{bottom:531.387067pt;}
.y11_c00456{bottom:561.947067pt;}
.y10_c00456{bottom:592.587067pt;}
.yf_c00456{bottom:631.147067pt;}
.ye_c00456{bottom:661.787067pt;}
.yd_c00456{bottom:692.347067pt;}
.yc_c00456{bottom:722.987067pt;}
.yb_c00456{bottom:761.547067pt;}
.ya_c00456{bottom:792.187067pt;}
.y9_c00456{bottom:822.747067pt;}
.y8_c00456{bottom:853.387067pt;}
.y7_c00456{bottom:883.947067pt;}
.y6_c00456{bottom:914.587067pt;}
.y5_c00456{bottom:945.147067pt;}
.y4_c00456{bottom:983.787067pt;}
.y3_c00456{bottom:1014.347067pt;}
.y1_c00456{bottom:1063.867067pt;}
.h6_c00456{height:42.656250pt;}
.h7_c00456{height:44.388750pt;}
.h1_c00456{height:44.724687pt;}
.h3_c00456{height:53.562500pt;}
.h4_c00456{height:57.894063pt;}
.h2_c00456{height:64.142500pt;}
.h5_c00456{height:66.750000pt;}
.h0_c00456{height:1122.666667pt;}
.w1_c00456{width:793.333333pt;}
.w0_c00456{width:793.626667pt;}
.x0_c00456{left:0.000000pt;}
.x1_c00456{left:113.440000pt;}
.x3_c00456{left:137.280000pt;}
.x2_c00456{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_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_945de27c196c79c9286114d9.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_2b7f1684dfaf6f982c390bae.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00457;src:url('chunks/assets/font_87488f84b563138df09f5f12.woff2')format("woff");}.ff4_c00457{font-family:ff4_c00457;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00457;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00457{font-family:ff5_c00457;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_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;}
.v1_c00457{vertical-align:29.880000px;}
.ls7_c00457{letter-spacing:-0.151200px;}
.ls12_c00457{letter-spacing:-0.050400px;}
.lsa_c00457{letter-spacing:-0.043200px;}
.ls10_c00457{letter-spacing:-0.036000px;}
.ls11_c00457{letter-spacing:-0.031248px;}
.ls4_c00457{letter-spacing:-0.030060px;}
.lse_c00457{letter-spacing:-0.028800px;}
.lsb_c00457{letter-spacing:-0.021600px;}
.lsf_c00457{letter-spacing:-0.014400px;}
.ls8_c00457{letter-spacing:-0.007200px;}
.ls5_c00457{letter-spacing:-0.006012px;}
.ls6_c00457{letter-spacing:0.000000px;}
.ls0_c00457{letter-spacing:0.007200px;}
.ls1_c00457{letter-spacing:0.014400px;}
.ls3_c00457{letter-spacing:0.023940px;}
.ls9_c00457{letter-spacing:0.036000px;}
.lsc_c00457{letter-spacing:0.054756px;}
.lsd_c00457{letter-spacing:0.093600px;}
.ls2_c00457{letter-spacing:29.373120px;}
.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;}
}
.ws3_c00457{word-spacing:-19.530000px;}
.ws2_c00457{word-spacing:-17.985600px;}
.ws1_c00457{word-spacing:-17.964000px;}
.ws0_c00457{word-spacing:-10.584756px;}
.ws5_c00457{word-spacing:-0.264528px;}
.ws4_c00457{word-spacing:-0.240480px;}
.wsc_c00457{word-spacing:-0.093600px;}
.ws22_c00457{word-spacing:-0.062496px;}
.ws2d_c00457{word-spacing:-0.004788px;}
.ws6_c00457{word-spacing:0.000000px;}
.ws21_c00457{word-spacing:0.007200px;}
.wsb_c00457{word-spacing:0.172800px;}
.ws14_c00457{word-spacing:0.367200px;}
.ws15_c00457{word-spacing:0.388800px;}
.wsa_c00457{word-spacing:0.741600px;}
.ws9_c00457{word-spacing:0.763200px;}
.ws13_c00457{word-spacing:1.454400px;}
.ws28_c00457{word-spacing:1.764000px;}
.ws27_c00457{word-spacing:1.922400px;}
.ws24_c00457{word-spacing:3.952800px;}
.ws1d_c00457{word-spacing:3.960000px;}
.ws1f_c00457{word-spacing:3.974400px;}
.ws20_c00457{word-spacing:3.981600px;}
.ws1e_c00457{word-spacing:3.988800px;}
.ws23_c00457{word-spacing:4.039200px;}
.ws10_c00457{word-spacing:4.348800px;}
.ws2a_c00457{word-spacing:4.356000px;}
.ws29_c00457{word-spacing:4.399200px;}
.ws8_c00457{word-spacing:6.084000px;}
.wsf_c00457{word-spacing:6.148800px;}
.ws7_c00457{word-spacing:6.170400px;}
.ws18_c00457{word-spacing:7.243200px;}
.ws2b_c00457{word-spacing:7.581600px;}
.ws2c_c00457{word-spacing:7.660800px;}
.wse_c00457{word-spacing:8.503200px;}
.wsd_c00457{word-spacing:8.596800px;}
.ws12_c00457{word-spacing:12.124800px;}
.ws19_c00457{word-spacing:12.225600px;}
.ws11_c00457{word-spacing:12.261600px;}
.ws1a_c00457{word-spacing:12.312000px;}
.ws1b_c00457{word-spacing:12.319200px;}
.ws17_c00457{word-spacing:15.127200px;}
.ws16_c00457{word-spacing:15.184800px;}
.ws25_c00457{word-spacing:15.436800px;}
.ws26_c00457{word-spacing:15.487200px;}
.ws1c_c00457{word-spacing:19.497600px;}
._1_c00457{margin-left:-1.184472px;}
._0_c00457{width:1.052100px;}
.fc0_c00457{color:rgb(0,0,0);}
.fs3_c00457{font-size:42.120000px;}
.fs5_c00457{font-size:47.880000px;}
.fs2_c00457{font-size:54.000000px;}
.fs0_c00457{font-size:60.120000px;}
.fs1_c00457{font-size:72.000000px;}
.fs4_c00457{font-size:78.120000px;}
.y0_c00457{bottom:0.000000px;}
.y3_c00457{bottom:57.450450px;}
.y4_c00457{bottom:61.410450px;}
.y25_c00457{bottom:88.237830px;}
.y24_c00457{bottom:106.504050px;}
.y23_c00457{bottom:124.866030px;}
.y22_c00457{bottom:143.132250px;}
.y21_c00457{bottom:161.398470px;}
.y20_c00457{bottom:179.760450px;}
.y1f_c00457{bottom:194.970600px;}
.y1e_c00457{bottom:215.670600px;}
.y1d_c00457{bottom:236.370450px;}
.y1c_c00457{bottom:301.530450px;}
.y1b_c00457{bottom:335.910450px;}
.y1a_c00457{bottom:370.380450px;}
.y19_c00457{bottom:404.760450px;}
.y18_c00457{bottom:439.230450px;}
.y17_c00457{bottom:473.610450px;}
.y16_c00457{bottom:508.080450px;}
.y15_c00457{bottom:553.080450px;}
.y14_c00457{bottom:615.810450px;}
.y13_c00457{bottom:650.190450px;}
.y12_c00457{bottom:684.660600px;}
.y11_c00457{bottom:719.040600px;}
.y10_c00457{bottom:753.510600px;}
.yf_c00457{bottom:787.890600px;}
.ye_c00457{bottom:822.360450px;}
.yd_c00457{bottom:856.740450px;}
.yc_c00457{bottom:891.210450px;}
.yb_c00457{bottom:925.590450px;}
.ya_c00457{bottom:960.060450px;}
.y9_c00457{bottom:994.440450px;}
.y8_c00457{bottom:1028.910450px;}
.y7_c00457{bottom:1072.290450px;}
.y6_c00457{bottom:1106.760450px;}
.y5_c00457{bottom:1141.140450px;}
.y2_c00457{bottom:1176.420450px;}
.y1_c00457{bottom:1196.940450px;}
.h2_c00457{height:47.988281px;}
.h8_c00457{height:47.988881px;}
.h9_c00457{height:49.937344px;}
.h1_c00457{height:50.315273px;}
.h3_c00457{height:56.320312px;}
.h4_c00457{height:60.257812px;}
.h6_c00457{height:65.130220px;}
.h5_c00457{height:65.130820px;}
.h7_c00457{height:81.476719px;}
.h0_c00457{height:1263.000000px;}
.w1_c00457{width:892.500000px;}
.w0_c00457{width:892.830000px;}
.x0_c00457{left:0.000000px;}
.x2_c00457{left:127.620000px;}
.x5_c00457{left:180.810000px;}
.x1_c00457{left:217.440000px;}
.x4_c00457{left:435.240000px;}
.x3_c00457{left:446.490000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.v1_c00457{vertical-align:26.560000pt;}
.ls7_c00457{letter-spacing:-0.134400pt;}
.ls12_c00457{letter-spacing:-0.044800pt;}
.lsa_c00457{letter-spacing:-0.038400pt;}
.ls10_c00457{letter-spacing:-0.032000pt;}
.ls11_c00457{letter-spacing:-0.027776pt;}
.ls4_c00457{letter-spacing:-0.026720pt;}
.lse_c00457{letter-spacing:-0.025600pt;}
.lsb_c00457{letter-spacing:-0.019200pt;}
.lsf_c00457{letter-spacing:-0.012800pt;}
.ls8_c00457{letter-spacing:-0.006400pt;}
.ls5_c00457{letter-spacing:-0.005344pt;}
.ls6_c00457{letter-spacing:0.000000pt;}
.ls0_c00457{letter-spacing:0.006400pt;}
.ls1_c00457{letter-spacing:0.012800pt;}
.ls3_c00457{letter-spacing:0.021280pt;}
.ls9_c00457{letter-spacing:0.032000pt;}
.lsc_c00457{letter-spacing:0.048672pt;}
.lsd_c00457{letter-spacing:0.083200pt;}
.ls2_c00457{letter-spacing:26.109440pt;}
.ws3_c00457{word-spacing:-17.360000pt;}
.ws2_c00457{word-spacing:-15.987200pt;}
.ws1_c00457{word-spacing:-15.968000pt;}
.ws0_c00457{word-spacing:-9.408672pt;}
.ws5_c00457{word-spacing:-0.235136pt;}
.ws4_c00457{word-spacing:-0.213760pt;}
.wsc_c00457{word-spacing:-0.083200pt;}
.ws22_c00457{word-spacing:-0.055552pt;}
.ws2d_c00457{word-spacing:-0.004256pt;}
.ws6_c00457{word-spacing:0.000000pt;}
.ws21_c00457{word-spacing:0.006400pt;}
.wsb_c00457{word-spacing:0.153600pt;}
.ws14_c00457{word-spacing:0.326400pt;}
.ws15_c00457{word-spacing:0.345600pt;}
.wsa_c00457{word-spacing:0.659200pt;}
.ws9_c00457{word-spacing:0.678400pt;}
.ws13_c00457{word-spacing:1.292800pt;}
.ws28_c00457{word-spacing:1.568000pt;}
.ws27_c00457{word-spacing:1.708800pt;}
.ws24_c00457{word-spacing:3.513600pt;}
.ws1d_c00457{word-spacing:3.520000pt;}
.ws1f_c00457{word-spacing:3.532800pt;}
.ws20_c00457{word-spacing:3.539200pt;}
.ws1e_c00457{word-spacing:3.545600pt;}
.ws23_c00457{word-spacing:3.590400pt;}
.ws10_c00457{word-spacing:3.865600pt;}
.ws2a_c00457{word-spacing:3.872000pt;}
.ws29_c00457{word-spacing:3.910400pt;}
.ws8_c00457{word-spacing:5.408000pt;}
.wsf_c00457{word-spacing:5.465600pt;}
.ws7_c00457{word-spacing:5.484800pt;}
.ws18_c00457{word-spacing:6.438400pt;}
.ws2b_c00457{word-spacing:6.739200pt;}
.ws2c_c00457{word-spacing:6.809600pt;}
.wse_c00457{word-spacing:7.558400pt;}
.wsd_c00457{word-spacing:7.641600pt;}
.ws12_c00457{word-spacing:10.777600pt;}
.ws19_c00457{word-spacing:10.867200pt;}
.ws11_c00457{word-spacing:10.899200pt;}
.ws1a_c00457{word-spacing:10.944000pt;}
.ws1b_c00457{word-spacing:10.950400pt;}
.ws17_c00457{word-spacing:13.446400pt;}
.ws16_c00457{word-spacing:13.497600pt;}
.ws25_c00457{word-spacing:13.721600pt;}
.ws26_c00457{word-spacing:13.766400pt;}
.ws1c_c00457{word-spacing:17.331200pt;}
._1_c00457{margin-left:-1.052864pt;}
._0_c00457{width:0.935200pt;}
.fs3_c00457{font-size:37.440000pt;}
.fs5_c00457{font-size:42.560000pt;}
.fs2_c00457{font-size:48.000000pt;}
.fs0_c00457{font-size:53.440000pt;}
.fs1_c00457{font-size:64.000000pt;}
.fs4_c00457{font-size:69.440000pt;}
.y0_c00457{bottom:0.000000pt;}
.y3_c00457{bottom:51.067067pt;}
.y4_c00457{bottom:54.587067pt;}
.y25_c00457{bottom:78.433627pt;}
.y24_c00457{bottom:94.670267pt;}
.y23_c00457{bottom:110.992027pt;}
.y22_c00457{bottom:127.228667pt;}
.y21_c00457{bottom:143.465307pt;}
.y20_c00457{bottom:159.787067pt;}
.y1f_c00457{bottom:173.307200pt;}
.y1e_c00457{bottom:191.707200pt;}
.y1d_c00457{bottom:210.107067pt;}
.y1c_c00457{bottom:268.027067pt;}
.y1b_c00457{bottom:298.587067pt;}
.y1a_c00457{bottom:329.227067pt;}
.y19_c00457{bottom:359.787067pt;}
.y18_c00457{bottom:390.427067pt;}
.y17_c00457{bottom:420.987067pt;}
.y16_c00457{bottom:451.627067pt;}
.y15_c00457{bottom:491.627067pt;}
.y14_c00457{bottom:547.387067pt;}
.y13_c00457{bottom:577.947067pt;}
.y12_c00457{bottom:608.587200pt;}
.y11_c00457{bottom:639.147200pt;}
.y10_c00457{bottom:669.787200pt;}
.yf_c00457{bottom:700.347200pt;}
.ye_c00457{bottom:730.987067pt;}
.yd_c00457{bottom:761.547067pt;}
.yc_c00457{bottom:792.187067pt;}
.yb_c00457{bottom:822.747067pt;}
.ya_c00457{bottom:853.387067pt;}
.y9_c00457{bottom:883.947067pt;}
.y8_c00457{bottom:914.587067pt;}
.y7_c00457{bottom:953.147067pt;}
.y6_c00457{bottom:983.787067pt;}
.y5_c00457{bottom:1014.347067pt;}
.y2_c00457{bottom:1045.707067pt;}
.y1_c00457{bottom:1063.947067pt;}
.h2_c00457{height:42.656250pt;}
.h8_c00457{height:42.656783pt;}
.h9_c00457{height:44.388750pt;}
.h1_c00457{height:44.724687pt;}
.h3_c00457{height:50.062500pt;}
.h4_c00457{height:53.562500pt;}
.h6_c00457{height:57.893529pt;}
.h5_c00457{height:57.894062pt;}
.h7_c00457{height:72.423750pt;}
.h0_c00457{height:1122.666667pt;}
.w1_c00457{width:793.333333pt;}
.w0_c00457{width:793.626667pt;}
.x0_c00457{left:0.000000pt;}
.x2_c00457{left:113.440000pt;}
.x5_c00457{left:160.720000pt;}
.x1_c00457{left:193.280000pt;}
.x4_c00457{left:386.880000pt;}
.x3_c00457{left:396.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_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_b7e25451f80e386a85a55c92.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_90c00ec37364212d930323f3.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00458;src:url('chunks/assets/font_255fe3be82de247471238ba2.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00458;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00458{font-family:ff5_c00458;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_c00458;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff6_c00458{font-family:ff6_c00458;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_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;}
.v1_c00458{vertical-align:15.840000px;}
.v2_c00458{vertical-align:29.880000px;}
.lsd_c00458{letter-spacing:-0.151200px;}
.ls17_c00458{letter-spacing:-0.039060px;}
.lse_c00458{letter-spacing:-0.036000px;}
.ls14_c00458{letter-spacing:-0.028800px;}
.ls13_c00458{letter-spacing:-0.023436px;}
.lsf_c00458{letter-spacing:-0.021600px;}
.ls15_c00458{letter-spacing:-0.014400px;}
.ls16_c00458{letter-spacing:-0.007200px;}
.ls19_c00458{letter-spacing:-0.003888px;}
.ls12_c00458{letter-spacing:0.000000px;}
.lsc_c00458{letter-spacing:0.004788px;}
.ls7_c00458{letter-spacing:0.007200px;}
.ls8_c00458{letter-spacing:0.014364px;}
.ls6_c00458{letter-spacing:0.014400px;}
.ls18_c00458{letter-spacing:0.028800px;}
.lsb_c00458{letter-spacing:0.033516px;}
.lsa_c00458{letter-spacing:0.047880px;}
.ls0_c00458{letter-spacing:0.048096px;}
.ls10_c00458{letter-spacing:0.054756px;}
.ls2_c00458{letter-spacing:0.057600px;}
.ls11_c00458{letter-spacing:0.093600px;}
.ls4_c00458{letter-spacing:0.144000px;}
.ls9_c00458{letter-spacing:0.464040px;}
.ls3_c00458{letter-spacing:29.373120px;}
.ls5_c00458{letter-spacing:66.024000px;}
.ls1_c00458{letter-spacing:1212.120000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00458{word-spacing:-19.530000px;}
.ws0_c00458{word-spacing:-18.057600px;}
.ws3_c00458{word-spacing:-10.804752px;}
.ws1_c00458{word-spacing:-10.584756px;}
.ws17_c00458{word-spacing:-0.086400px;}
.ws9_c00458{word-spacing:-0.070308px;}
.ws12_c00458{word-spacing:-0.054684px;}
.ws20_c00458{word-spacing:-0.028728px;}
.ws22_c00458{word-spacing:-0.014364px;}
.ws5_c00458{word-spacing:0.000000px;}
.ws1e_c00458{word-spacing:0.004788px;}
.ws10_c00458{word-spacing:0.007200px;}
.ws23_c00458{word-spacing:0.014364px;}
.wsf_c00458{word-spacing:0.014400px;}
.ws21_c00458{word-spacing:0.019152px;}
.ws11_c00458{word-spacing:0.028800px;}
.ws4_c00458{word-spacing:0.042084px;}
.ws1d_c00458{word-spacing:0.064800px;}
.ws1f_c00458{word-spacing:0.363888px;}
.ws19_c00458{word-spacing:0.424800px;}
.ws18_c00458{word-spacing:0.439200px;}
.ws1b_c00458{word-spacing:0.669600px;}
.ws1c_c00458{word-spacing:0.712800px;}
.wsc_c00458{word-spacing:1.080000px;}
.wsb_c00458{word-spacing:1.144800px;}
.wsd_c00458{word-spacing:1.346400px;}
.ws6_c00458{word-spacing:2.556000px;}
.ws1a_c00458{word-spacing:3.261600px;}
.wsa_c00458{word-spacing:6.141600px;}
.ws13_c00458{word-spacing:6.868800px;}
.ws14_c00458{word-spacing:6.897600px;}
.wse_c00458{word-spacing:7.581600px;}
.ws16_c00458{word-spacing:14.644800px;}
.ws15_c00458{word-spacing:14.781600px;}
.ws7_c00458{word-spacing:15.861600px;}
.ws8_c00458{word-spacing:15.868800px;}
._0_c00458{margin-left:-1.322640px;}
._1_c00458{width:1.080000px;}
.fc0_c00458{color:rgb(0,0,0);}
.fs6_c00458{font-size:38.880000px;}
.fs3_c00458{font-size:42.120000px;}
.fs5_c00458{font-size:47.880000px;}
.fs2_c00458{font-size:54.000000px;}
.fs0_c00458{font-size:60.120000px;}
.fs1_c00458{font-size:72.000000px;}
.fs4_c00458{font-size:78.120000px;}
.y0_c00458{bottom:0.000000px;}
.y2_c00458{bottom:57.450450px;}
.y1f_c00458{bottom:88.232250px;}
.y1e_c00458{bottom:106.498470px;}
.y1d_c00458{bottom:124.864230px;}
.y1c_c00458{bottom:143.130450px;}
.y1b_c00458{bottom:158.340450px;}
.y1a_c00458{bottom:179.040450px;}
.y19_c00458{bottom:199.740450px;}
.y18_c00458{bottom:277.500450px;}
.y17_c00458{bottom:320.970450px;}
.y16_c00458{bottom:355.350450px;}
.y15_c00458{bottom:389.820450px;}
.y14_c00458{bottom:424.200450px;}
.y13_c00458{bottom:467.670450px;}
.y12_c00458{bottom:502.050450px;}
.y11_c00458{bottom:536.520450px;}
.y10_c00458{bottom:581.520450px;}
.yf_c00458{bottom:644.160450px;}
.ye_c00458{bottom:687.630450px;}
.yd_c00458{bottom:731.010450px;}
.yc_c00458{bottom:774.480450px;}
.yb_c00458{bottom:817.860450px;}
.ya_c00458{bottom:852.330450px;}
.y9_c00458{bottom:895.710450px;}
.y8_c00458{bottom:930.180450px;}
.y7_c00458{bottom:964.560450px;}
.y6_c00458{bottom:1009.650450px;}
.y5_c00458{bottom:1072.290450px;}
.y4_c00458{bottom:1106.760450px;}
.y3_c00458{bottom:1141.140450px;}
.y1_c00458{bottom:1196.850450px;}
.h7_c00458{height:47.988281px;}
.h8_c00458{height:49.937344px;}
.h1_c00458{height:50.315273px;}
.h3_c00458{height:60.257812px;}
.h4_c00458{height:65.130820px;}
.h2_c00458{height:72.160312px;}
.h6_c00458{height:75.093750px;}
.h5_c00458{height:81.476719px;}
.h0_c00458{height:1263.000000px;}
.w1_c00458{width:892.500000px;}
.w0_c00458{width:892.830000px;}
.x0_c00458{left:0.000000px;}
.x1_c00458{left:127.620000px;}
.x3_c00458{left:154.440000px;}
.x2_c00458{left:180.810000px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.v1_c00458{vertical-align:14.080000pt;}
.v2_c00458{vertical-align:26.560000pt;}
.lsd_c00458{letter-spacing:-0.134400pt;}
.ls17_c00458{letter-spacing:-0.034720pt;}
.lse_c00458{letter-spacing:-0.032000pt;}
.ls14_c00458{letter-spacing:-0.025600pt;}
.ls13_c00458{letter-spacing:-0.020832pt;}
.lsf_c00458{letter-spacing:-0.019200pt;}
.ls15_c00458{letter-spacing:-0.012800pt;}
.ls16_c00458{letter-spacing:-0.006400pt;}
.ls19_c00458{letter-spacing:-0.003456pt;}
.ls12_c00458{letter-spacing:0.000000pt;}
.lsc_c00458{letter-spacing:0.004256pt;}
.ls7_c00458{letter-spacing:0.006400pt;}
.ls8_c00458{letter-spacing:0.012768pt;}
.ls6_c00458{letter-spacing:0.012800pt;}
.ls18_c00458{letter-spacing:0.025600pt;}
.lsb_c00458{letter-spacing:0.029792pt;}
.lsa_c00458{letter-spacing:0.042560pt;}
.ls0_c00458{letter-spacing:0.042752pt;}
.ls10_c00458{letter-spacing:0.048672pt;}
.ls2_c00458{letter-spacing:0.051200pt;}
.ls11_c00458{letter-spacing:0.083200pt;}
.ls4_c00458{letter-spacing:0.128000pt;}
.ls9_c00458{letter-spacing:0.412480pt;}
.ls3_c00458{letter-spacing:26.109440pt;}
.ls5_c00458{letter-spacing:58.688000pt;}
.ls1_c00458{letter-spacing:1077.440000pt;}
.ws2_c00458{word-spacing:-17.360000pt;}
.ws0_c00458{word-spacing:-16.051200pt;}
.ws3_c00458{word-spacing:-9.604224pt;}
.ws1_c00458{word-spacing:-9.408672pt;}
.ws17_c00458{word-spacing:-0.076800pt;}
.ws9_c00458{word-spacing:-0.062496pt;}
.ws12_c00458{word-spacing:-0.048608pt;}
.ws20_c00458{word-spacing:-0.025536pt;}
.ws22_c00458{word-spacing:-0.012768pt;}
.ws5_c00458{word-spacing:0.000000pt;}
.ws1e_c00458{word-spacing:0.004256pt;}
.ws10_c00458{word-spacing:0.006400pt;}
.ws23_c00458{word-spacing:0.012768pt;}
.wsf_c00458{word-spacing:0.012800pt;}
.ws21_c00458{word-spacing:0.017024pt;}
.ws11_c00458{word-spacing:0.025600pt;}
.ws4_c00458{word-spacing:0.037408pt;}
.ws1d_c00458{word-spacing:0.057600pt;}
.ws1f_c00458{word-spacing:0.323456pt;}
.ws19_c00458{word-spacing:0.377600pt;}
.ws18_c00458{word-spacing:0.390400pt;}
.ws1b_c00458{word-spacing:0.595200pt;}
.ws1c_c00458{word-spacing:0.633600pt;}
.wsc_c00458{word-spacing:0.960000pt;}
.wsb_c00458{word-spacing:1.017600pt;}
.wsd_c00458{word-spacing:1.196800pt;}
.ws6_c00458{word-spacing:2.272000pt;}
.ws1a_c00458{word-spacing:2.899200pt;}
.wsa_c00458{word-spacing:5.459200pt;}
.ws13_c00458{word-spacing:6.105600pt;}
.ws14_c00458{word-spacing:6.131200pt;}
.wse_c00458{word-spacing:6.739200pt;}
.ws16_c00458{word-spacing:13.017600pt;}
.ws15_c00458{word-spacing:13.139200pt;}
.ws7_c00458{word-spacing:14.099200pt;}
.ws8_c00458{word-spacing:14.105600pt;}
._0_c00458{margin-left:-1.175680pt;}
._1_c00458{width:0.960000pt;}
.fs6_c00458{font-size:34.560000pt;}
.fs3_c00458{font-size:37.440000pt;}
.fs5_c00458{font-size:42.560000pt;}
.fs2_c00458{font-size:48.000000pt;}
.fs0_c00458{font-size:53.440000pt;}
.fs1_c00458{font-size:64.000000pt;}
.fs4_c00458{font-size:69.440000pt;}
.y0_c00458{bottom:0.000000pt;}
.y2_c00458{bottom:51.067067pt;}
.y1f_c00458{bottom:78.428667pt;}
.y1e_c00458{bottom:94.665307pt;}
.y1d_c00458{bottom:110.990427pt;}
.y1c_c00458{bottom:127.227067pt;}
.y1b_c00458{bottom:140.747067pt;}
.y1a_c00458{bottom:159.147067pt;}
.y19_c00458{bottom:177.547067pt;}
.y18_c00458{bottom:246.667067pt;}
.y17_c00458{bottom:285.307067pt;}
.y16_c00458{bottom:315.867067pt;}
.y15_c00458{bottom:346.507067pt;}
.y14_c00458{bottom:377.067067pt;}
.y13_c00458{bottom:415.707067pt;}
.y12_c00458{bottom:446.267067pt;}
.y11_c00458{bottom:476.907067pt;}
.y10_c00458{bottom:516.907067pt;}
.yf_c00458{bottom:572.587067pt;}
.ye_c00458{bottom:611.227067pt;}
.yd_c00458{bottom:649.787067pt;}
.yc_c00458{bottom:688.427067pt;}
.yb_c00458{bottom:726.987067pt;}
.ya_c00458{bottom:757.627067pt;}
.y9_c00458{bottom:796.187067pt;}
.y8_c00458{bottom:826.827067pt;}
.y7_c00458{bottom:857.387067pt;}
.y6_c00458{bottom:897.467067pt;}
.y5_c00458{bottom:953.147067pt;}
.y4_c00458{bottom:983.787067pt;}
.y3_c00458{bottom:1014.347067pt;}
.y1_c00458{bottom:1063.867067pt;}
.h7_c00458{height:42.656250pt;}
.h8_c00458{height:44.388750pt;}
.h1_c00458{height:44.724687pt;}
.h3_c00458{height:53.562500pt;}
.h4_c00458{height:57.894062pt;}
.h2_c00458{height:64.142500pt;}
.h6_c00458{height:66.750000pt;}
.h5_c00458{height:72.423750pt;}
.h0_c00458{height:1122.666667pt;}
.w1_c00458{width:793.333333pt;}
.w0_c00458{width:793.626667pt;}
.x0_c00458{left:0.000000pt;}
.x1_c00458{left:113.440000pt;}
.x3_c00458{left:137.280000pt;}
.x2_c00458{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_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_966998f63f190530cb6dfa89.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_24f8cd032882d8d186c5759b.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00459;src:url('chunks/assets/font_bbfe891aa1cc9f4ca8ace8dc.woff2')format("woff");}.ff4_c00459{font-family:ff4_c00459;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00459;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00459{font-family:ff5_c00459;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_c00459;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff6_c00459{font-family:ff6_c00459;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_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;}
.v1_c00459{vertical-align:29.880000px;}
.lsc_c00459{letter-spacing:-0.151200px;}
.lse_c00459{letter-spacing:-0.036000px;}
.ls15_c00459{letter-spacing:-0.031248px;}
.ls9_c00459{letter-spacing:-0.030060px;}
.ls13_c00459{letter-spacing:-0.028800px;}
.ls14_c00459{letter-spacing:-0.021600px;}
.lsd_c00459{letter-spacing:-0.015624px;}
.ls11_c00459{letter-spacing:-0.014400px;}
.ls12_c00459{letter-spacing:-0.007200px;}
.lsa_c00459{letter-spacing:-0.006012px;}
.ls16_c00459{letter-spacing:-0.003888px;}
.lsb_c00459{letter-spacing:0.000000px;}
.ls8_c00459{letter-spacing:0.004788px;}
.ls4_c00459{letter-spacing:0.007200px;}
.ls5_c00459{letter-spacing:0.014364px;}
.ls2_c00459{letter-spacing:0.014400px;}
.ls1_c00459{letter-spacing:0.021600px;}
.ls3_c00459{letter-spacing:0.028800px;}
.ls7_c00459{letter-spacing:0.047880px;}
.lsf_c00459{letter-spacing:0.054756px;}
.ls10_c00459{letter-spacing:0.093600px;}
.ls6_c00459{letter-spacing:0.464040px;}
.ls0_c00459{letter-spacing:29.373120px;}
.sc__c00459{text-shadow:none;}
.sc0_c00459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00459{-webkit-text-stroke:0px transparent;}
.sc0_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00459{word-spacing:-19.530000px;}
.ws2_c00459{word-spacing:-18.007200px;}
.ws3_c00459{word-spacing:-10.804752px;}
.ws1_c00459{word-spacing:-10.584756px;}
.ws5_c00459{word-spacing:-0.264528px;}
.ws4_c00459{word-spacing:-0.240480px;}
.ws7_c00459{word-spacing:-0.109368px;}
.ws13_c00459{word-spacing:-0.093600px;}
.ws1e_c00459{word-spacing:-0.062496px;}
.ws26_c00459{word-spacing:-0.028728px;}
.ws6_c00459{word-spacing:0.000000px;}
.ws24_c00459{word-spacing:0.004788px;}
.ws1d_c00459{word-spacing:0.007200px;}
.ws27_c00459{word-spacing:0.014364px;}
.ws23_c00459{word-spacing:0.043200px;}
.ws17_c00459{word-spacing:0.050400px;}
.ws12_c00459{word-spacing:0.345600px;}
.ws25_c00459{word-spacing:0.363888px;}
.ws1c_c00459{word-spacing:1.771200px;}
.ws16_c00459{word-spacing:1.828800px;}
.ws1b_c00459{word-spacing:1.843200px;}
.ws19_c00459{word-spacing:2.210400px;}
.ws18_c00459{word-spacing:2.318400px;}
.ws14_c00459{word-spacing:2.462400px;}
.ws15_c00459{word-spacing:2.491200px;}
.wsb_c00459{word-spacing:2.505600px;}
.wsc_c00459{word-spacing:2.520000px;}
.ws21_c00459{word-spacing:2.541600px;}
.ws8_c00459{word-spacing:2.916000px;}
.ws9_c00459{word-spacing:3.600000px;}
.wsa_c00459{word-spacing:3.628800px;}
.ws1f_c00459{word-spacing:6.847200px;}
.ws20_c00459{word-spacing:6.948000px;}
.ws1a_c00459{word-spacing:7.963200px;}
.wse_c00459{word-spacing:9.014400px;}
.wsd_c00459{word-spacing:9.057600px;}
.wsf_c00459{word-spacing:9.734400px;}
.ws11_c00459{word-spacing:11.592000px;}
.ws10_c00459{word-spacing:11.642400px;}
.ws22_c00459{word-spacing:18.741600px;}
._1_c00459{margin-left:-1.249920px;}
._0_c00459{width:1.052100px;}
.fc0_c00459{color:rgb(0,0,0);}
.fs6_c00459{font-size:38.880000px;}
.fs4_c00459{font-size:42.120000px;}
.fs5_c00459{font-size:47.880000px;}
.fs2_c00459{font-size:54.000000px;}
.fs0_c00459{font-size:60.120000px;}
.fs1_c00459{font-size:72.000000px;}
.fs3_c00459{font-size:78.120000px;}
.y0_c00459{bottom:0.000000px;}
.y3_c00459{bottom:57.450450px;}
.y4_c00459{bottom:61.410450px;}
.y23_c00459{bottom:88.234230px;}
.y22_c00459{bottom:106.498470px;}
.y21_c00459{bottom:124.864230px;}
.y20_c00459{bottom:143.130450px;}
.y1f_c00459{bottom:158.340450px;}
.y1e_c00459{bottom:179.040450px;}
.y1d_c00459{bottom:199.740450px;}
.y1c_c00459{bottom:253.650450px;}
.y1b_c00459{bottom:297.120450px;}
.y1a_c00459{bottom:340.500450px;}
.y19_c00459{bottom:374.970450px;}
.y18_c00459{bottom:409.350450px;}
.y17_c00459{bottom:443.820450px;}
.y16_c00459{bottom:488.820450px;}
.y15_c00459{bottom:551.460450px;}
.y14_c00459{bottom:585.930450px;}
.y13_c00459{bottom:620.310450px;}
.y12_c00459{bottom:654.780450px;}
.y11_c00459{bottom:698.160450px;}
.y10_c00459{bottom:732.630450px;}
.yf_c00459{bottom:767.010450px;}
.ye_c00459{bottom:810.480450px;}
.yd_c00459{bottom:844.860450px;}
.yc_c00459{bottom:879.330450px;}
.yb_c00459{bottom:913.710450px;}
.ya_c00459{bottom:948.180450px;}
.y9_c00459{bottom:991.560450px;}
.y8_c00459{bottom:1026.030450px;}
.y7_c00459{bottom:1060.410450px;}
.y6_c00459{bottom:1094.880450px;}
.y5_c00459{bottom:1139.880450px;}
.y2_c00459{bottom:1176.420450px;}
.y1_c00459{bottom:1196.940450px;}
.h2_c00459{height:47.988281px;}
.h7_c00459{height:49.937344px;}
.h8_c00459{height:49.945264px;}
.h1_c00459{height:50.315273px;}
.h3_c00459{height:56.320312px;}
.h5_c00459{height:60.257812px;}
.h6_c00459{height:65.130820px;}
.h4_c00459{height:81.476719px;}
.h0_c00459{height:1263.000000px;}
.w1_c00459{width:892.500000px;}
.w0_c00459{width:892.830000px;}
.x0_c00459{left:0.000000px;}
.x2_c00459{left:127.620000px;}
.x5_c00459{left:180.810000px;}
.x1_c00459{left:217.440000px;}
.x4_c00459{left:435.240000px;}
.x3_c00459{left:446.490000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.v1_c00459{vertical-align:26.560000pt;}
.lsc_c00459{letter-spacing:-0.134400pt;}
.lse_c00459{letter-spacing:-0.032000pt;}
.ls15_c00459{letter-spacing:-0.027776pt;}
.ls9_c00459{letter-spacing:-0.026720pt;}
.ls13_c00459{letter-spacing:-0.025600pt;}
.ls14_c00459{letter-spacing:-0.019200pt;}
.lsd_c00459{letter-spacing:-0.013888pt;}
.ls11_c00459{letter-spacing:-0.012800pt;}
.ls12_c00459{letter-spacing:-0.006400pt;}
.lsa_c00459{letter-spacing:-0.005344pt;}
.ls16_c00459{letter-spacing:-0.003456pt;}
.lsb_c00459{letter-spacing:0.000000pt;}
.ls8_c00459{letter-spacing:0.004256pt;}
.ls4_c00459{letter-spacing:0.006400pt;}
.ls5_c00459{letter-spacing:0.012768pt;}
.ls2_c00459{letter-spacing:0.012800pt;}
.ls1_c00459{letter-spacing:0.019200pt;}
.ls3_c00459{letter-spacing:0.025600pt;}
.ls7_c00459{letter-spacing:0.042560pt;}
.lsf_c00459{letter-spacing:0.048672pt;}
.ls10_c00459{letter-spacing:0.083200pt;}
.ls6_c00459{letter-spacing:0.412480pt;}
.ls0_c00459{letter-spacing:26.109440pt;}
.ws0_c00459{word-spacing:-17.360000pt;}
.ws2_c00459{word-spacing:-16.006400pt;}
.ws3_c00459{word-spacing:-9.604224pt;}
.ws1_c00459{word-spacing:-9.408672pt;}
.ws5_c00459{word-spacing:-0.235136pt;}
.ws4_c00459{word-spacing:-0.213760pt;}
.ws7_c00459{word-spacing:-0.097216pt;}
.ws13_c00459{word-spacing:-0.083200pt;}
.ws1e_c00459{word-spacing:-0.055552pt;}
.ws26_c00459{word-spacing:-0.025536pt;}
.ws6_c00459{word-spacing:0.000000pt;}
.ws24_c00459{word-spacing:0.004256pt;}
.ws1d_c00459{word-spacing:0.006400pt;}
.ws27_c00459{word-spacing:0.012768pt;}
.ws23_c00459{word-spacing:0.038400pt;}
.ws17_c00459{word-spacing:0.044800pt;}
.ws12_c00459{word-spacing:0.307200pt;}
.ws25_c00459{word-spacing:0.323456pt;}
.ws1c_c00459{word-spacing:1.574400pt;}
.ws16_c00459{word-spacing:1.625600pt;}
.ws1b_c00459{word-spacing:1.638400pt;}
.ws19_c00459{word-spacing:1.964800pt;}
.ws18_c00459{word-spacing:2.060800pt;}
.ws14_c00459{word-spacing:2.188800pt;}
.ws15_c00459{word-spacing:2.214400pt;}
.wsb_c00459{word-spacing:2.227200pt;}
.wsc_c00459{word-spacing:2.240000pt;}
.ws21_c00459{word-spacing:2.259200pt;}
.ws8_c00459{word-spacing:2.592000pt;}
.ws9_c00459{word-spacing:3.200000pt;}
.wsa_c00459{word-spacing:3.225600pt;}
.ws1f_c00459{word-spacing:6.086400pt;}
.ws20_c00459{word-spacing:6.176000pt;}
.ws1a_c00459{word-spacing:7.078400pt;}
.wse_c00459{word-spacing:8.012800pt;}
.wsd_c00459{word-spacing:8.051200pt;}
.wsf_c00459{word-spacing:8.652800pt;}
.ws11_c00459{word-spacing:10.304000pt;}
.ws10_c00459{word-spacing:10.348800pt;}
.ws22_c00459{word-spacing:16.659200pt;}
._1_c00459{margin-left:-1.111040pt;}
._0_c00459{width:0.935200pt;}
.fs6_c00459{font-size:34.560000pt;}
.fs4_c00459{font-size:37.440000pt;}
.fs5_c00459{font-size:42.560000pt;}
.fs2_c00459{font-size:48.000000pt;}
.fs0_c00459{font-size:53.440000pt;}
.fs1_c00459{font-size:64.000000pt;}
.fs3_c00459{font-size:69.440000pt;}
.y0_c00459{bottom:0.000000pt;}
.y3_c00459{bottom:51.067067pt;}
.y4_c00459{bottom:54.587067pt;}
.y23_c00459{bottom:78.430427pt;}
.y22_c00459{bottom:94.665307pt;}
.y21_c00459{bottom:110.990427pt;}
.y20_c00459{bottom:127.227067pt;}
.y1f_c00459{bottom:140.747067pt;}
.y1e_c00459{bottom:159.147067pt;}
.y1d_c00459{bottom:177.547067pt;}
.y1c_c00459{bottom:225.467067pt;}
.y1b_c00459{bottom:264.107067pt;}
.y1a_c00459{bottom:302.667067pt;}
.y19_c00459{bottom:333.307067pt;}
.y18_c00459{bottom:363.867067pt;}
.y17_c00459{bottom:394.507067pt;}
.y16_c00459{bottom:434.507067pt;}
.y15_c00459{bottom:490.187067pt;}
.y14_c00459{bottom:520.827067pt;}
.y13_c00459{bottom:551.387067pt;}
.y12_c00459{bottom:582.027067pt;}
.y11_c00459{bottom:620.587067pt;}
.y10_c00459{bottom:651.227067pt;}
.yf_c00459{bottom:681.787067pt;}
.ye_c00459{bottom:720.427067pt;}
.yd_c00459{bottom:750.987067pt;}
.yc_c00459{bottom:781.627067pt;}
.yb_c00459{bottom:812.187067pt;}
.ya_c00459{bottom:842.827067pt;}
.y9_c00459{bottom:881.387067pt;}
.y8_c00459{bottom:912.027067pt;}
.y7_c00459{bottom:942.587067pt;}
.y6_c00459{bottom:973.227067pt;}
.y5_c00459{bottom:1013.227067pt;}
.y2_c00459{bottom:1045.707067pt;}
.y1_c00459{bottom:1063.947067pt;}
.h2_c00459{height:42.656250pt;}
.h7_c00459{height:44.388750pt;}
.h8_c00459{height:44.395790pt;}
.h1_c00459{height:44.724687pt;}
.h3_c00459{height:50.062500pt;}
.h5_c00459{height:53.562500pt;}
.h6_c00459{height:57.894062pt;}
.h4_c00459{height:72.423750pt;}
.h0_c00459{height:1122.666667pt;}
.w1_c00459{width:793.333333pt;}
.w0_c00459{width:793.626667pt;}
.x0_c00459{left:0.000000pt;}
.x2_c00459{left:113.440000pt;}
.x5_c00459{left:160.720000pt;}
.x1_c00459{left:193.280000pt;}
.x4_c00459{left:386.880000pt;}
.x3_c00459{left:396.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_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_e3c091d6e7b282fc0bfa426f.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_baa7401e2b29439c0ac53ee5.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00460;src:url('chunks/assets/font_15c276f0f9a099ef99fe2853.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00460;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00460{font-family:ff5_c00460;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_c00460;src:url('chunks/assets/font_e0fa0354b58a4d4392bfd9de.woff2')format("woff");}.ff6_c00460{font-family:ff6_c00460;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_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;}
.v1_c00460{vertical-align:15.840000px;}
.v2_c00460{vertical-align:29.880000px;}
.ls17_c00460{letter-spacing:-0.151200px;}
.ls18_c00460{letter-spacing:-0.075492px;}
.ls21_c00460{letter-spacing:-0.043200px;}
.ls22_c00460{letter-spacing:-0.036000px;}
.ls2b_c00460{letter-spacing:-0.033516px;}
.ls20_c00460{letter-spacing:-0.028800px;}
.ls19_c00460{letter-spacing:-0.021600px;}
.ls2a_c00460{letter-spacing:-0.019152px;}
.ls1c_c00460{letter-spacing:-0.014400px;}
.ls25_c00460{letter-spacing:-0.009576px;}
.ls27_c00460{letter-spacing:-0.007776px;}
.ls1b_c00460{letter-spacing:-0.007200px;}
.ls29_c00460{letter-spacing:-0.004788px;}
.ls23_c00460{letter-spacing:-0.003888px;}
.ls1e_c00460{letter-spacing:0.000000px;}
.ls4_c00460{letter-spacing:0.007200px;}
.lsf_c00460{letter-spacing:0.009576px;}
.ls8_c00460{letter-spacing:0.014364px;}
.ls16_c00460{letter-spacing:0.019152px;}
.ls1d_c00460{letter-spacing:0.021600px;}
.lsa_c00460{letter-spacing:0.028728px;}
.ls5_c00460{letter-spacing:0.028800px;}
.ls7_c00460{letter-spacing:0.033516px;}
.lsb_c00460{letter-spacing:0.038304px;}
.ls1f_c00460{letter-spacing:0.043200px;}
.ls0_c00460{letter-spacing:0.048096px;}
.ls3_c00460{letter-spacing:0.050328px;}
.ls1a_c00460{letter-spacing:0.054756px;}
.ls13_c00460{letter-spacing:0.057456px;}
.ls28_c00460{letter-spacing:0.071820px;}
.ls15_c00460{letter-spacing:0.075960px;}
.ls6_c00460{letter-spacing:0.093600px;}
.ls12_c00460{letter-spacing:0.104040px;}
.lse_c00460{letter-spacing:0.255960px;}
.ls11_c00460{letter-spacing:0.350640px;}
.ls26_c00460{letter-spacing:0.373464px;}
.ls24_c00460{letter-spacing:0.378252px;}
.ls9_c00460{letter-spacing:0.435960px;}
.ls10_c00460{letter-spacing:0.464040px;}
.lsd_c00460{letter-spacing:3.231360px;}
.lsc_c00460{letter-spacing:3.591360px;}
.ls14_c00460{letter-spacing:5.391360px;}
.ls2_c00460{letter-spacing:17.363160px;}
.ls1_c00460{letter-spacing:1212.120000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00460{word-spacing:-20.894508px;}
.ws2_c00460{word-spacing:-18.093600px;}
.ws5_c00460{word-spacing:-13.684104px;}
.ws7_c00460{word-spacing:-13.382460px;}
.ws4_c00460{word-spacing:-13.348944px;}
.ws6_c00460{word-spacing:-13.320216px;}
.ws3_c00460{word-spacing:-10.804752px;}
.ws8_c00460{word-spacing:-10.800864px;}
.ws1_c00460{word-spacing:-10.584756px;}
.wsb_c00460{word-spacing:-0.142596px;}
.ws39_c00460{word-spacing:-0.019152px;}
.ws2f_c00460{word-spacing:-0.014364px;}
.wsa_c00460{word-spacing:0.000000px;}
.ws2d_c00460{word-spacing:0.014400px;}
.ws3a_c00460{word-spacing:0.023940px;}
.ws9_c00460{word-spacing:0.042084px;}
.ws21_c00460{word-spacing:0.057600px;}
.ws2e_c00460{word-spacing:0.122400px;}
.ws25_c00460{word-spacing:0.338400px;}
.ws24_c00460{word-spacing:0.367200px;}
.ws2c_c00460{word-spacing:0.727200px;}
.wsd_c00460{word-spacing:0.741600px;}
.wsc_c00460{word-spacing:0.799200px;}
.ws2b_c00460{word-spacing:0.842400px;}
.ws19_c00460{word-spacing:1.137600px;}
.ws18_c00460{word-spacing:1.144800px;}
.ws1c_c00460{word-spacing:1.267200px;}
.ws1b_c00460{word-spacing:1.389600px;}
.ws1a_c00460{word-spacing:1.461600px;}
.ws33_c00460{word-spacing:3.222324px;}
.ws34_c00460{word-spacing:3.260628px;}
.ws32_c00460{word-spacing:3.265416px;}
.ws31_c00460{word-spacing:3.591000px;}
.ws2a_c00460{word-spacing:3.592800px;}
.ws30_c00460{word-spacing:3.605364px;}
.ws29_c00460{word-spacing:3.672000px;}
.ws28_c00460{word-spacing:4.694400px;}
.ws17_c00460{word-spacing:5.018400px;}
.ws16_c00460{word-spacing:5.032800px;}
.ws20_c00460{word-spacing:5.097600px;}
.ws36_c00460{word-spacing:5.357772px;}
.ws38_c00460{word-spacing:5.376924px;}
.ws1f_c00460{word-spacing:5.428800px;}
.ws35_c00460{word-spacing:5.434380px;}
.ws37_c00460{word-spacing:5.812632px;}
.ws11_c00460{word-spacing:7.876800px;}
.ws12_c00460{word-spacing:7.934400px;}
.ws27_c00460{word-spacing:9.720000px;}
.ws26_c00460{word-spacing:9.727200px;}
.ws22_c00460{word-spacing:12.931200px;}
.ws23_c00460{word-spacing:12.974400px;}
.wse_c00460{word-spacing:13.312800px;}
.wsf_c00460{word-spacing:13.413600px;}
.ws10_c00460{word-spacing:13.550400px;}
.ws1e_c00460{word-spacing:15.854400px;}
.ws1d_c00460{word-spacing:15.890400px;}
.ws13_c00460{word-spacing:17.251200px;}
.ws14_c00460{word-spacing:17.308800px;}
.ws15_c00460{word-spacing:34.221600px;}
._0_c00460{margin-left:-1.322640px;}
._1_c00460{width:1.152000px;}
._2_c00460{width:3.583872px;}
._3_c00460{width:5.547708px;}
.fc0_c00460{color:rgb(0,0,0);}
.fs7_c00460{font-size:38.880000px;}
.fs4_c00460{font-size:42.120000px;}
.fs6_c00460{font-size:47.880000px;}
.fs2_c00460{font-size:54.000000px;}
.fs0_c00460{font-size:60.120000px;}
.fs5_c00460{font-size:63.000000px;}
.fs1_c00460{font-size:72.000000px;}
.fs3_c00460{font-size:83.880000px;}
.y0_c00460{bottom:0.000000px;}
.y2_c00460{bottom:57.450450px;}
.y21_c00460{bottom:88.234950px;}
.y20_c00460{bottom:101.999190px;}
.y1f_c00460{bottom:115.864950px;}
.y1e_c00460{bottom:129.632250px;}
.y1d_c00460{bottom:147.898470px;}
.y1c_c00460{bottom:166.260450px;}
.y1b_c00460{bottom:181.470600px;}
.y1a_c00460{bottom:202.170600px;}
.y19_c00460{bottom:222.870450px;}
.y18_c00460{bottom:385.500450px;}
.y17_c00460{bottom:419.970450px;}
.y16_c00460{bottom:454.350450px;}
.y15_c00460{bottom:488.820450px;}
.y14_c00460{bottom:523.200450px;}
.y13_c00460{bottom:557.670450px;}
.y12_c00460{bottom:592.050450px;}
.y11_c00460{bottom:626.520450px;}
.y10_c00460{bottom:669.900450px;}
.yf_c00460{bottom:704.370450px;}
.ye_c00460{bottom:738.750450px;}
.yd_c00460{bottom:773.220450px;}
.yc_c00460{bottom:816.600450px;}
.yb_c00460{bottom:851.070450px;}
.ya_c00460{bottom:885.450450px;}
.y9_c00460{bottom:919.920450px;}
.y8_c00460{bottom:954.300450px;}
.y7_c00460{bottom:988.770450px;}
.y6_c00460{bottom:1023.150450px;}
.y5_c00460{bottom:1057.620450px;}
.y4_c00460{bottom:1092.000450px;}
.y3_c00460{bottom:1138.530450px;}
.y1_c00460{bottom:1196.850450px;}
.h7_c00460{height:47.988281px;}
.h6_c00460{height:47.988881px;}
.h8_c00460{height:49.937344px;}
.h9_c00460{height:49.942384px;}
.h1_c00460{height:50.315273px;}
.h4_c00460{height:60.257812px;}
.h5_c00460{height:65.130820px;}
.h2_c00460{height:72.160312px;}
.h3_c00460{height:87.484219px;}
.h0_c00460{height:1263.000000px;}
.w1_c00460{width:892.500000px;}
.w0_c00460{width:892.830000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:127.620000px;}
.x3_c00460{left:141.111810px;}
.x2_c00460{left:180.810000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.v1_c00460{vertical-align:14.080000pt;}
.v2_c00460{vertical-align:26.560000pt;}
.ls17_c00460{letter-spacing:-0.134400pt;}
.ls18_c00460{letter-spacing:-0.067104pt;}
.ls21_c00460{letter-spacing:-0.038400pt;}
.ls22_c00460{letter-spacing:-0.032000pt;}
.ls2b_c00460{letter-spacing:-0.029792pt;}
.ls20_c00460{letter-spacing:-0.025600pt;}
.ls19_c00460{letter-spacing:-0.019200pt;}
.ls2a_c00460{letter-spacing:-0.017024pt;}
.ls1c_c00460{letter-spacing:-0.012800pt;}
.ls25_c00460{letter-spacing:-0.008512pt;}
.ls27_c00460{letter-spacing:-0.006912pt;}
.ls1b_c00460{letter-spacing:-0.006400pt;}
.ls29_c00460{letter-spacing:-0.004256pt;}
.ls23_c00460{letter-spacing:-0.003456pt;}
.ls1e_c00460{letter-spacing:0.000000pt;}
.ls4_c00460{letter-spacing:0.006400pt;}
.lsf_c00460{letter-spacing:0.008512pt;}
.ls8_c00460{letter-spacing:0.012768pt;}
.ls16_c00460{letter-spacing:0.017024pt;}
.ls1d_c00460{letter-spacing:0.019200pt;}
.lsa_c00460{letter-spacing:0.025536pt;}
.ls5_c00460{letter-spacing:0.025600pt;}
.ls7_c00460{letter-spacing:0.029792pt;}
.lsb_c00460{letter-spacing:0.034048pt;}
.ls1f_c00460{letter-spacing:0.038400pt;}
.ls0_c00460{letter-spacing:0.042752pt;}
.ls3_c00460{letter-spacing:0.044736pt;}
.ls1a_c00460{letter-spacing:0.048672pt;}
.ls13_c00460{letter-spacing:0.051072pt;}
.ls28_c00460{letter-spacing:0.063840pt;}
.ls15_c00460{letter-spacing:0.067520pt;}
.ls6_c00460{letter-spacing:0.083200pt;}
.ls12_c00460{letter-spacing:0.092480pt;}
.lse_c00460{letter-spacing:0.227520pt;}
.ls11_c00460{letter-spacing:0.311680pt;}
.ls26_c00460{letter-spacing:0.331968pt;}
.ls24_c00460{letter-spacing:0.336224pt;}
.ls9_c00460{letter-spacing:0.387520pt;}
.ls10_c00460{letter-spacing:0.412480pt;}
.lsd_c00460{letter-spacing:2.872320pt;}
.lsc_c00460{letter-spacing:3.192320pt;}
.ls14_c00460{letter-spacing:4.792320pt;}
.ls2_c00460{letter-spacing:15.433920pt;}
.ls1_c00460{letter-spacing:1077.440000pt;}
.ws0_c00460{word-spacing:-18.572896pt;}
.ws2_c00460{word-spacing:-16.083200pt;}
.ws5_c00460{word-spacing:-12.163648pt;}
.ws7_c00460{word-spacing:-11.895520pt;}
.ws4_c00460{word-spacing:-11.865728pt;}
.ws6_c00460{word-spacing:-11.840192pt;}
.ws3_c00460{word-spacing:-9.604224pt;}
.ws8_c00460{word-spacing:-9.600768pt;}
.ws1_c00460{word-spacing:-9.408672pt;}
.wsb_c00460{word-spacing:-0.126752pt;}
.ws39_c00460{word-spacing:-0.017024pt;}
.ws2f_c00460{word-spacing:-0.012768pt;}
.wsa_c00460{word-spacing:0.000000pt;}
.ws2d_c00460{word-spacing:0.012800pt;}
.ws3a_c00460{word-spacing:0.021280pt;}
.ws9_c00460{word-spacing:0.037408pt;}
.ws21_c00460{word-spacing:0.051200pt;}
.ws2e_c00460{word-spacing:0.108800pt;}
.ws25_c00460{word-spacing:0.300800pt;}
.ws24_c00460{word-spacing:0.326400pt;}
.ws2c_c00460{word-spacing:0.646400pt;}
.wsd_c00460{word-spacing:0.659200pt;}
.wsc_c00460{word-spacing:0.710400pt;}
.ws2b_c00460{word-spacing:0.748800pt;}
.ws19_c00460{word-spacing:1.011200pt;}
.ws18_c00460{word-spacing:1.017600pt;}
.ws1c_c00460{word-spacing:1.126400pt;}
.ws1b_c00460{word-spacing:1.235200pt;}
.ws1a_c00460{word-spacing:1.299200pt;}
.ws33_c00460{word-spacing:2.864288pt;}
.ws34_c00460{word-spacing:2.898336pt;}
.ws32_c00460{word-spacing:2.902592pt;}
.ws31_c00460{word-spacing:3.192000pt;}
.ws2a_c00460{word-spacing:3.193600pt;}
.ws30_c00460{word-spacing:3.204768pt;}
.ws29_c00460{word-spacing:3.264000pt;}
.ws28_c00460{word-spacing:4.172800pt;}
.ws17_c00460{word-spacing:4.460800pt;}
.ws16_c00460{word-spacing:4.473600pt;}
.ws20_c00460{word-spacing:4.531200pt;}
.ws36_c00460{word-spacing:4.762464pt;}
.ws38_c00460{word-spacing:4.779488pt;}
.ws1f_c00460{word-spacing:4.825600pt;}
.ws35_c00460{word-spacing:4.830560pt;}
.ws37_c00460{word-spacing:5.166784pt;}
.ws11_c00460{word-spacing:7.001600pt;}
.ws12_c00460{word-spacing:7.052800pt;}
.ws27_c00460{word-spacing:8.640000pt;}
.ws26_c00460{word-spacing:8.646400pt;}
.ws22_c00460{word-spacing:11.494400pt;}
.ws23_c00460{word-spacing:11.532800pt;}
.wse_c00460{word-spacing:11.833600pt;}
.wsf_c00460{word-spacing:11.923200pt;}
.ws10_c00460{word-spacing:12.044800pt;}
.ws1e_c00460{word-spacing:14.092800pt;}
.ws1d_c00460{word-spacing:14.124800pt;}
.ws13_c00460{word-spacing:15.334400pt;}
.ws14_c00460{word-spacing:15.385600pt;}
.ws15_c00460{word-spacing:30.419200pt;}
._0_c00460{margin-left:-1.175680pt;}
._1_c00460{width:1.024000pt;}
._2_c00460{width:3.185664pt;}
._3_c00460{width:4.931296pt;}
.fs7_c00460{font-size:34.560000pt;}
.fs4_c00460{font-size:37.440000pt;}
.fs6_c00460{font-size:42.560000pt;}
.fs2_c00460{font-size:48.000000pt;}
.fs0_c00460{font-size:53.440000pt;}
.fs5_c00460{font-size:56.000000pt;}
.fs1_c00460{font-size:64.000000pt;}
.fs3_c00460{font-size:74.560000pt;}
.y0_c00460{bottom:0.000000pt;}
.y2_c00460{bottom:51.067067pt;}
.y21_c00460{bottom:78.431067pt;}
.y20_c00460{bottom:90.665947pt;}
.y1f_c00460{bottom:102.991067pt;}
.y1e_c00460{bottom:115.228667pt;}
.y1d_c00460{bottom:131.465307pt;}
.y1c_c00460{bottom:147.787067pt;}
.y1b_c00460{bottom:161.307200pt;}
.y1a_c00460{bottom:179.707200pt;}
.y19_c00460{bottom:198.107067pt;}
.y18_c00460{bottom:342.667067pt;}
.y17_c00460{bottom:373.307067pt;}
.y16_c00460{bottom:403.867067pt;}
.y15_c00460{bottom:434.507067pt;}
.y14_c00460{bottom:465.067067pt;}
.y13_c00460{bottom:495.707067pt;}
.y12_c00460{bottom:526.267067pt;}
.y11_c00460{bottom:556.907067pt;}
.y10_c00460{bottom:595.467067pt;}
.yf_c00460{bottom:626.107067pt;}
.ye_c00460{bottom:656.667067pt;}
.yd_c00460{bottom:687.307067pt;}
.yc_c00460{bottom:725.867067pt;}
.yb_c00460{bottom:756.507067pt;}
.ya_c00460{bottom:787.067067pt;}
.y9_c00460{bottom:817.707067pt;}
.y8_c00460{bottom:848.267067pt;}
.y7_c00460{bottom:878.907067pt;}
.y6_c00460{bottom:909.467067pt;}
.y5_c00460{bottom:940.107067pt;}
.y4_c00460{bottom:970.667067pt;}
.y3_c00460{bottom:1012.027067pt;}
.y1_c00460{bottom:1063.867067pt;}
.h7_c00460{height:42.656250pt;}
.h6_c00460{height:42.656783pt;}
.h8_c00460{height:44.388750pt;}
.h9_c00460{height:44.393230pt;}
.h1_c00460{height:44.724687pt;}
.h4_c00460{height:53.562500pt;}
.h5_c00460{height:57.894062pt;}
.h2_c00460{height:64.142500pt;}
.h3_c00460{height:77.763750pt;}
.h0_c00460{height:1122.666667pt;}
.w1_c00460{width:793.333333pt;}
.w0_c00460{width:793.626667pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:113.440000pt;}
.x3_c00460{left:125.432720pt;}
.x2_c00460{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_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_1892343835780cb22b15ea7e.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00461;src:url('chunks/assets/font_3efcaa6d60d2709fb276771c.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00461;src:url('chunks/assets/font_5d7168993256e555469cd227.woff2')format("woff");}.ff4_c00461{font-family:ff4_c00461;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00461;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00461{font-family:ff5_c00461;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_c00461;src:url('chunks/assets/font_47764c9b21789bec7be1f543.woff2')format("woff");}.ff6_c00461{font-family:ff6_c00461;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_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);}
.v2_c00461{vertical-align:-29.880000px;}
.v0_c00461{vertical-align:0.000000px;}
.v1_c00461{vertical-align:29.880000px;}
.ls21_c00461{letter-spacing:-0.151200px;}
.ls30_c00461{letter-spacing:-0.086184px;}
.ls2a_c00461{letter-spacing:-0.036000px;}
.ls23_c00461{letter-spacing:-0.031248px;}
.ls1e_c00461{letter-spacing:-0.030060px;}
.ls24_c00461{letter-spacing:-0.028800px;}
.ls27_c00461{letter-spacing:-0.021600px;}
.ls25_c00461{letter-spacing:-0.014400px;}
.ls2e_c00461{letter-spacing:-0.014364px;}
.ls22_c00461{letter-spacing:-0.007812px;}
.ls2b_c00461{letter-spacing:-0.007776px;}
.ls26_c00461{letter-spacing:-0.007200px;}
.ls1f_c00461{letter-spacing:-0.006012px;}
.ls35_c00461{letter-spacing:-0.004788px;}
.ls2c_c00461{letter-spacing:-0.003888px;}
.ls20_c00461{letter-spacing:0.000000px;}
.ls2_c00461{letter-spacing:0.007200px;}
.ls11_c00461{letter-spacing:0.009360px;}
.ls17_c00461{letter-spacing:0.009576px;}
.ls6_c00461{letter-spacing:0.014364px;}
.ls5_c00461{letter-spacing:0.014400px;}
.ls13_c00461{letter-spacing:0.018720px;}
.lsc_c00461{letter-spacing:0.019152px;}
.ls4_c00461{letter-spacing:0.021600px;}
.ls10_c00461{letter-spacing:0.028728px;}
.ls3_c00461{letter-spacing:0.028800px;}
.ls1a_c00461{letter-spacing:0.033516px;}
.lsb_c00461{letter-spacing:0.038304px;}
.ls9_c00461{letter-spacing:0.043092px;}
.ls1_c00461{letter-spacing:0.043200px;}
.ls12_c00461{letter-spacing:0.047880px;}
.ls8_c00461{letter-spacing:0.052668px;}
.ls28_c00461{letter-spacing:0.054756px;}
.ls19_c00461{letter-spacing:0.071820px;}
.ls1c_c00461{letter-spacing:0.075960px;}
.ls33_c00461{letter-spacing:0.076608px;}
.lsf_c00461{letter-spacing:0.081396px;}
.ls29_c00461{letter-spacing:0.093600px;}
.lse_c00461{letter-spacing:0.100548px;}
.ls16_c00461{letter-spacing:0.104040px;}
.ls1d_c00461{letter-spacing:0.162792px;}
.ls31_c00461{letter-spacing:0.181944px;}
.ls2d_c00461{letter-spacing:0.346032px;}
.lsd_c00461{letter-spacing:0.350640px;}
.ls34_c00461{letter-spacing:0.353808px;}
.ls2f_c00461{letter-spacing:0.361584px;}
.lsa_c00461{letter-spacing:0.373464px;}
.ls15_c00461{letter-spacing:0.378252px;}
.ls7_c00461{letter-spacing:0.378720px;}
.ls18_c00461{letter-spacing:0.383040px;}
.ls14_c00461{letter-spacing:7.191360px;}
.ls32_c00461{letter-spacing:7.215516px;}
.ls1b_c00461{letter-spacing:14.391360px;}
.ls0_c00461{letter-spacing:32.263560px;}
.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;}
}
.ws0_c00461{word-spacing:-19.522188px;}
.ws2_c00461{word-spacing:-18.043200px;}
.ws9_c00461{word-spacing:-13.492584px;}
.wsa_c00461{word-spacing:-13.387248px;}
.wsb_c00461{word-spacing:-13.320216px;}
.ws3_c00461{word-spacing:-13.310640px;}
.ws8_c00461{word-spacing:-13.224456px;}
.ws6_c00461{word-spacing:-11.170224px;}
.ws5_c00461{word-spacing:-11.154672px;}
.ws4_c00461{word-spacing:-10.808640px;}
.ws7_c00461{word-spacing:-10.800864px;}
.ws1_c00461{word-spacing:-10.584756px;}
.wsd_c00461{word-spacing:-0.264528px;}
.wsc_c00461{word-spacing:-0.240480px;}
.wsf_c00461{word-spacing:-0.164052px;}
.ws26_c00461{word-spacing:-0.086400px;}
.ws39_c00461{word-spacing:-0.062244px;}
.ws3f_c00461{word-spacing:-0.028728px;}
.ws33_c00461{word-spacing:-0.019152px;}
.ws3b_c00461{word-spacing:-0.014364px;}
.ws3a_c00461{word-spacing:-0.009576px;}
.wse_c00461{word-spacing:0.000000px;}
.ws3d_c00461{word-spacing:0.003888px;}
.ws3c_c00461{word-spacing:0.004788px;}
.ws25_c00461{word-spacing:0.014400px;}
.ws2b_c00461{word-spacing:0.028800px;}
.ws45_c00461{word-spacing:0.306432px;}
.ws44_c00461{word-spacing:0.335160px;}
.ws46_c00461{word-spacing:0.344736px;}
.ws2d_c00461{word-spacing:0.374400px;}
.ws3e_c00461{word-spacing:0.464436px;}
.ws37_c00461{word-spacing:0.636804px;}
.ws38_c00461{word-spacing:0.694260px;}
.ws34_c00461{word-spacing:0.722988px;}
.ws35_c00461{word-spacing:0.727056px;}
.ws36_c00461{word-spacing:1.110816px;}
.ws1f_c00461{word-spacing:1.447200px;}
.ws17_c00461{word-spacing:1.821600px;}
.ws18_c00461{word-spacing:1.929600px;}
.ws16_c00461{word-spacing:4.341600px;}
.ws32_c00461{word-spacing:4.682664px;}
.ws31_c00461{word-spacing:5.013036px;}
.ws2e_c00461{word-spacing:5.041764px;}
.ws2f_c00461{word-spacing:5.042736px;}
.ws30_c00461{word-spacing:5.362560px;}
.ws1e_c00461{word-spacing:5.371200px;}
.ws1d_c00461{word-spacing:5.716800px;}
.ws42_c00461{word-spacing:6.478164px;}
.ws29_c00461{word-spacing:6.775200px;}
.ws2a_c00461{word-spacing:6.854400px;}
.ws43_c00461{word-spacing:6.870780px;}
.ws41_c00461{word-spacing:7.177212px;}
.ws40_c00461{word-spacing:7.200576px;}
.ws4b_c00461{word-spacing:8.604036px;}
.ws4c_c00461{word-spacing:8.623188px;}
.ws15_c00461{word-spacing:9.734400px;}
.ws14_c00461{word-spacing:9.741600px;}
.ws20_c00461{word-spacing:13.233600px;}
.ws21_c00461{word-spacing:13.291200px;}
.ws11_c00461{word-spacing:13.694400px;}
.ws4a_c00461{word-spacing:14.253876px;}
.ws49_c00461{word-spacing:14.316120px;}
.ws48_c00461{word-spacing:14.402304px;}
.ws47_c00461{word-spacing:14.421456px;}
.ws2c_c00461{word-spacing:20.196000px;}
.ws1b_c00461{word-spacing:20.512800px;}
.ws1c_c00461{word-spacing:20.548800px;}
.ws24_c00461{word-spacing:21.614400px;}
.ws28_c00461{word-spacing:23.011200px;}
.ws27_c00461{word-spacing:23.047200px;}
.ws19_c00461{word-spacing:24.141600px;}
.ws1a_c00461{word-spacing:27.000000px;}
.ws22_c00461{word-spacing:27.705600px;}
.ws23_c00461{word-spacing:27.727200px;}
.ws10_c00461{word-spacing:35.978400px;}
.ws13_c00461{word-spacing:38.894400px;}
.ws12_c00461{word-spacing:38.959200px;}
._4_c00461{margin-left:-7.279992px;}
._1_c00461{margin-left:-1.051200px;}
._0_c00461{width:1.052100px;}
._2_c00461{width:5.745312px;}
._3_c00461{width:7.220304px;}
._5_c00461{width:13.336776px;}
._6_c00461{width:14.742324px;}
.fc0_c00461{color:rgb(0,0,0);}
.fs6_c00461{font-size:38.880000px;}
.fs4_c00461{font-size:42.120000px;}
.fs5_c00461{font-size:47.880000px;}
.fs2_c00461{font-size:54.000000px;}
.fs0_c00461{font-size:60.120000px;}
.fs1_c00461{font-size:72.000000px;}
.fs3_c00461{font-size:78.120000px;}
.y0_c00461{bottom:0.000000px;}
.y3_c00461{bottom:57.450450px;}
.y4_c00461{bottom:61.410450px;}
.y2a_c00461{bottom:88.233690px;}
.y29_c00461{bottom:101.999190px;}
.y28_c00461{bottom:115.867470px;}
.y27_c00461{bottom:134.133690px;}
.y26_c00461{bottom:147.815400px;}
.y25_c00461{bottom:161.764230px;}
.y24_c00461{bottom:180.036750px;}
.y23_c00461{bottom:198.302970px;}
.y22_c00461{bottom:216.664950px;}
.y21_c00461{bottom:230.432970px;}
.y20_c00461{bottom:248.699190px;}
.y1f_c00461{bottom:262.560450px;}
.y1e_c00461{bottom:277.680450px;}
.y1d_c00461{bottom:298.380450px;}
.y1c_c00461{bottom:319.080450px;}
.y1b_c00461{bottom:371.910450px;}
.y1a_c00461{bottom:406.380450px;}
.y19_c00461{bottom:440.760450px;}
.y18_c00461{bottom:475.230450px;}
.y17_c00461{bottom:509.610450px;}
.y16_c00461{bottom:544.080450px;}
.y15_c00461{bottom:578.460450px;}
.y14_c00461{bottom:612.930450px;}
.y13_c00461{bottom:647.310450px;}
.y12_c00461{bottom:681.780450px;}
.y11_c00461{bottom:716.160450px;}
.y10_c00461{bottom:750.630600px;}
.yf_c00461{bottom:785.010600px;}
.ye_c00461{bottom:819.480600px;}
.yd_c00461{bottom:853.860450px;}
.yc_c00461{bottom:888.330450px;}
.yb_c00461{bottom:922.710450px;}
.ya_c00461{bottom:957.180450px;}
.y9_c00461{bottom:991.560450px;}
.y8_c00461{bottom:1026.030450px;}
.y7_c00461{bottom:1060.410450px;}
.y6_c00461{bottom:1094.880450px;}
.y5_c00461{bottom:1139.880450px;}
.y2_c00461{bottom:1176.420450px;}
.y1_c00461{bottom:1196.940450px;}
.h2_c00461{height:47.988281px;}
.h8_c00461{height:49.937344px;}
.h1_c00461{height:50.315273px;}
.h3_c00461{height:56.320312px;}
.h5_c00461{height:60.257812px;}
.h7_c00461{height:65.130220px;}
.h6_c00461{height:65.130820px;}
.h4_c00461{height:81.476719px;}
.h0_c00461{height:1263.000000px;}
.w1_c00461{width:892.500000px;}
.w0_c00461{width:892.830000px;}
.x0_c00461{left:0.000000px;}
.x2_c00461{left:127.620000px;}
.x6_c00461{left:141.112530px;}
.x5_c00461{left:180.810000px;}
.x1_c00461{left:217.440000px;}
.x4_c00461{left:435.240000px;}
.x3_c00461{left:446.490000px;}
@media print{
.v2_c00461{vertical-align:-26.560000pt;}
.v0_c00461{vertical-align:0.000000pt;}
.v1_c00461{vertical-align:26.560000pt;}
.ls21_c00461{letter-spacing:-0.134400pt;}
.ls30_c00461{letter-spacing:-0.076608pt;}
.ls2a_c00461{letter-spacing:-0.032000pt;}
.ls23_c00461{letter-spacing:-0.027776pt;}
.ls1e_c00461{letter-spacing:-0.026720pt;}
.ls24_c00461{letter-spacing:-0.025600pt;}
.ls27_c00461{letter-spacing:-0.019200pt;}
.ls25_c00461{letter-spacing:-0.012800pt;}
.ls2e_c00461{letter-spacing:-0.012768pt;}
.ls22_c00461{letter-spacing:-0.006944pt;}
.ls2b_c00461{letter-spacing:-0.006912pt;}
.ls26_c00461{letter-spacing:-0.006400pt;}
.ls1f_c00461{letter-spacing:-0.005344pt;}
.ls35_c00461{letter-spacing:-0.004256pt;}
.ls2c_c00461{letter-spacing:-0.003456pt;}
.ls20_c00461{letter-spacing:0.000000pt;}
.ls2_c00461{letter-spacing:0.006400pt;}
.ls11_c00461{letter-spacing:0.008320pt;}
.ls17_c00461{letter-spacing:0.008512pt;}
.ls6_c00461{letter-spacing:0.012768pt;}
.ls5_c00461{letter-spacing:0.012800pt;}
.ls13_c00461{letter-spacing:0.016640pt;}
.lsc_c00461{letter-spacing:0.017024pt;}
.ls4_c00461{letter-spacing:0.019200pt;}
.ls10_c00461{letter-spacing:0.025536pt;}
.ls3_c00461{letter-spacing:0.025600pt;}
.ls1a_c00461{letter-spacing:0.029792pt;}
.lsb_c00461{letter-spacing:0.034048pt;}
.ls9_c00461{letter-spacing:0.038304pt;}
.ls1_c00461{letter-spacing:0.038400pt;}
.ls12_c00461{letter-spacing:0.042560pt;}
.ls8_c00461{letter-spacing:0.046816pt;}
.ls28_c00461{letter-spacing:0.048672pt;}
.ls19_c00461{letter-spacing:0.063840pt;}
.ls1c_c00461{letter-spacing:0.067520pt;}
.ls33_c00461{letter-spacing:0.068096pt;}
.lsf_c00461{letter-spacing:0.072352pt;}
.ls29_c00461{letter-spacing:0.083200pt;}
.lse_c00461{letter-spacing:0.089376pt;}
.ls16_c00461{letter-spacing:0.092480pt;}
.ls1d_c00461{letter-spacing:0.144704pt;}
.ls31_c00461{letter-spacing:0.161728pt;}
.ls2d_c00461{letter-spacing:0.307584pt;}
.lsd_c00461{letter-spacing:0.311680pt;}
.ls34_c00461{letter-spacing:0.314496pt;}
.ls2f_c00461{letter-spacing:0.321408pt;}
.lsa_c00461{letter-spacing:0.331968pt;}
.ls15_c00461{letter-spacing:0.336224pt;}
.ls7_c00461{letter-spacing:0.336640pt;}
.ls18_c00461{letter-spacing:0.340480pt;}
.ls14_c00461{letter-spacing:6.392320pt;}
.ls32_c00461{letter-spacing:6.413792pt;}
.ls1b_c00461{letter-spacing:12.792320pt;}
.ls0_c00461{letter-spacing:28.678720pt;}
.ws0_c00461{word-spacing:-17.353056pt;}
.ws2_c00461{word-spacing:-16.038400pt;}
.ws9_c00461{word-spacing:-11.993408pt;}
.wsa_c00461{word-spacing:-11.899776pt;}
.wsb_c00461{word-spacing:-11.840192pt;}
.ws3_c00461{word-spacing:-11.831680pt;}
.ws8_c00461{word-spacing:-11.755072pt;}
.ws6_c00461{word-spacing:-9.929088pt;}
.ws5_c00461{word-spacing:-9.915264pt;}
.ws4_c00461{word-spacing:-9.607680pt;}
.ws7_c00461{word-spacing:-9.600768pt;}
.ws1_c00461{word-spacing:-9.408672pt;}
.wsd_c00461{word-spacing:-0.235136pt;}
.wsc_c00461{word-spacing:-0.213760pt;}
.wsf_c00461{word-spacing:-0.145824pt;}
.ws26_c00461{word-spacing:-0.076800pt;}
.ws39_c00461{word-spacing:-0.055328pt;}
.ws3f_c00461{word-spacing:-0.025536pt;}
.ws33_c00461{word-spacing:-0.017024pt;}
.ws3b_c00461{word-spacing:-0.012768pt;}
.ws3a_c00461{word-spacing:-0.008512pt;}
.wse_c00461{word-spacing:0.000000pt;}
.ws3d_c00461{word-spacing:0.003456pt;}
.ws3c_c00461{word-spacing:0.004256pt;}
.ws25_c00461{word-spacing:0.012800pt;}
.ws2b_c00461{word-spacing:0.025600pt;}
.ws45_c00461{word-spacing:0.272384pt;}
.ws44_c00461{word-spacing:0.297920pt;}
.ws46_c00461{word-spacing:0.306432pt;}
.ws2d_c00461{word-spacing:0.332800pt;}
.ws3e_c00461{word-spacing:0.412832pt;}
.ws37_c00461{word-spacing:0.566048pt;}
.ws38_c00461{word-spacing:0.617120pt;}
.ws34_c00461{word-spacing:0.642656pt;}
.ws35_c00461{word-spacing:0.646272pt;}
.ws36_c00461{word-spacing:0.987392pt;}
.ws1f_c00461{word-spacing:1.286400pt;}
.ws17_c00461{word-spacing:1.619200pt;}
.ws18_c00461{word-spacing:1.715200pt;}
.ws16_c00461{word-spacing:3.859200pt;}
.ws32_c00461{word-spacing:4.162368pt;}
.ws31_c00461{word-spacing:4.456032pt;}
.ws2e_c00461{word-spacing:4.481568pt;}
.ws2f_c00461{word-spacing:4.482432pt;}
.ws30_c00461{word-spacing:4.766720pt;}
.ws1e_c00461{word-spacing:4.774400pt;}
.ws1d_c00461{word-spacing:5.081600pt;}
.ws42_c00461{word-spacing:5.758368pt;}
.ws29_c00461{word-spacing:6.022400pt;}
.ws2a_c00461{word-spacing:6.092800pt;}
.ws43_c00461{word-spacing:6.107360pt;}
.ws41_c00461{word-spacing:6.379744pt;}
.ws40_c00461{word-spacing:6.400512pt;}
.ws4b_c00461{word-spacing:7.648032pt;}
.ws4c_c00461{word-spacing:7.665056pt;}
.ws15_c00461{word-spacing:8.652800pt;}
.ws14_c00461{word-spacing:8.659200pt;}
.ws20_c00461{word-spacing:11.763200pt;}
.ws21_c00461{word-spacing:11.814400pt;}
.ws11_c00461{word-spacing:12.172800pt;}
.ws4a_c00461{word-spacing:12.670112pt;}
.ws49_c00461{word-spacing:12.725440pt;}
.ws48_c00461{word-spacing:12.802048pt;}
.ws47_c00461{word-spacing:12.819072pt;}
.ws2c_c00461{word-spacing:17.952000pt;}
.ws1b_c00461{word-spacing:18.233600pt;}
.ws1c_c00461{word-spacing:18.265600pt;}
.ws24_c00461{word-spacing:19.212800pt;}
.ws28_c00461{word-spacing:20.454400pt;}
.ws27_c00461{word-spacing:20.486400pt;}
.ws19_c00461{word-spacing:21.459200pt;}
.ws1a_c00461{word-spacing:24.000000pt;}
.ws22_c00461{word-spacing:24.627200pt;}
.ws23_c00461{word-spacing:24.646400pt;}
.ws10_c00461{word-spacing:31.980800pt;}
.ws13_c00461{word-spacing:34.572800pt;}
.ws12_c00461{word-spacing:34.630400pt;}
._4_c00461{margin-left:-6.471104pt;}
._1_c00461{margin-left:-0.934400pt;}
._0_c00461{width:0.935200pt;}
._2_c00461{width:5.106944pt;}
._3_c00461{width:6.418048pt;}
._5_c00461{width:11.854912pt;}
._6_c00461{width:13.104288pt;}
.fs6_c00461{font-size:34.560000pt;}
.fs4_c00461{font-size:37.440000pt;}
.fs5_c00461{font-size:42.560000pt;}
.fs2_c00461{font-size:48.000000pt;}
.fs0_c00461{font-size:53.440000pt;}
.fs1_c00461{font-size:64.000000pt;}
.fs3_c00461{font-size:69.440000pt;}
.y0_c00461{bottom:0.000000pt;}
.y3_c00461{bottom:51.067067pt;}
.y4_c00461{bottom:54.587067pt;}
.y2a_c00461{bottom:78.429947pt;}
.y29_c00461{bottom:90.665947pt;}
.y28_c00461{bottom:102.993307pt;}
.y27_c00461{bottom:119.229947pt;}
.y26_c00461{bottom:131.391467pt;}
.y25_c00461{bottom:143.790427pt;}
.y24_c00461{bottom:160.032667pt;}
.y23_c00461{bottom:176.269307pt;}
.y22_c00461{bottom:192.591067pt;}
.y21_c00461{bottom:204.829307pt;}
.y20_c00461{bottom:221.065947pt;}
.y1f_c00461{bottom:233.387067pt;}
.y1e_c00461{bottom:246.827067pt;}
.y1d_c00461{bottom:265.227067pt;}
.y1c_c00461{bottom:283.627067pt;}
.y1b_c00461{bottom:330.587067pt;}
.y1a_c00461{bottom:361.227067pt;}
.y19_c00461{bottom:391.787067pt;}
.y18_c00461{bottom:422.427067pt;}
.y17_c00461{bottom:452.987067pt;}
.y16_c00461{bottom:483.627067pt;}
.y15_c00461{bottom:514.187067pt;}
.y14_c00461{bottom:544.827067pt;}
.y13_c00461{bottom:575.387067pt;}
.y12_c00461{bottom:606.027067pt;}
.y11_c00461{bottom:636.587067pt;}
.y10_c00461{bottom:667.227200pt;}
.yf_c00461{bottom:697.787200pt;}
.ye_c00461{bottom:728.427200pt;}
.yd_c00461{bottom:758.987067pt;}
.yc_c00461{bottom:789.627067pt;}
.yb_c00461{bottom:820.187067pt;}
.ya_c00461{bottom:850.827067pt;}
.y9_c00461{bottom:881.387067pt;}
.y8_c00461{bottom:912.027067pt;}
.y7_c00461{bottom:942.587067pt;}
.y6_c00461{bottom:973.227067pt;}
.y5_c00461{bottom:1013.227067pt;}
.y2_c00461{bottom:1045.707067pt;}
.y1_c00461{bottom:1063.947067pt;}
.h2_c00461{height:42.656250pt;}
.h8_c00461{height:44.388750pt;}
.h1_c00461{height:44.724687pt;}
.h3_c00461{height:50.062500pt;}
.h5_c00461{height:53.562500pt;}
.h7_c00461{height:57.893529pt;}
.h6_c00461{height:57.894062pt;}
.h4_c00461{height:72.423750pt;}
.h0_c00461{height:1122.666667pt;}
.w1_c00461{width:793.333333pt;}
.w0_c00461{width:793.626667pt;}
.x0_c00461{left:0.000000pt;}
.x2_c00461{left:113.440000pt;}
.x6_c00461{left:125.433360pt;}
.x5_c00461{left:160.720000pt;}
.x1_c00461{left:193.280000pt;}
.x4_c00461{left:386.880000pt;}
.x3_c00461{left:396.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_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_2fae4dfe00e6b5cedf1b8970.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00462;src:url('chunks/assets/font_96023b2a26f39902830ce195.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_aafdbd7ff56b2072c7990bf7.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;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_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.v1_c00462{vertical-align:15.840000px;}
.v2_c00462{vertical-align:29.880000px;}
.ls16_c00462{letter-spacing:-0.151200px;}
.ls26_c00462{letter-spacing:-0.086184px;}
.ls22_c00462{letter-spacing:-0.081396px;}
.ls1f_c00462{letter-spacing:-0.043200px;}
.ls17_c00462{letter-spacing:-0.028800px;}
.ls1d_c00462{letter-spacing:-0.021600px;}
.ls24_c00462{letter-spacing:-0.019152px;}
.ls19_c00462{letter-spacing:-0.014400px;}
.ls23_c00462{letter-spacing:-0.007776px;}
.ls18_c00462{letter-spacing:-0.007200px;}
.ls25_c00462{letter-spacing:-0.003888px;}
.ls1c_c00462{letter-spacing:0.000000px;}
.ls2_c00462{letter-spacing:0.007200px;}
.lsc_c00462{letter-spacing:0.009360px;}
.ls9_c00462{letter-spacing:0.009576px;}
.lse_c00462{letter-spacing:0.014364px;}
.ls5_c00462{letter-spacing:0.014400px;}
.ls15_c00462{letter-spacing:0.023940px;}
.ls1e_c00462{letter-spacing:0.028800px;}
.lsd_c00462{letter-spacing:0.033516px;}
.ls13_c00462{letter-spacing:0.038304px;}
.ls0_c00462{letter-spacing:0.048096px;}
.ls11_c00462{letter-spacing:0.052668px;}
.ls1a_c00462{letter-spacing:0.054756px;}
.ls14_c00462{letter-spacing:0.062244px;}
.lsa_c00462{letter-spacing:0.075960px;}
.ls1b_c00462{letter-spacing:0.093600px;}
.ls10_c00462{letter-spacing:0.100548px;}
.lsb_c00462{letter-spacing:0.104040px;}
.ls3_c00462{letter-spacing:0.143640px;}
.ls7_c00462{letter-spacing:0.144000px;}
.ls20_c00462{letter-spacing:0.346032px;}
.ls21_c00462{letter-spacing:0.357696px;}
.ls27_c00462{letter-spacing:0.378252px;}
.lsf_c00462{letter-spacing:5.031360px;}
.ls12_c00462{letter-spacing:5.075280px;}
.ls8_c00462{letter-spacing:65.304000px;}
.ls6_c00462{letter-spacing:79.541280px;}
.ls4_c00462{letter-spacing:79.559280px;}
.ls1_c00462{letter-spacing:1212.120000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00462{word-spacing:-13.320216px;}
.ws2_c00462{word-spacing:-13.310640px;}
.ws5_c00462{word-spacing:-13.291488px;}
.ws7_c00462{word-spacing:-13.224456px;}
.ws3_c00462{word-spacing:-11.166336px;}
.ws6_c00462{word-spacing:-11.154672px;}
.ws4_c00462{word-spacing:-10.800864px;}
.ws0_c00462{word-spacing:-10.584756px;}
.ws35_c00462{word-spacing:-0.019152px;}
.ws30_c00462{word-spacing:-0.014364px;}
.ws3b_c00462{word-spacing:-0.004788px;}
.ws9_c00462{word-spacing:0.000000px;}
.ws1a_c00462{word-spacing:0.007200px;}
.ws10_c00462{word-spacing:0.014400px;}
.ws26_c00462{word-spacing:0.036000px;}
.ws8_c00462{word-spacing:0.042084px;}
.ws11_c00462{word-spacing:0.043200px;}
.ws1e_c00462{word-spacing:0.064800px;}
.ws2b_c00462{word-spacing:0.079200px;}
.ws2f_c00462{word-spacing:0.459648px;}
.wsf_c00462{word-spacing:2.160000px;}
.ws25_c00462{word-spacing:2.966400px;}
.ws24_c00462{word-spacing:3.031200px;}
.ws1d_c00462{word-spacing:3.261600px;}
.ws15_c00462{word-spacing:4.672800px;}
.ws14_c00462{word-spacing:4.752000px;}
.ws34_c00462{word-spacing:5.003460px;}
.ws31_c00462{word-spacing:5.041764px;}
.ws32_c00462{word-spacing:5.046624px;}
.ws12_c00462{word-spacing:5.047200px;}
.ws13_c00462{word-spacing:5.097600px;}
.ws33_c00462{word-spacing:5.400864px;}
.ws2c_c00462{word-spacing:6.134400px;}
.ws38_c00462{word-spacing:6.435072px;}
.ws37_c00462{word-spacing:6.444648px;}
.ws36_c00462{word-spacing:6.482952px;}
.ws19_c00462{word-spacing:7.192800px;}
.ws18_c00462{word-spacing:7.221600px;}
.ws39_c00462{word-spacing:7.526736px;}
.ws3a_c00462{word-spacing:7.541100px;}
.ws27_c00462{word-spacing:8.280000px;}
.ws28_c00462{word-spacing:8.316000px;}
.ws2e_c00462{word-spacing:8.661600px;}
.ws2d_c00462{word-spacing:8.776800px;}
.ws17_c00462{word-spacing:10.468800px;}
.wse_c00462{word-spacing:11.066400px;}
.wsd_c00462{word-spacing:11.102400px;}
.wsc_c00462{word-spacing:11.174400px;}
.ws20_c00462{word-spacing:11.512800px;}
.ws1f_c00462{word-spacing:11.592000px;}
.ws22_c00462{word-spacing:14.407200px;}
.ws21_c00462{word-spacing:14.457600px;}
.ws2a_c00462{word-spacing:15.940800px;}
.ws29_c00462{word-spacing:16.005600px;}
.ws1b_c00462{word-spacing:17.301600px;}
.ws1c_c00462{word-spacing:17.402400px;}
.wsb_c00462{word-spacing:18.309600px;}
.wsa_c00462{word-spacing:18.324000px;}
.ws16_c00462{word-spacing:20.174400px;}
.ws23_c00462{word-spacing:25.581600px;}
._0_c00462{margin-left:-1.322640px;}
._1_c00462{width:1.224000px;}
._2_c00462{width:5.761296px;}
.fc0_c00462{color:rgb(0,0,0);}
.fs5_c00462{font-size:38.880000px;}
.fs3_c00462{font-size:42.120000px;}
.fs4_c00462{font-size:47.880000px;}
.fs2_c00462{font-size:54.000000px;}
.fs0_c00462{font-size:60.120000px;}
.fs1_c00462{font-size:72.000000px;}
.y0_c00462{bottom:0.000000px;}
.y2_c00462{bottom:57.450450px;}
.y25_c00462{bottom:88.233690px;}
.y24_c00462{bottom:101.999190px;}
.y23_c00462{bottom:115.868730px;}
.y22_c00462{bottom:134.134950px;}
.y21_c00462{bottom:147.898470px;}
.y20_c00462{bottom:166.260450px;}
.y1f_c00462{bottom:181.470600px;}
.y1e_c00462{bottom:202.170600px;}
.y1d_c00462{bottom:222.870450px;}
.y1c_c00462{bottom:280.560450px;}
.y1b_c00462{bottom:314.940450px;}
.y1a_c00462{bottom:349.410450px;}
.y19_c00462{bottom:383.790450px;}
.y18_c00462{bottom:418.260450px;}
.y17_c00462{bottom:452.640600px;}
.y16_c00462{bottom:487.112610px;}
.y15_c00462{bottom:521.490450px;}
.y14_c00462{bottom:555.960450px;}
.y13_c00462{bottom:590.340450px;}
.y12_c00462{bottom:624.810450px;}
.y11_c00462{bottom:659.190450px;}
.y10_c00462{bottom:693.660450px;}
.yf_c00462{bottom:728.040450px;}
.ye_c00462{bottom:762.510450px;}
.yd_c00462{bottom:796.890450px;}
.yc_c00462{bottom:831.360450px;}
.yb_c00462{bottom:865.740450px;}
.ya_c00462{bottom:900.210450px;}
.y9_c00462{bottom:934.590450px;}
.y8_c00462{bottom:969.060450px;}
.y7_c00462{bottom:1003.440450px;}
.y6_c00462{bottom:1037.910450px;}
.y5_c00462{bottom:1072.290450px;}
.y4_c00462{bottom:1106.760450px;}
.y3_c00462{bottom:1141.140450px;}
.y1_c00462{bottom:1196.850450px;}
.h9_c00462{height:47.988281px;}
.h8_c00462{height:47.988881px;}
.ha_c00462{height:49.937344px;}
.hb_c00462{height:49.945264px;}
.h1_c00462{height:50.315273px;}
.h6_c00462{height:60.249773px;}
.h3_c00462{height:60.257812px;}
.h4_c00462{height:65.130820px;}
.h5_c00462{height:65.131420px;}
.h2_c00462{height:72.160312px;}
.h7_c00462{height:75.093750px;}
.h0_c00462{height:1263.000000px;}
.w1_c00462{width:892.500000px;}
.w0_c00462{width:892.830000px;}
.x0_c00462{left:0.000000px;}
.x1_c00462{left:127.620000px;}
.x4_c00462{left:141.118650px;}
.x2_c00462{left:180.810000px;}
.x3_c00462{left:207.810000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.v1_c00462{vertical-align:14.080000pt;}
.v2_c00462{vertical-align:26.560000pt;}
.ls16_c00462{letter-spacing:-0.134400pt;}
.ls26_c00462{letter-spacing:-0.076608pt;}
.ls22_c00462{letter-spacing:-0.072352pt;}
.ls1f_c00462{letter-spacing:-0.038400pt;}
.ls17_c00462{letter-spacing:-0.025600pt;}
.ls1d_c00462{letter-spacing:-0.019200pt;}
.ls24_c00462{letter-spacing:-0.017024pt;}
.ls19_c00462{letter-spacing:-0.012800pt;}
.ls23_c00462{letter-spacing:-0.006912pt;}
.ls18_c00462{letter-spacing:-0.006400pt;}
.ls25_c00462{letter-spacing:-0.003456pt;}
.ls1c_c00462{letter-spacing:0.000000pt;}
.ls2_c00462{letter-spacing:0.006400pt;}
.lsc_c00462{letter-spacing:0.008320pt;}
.ls9_c00462{letter-spacing:0.008512pt;}
.lse_c00462{letter-spacing:0.012768pt;}
.ls5_c00462{letter-spacing:0.012800pt;}
.ls15_c00462{letter-spacing:0.021280pt;}
.ls1e_c00462{letter-spacing:0.025600pt;}
.lsd_c00462{letter-spacing:0.029792pt;}
.ls13_c00462{letter-spacing:0.034048pt;}
.ls0_c00462{letter-spacing:0.042752pt;}
.ls11_c00462{letter-spacing:0.046816pt;}
.ls1a_c00462{letter-spacing:0.048672pt;}
.ls14_c00462{letter-spacing:0.055328pt;}
.lsa_c00462{letter-spacing:0.067520pt;}
.ls1b_c00462{letter-spacing:0.083200pt;}
.ls10_c00462{letter-spacing:0.089376pt;}
.lsb_c00462{letter-spacing:0.092480pt;}
.ls3_c00462{letter-spacing:0.127680pt;}
.ls7_c00462{letter-spacing:0.128000pt;}
.ls20_c00462{letter-spacing:0.307584pt;}
.ls21_c00462{letter-spacing:0.317952pt;}
.ls27_c00462{letter-spacing:0.336224pt;}
.lsf_c00462{letter-spacing:4.472320pt;}
.ls12_c00462{letter-spacing:4.511360pt;}
.ls8_c00462{letter-spacing:58.048000pt;}
.ls6_c00462{letter-spacing:70.703360pt;}
.ls4_c00462{letter-spacing:70.719360pt;}
.ls1_c00462{letter-spacing:1077.440000pt;}
.ws1_c00462{word-spacing:-11.840192pt;}
.ws2_c00462{word-spacing:-11.831680pt;}
.ws5_c00462{word-spacing:-11.814656pt;}
.ws7_c00462{word-spacing:-11.755072pt;}
.ws3_c00462{word-spacing:-9.925632pt;}
.ws6_c00462{word-spacing:-9.915264pt;}
.ws4_c00462{word-spacing:-9.600768pt;}
.ws0_c00462{word-spacing:-9.408672pt;}
.ws35_c00462{word-spacing:-0.017024pt;}
.ws30_c00462{word-spacing:-0.012768pt;}
.ws3b_c00462{word-spacing:-0.004256pt;}
.ws9_c00462{word-spacing:0.000000pt;}
.ws1a_c00462{word-spacing:0.006400pt;}
.ws10_c00462{word-spacing:0.012800pt;}
.ws26_c00462{word-spacing:0.032000pt;}
.ws8_c00462{word-spacing:0.037408pt;}
.ws11_c00462{word-spacing:0.038400pt;}
.ws1e_c00462{word-spacing:0.057600pt;}
.ws2b_c00462{word-spacing:0.070400pt;}
.ws2f_c00462{word-spacing:0.408576pt;}
.wsf_c00462{word-spacing:1.920000pt;}
.ws25_c00462{word-spacing:2.636800pt;}
.ws24_c00462{word-spacing:2.694400pt;}
.ws1d_c00462{word-spacing:2.899200pt;}
.ws15_c00462{word-spacing:4.153600pt;}
.ws14_c00462{word-spacing:4.224000pt;}
.ws34_c00462{word-spacing:4.447520pt;}
.ws31_c00462{word-spacing:4.481568pt;}
.ws32_c00462{word-spacing:4.485888pt;}
.ws12_c00462{word-spacing:4.486400pt;}
.ws13_c00462{word-spacing:4.531200pt;}
.ws33_c00462{word-spacing:4.800768pt;}
.ws2c_c00462{word-spacing:5.452800pt;}
.ws38_c00462{word-spacing:5.720064pt;}
.ws37_c00462{word-spacing:5.728576pt;}
.ws36_c00462{word-spacing:5.762624pt;}
.ws19_c00462{word-spacing:6.393600pt;}
.ws18_c00462{word-spacing:6.419200pt;}
.ws39_c00462{word-spacing:6.690432pt;}
.ws3a_c00462{word-spacing:6.703200pt;}
.ws27_c00462{word-spacing:7.360000pt;}
.ws28_c00462{word-spacing:7.392000pt;}
.ws2e_c00462{word-spacing:7.699200pt;}
.ws2d_c00462{word-spacing:7.801600pt;}
.ws17_c00462{word-spacing:9.305600pt;}
.wse_c00462{word-spacing:9.836800pt;}
.wsd_c00462{word-spacing:9.868800pt;}
.wsc_c00462{word-spacing:9.932800pt;}
.ws20_c00462{word-spacing:10.233600pt;}
.ws1f_c00462{word-spacing:10.304000pt;}
.ws22_c00462{word-spacing:12.806400pt;}
.ws21_c00462{word-spacing:12.851200pt;}
.ws2a_c00462{word-spacing:14.169600pt;}
.ws29_c00462{word-spacing:14.227200pt;}
.ws1b_c00462{word-spacing:15.379200pt;}
.ws1c_c00462{word-spacing:15.468800pt;}
.wsb_c00462{word-spacing:16.275200pt;}
.wsa_c00462{word-spacing:16.288000pt;}
.ws16_c00462{word-spacing:17.932800pt;}
.ws23_c00462{word-spacing:22.739200pt;}
._0_c00462{margin-left:-1.175680pt;}
._1_c00462{width:1.088000pt;}
._2_c00462{width:5.121152pt;}
.fs5_c00462{font-size:34.560000pt;}
.fs3_c00462{font-size:37.440000pt;}
.fs4_c00462{font-size:42.560000pt;}
.fs2_c00462{font-size:48.000000pt;}
.fs0_c00462{font-size:53.440000pt;}
.fs1_c00462{font-size:64.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y2_c00462{bottom:51.067067pt;}
.y25_c00462{bottom:78.429947pt;}
.y24_c00462{bottom:90.665947pt;}
.y23_c00462{bottom:102.994427pt;}
.y22_c00462{bottom:119.231067pt;}
.y21_c00462{bottom:131.465307pt;}
.y20_c00462{bottom:147.787067pt;}
.y1f_c00462{bottom:161.307200pt;}
.y1e_c00462{bottom:179.707200pt;}
.y1d_c00462{bottom:198.107067pt;}
.y1c_c00462{bottom:249.387067pt;}
.y1b_c00462{bottom:279.947067pt;}
.y1a_c00462{bottom:310.587067pt;}
.y19_c00462{bottom:341.147067pt;}
.y18_c00462{bottom:371.787067pt;}
.y17_c00462{bottom:402.347200pt;}
.y16_c00462{bottom:432.988987pt;}
.y15_c00462{bottom:463.547067pt;}
.y14_c00462{bottom:494.187067pt;}
.y13_c00462{bottom:524.747067pt;}
.y12_c00462{bottom:555.387067pt;}
.y11_c00462{bottom:585.947067pt;}
.y10_c00462{bottom:616.587067pt;}
.yf_c00462{bottom:647.147067pt;}
.ye_c00462{bottom:677.787067pt;}
.yd_c00462{bottom:708.347067pt;}
.yc_c00462{bottom:738.987067pt;}
.yb_c00462{bottom:769.547067pt;}
.ya_c00462{bottom:800.187067pt;}
.y9_c00462{bottom:830.747067pt;}
.y8_c00462{bottom:861.387067pt;}
.y7_c00462{bottom:891.947067pt;}
.y6_c00462{bottom:922.587067pt;}
.y5_c00462{bottom:953.147067pt;}
.y4_c00462{bottom:983.787067pt;}
.y3_c00462{bottom:1014.347067pt;}
.y1_c00462{bottom:1063.867067pt;}
.h9_c00462{height:42.656250pt;}
.h8_c00462{height:42.656783pt;}
.ha_c00462{height:44.388750pt;}
.hb_c00462{height:44.395790pt;}
.h1_c00462{height:44.724687pt;}
.h6_c00462{height:53.555353pt;}
.h3_c00462{height:53.562500pt;}
.h4_c00462{height:57.894063pt;}
.h5_c00462{height:57.894596pt;}
.h2_c00462{height:64.142500pt;}
.h7_c00462{height:66.750000pt;}
.h0_c00462{height:1122.666667pt;}
.w1_c00462{width:793.333333pt;}
.w0_c00462{width:793.626667pt;}
.x0_c00462{left:0.000000pt;}
.x1_c00462{left:113.440000pt;}
.x4_c00462{left:125.438800pt;}
.x2_c00462{left:160.720000pt;}
.x3_c00462{left:184.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_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_6913aba87c9e0d2c91b050db.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00463;src:url('chunks/assets/font_abb5b45d04272550357595d3.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00463;src:url('chunks/assets/font_e1e935b26a8d402fe0452752.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00463;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00463{font-family:ff5_c00463;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_c00463;src:url('chunks/assets/font_e40be4c40c06df0aea173b60.woff2')format("woff");}.ff6_c00463{font-family:ff6_c00463;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_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;}
.v1_c00463{vertical-align:29.880000px;}
.ls13_c00463{letter-spacing:-0.151200px;}
.ls20_c00463{letter-spacing:-0.086184px;}
.ls14_c00463{letter-spacing:-0.043200px;}
.ls19_c00463{letter-spacing:-0.036000px;}
.ls10_c00463{letter-spacing:-0.030060px;}
.ls15_c00463{letter-spacing:-0.028800px;}
.ls1a_c00463{letter-spacing:-0.021600px;}
.ls21_c00463{letter-spacing:-0.019152px;}
.ls18_c00463{letter-spacing:-0.014400px;}
.ls1e_c00463{letter-spacing:-0.007776px;}
.ls17_c00463{letter-spacing:-0.007200px;}
.ls11_c00463{letter-spacing:-0.006012px;}
.ls1d_c00463{letter-spacing:-0.004788px;}
.ls1c_c00463{letter-spacing:-0.003888px;}
.ls12_c00463{letter-spacing:0.000000px;}
.ls3_c00463{letter-spacing:0.007200px;}
.lsa_c00463{letter-spacing:0.009360px;}
.ls5_c00463{letter-spacing:0.014364px;}
.ls4_c00463{letter-spacing:0.014400px;}
.lsf_c00463{letter-spacing:0.019152px;}
.ls9_c00463{letter-spacing:0.028728px;}
.ls2_c00463{letter-spacing:0.028800px;}
.ls0_c00463{letter-spacing:0.031248px;}
.lse_c00463{letter-spacing:0.033516px;}
.ls7_c00463{letter-spacing:0.047880px;}
.lsc_c00463{letter-spacing:0.052668px;}
.ls1b_c00463{letter-spacing:0.054756px;}
.ls8_c00463{letter-spacing:0.057456px;}
.ls6_c00463{letter-spacing:0.062244px;}
.ls16_c00463{letter-spacing:0.093600px;}
.lsb_c00463{letter-spacing:0.100548px;}
.ls1f_c00463{letter-spacing:0.361584px;}
.lsd_c00463{letter-spacing:0.383040px;}
.ls1_c00463{letter-spacing:26.560800px;}
.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;}
}
.ws0_c00463{word-spacing:-19.561248px;}
.ws2_c00463{word-spacing:-13.310640px;}
.ws6_c00463{word-spacing:-13.224456px;}
.ws4_c00463{word-spacing:-11.170224px;}
.ws3_c00463{word-spacing:-10.804752px;}
.ws5_c00463{word-spacing:-10.800864px;}
.ws1_c00463{word-spacing:-10.584756px;}
.ws8_c00463{word-spacing:-0.264528px;}
.ws7_c00463{word-spacing:-0.240480px;}
.wsa_c00463{word-spacing:-0.093744px;}
.ws39_c00463{word-spacing:-0.033516px;}
.ws3b_c00463{word-spacing:-0.014364px;}
.ws34_c00463{word-spacing:-0.009576px;}
.ws30_c00463{word-spacing:-0.007200px;}
.ws9_c00463{word-spacing:0.000000px;}
.ws37_c00463{word-spacing:0.003888px;}
.ws36_c00463{word-spacing:0.004788px;}
.ws12_c00463{word-spacing:0.014400px;}
.ws35_c00463{word-spacing:0.023940px;}
.ws3a_c00463{word-spacing:0.038304px;}
.ws2d_c00463{word-spacing:0.324000px;}
.wse_c00463{word-spacing:0.331200px;}
.wsf_c00463{word-spacing:0.352800px;}
.wsd_c00463{word-spacing:0.360000px;}
.ws16_c00463{word-spacing:0.396000px;}
.ws38_c00463{word-spacing:0.464436px;}
.ws2f_c00463{word-spacing:1.044000px;}
.ws2e_c00463{word-spacing:1.101600px;}
.ws1a_c00463{word-spacing:1.807200px;}
.ws19_c00463{word-spacing:1.821600px;}
.ws18_c00463{word-spacing:2.880000px;}
.ws17_c00463{word-spacing:2.894400px;}
.ws2b_c00463{word-spacing:3.240000px;}
.ws25_c00463{word-spacing:4.694400px;}
.ws26_c00463{word-spacing:4.737600px;}
.ws1b_c00463{word-spacing:7.236000px;}
.ws11_c00463{word-spacing:8.611200px;}
.wsc_c00463{word-spacing:8.668800px;}
.wsb_c00463{word-spacing:8.683200px;}
.ws10_c00463{word-spacing:8.704800px;}
.ws32_c00463{word-spacing:9.317448px;}
.ws33_c00463{word-spacing:9.331812px;}
.ws31_c00463{word-spacing:9.365328px;}
.ws23_c00463{word-spacing:10.425600px;}
.ws24_c00463{word-spacing:10.440000px;}
.ws21_c00463{word-spacing:11.160000px;}
.ws20_c00463{word-spacing:11.167200px;}
.ws29_c00463{word-spacing:11.887200px;}
.ws2a_c00463{word-spacing:11.894400px;}
.ws27_c00463{word-spacing:11.901600px;}
.ws28_c00463{word-spacing:11.959200px;}
.ws2c_c00463{word-spacing:16.228800px;}
.ws15_c00463{word-spacing:16.992000px;}
.ws14_c00463{word-spacing:16.999200px;}
.ws1d_c00463{word-spacing:18.014400px;}
.ws1c_c00463{word-spacing:18.050400px;}
.ws22_c00463{word-spacing:18.064800px;}
.ws1e_c00463{word-spacing:25.560000px;}
.ws1f_c00463{word-spacing:25.617600px;}
.ws13_c00463{word-spacing:27.367200px;}
._1_c00463{margin-left:-1.453032px;}
._0_c00463{width:1.052100px;}
.fc0_c00463{color:rgb(0,0,0);}
.fs6_c00463{font-size:38.880000px;}
.fs4_c00463{font-size:42.120000px;}
.fs5_c00463{font-size:47.880000px;}
.fs2_c00463{font-size:54.000000px;}
.fs0_c00463{font-size:60.120000px;}
.fs1_c00463{font-size:72.000000px;}
.fs3_c00463{font-size:78.120000px;}
.y0_c00463{bottom:0.000000px;}
.y3_c00463{bottom:57.450450px;}
.y4_c00463{bottom:61.410450px;}
.y26_c00463{bottom:88.232250px;}
.y25_c00463{bottom:106.498470px;}
.y24_c00463{bottom:124.868730px;}
.y23_c00463{bottom:143.134950px;}
.y22_c00463{bottom:156.900450px;}
.y21_c00463{bottom:172.110450px;}
.y20_c00463{bottom:192.810450px;}
.y1f_c00463{bottom:213.510450px;}
.y1e_c00463{bottom:268.680450px;}
.y1d_c00463{bottom:303.060450px;}
.y1c_c00463{bottom:337.530450px;}
.y1b_c00463{bottom:371.910450px;}
.y1a_c00463{bottom:406.380450px;}
.y19_c00463{bottom:440.760450px;}
.y18_c00463{bottom:475.230450px;}
.y17_c00463{bottom:509.610450px;}
.y16_c00463{bottom:544.080450px;}
.y15_c00463{bottom:578.460450px;}
.y14_c00463{bottom:612.930450px;}
.y13_c00463{bottom:647.310450px;}
.y12_c00463{bottom:681.780450px;}
.y11_c00463{bottom:716.160450px;}
.y10_c00463{bottom:750.630450px;}
.yf_c00463{bottom:785.010450px;}
.ye_c00463{bottom:819.480450px;}
.yd_c00463{bottom:853.860450px;}
.yc_c00463{bottom:888.330450px;}
.yb_c00463{bottom:922.710450px;}
.ya_c00463{bottom:957.180450px;}
.y9_c00463{bottom:991.560450px;}
.y8_c00463{bottom:1026.030450px;}
.y7_c00463{bottom:1060.410450px;}
.y6_c00463{bottom:1094.880450px;}
.y5_c00463{bottom:1139.880450px;}
.y2_c00463{bottom:1176.420450px;}
.y1_c00463{bottom:1196.940450px;}
.h2_c00463{height:47.988281px;}
.h7_c00463{height:49.937344px;}
.h1_c00463{height:50.315273px;}
.h3_c00463{height:56.320312px;}
.h5_c00463{height:60.257812px;}
.h6_c00463{height:65.130820px;}
.h4_c00463{height:81.476719px;}
.h0_c00463{height:1263.000000px;}
.w1_c00463{width:892.500000px;}
.w0_c00463{width:892.830000px;}
.x0_c00463{left:0.000000px;}
.x2_c00463{left:127.620000px;}
.x6_c00463{left:141.110010px;}
.x5_c00463{left:180.810000px;}
.x1_c00463{left:217.440000px;}
.x4_c00463{left:435.240000px;}
.x3_c00463{left:446.490000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.v1_c00463{vertical-align:26.560000pt;}
.ls13_c00463{letter-spacing:-0.134400pt;}
.ls20_c00463{letter-spacing:-0.076608pt;}
.ls14_c00463{letter-spacing:-0.038400pt;}
.ls19_c00463{letter-spacing:-0.032000pt;}
.ls10_c00463{letter-spacing:-0.026720pt;}
.ls15_c00463{letter-spacing:-0.025600pt;}
.ls1a_c00463{letter-spacing:-0.019200pt;}
.ls21_c00463{letter-spacing:-0.017024pt;}
.ls18_c00463{letter-spacing:-0.012800pt;}
.ls1e_c00463{letter-spacing:-0.006912pt;}
.ls17_c00463{letter-spacing:-0.006400pt;}
.ls11_c00463{letter-spacing:-0.005344pt;}
.ls1d_c00463{letter-spacing:-0.004256pt;}
.ls1c_c00463{letter-spacing:-0.003456pt;}
.ls12_c00463{letter-spacing:0.000000pt;}
.ls3_c00463{letter-spacing:0.006400pt;}
.lsa_c00463{letter-spacing:0.008320pt;}
.ls5_c00463{letter-spacing:0.012768pt;}
.ls4_c00463{letter-spacing:0.012800pt;}
.lsf_c00463{letter-spacing:0.017024pt;}
.ls9_c00463{letter-spacing:0.025536pt;}
.ls2_c00463{letter-spacing:0.025600pt;}
.ls0_c00463{letter-spacing:0.027776pt;}
.lse_c00463{letter-spacing:0.029792pt;}
.ls7_c00463{letter-spacing:0.042560pt;}
.lsc_c00463{letter-spacing:0.046816pt;}
.ls1b_c00463{letter-spacing:0.048672pt;}
.ls8_c00463{letter-spacing:0.051072pt;}
.ls6_c00463{letter-spacing:0.055328pt;}
.ls16_c00463{letter-spacing:0.083200pt;}
.lsb_c00463{letter-spacing:0.089376pt;}
.ls1f_c00463{letter-spacing:0.321408pt;}
.lsd_c00463{letter-spacing:0.340480pt;}
.ls1_c00463{letter-spacing:23.609600pt;}
.ws0_c00463{word-spacing:-17.387776pt;}
.ws2_c00463{word-spacing:-11.831680pt;}
.ws6_c00463{word-spacing:-11.755072pt;}
.ws4_c00463{word-spacing:-9.929088pt;}
.ws3_c00463{word-spacing:-9.604224pt;}
.ws5_c00463{word-spacing:-9.600768pt;}
.ws1_c00463{word-spacing:-9.408672pt;}
.ws8_c00463{word-spacing:-0.235136pt;}
.ws7_c00463{word-spacing:-0.213760pt;}
.wsa_c00463{word-spacing:-0.083328pt;}
.ws39_c00463{word-spacing:-0.029792pt;}
.ws3b_c00463{word-spacing:-0.012768pt;}
.ws34_c00463{word-spacing:-0.008512pt;}
.ws30_c00463{word-spacing:-0.006400pt;}
.ws9_c00463{word-spacing:0.000000pt;}
.ws37_c00463{word-spacing:0.003456pt;}
.ws36_c00463{word-spacing:0.004256pt;}
.ws12_c00463{word-spacing:0.012800pt;}
.ws35_c00463{word-spacing:0.021280pt;}
.ws3a_c00463{word-spacing:0.034048pt;}
.ws2d_c00463{word-spacing:0.288000pt;}
.wse_c00463{word-spacing:0.294400pt;}
.wsf_c00463{word-spacing:0.313600pt;}
.wsd_c00463{word-spacing:0.320000pt;}
.ws16_c00463{word-spacing:0.352000pt;}
.ws38_c00463{word-spacing:0.412832pt;}
.ws2f_c00463{word-spacing:0.928000pt;}
.ws2e_c00463{word-spacing:0.979200pt;}
.ws1a_c00463{word-spacing:1.606400pt;}
.ws19_c00463{word-spacing:1.619200pt;}
.ws18_c00463{word-spacing:2.560000pt;}
.ws17_c00463{word-spacing:2.572800pt;}
.ws2b_c00463{word-spacing:2.880000pt;}
.ws25_c00463{word-spacing:4.172800pt;}
.ws26_c00463{word-spacing:4.211200pt;}
.ws1b_c00463{word-spacing:6.432000pt;}
.ws11_c00463{word-spacing:7.654400pt;}
.wsc_c00463{word-spacing:7.705600pt;}
.wsb_c00463{word-spacing:7.718400pt;}
.ws10_c00463{word-spacing:7.737600pt;}
.ws32_c00463{word-spacing:8.282176pt;}
.ws33_c00463{word-spacing:8.294944pt;}
.ws31_c00463{word-spacing:8.324736pt;}
.ws23_c00463{word-spacing:9.267200pt;}
.ws24_c00463{word-spacing:9.280000pt;}
.ws21_c00463{word-spacing:9.920000pt;}
.ws20_c00463{word-spacing:9.926400pt;}
.ws29_c00463{word-spacing:10.566400pt;}
.ws2a_c00463{word-spacing:10.572800pt;}
.ws27_c00463{word-spacing:10.579200pt;}
.ws28_c00463{word-spacing:10.630400pt;}
.ws2c_c00463{word-spacing:14.425600pt;}
.ws15_c00463{word-spacing:15.104000pt;}
.ws14_c00463{word-spacing:15.110400pt;}
.ws1d_c00463{word-spacing:16.012800pt;}
.ws1c_c00463{word-spacing:16.044800pt;}
.ws22_c00463{word-spacing:16.057600pt;}
.ws1e_c00463{word-spacing:22.720000pt;}
.ws1f_c00463{word-spacing:22.771200pt;}
.ws13_c00463{word-spacing:24.326400pt;}
._1_c00463{margin-left:-1.291584pt;}
._0_c00463{width:0.935200pt;}
.fs6_c00463{font-size:34.560000pt;}
.fs4_c00463{font-size:37.440000pt;}
.fs5_c00463{font-size:42.560000pt;}
.fs2_c00463{font-size:48.000000pt;}
.fs0_c00463{font-size:53.440000pt;}
.fs1_c00463{font-size:64.000000pt;}
.fs3_c00463{font-size:69.440000pt;}
.y0_c00463{bottom:0.000000pt;}
.y3_c00463{bottom:51.067067pt;}
.y4_c00463{bottom:54.587067pt;}
.y26_c00463{bottom:78.428667pt;}
.y25_c00463{bottom:94.665307pt;}
.y24_c00463{bottom:110.994427pt;}
.y23_c00463{bottom:127.231067pt;}
.y22_c00463{bottom:139.467067pt;}
.y21_c00463{bottom:152.987067pt;}
.y20_c00463{bottom:171.387067pt;}
.y1f_c00463{bottom:189.787067pt;}
.y1e_c00463{bottom:238.827067pt;}
.y1d_c00463{bottom:269.387067pt;}
.y1c_c00463{bottom:300.027067pt;}
.y1b_c00463{bottom:330.587067pt;}
.y1a_c00463{bottom:361.227067pt;}
.y19_c00463{bottom:391.787067pt;}
.y18_c00463{bottom:422.427067pt;}
.y17_c00463{bottom:452.987067pt;}
.y16_c00463{bottom:483.627067pt;}
.y15_c00463{bottom:514.187067pt;}
.y14_c00463{bottom:544.827067pt;}
.y13_c00463{bottom:575.387067pt;}
.y12_c00463{bottom:606.027067pt;}
.y11_c00463{bottom:636.587067pt;}
.y10_c00463{bottom:667.227067pt;}
.yf_c00463{bottom:697.787067pt;}
.ye_c00463{bottom:728.427067pt;}
.yd_c00463{bottom:758.987067pt;}
.yc_c00463{bottom:789.627067pt;}
.yb_c00463{bottom:820.187067pt;}
.ya_c00463{bottom:850.827067pt;}
.y9_c00463{bottom:881.387067pt;}
.y8_c00463{bottom:912.027067pt;}
.y7_c00463{bottom:942.587067pt;}
.y6_c00463{bottom:973.227067pt;}
.y5_c00463{bottom:1013.227067pt;}
.y2_c00463{bottom:1045.707067pt;}
.y1_c00463{bottom:1063.947067pt;}
.h2_c00463{height:42.656250pt;}
.h7_c00463{height:44.388750pt;}
.h1_c00463{height:44.724687pt;}
.h3_c00463{height:50.062500pt;}
.h5_c00463{height:53.562500pt;}
.h6_c00463{height:57.894062pt;}
.h4_c00463{height:72.423750pt;}
.h0_c00463{height:1122.666667pt;}
.w1_c00463{width:793.333333pt;}
.w0_c00463{width:793.626667pt;}
.x0_c00463{left:0.000000pt;}
.x2_c00463{left:113.440000pt;}
.x6_c00463{left:125.431120pt;}
.x5_c00463{left:160.720000pt;}
.x1_c00463{left:193.280000pt;}
.x4_c00463{left:386.880000pt;}
.x3_c00463{left:396.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_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_275fe1a3f9b724b01bfdb912.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00464;src:url('chunks/assets/font_073ad02a651413cb2e39cb17.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00464;src:url('chunks/assets/font_564e6e3d5e1f211d1aebee4e.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00464;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00464{font-family:ff5_c00464;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_c00464;src:url('chunks/assets/font_2040d8fc70b2e5af2ba35e39.woff2')format("woff");}.ff6_c00464{font-family:ff6_c00464;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_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;}
.v1_c00464{vertical-align:15.840000px;}
.v2_c00464{vertical-align:29.880000px;}
.ls27_c00464{letter-spacing:-0.541044px;}
.ls24_c00464{letter-spacing:-0.288000px;}
.ls16_c00464{letter-spacing:-0.151200px;}
.ls29_c00464{letter-spacing:-0.086184px;}
.ls1e_c00464{letter-spacing:-0.057600px;}
.ls22_c00464{letter-spacing:-0.043200px;}
.ls18_c00464{letter-spacing:-0.039060px;}
.ls1d_c00464{letter-spacing:-0.036000px;}
.ls1c_c00464{letter-spacing:-0.028800px;}
.ls19_c00464{letter-spacing:-0.021600px;}
.ls2e_c00464{letter-spacing:-0.019152px;}
.ls17_c00464{letter-spacing:-0.015624px;}
.ls1f_c00464{letter-spacing:-0.014400px;}
.ls2f_c00464{letter-spacing:-0.011664px;}
.ls25_c00464{letter-spacing:-0.007776px;}
.ls1a_c00464{letter-spacing:-0.007200px;}
.ls2d_c00464{letter-spacing:-0.004788px;}
.ls28_c00464{letter-spacing:-0.003888px;}
.ls1b_c00464{letter-spacing:0.000000px;}
.ls3_c00464{letter-spacing:0.007200px;}
.ls6_c00464{letter-spacing:0.009360px;}
.lsc_c00464{letter-spacing:0.009576px;}
.ls5_c00464{letter-spacing:0.014364px;}
.ls4_c00464{letter-spacing:0.014400px;}
.ls10_c00464{letter-spacing:0.018720px;}
.ls23_c00464{letter-spacing:0.021600px;}
.ls15_c00464{letter-spacing:0.023940px;}
.ls11_c00464{letter-spacing:0.038304px;}
.lsa_c00464{letter-spacing:0.047880px;}
.ls0_c00464{letter-spacing:0.048096px;}
.lsd_c00464{letter-spacing:0.052668px;}
.ls20_c00464{letter-spacing:0.054756px;}
.ls14_c00464{letter-spacing:0.057456px;}
.ls2a_c00464{letter-spacing:0.062244px;}
.ls21_c00464{letter-spacing:0.093600px;}
.ls9_c00464{letter-spacing:0.100548px;}
.lsf_c00464{letter-spacing:0.189360px;}
.ls12_c00464{letter-spacing:0.265320px;}
.ls26_c00464{letter-spacing:0.346032px;}
.ls2b_c00464{letter-spacing:0.361584px;}
.lse_c00464{letter-spacing:0.383040px;}
.ls2c_c00464{letter-spacing:0.435708px;}
.ls13_c00464{letter-spacing:0.711360px;}
.ls7_c00464{letter-spacing:2.871360px;}
.ls8_c00464{letter-spacing:3.231360px;}
.lsb_c00464{letter-spacing:3.270204px;}
.ls2_c00464{letter-spacing:29.373120px;}
.ls1_c00464{letter-spacing:1212.120000px;}
.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;}
}
.ws0_c00464{word-spacing:-19.514376px;}
.ws9_c00464{word-spacing:-13.746348px;}
.wsb_c00464{word-spacing:-13.348944px;}
.ws4_c00464{word-spacing:-13.320216px;}
.ws2_c00464{word-spacing:-13.310640px;}
.ws6_c00464{word-spacing:-13.224456px;}
.ws7_c00464{word-spacing:-11.170224px;}
.ws3_c00464{word-spacing:-11.154672px;}
.wsa_c00464{word-spacing:-10.808640px;}
.ws5_c00464{word-spacing:-10.804752px;}
.ws8_c00464{word-spacing:-10.800864px;}
.wsc_c00464{word-spacing:-10.796976px;}
.ws1_c00464{word-spacing:-10.584756px;}
.ws1e_c00464{word-spacing:-0.093600px;}
.wsf_c00464{word-spacing:-0.054684px;}
.ws3b_c00464{word-spacing:-0.043092px;}
.ws46_c00464{word-spacing:-0.038304px;}
.ws3f_c00464{word-spacing:-0.033516px;}
.ws40_c00464{word-spacing:-0.019152px;}
.ws30_c00464{word-spacing:-0.007200px;}
.ws47_c00464{word-spacing:-0.004788px;}
.wse_c00464{word-spacing:0.000000px;}
.ws3d_c00464{word-spacing:0.003888px;}
.ws3c_c00464{word-spacing:0.004788px;}
.ws27_c00464{word-spacing:0.007200px;}
.ws1c_c00464{word-spacing:0.014400px;}
.ws28_c00464{word-spacing:0.021600px;}
.ws31_c00464{word-spacing:0.036000px;}
.ws45_c00464{word-spacing:0.038304px;}
.wsd_c00464{word-spacing:0.042084px;}
.ws1d_c00464{word-spacing:0.057600px;}
.ws26_c00464{word-spacing:0.072000px;}
.ws2e_c00464{word-spacing:0.360000px;}
.ws3e_c00464{word-spacing:0.464436px;}
.ws32_c00464{word-spacing:0.648000px;}
.ws42_c00464{word-spacing:0.689472px;}
.ws41_c00464{word-spacing:0.722988px;}
.ws43_c00464{word-spacing:0.727776px;}
.ws44_c00464{word-spacing:0.742140px;}
.ws24_c00464{word-spacing:1.029600px;}
.ws1b_c00464{word-spacing:1.080000px;}
.ws19_c00464{word-spacing:1.116000px;}
.ws25_c00464{word-spacing:1.123200px;}
.ws1a_c00464{word-spacing:1.137600px;}
.ws11_c00464{word-spacing:2.145600px;}
.ws2f_c00464{word-spacing:2.188800px;}
.ws10_c00464{word-spacing:2.296800px;}
.ws39_c00464{word-spacing:2.848860px;}
.ws14_c00464{word-spacing:2.865600px;}
.ws36_c00464{word-spacing:2.882376px;}
.ws37_c00464{word-spacing:2.884896px;}
.ws3a_c00464{word-spacing:2.887164px;}
.ws18_c00464{word-spacing:2.908800px;}
.ws13_c00464{word-spacing:2.930400px;}
.ws17_c00464{word-spacing:2.937600px;}
.ws15_c00464{word-spacing:3.204000px;}
.ws16_c00464{word-spacing:3.261600px;}
.ws38_c00464{word-spacing:3.437784px;}
.ws12_c00464{word-spacing:3.664800px;}
.ws22_c00464{word-spacing:4.320000px;}
.ws23_c00464{word-spacing:4.363200px;}
.ws2d_c00464{word-spacing:5.011200px;}
.ws2c_c00464{word-spacing:5.076000px;}
.ws35_c00464{word-spacing:6.796800px;}
.ws34_c00464{word-spacing:6.854400px;}
.ws20_c00464{word-spacing:8.647200px;}
.ws2b_c00464{word-spacing:11.548800px;}
.ws2a_c00464{word-spacing:11.613600px;}
.ws21_c00464{word-spacing:13.370400px;}
.ws33_c00464{word-spacing:14.068800px;}
.ws29_c00464{word-spacing:17.625600px;}
.ws1f_c00464{word-spacing:20.908800px;}
._0_c00464{margin-left:-1.322640px;}
._1_c00464{width:1.080000px;}
._2_c00464{width:3.030408px;}
.fc0_c00464{color:rgb(0,0,0);}
.fs6_c00464{font-size:38.880000px;}
.fs4_c00464{font-size:42.120000px;}
.fs5_c00464{font-size:47.880000px;}
.fs2_c00464{font-size:54.000000px;}
.fs0_c00464{font-size:60.120000px;}
.fs1_c00464{font-size:72.000000px;}
.fs3_c00464{font-size:78.120000px;}
.y0_c00464{bottom:0.000000px;}
.y2_c00464{bottom:57.450450px;}
.y27_c00464{bottom:88.232970px;}
.y26_c00464{bottom:106.499190px;}
.y25_c00464{bottom:120.364230px;}
.y24_c00464{bottom:138.634230px;}
.y23_c00464{bottom:156.902970px;}
.y22_c00464{bottom:175.264950px;}
.y21_c00464{bottom:189.030450px;}
.y20_c00464{bottom:204.240450px;}
.y1f_c00464{bottom:224.940450px;}
.y1e_c00464{bottom:245.640450px;}
.y1d_c00464{bottom:272.910450px;}
.y1c_c00464{bottom:307.380450px;}
.y1b_c00464{bottom:341.760600px;}
.y1a_c00464{bottom:376.230600px;}
.y19_c00464{bottom:410.610600px;}
.y18_c00464{bottom:445.080600px;}
.y17_c00464{bottom:479.460450px;}
.y16_c00464{bottom:513.930450px;}
.y15_c00464{bottom:548.310450px;}
.y14_c00464{bottom:568.560450px;}
.y13_c00464{bottom:588.810450px;}
.y12_c00464{bottom:609.060450px;}
.y11_c00464{bottom:629.310450px;}
.y10_c00464{bottom:672.780450px;}
.yf_c00464{bottom:707.160450px;}
.ye_c00464{bottom:741.630450px;}
.yd_c00464{bottom:776.010450px;}
.yc_c00464{bottom:810.480450px;}
.yb_c00464{bottom:844.860450px;}
.ya_c00464{bottom:888.330450px;}
.y9_c00464{bottom:922.710450px;}
.y8_c00464{bottom:957.180450px;}
.y7_c00464{bottom:991.560450px;}
.y6_c00464{bottom:1026.030450px;}
.y5_c00464{bottom:1060.410450px;}
.y4_c00464{bottom:1094.880450px;}
.y3_c00464{bottom:1139.880450px;}
.y1_c00464{bottom:1196.850450px;}
.h8_c00464{height:47.988281px;}
.h9_c00464{height:49.937344px;}
.h1_c00464{height:50.315273px;}
.h4_c00464{height:60.257812px;}
.h7_c00464{height:65.130220px;}
.h5_c00464{height:65.130820px;}
.h6_c00464{height:65.131420px;}
.h2_c00464{height:72.160312px;}
.h3_c00464{height:81.476719px;}
.h0_c00464{height:1263.000000px;}
.w1_c00464{width:892.500000px;}
.w0_c00464{width:892.830000px;}
.x0_c00464{left:0.000000px;}
.x1_c00464{left:127.620000px;}
.x3_c00464{left:141.116220px;}
.x2_c00464{left:180.810000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.v1_c00464{vertical-align:14.080000pt;}
.v2_c00464{vertical-align:26.560000pt;}
.ls27_c00464{letter-spacing:-0.480928pt;}
.ls24_c00464{letter-spacing:-0.256000pt;}
.ls16_c00464{letter-spacing:-0.134400pt;}
.ls29_c00464{letter-spacing:-0.076608pt;}
.ls1e_c00464{letter-spacing:-0.051200pt;}
.ls22_c00464{letter-spacing:-0.038400pt;}
.ls18_c00464{letter-spacing:-0.034720pt;}
.ls1d_c00464{letter-spacing:-0.032000pt;}
.ls1c_c00464{letter-spacing:-0.025600pt;}
.ls19_c00464{letter-spacing:-0.019200pt;}
.ls2e_c00464{letter-spacing:-0.017024pt;}
.ls17_c00464{letter-spacing:-0.013888pt;}
.ls1f_c00464{letter-spacing:-0.012800pt;}
.ls2f_c00464{letter-spacing:-0.010368pt;}
.ls25_c00464{letter-spacing:-0.006912pt;}
.ls1a_c00464{letter-spacing:-0.006400pt;}
.ls2d_c00464{letter-spacing:-0.004256pt;}
.ls28_c00464{letter-spacing:-0.003456pt;}
.ls1b_c00464{letter-spacing:0.000000pt;}
.ls3_c00464{letter-spacing:0.006400pt;}
.ls6_c00464{letter-spacing:0.008320pt;}
.lsc_c00464{letter-spacing:0.008512pt;}
.ls5_c00464{letter-spacing:0.012768pt;}
.ls4_c00464{letter-spacing:0.012800pt;}
.ls10_c00464{letter-spacing:0.016640pt;}
.ls23_c00464{letter-spacing:0.019200pt;}
.ls15_c00464{letter-spacing:0.021280pt;}
.ls11_c00464{letter-spacing:0.034048pt;}
.lsa_c00464{letter-spacing:0.042560pt;}
.ls0_c00464{letter-spacing:0.042752pt;}
.lsd_c00464{letter-spacing:0.046816pt;}
.ls20_c00464{letter-spacing:0.048672pt;}
.ls14_c00464{letter-spacing:0.051072pt;}
.ls2a_c00464{letter-spacing:0.055328pt;}
.ls21_c00464{letter-spacing:0.083200pt;}
.ls9_c00464{letter-spacing:0.089376pt;}
.lsf_c00464{letter-spacing:0.168320pt;}
.ls12_c00464{letter-spacing:0.235840pt;}
.ls26_c00464{letter-spacing:0.307584pt;}
.ls2b_c00464{letter-spacing:0.321408pt;}
.lse_c00464{letter-spacing:0.340480pt;}
.ls2c_c00464{letter-spacing:0.387296pt;}
.ls13_c00464{letter-spacing:0.632320pt;}
.ls7_c00464{letter-spacing:2.552320pt;}
.ls8_c00464{letter-spacing:2.872320pt;}
.lsb_c00464{letter-spacing:2.906848pt;}
.ls2_c00464{letter-spacing:26.109440pt;}
.ls1_c00464{letter-spacing:1077.440000pt;}
.ws0_c00464{word-spacing:-17.346112pt;}
.ws9_c00464{word-spacing:-12.218976pt;}
.wsb_c00464{word-spacing:-11.865728pt;}
.ws4_c00464{word-spacing:-11.840192pt;}
.ws2_c00464{word-spacing:-11.831680pt;}
.ws6_c00464{word-spacing:-11.755072pt;}
.ws7_c00464{word-spacing:-9.929088pt;}
.ws3_c00464{word-spacing:-9.915264pt;}
.wsa_c00464{word-spacing:-9.607680pt;}
.ws5_c00464{word-spacing:-9.604224pt;}
.ws8_c00464{word-spacing:-9.600768pt;}
.wsc_c00464{word-spacing:-9.597312pt;}
.ws1_c00464{word-spacing:-9.408672pt;}
.ws1e_c00464{word-spacing:-0.083200pt;}
.wsf_c00464{word-spacing:-0.048608pt;}
.ws3b_c00464{word-spacing:-0.038304pt;}
.ws46_c00464{word-spacing:-0.034048pt;}
.ws3f_c00464{word-spacing:-0.029792pt;}
.ws40_c00464{word-spacing:-0.017024pt;}
.ws30_c00464{word-spacing:-0.006400pt;}
.ws47_c00464{word-spacing:-0.004256pt;}
.wse_c00464{word-spacing:0.000000pt;}
.ws3d_c00464{word-spacing:0.003456pt;}
.ws3c_c00464{word-spacing:0.004256pt;}
.ws27_c00464{word-spacing:0.006400pt;}
.ws1c_c00464{word-spacing:0.012800pt;}
.ws28_c00464{word-spacing:0.019200pt;}
.ws31_c00464{word-spacing:0.032000pt;}
.ws45_c00464{word-spacing:0.034048pt;}
.wsd_c00464{word-spacing:0.037408pt;}
.ws1d_c00464{word-spacing:0.051200pt;}
.ws26_c00464{word-spacing:0.064000pt;}
.ws2e_c00464{word-spacing:0.320000pt;}
.ws3e_c00464{word-spacing:0.412832pt;}
.ws32_c00464{word-spacing:0.576000pt;}
.ws42_c00464{word-spacing:0.612864pt;}
.ws41_c00464{word-spacing:0.642656pt;}
.ws43_c00464{word-spacing:0.646912pt;}
.ws44_c00464{word-spacing:0.659680pt;}
.ws24_c00464{word-spacing:0.915200pt;}
.ws1b_c00464{word-spacing:0.960000pt;}
.ws19_c00464{word-spacing:0.992000pt;}
.ws25_c00464{word-spacing:0.998400pt;}
.ws1a_c00464{word-spacing:1.011200pt;}
.ws11_c00464{word-spacing:1.907200pt;}
.ws2f_c00464{word-spacing:1.945600pt;}
.ws10_c00464{word-spacing:2.041600pt;}
.ws39_c00464{word-spacing:2.532320pt;}
.ws14_c00464{word-spacing:2.547200pt;}
.ws36_c00464{word-spacing:2.562112pt;}
.ws37_c00464{word-spacing:2.564352pt;}
.ws3a_c00464{word-spacing:2.566368pt;}
.ws18_c00464{word-spacing:2.585600pt;}
.ws13_c00464{word-spacing:2.604800pt;}
.ws17_c00464{word-spacing:2.611200pt;}
.ws15_c00464{word-spacing:2.848000pt;}
.ws16_c00464{word-spacing:2.899200pt;}
.ws38_c00464{word-spacing:3.055808pt;}
.ws12_c00464{word-spacing:3.257600pt;}
.ws22_c00464{word-spacing:3.840000pt;}
.ws23_c00464{word-spacing:3.878400pt;}
.ws2d_c00464{word-spacing:4.454400pt;}
.ws2c_c00464{word-spacing:4.512000pt;}
.ws35_c00464{word-spacing:6.041600pt;}
.ws34_c00464{word-spacing:6.092800pt;}
.ws20_c00464{word-spacing:7.686400pt;}
.ws2b_c00464{word-spacing:10.265600pt;}
.ws2a_c00464{word-spacing:10.323200pt;}
.ws21_c00464{word-spacing:11.884800pt;}
.ws33_c00464{word-spacing:12.505600pt;}
.ws29_c00464{word-spacing:15.667200pt;}
.ws1f_c00464{word-spacing:18.585600pt;}
._0_c00464{margin-left:-1.175680pt;}
._1_c00464{width:0.960000pt;}
._2_c00464{width:2.693696pt;}
.fs6_c00464{font-size:34.560000pt;}
.fs4_c00464{font-size:37.440000pt;}
.fs5_c00464{font-size:42.560000pt;}
.fs2_c00464{font-size:48.000000pt;}
.fs0_c00464{font-size:53.440000pt;}
.fs1_c00464{font-size:64.000000pt;}
.fs3_c00464{font-size:69.440000pt;}
.y0_c00464{bottom:0.000000pt;}
.y2_c00464{bottom:51.067067pt;}
.y27_c00464{bottom:78.429307pt;}
.y26_c00464{bottom:94.665947pt;}
.y25_c00464{bottom:106.990427pt;}
.y24_c00464{bottom:123.230427pt;}
.y23_c00464{bottom:139.469307pt;}
.y22_c00464{bottom:155.791067pt;}
.y21_c00464{bottom:168.027067pt;}
.y20_c00464{bottom:181.547067pt;}
.y1f_c00464{bottom:199.947067pt;}
.y1e_c00464{bottom:218.347067pt;}
.y1d_c00464{bottom:242.587067pt;}
.y1c_c00464{bottom:273.227067pt;}
.y1b_c00464{bottom:303.787200pt;}
.y1a_c00464{bottom:334.427200pt;}
.y19_c00464{bottom:364.987200pt;}
.y18_c00464{bottom:395.627200pt;}
.y17_c00464{bottom:426.187067pt;}
.y16_c00464{bottom:456.827067pt;}
.y15_c00464{bottom:487.387067pt;}
.y14_c00464{bottom:505.387067pt;}
.y13_c00464{bottom:523.387067pt;}
.y12_c00464{bottom:541.387067pt;}
.y11_c00464{bottom:559.387067pt;}
.y10_c00464{bottom:598.027067pt;}
.yf_c00464{bottom:628.587067pt;}
.ye_c00464{bottom:659.227067pt;}
.yd_c00464{bottom:689.787067pt;}
.yc_c00464{bottom:720.427067pt;}
.yb_c00464{bottom:750.987067pt;}
.ya_c00464{bottom:789.627067pt;}
.y9_c00464{bottom:820.187067pt;}
.y8_c00464{bottom:850.827067pt;}
.y7_c00464{bottom:881.387067pt;}
.y6_c00464{bottom:912.027067pt;}
.y5_c00464{bottom:942.587067pt;}
.y4_c00464{bottom:973.227067pt;}
.y3_c00464{bottom:1013.227067pt;}
.y1_c00464{bottom:1063.867067pt;}
.h8_c00464{height:42.656250pt;}
.h9_c00464{height:44.388750pt;}
.h1_c00464{height:44.724687pt;}
.h4_c00464{height:53.562500pt;}
.h7_c00464{height:57.893529pt;}
.h5_c00464{height:57.894063pt;}
.h6_c00464{height:57.894596pt;}
.h2_c00464{height:64.142500pt;}
.h3_c00464{height:72.423750pt;}
.h0_c00464{height:1122.666667pt;}
.w1_c00464{width:793.333333pt;}
.w0_c00464{width:793.626667pt;}
.x0_c00464{left:0.000000pt;}
.x1_c00464{left:113.440000pt;}
.x3_c00464{left:125.436640pt;}
.x2_c00464{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_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_7fed659b1585a9ec274900a5.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00465;src:url('chunks/assets/font_49faefc4e543834aa563dcbf.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00465;src:url('chunks/assets/font_b5559ddb846ad5aa05e6d039.woff2')format("woff");}.ff4_c00465{font-family:ff4_c00465;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00465;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00465{font-family:ff5_c00465;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_c00465;src:url('chunks/assets/font_7920ae36930ea4dbf2483c49.woff2')format("woff");}.ff6_c00465{font-family:ff6_c00465;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_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00465{vertical-align:-29.880000px;}
.v0_c00465{vertical-align:0.000000px;}
.v1_c00465{vertical-align:29.880000px;}
.ls26_c00465{letter-spacing:-0.181944px;}
.ls16_c00465{letter-spacing:-0.151200px;}
.ls23_c00465{letter-spacing:-0.086184px;}
.ls20_c00465{letter-spacing:-0.057600px;}
.ls1e_c00465{letter-spacing:-0.043200px;}
.ls13_c00465{letter-spacing:-0.030060px;}
.ls1a_c00465{letter-spacing:-0.028800px;}
.ls19_c00465{letter-spacing:-0.021600px;}
.ls1b_c00465{letter-spacing:-0.015624px;}
.ls1d_c00465{letter-spacing:-0.014400px;}
.ls21_c00465{letter-spacing:-0.007776px;}
.ls17_c00465{letter-spacing:-0.007200px;}
.ls14_c00465{letter-spacing:-0.006012px;}
.ls24_c00465{letter-spacing:-0.003888px;}
.ls15_c00465{letter-spacing:0.000000px;}
.ls5_c00465{letter-spacing:0.007200px;}
.ls1_c00465{letter-spacing:0.007812px;}
.ls8_c00465{letter-spacing:0.009360px;}
.ls10_c00465{letter-spacing:0.009576px;}
.ls7_c00465{letter-spacing:0.014364px;}
.ls0_c00465{letter-spacing:0.014400px;}
.lsf_c00465{letter-spacing:0.019152px;}
.ls3_c00465{letter-spacing:0.021600px;}
.ls1c_c00465{letter-spacing:0.028800px;}
.lsb_c00465{letter-spacing:0.033516px;}
.ls11_c00465{letter-spacing:0.038304px;}
.ls4_c00465{letter-spacing:0.043200px;}
.lsa_c00465{letter-spacing:0.052668px;}
.ls18_c00465{letter-spacing:0.054756px;}
.ls6_c00465{letter-spacing:0.057600px;}
.lse_c00465{letter-spacing:0.067032px;}
.ls1f_c00465{letter-spacing:0.093600px;}
.ls9_c00465{letter-spacing:0.100548px;}
.ls12_c00465{letter-spacing:0.104040px;}
.lsc_c00465{letter-spacing:0.351360px;}
.ls22_c00465{letter-spacing:0.361584px;}
.ls25_c00465{letter-spacing:0.373464px;}
.lsd_c00465{letter-spacing:0.435960px;}
.ls2_c00465{letter-spacing:23.670360px;}
.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;}
}
.ws1_c00465{word-spacing:-19.537812px;}
.ws6_c00465{word-spacing:-13.320216px;}
.ws2_c00465{word-spacing:-13.310640px;}
.ws5_c00465{word-spacing:-13.224456px;}
.ws3_c00465{word-spacing:-11.170224px;}
.ws4_c00465{word-spacing:-10.800864px;}
.ws0_c00465{word-spacing:-10.584756px;}
.ws8_c00465{word-spacing:-0.264528px;}
.ws7_c00465{word-spacing:-0.240480px;}
.ws27_c00465{word-spacing:-0.086400px;}
.ws12_c00465{word-spacing:-0.078120px;}
.ws33_c00465{word-spacing:-0.033516px;}
.ws39_c00465{word-spacing:-0.019152px;}
.ws34_c00465{word-spacing:-0.014364px;}
.ws9_c00465{word-spacing:0.000000px;}
.ws31_c00465{word-spacing:0.003888px;}
.ws30_c00465{word-spacing:0.004788px;}
.ws26_c00465{word-spacing:0.014400px;}
.ws35_c00465{word-spacing:0.201096px;}
.ws32_c00465{word-spacing:0.464436px;}
.wsd_c00465{word-spacing:3.247200px;}
.wse_c00465{word-spacing:3.312000px;}
.ws18_c00465{word-spacing:3.535200px;}
.ws19_c00465{word-spacing:3.614400px;}
.wsb_c00465{word-spacing:4.233600px;}
.wsc_c00465{word-spacing:4.255200px;}
.ws2a_c00465{word-spacing:4.334400px;}
.ws1f_c00465{word-spacing:6.148800px;}
.ws1e_c00465{word-spacing:6.199200px;}
.ws2b_c00465{word-spacing:6.494400px;}
.ws2c_c00465{word-spacing:6.552000px;}
.ws1c_c00465{word-spacing:6.926400px;}
.ws16_c00465{word-spacing:7.876800px;}
.ws14_c00465{word-spacing:7.884000px;}
.ws17_c00465{word-spacing:7.891200px;}
.ws15_c00465{word-spacing:7.898400px;}
.ws13_c00465{word-spacing:7.927200px;}
.ws2e_c00465{word-spacing:8.575200px;}
.ws21_c00465{word-spacing:8.647200px;}
.ws2d_c00465{word-spacing:8.654400px;}
.ws2f_c00465{word-spacing:8.697600px;}
.ws20_c00465{word-spacing:8.726400px;}
.ws28_c00465{word-spacing:9.734400px;}
.ws29_c00465{word-spacing:9.792000px;}
.ws24_c00465{word-spacing:10.382400px;}
.ws23_c00465{word-spacing:10.432800px;}
.ws22_c00465{word-spacing:10.440000px;}
.wsa_c00465{word-spacing:10.476000px;}
.ws25_c00465{word-spacing:10.692000px;}
.ws11_c00465{word-spacing:10.857600px;}
.ws10_c00465{word-spacing:10.864800px;}
.ws1a_c00465{word-spacing:11.167200px;}
.ws1b_c00465{word-spacing:11.203200px;}
.wsf_c00465{word-spacing:12.268800px;}
.ws38_c00465{word-spacing:16.149924px;}
.ws37_c00465{word-spacing:16.183440px;}
.ws36_c00465{word-spacing:16.202592px;}
.ws1d_c00465{word-spacing:25.200000px;}
._1_c00465{margin-left:-1.123200px;}
._0_c00465{width:1.052100px;}
._2_c00465{width:16.465788px;}
.fc0_c00465{color:rgb(0,0,0);}
.fs6_c00465{font-size:38.880000px;}
.fs3_c00465{font-size:42.120000px;}
.fs5_c00465{font-size:47.880000px;}
.fs2_c00465{font-size:54.000000px;}
.fs0_c00465{font-size:60.120000px;}
.fs1_c00465{font-size:72.000000px;}
.fs4_c00465{font-size:78.120000px;}
.y0_c00465{bottom:0.000000px;}
.y3_c00465{bottom:57.450450px;}
.y4_c00465{bottom:61.410450px;}
.y26_c00465{bottom:88.234230px;}
.y25_c00465{bottom:106.502970px;}
.y24_c00465{bottom:124.864950px;}
.y23_c00465{bottom:138.634230px;}
.y22_c00465{bottom:156.898470px;}
.y21_c00465{bottom:175.268010px;}
.y20_c00465{bottom:193.534230px;}
.y1f_c00465{bottom:211.800450px;}
.y1e_c00465{bottom:227.010450px;}
.y1d_c00465{bottom:247.710450px;}
.y1c_c00465{bottom:268.410450px;}
.y1b_c00465{bottom:344.910600px;}
.y1a_c00465{bottom:379.380600px;}
.y19_c00465{bottom:413.760600px;}
.y18_c00465{bottom:448.230600px;}
.y17_c00465{bottom:482.610450px;}
.y16_c00465{bottom:517.080450px;}
.y15_c00465{bottom:551.460450px;}
.y14_c00465{bottom:585.930600px;}
.y13_c00465{bottom:620.310600px;}
.y12_c00465{bottom:654.780600px;}
.y11_c00465{bottom:689.160600px;}
.y10_c00465{bottom:723.630600px;}
.yf_c00465{bottom:758.010600px;}
.ye_c00465{bottom:792.480600px;}
.yd_c00465{bottom:826.860450px;}
.yc_c00465{bottom:861.330450px;}
.yb_c00465{bottom:906.330450px;}
.ya_c00465{bottom:969.060450px;}
.y9_c00465{bottom:1003.440450px;}
.y8_c00465{bottom:1037.910450px;}
.y7_c00465{bottom:1072.290450px;}
.y6_c00465{bottom:1106.760450px;}
.y5_c00465{bottom:1141.140450px;}
.y2_c00465{bottom:1176.420450px;}
.y1_c00465{bottom:1196.940450px;}
.h2_c00465{height:47.988281px;}
.h8_c00465{height:49.937344px;}
.h9_c00465{height:49.945264px;}
.h1_c00465{height:50.315273px;}
.h3_c00465{height:56.320312px;}
.h4_c00465{height:60.257812px;}
.h7_c00465{height:65.130220px;}
.h5_c00465{height:65.130820px;}
.h6_c00465{height:81.476719px;}
.h0_c00465{height:1263.000000px;}
.w1_c00465{width:892.500000px;}
.w0_c00465{width:892.830000px;}
.x0_c00465{left:0.000000px;}
.x2_c00465{left:127.620000px;}
.x6_c00465{left:141.128730px;}
.x5_c00465{left:180.810000px;}
.x1_c00465{left:217.440000px;}
.x4_c00465{left:435.240000px;}
.x3_c00465{left:446.490000px;}
@media print{
.v2_c00465{vertical-align:-26.560000pt;}
.v0_c00465{vertical-align:0.000000pt;}
.v1_c00465{vertical-align:26.560000pt;}
.ls26_c00465{letter-spacing:-0.161728pt;}
.ls16_c00465{letter-spacing:-0.134400pt;}
.ls23_c00465{letter-spacing:-0.076608pt;}
.ls20_c00465{letter-spacing:-0.051200pt;}
.ls1e_c00465{letter-spacing:-0.038400pt;}
.ls13_c00465{letter-spacing:-0.026720pt;}
.ls1a_c00465{letter-spacing:-0.025600pt;}
.ls19_c00465{letter-spacing:-0.019200pt;}
.ls1b_c00465{letter-spacing:-0.013888pt;}
.ls1d_c00465{letter-spacing:-0.012800pt;}
.ls21_c00465{letter-spacing:-0.006912pt;}
.ls17_c00465{letter-spacing:-0.006400pt;}
.ls14_c00465{letter-spacing:-0.005344pt;}
.ls24_c00465{letter-spacing:-0.003456pt;}
.ls15_c00465{letter-spacing:0.000000pt;}
.ls5_c00465{letter-spacing:0.006400pt;}
.ls1_c00465{letter-spacing:0.006944pt;}
.ls8_c00465{letter-spacing:0.008320pt;}
.ls10_c00465{letter-spacing:0.008512pt;}
.ls7_c00465{letter-spacing:0.012768pt;}
.ls0_c00465{letter-spacing:0.012800pt;}
.lsf_c00465{letter-spacing:0.017024pt;}
.ls3_c00465{letter-spacing:0.019200pt;}
.ls1c_c00465{letter-spacing:0.025600pt;}
.lsb_c00465{letter-spacing:0.029792pt;}
.ls11_c00465{letter-spacing:0.034048pt;}
.ls4_c00465{letter-spacing:0.038400pt;}
.lsa_c00465{letter-spacing:0.046816pt;}
.ls18_c00465{letter-spacing:0.048672pt;}
.ls6_c00465{letter-spacing:0.051200pt;}
.lse_c00465{letter-spacing:0.059584pt;}
.ls1f_c00465{letter-spacing:0.083200pt;}
.ls9_c00465{letter-spacing:0.089376pt;}
.ls12_c00465{letter-spacing:0.092480pt;}
.lsc_c00465{letter-spacing:0.312320pt;}
.ls22_c00465{letter-spacing:0.321408pt;}
.ls25_c00465{letter-spacing:0.331968pt;}
.lsd_c00465{letter-spacing:0.387520pt;}
.ls2_c00465{letter-spacing:21.040320pt;}
.ws1_c00465{word-spacing:-17.366944pt;}
.ws6_c00465{word-spacing:-11.840192pt;}
.ws2_c00465{word-spacing:-11.831680pt;}
.ws5_c00465{word-spacing:-11.755072pt;}
.ws3_c00465{word-spacing:-9.929088pt;}
.ws4_c00465{word-spacing:-9.600768pt;}
.ws0_c00465{word-spacing:-9.408672pt;}
.ws8_c00465{word-spacing:-0.235136pt;}
.ws7_c00465{word-spacing:-0.213760pt;}
.ws27_c00465{word-spacing:-0.076800pt;}
.ws12_c00465{word-spacing:-0.069440pt;}
.ws33_c00465{word-spacing:-0.029792pt;}
.ws39_c00465{word-spacing:-0.017024pt;}
.ws34_c00465{word-spacing:-0.012768pt;}
.ws9_c00465{word-spacing:0.000000pt;}
.ws31_c00465{word-spacing:0.003456pt;}
.ws30_c00465{word-spacing:0.004256pt;}
.ws26_c00465{word-spacing:0.012800pt;}
.ws35_c00465{word-spacing:0.178752pt;}
.ws32_c00465{word-spacing:0.412832pt;}
.wsd_c00465{word-spacing:2.886400pt;}
.wse_c00465{word-spacing:2.944000pt;}
.ws18_c00465{word-spacing:3.142400pt;}
.ws19_c00465{word-spacing:3.212800pt;}
.wsb_c00465{word-spacing:3.763200pt;}
.wsc_c00465{word-spacing:3.782400pt;}
.ws2a_c00465{word-spacing:3.852800pt;}
.ws1f_c00465{word-spacing:5.465600pt;}
.ws1e_c00465{word-spacing:5.510400pt;}
.ws2b_c00465{word-spacing:5.772800pt;}
.ws2c_c00465{word-spacing:5.824000pt;}
.ws1c_c00465{word-spacing:6.156800pt;}
.ws16_c00465{word-spacing:7.001600pt;}
.ws14_c00465{word-spacing:7.008000pt;}
.ws17_c00465{word-spacing:7.014400pt;}
.ws15_c00465{word-spacing:7.020800pt;}
.ws13_c00465{word-spacing:7.046400pt;}
.ws2e_c00465{word-spacing:7.622400pt;}
.ws21_c00465{word-spacing:7.686400pt;}
.ws2d_c00465{word-spacing:7.692800pt;}
.ws2f_c00465{word-spacing:7.731200pt;}
.ws20_c00465{word-spacing:7.756800pt;}
.ws28_c00465{word-spacing:8.652800pt;}
.ws29_c00465{word-spacing:8.704000pt;}
.ws24_c00465{word-spacing:9.228800pt;}
.ws23_c00465{word-spacing:9.273600pt;}
.ws22_c00465{word-spacing:9.280000pt;}
.wsa_c00465{word-spacing:9.312000pt;}
.ws25_c00465{word-spacing:9.504000pt;}
.ws11_c00465{word-spacing:9.651200pt;}
.ws10_c00465{word-spacing:9.657600pt;}
.ws1a_c00465{word-spacing:9.926400pt;}
.ws1b_c00465{word-spacing:9.958400pt;}
.wsf_c00465{word-spacing:10.905600pt;}
.ws38_c00465{word-spacing:14.355488pt;}
.ws37_c00465{word-spacing:14.385280pt;}
.ws36_c00465{word-spacing:14.402304pt;}
.ws1d_c00465{word-spacing:22.400000pt;}
._1_c00465{margin-left:-0.998400pt;}
._0_c00465{width:0.935200pt;}
._2_c00465{width:14.636256pt;}
.fs6_c00465{font-size:34.560000pt;}
.fs3_c00465{font-size:37.440000pt;}
.fs5_c00465{font-size:42.560000pt;}
.fs2_c00465{font-size:48.000000pt;}
.fs0_c00465{font-size:53.440000pt;}
.fs1_c00465{font-size:64.000000pt;}
.fs4_c00465{font-size:69.440000pt;}
.y0_c00465{bottom:0.000000pt;}
.y3_c00465{bottom:51.067067pt;}
.y4_c00465{bottom:54.587067pt;}
.y26_c00465{bottom:78.430427pt;}
.y25_c00465{bottom:94.669307pt;}
.y24_c00465{bottom:110.991067pt;}
.y23_c00465{bottom:123.230427pt;}
.y22_c00465{bottom:139.465307pt;}
.y21_c00465{bottom:155.793787pt;}
.y20_c00465{bottom:172.030427pt;}
.y1f_c00465{bottom:188.267067pt;}
.y1e_c00465{bottom:201.787067pt;}
.y1d_c00465{bottom:220.187067pt;}
.y1c_c00465{bottom:238.587067pt;}
.y1b_c00465{bottom:306.587200pt;}
.y1a_c00465{bottom:337.227200pt;}
.y19_c00465{bottom:367.787200pt;}
.y18_c00465{bottom:398.427200pt;}
.y17_c00465{bottom:428.987067pt;}
.y16_c00465{bottom:459.627067pt;}
.y15_c00465{bottom:490.187067pt;}
.y14_c00465{bottom:520.827200pt;}
.y13_c00465{bottom:551.387200pt;}
.y12_c00465{bottom:582.027200pt;}
.y11_c00465{bottom:612.587200pt;}
.y10_c00465{bottom:643.227200pt;}
.yf_c00465{bottom:673.787200pt;}
.ye_c00465{bottom:704.427200pt;}
.yd_c00465{bottom:734.987067pt;}
.yc_c00465{bottom:765.627067pt;}
.yb_c00465{bottom:805.627067pt;}
.ya_c00465{bottom:861.387067pt;}
.y9_c00465{bottom:891.947067pt;}
.y8_c00465{bottom:922.587067pt;}
.y7_c00465{bottom:953.147067pt;}
.y6_c00465{bottom:983.787067pt;}
.y5_c00465{bottom:1014.347067pt;}
.y2_c00465{bottom:1045.707067pt;}
.y1_c00465{bottom:1063.947067pt;}
.h2_c00465{height:42.656250pt;}
.h8_c00465{height:44.388750pt;}
.h9_c00465{height:44.395790pt;}
.h1_c00465{height:44.724687pt;}
.h3_c00465{height:50.062500pt;}
.h4_c00465{height:53.562500pt;}
.h7_c00465{height:57.893529pt;}
.h5_c00465{height:57.894063pt;}
.h6_c00465{height:72.423750pt;}
.h0_c00465{height:1122.666667pt;}
.w1_c00465{width:793.333333pt;}
.w0_c00465{width:793.626667pt;}
.x0_c00465{left:0.000000pt;}
.x2_c00465{left:113.440000pt;}
.x6_c00465{left:125.447760pt;}
.x5_c00465{left:160.720000pt;}
.x1_c00465{left:193.280000pt;}
.x4_c00465{left:386.880000pt;}
.x3_c00465{left:396.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_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_ab21083560f7e9acf3687e52.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00466;src:url('chunks/assets/font_43ffd7cc1a3ad7ee37e5a8da.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00466;src:url('chunks/assets/font_212f4505552d4d7ae41aab8d.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00466;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00466{font-family:ff5_c00466;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_c00466;src:url('chunks/assets/font_ce870ecb6446ab83c5898ff2.woff2')format("woff");}.ff6_c00466{font-family:ff6_c00466;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_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;}
.v1_c00466{vertical-align:15.840000px;}
.v2_c00466{vertical-align:29.880000px;}
.ls15_c00466{letter-spacing:-0.151200px;}
.ls1b_c00466{letter-spacing:-0.039060px;}
.ls1e_c00466{letter-spacing:-0.028800px;}
.ls1a_c00466{letter-spacing:-0.021600px;}
.ls22_c00466{letter-spacing:-0.019152px;}
.ls1d_c00466{letter-spacing:-0.014400px;}
.ls20_c00466{letter-spacing:-0.007776px;}
.ls17_c00466{letter-spacing:-0.007200px;}
.ls16_c00466{letter-spacing:0.000000px;}
.ls8_c00466{letter-spacing:0.007200px;}
.ls4_c00466{letter-spacing:0.007812px;}
.ls13_c00466{letter-spacing:0.009360px;}
.lsa_c00466{letter-spacing:0.009576px;}
.lsd_c00466{letter-spacing:0.014364px;}
.ls7_c00466{letter-spacing:0.014400px;}
.ls3_c00466{letter-spacing:0.021600px;}
.ls11_c00466{letter-spacing:0.023940px;}
.ls12_c00466{letter-spacing:0.028728px;}
.ls9_c00466{letter-spacing:0.028800px;}
.lsc_c00466{letter-spacing:0.033516px;}
.ls6_c00466{letter-spacing:0.036000px;}
.lsb_c00466{letter-spacing:0.038304px;}
.ls2_c00466{letter-spacing:0.043200px;}
.ls0_c00466{letter-spacing:0.048096px;}
.lsf_c00466{letter-spacing:0.052668px;}
.ls18_c00466{letter-spacing:0.054756px;}
.ls10_c00466{letter-spacing:0.067032px;}
.ls1c_c00466{letter-spacing:0.072000px;}
.ls19_c00466{letter-spacing:0.093600px;}
.ls21_c00466{letter-spacing:0.346032px;}
.ls14_c00466{letter-spacing:0.351360px;}
.ls1f_c00466{letter-spacing:0.353808px;}
.lse_c00466{letter-spacing:0.464040px;}
.ls5_c00466{letter-spacing:23.670360px;}
.ls1_c00466{letter-spacing:1212.120000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00466{word-spacing:-19.537812px;}
.ws2_c00466{word-spacing:-13.320216px;}
.ws5_c00466{word-spacing:-13.291488px;}
.ws4_c00466{word-spacing:-11.154672px;}
.ws3_c00466{word-spacing:-10.800864px;}
.ws0_c00466{word-spacing:-10.584756px;}
.ws1b_c00466{word-spacing:-0.093600px;}
.ws1a_c00466{word-spacing:-0.086400px;}
.ws10_c00466{word-spacing:-0.054684px;}
.ws30_c00466{word-spacing:-0.019152px;}
.wsf_c00466{word-spacing:-0.014400px;}
.ws38_c00466{word-spacing:-0.014364px;}
.ws7_c00466{word-spacing:0.000000px;}
.ws37_c00466{word-spacing:0.004788px;}
.wsb_c00466{word-spacing:0.007200px;}
.ws6_c00466{word-spacing:0.042084px;}
.ws2a_c00466{word-spacing:0.043200px;}
.ws2b_c00466{word-spacing:0.129600px;}
.ws36_c00466{word-spacing:0.708624px;}
.ws15_c00466{word-spacing:2.088000px;}
.ws14_c00466{word-spacing:2.124000px;}
.ws13_c00466{word-spacing:2.152800px;}
.ws16_c00466{word-spacing:2.174400px;}
.wsc_c00466{word-spacing:2.210400px;}
.ws35_c00466{word-spacing:2.470608px;}
.ws19_c00466{word-spacing:2.484000px;}
.ws34_c00466{word-spacing:2.484972px;}
.ws33_c00466{word-spacing:2.504124px;}
.ws31_c00466{word-spacing:2.523276px;}
.ws32_c00466{word-spacing:2.523312px;}
.ws17_c00466{word-spacing:2.527200px;}
.ws18_c00466{word-spacing:2.577600px;}
.ws1c_c00466{word-spacing:3.240000px;}
.ws1d_c00466{word-spacing:3.290400px;}
.ws11_c00466{word-spacing:3.607200px;}
.ws12_c00466{word-spacing:3.621600px;}
.ws2c_c00466{word-spacing:3.952800px;}
.ws2d_c00466{word-spacing:4.024800px;}
.ws9_c00466{word-spacing:6.076800px;}
.ws8_c00466{word-spacing:6.120000px;}
.wsa_c00466{word-spacing:6.199200px;}
.wsd_c00466{word-spacing:7.178400px;}
.wse_c00466{word-spacing:7.257600px;}
.ws24_c00466{word-spacing:9.691200px;}
.ws23_c00466{word-spacing:9.770400px;}
.ws25_c00466{word-spacing:9.849600px;}
.ws1e_c00466{word-spacing:10.094400px;}
.ws1f_c00466{word-spacing:10.137600px;}
.ws21_c00466{word-spacing:11.095200px;}
.ws22_c00466{word-spacing:11.174400px;}
.ws27_c00466{word-spacing:12.225600px;}
.ws26_c00466{word-spacing:12.326400px;}
.ws20_c00466{word-spacing:12.981600px;}
.ws2e_c00466{word-spacing:13.327200px;}
.ws2f_c00466{word-spacing:13.377600px;}
.ws28_c00466{word-spacing:14.054400px;}
.ws29_c00466{word-spacing:14.068800px;}
._2_c00466{margin-left:-3.240000px;}
._0_c00466{margin-left:-1.322640px;}
._1_c00466{width:1.296000px;}
.fc0_c00466{color:rgb(0,0,0);}
.fs6_c00466{font-size:38.880000px;}
.fs3_c00466{font-size:42.120000px;}
.fs5_c00466{font-size:47.880000px;}
.fs2_c00466{font-size:54.000000px;}
.fs0_c00466{font-size:60.120000px;}
.fs1_c00466{font-size:72.000000px;}
.fs4_c00466{font-size:78.120000px;}
.y0_c00466{bottom:0.000000px;}
.y2_c00466{bottom:57.450450px;}
.y22_c00466{bottom:88.233690px;}
.y21_c00466{bottom:101.999190px;}
.y20_c00466{bottom:115.866030px;}
.y1f_c00466{bottom:134.132250px;}
.y1e_c00466{bottom:152.398470px;}
.y1d_c00466{bottom:170.760450px;}
.y1c_c00466{bottom:185.970600px;}
.y1b_c00466{bottom:206.670600px;}
.y1a_c00466{bottom:227.370450px;}
.y19_c00466{bottom:344.910450px;}
.y18_c00466{bottom:379.380450px;}
.y17_c00466{bottom:413.760450px;}
.y16_c00466{bottom:448.230450px;}
.y15_c00466{bottom:482.610450px;}
.y14_c00466{bottom:517.080450px;}
.y13_c00466{bottom:551.460450px;}
.y12_c00466{bottom:585.930450px;}
.y11_c00466{bottom:620.310450px;}
.y10_c00466{bottom:654.780450px;}
.yf_c00466{bottom:689.160450px;}
.ye_c00466{bottom:723.630450px;}
.yd_c00466{bottom:758.010450px;}
.yc_c00466{bottom:792.480450px;}
.yb_c00466{bottom:826.860450px;}
.ya_c00466{bottom:861.330450px;}
.y9_c00466{bottom:895.710450px;}
.y8_c00466{bottom:940.800450px;}
.y7_c00466{bottom:1003.440450px;}
.y6_c00466{bottom:1037.910450px;}
.y5_c00466{bottom:1072.290450px;}
.y4_c00466{bottom:1106.760450px;}
.y3_c00466{bottom:1141.140450px;}
.y1_c00466{bottom:1196.850450px;}
.h7_c00466{height:47.988281px;}
.h6_c00466{height:47.988881px;}
.h8_c00466{height:49.937344px;}
.h1_c00466{height:50.315273px;}
.h3_c00466{height:60.257812px;}
.h4_c00466{height:65.130820px;}
.h2_c00466{height:72.160312px;}
.h5_c00466{height:81.476719px;}
.h0_c00466{height:1263.000000px;}
.w1_c00466{width:892.500000px;}
.w0_c00466{width:892.830000px;}
.x0_c00466{left:0.000000px;}
.x1_c00466{left:127.620000px;}
.x3_c00466{left:141.113250px;}
.x2_c00466{left:180.810000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.v1_c00466{vertical-align:14.080000pt;}
.v2_c00466{vertical-align:26.560000pt;}
.ls15_c00466{letter-spacing:-0.134400pt;}
.ls1b_c00466{letter-spacing:-0.034720pt;}
.ls1e_c00466{letter-spacing:-0.025600pt;}
.ls1a_c00466{letter-spacing:-0.019200pt;}
.ls22_c00466{letter-spacing:-0.017024pt;}
.ls1d_c00466{letter-spacing:-0.012800pt;}
.ls20_c00466{letter-spacing:-0.006912pt;}
.ls17_c00466{letter-spacing:-0.006400pt;}
.ls16_c00466{letter-spacing:0.000000pt;}
.ls8_c00466{letter-spacing:0.006400pt;}
.ls4_c00466{letter-spacing:0.006944pt;}
.ls13_c00466{letter-spacing:0.008320pt;}
.lsa_c00466{letter-spacing:0.008512pt;}
.lsd_c00466{letter-spacing:0.012768pt;}
.ls7_c00466{letter-spacing:0.012800pt;}
.ls3_c00466{letter-spacing:0.019200pt;}
.ls11_c00466{letter-spacing:0.021280pt;}
.ls12_c00466{letter-spacing:0.025536pt;}
.ls9_c00466{letter-spacing:0.025600pt;}
.lsc_c00466{letter-spacing:0.029792pt;}
.ls6_c00466{letter-spacing:0.032000pt;}
.lsb_c00466{letter-spacing:0.034048pt;}
.ls2_c00466{letter-spacing:0.038400pt;}
.ls0_c00466{letter-spacing:0.042752pt;}
.lsf_c00466{letter-spacing:0.046816pt;}
.ls18_c00466{letter-spacing:0.048672pt;}
.ls10_c00466{letter-spacing:0.059584pt;}
.ls1c_c00466{letter-spacing:0.064000pt;}
.ls19_c00466{letter-spacing:0.083200pt;}
.ls21_c00466{letter-spacing:0.307584pt;}
.ls14_c00466{letter-spacing:0.312320pt;}
.ls1f_c00466{letter-spacing:0.314496pt;}
.lse_c00466{letter-spacing:0.412480pt;}
.ls5_c00466{letter-spacing:21.040320pt;}
.ls1_c00466{letter-spacing:1077.440000pt;}
.ws1_c00466{word-spacing:-17.366944pt;}
.ws2_c00466{word-spacing:-11.840192pt;}
.ws5_c00466{word-spacing:-11.814656pt;}
.ws4_c00466{word-spacing:-9.915264pt;}
.ws3_c00466{word-spacing:-9.600768pt;}
.ws0_c00466{word-spacing:-9.408672pt;}
.ws1b_c00466{word-spacing:-0.083200pt;}
.ws1a_c00466{word-spacing:-0.076800pt;}
.ws10_c00466{word-spacing:-0.048608pt;}
.ws30_c00466{word-spacing:-0.017024pt;}
.wsf_c00466{word-spacing:-0.012800pt;}
.ws38_c00466{word-spacing:-0.012768pt;}
.ws7_c00466{word-spacing:0.000000pt;}
.ws37_c00466{word-spacing:0.004256pt;}
.wsb_c00466{word-spacing:0.006400pt;}
.ws6_c00466{word-spacing:0.037408pt;}
.ws2a_c00466{word-spacing:0.038400pt;}
.ws2b_c00466{word-spacing:0.115200pt;}
.ws36_c00466{word-spacing:0.629888pt;}
.ws15_c00466{word-spacing:1.856000pt;}
.ws14_c00466{word-spacing:1.888000pt;}
.ws13_c00466{word-spacing:1.913600pt;}
.ws16_c00466{word-spacing:1.932800pt;}
.wsc_c00466{word-spacing:1.964800pt;}
.ws35_c00466{word-spacing:2.196096pt;}
.ws19_c00466{word-spacing:2.208000pt;}
.ws34_c00466{word-spacing:2.208864pt;}
.ws33_c00466{word-spacing:2.225888pt;}
.ws31_c00466{word-spacing:2.242912pt;}
.ws32_c00466{word-spacing:2.242944pt;}
.ws17_c00466{word-spacing:2.246400pt;}
.ws18_c00466{word-spacing:2.291200pt;}
.ws1c_c00466{word-spacing:2.880000pt;}
.ws1d_c00466{word-spacing:2.924800pt;}
.ws11_c00466{word-spacing:3.206400pt;}
.ws12_c00466{word-spacing:3.219200pt;}
.ws2c_c00466{word-spacing:3.513600pt;}
.ws2d_c00466{word-spacing:3.577600pt;}
.ws9_c00466{word-spacing:5.401600pt;}
.ws8_c00466{word-spacing:5.440000pt;}
.wsa_c00466{word-spacing:5.510400pt;}
.wsd_c00466{word-spacing:6.380800pt;}
.wse_c00466{word-spacing:6.451200pt;}
.ws24_c00466{word-spacing:8.614400pt;}
.ws23_c00466{word-spacing:8.684800pt;}
.ws25_c00466{word-spacing:8.755200pt;}
.ws1e_c00466{word-spacing:8.972800pt;}
.ws1f_c00466{word-spacing:9.011200pt;}
.ws21_c00466{word-spacing:9.862400pt;}
.ws22_c00466{word-spacing:9.932800pt;}
.ws27_c00466{word-spacing:10.867200pt;}
.ws26_c00466{word-spacing:10.956800pt;}
.ws20_c00466{word-spacing:11.539200pt;}
.ws2e_c00466{word-spacing:11.846400pt;}
.ws2f_c00466{word-spacing:11.891200pt;}
.ws28_c00466{word-spacing:12.492800pt;}
.ws29_c00466{word-spacing:12.505600pt;}
._2_c00466{margin-left:-2.880000pt;}
._0_c00466{margin-left:-1.175680pt;}
._1_c00466{width:1.152000pt;}
.fs6_c00466{font-size:34.560000pt;}
.fs3_c00466{font-size:37.440000pt;}
.fs5_c00466{font-size:42.560000pt;}
.fs2_c00466{font-size:48.000000pt;}
.fs0_c00466{font-size:53.440000pt;}
.fs1_c00466{font-size:64.000000pt;}
.fs4_c00466{font-size:69.440000pt;}
.y0_c00466{bottom:0.000000pt;}
.y2_c00466{bottom:51.067067pt;}
.y22_c00466{bottom:78.429947pt;}
.y21_c00466{bottom:90.665947pt;}
.y20_c00466{bottom:102.992027pt;}
.y1f_c00466{bottom:119.228667pt;}
.y1e_c00466{bottom:135.465307pt;}
.y1d_c00466{bottom:151.787067pt;}
.y1c_c00466{bottom:165.307200pt;}
.y1b_c00466{bottom:183.707200pt;}
.y1a_c00466{bottom:202.107067pt;}
.y19_c00466{bottom:306.587067pt;}
.y18_c00466{bottom:337.227067pt;}
.y17_c00466{bottom:367.787067pt;}
.y16_c00466{bottom:398.427067pt;}
.y15_c00466{bottom:428.987067pt;}
.y14_c00466{bottom:459.627067pt;}
.y13_c00466{bottom:490.187067pt;}
.y12_c00466{bottom:520.827067pt;}
.y11_c00466{bottom:551.387067pt;}
.y10_c00466{bottom:582.027067pt;}
.yf_c00466{bottom:612.587067pt;}
.ye_c00466{bottom:643.227067pt;}
.yd_c00466{bottom:673.787067pt;}
.yc_c00466{bottom:704.427067pt;}
.yb_c00466{bottom:734.987067pt;}
.ya_c00466{bottom:765.627067pt;}
.y9_c00466{bottom:796.187067pt;}
.y8_c00466{bottom:836.267067pt;}
.y7_c00466{bottom:891.947067pt;}
.y6_c00466{bottom:922.587067pt;}
.y5_c00466{bottom:953.147067pt;}
.y4_c00466{bottom:983.787067pt;}
.y3_c00466{bottom:1014.347067pt;}
.y1_c00466{bottom:1063.867067pt;}
.h7_c00466{height:42.656250pt;}
.h6_c00466{height:42.656783pt;}
.h8_c00466{height:44.388750pt;}
.h1_c00466{height:44.724687pt;}
.h3_c00466{height:53.562500pt;}
.h4_c00466{height:57.894063pt;}
.h2_c00466{height:64.142500pt;}
.h5_c00466{height:72.423750pt;}
.h0_c00466{height:1122.666667pt;}
.w1_c00466{width:793.333333pt;}
.w0_c00466{width:793.626667pt;}
.x0_c00466{left:0.000000pt;}
.x1_c00466{left:113.440000pt;}
.x3_c00466{left:125.434000pt;}
.x2_c00466{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_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_3f5f53b204a3ba86566cf213.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_e36dee8b7a4c25c194c9accb.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00467;src:url('chunks/assets/font_e25f717feaf5a7659c70b02e.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;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_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.v1_c00467{vertical-align:29.880000px;}
.ls15_c00467{letter-spacing:-0.151200px;}
.ls20_c00467{letter-spacing:-0.086184px;}
.ls1a_c00467{letter-spacing:-0.036000px;}
.ls12_c00467{letter-spacing:-0.030060px;}
.ls1b_c00467{letter-spacing:-0.028800px;}
.ls17_c00467{letter-spacing:-0.021600px;}
.ls22_c00467{letter-spacing:-0.019152px;}
.ls16_c00467{letter-spacing:-0.014400px;}
.ls24_c00467{letter-spacing:-0.011664px;}
.ls1e_c00467{letter-spacing:-0.007776px;}
.ls19_c00467{letter-spacing:-0.007200px;}
.ls13_c00467{letter-spacing:-0.006012px;}
.ls23_c00467{letter-spacing:-0.004788px;}
.ls21_c00467{letter-spacing:-0.003888px;}
.ls14_c00467{letter-spacing:0.000000px;}
.ls1_c00467{letter-spacing:0.007200px;}
.ls7_c00467{letter-spacing:0.009360px;}
.lsb_c00467{letter-spacing:0.009576px;}
.ls6_c00467{letter-spacing:0.014364px;}
.ls0_c00467{letter-spacing:0.014400px;}
.ls2_c00467{letter-spacing:0.021600px;}
.lse_c00467{letter-spacing:0.023940px;}
.ls1c_c00467{letter-spacing:0.028800px;}
.ls5_c00467{letter-spacing:0.033516px;}
.ls3_c00467{letter-spacing:0.036000px;}
.ls4_c00467{letter-spacing:0.043200px;}
.ls9_c00467{letter-spacing:0.052668px;}
.ls18_c00467{letter-spacing:0.054756px;}
.lsf_c00467{letter-spacing:0.057456px;}
.ls1d_c00467{letter-spacing:0.093600px;}
.ls8_c00467{letter-spacing:0.100548px;}
.lsc_c00467{letter-spacing:0.104040px;}
.ls25_c00467{letter-spacing:0.346032px;}
.lsd_c00467{letter-spacing:0.350640px;}
.ls1f_c00467{letter-spacing:0.361584px;}
.ls26_c00467{letter-spacing:0.378252px;}
.lsa_c00467{letter-spacing:0.383040px;}
.ls11_c00467{letter-spacing:2.151360px;}
.ls10_c00467{letter-spacing:2.511360px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00467{word-spacing:-13.320216px;}
.ws1_c00467{word-spacing:-13.310640px;}
.ws4_c00467{word-spacing:-13.224456px;}
.ws2_c00467{word-spacing:-11.170224px;}
.ws7_c00467{word-spacing:-11.154672px;}
.ws6_c00467{word-spacing:-10.804752px;}
.ws3_c00467{word-spacing:-10.800864px;}
.ws0_c00467{word-spacing:-10.584756px;}
.ws9_c00467{word-spacing:-0.264528px;}
.ws8_c00467{word-spacing:-0.240480px;}
.ws34_c00467{word-spacing:-0.033516px;}
.ws30_c00467{word-spacing:-0.014364px;}
.wsa_c00467{word-spacing:0.000000px;}
.ws32_c00467{word-spacing:0.003888px;}
.ws31_c00467{word-spacing:0.004788px;}
.ws28_c00467{word-spacing:0.007200px;}
.ws36_c00467{word-spacing:0.023940px;}
.ws35_c00467{word-spacing:0.038304px;}
.ws1e_c00467{word-spacing:0.079200px;}
.ws2b_c00467{word-spacing:0.396000px;}
.ws33_c00467{word-spacing:0.464436px;}
.ws3f_c00467{word-spacing:2.125872px;}
.ws3c_c00467{word-spacing:2.130660px;}
.ws1b_c00467{word-spacing:2.167200px;}
.ws3d_c00467{word-spacing:2.169504px;}
.ws19_c00467{word-spacing:2.174400px;}
.ws1a_c00467{word-spacing:2.196000px;}
.ws3e_c00467{word-spacing:2.523276px;}
.ws13_c00467{word-spacing:3.261600px;}
.ws25_c00467{word-spacing:3.585600px;}
.ws26_c00467{word-spacing:3.607200px;}
.ws16_c00467{word-spacing:3.960000px;}
.ws15_c00467{word-spacing:3.967200px;}
.ws10_c00467{word-spacing:4.305600px;}
.wsf_c00467{word-spacing:4.320000px;}
.wse_c00467{word-spacing:6.134400px;}
.ws2e_c00467{word-spacing:7.178400px;}
.ws2d_c00467{word-spacing:7.185600px;}
.ws24_c00467{word-spacing:7.574400px;}
.ws23_c00467{word-spacing:7.581600px;}
.wsd_c00467{word-spacing:8.640000px;}
.wsc_c00467{word-spacing:8.661600px;}
.ws27_c00467{word-spacing:8.690400px;}
.ws3a_c00467{word-spacing:10.399536px;}
.ws3b_c00467{word-spacing:10.404324px;}
.ws39_c00467{word-spacing:10.433052px;}
.ws37_c00467{word-spacing:10.442628px;}
.ws38_c00467{word-spacing:10.443168px;}
.ws14_c00467{word-spacing:10.843200px;}
.ws20_c00467{word-spacing:14.752800px;}
.ws1f_c00467{word-spacing:14.767200px;}
.wsb_c00467{word-spacing:16.596000px;}
.ws2f_c00467{word-spacing:16.948800px;}
.ws1d_c00467{word-spacing:19.396800px;}
.ws1c_c00467{word-spacing:19.526400px;}
.ws11_c00467{word-spacing:20.152800px;}
.ws12_c00467{word-spacing:20.167200px;}
.ws2a_c00467{word-spacing:21.592800px;}
.ws29_c00467{word-spacing:21.765600px;}
.ws22_c00467{word-spacing:22.665600px;}
.ws21_c00467{word-spacing:22.694400px;}
.ws2c_c00467{word-spacing:24.127200px;}
.ws17_c00467{word-spacing:28.072800px;}
.ws18_c00467{word-spacing:28.123200px;}
._1_c00467{margin-left:-1.116000px;}
._0_c00467{width:1.052100px;}
._2_c00467{width:2.176128px;}
.fc0_c00467{color:rgb(0,0,0);}
.fs5_c00467{font-size:38.880000px;}
.fs3_c00467{font-size:42.120000px;}
.fs4_c00467{font-size:47.880000px;}
.fs2_c00467{font-size:54.000000px;}
.fs0_c00467{font-size:60.120000px;}
.fs1_c00467{font-size:72.000000px;}
.y0_c00467{bottom:0.000000px;}
.y3_c00467{bottom:57.450450px;}
.y4_c00467{bottom:61.410450px;}
.y27_c00467{bottom:88.234950px;}
.y26_c00467{bottom:101.999190px;}
.y25_c00467{bottom:115.868010px;}
.y24_c00467{bottom:134.134230px;}
.y23_c00467{bottom:152.398470px;}
.y22_c00467{bottom:170.764230px;}
.y21_c00467{bottom:189.034230px;}
.y20_c00467{bottom:207.300450px;}
.y1f_c00467{bottom:222.510450px;}
.y1e_c00467{bottom:243.210450px;}
.y1d_c00467{bottom:263.910450px;}
.y1c_c00467{bottom:349.410450px;}
.y1b_c00467{bottom:383.790450px;}
.y1a_c00467{bottom:418.260450px;}
.y19_c00467{bottom:452.640450px;}
.y18_c00467{bottom:487.110450px;}
.y17_c00467{bottom:521.490450px;}
.y16_c00467{bottom:555.960450px;}
.y15_c00467{bottom:590.340450px;}
.y14_c00467{bottom:624.810450px;}
.y13_c00467{bottom:659.190450px;}
.y12_c00467{bottom:693.660450px;}
.y11_c00467{bottom:728.040450px;}
.y10_c00467{bottom:762.510450px;}
.yf_c00467{bottom:796.890450px;}
.ye_c00467{bottom:831.360450px;}
.yd_c00467{bottom:865.740450px;}
.yc_c00467{bottom:900.210450px;}
.yb_c00467{bottom:934.590450px;}
.ya_c00467{bottom:969.060450px;}
.y9_c00467{bottom:1003.440450px;}
.y8_c00467{bottom:1037.910450px;}
.y7_c00467{bottom:1072.290450px;}
.y6_c00467{bottom:1106.760450px;}
.y5_c00467{bottom:1141.140450px;}
.y2_c00467{bottom:1176.420450px;}
.y1_c00467{bottom:1196.940450px;}
.h2_c00467{height:47.988281px;}
.h7_c00467{height:49.937344px;}
.h9_c00467{height:49.942384px;}
.h8_c00467{height:49.945264px;}
.h1_c00467{height:50.315273px;}
.h3_c00467{height:56.320312px;}
.h4_c00467{height:60.257812px;}
.h5_c00467{height:65.130820px;}
.h6_c00467{height:65.131420px;}
.h0_c00467{height:1263.000000px;}
.w1_c00467{width:892.500000px;}
.w0_c00467{width:892.830000px;}
.x0_c00467{left:0.000000px;}
.x2_c00467{left:127.620000px;}
.x6_c00467{left:141.125040px;}
.x5_c00467{left:180.810000px;}
.x1_c00467{left:217.440000px;}
.x4_c00467{left:435.240000px;}
.x3_c00467{left:446.490000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.v1_c00467{vertical-align:26.560000pt;}
.ls15_c00467{letter-spacing:-0.134400pt;}
.ls20_c00467{letter-spacing:-0.076608pt;}
.ls1a_c00467{letter-spacing:-0.032000pt;}
.ls12_c00467{letter-spacing:-0.026720pt;}
.ls1b_c00467{letter-spacing:-0.025600pt;}
.ls17_c00467{letter-spacing:-0.019200pt;}
.ls22_c00467{letter-spacing:-0.017024pt;}
.ls16_c00467{letter-spacing:-0.012800pt;}
.ls24_c00467{letter-spacing:-0.010368pt;}
.ls1e_c00467{letter-spacing:-0.006912pt;}
.ls19_c00467{letter-spacing:-0.006400pt;}
.ls13_c00467{letter-spacing:-0.005344pt;}
.ls23_c00467{letter-spacing:-0.004256pt;}
.ls21_c00467{letter-spacing:-0.003456pt;}
.ls14_c00467{letter-spacing:0.000000pt;}
.ls1_c00467{letter-spacing:0.006400pt;}
.ls7_c00467{letter-spacing:0.008320pt;}
.lsb_c00467{letter-spacing:0.008512pt;}
.ls6_c00467{letter-spacing:0.012768pt;}
.ls0_c00467{letter-spacing:0.012800pt;}
.ls2_c00467{letter-spacing:0.019200pt;}
.lse_c00467{letter-spacing:0.021280pt;}
.ls1c_c00467{letter-spacing:0.025600pt;}
.ls5_c00467{letter-spacing:0.029792pt;}
.ls3_c00467{letter-spacing:0.032000pt;}
.ls4_c00467{letter-spacing:0.038400pt;}
.ls9_c00467{letter-spacing:0.046816pt;}
.ls18_c00467{letter-spacing:0.048672pt;}
.lsf_c00467{letter-spacing:0.051072pt;}
.ls1d_c00467{letter-spacing:0.083200pt;}
.ls8_c00467{letter-spacing:0.089376pt;}
.lsc_c00467{letter-spacing:0.092480pt;}
.ls25_c00467{letter-spacing:0.307584pt;}
.lsd_c00467{letter-spacing:0.311680pt;}
.ls1f_c00467{letter-spacing:0.321408pt;}
.ls26_c00467{letter-spacing:0.336224pt;}
.lsa_c00467{letter-spacing:0.340480pt;}
.ls11_c00467{letter-spacing:1.912320pt;}
.ls10_c00467{letter-spacing:2.232320pt;}
.ws5_c00467{word-spacing:-11.840192pt;}
.ws1_c00467{word-spacing:-11.831680pt;}
.ws4_c00467{word-spacing:-11.755072pt;}
.ws2_c00467{word-spacing:-9.929088pt;}
.ws7_c00467{word-spacing:-9.915264pt;}
.ws6_c00467{word-spacing:-9.604224pt;}
.ws3_c00467{word-spacing:-9.600768pt;}
.ws0_c00467{word-spacing:-9.408672pt;}
.ws9_c00467{word-spacing:-0.235136pt;}
.ws8_c00467{word-spacing:-0.213760pt;}
.ws34_c00467{word-spacing:-0.029792pt;}
.ws30_c00467{word-spacing:-0.012768pt;}
.wsa_c00467{word-spacing:0.000000pt;}
.ws32_c00467{word-spacing:0.003456pt;}
.ws31_c00467{word-spacing:0.004256pt;}
.ws28_c00467{word-spacing:0.006400pt;}
.ws36_c00467{word-spacing:0.021280pt;}
.ws35_c00467{word-spacing:0.034048pt;}
.ws1e_c00467{word-spacing:0.070400pt;}
.ws2b_c00467{word-spacing:0.352000pt;}
.ws33_c00467{word-spacing:0.412832pt;}
.ws3f_c00467{word-spacing:1.889664pt;}
.ws3c_c00467{word-spacing:1.893920pt;}
.ws1b_c00467{word-spacing:1.926400pt;}
.ws3d_c00467{word-spacing:1.928448pt;}
.ws19_c00467{word-spacing:1.932800pt;}
.ws1a_c00467{word-spacing:1.952000pt;}
.ws3e_c00467{word-spacing:2.242912pt;}
.ws13_c00467{word-spacing:2.899200pt;}
.ws25_c00467{word-spacing:3.187200pt;}
.ws26_c00467{word-spacing:3.206400pt;}
.ws16_c00467{word-spacing:3.520000pt;}
.ws15_c00467{word-spacing:3.526400pt;}
.ws10_c00467{word-spacing:3.827200pt;}
.wsf_c00467{word-spacing:3.840000pt;}
.wse_c00467{word-spacing:5.452800pt;}
.ws2e_c00467{word-spacing:6.380800pt;}
.ws2d_c00467{word-spacing:6.387200pt;}
.ws24_c00467{word-spacing:6.732800pt;}
.ws23_c00467{word-spacing:6.739200pt;}
.wsd_c00467{word-spacing:7.680000pt;}
.wsc_c00467{word-spacing:7.699200pt;}
.ws27_c00467{word-spacing:7.724800pt;}
.ws3a_c00467{word-spacing:9.244032pt;}
.ws3b_c00467{word-spacing:9.248288pt;}
.ws39_c00467{word-spacing:9.273824pt;}
.ws37_c00467{word-spacing:9.282336pt;}
.ws38_c00467{word-spacing:9.282816pt;}
.ws14_c00467{word-spacing:9.638400pt;}
.ws20_c00467{word-spacing:13.113600pt;}
.ws1f_c00467{word-spacing:13.126400pt;}
.wsb_c00467{word-spacing:14.752000pt;}
.ws2f_c00467{word-spacing:15.065600pt;}
.ws1d_c00467{word-spacing:17.241600pt;}
.ws1c_c00467{word-spacing:17.356800pt;}
.ws11_c00467{word-spacing:17.913600pt;}
.ws12_c00467{word-spacing:17.926400pt;}
.ws2a_c00467{word-spacing:19.193600pt;}
.ws29_c00467{word-spacing:19.347200pt;}
.ws22_c00467{word-spacing:20.147200pt;}
.ws21_c00467{word-spacing:20.172800pt;}
.ws2c_c00467{word-spacing:21.446400pt;}
.ws17_c00467{word-spacing:24.953600pt;}
.ws18_c00467{word-spacing:24.998400pt;}
._1_c00467{margin-left:-0.992000pt;}
._0_c00467{width:0.935200pt;}
._2_c00467{width:1.934336pt;}
.fs5_c00467{font-size:34.560000pt;}
.fs3_c00467{font-size:37.440000pt;}
.fs4_c00467{font-size:42.560000pt;}
.fs2_c00467{font-size:48.000000pt;}
.fs0_c00467{font-size:53.440000pt;}
.fs1_c00467{font-size:64.000000pt;}
.y0_c00467{bottom:0.000000pt;}
.y3_c00467{bottom:51.067067pt;}
.y4_c00467{bottom:54.587067pt;}
.y27_c00467{bottom:78.431067pt;}
.y26_c00467{bottom:90.665947pt;}
.y25_c00467{bottom:102.993787pt;}
.y24_c00467{bottom:119.230427pt;}
.y23_c00467{bottom:135.465307pt;}
.y22_c00467{bottom:151.790427pt;}
.y21_c00467{bottom:168.030427pt;}
.y20_c00467{bottom:184.267067pt;}
.y1f_c00467{bottom:197.787067pt;}
.y1e_c00467{bottom:216.187067pt;}
.y1d_c00467{bottom:234.587067pt;}
.y1c_c00467{bottom:310.587067pt;}
.y1b_c00467{bottom:341.147067pt;}
.y1a_c00467{bottom:371.787067pt;}
.y19_c00467{bottom:402.347067pt;}
.y18_c00467{bottom:432.987067pt;}
.y17_c00467{bottom:463.547067pt;}
.y16_c00467{bottom:494.187067pt;}
.y15_c00467{bottom:524.747067pt;}
.y14_c00467{bottom:555.387067pt;}
.y13_c00467{bottom:585.947067pt;}
.y12_c00467{bottom:616.587067pt;}
.y11_c00467{bottom:647.147067pt;}
.y10_c00467{bottom:677.787067pt;}
.yf_c00467{bottom:708.347067pt;}
.ye_c00467{bottom:738.987067pt;}
.yd_c00467{bottom:769.547067pt;}
.yc_c00467{bottom:800.187067pt;}
.yb_c00467{bottom:830.747067pt;}
.ya_c00467{bottom:861.387067pt;}
.y9_c00467{bottom:891.947067pt;}
.y8_c00467{bottom:922.587067pt;}
.y7_c00467{bottom:953.147067pt;}
.y6_c00467{bottom:983.787067pt;}
.y5_c00467{bottom:1014.347067pt;}
.y2_c00467{bottom:1045.707067pt;}
.y1_c00467{bottom:1063.947067pt;}
.h2_c00467{height:42.656250pt;}
.h7_c00467{height:44.388750pt;}
.h9_c00467{height:44.393230pt;}
.h8_c00467{height:44.395790pt;}
.h1_c00467{height:44.724687pt;}
.h3_c00467{height:50.062500pt;}
.h4_c00467{height:53.562500pt;}
.h5_c00467{height:57.894063pt;}
.h6_c00467{height:57.894596pt;}
.h0_c00467{height:1122.666667pt;}
.w1_c00467{width:793.333333pt;}
.w0_c00467{width:793.626667pt;}
.x0_c00467{left:0.000000pt;}
.x2_c00467{left:113.440000pt;}
.x6_c00467{left:125.444480pt;}
.x5_c00467{left:160.720000pt;}
.x1_c00467{left:193.280000pt;}
.x4_c00467{left:386.880000pt;}
.x3_c00467{left:396.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_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_fb92978ac63b82c85b3d7b7e.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00468;src:url('chunks/assets/font_c915908807428f3e48a78640.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00468;src:url('chunks/assets/font_209d2c920d9414c042ba3109.woff2')format("woff");}.ff4_c00468{font-family:ff4_c00468;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00468;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00468{font-family:ff5_c00468;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_c00468;src:url('chunks/assets/font_c190dc953850b0bf6c113bd8.woff2')format("woff");}.ff6_c00468{font-family:ff6_c00468;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_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;}
.v1_c00468{vertical-align:15.840000px;}
.v2_c00468{vertical-align:29.880000px;}
.ls27_c00468{letter-spacing:-0.266400px;}
.ls33_c00468{letter-spacing:-0.181944px;}
.ls22_c00468{letter-spacing:-0.151200px;}
.ls2f_c00468{letter-spacing:-0.086184px;}
.ls2c_c00468{letter-spacing:-0.036000px;}
.ls23_c00468{letter-spacing:-0.028800px;}
.ls28_c00468{letter-spacing:-0.021600px;}
.ls34_c00468{letter-spacing:-0.019152px;}
.ls32_c00468{letter-spacing:-0.015552px;}
.ls25_c00468{letter-spacing:-0.014400px;}
.ls31_c00468{letter-spacing:-0.011664px;}
.ls2d_c00468{letter-spacing:-0.007776px;}
.ls24_c00468{letter-spacing:-0.007200px;}
.ls30_c00468{letter-spacing:-0.003888px;}
.ls29_c00468{letter-spacing:0.000000px;}
.ls1e_c00468{letter-spacing:0.003888px;}
.ls6_c00468{letter-spacing:0.007200px;}
.ls9_c00468{letter-spacing:0.009360px;}
.ls1d_c00468{letter-spacing:0.009576px;}
.ls8_c00468{letter-spacing:0.014364px;}
.lsc_c00468{letter-spacing:0.019152px;}
.ls7_c00468{letter-spacing:0.021600px;}
.ls16_c00468{letter-spacing:0.023940px;}
.ls2_c00468{letter-spacing:0.031248px;}
.ls14_c00468{letter-spacing:0.033516px;}
.ls15_c00468{letter-spacing:0.038304px;}
.ls17_c00468{letter-spacing:0.043092px;}
.lsd_c00468{letter-spacing:0.047880px;}
.ls0_c00468{letter-spacing:0.048096px;}
.lsb_c00468{letter-spacing:0.052668px;}
.ls26_c00468{letter-spacing:0.054756px;}
.ls1c_c00468{letter-spacing:0.057456px;}
.ls21_c00468{letter-spacing:0.062244px;}
.ls18_c00468{letter-spacing:0.067032px;}
.ls2b_c00468{letter-spacing:0.072000px;}
.ls1b_c00468{letter-spacing:0.075960px;}
.ls2a_c00468{letter-spacing:0.093600px;}
.ls20_c00468{letter-spacing:0.095760px;}
.lsa_c00468{letter-spacing:0.100548px;}
.ls19_c00468{letter-spacing:0.104040px;}
.ls1f_c00468{letter-spacing:0.129276px;}
.ls4_c00468{letter-spacing:0.144000px;}
.lse_c00468{letter-spacing:0.350640px;}
.ls1a_c00468{letter-spacing:0.351360px;}
.ls2e_c00468{letter-spacing:0.361584px;}
.lsf_c00468{letter-spacing:0.369360px;}
.ls35_c00468{letter-spacing:0.378252px;}
.ls13_c00468{letter-spacing:2.150760px;}
.ls10_c00468{letter-spacing:2.151360px;}
.ls12_c00468{letter-spacing:2.510760px;}
.ls11_c00468{letter-spacing:2.511360px;}
.ls3_c00468{letter-spacing:26.560800px;}
.ls5_c00468{letter-spacing:66.024000px;}
.ls1_c00468{letter-spacing:1212.120000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00468{word-spacing:-19.561248px;}
.ws0_c00468{word-spacing:-17.985600px;}
.wsb_c00468{word-spacing:-13.348944px;}
.ws8_c00468{word-spacing:-13.320216px;}
.ws3_c00468{word-spacing:-13.310640px;}
.wsa_c00468{word-spacing:-13.291488px;}
.ws6_c00468{word-spacing:-13.224456px;}
.ws4_c00468{word-spacing:-11.170224px;}
.wsc_c00468{word-spacing:-10.808640px;}
.ws9_c00468{word-spacing:-10.804752px;}
.ws5_c00468{word-spacing:-10.800864px;}
.ws7_c00468{word-spacing:-10.796976px;}
.ws1_c00468{word-spacing:-10.584756px;}
.ws11_c00468{word-spacing:-0.124992px;}
.ws23_c00468{word-spacing:-0.093600px;}
.ws46_c00468{word-spacing:-0.043092px;}
.ws30_c00468{word-spacing:-0.033516px;}
.ws35_c00468{word-spacing:-0.028728px;}
.ws47_c00468{word-spacing:-0.019152px;}
.ws13_c00468{word-spacing:-0.007200px;}
.wse_c00468{word-spacing:0.000000px;}
.ws2e_c00468{word-spacing:0.003888px;}
.ws2d_c00468{word-spacing:0.004788px;}
.ws17_c00468{word-spacing:0.007200px;}
.ws2c_c00468{word-spacing:0.021600px;}
.wsd_c00468{word-spacing:0.042084px;}
.ws22_c00468{word-spacing:0.057600px;}
.ws1a_c00468{word-spacing:0.093600px;}
.ws3b_c00468{word-spacing:0.311220px;}
.ws3a_c00468{word-spacing:0.335160px;}
.ws3c_c00468{word-spacing:0.344736px;}
.ws2f_c00468{word-spacing:0.464436px;}
.ws38_c00468{word-spacing:1.417248px;}
.ws39_c00468{word-spacing:1.431612px;}
.ws36_c00468{word-spacing:1.441188px;}
.ws2b_c00468{word-spacing:1.461600px;}
.ws44_c00468{word-spacing:1.690164px;}
.ws45_c00468{word-spacing:1.723680px;}
.ws37_c00468{word-spacing:1.785924px;}
.ws43_c00468{word-spacing:1.805076px;}
.ws32_c00468{word-spacing:2.130660px;}
.ws31_c00468{word-spacing:2.164176px;}
.ws1e_c00468{word-spacing:2.167200px;}
.ws33_c00468{word-spacing:2.173392px;}
.ws1d_c00468{word-spacing:2.239200px;}
.ws34_c00468{word-spacing:2.719584px;}
.ws2a_c00468{word-spacing:2.908800px;}
.ws29_c00468{word-spacing:3.016800px;}
.ws24_c00468{word-spacing:4.334400px;}
.ws41_c00468{word-spacing:4.649148px;}
.ws42_c00468{word-spacing:4.653936px;}
.ws40_c00468{word-spacing:4.658724px;}
.ws27_c00468{word-spacing:5.688000px;}
.ws25_c00468{word-spacing:5.738400px;}
.ws26_c00468{word-spacing:5.839200px;}
.ws3e_c00468{word-spacing:8.240148px;}
.ws3f_c00468{word-spacing:8.244936px;}
.ws3d_c00468{word-spacing:8.278452px;}
.ws28_c00468{word-spacing:9.381600px;}
.ws18_c00468{word-spacing:10.807200px;}
.ws20_c00468{word-spacing:14.032800px;}
.ws1f_c00468{word-spacing:14.054400px;}
.ws21_c00468{word-spacing:14.112000px;}
.ws10_c00468{word-spacing:15.847200px;}
.wsf_c00468{word-spacing:15.919200px;}
.ws1c_c00468{word-spacing:16.610400px;}
.ws1b_c00468{word-spacing:16.653600px;}
.ws14_c00468{word-spacing:22.312800px;}
.ws19_c00468{word-spacing:22.327200px;}
.ws15_c00468{word-spacing:22.413600px;}
.ws12_c00468{word-spacing:23.810400px;}
.ws16_c00468{word-spacing:41.760000px;}
._0_c00468{margin-left:-1.322640px;}
._1_c00468{width:1.072800px;}
._2_c00468{width:2.858904px;}
._4_c00468{width:5.387004px;}
._3_c00468{width:8.855172px;}
.fc0_c00468{color:rgb(0,0,0);}
.fs6_c00468{font-size:38.880000px;}
.fs3_c00468{font-size:42.120000px;}
.fs5_c00468{font-size:47.880000px;}
.fs2_c00468{font-size:54.000000px;}
.fs0_c00468{font-size:60.120000px;}
.fs1_c00468{font-size:72.000000px;}
.fs4_c00468{font-size:78.120000px;}
.y0_c00468{bottom:0.000000px;}
.y2_c00468{bottom:57.450450px;}
.y24_c00468{bottom:88.234950px;}
.y23_c00468{bottom:101.999190px;}
.y22_c00468{bottom:115.864950px;}
.y21_c00468{bottom:129.634950px;}
.y20_c00468{bottom:143.399190px;}
.y1f_c00468{bottom:157.264230px;}
.y1e_c00468{bottom:175.532970px;}
.y1d_c00468{bottom:193.799190px;}
.y1c_c00468{bottom:207.664230px;}
.y1b_c00468{bottom:225.930450px;}
.y1a_c00468{bottom:241.140450px;}
.y19_c00468{bottom:261.840450px;}
.y18_c00468{bottom:282.540450px;}
.y17_c00468{bottom:368.760450px;}
.y16_c00468{bottom:403.230450px;}
.y15_c00468{bottom:437.610450px;}
.y14_c00468{bottom:472.080450px;}
.y13_c00468{bottom:506.460450px;}
.y12_c00468{bottom:540.930450px;}
.y11_c00468{bottom:584.310450px;}
.y10_c00468{bottom:618.780450px;}
.yf_c00468{bottom:653.160450px;}
.ye_c00468{bottom:687.630450px;}
.yd_c00468{bottom:740.010450px;}
.yc_c00468{bottom:774.480450px;}
.yb_c00468{bottom:808.860450px;}
.ya_c00468{bottom:852.330450px;}
.y9_c00468{bottom:886.710450px;}
.y8_c00468{bottom:921.180450px;}
.y7_c00468{bottom:964.560450px;}
.y6_c00468{bottom:999.030450px;}
.y5_c00468{bottom:1044.030450px;}
.y4_c00468{bottom:1106.760450px;}
.y3_c00468{bottom:1141.140450px;}
.y1_c00468{bottom:1196.850450px;}
.h7_c00468{height:47.988281px;}
.h8_c00468{height:49.937344px;}
.h9_c00468{height:49.942384px;}
.h1_c00468{height:50.315273px;}
.h3_c00468{height:60.257812px;}
.h4_c00468{height:65.130820px;}
.h2_c00468{height:72.160312px;}
.h6_c00468{height:75.093750px;}
.h5_c00468{height:81.476719px;}
.h0_c00468{height:1263.000000px;}
.w1_c00468{width:892.500000px;}
.w0_c00468{width:892.830000px;}
.x0_c00468{left:0.000000px;}
.x1_c00468{left:127.620000px;}
.x4_c00468{left:141.119130px;}
.x3_c00468{left:154.440000px;}
.x2_c00468{left:180.810000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.v1_c00468{vertical-align:14.080000pt;}
.v2_c00468{vertical-align:26.560000pt;}
.ls27_c00468{letter-spacing:-0.236800pt;}
.ls33_c00468{letter-spacing:-0.161728pt;}
.ls22_c00468{letter-spacing:-0.134400pt;}
.ls2f_c00468{letter-spacing:-0.076608pt;}
.ls2c_c00468{letter-spacing:-0.032000pt;}
.ls23_c00468{letter-spacing:-0.025600pt;}
.ls28_c00468{letter-spacing:-0.019200pt;}
.ls34_c00468{letter-spacing:-0.017024pt;}
.ls32_c00468{letter-spacing:-0.013824pt;}
.ls25_c00468{letter-spacing:-0.012800pt;}
.ls31_c00468{letter-spacing:-0.010368pt;}
.ls2d_c00468{letter-spacing:-0.006912pt;}
.ls24_c00468{letter-spacing:-0.006400pt;}
.ls30_c00468{letter-spacing:-0.003456pt;}
.ls29_c00468{letter-spacing:0.000000pt;}
.ls1e_c00468{letter-spacing:0.003456pt;}
.ls6_c00468{letter-spacing:0.006400pt;}
.ls9_c00468{letter-spacing:0.008320pt;}
.ls1d_c00468{letter-spacing:0.008512pt;}
.ls8_c00468{letter-spacing:0.012768pt;}
.lsc_c00468{letter-spacing:0.017024pt;}
.ls7_c00468{letter-spacing:0.019200pt;}
.ls16_c00468{letter-spacing:0.021280pt;}
.ls2_c00468{letter-spacing:0.027776pt;}
.ls14_c00468{letter-spacing:0.029792pt;}
.ls15_c00468{letter-spacing:0.034048pt;}
.ls17_c00468{letter-spacing:0.038304pt;}
.lsd_c00468{letter-spacing:0.042560pt;}
.ls0_c00468{letter-spacing:0.042752pt;}
.lsb_c00468{letter-spacing:0.046816pt;}
.ls26_c00468{letter-spacing:0.048672pt;}
.ls1c_c00468{letter-spacing:0.051072pt;}
.ls21_c00468{letter-spacing:0.055328pt;}
.ls18_c00468{letter-spacing:0.059584pt;}
.ls2b_c00468{letter-spacing:0.064000pt;}
.ls1b_c00468{letter-spacing:0.067520pt;}
.ls2a_c00468{letter-spacing:0.083200pt;}
.ls20_c00468{letter-spacing:0.085120pt;}
.lsa_c00468{letter-spacing:0.089376pt;}
.ls19_c00468{letter-spacing:0.092480pt;}
.ls1f_c00468{letter-spacing:0.114912pt;}
.ls4_c00468{letter-spacing:0.128000pt;}
.lse_c00468{letter-spacing:0.311680pt;}
.ls1a_c00468{letter-spacing:0.312320pt;}
.ls2e_c00468{letter-spacing:0.321408pt;}
.lsf_c00468{letter-spacing:0.328320pt;}
.ls35_c00468{letter-spacing:0.336224pt;}
.ls13_c00468{letter-spacing:1.911787pt;}
.ls10_c00468{letter-spacing:1.912320pt;}
.ls12_c00468{letter-spacing:2.231787pt;}
.ls11_c00468{letter-spacing:2.232320pt;}
.ls3_c00468{letter-spacing:23.609600pt;}
.ls5_c00468{letter-spacing:58.688000pt;}
.ls1_c00468{letter-spacing:1077.440000pt;}
.ws2_c00468{word-spacing:-17.387776pt;}
.ws0_c00468{word-spacing:-15.987200pt;}
.wsb_c00468{word-spacing:-11.865728pt;}
.ws8_c00468{word-spacing:-11.840192pt;}
.ws3_c00468{word-spacing:-11.831680pt;}
.wsa_c00468{word-spacing:-11.814656pt;}
.ws6_c00468{word-spacing:-11.755072pt;}
.ws4_c00468{word-spacing:-9.929088pt;}
.wsc_c00468{word-spacing:-9.607680pt;}
.ws9_c00468{word-spacing:-9.604224pt;}
.ws5_c00468{word-spacing:-9.600768pt;}
.ws7_c00468{word-spacing:-9.597312pt;}
.ws1_c00468{word-spacing:-9.408672pt;}
.ws11_c00468{word-spacing:-0.111104pt;}
.ws23_c00468{word-spacing:-0.083200pt;}
.ws46_c00468{word-spacing:-0.038304pt;}
.ws30_c00468{word-spacing:-0.029792pt;}
.ws35_c00468{word-spacing:-0.025536pt;}
.ws47_c00468{word-spacing:-0.017024pt;}
.ws13_c00468{word-spacing:-0.006400pt;}
.wse_c00468{word-spacing:0.000000pt;}
.ws2e_c00468{word-spacing:0.003456pt;}
.ws2d_c00468{word-spacing:0.004256pt;}
.ws17_c00468{word-spacing:0.006400pt;}
.ws2c_c00468{word-spacing:0.019200pt;}
.wsd_c00468{word-spacing:0.037408pt;}
.ws22_c00468{word-spacing:0.051200pt;}
.ws1a_c00468{word-spacing:0.083200pt;}
.ws3b_c00468{word-spacing:0.276640pt;}
.ws3a_c00468{word-spacing:0.297920pt;}
.ws3c_c00468{word-spacing:0.306432pt;}
.ws2f_c00468{word-spacing:0.412832pt;}
.ws38_c00468{word-spacing:1.259776pt;}
.ws39_c00468{word-spacing:1.272544pt;}
.ws36_c00468{word-spacing:1.281056pt;}
.ws2b_c00468{word-spacing:1.299200pt;}
.ws44_c00468{word-spacing:1.502368pt;}
.ws45_c00468{word-spacing:1.532160pt;}
.ws37_c00468{word-spacing:1.587488pt;}
.ws43_c00468{word-spacing:1.604512pt;}
.ws32_c00468{word-spacing:1.893920pt;}
.ws31_c00468{word-spacing:1.923712pt;}
.ws1e_c00468{word-spacing:1.926400pt;}
.ws33_c00468{word-spacing:1.931904pt;}
.ws1d_c00468{word-spacing:1.990400pt;}
.ws34_c00468{word-spacing:2.417408pt;}
.ws2a_c00468{word-spacing:2.585600pt;}
.ws29_c00468{word-spacing:2.681600pt;}
.ws24_c00468{word-spacing:3.852800pt;}
.ws41_c00468{word-spacing:4.132576pt;}
.ws42_c00468{word-spacing:4.136832pt;}
.ws40_c00468{word-spacing:4.141088pt;}
.ws27_c00468{word-spacing:5.056000pt;}
.ws25_c00468{word-spacing:5.100800pt;}
.ws26_c00468{word-spacing:5.190400pt;}
.ws3e_c00468{word-spacing:7.324576pt;}
.ws3f_c00468{word-spacing:7.328832pt;}
.ws3d_c00468{word-spacing:7.358624pt;}
.ws28_c00468{word-spacing:8.339200pt;}
.ws18_c00468{word-spacing:9.606400pt;}
.ws20_c00468{word-spacing:12.473600pt;}
.ws1f_c00468{word-spacing:12.492800pt;}
.ws21_c00468{word-spacing:12.544000pt;}
.ws10_c00468{word-spacing:14.086400pt;}
.wsf_c00468{word-spacing:14.150400pt;}
.ws1c_c00468{word-spacing:14.764800pt;}
.ws1b_c00468{word-spacing:14.803200pt;}
.ws14_c00468{word-spacing:19.833600pt;}
.ws19_c00468{word-spacing:19.846400pt;}
.ws15_c00468{word-spacing:19.923200pt;}
.ws12_c00468{word-spacing:21.164800pt;}
.ws16_c00468{word-spacing:37.120000pt;}
._0_c00468{margin-left:-1.175680pt;}
._1_c00468{width:0.953600pt;}
._2_c00468{width:2.541248pt;}
._4_c00468{width:4.788448pt;}
._3_c00468{width:7.871264pt;}
.fs6_c00468{font-size:34.560000pt;}
.fs3_c00468{font-size:37.440000pt;}
.fs5_c00468{font-size:42.560000pt;}
.fs2_c00468{font-size:48.000000pt;}
.fs0_c00468{font-size:53.440000pt;}
.fs1_c00468{font-size:64.000000pt;}
.fs4_c00468{font-size:69.440000pt;}
.y0_c00468{bottom:0.000000pt;}
.y2_c00468{bottom:51.067067pt;}
.y24_c00468{bottom:78.431067pt;}
.y23_c00468{bottom:90.665947pt;}
.y22_c00468{bottom:102.991067pt;}
.y21_c00468{bottom:115.231067pt;}
.y20_c00468{bottom:127.465947pt;}
.y1f_c00468{bottom:139.790427pt;}
.y1e_c00468{bottom:156.029307pt;}
.y1d_c00468{bottom:172.265947pt;}
.y1c_c00468{bottom:184.590427pt;}
.y1b_c00468{bottom:200.827067pt;}
.y1a_c00468{bottom:214.347067pt;}
.y19_c00468{bottom:232.747067pt;}
.y18_c00468{bottom:251.147067pt;}
.y17_c00468{bottom:327.787067pt;}
.y16_c00468{bottom:358.427067pt;}
.y15_c00468{bottom:388.987067pt;}
.y14_c00468{bottom:419.627067pt;}
.y13_c00468{bottom:450.187067pt;}
.y12_c00468{bottom:480.827067pt;}
.y11_c00468{bottom:519.387067pt;}
.y10_c00468{bottom:550.027067pt;}
.yf_c00468{bottom:580.587067pt;}
.ye_c00468{bottom:611.227067pt;}
.yd_c00468{bottom:657.787067pt;}
.yc_c00468{bottom:688.427067pt;}
.yb_c00468{bottom:718.987067pt;}
.ya_c00468{bottom:757.627067pt;}
.y9_c00468{bottom:788.187067pt;}
.y8_c00468{bottom:818.827067pt;}
.y7_c00468{bottom:857.387067pt;}
.y6_c00468{bottom:888.027067pt;}
.y5_c00468{bottom:928.027067pt;}
.y4_c00468{bottom:983.787067pt;}
.y3_c00468{bottom:1014.347067pt;}
.y1_c00468{bottom:1063.867067pt;}
.h7_c00468{height:42.656250pt;}
.h8_c00468{height:44.388750pt;}
.h9_c00468{height:44.393230pt;}
.h1_c00468{height:44.724687pt;}
.h3_c00468{height:53.562500pt;}
.h4_c00468{height:57.894063pt;}
.h2_c00468{height:64.142500pt;}
.h6_c00468{height:66.750000pt;}
.h5_c00468{height:72.423750pt;}
.h0_c00468{height:1122.666667pt;}
.w1_c00468{width:793.333333pt;}
.w0_c00468{width:793.626667pt;}
.x0_c00468{left:0.000000pt;}
.x1_c00468{left:113.440000pt;}
.x4_c00468{left:125.439227pt;}
.x3_c00468{left:137.280000pt;}
.x2_c00468{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_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_1249411327460610cf7bcfcd.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00469;src:url('chunks/assets/font_7aa1009cf8aa022c93d3ddf9.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00469;src:url('chunks/assets/font_4b95541512a79d8003eb8d84.woff2')format("woff");}.ff4_c00469{font-family:ff4_c00469;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_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;}
.v2_c00469{vertical-align:15.282000px;}
.v1_c00469{vertical-align:29.880000px;}
.ls2e_c00469{letter-spacing:-0.192384px;}
.ls23_c00469{letter-spacing:-0.151200px;}
.ls32_c00469{letter-spacing:-0.086184px;}
.ls2c_c00469{letter-spacing:-0.060120px;}
.ls2a_c00469{letter-spacing:-0.054108px;}
.ls2b_c00469{letter-spacing:-0.048096px;}
.ls20_c00469{letter-spacing:-0.030060px;}
.ls29_c00469{letter-spacing:-0.028800px;}
.ls25_c00469{letter-spacing:-0.021600px;}
.ls33_c00469{letter-spacing:-0.015552px;}
.ls26_c00469{letter-spacing:-0.014400px;}
.ls2f_c00469{letter-spacing:-0.007776px;}
.ls24_c00469{letter-spacing:-0.007200px;}
.ls21_c00469{letter-spacing:-0.006012px;}
.ls31_c00469{letter-spacing:-0.003888px;}
.ls22_c00469{letter-spacing:0.000000px;}
.ls19_c00469{letter-spacing:0.003888px;}
.ls8_c00469{letter-spacing:0.006012px;}
.ls6_c00469{letter-spacing:0.007200px;}
.ls11_c00469{letter-spacing:0.009360px;}
.ls17_c00469{letter-spacing:0.009576px;}
.ls7_c00469{letter-spacing:0.012024px;}
.lsf_c00469{letter-spacing:0.014364px;}
.ls5_c00469{letter-spacing:0.014400px;}
.ls15_c00469{letter-spacing:0.019152px;}
.ls2_c00469{letter-spacing:0.021600px;}
.ls1b_c00469{letter-spacing:0.023940px;}
.lsa_c00469{letter-spacing:0.024048px;}
.ls16_c00469{letter-spacing:0.028728px;}
.ls4_c00469{letter-spacing:0.036000px;}
.lsd_c00469{letter-spacing:0.036072px;}
.ls1c_c00469{letter-spacing:0.038304px;}
.lsb_c00469{letter-spacing:0.042084px;}
.ls14_c00469{letter-spacing:0.047880px;}
.lsc_c00469{letter-spacing:0.048096px;}
.ls1e_c00469{letter-spacing:0.052668px;}
.ls9_c00469{letter-spacing:0.054108px;}
.ls27_c00469{letter-spacing:0.054756px;}
.lse_c00469{letter-spacing:0.060120px;}
.ls1d_c00469{letter-spacing:0.075960px;}
.ls1f_c00469{letter-spacing:0.076608px;}
.ls28_c00469{letter-spacing:0.093600px;}
.ls13_c00469{letter-spacing:0.100548px;}
.ls1a_c00469{letter-spacing:0.104040px;}
.ls2d_c00469{letter-spacing:0.136080px;}
.ls0_c00469{letter-spacing:0.144000px;}
.ls30_c00469{letter-spacing:0.346032px;}
.ls10_c00469{letter-spacing:0.350640px;}
.ls12_c00469{letter-spacing:1.431360px;}
.ls18_c00469{letter-spacing:7.551360px;}
.ls1_c00469{letter-spacing:65.304000px;}
.ls3_c00469{letter-spacing:66.024000px;}
.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;}
}
.ws6_c00469{word-spacing:-13.320216px;}
.ws3_c00469{word-spacing:-13.310640px;}
.ws5_c00469{word-spacing:-13.224456px;}
.ws2_c00469{word-spacing:-11.154672px;}
.ws7_c00469{word-spacing:-10.808640px;}
.ws4_c00469{word-spacing:-10.800864px;}
.ws8_c00469{word-spacing:-10.793088px;}
.ws0_c00469{word-spacing:-10.584756px;}
.ws1_c00469{word-spacing:-9.856080px;}
.ws3b_c00469{word-spacing:-0.276552px;}
.wsa_c00469{word-spacing:-0.264528px;}
.ws9_c00469{word-spacing:-0.240480px;}
.ws4a_c00469{word-spacing:-0.057456px;}
.ws1d_c00469{word-spacing:-0.043200px;}
.ws42_c00469{word-spacing:-0.028728px;}
.wsb_c00469{word-spacing:0.000000px;}
.ws4b_c00469{word-spacing:0.004788px;}
.ws24_c00469{word-spacing:0.007200px;}
.ws4c_c00469{word-spacing:0.019152px;}
.ws3a_c00469{word-spacing:0.030060px;}
.ws11_c00469{word-spacing:0.064800px;}
.ws49_c00469{word-spacing:0.325584px;}
.ws47_c00469{word-spacing:0.339948px;}
.ws48_c00469{word-spacing:0.354312px;}
.ws25_c00469{word-spacing:1.160316px;}
.ws26_c00469{word-spacing:1.178352px;}
.ws3f_c00469{word-spacing:1.407672px;}
.ws41_c00469{word-spacing:1.426824px;}
.ws40_c00469{word-spacing:1.436400px;}
.ws3c_c00469{word-spacing:1.441188px;}
.ws3d_c00469{word-spacing:1.446336px;}
.ws19_c00469{word-spacing:1.785600px;}
.ws3e_c00469{word-spacing:1.805076px;}
.ws1a_c00469{word-spacing:1.828800px;}
.ws32_c00469{word-spacing:2.236464px;}
.ws31_c00469{word-spacing:2.248488px;}
.wsf_c00469{word-spacing:2.484000px;}
.ws1e_c00469{word-spacing:2.512800px;}
.ws10_c00469{word-spacing:2.527200px;}
.ws14_c00469{word-spacing:2.570400px;}
.ws39_c00469{word-spacing:2.975940px;}
.ws38_c00469{word-spacing:3.378744px;}
.ws18_c00469{word-spacing:3.650400px;}
.wsd_c00469{word-spacing:3.988800px;}
.ws2e_c00469{word-spacing:4.010004px;}
.ws2d_c00469{word-spacing:4.028040px;}
.ws28_c00469{word-spacing:4.040064px;}
.ws27_c00469{word-spacing:4.046076px;}
.ws2f_c00469{word-spacing:4.106196px;}
.ws46_c00469{word-spacing:4.290048px;}
.ws45_c00469{word-spacing:4.313988px;}
.ws1c_c00469{word-spacing:4.420800px;}
.ws1b_c00469{word-spacing:4.435200px;}
.ws16_c00469{word-spacing:5.004000px;}
.ws15_c00469{word-spacing:5.054400px;}
.ws30_c00469{word-spacing:5.440860px;}
.ws44_c00469{word-spacing:7.545888px;}
.ws43_c00469{word-spacing:7.550676px;}
.ws13_c00469{word-spacing:7.934400px;}
.wse_c00469{word-spacing:7.941600px;}
.ws12_c00469{word-spacing:7.999200px;}
.ws29_c00469{word-spacing:9.396756px;}
.ws2c_c00469{word-spacing:12.276504px;}
.ws34_c00469{word-spacing:13.046040px;}
.ws33_c00469{word-spacing:13.052052px;}
.ws17_c00469{word-spacing:13.680000px;}
.ws20_c00469{word-spacing:19.425600px;}
.ws21_c00469{word-spacing:19.512000px;}
.ws1f_c00469{word-spacing:21.981600px;}
.ws22_c00469{word-spacing:22.327200px;}
.ws23_c00469{word-spacing:22.348800px;}
.ws37_c00469{word-spacing:22.731372px;}
.ws35_c00469{word-spacing:23.176260px;}
.ws36_c00469{word-spacing:23.188284px;}
.ws2b_c00469{word-spacing:24.931764px;}
.ws2a_c00469{word-spacing:24.961824px;}
.wsc_c00469{word-spacing:29.887200px;}
._1_c00469{margin-left:-1.160316px;}
._0_c00469{width:1.052100px;}
._2_c00469{width:2.274228px;}
._3_c00469{width:7.503480px;}
.fc0_c00469{color:rgb(0,0,0);}
.fs4_c00469{font-size:38.880000px;}
.fs3_c00469{font-size:42.120000px;}
.fs5_c00469{font-size:47.880000px;}
.fs2_c00469{font-size:54.000000px;}
.fs0_c00469{font-size:60.120000px;}
.fs1_c00469{font-size:72.000000px;}
.y0_c00469{bottom:0.000000px;}
.y3_c00469{bottom:57.450450px;}
.y4_c00469{bottom:61.410450px;}
.y2d_c00469{bottom:88.234230px;}
.y2c_c00469{bottom:106.506210px;}
.y2b_c00469{bottom:124.868190px;}
.y2a_c00469{bottom:138.633690px;}
.y29_c00469{bottom:152.315400px;}
.y28_c00469{bottom:166.268730px;}
.y27_c00469{bottom:184.534950px;}
.y26_c00469{bottom:198.300450px;}
.y25_c00469{bottom:213.510450px;}
.y24_c00469{bottom:234.210450px;}
.y23_c00469{bottom:254.910450px;}
.y22_c00469{bottom:302.479950px;}
.y21_c00469{bottom:319.313550px;}
.y20_c00469{bottom:336.237330px;}
.y1f_c00469{bottom:353.070930px;}
.y1e_c00469{bottom:369.994710px;}
.y1d_c00469{bottom:386.828310px;}
.y1c_c00469{bottom:403.752090px;}
.y1b_c00469{bottom:420.585690px;}
.y1a_c00469{bottom:437.509470px;}
.y19_c00469{bottom:454.343070px;}
.y18_c00469{bottom:471.266850px;}
.y17_c00469{bottom:488.100450px;}
.y16_c00469{bottom:528.960450px;}
.y15_c00469{bottom:563.340450px;}
.y14_c00469{bottom:597.810450px;}
.y13_c00469{bottom:632.190450px;}
.y12_c00469{bottom:666.660450px;}
.y11_c00469{bottom:719.040450px;}
.y10_c00469{bottom:753.510450px;}
.yf_c00469{bottom:787.890450px;}
.ye_c00469{bottom:822.360450px;}
.yd_c00469{bottom:856.740450px;}
.yc_c00469{bottom:891.210450px;}
.yb_c00469{bottom:925.590450px;}
.ya_c00469{bottom:960.060450px;}
.y9_c00469{bottom:1003.440450px;}
.y8_c00469{bottom:1037.910450px;}
.y7_c00469{bottom:1072.290450px;}
.y6_c00469{bottom:1106.760450px;}
.y5_c00469{bottom:1141.140450px;}
.y2_c00469{bottom:1176.420450px;}
.y1_c00469{bottom:1196.940450px;}
.h2_c00469{height:47.988281px;}
.h8_c00469{height:49.937344px;}
.h1_c00469{height:50.315273px;}
.h7_c00469{height:50.477273px;}
.h3_c00469{height:56.320312px;}
.h5_c00469{height:60.257812px;}
.h6_c00469{height:65.130820px;}
.h4_c00469{height:75.093750px;}
.h0_c00469{height:1263.000000px;}
.w1_c00469{width:892.500000px;}
.w0_c00469{width:892.830000px;}
.x0_c00469{left:0.000000px;}
.x2_c00469{left:127.620000px;}
.x7_c00469{left:141.128100px;}
.x5_c00469{left:154.620000px;}
.x6_c00469{left:181.620000px;}
.x1_c00469{left:217.440000px;}
.x4_c00469{left:435.240000px;}
.x3_c00469{left:446.490000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.v2_c00469{vertical-align:13.584000pt;}
.v1_c00469{vertical-align:26.560000pt;}
.ls2e_c00469{letter-spacing:-0.171008pt;}
.ls23_c00469{letter-spacing:-0.134400pt;}
.ls32_c00469{letter-spacing:-0.076608pt;}
.ls2c_c00469{letter-spacing:-0.053440pt;}
.ls2a_c00469{letter-spacing:-0.048096pt;}
.ls2b_c00469{letter-spacing:-0.042752pt;}
.ls20_c00469{letter-spacing:-0.026720pt;}
.ls29_c00469{letter-spacing:-0.025600pt;}
.ls25_c00469{letter-spacing:-0.019200pt;}
.ls33_c00469{letter-spacing:-0.013824pt;}
.ls26_c00469{letter-spacing:-0.012800pt;}
.ls2f_c00469{letter-spacing:-0.006912pt;}
.ls24_c00469{letter-spacing:-0.006400pt;}
.ls21_c00469{letter-spacing:-0.005344pt;}
.ls31_c00469{letter-spacing:-0.003456pt;}
.ls22_c00469{letter-spacing:0.000000pt;}
.ls19_c00469{letter-spacing:0.003456pt;}
.ls8_c00469{letter-spacing:0.005344pt;}
.ls6_c00469{letter-spacing:0.006400pt;}
.ls11_c00469{letter-spacing:0.008320pt;}
.ls17_c00469{letter-spacing:0.008512pt;}
.ls7_c00469{letter-spacing:0.010688pt;}
.lsf_c00469{letter-spacing:0.012768pt;}
.ls5_c00469{letter-spacing:0.012800pt;}
.ls15_c00469{letter-spacing:0.017024pt;}
.ls2_c00469{letter-spacing:0.019200pt;}
.ls1b_c00469{letter-spacing:0.021280pt;}
.lsa_c00469{letter-spacing:0.021376pt;}
.ls16_c00469{letter-spacing:0.025536pt;}
.ls4_c00469{letter-spacing:0.032000pt;}
.lsd_c00469{letter-spacing:0.032064pt;}
.ls1c_c00469{letter-spacing:0.034048pt;}
.lsb_c00469{letter-spacing:0.037408pt;}
.ls14_c00469{letter-spacing:0.042560pt;}
.lsc_c00469{letter-spacing:0.042752pt;}
.ls1e_c00469{letter-spacing:0.046816pt;}
.ls9_c00469{letter-spacing:0.048096pt;}
.ls27_c00469{letter-spacing:0.048672pt;}
.lse_c00469{letter-spacing:0.053440pt;}
.ls1d_c00469{letter-spacing:0.067520pt;}
.ls1f_c00469{letter-spacing:0.068096pt;}
.ls28_c00469{letter-spacing:0.083200pt;}
.ls13_c00469{letter-spacing:0.089376pt;}
.ls1a_c00469{letter-spacing:0.092480pt;}
.ls2d_c00469{letter-spacing:0.120960pt;}
.ls0_c00469{letter-spacing:0.128000pt;}
.ls30_c00469{letter-spacing:0.307584pt;}
.ls10_c00469{letter-spacing:0.311680pt;}
.ls12_c00469{letter-spacing:1.272320pt;}
.ls18_c00469{letter-spacing:6.712320pt;}
.ls1_c00469{letter-spacing:58.048000pt;}
.ls3_c00469{letter-spacing:58.688000pt;}
.ws6_c00469{word-spacing:-11.840192pt;}
.ws3_c00469{word-spacing:-11.831680pt;}
.ws5_c00469{word-spacing:-11.755072pt;}
.ws2_c00469{word-spacing:-9.915264pt;}
.ws7_c00469{word-spacing:-9.607680pt;}
.ws4_c00469{word-spacing:-9.600768pt;}
.ws8_c00469{word-spacing:-9.593856pt;}
.ws0_c00469{word-spacing:-9.408672pt;}
.ws1_c00469{word-spacing:-8.760960pt;}
.ws3b_c00469{word-spacing:-0.245824pt;}
.wsa_c00469{word-spacing:-0.235136pt;}
.ws9_c00469{word-spacing:-0.213760pt;}
.ws4a_c00469{word-spacing:-0.051072pt;}
.ws1d_c00469{word-spacing:-0.038400pt;}
.ws42_c00469{word-spacing:-0.025536pt;}
.wsb_c00469{word-spacing:0.000000pt;}
.ws4b_c00469{word-spacing:0.004256pt;}
.ws24_c00469{word-spacing:0.006400pt;}
.ws4c_c00469{word-spacing:0.017024pt;}
.ws3a_c00469{word-spacing:0.026720pt;}
.ws11_c00469{word-spacing:0.057600pt;}
.ws49_c00469{word-spacing:0.289408pt;}
.ws47_c00469{word-spacing:0.302176pt;}
.ws48_c00469{word-spacing:0.314944pt;}
.ws25_c00469{word-spacing:1.031392pt;}
.ws26_c00469{word-spacing:1.047424pt;}
.ws3f_c00469{word-spacing:1.251264pt;}
.ws41_c00469{word-spacing:1.268288pt;}
.ws40_c00469{word-spacing:1.276800pt;}
.ws3c_c00469{word-spacing:1.281056pt;}
.ws3d_c00469{word-spacing:1.285632pt;}
.ws19_c00469{word-spacing:1.587200pt;}
.ws3e_c00469{word-spacing:1.604512pt;}
.ws1a_c00469{word-spacing:1.625600pt;}
.ws32_c00469{word-spacing:1.987968pt;}
.ws31_c00469{word-spacing:1.998656pt;}
.wsf_c00469{word-spacing:2.208000pt;}
.ws1e_c00469{word-spacing:2.233600pt;}
.ws10_c00469{word-spacing:2.246400pt;}
.ws14_c00469{word-spacing:2.284800pt;}
.ws39_c00469{word-spacing:2.645280pt;}
.ws38_c00469{word-spacing:3.003328pt;}
.ws18_c00469{word-spacing:3.244800pt;}
.wsd_c00469{word-spacing:3.545600pt;}
.ws2e_c00469{word-spacing:3.564448pt;}
.ws2d_c00469{word-spacing:3.580480pt;}
.ws28_c00469{word-spacing:3.591168pt;}
.ws27_c00469{word-spacing:3.596512pt;}
.ws2f_c00469{word-spacing:3.649952pt;}
.ws46_c00469{word-spacing:3.813376pt;}
.ws45_c00469{word-spacing:3.834656pt;}
.ws1c_c00469{word-spacing:3.929600pt;}
.ws1b_c00469{word-spacing:3.942400pt;}
.ws16_c00469{word-spacing:4.448000pt;}
.ws15_c00469{word-spacing:4.492800pt;}
.ws30_c00469{word-spacing:4.836320pt;}
.ws44_c00469{word-spacing:6.707456pt;}
.ws43_c00469{word-spacing:6.711712pt;}
.ws13_c00469{word-spacing:7.052800pt;}
.wse_c00469{word-spacing:7.059200pt;}
.ws12_c00469{word-spacing:7.110400pt;}
.ws29_c00469{word-spacing:8.352672pt;}
.ws2c_c00469{word-spacing:10.912448pt;}
.ws34_c00469{word-spacing:11.596480pt;}
.ws33_c00469{word-spacing:11.601824pt;}
.ws17_c00469{word-spacing:12.160000pt;}
.ws20_c00469{word-spacing:17.267200pt;}
.ws21_c00469{word-spacing:17.344000pt;}
.ws1f_c00469{word-spacing:19.539200pt;}
.ws22_c00469{word-spacing:19.846400pt;}
.ws23_c00469{word-spacing:19.865600pt;}
.ws37_c00469{word-spacing:20.205664pt;}
.ws35_c00469{word-spacing:20.601120pt;}
.ws36_c00469{word-spacing:20.611808pt;}
.ws2b_c00469{word-spacing:22.161568pt;}
.ws2a_c00469{word-spacing:22.188288pt;}
.wsc_c00469{word-spacing:26.566400pt;}
._1_c00469{margin-left:-1.031392pt;}
._0_c00469{width:0.935200pt;}
._2_c00469{width:2.021536pt;}
._3_c00469{width:6.669760pt;}
.fs4_c00469{font-size:34.560000pt;}
.fs3_c00469{font-size:37.440000pt;}
.fs5_c00469{font-size:42.560000pt;}
.fs2_c00469{font-size:48.000000pt;}
.fs0_c00469{font-size:53.440000pt;}
.fs1_c00469{font-size:64.000000pt;}
.y0_c00469{bottom:0.000000pt;}
.y3_c00469{bottom:51.067067pt;}
.y4_c00469{bottom:54.587067pt;}
.y2d_c00469{bottom:78.430427pt;}
.y2c_c00469{bottom:94.672187pt;}
.y2b_c00469{bottom:110.993947pt;}
.y2a_c00469{bottom:123.229947pt;}
.y29_c00469{bottom:135.391467pt;}
.y28_c00469{bottom:147.794427pt;}
.y27_c00469{bottom:164.031067pt;}
.y26_c00469{bottom:176.267067pt;}
.y25_c00469{bottom:189.787067pt;}
.y24_c00469{bottom:208.187067pt;}
.y23_c00469{bottom:226.587067pt;}
.y22_c00469{bottom:268.871067pt;}
.y21_c00469{bottom:283.834267pt;}
.y20_c00469{bottom:298.877627pt;}
.y1f_c00469{bottom:313.840827pt;}
.y1e_c00469{bottom:328.884187pt;}
.y1d_c00469{bottom:343.847387pt;}
.y1c_c00469{bottom:358.890747pt;}
.y1b_c00469{bottom:373.853947pt;}
.y1a_c00469{bottom:388.897307pt;}
.y19_c00469{bottom:403.860507pt;}
.y18_c00469{bottom:418.903867pt;}
.y17_c00469{bottom:433.867067pt;}
.y16_c00469{bottom:470.187067pt;}
.y15_c00469{bottom:500.747067pt;}
.y14_c00469{bottom:531.387067pt;}
.y13_c00469{bottom:561.947067pt;}
.y12_c00469{bottom:592.587067pt;}
.y11_c00469{bottom:639.147067pt;}
.y10_c00469{bottom:669.787067pt;}
.yf_c00469{bottom:700.347067pt;}
.ye_c00469{bottom:730.987067pt;}
.yd_c00469{bottom:761.547067pt;}
.yc_c00469{bottom:792.187067pt;}
.yb_c00469{bottom:822.747067pt;}
.ya_c00469{bottom:853.387067pt;}
.y9_c00469{bottom:891.947067pt;}
.y8_c00469{bottom:922.587067pt;}
.y7_c00469{bottom:953.147067pt;}
.y6_c00469{bottom:983.787067pt;}
.y5_c00469{bottom:1014.347067pt;}
.y2_c00469{bottom:1045.707067pt;}
.y1_c00469{bottom:1063.947067pt;}
.h2_c00469{height:42.656250pt;}
.h8_c00469{height:44.388750pt;}
.h1_c00469{height:44.724687pt;}
.h7_c00469{height:44.868688pt;}
.h3_c00469{height:50.062500pt;}
.h5_c00469{height:53.562500pt;}
.h6_c00469{height:57.894062pt;}
.h4_c00469{height:66.750000pt;}
.h0_c00469{height:1122.666667pt;}
.w1_c00469{width:793.333333pt;}
.w0_c00469{width:793.626667pt;}
.x0_c00469{left:0.000000pt;}
.x2_c00469{left:113.440000pt;}
.x7_c00469{left:125.447200pt;}
.x5_c00469{left:137.440000pt;}
.x6_c00469{left:161.440000pt;}
.x1_c00469{left:193.280000pt;}
.x4_c00469{left:386.880000pt;}
.x3_c00469{left:396.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_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_eb837695f6fb317f1eec7aa4.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00470;src:url('chunks/assets/font_7c7d0476b682e53bb703ea65.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00470;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.v1_c00470{vertical-align:15.840000px;}
.v2_c00470{vertical-align:29.880000px;}
.lsa_c00470{letter-spacing:-0.151200px;}
.ls12_c00470{letter-spacing:-0.036000px;}
.ls15_c00470{letter-spacing:-0.028800px;}
.lse_c00470{letter-spacing:-0.021600px;}
.lsb_c00470{letter-spacing:-0.014400px;}
.lsd_c00470{letter-spacing:-0.007200px;}
.ls11_c00470{letter-spacing:0.000000px;}
.ls3_c00470{letter-spacing:0.007200px;}
.ls8_c00470{letter-spacing:0.014400px;}
.ls4_c00470{letter-spacing:0.021600px;}
.ls13_c00470{letter-spacing:0.028800px;}
.ls14_c00470{letter-spacing:0.036000px;}
.ls9_c00470{letter-spacing:0.038304px;}
.ls2_c00470{letter-spacing:0.043200px;}
.ls0_c00470{letter-spacing:0.048096px;}
.lsc_c00470{letter-spacing:0.050400px;}
.lsf_c00470{letter-spacing:0.054756px;}
.ls10_c00470{letter-spacing:0.093600px;}
.ls5_c00470{letter-spacing:0.144000px;}
.ls7_c00470{letter-spacing:44.784000px;}
.ls6_c00470{letter-spacing:65.304000px;}
.ls1_c00470{letter-spacing:1212.120000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00470{word-spacing:-10.584756px;}
.ws9_c00470{word-spacing:-0.093600px;}
.ws24_c00470{word-spacing:-0.019152px;}
.ws2_c00470{word-spacing:0.000000px;}
.ws19_c00470{word-spacing:0.007200px;}
.ws1f_c00470{word-spacing:0.014400px;}
.ws8_c00470{word-spacing:0.021600px;}
.ws1_c00470{word-spacing:0.042084px;}
.ws12_c00470{word-spacing:0.064800px;}
.ws4_c00470{word-spacing:0.309600px;}
.ws3_c00470{word-spacing:0.374400px;}
.ws1b_c00470{word-spacing:0.396000px;}
.ws1c_c00470{word-spacing:0.432000px;}
.ws11_c00470{word-spacing:0.705600px;}
.ws10_c00470{word-spacing:0.806400px;}
.ws21_c00470{word-spacing:3.967200px;}
.ws22_c00470{word-spacing:4.046400px;}
.wse_c00470{word-spacing:4.334400px;}
.wsf_c00470{word-spacing:4.428000px;}
.ws1d_c00470{word-spacing:5.760000px;}
.ws5_c00470{word-spacing:6.112800px;}
.ws20_c00470{word-spacing:6.508800px;}
.ws1a_c00470{word-spacing:8.265600px;}
.wsb_c00470{word-spacing:8.272800px;}
.wsa_c00470{word-spacing:8.287200px;}
.ws13_c00470{word-spacing:10.360800px;}
.ws14_c00470{word-spacing:10.447200px;}
.ws18_c00470{word-spacing:12.571200px;}
.ws16_c00470{word-spacing:12.636000px;}
.ws17_c00470{word-spacing:12.664800px;}
.ws6_c00470{word-spacing:15.890400px;}
.wsd_c00470{word-spacing:16.538400px;}
.wsc_c00470{word-spacing:16.639200px;}
.ws23_c00470{word-spacing:18.352800px;}
.ws7_c00470{word-spacing:20.174400px;}
.ws15_c00470{word-spacing:44.301600px;}
.ws1e_c00470{word-spacing:50.544000px;}
._0_c00470{margin-left:-1.322640px;}
._1_c00470{width:1.008000px;}
.fc0_c00470{color:rgb(0,0,0);}
.fs3_c00470{font-size:42.120000px;}
.fs4_c00470{font-size:47.880000px;}
.fs2_c00470{font-size:54.000000px;}
.fs0_c00470{font-size:60.120000px;}
.fs1_c00470{font-size:72.000000px;}
.y0_c00470{bottom:0.000000px;}
.y2_c00470{bottom:57.450450px;}
.y1f_c00470{bottom:88.230450px;}
.y1e_c00470{bottom:103.440450px;}
.y1d_c00470{bottom:124.140450px;}
.y1c_c00470{bottom:144.840450px;}
.y1b_c00470{bottom:269.940450px;}
.y1a_c00470{bottom:304.410450px;}
.y19_c00470{bottom:338.790450px;}
.y18_c00470{bottom:382.260450px;}
.y17_c00470{bottom:416.640450px;}
.y16_c00470{bottom:451.110450px;}
.y15_c00470{bottom:485.490450px;}
.y14_c00470{bottom:528.960450px;}
.y13_c00470{bottom:563.340450px;}
.y12_c00470{bottom:597.810450px;}
.y11_c00470{bottom:641.190450px;}
.y10_c00470{bottom:675.660450px;}
.yf_c00470{bottom:710.040450px;}
.ye_c00470{bottom:744.510450px;}
.yd_c00470{bottom:778.890450px;}
.yc_c00470{bottom:822.360450px;}
.yb_c00470{bottom:856.740450px;}
.ya_c00470{bottom:891.210450px;}
.y9_c00470{bottom:925.590450px;}
.y8_c00470{bottom:960.060450px;}
.y7_c00470{bottom:1003.440450px;}
.y6_c00470{bottom:1037.910450px;}
.y5_c00470{bottom:1072.290450px;}
.y4_c00470{bottom:1106.760450px;}
.y3_c00470{bottom:1141.140450px;}
.y1_c00470{bottom:1196.850450px;}
.h6_c00470{height:47.988281px;}
.h7_c00470{height:49.937344px;}
.h1_c00470{height:50.315273px;}
.h3_c00470{height:60.257812px;}
.h4_c00470{height:65.130820px;}
.h2_c00470{height:72.160312px;}
.h5_c00470{height:75.093750px;}
.h0_c00470{height:1263.000000px;}
.w1_c00470{width:892.500000px;}
.w0_c00470{width:892.830000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:127.620000px;}
.x3_c00470{left:158.670000px;}
.x2_c00470{left:180.810000px;}
.x4_c00470{left:185.670000px;}
.x5_c00470{left:208.620000px;}
.x6_c00470{left:235.620000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.v1_c00470{vertical-align:14.080000pt;}
.v2_c00470{vertical-align:26.560000pt;}
.lsa_c00470{letter-spacing:-0.134400pt;}
.ls12_c00470{letter-spacing:-0.032000pt;}
.ls15_c00470{letter-spacing:-0.025600pt;}
.lse_c00470{letter-spacing:-0.019200pt;}
.lsb_c00470{letter-spacing:-0.012800pt;}
.lsd_c00470{letter-spacing:-0.006400pt;}
.ls11_c00470{letter-spacing:0.000000pt;}
.ls3_c00470{letter-spacing:0.006400pt;}
.ls8_c00470{letter-spacing:0.012800pt;}
.ls4_c00470{letter-spacing:0.019200pt;}
.ls13_c00470{letter-spacing:0.025600pt;}
.ls14_c00470{letter-spacing:0.032000pt;}
.ls9_c00470{letter-spacing:0.034048pt;}
.ls2_c00470{letter-spacing:0.038400pt;}
.ls0_c00470{letter-spacing:0.042752pt;}
.lsc_c00470{letter-spacing:0.044800pt;}
.lsf_c00470{letter-spacing:0.048672pt;}
.ls10_c00470{letter-spacing:0.083200pt;}
.ls5_c00470{letter-spacing:0.128000pt;}
.ls7_c00470{letter-spacing:39.808000pt;}
.ls6_c00470{letter-spacing:58.048000pt;}
.ls1_c00470{letter-spacing:1077.440000pt;}
.ws0_c00470{word-spacing:-9.408672pt;}
.ws9_c00470{word-spacing:-0.083200pt;}
.ws24_c00470{word-spacing:-0.017024pt;}
.ws2_c00470{word-spacing:0.000000pt;}
.ws19_c00470{word-spacing:0.006400pt;}
.ws1f_c00470{word-spacing:0.012800pt;}
.ws8_c00470{word-spacing:0.019200pt;}
.ws1_c00470{word-spacing:0.037408pt;}
.ws12_c00470{word-spacing:0.057600pt;}
.ws4_c00470{word-spacing:0.275200pt;}
.ws3_c00470{word-spacing:0.332800pt;}
.ws1b_c00470{word-spacing:0.352000pt;}
.ws1c_c00470{word-spacing:0.384000pt;}
.ws11_c00470{word-spacing:0.627200pt;}
.ws10_c00470{word-spacing:0.716800pt;}
.ws21_c00470{word-spacing:3.526400pt;}
.ws22_c00470{word-spacing:3.596800pt;}
.wse_c00470{word-spacing:3.852800pt;}
.wsf_c00470{word-spacing:3.936000pt;}
.ws1d_c00470{word-spacing:5.120000pt;}
.ws5_c00470{word-spacing:5.433600pt;}
.ws20_c00470{word-spacing:5.785600pt;}
.ws1a_c00470{word-spacing:7.347200pt;}
.wsb_c00470{word-spacing:7.353600pt;}
.wsa_c00470{word-spacing:7.366400pt;}
.ws13_c00470{word-spacing:9.209600pt;}
.ws14_c00470{word-spacing:9.286400pt;}
.ws18_c00470{word-spacing:11.174400pt;}
.ws16_c00470{word-spacing:11.232000pt;}
.ws17_c00470{word-spacing:11.257600pt;}
.ws6_c00470{word-spacing:14.124800pt;}
.wsd_c00470{word-spacing:14.700800pt;}
.wsc_c00470{word-spacing:14.790400pt;}
.ws23_c00470{word-spacing:16.313600pt;}
.ws7_c00470{word-spacing:17.932800pt;}
.ws15_c00470{word-spacing:39.379200pt;}
.ws1e_c00470{word-spacing:44.928000pt;}
._0_c00470{margin-left:-1.175680pt;}
._1_c00470{width:0.896000pt;}
.fs3_c00470{font-size:37.440000pt;}
.fs4_c00470{font-size:42.560000pt;}
.fs2_c00470{font-size:48.000000pt;}
.fs0_c00470{font-size:53.440000pt;}
.fs1_c00470{font-size:64.000000pt;}
.y0_c00470{bottom:0.000000pt;}
.y2_c00470{bottom:51.067067pt;}
.y1f_c00470{bottom:78.427067pt;}
.y1e_c00470{bottom:91.947067pt;}
.y1d_c00470{bottom:110.347067pt;}
.y1c_c00470{bottom:128.747067pt;}
.y1b_c00470{bottom:239.947067pt;}
.y1a_c00470{bottom:270.587067pt;}
.y19_c00470{bottom:301.147067pt;}
.y18_c00470{bottom:339.787067pt;}
.y17_c00470{bottom:370.347067pt;}
.y16_c00470{bottom:400.987067pt;}
.y15_c00470{bottom:431.547067pt;}
.y14_c00470{bottom:470.187067pt;}
.y13_c00470{bottom:500.747067pt;}
.y12_c00470{bottom:531.387067pt;}
.y11_c00470{bottom:569.947067pt;}
.y10_c00470{bottom:600.587067pt;}
.yf_c00470{bottom:631.147067pt;}
.ye_c00470{bottom:661.787067pt;}
.yd_c00470{bottom:692.347067pt;}
.yc_c00470{bottom:730.987067pt;}
.yb_c00470{bottom:761.547067pt;}
.ya_c00470{bottom:792.187067pt;}
.y9_c00470{bottom:822.747067pt;}
.y8_c00470{bottom:853.387067pt;}
.y7_c00470{bottom:891.947067pt;}
.y6_c00470{bottom:922.587067pt;}
.y5_c00470{bottom:953.147067pt;}
.y4_c00470{bottom:983.787067pt;}
.y3_c00470{bottom:1014.347067pt;}
.y1_c00470{bottom:1063.867067pt;}
.h6_c00470{height:42.656250pt;}
.h7_c00470{height:44.388750pt;}
.h1_c00470{height:44.724687pt;}
.h3_c00470{height:53.562500pt;}
.h4_c00470{height:57.894062pt;}
.h2_c00470{height:64.142500pt;}
.h5_c00470{height:66.750000pt;}
.h0_c00470{height:1122.666667pt;}
.w1_c00470{width:793.333333pt;}
.w0_c00470{width:793.626667pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:113.440000pt;}
.x3_c00470{left:141.040000pt;}
.x2_c00470{left:160.720000pt;}
.x4_c00470{left:165.040000pt;}
.x5_c00470{left:185.440000pt;}
.x6_c00470{left:209.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_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_bdbb94dccc8013af54315846.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00471;src:url('chunks/assets/font_f82da2eeb260fadaece36f22.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00471;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;line-height:1.281250;font-style: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;}
.v1_c00471{vertical-align:29.880000px;}
.lse_c00471{letter-spacing:-0.266400px;}
.lsa_c00471{letter-spacing:-0.151200px;}
.lsf_c00471{letter-spacing:-0.036000px;}
.ls7_c00471{letter-spacing:-0.030060px;}
.ls11_c00471{letter-spacing:-0.028800px;}
.lsc_c00471{letter-spacing:-0.021600px;}
.lsb_c00471{letter-spacing:-0.014400px;}
.ls10_c00471{letter-spacing:-0.007200px;}
.ls8_c00471{letter-spacing:-0.006012px;}
.ls9_c00471{letter-spacing:0.000000px;}
.ls2_c00471{letter-spacing:0.007200px;}
.ls5_c00471{letter-spacing:0.008424px;}
.ls3_c00471{letter-spacing:0.014400px;}
.ls13_c00471{letter-spacing:0.021600px;}
.ls6_c00471{letter-spacing:0.038304px;}
.lsd_c00471{letter-spacing:0.054756px;}
.ls12_c00471{letter-spacing:0.086400px;}
.ls14_c00471{letter-spacing:0.093600px;}
.ls0_c00471{letter-spacing:0.144000px;}
.ls4_c00471{letter-spacing:44.784000px;}
.ls1_c00471{letter-spacing:65.304000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00471{word-spacing:-10.584756px;}
.ws2_c00471{word-spacing:-0.264528px;}
.ws1_c00471{word-spacing:-0.240480px;}
.ws17_c00471{word-spacing:-0.096876px;}
.ws21_c00471{word-spacing:-0.019152px;}
.ws3_c00471{word-spacing:0.000000px;}
.ws8_c00471{word-spacing:0.007200px;}
.ws5_c00471{word-spacing:0.021600px;}
.ws20_c00471{word-spacing:0.028800px;}
.ws1c_c00471{word-spacing:0.057600px;}
.ws13_c00471{word-spacing:0.367200px;}
.ws14_c00471{word-spacing:0.381600px;}
.ws6_c00471{word-spacing:1.072800px;}
.ws12_c00471{word-spacing:2.167200px;}
.ws10_c00471{word-spacing:3.988800px;}
.wsf_c00471{word-spacing:4.068000px;}
.ws1f_c00471{word-spacing:5.428800px;}
.ws4_c00471{word-spacing:5.810400px;}
.ws16_c00471{word-spacing:6.004800px;}
.ws15_c00471{word-spacing:6.148800px;}
.ws18_c00471{word-spacing:7.185600px;}
.ws1d_c00471{word-spacing:7.264800px;}
.ws1a_c00471{word-spacing:7.596000px;}
.ws19_c00471{word-spacing:7.761600px;}
.ws1e_c00471{word-spacing:9.360000px;}
.ws7_c00471{word-spacing:11.916000px;}
.wsc_c00471{word-spacing:12.225600px;}
.wsd_c00471{word-spacing:12.384000px;}
.wse_c00471{word-spacing:17.647200px;}
.ws1b_c00471{word-spacing:21.261600px;}
.ws11_c00471{word-spacing:21.967200px;}
.ws9_c00471{word-spacing:35.992800px;}
.wsb_c00471{word-spacing:70.207200px;}
.wsa_c00471{word-spacing:70.315200px;}
._1_c00471{margin-left:-1.296000px;}
._0_c00471{width:1.052100px;}
.fc0_c00471{color:rgb(0,0,0);}
.fs3_c00471{font-size:42.120000px;}
.fs4_c00471{font-size:47.880000px;}
.fs2_c00471{font-size:54.000000px;}
.fs0_c00471{font-size:60.120000px;}
.fs1_c00471{font-size:72.000000px;}
.y0_c00471{bottom:0.000000px;}
.y3_c00471{bottom:57.450450px;}
.y4_c00471{bottom:61.410450px;}
.y21_c00471{bottom:88.232250px;}
.y20_c00471{bottom:106.498470px;}
.y1f_c00471{bottom:124.860450px;}
.y1e_c00471{bottom:140.070450px;}
.y1d_c00471{bottom:160.770450px;}
.y1c_c00471{bottom:181.470450px;}
.y1b_c00471{bottom:347.790450px;}
.y1a_c00471{bottom:382.260450px;}
.y19_c00471{bottom:416.640450px;}
.y18_c00471{bottom:451.110450px;}
.y17_c00471{bottom:494.490450px;}
.y16_c00471{bottom:528.960450px;}
.y15_c00471{bottom:563.340450px;}
.y14_c00471{bottom:597.810450px;}
.y13_c00471{bottom:641.190450px;}
.y12_c00471{bottom:675.660450px;}
.y11_c00471{bottom:710.040450px;}
.y10_c00471{bottom:744.510450px;}
.yf_c00471{bottom:778.890450px;}
.ye_c00471{bottom:813.360450px;}
.yd_c00471{bottom:847.740450px;}
.yc_c00471{bottom:882.210450px;}
.yb_c00471{bottom:916.590450px;}
.ya_c00471{bottom:951.060450px;}
.y9_c00471{bottom:994.440450px;}
.y8_c00471{bottom:1028.910450px;}
.y7_c00471{bottom:1063.290450px;}
.y6_c00471{bottom:1106.760450px;}
.y5_c00471{bottom:1141.140450px;}
.y2_c00471{bottom:1176.420450px;}
.y1_c00471{bottom:1196.940450px;}
.h2_c00471{height:47.988281px;}
.h8_c00471{height:49.937344px;}
.h1_c00471{height:50.315273px;}
.h3_c00471{height:56.320312px;}
.h4_c00471{height:60.257812px;}
.h5_c00471{height:65.130820px;}
.h7_c00471{height:65.131420px;}
.h6_c00471{height:75.093750px;}
.h0_c00471{height:1263.000000px;}
.w1_c00471{width:892.500000px;}
.w0_c00471{width:892.830000px;}
.x0_c00471{left:0.000000px;}
.x2_c00471{left:127.620000px;}
.x6_c00471{left:158.670000px;}
.x7_c00471{left:185.670000px;}
.x8_c00471{left:208.620000px;}
.x1_c00471{left:217.440000px;}
.xa_c00471{left:234.000000px;}
.x5_c00471{left:235.620000px;}
.x9_c00471{left:262.620000px;}
.x4_c00471{left:435.240000px;}
.x3_c00471{left:446.490000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.v1_c00471{vertical-align:26.560000pt;}
.lse_c00471{letter-spacing:-0.236800pt;}
.lsa_c00471{letter-spacing:-0.134400pt;}
.lsf_c00471{letter-spacing:-0.032000pt;}
.ls7_c00471{letter-spacing:-0.026720pt;}
.ls11_c00471{letter-spacing:-0.025600pt;}
.lsc_c00471{letter-spacing:-0.019200pt;}
.lsb_c00471{letter-spacing:-0.012800pt;}
.ls10_c00471{letter-spacing:-0.006400pt;}
.ls8_c00471{letter-spacing:-0.005344pt;}
.ls9_c00471{letter-spacing:0.000000pt;}
.ls2_c00471{letter-spacing:0.006400pt;}
.ls5_c00471{letter-spacing:0.007488pt;}
.ls3_c00471{letter-spacing:0.012800pt;}
.ls13_c00471{letter-spacing:0.019200pt;}
.ls6_c00471{letter-spacing:0.034048pt;}
.lsd_c00471{letter-spacing:0.048672pt;}
.ls12_c00471{letter-spacing:0.076800pt;}
.ls14_c00471{letter-spacing:0.083200pt;}
.ls0_c00471{letter-spacing:0.128000pt;}
.ls4_c00471{letter-spacing:39.808000pt;}
.ls1_c00471{letter-spacing:58.048000pt;}
.ws0_c00471{word-spacing:-9.408672pt;}
.ws2_c00471{word-spacing:-0.235136pt;}
.ws1_c00471{word-spacing:-0.213760pt;}
.ws17_c00471{word-spacing:-0.086112pt;}
.ws21_c00471{word-spacing:-0.017024pt;}
.ws3_c00471{word-spacing:0.000000pt;}
.ws8_c00471{word-spacing:0.006400pt;}
.ws5_c00471{word-spacing:0.019200pt;}
.ws20_c00471{word-spacing:0.025600pt;}
.ws1c_c00471{word-spacing:0.051200pt;}
.ws13_c00471{word-spacing:0.326400pt;}
.ws14_c00471{word-spacing:0.339200pt;}
.ws6_c00471{word-spacing:0.953600pt;}
.ws12_c00471{word-spacing:1.926400pt;}
.ws10_c00471{word-spacing:3.545600pt;}
.wsf_c00471{word-spacing:3.616000pt;}
.ws1f_c00471{word-spacing:4.825600pt;}
.ws4_c00471{word-spacing:5.164800pt;}
.ws16_c00471{word-spacing:5.337600pt;}
.ws15_c00471{word-spacing:5.465600pt;}
.ws18_c00471{word-spacing:6.387200pt;}
.ws1d_c00471{word-spacing:6.457600pt;}
.ws1a_c00471{word-spacing:6.752000pt;}
.ws19_c00471{word-spacing:6.899200pt;}
.ws1e_c00471{word-spacing:8.320000pt;}
.ws7_c00471{word-spacing:10.592000pt;}
.wsc_c00471{word-spacing:10.867200pt;}
.wsd_c00471{word-spacing:11.008000pt;}
.wse_c00471{word-spacing:15.686400pt;}
.ws1b_c00471{word-spacing:18.899200pt;}
.ws11_c00471{word-spacing:19.526400pt;}
.ws9_c00471{word-spacing:31.993600pt;}
.wsb_c00471{word-spacing:62.406400pt;}
.wsa_c00471{word-spacing:62.502400pt;}
._1_c00471{margin-left:-1.152000pt;}
._0_c00471{width:0.935200pt;}
.fs3_c00471{font-size:37.440000pt;}
.fs4_c00471{font-size:42.560000pt;}
.fs2_c00471{font-size:48.000000pt;}
.fs0_c00471{font-size:53.440000pt;}
.fs1_c00471{font-size:64.000000pt;}
.y0_c00471{bottom:0.000000pt;}
.y3_c00471{bottom:51.067067pt;}
.y4_c00471{bottom:54.587067pt;}
.y21_c00471{bottom:78.428667pt;}
.y20_c00471{bottom:94.665307pt;}
.y1f_c00471{bottom:110.987067pt;}
.y1e_c00471{bottom:124.507067pt;}
.y1d_c00471{bottom:142.907067pt;}
.y1c_c00471{bottom:161.307067pt;}
.y1b_c00471{bottom:309.147067pt;}
.y1a_c00471{bottom:339.787067pt;}
.y19_c00471{bottom:370.347067pt;}
.y18_c00471{bottom:400.987067pt;}
.y17_c00471{bottom:439.547067pt;}
.y16_c00471{bottom:470.187067pt;}
.y15_c00471{bottom:500.747067pt;}
.y14_c00471{bottom:531.387067pt;}
.y13_c00471{bottom:569.947067pt;}
.y12_c00471{bottom:600.587067pt;}
.y11_c00471{bottom:631.147067pt;}
.y10_c00471{bottom:661.787067pt;}
.yf_c00471{bottom:692.347067pt;}
.ye_c00471{bottom:722.987067pt;}
.yd_c00471{bottom:753.547067pt;}
.yc_c00471{bottom:784.187067pt;}
.yb_c00471{bottom:814.747067pt;}
.ya_c00471{bottom:845.387067pt;}
.y9_c00471{bottom:883.947067pt;}
.y8_c00471{bottom:914.587067pt;}
.y7_c00471{bottom:945.147067pt;}
.y6_c00471{bottom:983.787067pt;}
.y5_c00471{bottom:1014.347067pt;}
.y2_c00471{bottom:1045.707067pt;}
.y1_c00471{bottom:1063.947067pt;}
.h2_c00471{height:42.656250pt;}
.h8_c00471{height:44.388750pt;}
.h1_c00471{height:44.724687pt;}
.h3_c00471{height:50.062500pt;}
.h4_c00471{height:53.562500pt;}
.h5_c00471{height:57.894063pt;}
.h7_c00471{height:57.894596pt;}
.h6_c00471{height:66.750000pt;}
.h0_c00471{height:1122.666667pt;}
.w1_c00471{width:793.333333pt;}
.w0_c00471{width:793.626667pt;}
.x0_c00471{left:0.000000pt;}
.x2_c00471{left:113.440000pt;}
.x6_c00471{left:141.040000pt;}
.x7_c00471{left:165.040000pt;}
.x8_c00471{left:185.440000pt;}
.x1_c00471{left:193.280000pt;}
.xa_c00471{left:208.000000pt;}
.x5_c00471{left:209.440000pt;}
.x9_c00471{left:233.440000pt;}
.x4_c00471{left:386.880000pt;}
.x3_c00471{left:396.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_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_c8b1004e8bd0264ee6787702.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00472;src:url('chunks/assets/font_bd0f137edc87110fa3958b74.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00472;src:url('chunks/assets/font_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:1.281250;font-style:normal;font-weight:normal;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_06c4cc3cf59b7b18b84aac61.woff2')format("woff");}.ff5_c00472{font-family:ff5_c00472;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00472;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00472{font-family:ff6_c00472;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00472;src:url('chunks/assets/font_1381d67213adf52299845c1e.woff2')format("woff");}.ff7_c00472{font-family:ff7_c00472;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_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;}
.v1_c00472{vertical-align:15.840000px;}
.v2_c00472{vertical-align:29.880000px;}
.ls25_c00472{letter-spacing:-0.266400px;}
.ls1c_c00472{letter-spacing:-0.151200px;}
.ls27_c00472{letter-spacing:-0.050400px;}
.ls1f_c00472{letter-spacing:-0.043200px;}
.ls1e_c00472{letter-spacing:-0.028800px;}
.ls23_c00472{letter-spacing:-0.021600px;}
.ls2b_c00472{letter-spacing:-0.019152px;}
.ls24_c00472{letter-spacing:-0.014400px;}
.ls30_c00472{letter-spacing:-0.014364px;}
.ls28_c00472{letter-spacing:-0.011664px;}
.ls2a_c00472{letter-spacing:-0.009576px;}
.ls2f_c00472{letter-spacing:-0.007776px;}
.ls20_c00472{letter-spacing:-0.007200px;}
.ls2e_c00472{letter-spacing:-0.003888px;}
.ls1d_c00472{letter-spacing:0.000000px;}
.ls31_c00472{letter-spacing:0.003888px;}
.ls5_c00472{letter-spacing:0.007200px;}
.ls15_c00472{letter-spacing:0.009360px;}
.ls9_c00472{letter-spacing:0.014364px;}
.ls7_c00472{letter-spacing:0.014400px;}
.ls13_c00472{letter-spacing:0.018720px;}
.ls10_c00472{letter-spacing:0.019152px;}
.lsa_c00472{letter-spacing:0.023940px;}
.lsc_c00472{letter-spacing:0.028728px;}
.ls6_c00472{letter-spacing:0.028800px;}
.ls3_c00472{letter-spacing:0.031248px;}
.ls1a_c00472{letter-spacing:0.033516px;}
.ls26_c00472{letter-spacing:0.036000px;}
.ls8_c00472{letter-spacing:0.038304px;}
.lse_c00472{letter-spacing:0.043092px;}
.ls14_c00472{letter-spacing:0.047880px;}
.ls0_c00472{letter-spacing:0.048096px;}
.lsf_c00472{letter-spacing:0.052668px;}
.ls21_c00472{letter-spacing:0.054756px;}
.ls12_c00472{letter-spacing:0.062244px;}
.lsd_c00472{letter-spacing:0.067032px;}
.lsb_c00472{letter-spacing:0.071820px;}
.ls32_c00472{letter-spacing:0.076608px;}
.ls17_c00472{letter-spacing:0.081396px;}
.ls22_c00472{letter-spacing:0.093600px;}
.ls19_c00472{letter-spacing:0.100548px;}
.ls2c_c00472{letter-spacing:0.346032px;}
.ls29_c00472{letter-spacing:0.357696px;}
.ls11_c00472{letter-spacing:0.378720px;}
.ls18_c00472{letter-spacing:0.711360px;}
.ls2d_c00472{letter-spacing:0.737352px;}
.ls16_c00472{letter-spacing:1.431360px;}
.ls1b_c00472{letter-spacing:7.911360px;}
.ls4_c00472{letter-spacing:26.560800px;}
.ls2_c00472{letter-spacing:44.784000px;}
.ls1_c00472{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00472{word-spacing:-19.561248px;}
.ws9_c00472{word-spacing:-13.387248px;}
.ws2_c00472{word-spacing:-13.310640px;}
.ws3_c00472{word-spacing:-11.166336px;}
.ws5_c00472{word-spacing:-11.154672px;}
.ws4_c00472{word-spacing:-10.808640px;}
.ws7_c00472{word-spacing:-10.804752px;}
.ws8_c00472{word-spacing:-10.800864px;}
.ws6_c00472{word-spacing:-10.796976px;}
.ws0_c00472{word-spacing:-10.584756px;}
.ws10_c00472{word-spacing:-0.148428px;}
.ws15_c00472{word-spacing:-0.093600px;}
.ws23_c00472{word-spacing:-0.036000px;}
.ws3b_c00472{word-spacing:-0.033516px;}
.ws1d_c00472{word-spacing:-0.028800px;}
.ws3d_c00472{word-spacing:-0.028728px;}
.ws2d_c00472{word-spacing:-0.019152px;}
.ws4f_c00472{word-spacing:-0.009576px;}
.ws3c_c00472{word-spacing:-0.004788px;}
.wsb_c00472{word-spacing:0.000000px;}
.wsf_c00472{word-spacing:0.007200px;}
.wsa_c00472{word-spacing:0.042084px;}
.ws1c_c00472{word-spacing:0.057600px;}
.ws14_c00472{word-spacing:0.064800px;}
.ws22_c00472{word-spacing:0.093600px;}
.ws45_c00472{word-spacing:0.330372px;}
.ws44_c00472{word-spacing:0.378252px;}
.ws2a_c00472{word-spacing:0.388800px;}
.ws32_c00472{word-spacing:0.665532px;}
.ws49_c00472{word-spacing:0.703836px;}
.ws33_c00472{word-spacing:0.708624px;}
.ws4a_c00472{word-spacing:0.718200px;}
.ws3f_c00472{word-spacing:1.034208px;}
.ws19_c00472{word-spacing:1.036800px;}
.ws3e_c00472{word-spacing:1.058148px;}
.ws40_c00472{word-spacing:1.077300px;}
.ws1a_c00472{word-spacing:1.087200px;}
.ws4b_c00472{word-spacing:1.407672px;}
.ws4c_c00472{word-spacing:1.417248px;}
.ws34_c00472{word-spacing:2.111508px;}
.ws35_c00472{word-spacing:2.135448px;}
.ws1e_c00472{word-spacing:2.462400px;}
.ws46_c00472{word-spacing:2.484972px;}
.ws47_c00472{word-spacing:2.508912px;}
.ws11_c00472{word-spacing:2.512800px;}
.ws48_c00472{word-spacing:2.537640px;}
.ws1f_c00472{word-spacing:2.541600px;}
.ws43_c00472{word-spacing:2.815344px;}
.ws42_c00472{word-spacing:2.844072px;}
.ws41_c00472{word-spacing:2.848860px;}
.ws27_c00472{word-spacing:4.312800px;}
.ws26_c00472{word-spacing:4.320000px;}
.ws1b_c00472{word-spacing:4.384800px;}
.ws39_c00472{word-spacing:4.634784px;}
.ws37_c00472{word-spacing:4.658724px;}
.ws3a_c00472{word-spacing:4.668300px;}
.ws38_c00472{word-spacing:4.677876px;}
.ws2c_c00472{word-spacing:4.780800px;}
.ws2b_c00472{word-spacing:4.795200px;}
.ws24_c00472{word-spacing:5.061600px;}
.ws25_c00472{word-spacing:5.184000px;}
.ws13_c00472{word-spacing:5.364000px;}
.ws12_c00472{word-spacing:5.407200px;}
.ws20_c00472{word-spacing:6.105600px;}
.ws21_c00472{word-spacing:6.192000px;}
.ws2f_c00472{word-spacing:6.832476px;}
.ws2e_c00472{word-spacing:6.842052px;}
.ws30_c00472{word-spacing:6.865992px;}
.ws31_c00472{word-spacing:6.875568px;}
.ws4d_c00472{word-spacing:7.526736px;}
.ws4e_c00472{word-spacing:7.565040px;}
.ws18_c00472{word-spacing:8.971200px;}
.ws17_c00472{word-spacing:9.108000px;}
.ws36_c00472{word-spacing:14.004900px;}
.wsc_c00472{word-spacing:15.544800px;}
.ws16_c00472{word-spacing:16.927200px;}
.wsd_c00472{word-spacing:21.981600px;}
.wse_c00472{word-spacing:22.089600px;}
.ws29_c00472{word-spacing:27.021600px;}
.ws28_c00472{word-spacing:27.050400px;}
._0_c00472{margin-left:-1.322640px;}
._1_c00472{width:1.368000px;}
._4_c00472{width:2.922732px;}
._3_c00472{width:5.458320px;}
._2_c00472{width:6.915096px;}
.fc0_c00472{color:rgb(0,0,0);}
.fs6_c00472{font-size:38.880000px;}
.fs3_c00472{font-size:42.120000px;}
.fs5_c00472{font-size:47.880000px;}
.fs2_c00472{font-size:54.000000px;}
.fs0_c00472{font-size:60.120000px;}
.fs1_c00472{font-size:72.000000px;}
.fs4_c00472{font-size:78.120000px;}
.y0_c00472{bottom:0.000000px;}
.y2_c00472{bottom:57.450450px;}
.y2a_c00472{bottom:88.234950px;}
.y29_c00472{bottom:102.003690px;}
.y28_c00472{bottom:115.864950px;}
.y27_c00472{bottom:129.627210px;}
.y26_c00472{bottom:143.399190px;}
.y25_c00472{bottom:157.269450px;}
.y24_c00472{bottom:171.034950px;}
.y23_c00472{bottom:184.802250px;}
.y22_c00472{bottom:203.164230px;}
.y21_c00472{bottom:221.430450px;}
.y20_c00472{bottom:235.203690px;}
.y1f_c00472{bottom:249.064950px;}
.y1e_c00472{bottom:262.839450px;}
.y1d_c00472{bottom:276.604950px;}
.y1c_c00472{bottom:290.368470px;}
.y1b_c00472{bottom:308.730450px;}
.y1a_c00472{bottom:323.940450px;}
.y19_c00472{bottom:344.640450px;}
.y18_c00472{bottom:365.340450px;}
.y17_c00472{bottom:404.760450px;}
.y16_c00472{bottom:439.230450px;}
.y15_c00472{bottom:482.610450px;}
.y14_c00472{bottom:517.080450px;}
.y13_c00472{bottom:551.460450px;}
.y12_c00472{bottom:585.930450px;}
.y11_c00472{bottom:620.310450px;}
.y10_c00472{bottom:654.780450px;}
.yf_c00472{bottom:689.160450px;}
.ye_c00472{bottom:723.630450px;}
.yd_c00472{bottom:758.010450px;}
.yc_c00472{bottom:792.480450px;}
.yb_c00472{bottom:826.860450px;}
.ya_c00472{bottom:861.330450px;}
.y9_c00472{bottom:895.710450px;}
.y8_c00472{bottom:930.180450px;}
.y7_c00472{bottom:964.560450px;}
.y6_c00472{bottom:1009.650450px;}
.y5_c00472{bottom:1072.290450px;}
.y4_c00472{bottom:1106.760450px;}
.y3_c00472{bottom:1141.140450px;}
.y1_c00472{bottom:1196.850450px;}
.h7_c00472{height:47.988281px;}
.h8_c00472{height:49.937344px;}
.ha_c00472{height:49.942384px;}
.h9_c00472{height:49.945264px;}
.hb_c00472{height:49.950304px;}
.h1_c00472{height:50.315273px;}
.h4_c00472{height:60.257812px;}
.h5_c00472{height:65.130820px;}
.h2_c00472{height:72.160312px;}
.h3_c00472{height:75.093750px;}
.h6_c00472{height:81.476719px;}
.h0_c00472{height:1263.000000px;}
.w1_c00472{width:892.500000px;}
.w0_c00472{width:892.830000px;}
.x0_c00472{left:0.000000px;}
.x1_c00472{left:127.620000px;}
.x5_c00472{left:141.127560px;}
.x4_c00472{left:180.810000px;}
.x2_c00472{left:208.620000px;}
.x3_c00472{left:235.620000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.v1_c00472{vertical-align:14.080000pt;}
.v2_c00472{vertical-align:26.560000pt;}
.ls25_c00472{letter-spacing:-0.236800pt;}
.ls1c_c00472{letter-spacing:-0.134400pt;}
.ls27_c00472{letter-spacing:-0.044800pt;}
.ls1f_c00472{letter-spacing:-0.038400pt;}
.ls1e_c00472{letter-spacing:-0.025600pt;}
.ls23_c00472{letter-spacing:-0.019200pt;}
.ls2b_c00472{letter-spacing:-0.017024pt;}
.ls24_c00472{letter-spacing:-0.012800pt;}
.ls30_c00472{letter-spacing:-0.012768pt;}
.ls28_c00472{letter-spacing:-0.010368pt;}
.ls2a_c00472{letter-spacing:-0.008512pt;}
.ls2f_c00472{letter-spacing:-0.006912pt;}
.ls20_c00472{letter-spacing:-0.006400pt;}
.ls2e_c00472{letter-spacing:-0.003456pt;}
.ls1d_c00472{letter-spacing:0.000000pt;}
.ls31_c00472{letter-spacing:0.003456pt;}
.ls5_c00472{letter-spacing:0.006400pt;}
.ls15_c00472{letter-spacing:0.008320pt;}
.ls9_c00472{letter-spacing:0.012768pt;}
.ls7_c00472{letter-spacing:0.012800pt;}
.ls13_c00472{letter-spacing:0.016640pt;}
.ls10_c00472{letter-spacing:0.017024pt;}
.lsa_c00472{letter-spacing:0.021280pt;}
.lsc_c00472{letter-spacing:0.025536pt;}
.ls6_c00472{letter-spacing:0.025600pt;}
.ls3_c00472{letter-spacing:0.027776pt;}
.ls1a_c00472{letter-spacing:0.029792pt;}
.ls26_c00472{letter-spacing:0.032000pt;}
.ls8_c00472{letter-spacing:0.034048pt;}
.lse_c00472{letter-spacing:0.038304pt;}
.ls14_c00472{letter-spacing:0.042560pt;}
.ls0_c00472{letter-spacing:0.042752pt;}
.lsf_c00472{letter-spacing:0.046816pt;}
.ls21_c00472{letter-spacing:0.048672pt;}
.ls12_c00472{letter-spacing:0.055328pt;}
.lsd_c00472{letter-spacing:0.059584pt;}
.lsb_c00472{letter-spacing:0.063840pt;}
.ls32_c00472{letter-spacing:0.068096pt;}
.ls17_c00472{letter-spacing:0.072352pt;}
.ls22_c00472{letter-spacing:0.083200pt;}
.ls19_c00472{letter-spacing:0.089376pt;}
.ls2c_c00472{letter-spacing:0.307584pt;}
.ls29_c00472{letter-spacing:0.317952pt;}
.ls11_c00472{letter-spacing:0.336640pt;}
.ls18_c00472{letter-spacing:0.632320pt;}
.ls2d_c00472{letter-spacing:0.655424pt;}
.ls16_c00472{letter-spacing:1.272320pt;}
.ls1b_c00472{letter-spacing:7.032320pt;}
.ls4_c00472{letter-spacing:23.609600pt;}
.ls2_c00472{letter-spacing:39.808000pt;}
.ls1_c00472{letter-spacing:1077.440000pt;}
.ws1_c00472{word-spacing:-17.387776pt;}
.ws9_c00472{word-spacing:-11.899776pt;}
.ws2_c00472{word-spacing:-11.831680pt;}
.ws3_c00472{word-spacing:-9.925632pt;}
.ws5_c00472{word-spacing:-9.915264pt;}
.ws4_c00472{word-spacing:-9.607680pt;}
.ws7_c00472{word-spacing:-9.604224pt;}
.ws8_c00472{word-spacing:-9.600768pt;}
.ws6_c00472{word-spacing:-9.597312pt;}
.ws0_c00472{word-spacing:-9.408672pt;}
.ws10_c00472{word-spacing:-0.131936pt;}
.ws15_c00472{word-spacing:-0.083200pt;}
.ws23_c00472{word-spacing:-0.032000pt;}
.ws3b_c00472{word-spacing:-0.029792pt;}
.ws1d_c00472{word-spacing:-0.025600pt;}
.ws3d_c00472{word-spacing:-0.025536pt;}
.ws2d_c00472{word-spacing:-0.017024pt;}
.ws4f_c00472{word-spacing:-0.008512pt;}
.ws3c_c00472{word-spacing:-0.004256pt;}
.wsb_c00472{word-spacing:0.000000pt;}
.wsf_c00472{word-spacing:0.006400pt;}
.wsa_c00472{word-spacing:0.037408pt;}
.ws1c_c00472{word-spacing:0.051200pt;}
.ws14_c00472{word-spacing:0.057600pt;}
.ws22_c00472{word-spacing:0.083200pt;}
.ws45_c00472{word-spacing:0.293664pt;}
.ws44_c00472{word-spacing:0.336224pt;}
.ws2a_c00472{word-spacing:0.345600pt;}
.ws32_c00472{word-spacing:0.591584pt;}
.ws49_c00472{word-spacing:0.625632pt;}
.ws33_c00472{word-spacing:0.629888pt;}
.ws4a_c00472{word-spacing:0.638400pt;}
.ws3f_c00472{word-spacing:0.919296pt;}
.ws19_c00472{word-spacing:0.921600pt;}
.ws3e_c00472{word-spacing:0.940576pt;}
.ws40_c00472{word-spacing:0.957600pt;}
.ws1a_c00472{word-spacing:0.966400pt;}
.ws4b_c00472{word-spacing:1.251264pt;}
.ws4c_c00472{word-spacing:1.259776pt;}
.ws34_c00472{word-spacing:1.876896pt;}
.ws35_c00472{word-spacing:1.898176pt;}
.ws1e_c00472{word-spacing:2.188800pt;}
.ws46_c00472{word-spacing:2.208864pt;}
.ws47_c00472{word-spacing:2.230144pt;}
.ws11_c00472{word-spacing:2.233600pt;}
.ws48_c00472{word-spacing:2.255680pt;}
.ws1f_c00472{word-spacing:2.259200pt;}
.ws43_c00472{word-spacing:2.502528pt;}
.ws42_c00472{word-spacing:2.528064pt;}
.ws41_c00472{word-spacing:2.532320pt;}
.ws27_c00472{word-spacing:3.833600pt;}
.ws26_c00472{word-spacing:3.840000pt;}
.ws1b_c00472{word-spacing:3.897600pt;}
.ws39_c00472{word-spacing:4.119808pt;}
.ws37_c00472{word-spacing:4.141088pt;}
.ws3a_c00472{word-spacing:4.149600pt;}
.ws38_c00472{word-spacing:4.158112pt;}
.ws2c_c00472{word-spacing:4.249600pt;}
.ws2b_c00472{word-spacing:4.262400pt;}
.ws24_c00472{word-spacing:4.499200pt;}
.ws25_c00472{word-spacing:4.608000pt;}
.ws13_c00472{word-spacing:4.768000pt;}
.ws12_c00472{word-spacing:4.806400pt;}
.ws20_c00472{word-spacing:5.427200pt;}
.ws21_c00472{word-spacing:5.504000pt;}
.ws2f_c00472{word-spacing:6.073312pt;}
.ws2e_c00472{word-spacing:6.081824pt;}
.ws30_c00472{word-spacing:6.103104pt;}
.ws31_c00472{word-spacing:6.111616pt;}
.ws4d_c00472{word-spacing:6.690432pt;}
.ws4e_c00472{word-spacing:6.724480pt;}
.ws18_c00472{word-spacing:7.974400pt;}
.ws17_c00472{word-spacing:8.096000pt;}
.ws36_c00472{word-spacing:12.448800pt;}
.wsc_c00472{word-spacing:13.817600pt;}
.ws16_c00472{word-spacing:15.046400pt;}
.wsd_c00472{word-spacing:19.539200pt;}
.wse_c00472{word-spacing:19.635200pt;}
.ws29_c00472{word-spacing:24.019200pt;}
.ws28_c00472{word-spacing:24.044800pt;}
._0_c00472{margin-left:-1.175680pt;}
._1_c00472{width:1.216000pt;}
._4_c00472{width:2.597984pt;}
._3_c00472{width:4.851840pt;}
._2_c00472{width:6.146752pt;}
.fs6_c00472{font-size:34.560000pt;}
.fs3_c00472{font-size:37.440000pt;}
.fs5_c00472{font-size:42.560000pt;}
.fs2_c00472{font-size:48.000000pt;}
.fs0_c00472{font-size:53.440000pt;}
.fs1_c00472{font-size:64.000000pt;}
.fs4_c00472{font-size:69.440000pt;}
.y0_c00472{bottom:0.000000pt;}
.y2_c00472{bottom:51.067067pt;}
.y2a_c00472{bottom:78.431067pt;}
.y29_c00472{bottom:90.669947pt;}
.y28_c00472{bottom:102.991067pt;}
.y27_c00472{bottom:115.224187pt;}
.y26_c00472{bottom:127.465947pt;}
.y25_c00472{bottom:139.795067pt;}
.y24_c00472{bottom:152.031067pt;}
.y23_c00472{bottom:164.268667pt;}
.y22_c00472{bottom:180.590427pt;}
.y21_c00472{bottom:196.827067pt;}
.y20_c00472{bottom:209.069947pt;}
.y1f_c00472{bottom:221.391067pt;}
.y1e_c00472{bottom:233.635067pt;}
.y1d_c00472{bottom:245.871067pt;}
.y1c_c00472{bottom:258.105307pt;}
.y1b_c00472{bottom:274.427067pt;}
.y1a_c00472{bottom:287.947067pt;}
.y19_c00472{bottom:306.347067pt;}
.y18_c00472{bottom:324.747067pt;}
.y17_c00472{bottom:359.787067pt;}
.y16_c00472{bottom:390.427067pt;}
.y15_c00472{bottom:428.987067pt;}
.y14_c00472{bottom:459.627067pt;}
.y13_c00472{bottom:490.187067pt;}
.y12_c00472{bottom:520.827067pt;}
.y11_c00472{bottom:551.387067pt;}
.y10_c00472{bottom:582.027067pt;}
.yf_c00472{bottom:612.587067pt;}
.ye_c00472{bottom:643.227067pt;}
.yd_c00472{bottom:673.787067pt;}
.yc_c00472{bottom:704.427067pt;}
.yb_c00472{bottom:734.987067pt;}
.ya_c00472{bottom:765.627067pt;}
.y9_c00472{bottom:796.187067pt;}
.y8_c00472{bottom:826.827067pt;}
.y7_c00472{bottom:857.387067pt;}
.y6_c00472{bottom:897.467067pt;}
.y5_c00472{bottom:953.147067pt;}
.y4_c00472{bottom:983.787067pt;}
.y3_c00472{bottom:1014.347067pt;}
.y1_c00472{bottom:1063.867067pt;}
.h7_c00472{height:42.656250pt;}
.h8_c00472{height:44.388750pt;}
.ha_c00472{height:44.393230pt;}
.h9_c00472{height:44.395790pt;}
.hb_c00472{height:44.400270pt;}
.h1_c00472{height:44.724687pt;}
.h4_c00472{height:53.562500pt;}
.h5_c00472{height:57.894062pt;}
.h2_c00472{height:64.142500pt;}
.h3_c00472{height:66.750000pt;}
.h6_c00472{height:72.423750pt;}
.h0_c00472{height:1122.666667pt;}
.w1_c00472{width:793.333333pt;}
.w0_c00472{width:793.626667pt;}
.x0_c00472{left:0.000000pt;}
.x1_c00472{left:113.440000pt;}
.x5_c00472{left:125.446720pt;}
.x4_c00472{left:160.720000pt;}
.x2_c00472{left:185.440000pt;}
.x3_c00472{left:209.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_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_230e1c3a7f20da8d9d963c26.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00473;src:url('chunks/assets/font_57be8bb8fb5d354388f9579c.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00473;src:url('chunks/assets/font_26efddddeb7cff953404972b.woff2')format("woff");}.ff4_c00473{font-family:ff4_c00473;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_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;}
.v1_c00473{vertical-align:29.880000px;}
.ls15_c00473{letter-spacing:-0.151200px;}
.ls17_c00473{letter-spacing:-0.057600px;}
.ls1f_c00473{letter-spacing:-0.043200px;}
.ls1d_c00473{letter-spacing:-0.036000px;}
.ls12_c00473{letter-spacing:-0.030060px;}
.ls1c_c00473{letter-spacing:-0.028800px;}
.ls1a_c00473{letter-spacing:-0.021600px;}
.ls1b_c00473{letter-spacing:-0.014400px;}
.ls20_c00473{letter-spacing:-0.007776px;}
.ls16_c00473{letter-spacing:-0.007200px;}
.ls13_c00473{letter-spacing:-0.006012px;}
.ls22_c00473{letter-spacing:-0.003888px;}
.ls14_c00473{letter-spacing:0.000000px;}
.ls2_c00473{letter-spacing:0.007200px;}
.ls5_c00473{letter-spacing:0.009360px;}
.ls3_c00473{letter-spacing:0.014364px;}
.ls1_c00473{letter-spacing:0.014400px;}
.ls4_c00473{letter-spacing:0.018720px;}
.lsa_c00473{letter-spacing:0.019152px;}
.ls0_c00473{letter-spacing:0.021600px;}
.ls11_c00473{letter-spacing:0.023940px;}
.ls9_c00473{letter-spacing:0.033516px;}
.lsf_c00473{letter-spacing:0.038304px;}
.lse_c00473{letter-spacing:0.043092px;}
.ls18_c00473{letter-spacing:0.054756px;}
.ls24_c00473{letter-spacing:0.071820px;}
.ls21_c00473{letter-spacing:0.076608px;}
.ls19_c00473{letter-spacing:0.093600px;}
.ls8_c00473{letter-spacing:0.100548px;}
.lsb_c00473{letter-spacing:0.138852px;}
.ls1e_c00473{letter-spacing:0.180000px;}
.ls10_c00473{letter-spacing:0.189360px;}
.lsc_c00473{letter-spacing:0.369360px;}
.ls23_c00473{letter-spacing:0.435708px;}
.ls7_c00473{letter-spacing:5.031360px;}
.ls6_c00473{letter-spacing:5.391360px;}
.lsd_c00473{letter-spacing:6.111360px;}
.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:-17.992800px;}
.ws6_c00473{word-spacing:-13.746348px;}
.ws4_c00473{word-spacing:-13.387248px;}
.ws2_c00473{word-spacing:-13.310640px;}
.ws3_c00473{word-spacing:-10.808640px;}
.ws5_c00473{word-spacing:-10.804752px;}
.ws0_c00473{word-spacing:-10.584756px;}
.ws8_c00473{word-spacing:-0.264528px;}
.ws7_c00473{word-spacing:-0.240480px;}
.wsd_c00473{word-spacing:-0.093600px;}
.ws32_c00473{word-spacing:-0.086400px;}
.ws3e_c00473{word-spacing:-0.019152px;}
.ws28_c00473{word-spacing:-0.007200px;}
.ws9_c00473{word-spacing:0.000000px;}
.ws3f_c00473{word-spacing:0.004788px;}
.ws16_c00473{word-spacing:0.021600px;}
.ws27_c00473{word-spacing:0.064800px;}
.ws17_c00473{word-spacing:0.093600px;}
.wsc_c00473{word-spacing:0.172800px;}
.ws1c_c00473{word-spacing:1.749600px;}
.ws1d_c00473{word-spacing:1.778400px;}
.ws21_c00473{word-spacing:1.807200px;}
.ws20_c00473{word-spacing:2.181600px;}
.ws15_c00473{word-spacing:2.455200px;}
.ws14_c00473{word-spacing:2.541600px;}
.ws18_c00473{word-spacing:2.923200px;}
.ws19_c00473{word-spacing:2.952000px;}
.ws1f_c00473{word-spacing:3.924000px;}
.ws1e_c00473{word-spacing:3.967200px;}
.ws11_c00473{word-spacing:3.974400px;}
.ws10_c00473{word-spacing:3.981600px;}
.ws24_c00473{word-spacing:3.996000px;}
.ws38_c00473{word-spacing:5.022612px;}
.ws39_c00473{word-spacing:5.036976px;}
.ws29_c00473{word-spacing:5.040000px;}
.ws36_c00473{word-spacing:5.041764px;}
.ws37_c00473{word-spacing:5.046624px;}
.ws2a_c00473{word-spacing:5.097600px;}
.ws23_c00473{word-spacing:5.580000px;}
.wsf_c00473{word-spacing:5.760000px;}
.wse_c00473{word-spacing:5.767200px;}
.ws22_c00473{word-spacing:5.774400px;}
.ws3c_c00473{word-spacing:6.095124px;}
.ws3d_c00473{word-spacing:6.099912px;}
.ws1a_c00473{word-spacing:6.112800px;}
.ws3a_c00473{word-spacing:6.123852px;}
.ws3b_c00473{word-spacing:6.127488px;}
.ws1b_c00473{word-spacing:6.170400px;}
.ws41_c00473{word-spacing:6.822900px;}
.ws42_c00473{word-spacing:6.832476px;}
.ws40_c00473{word-spacing:6.837264px;}
.ws30_c00473{word-spacing:7.552800px;}
.ws31_c00473{word-spacing:7.668000px;}
.ws34_c00473{word-spacing:8.560800px;}
.ws33_c00473{word-spacing:8.632800px;}
.ws2d_c00473{word-spacing:8.647200px;}
.ws13_c00473{word-spacing:8.654400px;}
.ws2e_c00473{word-spacing:8.798400px;}
.ws2f_c00473{word-spacing:8.884800px;}
.ws2c_c00473{word-spacing:12.945600px;}
.ws2b_c00473{word-spacing:13.024800px;}
.ws25_c00473{word-spacing:14.695200px;}
.ws26_c00473{word-spacing:14.745600px;}
.ws12_c00473{word-spacing:17.308800px;}
.ws35_c00473{word-spacing:19.490400px;}
.wsa_c00473{word-spacing:22.298400px;}
.wsb_c00473{word-spacing:22.327200px;}
._0_c00473{width:1.052100px;}
._1_c00473{width:5.385312px;}
._2_c00473{width:6.831504px;}
.fc0_c00473{color:rgb(0,0,0);}
.fs5_c00473{font-size:38.880000px;}
.fs3_c00473{font-size:42.120000px;}
.fs4_c00473{font-size:47.880000px;}
.fs2_c00473{font-size:54.000000px;}
.fs0_c00473{font-size:60.120000px;}
.fs1_c00473{font-size:72.000000px;}
.y0_c00473{bottom:0.000000px;}
.y3_c00473{bottom:57.450450px;}
.y4_c00473{bottom:61.410450px;}
.y27_c00473{bottom:88.234950px;}
.y26_c00473{bottom:101.998470px;}
.y25_c00473{bottom:120.368730px;}
.y24_c00473{bottom:138.634950px;}
.y23_c00473{bottom:152.402970px;}
.y22_c00473{bottom:170.764950px;}
.y21_c00473{bottom:184.530450px;}
.y20_c00473{bottom:199.740450px;}
.y1f_c00473{bottom:220.440450px;}
.y1e_c00473{bottom:241.140600px;}
.y1d_c00473{bottom:296.940600px;}
.y1c_c00473{bottom:331.410600px;}
.y1b_c00473{bottom:365.790450px;}
.y1a_c00473{bottom:400.260450px;}
.y19_c00473{bottom:434.640450px;}
.y18_c00473{bottom:469.110450px;}
.y17_c00473{bottom:503.490450px;}
.y16_c00473{bottom:537.960450px;}
.y15_c00473{bottom:572.340450px;}
.y14_c00473{bottom:606.810450px;}
.y13_c00473{bottom:641.190450px;}
.y12_c00473{bottom:675.660450px;}
.y11_c00473{bottom:710.040450px;}
.y10_c00473{bottom:744.510450px;}
.yf_c00473{bottom:778.890450px;}
.ye_c00473{bottom:813.360450px;}
.yd_c00473{bottom:847.740450px;}
.yc_c00473{bottom:891.210450px;}
.yb_c00473{bottom:925.590450px;}
.ya_c00473{bottom:960.060450px;}
.y9_c00473{bottom:994.440450px;}
.y8_c00473{bottom:1028.910450px;}
.y7_c00473{bottom:1063.290450px;}
.y6_c00473{bottom:1106.760450px;}
.y5_c00473{bottom:1141.140450px;}
.y2_c00473{bottom:1176.420450px;}
.y1_c00473{bottom:1196.940450px;}
.h2_c00473{height:47.988281px;}
.h6_c00473{height:49.937344px;}
.h7_c00473{height:49.945264px;}
.h1_c00473{height:50.315273px;}
.h3_c00473{height:56.320312px;}
.h4_c00473{height:60.257812px;}
.h5_c00473{height:65.130820px;}
.h0_c00473{height:1263.000000px;}
.w1_c00473{width:892.500000px;}
.w0_c00473{width:892.830000px;}
.x0_c00473{left:0.000000px;}
.x2_c00473{left:127.620000px;}
.x6_c00473{left:141.120090px;}
.x5_c00473{left:180.810000px;}
.x1_c00473{left:217.440000px;}
.x4_c00473{left:435.240000px;}
.x3_c00473{left:446.490000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.v1_c00473{vertical-align:26.560000pt;}
.ls15_c00473{letter-spacing:-0.134400pt;}
.ls17_c00473{letter-spacing:-0.051200pt;}
.ls1f_c00473{letter-spacing:-0.038400pt;}
.ls1d_c00473{letter-spacing:-0.032000pt;}
.ls12_c00473{letter-spacing:-0.026720pt;}
.ls1c_c00473{letter-spacing:-0.025600pt;}
.ls1a_c00473{letter-spacing:-0.019200pt;}
.ls1b_c00473{letter-spacing:-0.012800pt;}
.ls20_c00473{letter-spacing:-0.006912pt;}
.ls16_c00473{letter-spacing:-0.006400pt;}
.ls13_c00473{letter-spacing:-0.005344pt;}
.ls22_c00473{letter-spacing:-0.003456pt;}
.ls14_c00473{letter-spacing:0.000000pt;}
.ls2_c00473{letter-spacing:0.006400pt;}
.ls5_c00473{letter-spacing:0.008320pt;}
.ls3_c00473{letter-spacing:0.012768pt;}
.ls1_c00473{letter-spacing:0.012800pt;}
.ls4_c00473{letter-spacing:0.016640pt;}
.lsa_c00473{letter-spacing:0.017024pt;}
.ls0_c00473{letter-spacing:0.019200pt;}
.ls11_c00473{letter-spacing:0.021280pt;}
.ls9_c00473{letter-spacing:0.029792pt;}
.lsf_c00473{letter-spacing:0.034048pt;}
.lse_c00473{letter-spacing:0.038304pt;}
.ls18_c00473{letter-spacing:0.048672pt;}
.ls24_c00473{letter-spacing:0.063840pt;}
.ls21_c00473{letter-spacing:0.068096pt;}
.ls19_c00473{letter-spacing:0.083200pt;}
.ls8_c00473{letter-spacing:0.089376pt;}
.lsb_c00473{letter-spacing:0.123424pt;}
.ls1e_c00473{letter-spacing:0.160000pt;}
.ls10_c00473{letter-spacing:0.168320pt;}
.lsc_c00473{letter-spacing:0.328320pt;}
.ls23_c00473{letter-spacing:0.387296pt;}
.ls7_c00473{letter-spacing:4.472320pt;}
.ls6_c00473{letter-spacing:4.792320pt;}
.lsd_c00473{letter-spacing:5.432320pt;}
.ws1_c00473{word-spacing:-15.993600pt;}
.ws6_c00473{word-spacing:-12.218976pt;}
.ws4_c00473{word-spacing:-11.899776pt;}
.ws2_c00473{word-spacing:-11.831680pt;}
.ws3_c00473{word-spacing:-9.607680pt;}
.ws5_c00473{word-spacing:-9.604224pt;}
.ws0_c00473{word-spacing:-9.408672pt;}
.ws8_c00473{word-spacing:-0.235136pt;}
.ws7_c00473{word-spacing:-0.213760pt;}
.wsd_c00473{word-spacing:-0.083200pt;}
.ws32_c00473{word-spacing:-0.076800pt;}
.ws3e_c00473{word-spacing:-0.017024pt;}
.ws28_c00473{word-spacing:-0.006400pt;}
.ws9_c00473{word-spacing:0.000000pt;}
.ws3f_c00473{word-spacing:0.004256pt;}
.ws16_c00473{word-spacing:0.019200pt;}
.ws27_c00473{word-spacing:0.057600pt;}
.ws17_c00473{word-spacing:0.083200pt;}
.wsc_c00473{word-spacing:0.153600pt;}
.ws1c_c00473{word-spacing:1.555200pt;}
.ws1d_c00473{word-spacing:1.580800pt;}
.ws21_c00473{word-spacing:1.606400pt;}
.ws20_c00473{word-spacing:1.939200pt;}
.ws15_c00473{word-spacing:2.182400pt;}
.ws14_c00473{word-spacing:2.259200pt;}
.ws18_c00473{word-spacing:2.598400pt;}
.ws19_c00473{word-spacing:2.624000pt;}
.ws1f_c00473{word-spacing:3.488000pt;}
.ws1e_c00473{word-spacing:3.526400pt;}
.ws11_c00473{word-spacing:3.532800pt;}
.ws10_c00473{word-spacing:3.539200pt;}
.ws24_c00473{word-spacing:3.552000pt;}
.ws38_c00473{word-spacing:4.464544pt;}
.ws39_c00473{word-spacing:4.477312pt;}
.ws29_c00473{word-spacing:4.480000pt;}
.ws36_c00473{word-spacing:4.481568pt;}
.ws37_c00473{word-spacing:4.485888pt;}
.ws2a_c00473{word-spacing:4.531200pt;}
.ws23_c00473{word-spacing:4.960000pt;}
.wsf_c00473{word-spacing:5.120000pt;}
.wse_c00473{word-spacing:5.126400pt;}
.ws22_c00473{word-spacing:5.132800pt;}
.ws3c_c00473{word-spacing:5.417888pt;}
.ws3d_c00473{word-spacing:5.422144pt;}
.ws1a_c00473{word-spacing:5.433600pt;}
.ws3a_c00473{word-spacing:5.443424pt;}
.ws3b_c00473{word-spacing:5.446656pt;}
.ws1b_c00473{word-spacing:5.484800pt;}
.ws41_c00473{word-spacing:6.064800pt;}
.ws42_c00473{word-spacing:6.073312pt;}
.ws40_c00473{word-spacing:6.077568pt;}
.ws30_c00473{word-spacing:6.713600pt;}
.ws31_c00473{word-spacing:6.816000pt;}
.ws34_c00473{word-spacing:7.609600pt;}
.ws33_c00473{word-spacing:7.673600pt;}
.ws2d_c00473{word-spacing:7.686400pt;}
.ws13_c00473{word-spacing:7.692800pt;}
.ws2e_c00473{word-spacing:7.820800pt;}
.ws2f_c00473{word-spacing:7.897600pt;}
.ws2c_c00473{word-spacing:11.507200pt;}
.ws2b_c00473{word-spacing:11.577600pt;}
.ws25_c00473{word-spacing:13.062400pt;}
.ws26_c00473{word-spacing:13.107200pt;}
.ws12_c00473{word-spacing:15.385600pt;}
.ws35_c00473{word-spacing:17.324800pt;}
.wsa_c00473{word-spacing:19.820800pt;}
.wsb_c00473{word-spacing:19.846400pt;}
._0_c00473{width:0.935200pt;}
._1_c00473{width:4.786944pt;}
._2_c00473{width:6.072448pt;}
.fs5_c00473{font-size:34.560000pt;}
.fs3_c00473{font-size:37.440000pt;}
.fs4_c00473{font-size:42.560000pt;}
.fs2_c00473{font-size:48.000000pt;}
.fs0_c00473{font-size:53.440000pt;}
.fs1_c00473{font-size:64.000000pt;}
.y0_c00473{bottom:0.000000pt;}
.y3_c00473{bottom:51.067067pt;}
.y4_c00473{bottom:54.587067pt;}
.y27_c00473{bottom:78.431067pt;}
.y26_c00473{bottom:90.665307pt;}
.y25_c00473{bottom:106.994427pt;}
.y24_c00473{bottom:123.231067pt;}
.y23_c00473{bottom:135.469307pt;}
.y22_c00473{bottom:151.791067pt;}
.y21_c00473{bottom:164.027067pt;}
.y20_c00473{bottom:177.547067pt;}
.y1f_c00473{bottom:195.947067pt;}
.y1e_c00473{bottom:214.347200pt;}
.y1d_c00473{bottom:263.947200pt;}
.y1c_c00473{bottom:294.587200pt;}
.y1b_c00473{bottom:325.147067pt;}
.y1a_c00473{bottom:355.787067pt;}
.y19_c00473{bottom:386.347067pt;}
.y18_c00473{bottom:416.987067pt;}
.y17_c00473{bottom:447.547067pt;}
.y16_c00473{bottom:478.187067pt;}
.y15_c00473{bottom:508.747067pt;}
.y14_c00473{bottom:539.387067pt;}
.y13_c00473{bottom:569.947067pt;}
.y12_c00473{bottom:600.587067pt;}
.y11_c00473{bottom:631.147067pt;}
.y10_c00473{bottom:661.787067pt;}
.yf_c00473{bottom:692.347067pt;}
.ye_c00473{bottom:722.987067pt;}
.yd_c00473{bottom:753.547067pt;}
.yc_c00473{bottom:792.187067pt;}
.yb_c00473{bottom:822.747067pt;}
.ya_c00473{bottom:853.387067pt;}
.y9_c00473{bottom:883.947067pt;}
.y8_c00473{bottom:914.587067pt;}
.y7_c00473{bottom:945.147067pt;}
.y6_c00473{bottom:983.787067pt;}
.y5_c00473{bottom:1014.347067pt;}
.y2_c00473{bottom:1045.707067pt;}
.y1_c00473{bottom:1063.947067pt;}
.h2_c00473{height:42.656250pt;}
.h6_c00473{height:44.388750pt;}
.h7_c00473{height:44.395790pt;}
.h1_c00473{height:44.724687pt;}
.h3_c00473{height:50.062500pt;}
.h4_c00473{height:53.562500pt;}
.h5_c00473{height:57.894063pt;}
.h0_c00473{height:1122.666667pt;}
.w1_c00473{width:793.333333pt;}
.w0_c00473{width:793.626667pt;}
.x0_c00473{left:0.000000pt;}
.x2_c00473{left:113.440000pt;}
.x6_c00473{left:125.440080pt;}
.x5_c00473{left:160.720000pt;}
.x1_c00473{left:193.280000pt;}
.x4_c00473{left:386.880000pt;}
.x3_c00473{left:396.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_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_81112d93f7ff0e0b92018c6e.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00474;src:url('chunks/assets/font_931f9daefdd40d38aa029b71.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00474;src:url('chunks/assets/font_79ef2a58815b69622a1e7366.woff2')format("woff");}.ff4_c00474{font-family:ff4_c00474;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_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;}
.v1_c00474{vertical-align:15.840000px;}
.v2_c00474{vertical-align:29.880000px;}
.ls11_c00474{letter-spacing:-0.151200px;}
.ls19_c00474{letter-spacing:-0.079200px;}
.ls18_c00474{letter-spacing:-0.036000px;}
.ls17_c00474{letter-spacing:-0.028800px;}
.ls12_c00474{letter-spacing:-0.021600px;}
.ls15_c00474{letter-spacing:-0.014400px;}
.ls1a_c00474{letter-spacing:-0.007776px;}
.ls16_c00474{letter-spacing:-0.007200px;}
.ls1c_c00474{letter-spacing:-0.003888px;}
.ls13_c00474{letter-spacing:0.000000px;}
.ls4_c00474{letter-spacing:0.007200px;}
.lsb_c00474{letter-spacing:0.009360px;}
.ls8_c00474{letter-spacing:0.014364px;}
.ls3_c00474{letter-spacing:0.014400px;}
.lsa_c00474{letter-spacing:0.018720px;}
.ls6_c00474{letter-spacing:0.021600px;}
.ls10_c00474{letter-spacing:0.028728px;}
.ls7_c00474{letter-spacing:0.033516px;}
.lsd_c00474{letter-spacing:0.038304px;}
.ls0_c00474{letter-spacing:0.048096px;}
.ls5_c00474{letter-spacing:0.054756px;}
.lse_c00474{letter-spacing:0.057456px;}
.lsf_c00474{letter-spacing:0.067032px;}
.ls1e_c00474{letter-spacing:0.071820px;}
.ls14_c00474{letter-spacing:0.093600px;}
.lsc_c00474{letter-spacing:0.100548px;}
.ls9_c00474{letter-spacing:0.189360px;}
.ls2_c00474{letter-spacing:0.216000px;}
.ls1b_c00474{letter-spacing:0.357696px;}
.ls1d_c00474{letter-spacing:0.435708px;}
.ls1f_c00474{letter-spacing:8.297604px;}
.ls1_c00474{letter-spacing:1212.120000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00474{word-spacing:-17.920800px;}
.ws5_c00474{word-spacing:-13.746348px;}
.ws2_c00474{word-spacing:-13.310640px;}
.ws3_c00474{word-spacing:-11.166336px;}
.ws4_c00474{word-spacing:-10.804752px;}
.ws6_c00474{word-spacing:-10.800864px;}
.ws0_c00474{word-spacing:-10.584756px;}
.ws19_c00474{word-spacing:-0.093600px;}
.ws25_c00474{word-spacing:-0.019152px;}
.ws23_c00474{word-spacing:-0.014364px;}
.ws28_c00474{word-spacing:-0.009576px;}
.ws8_c00474{word-spacing:0.000000px;}
.ws24_c00474{word-spacing:0.004788px;}
.ws10_c00474{word-spacing:0.014400px;}
.wsa_c00474{word-spacing:0.028800px;}
.ws22_c00474{word-spacing:0.036000px;}
.ws7_c00474{word-spacing:0.042084px;}
.ws1d_c00474{word-spacing:0.086400px;}
.ws18_c00474{word-spacing:0.100800px;}
.ws1e_c00474{word-spacing:0.122400px;}
.ws1f_c00474{word-spacing:0.214812px;}
.wsb_c00474{word-spacing:1.022400px;}
.wsc_c00474{word-spacing:1.094400px;}
.wse_c00474{word-spacing:1.864800px;}
.wsd_c00474{word-spacing:1.922400px;}
.ws1c_c00474{word-spacing:2.138400px;}
.ws1b_c00474{word-spacing:2.167200px;}
.wsf_c00474{word-spacing:2.174400px;}
.ws16_c00474{word-spacing:2.887200px;}
.ws17_c00474{word-spacing:3.002400px;}
.ws9_c00474{word-spacing:3.916800px;}
.ws1a_c00474{word-spacing:7.581600px;}
.ws27_c00474{word-spacing:8.230572px;}
.ws26_c00474{word-spacing:8.240148px;}
.ws14_c00474{word-spacing:9.007200px;}
.ws15_c00474{word-spacing:9.079200px;}
.ws11_c00474{word-spacing:13.327200px;}
.ws12_c00474{word-spacing:13.435200px;}
.ws20_c00474{word-spacing:16.574400px;}
.ws21_c00474{word-spacing:18.007200px;}
.ws13_c00474{word-spacing:34.905600px;}
._3_c00474{margin-left:-8.198208px;}
._0_c00474{margin-left:-1.322640px;}
._1_c00474{width:1.008000px;}
._2_c00474{width:8.307180px;}
.fc0_c00474{color:rgb(0,0,0);}
.fs5_c00474{font-size:38.880000px;}
.fs3_c00474{font-size:42.120000px;}
.fs4_c00474{font-size:47.880000px;}
.fs2_c00474{font-size:54.000000px;}
.fs0_c00474{font-size:60.120000px;}
.fs1_c00474{font-size:72.000000px;}
.y0_c00474{bottom:0.000000px;}
.y2_c00474{bottom:57.450450px;}
.y1c_c00474{bottom:88.234950px;}
.y1b_c00474{bottom:101.998470px;}
.y1a_c00474{bottom:120.364230px;}
.y19_c00474{bottom:138.634230px;}
.y18_c00474{bottom:156.900450px;}
.y17_c00474{bottom:172.110450px;}
.y16_c00474{bottom:192.810450px;}
.y15_c00474{bottom:213.510450px;}
.y14_c00474{bottom:555.960450px;}
.y13_c00474{bottom:590.340450px;}
.y12_c00474{bottom:624.810450px;}
.y11_c00474{bottom:659.190450px;}
.y10_c00474{bottom:693.660450px;}
.yf_c00474{bottom:728.040450px;}
.ye_c00474{bottom:762.510450px;}
.yd_c00474{bottom:796.890450px;}
.yc_c00474{bottom:831.360450px;}
.yb_c00474{bottom:865.740450px;}
.ya_c00474{bottom:900.210450px;}
.y9_c00474{bottom:934.590450px;}
.y8_c00474{bottom:969.060450px;}
.y7_c00474{bottom:1003.440450px;}
.y6_c00474{bottom:1037.910450px;}
.y5_c00474{bottom:1072.290450px;}
.y4_c00474{bottom:1106.760450px;}
.y3_c00474{bottom:1141.140450px;}
.y1_c00474{bottom:1196.850450px;}
.h6_c00474{height:47.988281px;}
.h7_c00474{height:49.937344px;}
.h8_c00474{height:49.945264px;}
.h1_c00474{height:50.315273px;}
.h3_c00474{height:60.257812px;}
.h4_c00474{height:65.130820px;}
.h5_c00474{height:65.131420px;}
.h2_c00474{height:72.160312px;}
.h0_c00474{height:1263.000000px;}
.w1_c00474{width:892.500000px;}
.w0_c00474{width:892.830000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:127.620000px;}
.x3_c00474{left:141.119370px;}
.x2_c00474{left:180.810000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.v1_c00474{vertical-align:14.080000pt;}
.v2_c00474{vertical-align:26.560000pt;}
.ls11_c00474{letter-spacing:-0.134400pt;}
.ls19_c00474{letter-spacing:-0.070400pt;}
.ls18_c00474{letter-spacing:-0.032000pt;}
.ls17_c00474{letter-spacing:-0.025600pt;}
.ls12_c00474{letter-spacing:-0.019200pt;}
.ls15_c00474{letter-spacing:-0.012800pt;}
.ls1a_c00474{letter-spacing:-0.006912pt;}
.ls16_c00474{letter-spacing:-0.006400pt;}
.ls1c_c00474{letter-spacing:-0.003456pt;}
.ls13_c00474{letter-spacing:0.000000pt;}
.ls4_c00474{letter-spacing:0.006400pt;}
.lsb_c00474{letter-spacing:0.008320pt;}
.ls8_c00474{letter-spacing:0.012768pt;}
.ls3_c00474{letter-spacing:0.012800pt;}
.lsa_c00474{letter-spacing:0.016640pt;}
.ls6_c00474{letter-spacing:0.019200pt;}
.ls10_c00474{letter-spacing:0.025536pt;}
.ls7_c00474{letter-spacing:0.029792pt;}
.lsd_c00474{letter-spacing:0.034048pt;}
.ls0_c00474{letter-spacing:0.042752pt;}
.ls5_c00474{letter-spacing:0.048672pt;}
.lse_c00474{letter-spacing:0.051072pt;}
.lsf_c00474{letter-spacing:0.059584pt;}
.ls1e_c00474{letter-spacing:0.063840pt;}
.ls14_c00474{letter-spacing:0.083200pt;}
.lsc_c00474{letter-spacing:0.089376pt;}
.ls9_c00474{letter-spacing:0.168320pt;}
.ls2_c00474{letter-spacing:0.192000pt;}
.ls1b_c00474{letter-spacing:0.317952pt;}
.ls1d_c00474{letter-spacing:0.387296pt;}
.ls1f_c00474{letter-spacing:7.375648pt;}
.ls1_c00474{letter-spacing:1077.440000pt;}
.ws1_c00474{word-spacing:-15.929600pt;}
.ws5_c00474{word-spacing:-12.218976pt;}
.ws2_c00474{word-spacing:-11.831680pt;}
.ws3_c00474{word-spacing:-9.925632pt;}
.ws4_c00474{word-spacing:-9.604224pt;}
.ws6_c00474{word-spacing:-9.600768pt;}
.ws0_c00474{word-spacing:-9.408672pt;}
.ws19_c00474{word-spacing:-0.083200pt;}
.ws25_c00474{word-spacing:-0.017024pt;}
.ws23_c00474{word-spacing:-0.012768pt;}
.ws28_c00474{word-spacing:-0.008512pt;}
.ws8_c00474{word-spacing:0.000000pt;}
.ws24_c00474{word-spacing:0.004256pt;}
.ws10_c00474{word-spacing:0.012800pt;}
.wsa_c00474{word-spacing:0.025600pt;}
.ws22_c00474{word-spacing:0.032000pt;}
.ws7_c00474{word-spacing:0.037408pt;}
.ws1d_c00474{word-spacing:0.076800pt;}
.ws18_c00474{word-spacing:0.089600pt;}
.ws1e_c00474{word-spacing:0.108800pt;}
.ws1f_c00474{word-spacing:0.190944pt;}
.wsb_c00474{word-spacing:0.908800pt;}
.wsc_c00474{word-spacing:0.972800pt;}
.wse_c00474{word-spacing:1.657600pt;}
.wsd_c00474{word-spacing:1.708800pt;}
.ws1c_c00474{word-spacing:1.900800pt;}
.ws1b_c00474{word-spacing:1.926400pt;}
.wsf_c00474{word-spacing:1.932800pt;}
.ws16_c00474{word-spacing:2.566400pt;}
.ws17_c00474{word-spacing:2.668800pt;}
.ws9_c00474{word-spacing:3.481600pt;}
.ws1a_c00474{word-spacing:6.739200pt;}
.ws27_c00474{word-spacing:7.316064pt;}
.ws26_c00474{word-spacing:7.324576pt;}
.ws14_c00474{word-spacing:8.006400pt;}
.ws15_c00474{word-spacing:8.070400pt;}
.ws11_c00474{word-spacing:11.846400pt;}
.ws12_c00474{word-spacing:11.942400pt;}
.ws20_c00474{word-spacing:14.732800pt;}
.ws21_c00474{word-spacing:16.006400pt;}
.ws13_c00474{word-spacing:31.027200pt;}
._3_c00474{margin-left:-7.287296pt;}
._0_c00474{margin-left:-1.175680pt;}
._1_c00474{width:0.896000pt;}
._2_c00474{width:7.384160pt;}
.fs5_c00474{font-size:34.560000pt;}
.fs3_c00474{font-size:37.440000pt;}
.fs4_c00474{font-size:42.560000pt;}
.fs2_c00474{font-size:48.000000pt;}
.fs0_c00474{font-size:53.440000pt;}
.fs1_c00474{font-size:64.000000pt;}
.y0_c00474{bottom:0.000000pt;}
.y2_c00474{bottom:51.067067pt;}
.y1c_c00474{bottom:78.431067pt;}
.y1b_c00474{bottom:90.665307pt;}
.y1a_c00474{bottom:106.990427pt;}
.y19_c00474{bottom:123.230427pt;}
.y18_c00474{bottom:139.467067pt;}
.y17_c00474{bottom:152.987067pt;}
.y16_c00474{bottom:171.387067pt;}
.y15_c00474{bottom:189.787067pt;}
.y14_c00474{bottom:494.187067pt;}
.y13_c00474{bottom:524.747067pt;}
.y12_c00474{bottom:555.387067pt;}
.y11_c00474{bottom:585.947067pt;}
.y10_c00474{bottom:616.587067pt;}
.yf_c00474{bottom:647.147067pt;}
.ye_c00474{bottom:677.787067pt;}
.yd_c00474{bottom:708.347067pt;}
.yc_c00474{bottom:738.987067pt;}
.yb_c00474{bottom:769.547067pt;}
.ya_c00474{bottom:800.187067pt;}
.y9_c00474{bottom:830.747067pt;}
.y8_c00474{bottom:861.387067pt;}
.y7_c00474{bottom:891.947067pt;}
.y6_c00474{bottom:922.587067pt;}
.y5_c00474{bottom:953.147067pt;}
.y4_c00474{bottom:983.787067pt;}
.y3_c00474{bottom:1014.347067pt;}
.y1_c00474{bottom:1063.867067pt;}
.h6_c00474{height:42.656250pt;}
.h7_c00474{height:44.388750pt;}
.h8_c00474{height:44.395790pt;}
.h1_c00474{height:44.724687pt;}
.h3_c00474{height:53.562500pt;}
.h4_c00474{height:57.894063pt;}
.h5_c00474{height:57.894596pt;}
.h2_c00474{height:64.142500pt;}
.h0_c00474{height:1122.666667pt;}
.w1_c00474{width:793.333333pt;}
.w0_c00474{width:793.626667pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:113.440000pt;}
.x3_c00474{left:125.439440pt;}
.x2_c00474{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_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_0388823ba120911d53fcea36.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00475;src:url('chunks/assets/font_9a1f62f76b668625976cdf1a.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;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_c00475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00475{vertical-align:-15.120000px;}
.v0_c00475{vertical-align:0.000000px;}
.v1_c00475{vertical-align:15.120000px;}
.lsc_c00475{letter-spacing:-0.151200px;}
.ls9_c00475{letter-spacing:-0.030060px;}
.ls13_c00475{letter-spacing:-0.028800px;}
.lsf_c00475{letter-spacing:-0.021600px;}
.lse_c00475{letter-spacing:-0.014400px;}
.ls11_c00475{letter-spacing:-0.007200px;}
.lsa_c00475{letter-spacing:-0.006012px;}
.lsb_c00475{letter-spacing:0.000000px;}
.ls0_c00475{letter-spacing:0.006012px;}
.ls10_c00475{letter-spacing:0.007200px;}
.ls12_c00475{letter-spacing:0.014400px;}
.ls6_c00475{letter-spacing:0.021600px;}
.ls8_c00475{letter-spacing:0.023940px;}
.ls7_c00475{letter-spacing:0.028728px;}
.ls4_c00475{letter-spacing:0.036000px;}
.ls5_c00475{letter-spacing:0.064800px;}
.lsd_c00475{letter-spacing:0.090180px;}
.ls1_c00475{letter-spacing:0.136080px;}
.ls2_c00475{letter-spacing:0.144000px;}
.ls3_c00475{letter-spacing:65.304000px;}
.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;}
}
.ws0_c00475{word-spacing:-9.856080px;}
.ws2_c00475{word-spacing:-0.264528px;}
.ws1_c00475{word-spacing:-0.240480px;}
.ws13_c00475{word-spacing:-0.014400px;}
.ws17_c00475{word-spacing:-0.009576px;}
.ws18_c00475{word-spacing:-0.004788px;}
.ws3_c00475{word-spacing:0.000000px;}
.wsb_c00475{word-spacing:0.007200px;}
.ws6_c00475{word-spacing:0.014400px;}
.ws4_c00475{word-spacing:0.084168px;}
.ws12_c00475{word-spacing:0.093600px;}
.wsf_c00475{word-spacing:0.295200px;}
.wse_c00475{word-spacing:0.324000px;}
.ws10_c00475{word-spacing:0.396000px;}
.ws14_c00475{word-spacing:3.304800px;}
.ws15_c00475{word-spacing:3.326400px;}
.ws7_c00475{word-spacing:4.320000px;}
.ws11_c00475{word-spacing:5.767200px;}
.ws5_c00475{word-spacing:7.200000px;}
.wsa_c00475{word-spacing:8.632800px;}
.ws9_c00475{word-spacing:8.812800px;}
.ws8_c00475{word-spacing:11.181600px;}
.ws16_c00475{word-spacing:13.694400px;}
.wsc_c00475{word-spacing:17.632800px;}
.wsd_c00475{word-spacing:17.697600px;}
._1_c00475{margin-left:-1.262520px;}
._0_c00475{width:1.052100px;}
.fc0_c00475{color:rgb(0,0,0);}
.fs3_c00475{font-size:38.880000px;}
.fs4_c00475{font-size:47.880000px;}
.fs2_c00475{font-size:54.000000px;}
.fs0_c00475{font-size:60.120000px;}
.fs1_c00475{font-size:72.000000px;}
.y0_c00475{bottom:0.000000px;}
.y3_c00475{bottom:57.450450px;}
.y4_c00475{bottom:61.410450px;}
.y17_c00475{bottom:88.230450px;}
.y16_c00475{bottom:103.440450px;}
.y15_c00475{bottom:124.140450px;}
.y14_c00475{bottom:144.840450px;}
.y13_c00475{bottom:243.120450px;}
.y12_c00475{bottom:277.500450px;}
.y11_c00475{bottom:311.970450px;}
.y10_c00475{bottom:364.350450px;}
.yf_c00475{bottom:398.820450px;}
.ye_c00475{bottom:433.200450px;}
.yd_c00475{bottom:467.670450px;}
.yc_c00475{bottom:511.050450px;}
.yb_c00475{bottom:545.520450px;}
.ya_c00475{bottom:579.900450px;}
.y9_c00475{bottom:614.370450px;}
.y8_c00475{bottom:657.750450px;}
.y7_c00475{bottom:692.220450px;}
.y6_c00475{bottom:729.660450px;}
.y5_c00475{bottom:751.530450px;}
.y2_c00475{bottom:1176.420450px;}
.y1_c00475{bottom:1196.940450px;}
.h2_c00475{height:47.988281px;}
.h6_c00475{height:49.937344px;}
.h1_c00475{height:50.315273px;}
.h3_c00475{height:56.320312px;}
.h4_c00475{height:60.257812px;}
.h5_c00475{height:75.093750px;}
.h0_c00475{height:1263.000000px;}
.w1_c00475{width:892.500000px;}
.w0_c00475{width:892.830000px;}
.x0_c00475{left:0.000000px;}
.x2_c00475{left:127.620000px;}
.x8_c00475{left:154.620000px;}
.x7_c00475{left:180.810000px;}
.x1_c00475{left:217.440000px;}
.x6_c00475{left:293.580000px;}
.x4_c00475{left:435.240000px;}
.x3_c00475{left:446.490000px;}
.x5_c00475{left:674.820000px;}
@media print{
.v2_c00475{vertical-align:-13.440000pt;}
.v0_c00475{vertical-align:0.000000pt;}
.v1_c00475{vertical-align:13.440000pt;}
.lsc_c00475{letter-spacing:-0.134400pt;}
.ls9_c00475{letter-spacing:-0.026720pt;}
.ls13_c00475{letter-spacing:-0.025600pt;}
.lsf_c00475{letter-spacing:-0.019200pt;}
.lse_c00475{letter-spacing:-0.012800pt;}
.ls11_c00475{letter-spacing:-0.006400pt;}
.lsa_c00475{letter-spacing:-0.005344pt;}
.lsb_c00475{letter-spacing:0.000000pt;}
.ls0_c00475{letter-spacing:0.005344pt;}
.ls10_c00475{letter-spacing:0.006400pt;}
.ls12_c00475{letter-spacing:0.012800pt;}
.ls6_c00475{letter-spacing:0.019200pt;}
.ls8_c00475{letter-spacing:0.021280pt;}
.ls7_c00475{letter-spacing:0.025536pt;}
.ls4_c00475{letter-spacing:0.032000pt;}
.ls5_c00475{letter-spacing:0.057600pt;}
.lsd_c00475{letter-spacing:0.080160pt;}
.ls1_c00475{letter-spacing:0.120960pt;}
.ls2_c00475{letter-spacing:0.128000pt;}
.ls3_c00475{letter-spacing:58.048000pt;}
.ws0_c00475{word-spacing:-8.760960pt;}
.ws2_c00475{word-spacing:-0.235136pt;}
.ws1_c00475{word-spacing:-0.213760pt;}
.ws13_c00475{word-spacing:-0.012800pt;}
.ws17_c00475{word-spacing:-0.008512pt;}
.ws18_c00475{word-spacing:-0.004256pt;}
.ws3_c00475{word-spacing:0.000000pt;}
.wsb_c00475{word-spacing:0.006400pt;}
.ws6_c00475{word-spacing:0.012800pt;}
.ws4_c00475{word-spacing:0.074816pt;}
.ws12_c00475{word-spacing:0.083200pt;}
.wsf_c00475{word-spacing:0.262400pt;}
.wse_c00475{word-spacing:0.288000pt;}
.ws10_c00475{word-spacing:0.352000pt;}
.ws14_c00475{word-spacing:2.937600pt;}
.ws15_c00475{word-spacing:2.956800pt;}
.ws7_c00475{word-spacing:3.840000pt;}
.ws11_c00475{word-spacing:5.126400pt;}
.ws5_c00475{word-spacing:6.400000pt;}
.wsa_c00475{word-spacing:7.673600pt;}
.ws9_c00475{word-spacing:7.833600pt;}
.ws8_c00475{word-spacing:9.939200pt;}
.ws16_c00475{word-spacing:12.172800pt;}
.wsc_c00475{word-spacing:15.673600pt;}
.wsd_c00475{word-spacing:15.731200pt;}
._1_c00475{margin-left:-1.122240pt;}
._0_c00475{width:0.935200pt;}
.fs3_c00475{font-size:34.560000pt;}
.fs4_c00475{font-size:42.560000pt;}
.fs2_c00475{font-size:48.000000pt;}
.fs0_c00475{font-size:53.440000pt;}
.fs1_c00475{font-size:64.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y3_c00475{bottom:51.067067pt;}
.y4_c00475{bottom:54.587067pt;}
.y17_c00475{bottom:78.427067pt;}
.y16_c00475{bottom:91.947067pt;}
.y15_c00475{bottom:110.347067pt;}
.y14_c00475{bottom:128.747067pt;}
.y13_c00475{bottom:216.107067pt;}
.y12_c00475{bottom:246.667067pt;}
.y11_c00475{bottom:277.307067pt;}
.y10_c00475{bottom:323.867067pt;}
.yf_c00475{bottom:354.507067pt;}
.ye_c00475{bottom:385.067067pt;}
.yd_c00475{bottom:415.707067pt;}
.yc_c00475{bottom:454.267067pt;}
.yb_c00475{bottom:484.907067pt;}
.ya_c00475{bottom:515.467067pt;}
.y9_c00475{bottom:546.107067pt;}
.y8_c00475{bottom:584.667067pt;}
.y7_c00475{bottom:615.307067pt;}
.y6_c00475{bottom:648.587067pt;}
.y5_c00475{bottom:668.027067pt;}
.y2_c00475{bottom:1045.707067pt;}
.y1_c00475{bottom:1063.947067pt;}
.h2_c00475{height:42.656250pt;}
.h6_c00475{height:44.388750pt;}
.h1_c00475{height:44.724687pt;}
.h3_c00475{height:50.062500pt;}
.h4_c00475{height:53.562500pt;}
.h5_c00475{height:66.750000pt;}
.h0_c00475{height:1122.666667pt;}
.w1_c00475{width:793.333333pt;}
.w0_c00475{width:793.626667pt;}
.x0_c00475{left:0.000000pt;}
.x2_c00475{left:113.440000pt;}
.x8_c00475{left:137.440000pt;}
.x7_c00475{left:160.720000pt;}
.x1_c00475{left:193.280000pt;}
.x6_c00475{left:260.960000pt;}
.x4_c00475{left:386.880000pt;}
.x3_c00475{left:396.880000pt;}
.x5_c00475{left:599.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_6dd796a9cb6f15ec1f37efbb.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00476;src:url('chunks/assets/font_aa8653f9fdb50d83fec1c5b2.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00476;src:url('chunks/assets/font_1b6093141552a4eb5305fe39.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00476;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00476{font-family:ff5_c00476;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_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.v1_c00476{vertical-align:15.840000px;}
.v2_c00476{vertical-align:29.880000px;}
.ls10_c00476{letter-spacing:-0.151200px;}
.ls13_c00476{letter-spacing:-0.075492px;}
.ls12_c00476{letter-spacing:-0.028800px;}
.ls15_c00476{letter-spacing:-0.021600px;}
.ls17_c00476{letter-spacing:-0.014400px;}
.ls11_c00476{letter-spacing:-0.007200px;}
.ls16_c00476{letter-spacing:0.000000px;}
.lsa_c00476{letter-spacing:0.007200px;}
.ls7_c00476{letter-spacing:0.014400px;}
.lsf_c00476{letter-spacing:0.028728px;}
.ls4_c00476{letter-spacing:0.028800px;}
.lsc_c00476{letter-spacing:0.033516px;}
.ls6_c00476{letter-spacing:0.033552px;}
.lsd_c00476{letter-spacing:0.038304px;}
.ls14_c00476{letter-spacing:0.041940px;}
.lsb_c00476{letter-spacing:0.047880px;}
.ls0_c00476{letter-spacing:0.048096px;}
.ls8_c00476{letter-spacing:0.054756px;}
.lse_c00476{letter-spacing:0.067032px;}
.ls18_c00476{letter-spacing:0.093600px;}
.ls2_c00476{letter-spacing:0.144000px;}
.ls5_c00476{letter-spacing:17.363160px;}
.ls9_c00476{letter-spacing:65.304000px;}
.ls3_c00476{letter-spacing:66.024000px;}
.ls1_c00476{letter-spacing:1212.120000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00476{word-spacing:-20.894508px;}
.ws1_c00476{word-spacing:-10.584756px;}
.ws7_c00476{word-spacing:-0.125820px;}
.wsd_c00476{word-spacing:-0.086400px;}
.ws19_c00476{word-spacing:-0.047880px;}
.ws1a_c00476{word-spacing:-0.009576px;}
.ws11_c00476{word-spacing:-0.007200px;}
.ws3_c00476{word-spacing:0.000000px;}
.wse_c00476{word-spacing:0.007200px;}
.ws10_c00476{word-spacing:0.014400px;}
.wsc_c00476{word-spacing:0.021600px;}
.ws5_c00476{word-spacing:0.028800px;}
.ws2_c00476{word-spacing:0.042084px;}
.ws6_c00476{word-spacing:0.064800px;}
.ws16_c00476{word-spacing:1.781136px;}
.ws17_c00476{word-spacing:1.785924px;}
.ws9_c00476{word-spacing:1.800000px;}
.ws8_c00476{word-spacing:1.821600px;}
.ws14_c00476{word-spacing:4.290048px;}
.ws15_c00476{word-spacing:4.304412px;}
.ws12_c00476{word-spacing:5.392800px;}
.ws13_c00476{word-spacing:5.436000px;}
.ws18_c00476{word-spacing:6.822900px;}
.wsf_c00476{word-spacing:10.087200px;}
.ws4_c00476{word-spacing:13.017600px;}
.wsb_c00476{word-spacing:14.724000px;}
.wsa_c00476{word-spacing:14.745600px;}
._0_c00476{margin-left:-1.322640px;}
._1_c00476{width:1.296000px;}
.fc0_c00476{color:rgb(0,0,0);}
.fs4_c00476{font-size:42.120000px;}
.fs5_c00476{font-size:47.880000px;}
.fs2_c00476{font-size:54.000000px;}
.fs0_c00476{font-size:60.120000px;}
.fs1_c00476{font-size:72.000000px;}
.fs3_c00476{font-size:83.880000px;}
.y0_c00476{bottom:0.000000px;}
.y2_c00476{bottom:57.450450px;}
.y1f_c00476{bottom:88.238190px;}
.y1e_c00476{bottom:102.003690px;}
.y1d_c00476{bottom:115.864950px;}
.y1c_c00476{bottom:129.630450px;}
.y1b_c00476{bottom:144.840450px;}
.y1a_c00476{bottom:165.540450px;}
.y19_c00476{bottom:186.240450px;}
.y18_c00476{bottom:250.500450px;}
.y17_c00476{bottom:293.970450px;}
.y16_c00476{bottom:337.350450px;}
.y15_c00476{bottom:380.820450px;}
.y14_c00476{bottom:424.200450px;}
.y13_c00476{bottom:467.670450px;}
.y12_c00476{bottom:511.050450px;}
.y11_c00476{bottom:545.520450px;}
.y10_c00476{bottom:588.900450px;}
.yf_c00476{bottom:632.370450px;}
.ye_c00476{bottom:675.750450px;}
.yd_c00476{bottom:719.220450px;}
.yc_c00476{bottom:753.600450px;}
.yb_c00476{bottom:797.070450px;}
.ya_c00476{bottom:840.450450px;}
.y9_c00476{bottom:883.920450px;}
.y8_c00476{bottom:927.300450px;}
.y7_c00476{bottom:961.770450px;}
.y6_c00476{bottom:996.150450px;}
.y5_c00476{bottom:1042.680450px;}
.y4_c00476{bottom:1106.760450px;}
.y3_c00476{bottom:1141.140450px;}
.y1_c00476{bottom:1196.850450px;}
.h7_c00476{height:47.988281px;}
.h8_c00476{height:49.937344px;}
.h1_c00476{height:50.315273px;}
.h4_c00476{height:60.257812px;}
.h6_c00476{height:65.130820px;}
.h2_c00476{height:72.160312px;}
.h3_c00476{height:75.093750px;}
.h5_c00476{height:87.484219px;}
.h0_c00476{height:1263.000000px;}
.w1_c00476{width:892.500000px;}
.w0_c00476{width:892.830000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:127.620000px;}
.x4_c00476{left:141.122160px;}
.x2_c00476{left:154.440000px;}
.x3_c00476{left:181.170000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.v1_c00476{vertical-align:14.080000pt;}
.v2_c00476{vertical-align:26.560000pt;}
.ls10_c00476{letter-spacing:-0.134400pt;}
.ls13_c00476{letter-spacing:-0.067104pt;}
.ls12_c00476{letter-spacing:-0.025600pt;}
.ls15_c00476{letter-spacing:-0.019200pt;}
.ls17_c00476{letter-spacing:-0.012800pt;}
.ls11_c00476{letter-spacing:-0.006400pt;}
.ls16_c00476{letter-spacing:0.000000pt;}
.lsa_c00476{letter-spacing:0.006400pt;}
.ls7_c00476{letter-spacing:0.012800pt;}
.lsf_c00476{letter-spacing:0.025536pt;}
.ls4_c00476{letter-spacing:0.025600pt;}
.lsc_c00476{letter-spacing:0.029792pt;}
.ls6_c00476{letter-spacing:0.029824pt;}
.lsd_c00476{letter-spacing:0.034048pt;}
.ls14_c00476{letter-spacing:0.037280pt;}
.lsb_c00476{letter-spacing:0.042560pt;}
.ls0_c00476{letter-spacing:0.042752pt;}
.ls8_c00476{letter-spacing:0.048672pt;}
.lse_c00476{letter-spacing:0.059584pt;}
.ls18_c00476{letter-spacing:0.083200pt;}
.ls2_c00476{letter-spacing:0.128000pt;}
.ls5_c00476{letter-spacing:15.433920pt;}
.ls9_c00476{letter-spacing:58.048000pt;}
.ls3_c00476{letter-spacing:58.688000pt;}
.ls1_c00476{letter-spacing:1077.440000pt;}
.ws0_c00476{word-spacing:-18.572896pt;}
.ws1_c00476{word-spacing:-9.408672pt;}
.ws7_c00476{word-spacing:-0.111840pt;}
.wsd_c00476{word-spacing:-0.076800pt;}
.ws19_c00476{word-spacing:-0.042560pt;}
.ws1a_c00476{word-spacing:-0.008512pt;}
.ws11_c00476{word-spacing:-0.006400pt;}
.ws3_c00476{word-spacing:0.000000pt;}
.wse_c00476{word-spacing:0.006400pt;}
.ws10_c00476{word-spacing:0.012800pt;}
.wsc_c00476{word-spacing:0.019200pt;}
.ws5_c00476{word-spacing:0.025600pt;}
.ws2_c00476{word-spacing:0.037408pt;}
.ws6_c00476{word-spacing:0.057600pt;}
.ws16_c00476{word-spacing:1.583232pt;}
.ws17_c00476{word-spacing:1.587488pt;}
.ws9_c00476{word-spacing:1.600000pt;}
.ws8_c00476{word-spacing:1.619200pt;}
.ws14_c00476{word-spacing:3.813376pt;}
.ws15_c00476{word-spacing:3.826144pt;}
.ws12_c00476{word-spacing:4.793600pt;}
.ws13_c00476{word-spacing:4.832000pt;}
.ws18_c00476{word-spacing:6.064800pt;}
.wsf_c00476{word-spacing:8.966400pt;}
.ws4_c00476{word-spacing:11.571200pt;}
.wsb_c00476{word-spacing:13.088000pt;}
.wsa_c00476{word-spacing:13.107200pt;}
._0_c00476{margin-left:-1.175680pt;}
._1_c00476{width:1.152000pt;}
.fs4_c00476{font-size:37.440000pt;}
.fs5_c00476{font-size:42.560000pt;}
.fs2_c00476{font-size:48.000000pt;}
.fs0_c00476{font-size:53.440000pt;}
.fs1_c00476{font-size:64.000000pt;}
.fs3_c00476{font-size:74.560000pt;}
.y0_c00476{bottom:0.000000pt;}
.y2_c00476{bottom:51.067067pt;}
.y1f_c00476{bottom:78.433947pt;}
.y1e_c00476{bottom:90.669947pt;}
.y1d_c00476{bottom:102.991067pt;}
.y1c_c00476{bottom:115.227067pt;}
.y1b_c00476{bottom:128.747067pt;}
.y1a_c00476{bottom:147.147067pt;}
.y19_c00476{bottom:165.547067pt;}
.y18_c00476{bottom:222.667067pt;}
.y17_c00476{bottom:261.307067pt;}
.y16_c00476{bottom:299.867067pt;}
.y15_c00476{bottom:338.507067pt;}
.y14_c00476{bottom:377.067067pt;}
.y13_c00476{bottom:415.707067pt;}
.y12_c00476{bottom:454.267067pt;}
.y11_c00476{bottom:484.907067pt;}
.y10_c00476{bottom:523.467067pt;}
.yf_c00476{bottom:562.107067pt;}
.ye_c00476{bottom:600.667067pt;}
.yd_c00476{bottom:639.307067pt;}
.yc_c00476{bottom:669.867067pt;}
.yb_c00476{bottom:708.507067pt;}
.ya_c00476{bottom:747.067067pt;}
.y9_c00476{bottom:785.707067pt;}
.y8_c00476{bottom:824.267067pt;}
.y7_c00476{bottom:854.907067pt;}
.y6_c00476{bottom:885.467067pt;}
.y5_c00476{bottom:926.827067pt;}
.y4_c00476{bottom:983.787067pt;}
.y3_c00476{bottom:1014.347067pt;}
.y1_c00476{bottom:1063.867067pt;}
.h7_c00476{height:42.656250pt;}
.h8_c00476{height:44.388750pt;}
.h1_c00476{height:44.724687pt;}
.h4_c00476{height:53.562500pt;}
.h6_c00476{height:57.894063pt;}
.h2_c00476{height:64.142500pt;}
.h3_c00476{height:66.750000pt;}
.h5_c00476{height:77.763750pt;}
.h0_c00476{height:1122.666667pt;}
.w1_c00476{width:793.333333pt;}
.w0_c00476{width:793.626667pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:113.440000pt;}
.x4_c00476{left:125.441920pt;}
.x2_c00476{left:137.280000pt;}
.x3_c00476{left:161.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a93a5bd96ecb61deb45f0ae2.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00477;src:url('chunks/assets/font_eac11370474e6b41e532b6cf.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;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_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;}
.v1_c00477{vertical-align:29.880000px;}
.lsd_c00477{letter-spacing:-0.151200px;}
.lsa_c00477{letter-spacing:-0.030060px;}
.ls10_c00477{letter-spacing:-0.021600px;}
.lsf_c00477{letter-spacing:-0.014400px;}
.lse_c00477{letter-spacing:-0.007200px;}
.lsb_c00477{letter-spacing:-0.006012px;}
.lsc_c00477{letter-spacing:0.000000px;}
.ls4_c00477{letter-spacing:0.007200px;}
.ls6_c00477{letter-spacing:0.014400px;}
.ls5_c00477{letter-spacing:0.028800px;}
.ls8_c00477{letter-spacing:0.033516px;}
.ls9_c00477{letter-spacing:0.038304px;}
.ls7_c00477{letter-spacing:0.043092px;}
.ls3_c00477{letter-spacing:0.054756px;}
.ls11_c00477{letter-spacing:0.093600px;}
.ls0_c00477{letter-spacing:0.144000px;}
.ls1_c00477{letter-spacing:65.304000px;}
.ls2_c00477{letter-spacing:66.024000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00477{word-spacing:-18.000000px;}
.ws1_c00477{word-spacing:-10.584756px;}
.ws3_c00477{word-spacing:-0.264528px;}
.ws2_c00477{word-spacing:-0.240480px;}
.ws12_c00477{word-spacing:-0.093600px;}
.ws6_c00477{word-spacing:-0.057600px;}
.ws17_c00477{word-spacing:-0.023940px;}
.ws18_c00477{word-spacing:-0.014364px;}
.ws7_c00477{word-spacing:-0.007200px;}
.ws4_c00477{word-spacing:0.000000px;}
.ws5_c00477{word-spacing:0.007200px;}
.ws8_c00477{word-spacing:0.064800px;}
.wsc_c00477{word-spacing:7.264800px;}
.wsd_c00477{word-spacing:7.272000px;}
.wsf_c00477{word-spacing:7.581600px;}
.wsb_c00477{word-spacing:9.864000px;}
.wsa_c00477{word-spacing:10.015200px;}
.ws16_c00477{word-spacing:11.203200px;}
.ws15_c00477{word-spacing:11.217600px;}
.ws9_c00477{word-spacing:13.701600px;}
.ws10_c00477{word-spacing:14.752800px;}
.wse_c00477{word-spacing:14.781600px;}
.ws11_c00477{word-spacing:14.824800px;}
.ws14_c00477{word-spacing:25.977600px;}
.ws13_c00477{word-spacing:26.092800px;}
._1_c00477{margin-left:-1.425600px;}
._0_c00477{width:1.052100px;}
.fc0_c00477{color:rgb(0,0,0);}
.fs3_c00477{font-size:42.120000px;}
.fs4_c00477{font-size:47.880000px;}
.fs2_c00477{font-size:54.000000px;}
.fs0_c00477{font-size:60.120000px;}
.fs1_c00477{font-size:72.000000px;}
.y0_c00477{bottom:0.000000px;}
.y3_c00477{bottom:57.450450px;}
.y4_c00477{bottom:61.410450px;}
.y1f_c00477{bottom:88.232250px;}
.y1e_c00477{bottom:106.498470px;}
.y1d_c00477{bottom:124.860450px;}
.y1c_c00477{bottom:140.070450px;}
.y1b_c00477{bottom:160.770450px;}
.y1a_c00477{bottom:181.470450px;}
.y19_c00477{bottom:335.640600px;}
.y18_c00477{bottom:370.110600px;}
.y17_c00477{bottom:404.490600px;}
.y16_c00477{bottom:447.960600px;}
.y15_c00477{bottom:482.340450px;}
.y14_c00477{bottom:516.810450px;}
.y13_c00477{bottom:551.190450px;}
.y12_c00477{bottom:585.660450px;}
.y11_c00477{bottom:629.040450px;}
.y10_c00477{bottom:663.510450px;}
.yf_c00477{bottom:697.890450px;}
.ye_c00477{bottom:750.360450px;}
.yd_c00477{bottom:793.740450px;}
.yc_c00477{bottom:837.210450px;}
.yb_c00477{bottom:880.590450px;}
.ya_c00477{bottom:924.060450px;}
.y9_c00477{bottom:967.440450px;}
.y8_c00477{bottom:1010.910450px;}
.y7_c00477{bottom:1054.290450px;}
.y6_c00477{bottom:1097.760450px;}
.y5_c00477{bottom:1141.140450px;}
.y2_c00477{bottom:1176.420450px;}
.y1_c00477{bottom:1196.940450px;}
.h2_c00477{height:47.988281px;}
.h8_c00477{height:49.937344px;}
.h1_c00477{height:50.315273px;}
.h3_c00477{height:56.320312px;}
.h5_c00477{height:60.257812px;}
.h7_c00477{height:65.130220px;}
.h6_c00477{height:65.130820px;}
.h4_c00477{height:75.093750px;}
.h0_c00477{height:1263.000000px;}
.w1_c00477{width:892.500000px;}
.w0_c00477{width:892.830000px;}
.x0_c00477{left:0.000000px;}
.x2_c00477{left:127.620000px;}
.x5_c00477{left:154.620000px;}
.x6_c00477{left:180.720000px;}
.x1_c00477{left:217.440000px;}
.x4_c00477{left:435.240000px;}
.x3_c00477{left:446.490000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.v1_c00477{vertical-align:26.560000pt;}
.lsd_c00477{letter-spacing:-0.134400pt;}
.lsa_c00477{letter-spacing:-0.026720pt;}
.ls10_c00477{letter-spacing:-0.019200pt;}
.lsf_c00477{letter-spacing:-0.012800pt;}
.lse_c00477{letter-spacing:-0.006400pt;}
.lsb_c00477{letter-spacing:-0.005344pt;}
.lsc_c00477{letter-spacing:0.000000pt;}
.ls4_c00477{letter-spacing:0.006400pt;}
.ls6_c00477{letter-spacing:0.012800pt;}
.ls5_c00477{letter-spacing:0.025600pt;}
.ls8_c00477{letter-spacing:0.029792pt;}
.ls9_c00477{letter-spacing:0.034048pt;}
.ls7_c00477{letter-spacing:0.038304pt;}
.ls3_c00477{letter-spacing:0.048672pt;}
.ls11_c00477{letter-spacing:0.083200pt;}
.ls0_c00477{letter-spacing:0.128000pt;}
.ls1_c00477{letter-spacing:58.048000pt;}
.ls2_c00477{letter-spacing:58.688000pt;}
.ws0_c00477{word-spacing:-16.000000pt;}
.ws1_c00477{word-spacing:-9.408672pt;}
.ws3_c00477{word-spacing:-0.235136pt;}
.ws2_c00477{word-spacing:-0.213760pt;}
.ws12_c00477{word-spacing:-0.083200pt;}
.ws6_c00477{word-spacing:-0.051200pt;}
.ws17_c00477{word-spacing:-0.021280pt;}
.ws18_c00477{word-spacing:-0.012768pt;}
.ws7_c00477{word-spacing:-0.006400pt;}
.ws4_c00477{word-spacing:0.000000pt;}
.ws5_c00477{word-spacing:0.006400pt;}
.ws8_c00477{word-spacing:0.057600pt;}
.wsc_c00477{word-spacing:6.457600pt;}
.wsd_c00477{word-spacing:6.464000pt;}
.wsf_c00477{word-spacing:6.739200pt;}
.wsb_c00477{word-spacing:8.768000pt;}
.wsa_c00477{word-spacing:8.902400pt;}
.ws16_c00477{word-spacing:9.958400pt;}
.ws15_c00477{word-spacing:9.971200pt;}
.ws9_c00477{word-spacing:12.179200pt;}
.ws10_c00477{word-spacing:13.113600pt;}
.wse_c00477{word-spacing:13.139200pt;}
.ws11_c00477{word-spacing:13.177600pt;}
.ws14_c00477{word-spacing:23.091200pt;}
.ws13_c00477{word-spacing:23.193600pt;}
._1_c00477{margin-left:-1.267200pt;}
._0_c00477{width:0.935200pt;}
.fs3_c00477{font-size:37.440000pt;}
.fs4_c00477{font-size:42.560000pt;}
.fs2_c00477{font-size:48.000000pt;}
.fs0_c00477{font-size:53.440000pt;}
.fs1_c00477{font-size:64.000000pt;}
.y0_c00477{bottom:0.000000pt;}
.y3_c00477{bottom:51.067067pt;}
.y4_c00477{bottom:54.587067pt;}
.y1f_c00477{bottom:78.428667pt;}
.y1e_c00477{bottom:94.665307pt;}
.y1d_c00477{bottom:110.987067pt;}
.y1c_c00477{bottom:124.507067pt;}
.y1b_c00477{bottom:142.907067pt;}
.y1a_c00477{bottom:161.307067pt;}
.y19_c00477{bottom:298.347200pt;}
.y18_c00477{bottom:328.987200pt;}
.y17_c00477{bottom:359.547200pt;}
.y16_c00477{bottom:398.187200pt;}
.y15_c00477{bottom:428.747067pt;}
.y14_c00477{bottom:459.387067pt;}
.y13_c00477{bottom:489.947067pt;}
.y12_c00477{bottom:520.587067pt;}
.y11_c00477{bottom:559.147067pt;}
.y10_c00477{bottom:589.787067pt;}
.yf_c00477{bottom:620.347067pt;}
.ye_c00477{bottom:666.987067pt;}
.yd_c00477{bottom:705.547067pt;}
.yc_c00477{bottom:744.187067pt;}
.yb_c00477{bottom:782.747067pt;}
.ya_c00477{bottom:821.387067pt;}
.y9_c00477{bottom:859.947067pt;}
.y8_c00477{bottom:898.587067pt;}
.y7_c00477{bottom:937.147067pt;}
.y6_c00477{bottom:975.787067pt;}
.y5_c00477{bottom:1014.347067pt;}
.y2_c00477{bottom:1045.707067pt;}
.y1_c00477{bottom:1063.947067pt;}
.h2_c00477{height:42.656250pt;}
.h8_c00477{height:44.388750pt;}
.h1_c00477{height:44.724687pt;}
.h3_c00477{height:50.062500pt;}
.h5_c00477{height:53.562500pt;}
.h7_c00477{height:57.893529pt;}
.h6_c00477{height:57.894062pt;}
.h4_c00477{height:66.750000pt;}
.h0_c00477{height:1122.666667pt;}
.w1_c00477{width:793.333333pt;}
.w0_c00477{width:793.626667pt;}
.x0_c00477{left:0.000000pt;}
.x2_c00477{left:113.440000pt;}
.x5_c00477{left:137.440000pt;}
.x6_c00477{left:160.640000pt;}
.x1_c00477{left:193.280000pt;}
.x4_c00477{left:386.880000pt;}
.x3_c00477{left:396.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_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_ed59e0747b2e6746ebff21b7.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00478;src:url('chunks/assets/font_f77179c407ea2260e261d382.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00478;src:url('chunks/assets/font_11512750df1bc68467870ebc.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00478;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00478{font-family:ff5_c00478;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00478;src:url('chunks/assets/font_b359df96bb3840c4254713ec.woff2')format("woff");}.ff6_c00478{font-family:ff6_c00478;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00478{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.v1_c00478{vertical-align:15.840000px;}
.v2_c00478{vertical-align:29.879400px;}
.ls10_c00478{letter-spacing:-0.151200px;}
.ls12_c00478{letter-spacing:-0.048096px;}
.ls14_c00478{letter-spacing:-0.028800px;}
.ls13_c00478{letter-spacing:-0.024048px;}
.ls1a_c00478{letter-spacing:-0.021600px;}
.ls15_c00478{letter-spacing:-0.014400px;}
.ls18_c00478{letter-spacing:-0.007812px;}
.ls17_c00478{letter-spacing:-0.007200px;}
.ls1b_c00478{letter-spacing:-0.003888px;}
.ls11_c00478{letter-spacing:0.000000px;}
.ls5_c00478{letter-spacing:0.007200px;}
.ls19_c00478{letter-spacing:0.007812px;}
.lsa_c00478{letter-spacing:0.014364px;}
.ls3_c00478{letter-spacing:0.014400px;}
.lsd_c00478{letter-spacing:0.019152px;}
.lsf_c00478{letter-spacing:0.028728px;}
.ls8_c00478{letter-spacing:0.033516px;}
.ls4_c00478{letter-spacing:0.036000px;}
.ls9_c00478{letter-spacing:0.047880px;}
.ls0_c00478{letter-spacing:0.048096px;}
.ls6_c00478{letter-spacing:0.054756px;}
.lsb_c00478{letter-spacing:0.057456px;}
.lsc_c00478{letter-spacing:0.071820px;}
.ls16_c00478{letter-spacing:0.093600px;}
.ls2_c00478{letter-spacing:0.136080px;}
.lse_c00478{letter-spacing:0.464040px;}
.ls7_c00478{letter-spacing:32.263560px;}
.ls1_c00478{letter-spacing:1212.120000px;}
.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:-19.522188px;}
.ws3_c00478{word-spacing:-10.804752px;}
.ws1_c00478{word-spacing:-10.584756px;}
.ws0_c00478{word-spacing:-9.856080px;}
.ws16_c00478{word-spacing:-0.187488px;}
.ws1f_c00478{word-spacing:-0.028728px;}
.ws1e_c00478{word-spacing:-0.014364px;}
.ws26_c00478{word-spacing:-0.009576px;}
.ws5_c00478{word-spacing:0.000000px;}
.ws24_c00478{word-spacing:0.004788px;}
.ws15_c00478{word-spacing:0.007200px;}
.ws1d_c00478{word-spacing:0.014400px;}
.ws4_c00478{word-spacing:0.042084px;}
.ws7_c00478{word-spacing:0.114228px;}
.ws6_c00478{word-spacing:0.138276px;}
.ws14_c00478{word-spacing:0.208800px;}
.ws25_c00478{word-spacing:0.363888px;}
.ws17_c00478{word-spacing:1.044000px;}
.ws18_c00478{word-spacing:1.108800px;}
.ws10_c00478{word-spacing:2.160000px;}
.ws12_c00478{word-spacing:2.203200px;}
.ws13_c00478{word-spacing:2.232000px;}
.wsa_c00478{word-spacing:3.945600px;}
.ws9_c00478{word-spacing:3.960000px;}
.ws1b_c00478{word-spacing:5.774400px;}
.ws1c_c00478{word-spacing:5.781600px;}
.ws8_c00478{word-spacing:6.508800px;}
.wsc_c00478{word-spacing:7.516800px;}
.wsb_c00478{word-spacing:7.531200px;}
.ws23_c00478{word-spacing:8.996652px;}
.ws22_c00478{word-spacing:9.666972px;}
.ws20_c00478{word-spacing:9.681336px;}
.ws21_c00478{word-spacing:9.705276px;}
.ws11_c00478{word-spacing:10.454400px;}
.ws19_c00478{word-spacing:10.468800px;}
.ws1a_c00478{word-spacing:10.504800px;}
.wse_c00478{word-spacing:25.164000px;}
.wsf_c00478{word-spacing:25.192800px;}
.wsd_c00478{word-spacing:29.520000px;}
._0_c00478{margin-left:-1.322640px;}
._1_c00478{width:1.224000px;}
._2_c00478{width:9.743580px;}
.fc0_c00478{color:rgb(0,0,0);}
.fs4_c00478{font-size:38.880000px;}
.fs5_c00478{font-size:42.120000px;}
.fs3_c00478{font-size:47.880000px;}
.fs2_c00478{font-size:54.000000px;}
.fs0_c00478{font-size:60.120000px;}
.fs1_c00478{font-size:72.000000px;}
.fs6_c00478{font-size:78.120000px;}
.y0_c00478{bottom:0.000000px;}
.y2_c00478{bottom:57.450450px;}
.y1d_c00478{bottom:88.243050px;}
.y1c_c00478{bottom:106.509270px;}
.y1b_c00478{bottom:120.370530px;}
.y1a_c00478{bottom:134.136030px;}
.y19_c00478{bottom:152.402250px;}
.y18_c00478{bottom:170.764230px;}
.y17_c00478{bottom:189.030450px;}
.y16_c00478{bottom:204.240450px;}
.y15_c00478{bottom:224.940450px;}
.y14_c00478{bottom:245.640450px;}
.y13_c00478{bottom:348.600600px;}
.y12_c00478{bottom:382.980600px;}
.y11_c00478{bottom:417.450450px;}
.y10_c00478{bottom:451.830450px;}
.yf_c00478{bottom:496.920450px;}
.ye_c00478{bottom:559.560450px;}
.yd_c00478{bottom:594.030450px;}
.yc_c00478{bottom:628.410450px;}
.yb_c00478{bottom:662.880450px;}
.ya_c00478{bottom:706.260600px;}
.y9_c00478{bottom:740.730600px;}
.y8_c00478{bottom:775.110600px;}
.y7_c00478{bottom:809.580600px;}
.y6_c00478{bottom:843.960600px;}
.y5_c00478{bottom:878.430600px;}
.y4_c00478{bottom:915.870450px;}
.y3_c00478{bottom:928.740450px;}
.y1_c00478{bottom:1196.850450px;}
.h3_c00478{height:40.071445px;}
.h8_c00478{height:47.988281px;}
.h9_c00478{height:49.937344px;}
.h1_c00478{height:50.315273px;}
.h4_c00478{height:60.257812px;}
.h5_c00478{height:65.130220px;}
.h6_c00478{height:65.130820px;}
.h2_c00478{height:72.160312px;}
.h7_c00478{height:81.476719px;}
.h0_c00478{height:1263.000000px;}
.w1_c00478{width:892.500000px;}
.w0_c00478{width:892.830000px;}
.x0_c00478{left:0.000000px;}
.x1_c00478{left:127.620000px;}
.x5_c00478{left:141.122160px;}
.x4_c00478{left:180.720000px;}
.x3_c00478{left:251.190000px;}
.x2_c00478{left:829.620000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.v1_c00478{vertical-align:14.080000pt;}
.v2_c00478{vertical-align:26.559467pt;}
.ls10_c00478{letter-spacing:-0.134400pt;}
.ls12_c00478{letter-spacing:-0.042752pt;}
.ls14_c00478{letter-spacing:-0.025600pt;}
.ls13_c00478{letter-spacing:-0.021376pt;}
.ls1a_c00478{letter-spacing:-0.019200pt;}
.ls15_c00478{letter-spacing:-0.012800pt;}
.ls18_c00478{letter-spacing:-0.006944pt;}
.ls17_c00478{letter-spacing:-0.006400pt;}
.ls1b_c00478{letter-spacing:-0.003456pt;}
.ls11_c00478{letter-spacing:0.000000pt;}
.ls5_c00478{letter-spacing:0.006400pt;}
.ls19_c00478{letter-spacing:0.006944pt;}
.lsa_c00478{letter-spacing:0.012768pt;}
.ls3_c00478{letter-spacing:0.012800pt;}
.lsd_c00478{letter-spacing:0.017024pt;}
.lsf_c00478{letter-spacing:0.025536pt;}
.ls8_c00478{letter-spacing:0.029792pt;}
.ls4_c00478{letter-spacing:0.032000pt;}
.ls9_c00478{letter-spacing:0.042560pt;}
.ls0_c00478{letter-spacing:0.042752pt;}
.ls6_c00478{letter-spacing:0.048672pt;}
.lsb_c00478{letter-spacing:0.051072pt;}
.lsc_c00478{letter-spacing:0.063840pt;}
.ls16_c00478{letter-spacing:0.083200pt;}
.ls2_c00478{letter-spacing:0.120960pt;}
.lse_c00478{letter-spacing:0.412480pt;}
.ls7_c00478{letter-spacing:28.678720pt;}
.ls1_c00478{letter-spacing:1077.440000pt;}
.ws2_c00478{word-spacing:-17.353056pt;}
.ws3_c00478{word-spacing:-9.604224pt;}
.ws1_c00478{word-spacing:-9.408672pt;}
.ws0_c00478{word-spacing:-8.760960pt;}
.ws16_c00478{word-spacing:-0.166656pt;}
.ws1f_c00478{word-spacing:-0.025536pt;}
.ws1e_c00478{word-spacing:-0.012768pt;}
.ws26_c00478{word-spacing:-0.008512pt;}
.ws5_c00478{word-spacing:0.000000pt;}
.ws24_c00478{word-spacing:0.004256pt;}
.ws15_c00478{word-spacing:0.006400pt;}
.ws1d_c00478{word-spacing:0.012800pt;}
.ws4_c00478{word-spacing:0.037408pt;}
.ws7_c00478{word-spacing:0.101536pt;}
.ws6_c00478{word-spacing:0.122912pt;}
.ws14_c00478{word-spacing:0.185600pt;}
.ws25_c00478{word-spacing:0.323456pt;}
.ws17_c00478{word-spacing:0.928000pt;}
.ws18_c00478{word-spacing:0.985600pt;}
.ws10_c00478{word-spacing:1.920000pt;}
.ws12_c00478{word-spacing:1.958400pt;}
.ws13_c00478{word-spacing:1.984000pt;}
.wsa_c00478{word-spacing:3.507200pt;}
.ws9_c00478{word-spacing:3.520000pt;}
.ws1b_c00478{word-spacing:5.132800pt;}
.ws1c_c00478{word-spacing:5.139200pt;}
.ws8_c00478{word-spacing:5.785600pt;}
.wsc_c00478{word-spacing:6.681600pt;}
.wsb_c00478{word-spacing:6.694400pt;}
.ws23_c00478{word-spacing:7.997024pt;}
.ws22_c00478{word-spacing:8.592864pt;}
.ws20_c00478{word-spacing:8.605632pt;}
.ws21_c00478{word-spacing:8.626912pt;}
.ws11_c00478{word-spacing:9.292800pt;}
.ws19_c00478{word-spacing:9.305600pt;}
.ws1a_c00478{word-spacing:9.337600pt;}
.wse_c00478{word-spacing:22.368000pt;}
.wsf_c00478{word-spacing:22.393600pt;}
.wsd_c00478{word-spacing:26.240000pt;}
._0_c00478{margin-left:-1.175680pt;}
._1_c00478{width:1.088000pt;}
._2_c00478{width:8.660960pt;}
.fs4_c00478{font-size:34.560000pt;}
.fs5_c00478{font-size:37.440000pt;}
.fs3_c00478{font-size:42.560000pt;}
.fs2_c00478{font-size:48.000000pt;}
.fs0_c00478{font-size:53.440000pt;}
.fs1_c00478{font-size:64.000000pt;}
.fs6_c00478{font-size:69.440000pt;}
.y0_c00478{bottom:0.000000pt;}
.y2_c00478{bottom:51.067067pt;}
.y1d_c00478{bottom:78.438267pt;}
.y1c_c00478{bottom:94.674907pt;}
.y1b_c00478{bottom:106.996027pt;}
.y1a_c00478{bottom:119.232027pt;}
.y19_c00478{bottom:135.468667pt;}
.y18_c00478{bottom:151.790427pt;}
.y17_c00478{bottom:168.027067pt;}
.y16_c00478{bottom:181.547067pt;}
.y15_c00478{bottom:199.947067pt;}
.y14_c00478{bottom:218.347067pt;}
.y13_c00478{bottom:309.867200pt;}
.y12_c00478{bottom:340.427200pt;}
.y11_c00478{bottom:371.067067pt;}
.y10_c00478{bottom:401.627067pt;}
.yf_c00478{bottom:441.707067pt;}
.ye_c00478{bottom:497.387067pt;}
.yd_c00478{bottom:528.027067pt;}
.yc_c00478{bottom:558.587067pt;}
.yb_c00478{bottom:589.227067pt;}
.ya_c00478{bottom:627.787200pt;}
.y9_c00478{bottom:658.427200pt;}
.y8_c00478{bottom:688.987200pt;}
.y7_c00478{bottom:719.627200pt;}
.y6_c00478{bottom:750.187200pt;}
.y5_c00478{bottom:780.827200pt;}
.y4_c00478{bottom:814.107067pt;}
.y3_c00478{bottom:825.547067pt;}
.y1_c00478{bottom:1063.867067pt;}
.h3_c00478{height:35.619062pt;}
.h8_c00478{height:42.656250pt;}
.h9_c00478{height:44.388750pt;}
.h1_c00478{height:44.724687pt;}
.h4_c00478{height:53.562500pt;}
.h5_c00478{height:57.893529pt;}
.h6_c00478{height:57.894063pt;}
.h2_c00478{height:64.142500pt;}
.h7_c00478{height:72.423750pt;}
.h0_c00478{height:1122.666667pt;}
.w1_c00478{width:793.333333pt;}
.w0_c00478{width:793.626667pt;}
.x0_c00478{left:0.000000pt;}
.x1_c00478{left:113.440000pt;}
.x5_c00478{left:125.441920pt;}
.x4_c00478{left:160.640000pt;}
.x3_c00478{left:223.280000pt;}
.x2_c00478{left:737.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_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_02c46906edf09209ddd6e136.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00479;src:url('chunks/assets/font_61cda27f8c414fa689b283b6.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00479;src:url('chunks/assets/font_a6fd312be6b03ab3a6b489f9.woff2')format("woff");}.ff4_c00479{font-family:ff4_c00479;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00479;src:url('chunks/assets/font_2344881c7549cf0abde88c0c.woff2')format("woff");}.ff5_c00479{font-family:ff5_c00479;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_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00479{vertical-align:-29.880000px;}
.v0_c00479{vertical-align:0.000000px;}
.v1_c00479{vertical-align:29.880000px;}
.ls1b_c00479{letter-spacing:-0.273600px;}
.ls16_c00479{letter-spacing:-0.151200px;}
.ls1d_c00479{letter-spacing:-0.036000px;}
.ls13_c00479{letter-spacing:-0.030060px;}
.ls1c_c00479{letter-spacing:-0.028800px;}
.ls17_c00479{letter-spacing:-0.021600px;}
.ls1a_c00479{letter-spacing:-0.014400px;}
.ls1f_c00479{letter-spacing:-0.009576px;}
.ls19_c00479{letter-spacing:-0.007200px;}
.ls14_c00479{letter-spacing:-0.006012px;}
.ls1e_c00479{letter-spacing:-0.003888px;}
.ls15_c00479{letter-spacing:0.000000px;}
.ls4_c00479{letter-spacing:0.007200px;}
.lsd_c00479{letter-spacing:0.009576px;}
.ls8_c00479{letter-spacing:0.014364px;}
.ls2_c00479{letter-spacing:0.014400px;}
.lsb_c00479{letter-spacing:0.019152px;}
.ls5_c00479{letter-spacing:0.021600px;}
.lsf_c00479{letter-spacing:0.023940px;}
.ls12_c00479{letter-spacing:0.028728px;}
.ls3_c00479{letter-spacing:0.028800px;}
.ls7_c00479{letter-spacing:0.033516px;}
.lsc_c00479{letter-spacing:0.038304px;}
.ls11_c00479{letter-spacing:0.043092px;}
.lse_c00479{letter-spacing:0.047880px;}
.lsa_c00479{letter-spacing:0.052668px;}
.ls1_c00479{letter-spacing:0.054756px;}
.ls6_c00479{letter-spacing:0.057600px;}
.ls10_c00479{letter-spacing:0.067032px;}
.ls0_c00479{letter-spacing:0.072000px;}
.ls18_c00479{letter-spacing:0.093600px;}
.ls9_c00479{letter-spacing:0.464040px;}
.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;}
}
.ws1_c00479{word-spacing:-18.028800px;}
.ws2_c00479{word-spacing:-17.978400px;}
.ws3_c00479{word-spacing:-10.804752px;}
.ws0_c00479{word-spacing:-10.584756px;}
.ws5_c00479{word-spacing:-0.264528px;}
.ws4_c00479{word-spacing:-0.240480px;}
.ws1c_c00479{word-spacing:-0.093600px;}
.ws13_c00479{word-spacing:-0.086400px;}
.ws1b_c00479{word-spacing:-0.036000px;}
.ws3c_c00479{word-spacing:-0.028728px;}
.ws40_c00479{word-spacing:-0.023940px;}
.ws3d_c00479{word-spacing:-0.019152px;}
.ws31_c00479{word-spacing:-0.014364px;}
.ws41_c00479{word-spacing:-0.009576px;}
.ws1a_c00479{word-spacing:-0.007200px;}
.ws42_c00479{word-spacing:-0.004788px;}
.ws6_c00479{word-spacing:0.000000px;}
.ws3a_c00479{word-spacing:0.004788px;}
.ws2b_c00479{word-spacing:0.007200px;}
.ws43_c00479{word-spacing:0.028728px;}
.ws12_c00479{word-spacing:0.064800px;}
.wsd_c00479{word-spacing:0.072000px;}
.wsa_c00479{word-spacing:0.259200px;}
.ws9_c00479{word-spacing:0.288000px;}
.ws25_c00479{word-spacing:0.360000px;}
.ws3b_c00479{word-spacing:0.363888px;}
.ws27_c00479{word-spacing:0.453600px;}
.ws8_c00479{word-spacing:0.496800px;}
.ws26_c00479{word-spacing:0.540000px;}
.ws3f_c00479{word-spacing:0.670320px;}
.ws2d_c00479{word-spacing:0.698400px;}
.ws3e_c00479{word-spacing:0.713412px;}
.ws2c_c00479{word-spacing:0.727200px;}
.ws14_c00479{word-spacing:0.741600px;}
.ws15_c00479{word-spacing:0.813600px;}
.ws2e_c00479{word-spacing:0.972000px;}
.ws17_c00479{word-spacing:1.080000px;}
.ws16_c00479{word-spacing:1.094400px;}
.ws7_c00479{word-spacing:1.461600px;}
.ws21_c00479{word-spacing:1.828800px;}
.ws35_c00479{word-spacing:2.484972px;}
.ws10_c00479{word-spacing:2.498400px;}
.ws38_c00479{word-spacing:2.504124px;}
.ws36_c00479{word-spacing:2.518488px;}
.ws33_c00479{word-spacing:2.519424px;}
.ws32_c00479{word-spacing:2.523276px;}
.ws11_c00479{word-spacing:2.534400px;}
.ws37_c00479{word-spacing:2.858436px;}
.ws34_c00479{word-spacing:2.882376px;}
.ws39_c00479{word-spacing:2.887164px;}
.ws1e_c00479{word-spacing:3.182400px;}
.ws1d_c00479{word-spacing:3.268800px;}
.ws2f_c00479{word-spacing:3.924000px;}
.ws30_c00479{word-spacing:3.974400px;}
.ws28_c00479{word-spacing:7.207200px;}
.wsf_c00479{word-spacing:11.469600px;}
.wse_c00479{word-spacing:11.599200px;}
.wsc_c00479{word-spacing:13.665600px;}
.wsb_c00479{word-spacing:13.687200px;}
.ws24_c00479{word-spacing:14.702400px;}
.ws23_c00479{word-spacing:14.752800px;}
.ws19_c00479{word-spacing:15.480000px;}
.ws18_c00479{word-spacing:15.508800px;}
.ws20_c00479{word-spacing:15.861600px;}
.ws1f_c00479{word-spacing:20.858400px;}
.ws2a_c00479{word-spacing:24.465600px;}
.ws29_c00479{word-spacing:24.494400px;}
.ws22_c00479{word-spacing:36.028800px;}
._1_c00479{margin-left:-1.814400px;}
._0_c00479{width:1.052100px;}
.fc0_c00479{color:rgb(0,0,0);}
.fs5_c00479{font-size:38.880000px;}
.fs3_c00479{font-size:42.120000px;}
.fs4_c00479{font-size:47.880000px;}
.fs2_c00479{font-size:54.000000px;}
.fs0_c00479{font-size:60.120000px;}
.fs1_c00479{font-size:72.000000px;}
.y0_c00479{bottom:0.000000px;}
.y3_c00479{bottom:57.450450px;}
.y4_c00479{bottom:61.410450px;}
.y28_c00479{bottom:88.232250px;}
.y27_c00479{bottom:106.498470px;}
.y26_c00479{bottom:124.866750px;}
.y25_c00479{bottom:143.132970px;}
.y24_c00479{bottom:156.898470px;}
.y23_c00479{bottom:175.268730px;}
.y22_c00479{bottom:193.534950px;}
.y21_c00479{bottom:207.298470px;}
.y20_c00479{bottom:225.660450px;}
.y1f_c00479{bottom:240.870450px;}
.y1e_c00479{bottom:261.570450px;}
.y1d_c00479{bottom:282.180450px;}
.y1c_c00479{bottom:304.410450px;}
.y1b_c00479{bottom:338.790450px;}
.y1a_c00479{bottom:382.260450px;}
.y19_c00479{bottom:416.640450px;}
.y18_c00479{bottom:451.110450px;}
.y17_c00479{bottom:494.490450px;}
.y16_c00479{bottom:528.960450px;}
.y15_c00479{bottom:563.340450px;}
.y14_c00479{bottom:597.810450px;}
.y13_c00479{bottom:632.190450px;}
.y12_c00479{bottom:666.660450px;}
.y11_c00479{bottom:701.040450px;}
.y10_c00479{bottom:735.510450px;}
.yf_c00479{bottom:778.890600px;}
.ye_c00479{bottom:813.360450px;}
.yd_c00479{bottom:847.740450px;}
.yc_c00479{bottom:882.210450px;}
.yb_c00479{bottom:925.590450px;}
.ya_c00479{bottom:960.060450px;}
.y9_c00479{bottom:994.440450px;}
.y8_c00479{bottom:1037.910450px;}
.y7_c00479{bottom:1072.290450px;}
.y6_c00479{bottom:1106.760450px;}
.y5_c00479{bottom:1141.140450px;}
.y2_c00479{bottom:1176.420450px;}
.y1_c00479{bottom:1196.940450px;}
.h2_c00479{height:47.988281px;}
.h7_c00479{height:49.937344px;}
.h8_c00479{height:49.945264px;}
.h1_c00479{height:50.315273px;}
.h3_c00479{height:56.320312px;}
.h4_c00479{height:60.257812px;}
.h5_c00479{height:65.130820px;}
.h6_c00479{height:65.131420px;}
.h0_c00479{height:1263.000000px;}
.w1_c00479{width:892.500000px;}
.w0_c00479{width:892.830000px;}
.x0_c00479{left:0.000000px;}
.x2_c00479{left:127.620000px;}
.x6_c00479{left:141.111900px;}
.x5_c00479{left:180.810000px;}
.x1_c00479{left:217.440000px;}
.x4_c00479{left:435.240000px;}
.x3_c00479{left:446.490000px;}
@media print{
.v2_c00479{vertical-align:-26.560000pt;}
.v0_c00479{vertical-align:0.000000pt;}
.v1_c00479{vertical-align:26.560000pt;}
.ls1b_c00479{letter-spacing:-0.243200pt;}
.ls16_c00479{letter-spacing:-0.134400pt;}
.ls1d_c00479{letter-spacing:-0.032000pt;}
.ls13_c00479{letter-spacing:-0.026720pt;}
.ls1c_c00479{letter-spacing:-0.025600pt;}
.ls17_c00479{letter-spacing:-0.019200pt;}
.ls1a_c00479{letter-spacing:-0.012800pt;}
.ls1f_c00479{letter-spacing:-0.008512pt;}
.ls19_c00479{letter-spacing:-0.006400pt;}
.ls14_c00479{letter-spacing:-0.005344pt;}
.ls1e_c00479{letter-spacing:-0.003456pt;}
.ls15_c00479{letter-spacing:0.000000pt;}
.ls4_c00479{letter-spacing:0.006400pt;}
.lsd_c00479{letter-spacing:0.008512pt;}
.ls8_c00479{letter-spacing:0.012768pt;}
.ls2_c00479{letter-spacing:0.012800pt;}
.lsb_c00479{letter-spacing:0.017024pt;}
.ls5_c00479{letter-spacing:0.019200pt;}
.lsf_c00479{letter-spacing:0.021280pt;}
.ls12_c00479{letter-spacing:0.025536pt;}
.ls3_c00479{letter-spacing:0.025600pt;}
.ls7_c00479{letter-spacing:0.029792pt;}
.lsc_c00479{letter-spacing:0.034048pt;}
.ls11_c00479{letter-spacing:0.038304pt;}
.lse_c00479{letter-spacing:0.042560pt;}
.lsa_c00479{letter-spacing:0.046816pt;}
.ls1_c00479{letter-spacing:0.048672pt;}
.ls6_c00479{letter-spacing:0.051200pt;}
.ls10_c00479{letter-spacing:0.059584pt;}
.ls0_c00479{letter-spacing:0.064000pt;}
.ls18_c00479{letter-spacing:0.083200pt;}
.ls9_c00479{letter-spacing:0.412480pt;}
.ws1_c00479{word-spacing:-16.025600pt;}
.ws2_c00479{word-spacing:-15.980800pt;}
.ws3_c00479{word-spacing:-9.604224pt;}
.ws0_c00479{word-spacing:-9.408672pt;}
.ws5_c00479{word-spacing:-0.235136pt;}
.ws4_c00479{word-spacing:-0.213760pt;}
.ws1c_c00479{word-spacing:-0.083200pt;}
.ws13_c00479{word-spacing:-0.076800pt;}
.ws1b_c00479{word-spacing:-0.032000pt;}
.ws3c_c00479{word-spacing:-0.025536pt;}
.ws40_c00479{word-spacing:-0.021280pt;}
.ws3d_c00479{word-spacing:-0.017024pt;}
.ws31_c00479{word-spacing:-0.012768pt;}
.ws41_c00479{word-spacing:-0.008512pt;}
.ws1a_c00479{word-spacing:-0.006400pt;}
.ws42_c00479{word-spacing:-0.004256pt;}
.ws6_c00479{word-spacing:0.000000pt;}
.ws3a_c00479{word-spacing:0.004256pt;}
.ws2b_c00479{word-spacing:0.006400pt;}
.ws43_c00479{word-spacing:0.025536pt;}
.ws12_c00479{word-spacing:0.057600pt;}
.wsd_c00479{word-spacing:0.064000pt;}
.wsa_c00479{word-spacing:0.230400pt;}
.ws9_c00479{word-spacing:0.256000pt;}
.ws25_c00479{word-spacing:0.320000pt;}
.ws3b_c00479{word-spacing:0.323456pt;}
.ws27_c00479{word-spacing:0.403200pt;}
.ws8_c00479{word-spacing:0.441600pt;}
.ws26_c00479{word-spacing:0.480000pt;}
.ws3f_c00479{word-spacing:0.595840pt;}
.ws2d_c00479{word-spacing:0.620800pt;}
.ws3e_c00479{word-spacing:0.634144pt;}
.ws2c_c00479{word-spacing:0.646400pt;}
.ws14_c00479{word-spacing:0.659200pt;}
.ws15_c00479{word-spacing:0.723200pt;}
.ws2e_c00479{word-spacing:0.864000pt;}
.ws17_c00479{word-spacing:0.960000pt;}
.ws16_c00479{word-spacing:0.972800pt;}
.ws7_c00479{word-spacing:1.299200pt;}
.ws21_c00479{word-spacing:1.625600pt;}
.ws35_c00479{word-spacing:2.208864pt;}
.ws10_c00479{word-spacing:2.220800pt;}
.ws38_c00479{word-spacing:2.225888pt;}
.ws36_c00479{word-spacing:2.238656pt;}
.ws33_c00479{word-spacing:2.239488pt;}
.ws32_c00479{word-spacing:2.242912pt;}
.ws11_c00479{word-spacing:2.252800pt;}
.ws37_c00479{word-spacing:2.540832pt;}
.ws34_c00479{word-spacing:2.562112pt;}
.ws39_c00479{word-spacing:2.566368pt;}
.ws1e_c00479{word-spacing:2.828800pt;}
.ws1d_c00479{word-spacing:2.905600pt;}
.ws2f_c00479{word-spacing:3.488000pt;}
.ws30_c00479{word-spacing:3.532800pt;}
.ws28_c00479{word-spacing:6.406400pt;}
.wsf_c00479{word-spacing:10.195200pt;}
.wse_c00479{word-spacing:10.310400pt;}
.wsc_c00479{word-spacing:12.147200pt;}
.wsb_c00479{word-spacing:12.166400pt;}
.ws24_c00479{word-spacing:13.068800pt;}
.ws23_c00479{word-spacing:13.113600pt;}
.ws19_c00479{word-spacing:13.760000pt;}
.ws18_c00479{word-spacing:13.785600pt;}
.ws20_c00479{word-spacing:14.099200pt;}
.ws1f_c00479{word-spacing:18.540800pt;}
.ws2a_c00479{word-spacing:21.747200pt;}
.ws29_c00479{word-spacing:21.772800pt;}
.ws22_c00479{word-spacing:32.025600pt;}
._1_c00479{margin-left:-1.612800pt;}
._0_c00479{width:0.935200pt;}
.fs5_c00479{font-size:34.560000pt;}
.fs3_c00479{font-size:37.440000pt;}
.fs4_c00479{font-size:42.560000pt;}
.fs2_c00479{font-size:48.000000pt;}
.fs0_c00479{font-size:53.440000pt;}
.fs1_c00479{font-size:64.000000pt;}
.y0_c00479{bottom:0.000000pt;}
.y3_c00479{bottom:51.067067pt;}
.y4_c00479{bottom:54.587067pt;}
.y28_c00479{bottom:78.428667pt;}
.y27_c00479{bottom:94.665307pt;}
.y26_c00479{bottom:110.992667pt;}
.y25_c00479{bottom:127.229307pt;}
.y24_c00479{bottom:139.465307pt;}
.y23_c00479{bottom:155.794427pt;}
.y22_c00479{bottom:172.031067pt;}
.y21_c00479{bottom:184.265307pt;}
.y20_c00479{bottom:200.587067pt;}
.y1f_c00479{bottom:214.107067pt;}
.y1e_c00479{bottom:232.507067pt;}
.y1d_c00479{bottom:250.827067pt;}
.y1c_c00479{bottom:270.587067pt;}
.y1b_c00479{bottom:301.147067pt;}
.y1a_c00479{bottom:339.787067pt;}
.y19_c00479{bottom:370.347067pt;}
.y18_c00479{bottom:400.987067pt;}
.y17_c00479{bottom:439.547067pt;}
.y16_c00479{bottom:470.187067pt;}
.y15_c00479{bottom:500.747067pt;}
.y14_c00479{bottom:531.387067pt;}
.y13_c00479{bottom:561.947067pt;}
.y12_c00479{bottom:592.587067pt;}
.y11_c00479{bottom:623.147067pt;}
.y10_c00479{bottom:653.787067pt;}
.yf_c00479{bottom:692.347200pt;}
.ye_c00479{bottom:722.987067pt;}
.yd_c00479{bottom:753.547067pt;}
.yc_c00479{bottom:784.187067pt;}
.yb_c00479{bottom:822.747067pt;}
.ya_c00479{bottom:853.387067pt;}
.y9_c00479{bottom:883.947067pt;}
.y8_c00479{bottom:922.587067pt;}
.y7_c00479{bottom:953.147067pt;}
.y6_c00479{bottom:983.787067pt;}
.y5_c00479{bottom:1014.347067pt;}
.y2_c00479{bottom:1045.707067pt;}
.y1_c00479{bottom:1063.947067pt;}
.h2_c00479{height:42.656250pt;}
.h7_c00479{height:44.388750pt;}
.h8_c00479{height:44.395790pt;}
.h1_c00479{height:44.724687pt;}
.h3_c00479{height:50.062500pt;}
.h4_c00479{height:53.562500pt;}
.h5_c00479{height:57.894063pt;}
.h6_c00479{height:57.894596pt;}
.h0_c00479{height:1122.666667pt;}
.w1_c00479{width:793.333333pt;}
.w0_c00479{width:793.626667pt;}
.x0_c00479{left:0.000000pt;}
.x2_c00479{left:113.440000pt;}
.x6_c00479{left:125.432800pt;}
.x5_c00479{left:160.720000pt;}
.x1_c00479{left:193.280000pt;}
.x4_c00479{left:386.880000pt;}
.x3_c00479{left:396.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_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_c8ceb21c17f65c65a7e6ddf6.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00480;src:url('chunks/assets/font_ba6a322d83a00bb60210fcd0.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00480;src:url('chunks/assets/font_b4ce035f055ba221bb1e7322.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;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_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);}
.v2_c00480{vertical-align:-15.120000px;}
.v0_c00480{vertical-align:0.000000px;}
.v1_c00480{vertical-align:15.840000px;}
.v3_c00480{vertical-align:29.880600px;}
.lsd_c00480{letter-spacing:-0.151200px;}
.ls17_c00480{letter-spacing:-0.036072px;}
.ls14_c00480{letter-spacing:-0.028800px;}
.lse_c00480{letter-spacing:-0.014400px;}
.ls19_c00480{letter-spacing:-0.009576px;}
.ls12_c00480{letter-spacing:-0.007200px;}
.ls16_c00480{letter-spacing:-0.006012px;}
.lsf_c00480{letter-spacing:0.000000px;}
.ls2_c00480{letter-spacing:0.007200px;}
.ls18_c00480{letter-spacing:0.014364px;}
.ls6_c00480{letter-spacing:0.014400px;}
.lsc_c00480{letter-spacing:0.019152px;}
.ls15_c00480{letter-spacing:0.021600px;}
.lsb_c00480{letter-spacing:0.023940px;}
.lsa_c00480{letter-spacing:0.028728px;}
.ls5_c00480{letter-spacing:0.028800px;}
.ls3_c00480{letter-spacing:0.030060px;}
.ls8_c00480{letter-spacing:0.042084px;}
.ls0_c00480{letter-spacing:0.048096px;}
.ls7_c00480{letter-spacing:0.054756px;}
.ls10_c00480{letter-spacing:0.064800px;}
.ls13_c00480{letter-spacing:0.093600px;}
.ls4_c00480{letter-spacing:0.136080px;}
.ls9_c00480{letter-spacing:0.153720px;}
.ls11_c00480{letter-spacing:0.168336px;}
.ls1_c00480{letter-spacing:1212.120000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00480{word-spacing:-10.584756px;}
.ws0_c00480{word-spacing:-9.856080px;}
.wsa_c00480{word-spacing:-0.078156px;}
.ws20_c00480{word-spacing:-0.009576px;}
.ws21_c00480{word-spacing:-0.004788px;}
.ws3_c00480{word-spacing:0.000000px;}
.ws23_c00480{word-spacing:0.004788px;}
.ws22_c00480{word-spacing:0.028728px;}
.ws2_c00480{word-spacing:0.042084px;}
.ws9_c00480{word-spacing:0.060120px;}
.wsf_c00480{word-spacing:0.064800px;}
.ws18_c00480{word-spacing:0.086400px;}
.ws1f_c00480{word-spacing:0.126252px;}
.ws12_c00480{word-spacing:1.425600px;}
.ws13_c00480{word-spacing:1.468800px;}
.ws1c_c00480{word-spacing:1.893780px;}
.ws17_c00480{word-spacing:2.152800px;}
.ws16_c00480{word-spacing:2.181600px;}
.wse_c00480{word-spacing:2.570400px;}
.ws1b_c00480{word-spacing:2.579148px;}
.ws11_c00480{word-spacing:2.865600px;}
.ws10_c00480{word-spacing:2.966400px;}
.ws14_c00480{word-spacing:3.607200px;}
.ws15_c00480{word-spacing:3.628800px;}
.ws8_c00480{word-spacing:5.335200px;}
.ws6_c00480{word-spacing:5.457600px;}
.ws7_c00480{word-spacing:5.479200px;}
.wsd_c00480{word-spacing:6.386400px;}
.ws5_c00480{word-spacing:6.465600px;}
.wsb_c00480{word-spacing:6.487200px;}
.ws4_c00480{word-spacing:6.494400px;}
.wsc_c00480{word-spacing:6.537600px;}
.ws1a_c00480{word-spacing:8.316000px;}
.ws19_c00480{word-spacing:8.330400px;}
.ws1e_c00480{word-spacing:10.484928px;}
.ws1d_c00480{word-spacing:10.502964px;}
._0_c00480{margin-left:-1.322640px;}
._1_c00480{width:1.022400px;}
.fc0_c00480{color:rgb(0,0,0);}
.fs3_c00480{font-size:38.880000px;}
.fs4_c00480{font-size:42.120000px;}
.fs5_c00480{font-size:47.880000px;}
.fs2_c00480{font-size:54.000000px;}
.fs0_c00480{font-size:60.120000px;}
.fs1_c00480{font-size:72.000000px;}
.y0_c00480{bottom:0.000000px;}
.y2_c00480{bottom:57.450450px;}
.y1b_c00480{bottom:88.232250px;}
.y1a_c00480{bottom:106.498470px;}
.y19_c00480{bottom:124.860450px;}
.y18_c00480{bottom:140.070450px;}
.y17_c00480{bottom:160.770450px;}
.y16_c00480{bottom:181.470450px;}
.y15_c00480{bottom:260.659470px;}
.y14_c00480{bottom:277.493070px;}
.y13_c00480{bottom:294.416850px;}
.y12_c00480{bottom:311.250450px;}
.y11_c00480{bottom:343.110600px;}
.y10_c00480{bottom:377.490600px;}
.yf_c00480{bottom:420.960450px;}
.ye_c00480{bottom:455.340450px;}
.yd_c00480{bottom:489.810450px;}
.yc_c00480{bottom:524.190450px;}
.yb_c00480{bottom:558.660450px;}
.ya_c00480{bottom:602.040450px;}
.y9_c00480{bottom:636.510450px;}
.y8_c00480{bottom:670.890450px;}
.y7_c00480{bottom:708.420450px;}
.y6_c00480{bottom:730.290450px;}
.y5_c00480{bottom:1072.290450px;}
.y4_c00480{bottom:1106.760450px;}
.y3_c00480{bottom:1141.140450px;}
.y1_c00480{bottom:1196.850450px;}
.h6_c00480{height:47.988281px;}
.h7_c00480{height:49.937344px;}
.h1_c00480{height:50.315273px;}
.h3_c00480{height:60.257812px;}
.h5_c00480{height:60.301733px;}
.h4_c00480{height:65.131420px;}
.h2_c00480{height:72.160312px;}
.h0_c00480{height:1263.000000px;}
.w1_c00480{width:892.500000px;}
.w0_c00480{width:892.830000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:127.620000px;}
.x4_c00480{left:180.810000px;}
.x3_c00480{left:261.270000px;}
.x2_c00480{left:655.110000px;}
@media print{
.v2_c00480{vertical-align:-13.440000pt;}
.v0_c00480{vertical-align:0.000000pt;}
.v1_c00480{vertical-align:14.080000pt;}
.v3_c00480{vertical-align:26.560533pt;}
.lsd_c00480{letter-spacing:-0.134400pt;}
.ls17_c00480{letter-spacing:-0.032064pt;}
.ls14_c00480{letter-spacing:-0.025600pt;}
.lse_c00480{letter-spacing:-0.012800pt;}
.ls19_c00480{letter-spacing:-0.008512pt;}
.ls12_c00480{letter-spacing:-0.006400pt;}
.ls16_c00480{letter-spacing:-0.005344pt;}
.lsf_c00480{letter-spacing:0.000000pt;}
.ls2_c00480{letter-spacing:0.006400pt;}
.ls18_c00480{letter-spacing:0.012768pt;}
.ls6_c00480{letter-spacing:0.012800pt;}
.lsc_c00480{letter-spacing:0.017024pt;}
.ls15_c00480{letter-spacing:0.019200pt;}
.lsb_c00480{letter-spacing:0.021280pt;}
.lsa_c00480{letter-spacing:0.025536pt;}
.ls5_c00480{letter-spacing:0.025600pt;}
.ls3_c00480{letter-spacing:0.026720pt;}
.ls8_c00480{letter-spacing:0.037408pt;}
.ls0_c00480{letter-spacing:0.042752pt;}
.ls7_c00480{letter-spacing:0.048672pt;}
.ls10_c00480{letter-spacing:0.057600pt;}
.ls13_c00480{letter-spacing:0.083200pt;}
.ls4_c00480{letter-spacing:0.120960pt;}
.ls9_c00480{letter-spacing:0.136640pt;}
.ls11_c00480{letter-spacing:0.149632pt;}
.ls1_c00480{letter-spacing:1077.440000pt;}
.ws1_c00480{word-spacing:-9.408672pt;}
.ws0_c00480{word-spacing:-8.760960pt;}
.wsa_c00480{word-spacing:-0.069472pt;}
.ws20_c00480{word-spacing:-0.008512pt;}
.ws21_c00480{word-spacing:-0.004256pt;}
.ws3_c00480{word-spacing:0.000000pt;}
.ws23_c00480{word-spacing:0.004256pt;}
.ws22_c00480{word-spacing:0.025536pt;}
.ws2_c00480{word-spacing:0.037408pt;}
.ws9_c00480{word-spacing:0.053440pt;}
.wsf_c00480{word-spacing:0.057600pt;}
.ws18_c00480{word-spacing:0.076800pt;}
.ws1f_c00480{word-spacing:0.112224pt;}
.ws12_c00480{word-spacing:1.267200pt;}
.ws13_c00480{word-spacing:1.305600pt;}
.ws1c_c00480{word-spacing:1.683360pt;}
.ws17_c00480{word-spacing:1.913600pt;}
.ws16_c00480{word-spacing:1.939200pt;}
.wse_c00480{word-spacing:2.284800pt;}
.ws1b_c00480{word-spacing:2.292576pt;}
.ws11_c00480{word-spacing:2.547200pt;}
.ws10_c00480{word-spacing:2.636800pt;}
.ws14_c00480{word-spacing:3.206400pt;}
.ws15_c00480{word-spacing:3.225600pt;}
.ws8_c00480{word-spacing:4.742400pt;}
.ws6_c00480{word-spacing:4.851200pt;}
.ws7_c00480{word-spacing:4.870400pt;}
.wsd_c00480{word-spacing:5.676800pt;}
.ws5_c00480{word-spacing:5.747200pt;}
.wsb_c00480{word-spacing:5.766400pt;}
.ws4_c00480{word-spacing:5.772800pt;}
.wsc_c00480{word-spacing:5.811200pt;}
.ws1a_c00480{word-spacing:7.392000pt;}
.ws19_c00480{word-spacing:7.404800pt;}
.ws1e_c00480{word-spacing:9.319936pt;}
.ws1d_c00480{word-spacing:9.335968pt;}
._0_c00480{margin-left:-1.175680pt;}
._1_c00480{width:0.908800pt;}
.fs3_c00480{font-size:34.560000pt;}
.fs4_c00480{font-size:37.440000pt;}
.fs5_c00480{font-size:42.560000pt;}
.fs2_c00480{font-size:48.000000pt;}
.fs0_c00480{font-size:53.440000pt;}
.fs1_c00480{font-size:64.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y2_c00480{bottom:51.067067pt;}
.y1b_c00480{bottom:78.428667pt;}
.y1a_c00480{bottom:94.665307pt;}
.y19_c00480{bottom:110.987067pt;}
.y18_c00480{bottom:124.507067pt;}
.y17_c00480{bottom:142.907067pt;}
.y16_c00480{bottom:161.307067pt;}
.y15_c00480{bottom:231.697307pt;}
.y14_c00480{bottom:246.660507pt;}
.y13_c00480{bottom:261.703867pt;}
.y12_c00480{bottom:276.667067pt;}
.y11_c00480{bottom:304.987200pt;}
.y10_c00480{bottom:335.547200pt;}
.yf_c00480{bottom:374.187067pt;}
.ye_c00480{bottom:404.747067pt;}
.yd_c00480{bottom:435.387067pt;}
.yc_c00480{bottom:465.947067pt;}
.yb_c00480{bottom:496.587067pt;}
.ya_c00480{bottom:535.147067pt;}
.y9_c00480{bottom:565.787067pt;}
.y8_c00480{bottom:596.347067pt;}
.y7_c00480{bottom:629.707067pt;}
.y6_c00480{bottom:649.147067pt;}
.y5_c00480{bottom:953.147067pt;}
.y4_c00480{bottom:983.787067pt;}
.y3_c00480{bottom:1014.347067pt;}
.y1_c00480{bottom:1063.867067pt;}
.h6_c00480{height:42.656250pt;}
.h7_c00480{height:44.388750pt;}
.h1_c00480{height:44.724687pt;}
.h3_c00480{height:53.562500pt;}
.h5_c00480{height:53.601540pt;}
.h4_c00480{height:57.894596pt;}
.h2_c00480{height:64.142500pt;}
.h0_c00480{height:1122.666667pt;}
.w1_c00480{width:793.333333pt;}
.w0_c00480{width:793.626667pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:113.440000pt;}
.x4_c00480{left:160.720000pt;}
.x3_c00480{left:232.240000pt;}
.x2_c00480{left:582.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8477a4fce9e55ad9768173af.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00481;src:url('chunks/assets/font_d7577c8436c97c8c5d98df32.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00481;src:url('chunks/assets/font_882ce65091e066c12fb17a65.woff2')format("woff");}.ff4_c00481{font-family:ff4_c00481;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_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);}
.v3_c00481{vertical-align:-14.760000px;}
.v0_c00481{vertical-align:0.000000px;}
.v2_c00481{vertical-align:15.149520px;}
.v1_c00481{vertical-align:29.880000px;}
.ls15_c00481{letter-spacing:-0.151200px;}
.ls1b_c00481{letter-spacing:-0.048096px;}
.ls1c_c00481{letter-spacing:-0.042084px;}
.ls12_c00481{letter-spacing:-0.030060px;}
.ls16_c00481{letter-spacing:-0.028800px;}
.ls19_c00481{letter-spacing:-0.021600px;}
.ls1a_c00481{letter-spacing:-0.014400px;}
.ls1e_c00481{letter-spacing:-0.009576px;}
.ls18_c00481{letter-spacing:-0.007200px;}
.ls13_c00481{letter-spacing:-0.006012px;}
.ls1d_c00481{letter-spacing:-0.003888px;}
.ls14_c00481{letter-spacing:0.000000px;}
.ls9_c00481{letter-spacing:0.007200px;}
.ls6_c00481{letter-spacing:0.012024px;}
.lsc_c00481{letter-spacing:0.014364px;}
.lsa_c00481{letter-spacing:0.014400px;}
.ls10_c00481{letter-spacing:0.019152px;}
.ls3_c00481{letter-spacing:0.021060px;}
.ls1_c00481{letter-spacing:0.021600px;}
.ls11_c00481{letter-spacing:0.023940px;}
.lsf_c00481{letter-spacing:0.028728px;}
.lsb_c00481{letter-spacing:0.036072px;}
.ls8_c00481{letter-spacing:0.043200px;}
.lse_c00481{letter-spacing:0.047880px;}
.ls5_c00481{letter-spacing:0.048096px;}
.ls0_c00481{letter-spacing:0.050400px;}
.ls4_c00481{letter-spacing:0.054108px;}
.ls2_c00481{letter-spacing:0.054756px;}
.ls17_c00481{letter-spacing:0.093600px;}
.ls7_c00481{letter-spacing:0.136080px;}
.lsd_c00481{letter-spacing:0.464040px;}
.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;}
}
.ws2_c00481{word-spacing:-10.804752px;}
.ws0_c00481{word-spacing:-10.584756px;}
.ws1_c00481{word-spacing:-9.856080px;}
.ws4_c00481{word-spacing:-0.264528px;}
.ws3_c00481{word-spacing:-0.240480px;}
.ws11_c00481{word-spacing:-0.109512px;}
.ws30_c00481{word-spacing:-0.028728px;}
.ws31_c00481{word-spacing:-0.009576px;}
.ws29_c00481{word-spacing:-0.007200px;}
.ws33_c00481{word-spacing:-0.004788px;}
.ws5_c00481{word-spacing:0.000000px;}
.ws2e_c00481{word-spacing:0.004788px;}
.ws32_c00481{word-spacing:0.028728px;}
.wsb_c00481{word-spacing:0.043200px;}
.ws10_c00481{word-spacing:0.050400px;}
.ws1b_c00481{word-spacing:0.078156px;}
.ws2d_c00481{word-spacing:0.096192px;}
.wsf_c00481{word-spacing:0.338400px;}
.ws2f_c00481{word-spacing:0.363888px;}
.wse_c00481{word-spacing:0.439200px;}
.ws17_c00481{word-spacing:1.472940px;}
.ws16_c00481{word-spacing:1.557108px;}
.ws2c_c00481{word-spacing:2.254500px;}
.ws2b_c00481{word-spacing:2.651292px;}
.ws7_c00481{word-spacing:2.829600px;}
.ws9_c00481{word-spacing:2.851200px;}
.ws8_c00481{word-spacing:2.858400px;}
.ws20_c00481{word-spacing:4.773600px;}
.ws1f_c00481{word-spacing:4.816800px;}
.ws1d_c00481{word-spacing:6.127200px;}
.ws1c_c00481{word-spacing:6.141600px;}
.ws1e_c00481{word-spacing:6.501600px;}
.ws28_c00481{word-spacing:7.243200px;}
.ws2a_c00481{word-spacing:7.971912px;}
.ws27_c00481{word-spacing:9.417600px;}
.ws26_c00481{word-spacing:9.525600px;}
.ws19_c00481{word-spacing:10.839636px;}
.ws1a_c00481{word-spacing:10.935828px;}
.ws18_c00481{word-spacing:11.248452px;}
.ws23_c00481{word-spacing:13.348800px;}
.wsa_c00481{word-spacing:16.228800px;}
.ws22_c00481{word-spacing:17.287200px;}
.ws21_c00481{word-spacing:17.294400px;}
.ws14_c00481{word-spacing:17.589600px;}
.ws15_c00481{word-spacing:17.647200px;}
.ws25_c00481{word-spacing:17.654400px;}
.ws24_c00481{word-spacing:17.712000px;}
.ws12_c00481{word-spacing:18.360000px;}
.ws13_c00481{word-spacing:18.410400px;}
.ws6_c00481{word-spacing:20.901600px;}
.wsd_c00481{word-spacing:21.175200px;}
.wsc_c00481{word-spacing:21.247200px;}
._1_c00481{margin-left:-1.118232px;}
._0_c00481{width:1.052100px;}
.fc0_c00481{color:rgb(0,0,0);}
.fs4_c00481{font-size:38.880000px;}
.fs3_c00481{font-size:42.120000px;}
.fs5_c00481{font-size:47.880000px;}
.fs2_c00481{font-size:54.000000px;}
.fs0_c00481{font-size:60.120000px;}
.fs1_c00481{font-size:72.000000px;}
.y0_c00481{bottom:0.000000px;}
.y3_c00481{bottom:57.450450px;}
.y4_c00481{bottom:61.410450px;}
.y27_c00481{bottom:88.239810px;}
.y26_c00481{bottom:106.506030px;}
.y25_c00481{bottom:124.868010px;}
.y24_c00481{bottom:143.134230px;}
.y23_c00481{bottom:161.400450px;}
.y22_c00481{bottom:176.610450px;}
.y21_c00481{bottom:197.310450px;}
.y20_c00481{bottom:218.010450px;}
.y1f_c00481{bottom:264.443070px;}
.y1e_c00481{bottom:281.366850px;}
.y1d_c00481{bottom:298.200450px;}
.y1c_c00481{bottom:339.060450px;}
.y1b_c00481{bottom:373.440450px;}
.y1a_c00481{bottom:407.910450px;}
.y19_c00481{bottom:442.290450px;}
.y18_c00481{bottom:485.760450px;}
.y17_c00481{bottom:520.140450px;}
.y16_c00481{bottom:554.610450px;}
.y15_c00481{bottom:588.990450px;}
.y14_c00481{bottom:632.460450px;}
.y13_c00481{bottom:666.840450px;}
.y12_c00481{bottom:701.310450px;}
.y11_c00481{bottom:738.743070px;}
.y10_c00481{bottom:755.666850px;}
.yf_c00481{bottom:772.500450px;}
.ye_c00481{bottom:813.360450px;}
.yd_c00481{bottom:847.740450px;}
.yc_c00481{bottom:882.210450px;}
.yb_c00481{bottom:925.590450px;}
.ya_c00481{bottom:960.060450px;}
.y9_c00481{bottom:994.440450px;}
.y8_c00481{bottom:1037.910450px;}
.y7_c00481{bottom:1072.290450px;}
.y6_c00481{bottom:1106.760450px;}
.y5_c00481{bottom:1141.140450px;}
.y2_c00481{bottom:1176.420450px;}
.y1_c00481{bottom:1196.940450px;}
.h2_c00481{height:47.988281px;}
.h8_c00481{height:49.937344px;}
.h1_c00481{height:50.315273px;}
.h3_c00481{height:56.320312px;}
.h4_c00481{height:60.257812px;}
.h6_c00481{height:60.287333px;}
.h5_c00481{height:65.130820px;}
.h7_c00481{height:65.160340px;}
.h0_c00481{height:1263.000000px;}
.w1_c00481{width:892.500000px;}
.w0_c00481{width:892.830000px;}
.x0_c00481{left:0.000000px;}
.x2_c00481{left:127.620000px;}
.x5_c00481{left:180.810000px;}
.x1_c00481{left:217.440000px;}
.x4_c00481{left:435.240000px;}
.x3_c00481{left:446.490000px;}
@media print{
.v3_c00481{vertical-align:-13.120000pt;}
.v0_c00481{vertical-align:0.000000pt;}
.v2_c00481{vertical-align:13.466240pt;}
.v1_c00481{vertical-align:26.560000pt;}
.ls15_c00481{letter-spacing:-0.134400pt;}
.ls1b_c00481{letter-spacing:-0.042752pt;}
.ls1c_c00481{letter-spacing:-0.037408pt;}
.ls12_c00481{letter-spacing:-0.026720pt;}
.ls16_c00481{letter-spacing:-0.025600pt;}
.ls19_c00481{letter-spacing:-0.019200pt;}
.ls1a_c00481{letter-spacing:-0.012800pt;}
.ls1e_c00481{letter-spacing:-0.008512pt;}
.ls18_c00481{letter-spacing:-0.006400pt;}
.ls13_c00481{letter-spacing:-0.005344pt;}
.ls1d_c00481{letter-spacing:-0.003456pt;}
.ls14_c00481{letter-spacing:0.000000pt;}
.ls9_c00481{letter-spacing:0.006400pt;}
.ls6_c00481{letter-spacing:0.010688pt;}
.lsc_c00481{letter-spacing:0.012768pt;}
.lsa_c00481{letter-spacing:0.012800pt;}
.ls10_c00481{letter-spacing:0.017024pt;}
.ls3_c00481{letter-spacing:0.018720pt;}
.ls1_c00481{letter-spacing:0.019200pt;}
.ls11_c00481{letter-spacing:0.021280pt;}
.lsf_c00481{letter-spacing:0.025536pt;}
.lsb_c00481{letter-spacing:0.032064pt;}
.ls8_c00481{letter-spacing:0.038400pt;}
.lse_c00481{letter-spacing:0.042560pt;}
.ls5_c00481{letter-spacing:0.042752pt;}
.ls0_c00481{letter-spacing:0.044800pt;}
.ls4_c00481{letter-spacing:0.048096pt;}
.ls2_c00481{letter-spacing:0.048672pt;}
.ls17_c00481{letter-spacing:0.083200pt;}
.ls7_c00481{letter-spacing:0.120960pt;}
.lsd_c00481{letter-spacing:0.412480pt;}
.ws2_c00481{word-spacing:-9.604224pt;}
.ws0_c00481{word-spacing:-9.408672pt;}
.ws1_c00481{word-spacing:-8.760960pt;}
.ws4_c00481{word-spacing:-0.235136pt;}
.ws3_c00481{word-spacing:-0.213760pt;}
.ws11_c00481{word-spacing:-0.097344pt;}
.ws30_c00481{word-spacing:-0.025536pt;}
.ws31_c00481{word-spacing:-0.008512pt;}
.ws29_c00481{word-spacing:-0.006400pt;}
.ws33_c00481{word-spacing:-0.004256pt;}
.ws5_c00481{word-spacing:0.000000pt;}
.ws2e_c00481{word-spacing:0.004256pt;}
.ws32_c00481{word-spacing:0.025536pt;}
.wsb_c00481{word-spacing:0.038400pt;}
.ws10_c00481{word-spacing:0.044800pt;}
.ws1b_c00481{word-spacing:0.069472pt;}
.ws2d_c00481{word-spacing:0.085504pt;}
.wsf_c00481{word-spacing:0.300800pt;}
.ws2f_c00481{word-spacing:0.323456pt;}
.wse_c00481{word-spacing:0.390400pt;}
.ws17_c00481{word-spacing:1.309280pt;}
.ws16_c00481{word-spacing:1.384096pt;}
.ws2c_c00481{word-spacing:2.004000pt;}
.ws2b_c00481{word-spacing:2.356704pt;}
.ws7_c00481{word-spacing:2.515200pt;}
.ws9_c00481{word-spacing:2.534400pt;}
.ws8_c00481{word-spacing:2.540800pt;}
.ws20_c00481{word-spacing:4.243200pt;}
.ws1f_c00481{word-spacing:4.281600pt;}
.ws1d_c00481{word-spacing:5.446400pt;}
.ws1c_c00481{word-spacing:5.459200pt;}
.ws1e_c00481{word-spacing:5.779200pt;}
.ws28_c00481{word-spacing:6.438400pt;}
.ws2a_c00481{word-spacing:7.086144pt;}
.ws27_c00481{word-spacing:8.371200pt;}
.ws26_c00481{word-spacing:8.467200pt;}
.ws19_c00481{word-spacing:9.635232pt;}
.ws1a_c00481{word-spacing:9.720736pt;}
.ws18_c00481{word-spacing:9.998624pt;}
.ws23_c00481{word-spacing:11.865600pt;}
.wsa_c00481{word-spacing:14.425600pt;}
.ws22_c00481{word-spacing:15.366400pt;}
.ws21_c00481{word-spacing:15.372800pt;}
.ws14_c00481{word-spacing:15.635200pt;}
.ws15_c00481{word-spacing:15.686400pt;}
.ws25_c00481{word-spacing:15.692800pt;}
.ws24_c00481{word-spacing:15.744000pt;}
.ws12_c00481{word-spacing:16.320000pt;}
.ws13_c00481{word-spacing:16.364800pt;}
.ws6_c00481{word-spacing:18.579200pt;}
.wsd_c00481{word-spacing:18.822400pt;}
.wsc_c00481{word-spacing:18.886400pt;}
._1_c00481{margin-left:-0.993984pt;}
._0_c00481{width:0.935200pt;}
.fs4_c00481{font-size:34.560000pt;}
.fs3_c00481{font-size:37.440000pt;}
.fs5_c00481{font-size:42.560000pt;}
.fs2_c00481{font-size:48.000000pt;}
.fs0_c00481{font-size:53.440000pt;}
.fs1_c00481{font-size:64.000000pt;}
.y0_c00481{bottom:0.000000pt;}
.y3_c00481{bottom:51.067067pt;}
.y4_c00481{bottom:54.587067pt;}
.y27_c00481{bottom:78.435387pt;}
.y26_c00481{bottom:94.672027pt;}
.y25_c00481{bottom:110.993787pt;}
.y24_c00481{bottom:127.230427pt;}
.y23_c00481{bottom:143.467067pt;}
.y22_c00481{bottom:156.987067pt;}
.y21_c00481{bottom:175.387067pt;}
.y20_c00481{bottom:193.787067pt;}
.y1f_c00481{bottom:235.060507pt;}
.y1e_c00481{bottom:250.103867pt;}
.y1d_c00481{bottom:265.067067pt;}
.y1c_c00481{bottom:301.387067pt;}
.y1b_c00481{bottom:331.947067pt;}
.y1a_c00481{bottom:362.587067pt;}
.y19_c00481{bottom:393.147067pt;}
.y18_c00481{bottom:431.787067pt;}
.y17_c00481{bottom:462.347067pt;}
.y16_c00481{bottom:492.987067pt;}
.y15_c00481{bottom:523.547067pt;}
.y14_c00481{bottom:562.187067pt;}
.y13_c00481{bottom:592.747067pt;}
.y12_c00481{bottom:623.387067pt;}
.y11_c00481{bottom:656.660507pt;}
.y10_c00481{bottom:671.703867pt;}
.yf_c00481{bottom:686.667067pt;}
.ye_c00481{bottom:722.987067pt;}
.yd_c00481{bottom:753.547067pt;}
.yc_c00481{bottom:784.187067pt;}
.yb_c00481{bottom:822.747067pt;}
.ya_c00481{bottom:853.387067pt;}
.y9_c00481{bottom:883.947067pt;}
.y8_c00481{bottom:922.587067pt;}
.y7_c00481{bottom:953.147067pt;}
.y6_c00481{bottom:983.787067pt;}
.y5_c00481{bottom:1014.347067pt;}
.y2_c00481{bottom:1045.707067pt;}
.y1_c00481{bottom:1063.947067pt;}
.h2_c00481{height:42.656250pt;}
.h8_c00481{height:44.388750pt;}
.h1_c00481{height:44.724687pt;}
.h3_c00481{height:50.062500pt;}
.h4_c00481{height:53.562500pt;}
.h6_c00481{height:53.588740pt;}
.h5_c00481{height:57.894063pt;}
.h7_c00481{height:57.920302pt;}
.h0_c00481{height:1122.666667pt;}
.w1_c00481{width:793.333333pt;}
.w0_c00481{width:793.626667pt;}
.x0_c00481{left:0.000000pt;}
.x2_c00481{left:113.440000pt;}
.x5_c00481{left:160.720000pt;}
.x1_c00481{left:193.280000pt;}
.x4_c00481{left:386.880000pt;}
.x3_c00481{left:396.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_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_4365d6ddcb8d229c1c867d11.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00482;src:url('chunks/assets/font_31f19ba9608a4df922242a5b.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00482;src:url('chunks/assets/font_e8558ab22487013db0ed8423.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;line-height:1.102051;font-style:normal;font-weight:normal;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_a80c59127adf6f7710f9c0f0.woff2')format("woff");}.ff5_c00482{font-family:ff5_c00482;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00482;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00482{font-family:ff6_c00482;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00482;src:url('chunks/assets/font_6cf522d5cebef721600e1d41.woff2')format("woff");}.ff7_c00482{font-family:ff7_c00482;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_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;}
.v1_c00482{vertical-align:15.840000px;}
.v2_c00482{vertical-align:29.880000px;}
.ls12_c00482{letter-spacing:-0.151200px;}
.ls18_c00482{letter-spacing:-0.050400px;}
.ls19_c00482{letter-spacing:-0.036000px;}
.ls17_c00482{letter-spacing:-0.028800px;}
.ls1a_c00482{letter-spacing:-0.021600px;}
.ls14_c00482{letter-spacing:-0.014400px;}
.ls1b_c00482{letter-spacing:-0.009576px;}
.ls16_c00482{letter-spacing:-0.007200px;}
.ls13_c00482{letter-spacing:0.000000px;}
.ls2_c00482{letter-spacing:0.007200px;}
.ls10_c00482{letter-spacing:0.014364px;}
.ls9_c00482{letter-spacing:0.019152px;}
.ls6_c00482{letter-spacing:0.021600px;}
.lse_c00482{letter-spacing:0.023940px;}
.lsf_c00482{letter-spacing:0.028728px;}
.ls7_c00482{letter-spacing:0.028800px;}
.ls4_c00482{letter-spacing:0.031248px;}
.lsa_c00482{letter-spacing:0.033516px;}
.ls8_c00482{letter-spacing:0.036000px;}
.lsb_c00482{letter-spacing:0.038304px;}
.lsc_c00482{letter-spacing:0.043092px;}
.lsd_c00482{letter-spacing:0.047880px;}
.ls0_c00482{letter-spacing:0.048096px;}
.ls11_c00482{letter-spacing:0.052668px;}
.ls3_c00482{letter-spacing:0.054756px;}
.ls15_c00482{letter-spacing:0.093600px;}
.ls5_c00482{letter-spacing:26.560800px;}
.ls1_c00482{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00482{word-spacing:-19.561248px;}
.ws0_c00482{word-spacing:-18.007200px;}
.ws3_c00482{word-spacing:-17.971200px;}
.ws4_c00482{word-spacing:-17.964000px;}
.ws5_c00482{word-spacing:-17.949600px;}
.ws1_c00482{word-spacing:-10.584756px;}
.wsa_c00482{word-spacing:-0.093744px;}
.ws19_c00482{word-spacing:-0.093600px;}
.ws35_c00482{word-spacing:-0.019152px;}
.ws20_c00482{word-spacing:-0.014364px;}
.ws7_c00482{word-spacing:0.000000px;}
.ws9_c00482{word-spacing:0.014400px;}
.ws1f_c00482{word-spacing:0.028728px;}
.ws6_c00482{word-spacing:0.042084px;}
.ws2d_c00482{word-spacing:0.339948px;}
.ws2e_c00482{word-spacing:0.354312px;}
.ws10_c00482{word-spacing:0.374400px;}
.ws24_c00482{word-spacing:0.694260px;}
.ws25_c00482{word-spacing:0.699048px;}
.ws13_c00482{word-spacing:0.741600px;}
.ws2b_c00482{word-spacing:1.043784px;}
.ws1e_c00482{word-spacing:1.044000px;}
.ws1c_c00482{word-spacing:1.051200px;}
.ws31_c00482{word-spacing:1.062936px;}
.ws2c_c00482{word-spacing:1.072512px;}
.ws1d_c00482{word-spacing:1.116000px;}
.ws29_c00482{word-spacing:1.422036px;}
.ws2a_c00482{word-spacing:1.441188px;}
.ws21_c00482{word-spacing:1.776348px;}
.ws33_c00482{word-spacing:2.145024px;}
.ws2f_c00482{word-spacing:3.222324px;}
.ws30_c00482{word-spacing:3.231900px;}
.ws22_c00482{word-spacing:3.581424px;}
.ws32_c00482{word-spacing:3.586212px;}
.ws23_c00482{word-spacing:3.595788px;}
.ws15_c00482{word-spacing:3.952800px;}
.wsd_c00482{word-spacing:3.967200px;}
.ws14_c00482{word-spacing:3.981600px;}
.wse_c00482{word-spacing:4.010400px;}
.ws16_c00482{word-spacing:4.104000px;}
.ws26_c00482{word-spacing:4.313988px;}
.ws36_c00482{word-spacing:4.658724px;}
.ws37_c00482{word-spacing:4.668300px;}
.ws27_c00482{word-spacing:5.008248px;}
.ws28_c00482{word-spacing:5.027400px;}
.ws1b_c00482{word-spacing:6.184800px;}
.ws1a_c00482{word-spacing:6.199200px;}
.ws34_c00482{word-spacing:7.191576px;}
.ws38_c00482{word-spacing:10.773000px;}
.ws39_c00482{word-spacing:10.782576px;}
.ws8_c00482{word-spacing:12.960000px;}
.ws11_c00482{word-spacing:14.774400px;}
.ws12_c00482{word-spacing:14.846400px;}
.wsf_c00482{word-spacing:15.883200px;}
.wsb_c00482{word-spacing:16.596000px;}
.wsc_c00482{word-spacing:22.334400px;}
.ws17_c00482{word-spacing:25.200000px;}
.ws18_c00482{word-spacing:25.322400px;}
._0_c00482{margin-left:-1.322640px;}
._1_c00482{width:1.224000px;}
.fc0_c00482{color:rgb(0,0,0);}
.fs3_c00482{font-size:42.120000px;}
.fs5_c00482{font-size:47.880000px;}
.fs2_c00482{font-size:54.000000px;}
.fs0_c00482{font-size:60.120000px;}
.fs1_c00482{font-size:72.000000px;}
.fs4_c00482{font-size:78.120000px;}
.y0_c00482{bottom:0.000000px;}
.y2_c00482{bottom:57.450450px;}
.y2d_c00482{bottom:83.781030px;}
.y2c_c00482{bottom:97.546530px;}
.y2b_c00482{bottom:111.407790px;}
.y2a_c00482{bottom:129.674010px;}
.y29_c00482{bottom:143.439510px;}
.y28_c00482{bottom:157.300770px;}
.y27_c00482{bottom:171.066270px;}
.y26_c00482{bottom:184.831770px;}
.y25_c00482{bottom:198.693030px;}
.y24_c00482{bottom:212.458530px;}
.y23_c00482{bottom:226.224030px;}
.y22_c00482{bottom:240.085290px;}
.y21_c00482{bottom:253.850790px;}
.y20_c00482{bottom:267.616290px;}
.y1f_c00482{bottom:281.381790px;}
.y1e_c00482{bottom:295.243050px;}
.y1d_c00482{bottom:309.008550px;}
.y1c_c00482{bottom:322.774050px;}
.y1b_c00482{bottom:341.136030px;}
.y1a_c00482{bottom:359.402250px;}
.y19_c00482{bottom:377.668470px;}
.y18_c00482{bottom:396.030450px;}
.y17_c00482{bottom:411.240450px;}
.y16_c00482{bottom:431.940450px;}
.y15_c00482{bottom:452.640450px;}
.y14_c00482{bottom:490.080450px;}
.y13_c00482{bottom:524.460450px;}
.y12_c00482{bottom:567.930450px;}
.y11_c00482{bottom:602.310450px;}
.y10_c00482{bottom:636.780450px;}
.yf_c00482{bottom:671.160450px;}
.ye_c00482{bottom:705.630450px;}
.yd_c00482{bottom:749.010450px;}
.yc_c00482{bottom:783.480450px;}
.yb_c00482{bottom:817.860450px;}
.ya_c00482{bottom:852.330450px;}
.y9_c00482{bottom:895.710450px;}
.y8_c00482{bottom:930.180450px;}
.y7_c00482{bottom:964.560450px;}
.y6_c00482{bottom:999.030450px;}
.y5_c00482{bottom:1044.030450px;}
.y4_c00482{bottom:1106.760450px;}
.y3_c00482{bottom:1141.140450px;}
.y1_c00482{bottom:1196.850450px;}
.h6_c00482{height:47.988281px;}
.h7_c00482{height:49.937344px;}
.h1_c00482{height:50.315273px;}
.h3_c00482{height:60.257812px;}
.h4_c00482{height:65.130820px;}
.h2_c00482{height:72.160312px;}
.h5_c00482{height:81.476719px;}
.h0_c00482{height:1263.000000px;}
.w1_c00482{width:892.500000px;}
.w0_c00482{width:892.830000px;}
.x0_c00482{left:0.000000px;}
.x1_c00482{left:127.620000px;}
.x3_c00482{left:141.122160px;}
.x2_c00482{left:180.720000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.v1_c00482{vertical-align:14.080000pt;}
.v2_c00482{vertical-align:26.560000pt;}
.ls12_c00482{letter-spacing:-0.134400pt;}
.ls18_c00482{letter-spacing:-0.044800pt;}
.ls19_c00482{letter-spacing:-0.032000pt;}
.ls17_c00482{letter-spacing:-0.025600pt;}
.ls1a_c00482{letter-spacing:-0.019200pt;}
.ls14_c00482{letter-spacing:-0.012800pt;}
.ls1b_c00482{letter-spacing:-0.008512pt;}
.ls16_c00482{letter-spacing:-0.006400pt;}
.ls13_c00482{letter-spacing:0.000000pt;}
.ls2_c00482{letter-spacing:0.006400pt;}
.ls10_c00482{letter-spacing:0.012768pt;}
.ls9_c00482{letter-spacing:0.017024pt;}
.ls6_c00482{letter-spacing:0.019200pt;}
.lse_c00482{letter-spacing:0.021280pt;}
.lsf_c00482{letter-spacing:0.025536pt;}
.ls7_c00482{letter-spacing:0.025600pt;}
.ls4_c00482{letter-spacing:0.027776pt;}
.lsa_c00482{letter-spacing:0.029792pt;}
.ls8_c00482{letter-spacing:0.032000pt;}
.lsb_c00482{letter-spacing:0.034048pt;}
.lsc_c00482{letter-spacing:0.038304pt;}
.lsd_c00482{letter-spacing:0.042560pt;}
.ls0_c00482{letter-spacing:0.042752pt;}
.ls11_c00482{letter-spacing:0.046816pt;}
.ls3_c00482{letter-spacing:0.048672pt;}
.ls15_c00482{letter-spacing:0.083200pt;}
.ls5_c00482{letter-spacing:23.609600pt;}
.ls1_c00482{letter-spacing:1077.440000pt;}
.ws2_c00482{word-spacing:-17.387776pt;}
.ws0_c00482{word-spacing:-16.006400pt;}
.ws3_c00482{word-spacing:-15.974400pt;}
.ws4_c00482{word-spacing:-15.968000pt;}
.ws5_c00482{word-spacing:-15.955200pt;}
.ws1_c00482{word-spacing:-9.408672pt;}
.wsa_c00482{word-spacing:-0.083328pt;}
.ws19_c00482{word-spacing:-0.083200pt;}
.ws35_c00482{word-spacing:-0.017024pt;}
.ws20_c00482{word-spacing:-0.012768pt;}
.ws7_c00482{word-spacing:0.000000pt;}
.ws9_c00482{word-spacing:0.012800pt;}
.ws1f_c00482{word-spacing:0.025536pt;}
.ws6_c00482{word-spacing:0.037408pt;}
.ws2d_c00482{word-spacing:0.302176pt;}
.ws2e_c00482{word-spacing:0.314944pt;}
.ws10_c00482{word-spacing:0.332800pt;}
.ws24_c00482{word-spacing:0.617120pt;}
.ws25_c00482{word-spacing:0.621376pt;}
.ws13_c00482{word-spacing:0.659200pt;}
.ws2b_c00482{word-spacing:0.927808pt;}
.ws1e_c00482{word-spacing:0.928000pt;}
.ws1c_c00482{word-spacing:0.934400pt;}
.ws31_c00482{word-spacing:0.944832pt;}
.ws2c_c00482{word-spacing:0.953344pt;}
.ws1d_c00482{word-spacing:0.992000pt;}
.ws29_c00482{word-spacing:1.264032pt;}
.ws2a_c00482{word-spacing:1.281056pt;}
.ws21_c00482{word-spacing:1.578976pt;}
.ws33_c00482{word-spacing:1.906688pt;}
.ws2f_c00482{word-spacing:2.864288pt;}
.ws30_c00482{word-spacing:2.872800pt;}
.ws22_c00482{word-spacing:3.183488pt;}
.ws32_c00482{word-spacing:3.187744pt;}
.ws23_c00482{word-spacing:3.196256pt;}
.ws15_c00482{word-spacing:3.513600pt;}
.wsd_c00482{word-spacing:3.526400pt;}
.ws14_c00482{word-spacing:3.539200pt;}
.wse_c00482{word-spacing:3.564800pt;}
.ws16_c00482{word-spacing:3.648000pt;}
.ws26_c00482{word-spacing:3.834656pt;}
.ws36_c00482{word-spacing:4.141088pt;}
.ws37_c00482{word-spacing:4.149600pt;}
.ws27_c00482{word-spacing:4.451776pt;}
.ws28_c00482{word-spacing:4.468800pt;}
.ws1b_c00482{word-spacing:5.497600pt;}
.ws1a_c00482{word-spacing:5.510400pt;}
.ws34_c00482{word-spacing:6.392512pt;}
.ws38_c00482{word-spacing:9.576000pt;}
.ws39_c00482{word-spacing:9.584512pt;}
.ws8_c00482{word-spacing:11.520000pt;}
.ws11_c00482{word-spacing:13.132800pt;}
.ws12_c00482{word-spacing:13.196800pt;}
.wsf_c00482{word-spacing:14.118400pt;}
.wsb_c00482{word-spacing:14.752000pt;}
.wsc_c00482{word-spacing:19.852800pt;}
.ws17_c00482{word-spacing:22.400000pt;}
.ws18_c00482{word-spacing:22.508800pt;}
._0_c00482{margin-left:-1.175680pt;}
._1_c00482{width:1.088000pt;}
.fs3_c00482{font-size:37.440000pt;}
.fs5_c00482{font-size:42.560000pt;}
.fs2_c00482{font-size:48.000000pt;}
.fs0_c00482{font-size:53.440000pt;}
.fs1_c00482{font-size:64.000000pt;}
.fs4_c00482{font-size:69.440000pt;}
.y0_c00482{bottom:0.000000pt;}
.y2_c00482{bottom:51.067067pt;}
.y2d_c00482{bottom:74.472027pt;}
.y2c_c00482{bottom:86.708027pt;}
.y2b_c00482{bottom:99.029147pt;}
.y2a_c00482{bottom:115.265787pt;}
.y29_c00482{bottom:127.501787pt;}
.y28_c00482{bottom:139.822907pt;}
.y27_c00482{bottom:152.058907pt;}
.y26_c00482{bottom:164.294907pt;}
.y25_c00482{bottom:176.616027pt;}
.y24_c00482{bottom:188.852027pt;}
.y23_c00482{bottom:201.088027pt;}
.y22_c00482{bottom:213.409147pt;}
.y21_c00482{bottom:225.645147pt;}
.y20_c00482{bottom:237.881147pt;}
.y1f_c00482{bottom:250.117147pt;}
.y1e_c00482{bottom:262.438267pt;}
.y1d_c00482{bottom:274.674267pt;}
.y1c_c00482{bottom:286.910267pt;}
.y1b_c00482{bottom:303.232027pt;}
.y1a_c00482{bottom:319.468667pt;}
.y19_c00482{bottom:335.705307pt;}
.y18_c00482{bottom:352.027067pt;}
.y17_c00482{bottom:365.547067pt;}
.y16_c00482{bottom:383.947067pt;}
.y15_c00482{bottom:402.347067pt;}
.y14_c00482{bottom:435.627067pt;}
.y13_c00482{bottom:466.187067pt;}
.y12_c00482{bottom:504.827067pt;}
.y11_c00482{bottom:535.387067pt;}
.y10_c00482{bottom:566.027067pt;}
.yf_c00482{bottom:596.587067pt;}
.ye_c00482{bottom:627.227067pt;}
.yd_c00482{bottom:665.787067pt;}
.yc_c00482{bottom:696.427067pt;}
.yb_c00482{bottom:726.987067pt;}
.ya_c00482{bottom:757.627067pt;}
.y9_c00482{bottom:796.187067pt;}
.y8_c00482{bottom:826.827067pt;}
.y7_c00482{bottom:857.387067pt;}
.y6_c00482{bottom:888.027067pt;}
.y5_c00482{bottom:928.027067pt;}
.y4_c00482{bottom:983.787067pt;}
.y3_c00482{bottom:1014.347067pt;}
.y1_c00482{bottom:1063.867067pt;}
.h6_c00482{height:42.656250pt;}
.h7_c00482{height:44.388750pt;}
.h1_c00482{height:44.724687pt;}
.h3_c00482{height:53.562500pt;}
.h4_c00482{height:57.894063pt;}
.h2_c00482{height:64.142500pt;}
.h5_c00482{height:72.423750pt;}
.h0_c00482{height:1122.666667pt;}
.w1_c00482{width:793.333333pt;}
.w0_c00482{width:793.626667pt;}
.x0_c00482{left:0.000000pt;}
.x1_c00482{left:113.440000pt;}
.x3_c00482{left:125.441920pt;}
.x2_c00482{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_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_df4ab9fb703e2fa74755e598.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_f39f0c651a0c35953dc97f4a.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;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_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);}
.v3_c00483{vertical-align:-60.840000px;}
.v0_c00483{vertical-align:0.000000px;}
.v1_c00483{vertical-align:15.206040px;}
.v2_c00483{vertical-align:29.880000px;}
.ls19_c00483{letter-spacing:-0.151200px;}
.ls22_c00483{letter-spacing:-0.115200px;}
.ls1c_c00483{letter-spacing:-0.060120px;}
.ls16_c00483{letter-spacing:-0.030060px;}
.ls1d_c00483{letter-spacing:-0.024048px;}
.ls23_c00483{letter-spacing:-0.021600px;}
.ls1f_c00483{letter-spacing:-0.018036px;}
.ls21_c00483{letter-spacing:-0.014400px;}
.ls1e_c00483{letter-spacing:-0.012024px;}
.ls1b_c00483{letter-spacing:-0.007200px;}
.ls17_c00483{letter-spacing:-0.006012px;}
.ls18_c00483{letter-spacing:0.000000px;}
.ls8_c00483{letter-spacing:0.006012px;}
.ls1_c00483{letter-spacing:0.007200px;}
.ls4_c00483{letter-spacing:0.012024px;}
.ls2_c00483{letter-spacing:0.014400px;}
.ls15_c00483{letter-spacing:0.019152px;}
.ls24_c00483{letter-spacing:0.021600px;}
.ls13_c00483{letter-spacing:0.023940px;}
.ls14_c00483{letter-spacing:0.028728px;}
.ls0_c00483{letter-spacing:0.028800px;}
.lsb_c00483{letter-spacing:0.030060px;}
.lse_c00483{letter-spacing:0.033516px;}
.lsc_c00483{letter-spacing:0.036072px;}
.ls11_c00483{letter-spacing:0.038304px;}
.lsf_c00483{letter-spacing:0.043092px;}
.ls1a_c00483{letter-spacing:0.043200px;}
.ls10_c00483{letter-spacing:0.047880px;}
.ls3_c00483{letter-spacing:0.048096px;}
.ls12_c00483{letter-spacing:0.052668px;}
.ls7_c00483{letter-spacing:0.054756px;}
.ls5_c00483{letter-spacing:0.066132px;}
.ls9_c00483{letter-spacing:0.072144px;}
.lsa_c00483{letter-spacing:0.102204px;}
.ls6_c00483{letter-spacing:0.136080px;}
.ls20_c00483{letter-spacing:0.168336px;}
.ls25_c00483{letter-spacing:4.052088px;}
.lsd_c00483{letter-spacing:36.000000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00483{word-spacing:-15.060060px;}
.ws1_c00483{word-spacing:-10.584756px;}
.ws0_c00483{word-spacing:-9.856080px;}
.ws4_c00483{word-spacing:-0.264528px;}
.ws3_c00483{word-spacing:-0.240480px;}
.ws41_c00483{word-spacing:-0.023940px;}
.ws42_c00483{word-spacing:-0.014364px;}
.ws43_c00483{word-spacing:-0.009576px;}
.ws5_c00483{word-spacing:0.000000px;}
.wsb_c00483{word-spacing:0.007200px;}
.ws14_c00483{word-spacing:0.024048px;}
.wsd_c00483{word-spacing:0.042084px;}
.ws29_c00483{word-spacing:0.096192px;}
.ws17_c00483{word-spacing:0.108216px;}
.ws1f_c00483{word-spacing:0.120240px;}
.ws3a_c00483{word-spacing:0.335160px;}
.ws3b_c00483{word-spacing:0.349524px;}
.wsc_c00483{word-spacing:0.352800px;}
.ws1e_c00483{word-spacing:0.381600px;}
.ws13_c00483{word-spacing:0.462924px;}
.ws1d_c00483{word-spacing:0.496800px;}
.ws34_c00483{word-spacing:0.694260px;}
.ws33_c00483{word-spacing:0.699048px;}
.ws27_c00483{word-spacing:0.781560px;}
.ws28_c00483{word-spacing:0.811620px;}
.ws40_c00483{word-spacing:1.417248px;}
.ws2d_c00483{word-spacing:1.422036px;}
.ws10_c00483{word-spacing:1.515024px;}
.ws12_c00483{word-spacing:1.539072px;}
.ws11_c00483{word-spacing:1.551096px;}
.ws36_c00483{word-spacing:1.771560px;}
.wsa_c00483{word-spacing:1.785600px;}
.ws37_c00483{word-spacing:1.785924px;}
.ws35_c00483{word-spacing:1.795500px;}
.ws9_c00483{word-spacing:1.836000px;}
.ws31_c00483{word-spacing:2.484972px;}
.ws2f_c00483{word-spacing:2.494548px;}
.ws30_c00483{word-spacing:2.499336px;}
.ws26_c00483{word-spacing:2.561112px;}
.ws21_c00483{word-spacing:2.603196px;}
.ws22_c00483{word-spacing:2.633256px;}
.ws20_c00483{word-spacing:2.639268px;}
.ws2e_c00483{word-spacing:2.853648px;}
.ws39_c00483{word-spacing:3.227112px;}
.ws25_c00483{word-spacing:3.949884px;}
.ws24_c00483{word-spacing:3.979944px;}
.ws2a_c00483{word-spacing:4.082148px;}
.ws32_c00483{word-spacing:4.663512px;}
.ws3f_c00483{word-spacing:5.027400px;}
.ws3e_c00483{word-spacing:5.036976px;}
.ws6_c00483{word-spacing:5.335200px;}
.ws3c_c00483{word-spacing:5.372136px;}
.ws3d_c00483{word-spacing:5.391288px;}
.ws7_c00483{word-spacing:5.392800px;}
.ws8_c00483{word-spacing:5.472000px;}
.ws38_c00483{word-spacing:5.750388px;}
.ws19_c00483{word-spacing:6.516000px;}
.ws16_c00483{word-spacing:6.523020px;}
.ws15_c00483{word-spacing:6.559092px;}
.ws18_c00483{word-spacing:6.559200px;}
.ws23_c00483{word-spacing:6.859692px;}
.wsf_c00483{word-spacing:10.893744px;}
.wse_c00483{word-spacing:10.947852px;}
.ws1b_c00483{word-spacing:16.574400px;}
.ws1a_c00483{word-spacing:16.624800px;}
.ws1c_c00483{word-spacing:16.675200px;}
.ws2b_c00483{word-spacing:26.332560px;}
.ws2c_c00483{word-spacing:26.380656px;}
._2_c00483{margin-left:-4.528296px;}
._3_c00483{margin-left:-3.527784px;}
._1_c00483{margin-left:-1.231200px;}
._0_c00483{width:1.052100px;}
.fc0_c00483{color:rgb(0,0,0);}
.fs3_c00483{font-size:38.880000px;}
.fs4_c00483{font-size:42.120000px;}
.fs5_c00483{font-size:47.880000px;}
.fs2_c00483{font-size:54.000000px;}
.fs0_c00483{font-size:60.120000px;}
.fs1_c00483{font-size:72.000000px;}
.y0_c00483{bottom:0.000000px;}
.y3_c00483{bottom:57.450450px;}
.y4_c00483{bottom:61.410450px;}
.y32_c00483{bottom:88.274730px;}
.y31_c00483{bottom:106.540950px;}
.y30_c00483{bottom:124.902930px;}
.y2f_c00483{bottom:143.169150px;}
.y2e_c00483{bottom:156.934650px;}
.y2d_c00483{bottom:170.795910px;}
.y2c_c00483{bottom:184.561410px;}
.y2b_c00483{bottom:198.326910px;}
.y2a_c00483{bottom:212.188170px;}
.y29_c00483{bottom:225.953670px;}
.y28_c00483{bottom:239.719170px;}
.y27_c00483{bottom:253.580430px;}
.y26_c00483{bottom:267.345930px;}
.y25_c00483{bottom:281.111430px;}
.y24_c00483{bottom:294.876930px;}
.y23_c00483{bottom:308.738190px;}
.y22_c00483{bottom:322.503690px;}
.y21_c00483{bottom:336.269190px;}
.y20_c00483{bottom:365.340450px;}
.y1f_c00483{bottom:386.040450px;}
.y1e_c00483{bottom:406.740450px;}
.y1d_c00483{bottom:517.764180px;}
.y1c_c00483{bottom:534.687960px;}
.y1b_c00483{bottom:551.521560px;}
.y1a_c00483{bottom:568.445340px;}
.y19_c00483{bottom:585.278940px;}
.y18_c00483{bottom:602.202720px;}
.y17_c00483{bottom:619.036320px;}
.y16_c00483{bottom:635.960100px;}
.y15_c00483{bottom:652.793700px;}
.y14_c00483{bottom:678.720450px;}
.y13_c00483{bottom:719.490450px;}
.y12_c00483{bottom:753.960450px;}
.y11_c00483{bottom:788.340450px;}
.y10_c00483{bottom:822.810450px;}
.yf_c00483{bottom:860.228940px;}
.ye_c00483{bottom:877.152720px;}
.yd_c00483{bottom:893.986320px;}
.yc_c00483{bottom:910.910100px;}
.yb_c00483{bottom:927.743700px;}
.ya_c00483{bottom:953.670450px;}
.y9_c00483{bottom:994.440450px;}
.y8_c00483{bottom:1028.910450px;}
.y7_c00483{bottom:1072.290450px;}
.y6_c00483{bottom:1106.760450px;}
.y5_c00483{bottom:1141.140450px;}
.y2_c00483{bottom:1176.420450px;}
.y1_c00483{bottom:1196.940450px;}
.h2_c00483{height:47.988281px;}
.h8_c00483{height:49.937344px;}
.h1_c00483{height:50.315273px;}
.h5_c00483{height:50.401913px;}
.h7_c00483{height:50.460353px;}
.h3_c00483{height:56.320312px;}
.h4_c00483{height:60.257812px;}
.h6_c00483{height:65.130820px;}
.h0_c00483{height:1263.000000px;}
.w1_c00483{width:892.500000px;}
.w0_c00483{width:892.830000px;}
.x0_c00483{left:0.000000px;}
.x2_c00483{left:127.620000px;}
.x7_c00483{left:141.120000px;}
.x6_c00483{left:154.620000px;}
.x5_c00483{left:180.810000px;}
.x1_c00483{left:217.440000px;}
.x4_c00483{left:435.240000px;}
.x3_c00483{left:446.490000px;}
@media print{
.v3_c00483{vertical-align:-54.080000pt;}
.v0_c00483{vertical-align:0.000000pt;}
.v1_c00483{vertical-align:13.516480pt;}
.v2_c00483{vertical-align:26.560000pt;}
.ls19_c00483{letter-spacing:-0.134400pt;}
.ls22_c00483{letter-spacing:-0.102400pt;}
.ls1c_c00483{letter-spacing:-0.053440pt;}
.ls16_c00483{letter-spacing:-0.026720pt;}
.ls1d_c00483{letter-spacing:-0.021376pt;}
.ls23_c00483{letter-spacing:-0.019200pt;}
.ls1f_c00483{letter-spacing:-0.016032pt;}
.ls21_c00483{letter-spacing:-0.012800pt;}
.ls1e_c00483{letter-spacing:-0.010688pt;}
.ls1b_c00483{letter-spacing:-0.006400pt;}
.ls17_c00483{letter-spacing:-0.005344pt;}
.ls18_c00483{letter-spacing:0.000000pt;}
.ls8_c00483{letter-spacing:0.005344pt;}
.ls1_c00483{letter-spacing:0.006400pt;}
.ls4_c00483{letter-spacing:0.010688pt;}
.ls2_c00483{letter-spacing:0.012800pt;}
.ls15_c00483{letter-spacing:0.017024pt;}
.ls24_c00483{letter-spacing:0.019200pt;}
.ls13_c00483{letter-spacing:0.021280pt;}
.ls14_c00483{letter-spacing:0.025536pt;}
.ls0_c00483{letter-spacing:0.025600pt;}
.lsb_c00483{letter-spacing:0.026720pt;}
.lse_c00483{letter-spacing:0.029792pt;}
.lsc_c00483{letter-spacing:0.032064pt;}
.ls11_c00483{letter-spacing:0.034048pt;}
.lsf_c00483{letter-spacing:0.038304pt;}
.ls1a_c00483{letter-spacing:0.038400pt;}
.ls10_c00483{letter-spacing:0.042560pt;}
.ls3_c00483{letter-spacing:0.042752pt;}
.ls12_c00483{letter-spacing:0.046816pt;}
.ls7_c00483{letter-spacing:0.048672pt;}
.ls5_c00483{letter-spacing:0.058784pt;}
.ls9_c00483{letter-spacing:0.064128pt;}
.lsa_c00483{letter-spacing:0.090848pt;}
.ls6_c00483{letter-spacing:0.120960pt;}
.ls20_c00483{letter-spacing:0.149632pt;}
.ls25_c00483{letter-spacing:3.601856pt;}
.lsd_c00483{letter-spacing:32.000000pt;}
.ws2_c00483{word-spacing:-13.386720pt;}
.ws1_c00483{word-spacing:-9.408672pt;}
.ws0_c00483{word-spacing:-8.760960pt;}
.ws4_c00483{word-spacing:-0.235136pt;}
.ws3_c00483{word-spacing:-0.213760pt;}
.ws41_c00483{word-spacing:-0.021280pt;}
.ws42_c00483{word-spacing:-0.012768pt;}
.ws43_c00483{word-spacing:-0.008512pt;}
.ws5_c00483{word-spacing:0.000000pt;}
.wsb_c00483{word-spacing:0.006400pt;}
.ws14_c00483{word-spacing:0.021376pt;}
.wsd_c00483{word-spacing:0.037408pt;}
.ws29_c00483{word-spacing:0.085504pt;}
.ws17_c00483{word-spacing:0.096192pt;}
.ws1f_c00483{word-spacing:0.106880pt;}
.ws3a_c00483{word-spacing:0.297920pt;}
.ws3b_c00483{word-spacing:0.310688pt;}
.wsc_c00483{word-spacing:0.313600pt;}
.ws1e_c00483{word-spacing:0.339200pt;}
.ws13_c00483{word-spacing:0.411488pt;}
.ws1d_c00483{word-spacing:0.441600pt;}
.ws34_c00483{word-spacing:0.617120pt;}
.ws33_c00483{word-spacing:0.621376pt;}
.ws27_c00483{word-spacing:0.694720pt;}
.ws28_c00483{word-spacing:0.721440pt;}
.ws40_c00483{word-spacing:1.259776pt;}
.ws2d_c00483{word-spacing:1.264032pt;}
.ws10_c00483{word-spacing:1.346688pt;}
.ws12_c00483{word-spacing:1.368064pt;}
.ws11_c00483{word-spacing:1.378752pt;}
.ws36_c00483{word-spacing:1.574720pt;}
.wsa_c00483{word-spacing:1.587200pt;}
.ws37_c00483{word-spacing:1.587488pt;}
.ws35_c00483{word-spacing:1.596000pt;}
.ws9_c00483{word-spacing:1.632000pt;}
.ws31_c00483{word-spacing:2.208864pt;}
.ws2f_c00483{word-spacing:2.217376pt;}
.ws30_c00483{word-spacing:2.221632pt;}
.ws26_c00483{word-spacing:2.276544pt;}
.ws21_c00483{word-spacing:2.313952pt;}
.ws22_c00483{word-spacing:2.340672pt;}
.ws20_c00483{word-spacing:2.346016pt;}
.ws2e_c00483{word-spacing:2.536576pt;}
.ws39_c00483{word-spacing:2.868544pt;}
.ws25_c00483{word-spacing:3.511008pt;}
.ws24_c00483{word-spacing:3.537728pt;}
.ws2a_c00483{word-spacing:3.628576pt;}
.ws32_c00483{word-spacing:4.145344pt;}
.ws3f_c00483{word-spacing:4.468800pt;}
.ws3e_c00483{word-spacing:4.477312pt;}
.ws6_c00483{word-spacing:4.742400pt;}
.ws3c_c00483{word-spacing:4.775232pt;}
.ws3d_c00483{word-spacing:4.792256pt;}
.ws7_c00483{word-spacing:4.793600pt;}
.ws8_c00483{word-spacing:4.864000pt;}
.ws38_c00483{word-spacing:5.111456pt;}
.ws19_c00483{word-spacing:5.792000pt;}
.ws16_c00483{word-spacing:5.798240pt;}
.ws15_c00483{word-spacing:5.830304pt;}
.ws18_c00483{word-spacing:5.830400pt;}
.ws23_c00483{word-spacing:6.097504pt;}
.wsf_c00483{word-spacing:9.683328pt;}
.wse_c00483{word-spacing:9.731424pt;}
.ws1b_c00483{word-spacing:14.732800pt;}
.ws1a_c00483{word-spacing:14.777600pt;}
.ws1c_c00483{word-spacing:14.822400pt;}
.ws2b_c00483{word-spacing:23.406720pt;}
.ws2c_c00483{word-spacing:23.449472pt;}
._2_c00483{margin-left:-4.025152pt;}
._3_c00483{margin-left:-3.135808pt;}
._1_c00483{margin-left:-1.094400pt;}
._0_c00483{width:0.935200pt;}
.fs3_c00483{font-size:34.560000pt;}
.fs4_c00483{font-size:37.440000pt;}
.fs5_c00483{font-size:42.560000pt;}
.fs2_c00483{font-size:48.000000pt;}
.fs0_c00483{font-size:53.440000pt;}
.fs1_c00483{font-size:64.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y3_c00483{bottom:51.067067pt;}
.y4_c00483{bottom:54.587067pt;}
.y32_c00483{bottom:78.466427pt;}
.y31_c00483{bottom:94.703067pt;}
.y30_c00483{bottom:111.024827pt;}
.y2f_c00483{bottom:127.261467pt;}
.y2e_c00483{bottom:139.497467pt;}
.y2d_c00483{bottom:151.818587pt;}
.y2c_c00483{bottom:164.054587pt;}
.y2b_c00483{bottom:176.290587pt;}
.y2a_c00483{bottom:188.611707pt;}
.y29_c00483{bottom:200.847707pt;}
.y28_c00483{bottom:213.083707pt;}
.y27_c00483{bottom:225.404827pt;}
.y26_c00483{bottom:237.640827pt;}
.y25_c00483{bottom:249.876827pt;}
.y24_c00483{bottom:262.112827pt;}
.y23_c00483{bottom:274.433947pt;}
.y22_c00483{bottom:286.669947pt;}
.y21_c00483{bottom:298.905947pt;}
.y20_c00483{bottom:324.747067pt;}
.y1f_c00483{bottom:343.147067pt;}
.y1e_c00483{bottom:361.547067pt;}
.y1d_c00483{bottom:460.234827pt;}
.y1c_c00483{bottom:475.278187pt;}
.y1b_c00483{bottom:490.241387pt;}
.y1a_c00483{bottom:505.284747pt;}
.y19_c00483{bottom:520.247947pt;}
.y18_c00483{bottom:535.291307pt;}
.y17_c00483{bottom:550.254507pt;}
.y16_c00483{bottom:565.297867pt;}
.y15_c00483{bottom:580.261067pt;}
.y14_c00483{bottom:603.307067pt;}
.y13_c00483{bottom:639.547067pt;}
.y12_c00483{bottom:670.187067pt;}
.y11_c00483{bottom:700.747067pt;}
.y10_c00483{bottom:731.387067pt;}
.yf_c00483{bottom:764.647947pt;}
.ye_c00483{bottom:779.691307pt;}
.yd_c00483{bottom:794.654507pt;}
.yc_c00483{bottom:809.697867pt;}
.yb_c00483{bottom:824.661067pt;}
.ya_c00483{bottom:847.707067pt;}
.y9_c00483{bottom:883.947067pt;}
.y8_c00483{bottom:914.587067pt;}
.y7_c00483{bottom:953.147067pt;}
.y6_c00483{bottom:983.787067pt;}
.y5_c00483{bottom:1014.347067pt;}
.y2_c00483{bottom:1045.707067pt;}
.y1_c00483{bottom:1063.947067pt;}
.h2_c00483{height:42.656250pt;}
.h8_c00483{height:44.388750pt;}
.h1_c00483{height:44.724687pt;}
.h5_c00483{height:44.801701pt;}
.h7_c00483{height:44.853648pt;}
.h3_c00483{height:50.062500pt;}
.h4_c00483{height:53.562500pt;}
.h6_c00483{height:57.894063pt;}
.h0_c00483{height:1122.666667pt;}
.w1_c00483{width:793.333333pt;}
.w0_c00483{width:793.626667pt;}
.x0_c00483{left:0.000000pt;}
.x2_c00483{left:113.440000pt;}
.x7_c00483{left:125.440000pt;}
.x6_c00483{left:137.440000pt;}
.x5_c00483{left:160.720000pt;}
.x1_c00483{left:193.280000pt;}
.x4_c00483{left:386.880000pt;}
.x3_c00483{left:396.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_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_8818030a63295a77d17f630a.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00484;src:url('chunks/assets/font_c61c3741cf89b00af12919a6.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00484;src:url('chunks/assets/font_ab2dca88bd2e927a2b000dba.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00484;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00484{font-family:ff5_c00484;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_c00484;src:url('chunks/assets/font_9b10ae311bbae408a8c677ee.woff2')format("woff");}.ff6_c00484{font-family:ff6_c00484;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_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;}
.v1_c00484{vertical-align:15.840000px;}
.v2_c00484{vertical-align:29.880000px;}
.ls13_c00484{letter-spacing:-0.151200px;}
.ls18_c00484{letter-spacing:-0.048096px;}
.ls21_c00484{letter-spacing:-0.043200px;}
.ls20_c00484{letter-spacing:-0.036000px;}
.ls1a_c00484{letter-spacing:-0.024048px;}
.ls14_c00484{letter-spacing:-0.021600px;}
.ls1d_c00484{letter-spacing:-0.014400px;}
.ls1e_c00484{letter-spacing:-0.007812px;}
.ls1c_c00484{letter-spacing:-0.007200px;}
.ls17_c00484{letter-spacing:-0.006012px;}
.ls15_c00484{letter-spacing:0.000000px;}
.ls5_c00484{letter-spacing:0.006012px;}
.ls3_c00484{letter-spacing:0.007200px;}
.lsf_c00484{letter-spacing:0.014364px;}
.ls1f_c00484{letter-spacing:0.021600px;}
.ls12_c00484{letter-spacing:0.023940px;}
.ls2_c00484{letter-spacing:0.028800px;}
.ls9_c00484{letter-spacing:0.030060px;}
.lsb_c00484{letter-spacing:0.031248px;}
.ls11_c00484{letter-spacing:0.033516px;}
.lse_c00484{letter-spacing:0.038304px;}
.ls7_c00484{letter-spacing:0.042084px;}
.lsd_c00484{letter-spacing:0.043092px;}
.ls0_c00484{letter-spacing:0.048096px;}
.ls8_c00484{letter-spacing:0.054108px;}
.ls4_c00484{letter-spacing:0.054756px;}
.ls6_c00484{letter-spacing:0.060120px;}
.ls10_c00484{letter-spacing:0.086184px;}
.ls16_c00484{letter-spacing:0.093600px;}
.lsa_c00484{letter-spacing:0.136080px;}
.ls1b_c00484{letter-spacing:0.168336px;}
.ls19_c00484{letter-spacing:2.609208px;}
.lsc_c00484{letter-spacing:26.560800px;}
.ls1_c00484{letter-spacing:1212.120000px;}
.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;}
}
.ws3_c00484{word-spacing:-19.561248px;}
.ws0_c00484{word-spacing:-18.007200px;}
.ws1_c00484{word-spacing:-10.584756px;}
.ws2_c00484{word-spacing:-9.856080px;}
.ws12_c00484{word-spacing:-0.318636px;}
.wsa_c00484{word-spacing:-0.276552px;}
.ws1a_c00484{word-spacing:-0.156240px;}
.ws19_c00484{word-spacing:-0.093600px;}
.ws2b_c00484{word-spacing:-0.067032px;}
.ws28_c00484{word-spacing:-0.023940px;}
.ws2e_c00484{word-spacing:-0.014364px;}
.ws18_c00484{word-spacing:-0.007200px;}
.ws2f_c00484{word-spacing:-0.004788px;}
.ws5_c00484{word-spacing:0.000000px;}
.ws23_c00484{word-spacing:0.021600px;}
.ws4_c00484{word-spacing:0.042084px;}
.ws11_c00484{word-spacing:0.060120px;}
.ws27_c00484{word-spacing:0.100800px;}
.ws2c_c00484{word-spacing:0.703836px;}
.wse_c00484{word-spacing:0.769536px;}
.wsf_c00484{word-spacing:0.835668px;}
.ws2d_c00484{word-spacing:1.058148px;}
.ws15_c00484{word-spacing:1.080000px;}
.ws14_c00484{word-spacing:1.137600px;}
.wsb_c00484{word-spacing:1.178352px;}
.wsc_c00484{word-spacing:1.575144px;}
.ws25_c00484{word-spacing:2.527200px;}
.wsd_c00484{word-spacing:2.549088px;}
.ws26_c00484{word-spacing:2.577600px;}
.ws20_c00484{word-spacing:3.528000px;}
.ws1b_c00484{word-spacing:3.592800px;}
.ws21_c00484{word-spacing:3.614400px;}
.ws1c_c00484{word-spacing:3.636000px;}
.ws22_c00484{word-spacing:3.643200px;}
.ws29_c00484{word-spacing:4.299624px;}
.ws2a_c00484{word-spacing:4.323564px;}
.ws17_c00484{word-spacing:5.032800px;}
.ws1d_c00484{word-spacing:5.421600px;}
.ws1e_c00484{word-spacing:6.040800px;}
.ws1f_c00484{word-spacing:6.084000px;}
.ws10_c00484{word-spacing:7.238448px;}
.ws7_c00484{word-spacing:10.411200px;}
.ws24_c00484{word-spacing:10.476000px;}
.ws6_c00484{word-spacing:10.512000px;}
.ws8_c00484{word-spacing:15.458400px;}
.ws9_c00484{word-spacing:15.660000px;}
.ws13_c00484{word-spacing:18.403200px;}
.ws16_c00484{word-spacing:25.545600px;}
._3_c00484{margin-left:-3.547080px;}
._2_c00484{margin-left:-2.464920px;}
._0_c00484{margin-left:-1.322640px;}
._1_c00484{width:1.080000px;}
.fc0_c00484{color:rgb(0,0,0);}
.fs4_c00484{font-size:38.880000px;}
.fs3_c00484{font-size:42.120000px;}
.fs6_c00484{font-size:47.880000px;}
.fs2_c00484{font-size:54.000000px;}
.fs0_c00484{font-size:60.120000px;}
.fs1_c00484{font-size:72.000000px;}
.fs5_c00484{font-size:78.120000px;}
.y0_c00484{bottom:0.000000px;}
.y2_c00484{bottom:57.450450px;}
.y26_c00484{bottom:88.247550px;}
.y25_c00484{bottom:106.513770px;}
.y24_c00484{bottom:120.375030px;}
.y23_c00484{bottom:134.140530px;}
.y22_c00484{bottom:152.406750px;}
.y21_c00484{bottom:166.268010px;}
.y20_c00484{bottom:184.534230px;}
.y1f_c00484{bottom:202.800450px;}
.y1e_c00484{bottom:218.010450px;}
.y1d_c00484{bottom:238.710450px;}
.y1c_c00484{bottom:259.410450px;}
.y1b_c00484{bottom:353.910600px;}
.y1a_c00484{bottom:388.380600px;}
.y19_c00484{bottom:422.760600px;}
.y18_c00484{bottom:466.230600px;}
.y17_c00484{bottom:500.610450px;}
.y16_c00484{bottom:535.080450px;}
.y15_c00484{bottom:569.460450px;}
.y14_c00484{bottom:603.930450px;}
.y13_c00484{bottom:648.930450px;}
.y12_c00484{bottom:711.660450px;}
.y11_c00484{bottom:746.040450px;}
.y10_c00484{bottom:789.510450px;}
.yf_c00484{bottom:823.890450px;}
.ye_c00484{bottom:858.360450px;}
.yd_c00484{bottom:892.740450px;}
.yc_c00484{bottom:921.245340px;}
.yb_c00484{bottom:938.078940px;}
.ya_c00484{bottom:955.002720px;}
.y9_c00484{bottom:971.836320px;}
.y8_c00484{bottom:988.760100px;}
.y7_c00484{bottom:1005.593700px;}
.y6_c00484{bottom:1031.520450px;}
.y5_c00484{bottom:1072.290450px;}
.y4_c00484{bottom:1106.760450px;}
.y3_c00484{bottom:1141.140450px;}
.y1_c00484{bottom:1196.850450px;}
.h8_c00484{height:47.988281px;}
.h9_c00484{height:49.937344px;}
.h1_c00484{height:50.315273px;}
.h5_c00484{height:50.415713px;}
.h3_c00484{height:60.257812px;}
.h7_c00484{height:65.130220px;}
.h4_c00484{height:65.130820px;}
.h2_c00484{height:72.160312px;}
.h6_c00484{height:81.476719px;}
.h0_c00484{height:1263.000000px;}
.w1_c00484{width:892.500000px;}
.w0_c00484{width:892.830000px;}
.x0_c00484{left:0.000000px;}
.x1_c00484{left:127.620000px;}
.x4_c00484{left:141.122160px;}
.x3_c00484{left:154.620000px;}
.x2_c00484{left:180.720000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.v1_c00484{vertical-align:14.080000pt;}
.v2_c00484{vertical-align:26.560000pt;}
.ls13_c00484{letter-spacing:-0.134400pt;}
.ls18_c00484{letter-spacing:-0.042752pt;}
.ls21_c00484{letter-spacing:-0.038400pt;}
.ls20_c00484{letter-spacing:-0.032000pt;}
.ls1a_c00484{letter-spacing:-0.021376pt;}
.ls14_c00484{letter-spacing:-0.019200pt;}
.ls1d_c00484{letter-spacing:-0.012800pt;}
.ls1e_c00484{letter-spacing:-0.006944pt;}
.ls1c_c00484{letter-spacing:-0.006400pt;}
.ls17_c00484{letter-spacing:-0.005344pt;}
.ls15_c00484{letter-spacing:0.000000pt;}
.ls5_c00484{letter-spacing:0.005344pt;}
.ls3_c00484{letter-spacing:0.006400pt;}
.lsf_c00484{letter-spacing:0.012768pt;}
.ls1f_c00484{letter-spacing:0.019200pt;}
.ls12_c00484{letter-spacing:0.021280pt;}
.ls2_c00484{letter-spacing:0.025600pt;}
.ls9_c00484{letter-spacing:0.026720pt;}
.lsb_c00484{letter-spacing:0.027776pt;}
.ls11_c00484{letter-spacing:0.029792pt;}
.lse_c00484{letter-spacing:0.034048pt;}
.ls7_c00484{letter-spacing:0.037408pt;}
.lsd_c00484{letter-spacing:0.038304pt;}
.ls0_c00484{letter-spacing:0.042752pt;}
.ls8_c00484{letter-spacing:0.048096pt;}
.ls4_c00484{letter-spacing:0.048672pt;}
.ls6_c00484{letter-spacing:0.053440pt;}
.ls10_c00484{letter-spacing:0.076608pt;}
.ls16_c00484{letter-spacing:0.083200pt;}
.lsa_c00484{letter-spacing:0.120960pt;}
.ls1b_c00484{letter-spacing:0.149632pt;}
.ls19_c00484{letter-spacing:2.319296pt;}
.lsc_c00484{letter-spacing:23.609600pt;}
.ls1_c00484{letter-spacing:1077.440000pt;}
.ws3_c00484{word-spacing:-17.387776pt;}
.ws0_c00484{word-spacing:-16.006400pt;}
.ws1_c00484{word-spacing:-9.408672pt;}
.ws2_c00484{word-spacing:-8.760960pt;}
.ws12_c00484{word-spacing:-0.283232pt;}
.wsa_c00484{word-spacing:-0.245824pt;}
.ws1a_c00484{word-spacing:-0.138880pt;}
.ws19_c00484{word-spacing:-0.083200pt;}
.ws2b_c00484{word-spacing:-0.059584pt;}
.ws28_c00484{word-spacing:-0.021280pt;}
.ws2e_c00484{word-spacing:-0.012768pt;}
.ws18_c00484{word-spacing:-0.006400pt;}
.ws2f_c00484{word-spacing:-0.004256pt;}
.ws5_c00484{word-spacing:0.000000pt;}
.ws23_c00484{word-spacing:0.019200pt;}
.ws4_c00484{word-spacing:0.037408pt;}
.ws11_c00484{word-spacing:0.053440pt;}
.ws27_c00484{word-spacing:0.089600pt;}
.ws2c_c00484{word-spacing:0.625632pt;}
.wse_c00484{word-spacing:0.684032pt;}
.wsf_c00484{word-spacing:0.742816pt;}
.ws2d_c00484{word-spacing:0.940576pt;}
.ws15_c00484{word-spacing:0.960000pt;}
.ws14_c00484{word-spacing:1.011200pt;}
.wsb_c00484{word-spacing:1.047424pt;}
.wsc_c00484{word-spacing:1.400128pt;}
.ws25_c00484{word-spacing:2.246400pt;}
.wsd_c00484{word-spacing:2.265856pt;}
.ws26_c00484{word-spacing:2.291200pt;}
.ws20_c00484{word-spacing:3.136000pt;}
.ws1b_c00484{word-spacing:3.193600pt;}
.ws21_c00484{word-spacing:3.212800pt;}
.ws1c_c00484{word-spacing:3.232000pt;}
.ws22_c00484{word-spacing:3.238400pt;}
.ws29_c00484{word-spacing:3.821888pt;}
.ws2a_c00484{word-spacing:3.843168pt;}
.ws17_c00484{word-spacing:4.473600pt;}
.ws1d_c00484{word-spacing:4.819200pt;}
.ws1e_c00484{word-spacing:5.369600pt;}
.ws1f_c00484{word-spacing:5.408000pt;}
.ws10_c00484{word-spacing:6.434176pt;}
.ws7_c00484{word-spacing:9.254400pt;}
.ws24_c00484{word-spacing:9.312000pt;}
.ws6_c00484{word-spacing:9.344000pt;}
.ws8_c00484{word-spacing:13.740800pt;}
.ws9_c00484{word-spacing:13.920000pt;}
.ws13_c00484{word-spacing:16.358400pt;}
.ws16_c00484{word-spacing:22.707200pt;}
._3_c00484{margin-left:-3.152960pt;}
._2_c00484{margin-left:-2.191040pt;}
._0_c00484{margin-left:-1.175680pt;}
._1_c00484{width:0.960000pt;}
.fs4_c00484{font-size:34.560000pt;}
.fs3_c00484{font-size:37.440000pt;}
.fs6_c00484{font-size:42.560000pt;}
.fs2_c00484{font-size:48.000000pt;}
.fs0_c00484{font-size:53.440000pt;}
.fs1_c00484{font-size:64.000000pt;}
.fs5_c00484{font-size:69.440000pt;}
.y0_c00484{bottom:0.000000pt;}
.y2_c00484{bottom:51.067067pt;}
.y26_c00484{bottom:78.442267pt;}
.y25_c00484{bottom:94.678907pt;}
.y24_c00484{bottom:107.000027pt;}
.y23_c00484{bottom:119.236027pt;}
.y22_c00484{bottom:135.472667pt;}
.y21_c00484{bottom:147.793787pt;}
.y20_c00484{bottom:164.030427pt;}
.y1f_c00484{bottom:180.267067pt;}
.y1e_c00484{bottom:193.787067pt;}
.y1d_c00484{bottom:212.187067pt;}
.y1c_c00484{bottom:230.587067pt;}
.y1b_c00484{bottom:314.587200pt;}
.y1a_c00484{bottom:345.227200pt;}
.y19_c00484{bottom:375.787200pt;}
.y18_c00484{bottom:414.427200pt;}
.y17_c00484{bottom:444.987067pt;}
.y16_c00484{bottom:475.627067pt;}
.y15_c00484{bottom:506.187067pt;}
.y14_c00484{bottom:536.827067pt;}
.y13_c00484{bottom:576.827067pt;}
.y12_c00484{bottom:632.587067pt;}
.y11_c00484{bottom:663.147067pt;}
.y10_c00484{bottom:701.787067pt;}
.yf_c00484{bottom:732.347067pt;}
.ye_c00484{bottom:762.987067pt;}
.yd_c00484{bottom:793.547067pt;}
.yc_c00484{bottom:818.884747pt;}
.yb_c00484{bottom:833.847947pt;}
.ya_c00484{bottom:848.891307pt;}
.y9_c00484{bottom:863.854507pt;}
.y8_c00484{bottom:878.897867pt;}
.y7_c00484{bottom:893.861067pt;}
.y6_c00484{bottom:916.907067pt;}
.y5_c00484{bottom:953.147067pt;}
.y4_c00484{bottom:983.787067pt;}
.y3_c00484{bottom:1014.347067pt;}
.y1_c00484{bottom:1063.867067pt;}
.h8_c00484{height:42.656250pt;}
.h9_c00484{height:44.388750pt;}
.h1_c00484{height:44.724687pt;}
.h5_c00484{height:44.813968pt;}
.h3_c00484{height:53.562500pt;}
.h7_c00484{height:57.893529pt;}
.h4_c00484{height:57.894062pt;}
.h2_c00484{height:64.142500pt;}
.h6_c00484{height:72.423750pt;}
.h0_c00484{height:1122.666667pt;}
.w1_c00484{width:793.333333pt;}
.w0_c00484{width:793.626667pt;}
.x0_c00484{left:0.000000pt;}
.x1_c00484{left:113.440000pt;}
.x4_c00484{left:125.441920pt;}
.x3_c00484{left:137.440000pt;}
.x2_c00484{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_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_cfbf5bbefe789b379e6fd6cb.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00485;src:url('chunks/assets/font_fe015297c968300a26021c04.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;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_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);}
.v3_c00485{vertical-align:-15.120000px;}
.v0_c00485{vertical-align:0.000000px;}
.v2_c00485{vertical-align:15.194160px;}
.v1_c00485{vertical-align:29.880000px;}
.ls1d_c00485{letter-spacing:-0.266400px;}
.ls12_c00485{letter-spacing:-0.151200px;}
.ls1b_c00485{letter-spacing:-0.042084px;}
.ls16_c00485{letter-spacing:-0.036000px;}
.lsf_c00485{letter-spacing:-0.030060px;}
.ls15_c00485{letter-spacing:-0.028800px;}
.ls1a_c00485{letter-spacing:-0.024048px;}
.ls13_c00485{letter-spacing:-0.021600px;}
.ls17_c00485{letter-spacing:-0.014400px;}
.ls18_c00485{letter-spacing:-0.007200px;}
.ls10_c00485{letter-spacing:-0.006012px;}
.ls11_c00485{letter-spacing:0.000000px;}
.ls0_c00485{letter-spacing:0.007200px;}
.lsc_c00485{letter-spacing:0.014364px;}
.ls14_c00485{letter-spacing:0.014400px;}
.ls3_c00485{letter-spacing:0.018036px;}
.lse_c00485{letter-spacing:0.019152px;}
.ls8_c00485{letter-spacing:0.023940px;}
.ls9_c00485{letter-spacing:0.028728px;}
.ls6_c00485{letter-spacing:0.033516px;}
.ls7_c00485{letter-spacing:0.038304px;}
.lsb_c00485{letter-spacing:0.043092px;}
.lsa_c00485{letter-spacing:0.047880px;}
.ls2_c00485{letter-spacing:0.054108px;}
.ls1_c00485{letter-spacing:0.054756px;}
.lsd_c00485{letter-spacing:0.057456px;}
.ls1c_c00485{letter-spacing:0.096192px;}
.ls4_c00485{letter-spacing:0.136080px;}
.ls5_c00485{letter-spacing:0.153720px;}
.ls19_c00485{letter-spacing:3.691368px;}
.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;}
}
.ws1_c00485{word-spacing:-15.126192px;}
.ws0_c00485{word-spacing:-10.584756px;}
.ws2_c00485{word-spacing:-9.856080px;}
.ws4_c00485{word-spacing:-0.264528px;}
.ws3_c00485{word-spacing:-0.240480px;}
.ws27_c00485{word-spacing:-0.019152px;}
.wsb_c00485{word-spacing:-0.014400px;}
.ws25_c00485{word-spacing:-0.014364px;}
.ws26_c00485{word-spacing:-0.009576px;}
.ws24_c00485{word-spacing:-0.007200px;}
.ws5_c00485{word-spacing:0.000000px;}
.ws15_c00485{word-spacing:0.021600px;}
.ws30_c00485{word-spacing:0.339948px;}
.ws31_c00485{word-spacing:0.349524px;}
.ws40_c00485{word-spacing:0.359100px;}
.ws2f_c00485{word-spacing:0.689472px;}
.ws2e_c00485{word-spacing:0.699048px;}
.ws23_c00485{word-spacing:0.784800px;}
.ws22_c00485{word-spacing:1.072800px;}
.ws21_c00485{word-spacing:1.116000px;}
.ws3c_c00485{word-spacing:1.412460px;}
.ws33_c00485{word-spacing:1.417248px;}
.ws3b_c00485{word-spacing:1.426824px;}
.ws3d_c00485{word-spacing:1.441188px;}
.wsf_c00485{word-spacing:2.124000px;}
.ws3a_c00485{word-spacing:2.140236px;}
.ws39_c00485{word-spacing:2.149812px;}
.wse_c00485{word-spacing:2.196000px;}
.ws20_c00485{word-spacing:2.448000px;}
.ws3f_c00485{word-spacing:2.480184px;}
.ws1f_c00485{word-spacing:2.484000px;}
.ws3e_c00485{word-spacing:2.499336px;}
.ws32_c00485{word-spacing:2.504124px;}
.ws2a_c00485{word-spacing:2.513700px;}
.ws41_c00485{word-spacing:2.848860px;}
.ws38_c00485{word-spacing:2.853648px;}
.ws37_c00485{word-spacing:2.868012px;}
.ws16_c00485{word-spacing:2.915820px;}
.ws28_c00485{word-spacing:3.217536px;}
.ws29_c00485{word-spacing:3.231900px;}
.ws18_c00485{word-spacing:3.276540px;}
.ws17_c00485{word-spacing:3.354696px;}
.ws2b_c00485{word-spacing:3.571848px;}
.ws2c_c00485{word-spacing:3.586212px;}
.ws10_c00485{word-spacing:3.600000px;}
.ws8_c00485{word-spacing:3.628800px;}
.ws35_c00485{word-spacing:5.017824px;}
.ws36_c00485{word-spacing:5.027400px;}
.ws7_c00485{word-spacing:5.083200px;}
.ws6_c00485{word-spacing:5.119200px;}
.ws2d_c00485{word-spacing:5.386500px;}
.ws9_c00485{word-spacing:5.436000px;}
.wsa_c00485{word-spacing:5.486400px;}
.ws34_c00485{word-spacing:6.468588px;}
.wsc_c00485{word-spacing:9.403200px;}
.wsd_c00485{word-spacing:9.446400px;}
.ws14_c00485{word-spacing:10.792800px;}
.ws13_c00485{word-spacing:10.872000px;}
.ws12_c00485{word-spacing:11.520000px;}
.ws1c_c00485{word-spacing:13.358664px;}
.ws1b_c00485{word-spacing:13.809564px;}
.ws1a_c00485{word-spacing:16.629192px;}
.ws19_c00485{word-spacing:16.647228px;}
.ws11_c00485{word-spacing:18.367200px;}
.ws1e_c00485{word-spacing:24.048000px;}
.ws1d_c00485{word-spacing:24.062400px;}
._3_c00485{margin-left:-4.809600px;}
._2_c00485{margin-left:-3.607200px;}
._1_c00485{margin-left:-1.080000px;}
._0_c00485{width:1.052100px;}
.fc0_c00485{color:rgb(0,0,0);}
.fs4_c00485{font-size:38.880000px;}
.fs3_c00485{font-size:42.120000px;}
.fs5_c00485{font-size:47.880000px;}
.fs2_c00485{font-size:54.000000px;}
.fs0_c00485{font-size:60.120000px;}
.fs1_c00485{font-size:72.000000px;}
.y0_c00485{bottom:0.000000px;}
.y3_c00485{bottom:57.450450px;}
.y4_c00485{bottom:61.410450px;}
.y34_c00485{bottom:83.790750px;}
.y33_c00485{bottom:97.556250px;}
.y32_c00485{bottom:111.417510px;}
.y31_c00485{bottom:125.183010px;}
.y30_c00485{bottom:138.948510px;}
.y2f_c00485{bottom:152.809770px;}
.y2e_c00485{bottom:166.575270px;}
.y2d_c00485{bottom:180.340770px;}
.y2c_c00485{bottom:194.202030px;}
.y2b_c00485{bottom:207.967530px;}
.y2a_c00485{bottom:221.733030px;}
.y29_c00485{bottom:235.594290px;}
.y28_c00485{bottom:249.359790px;}
.y27_c00485{bottom:263.125290px;}
.y26_c00485{bottom:276.890790px;}
.y25_c00485{bottom:290.752050px;}
.y24_c00485{bottom:304.517550px;}
.y23_c00485{bottom:318.283050px;}
.y22_c00485{bottom:332.144310px;}
.y21_c00485{bottom:345.909810px;}
.y20_c00485{bottom:364.176030px;}
.y1f_c00485{bottom:382.538010px;}
.y1e_c00485{bottom:400.804230px;}
.y1d_c00485{bottom:419.070450px;}
.y1c_c00485{bottom:434.280600px;}
.y1b_c00485{bottom:454.980600px;}
.y1a_c00485{bottom:475.680600px;}
.y19_c00485{bottom:521.940450px;}
.y18_c00485{bottom:556.410450px;}
.y17_c00485{bottom:590.790450px;}
.y16_c00485{bottom:625.260450px;}
.y15_c00485{bottom:662.681910px;}
.y14_c00485{bottom:679.605690px;}
.y13_c00485{bottom:696.439290px;}
.y12_c00485{bottom:713.363070px;}
.y11_c00485{bottom:730.196670px;}
.y10_c00485{bottom:747.120450px;}
.yf_c00485{bottom:787.890450px;}
.ye_c00485{bottom:822.360450px;}
.yd_c00485{bottom:856.740450px;}
.yc_c00485{bottom:891.210450px;}
.yb_c00485{bottom:925.590450px;}
.ya_c00485{bottom:960.060450px;}
.y9_c00485{bottom:994.440450px;}
.y8_c00485{bottom:1037.910450px;}
.y7_c00485{bottom:1072.290450px;}
.y6_c00485{bottom:1106.760450px;}
.y5_c00485{bottom:1141.140450px;}
.y2_c00485{bottom:1176.420450px;}
.y1_c00485{bottom:1196.940450px;}
.h2_c00485{height:47.988281px;}
.h7_c00485{height:49.937344px;}
.h1_c00485{height:50.315273px;}
.h3_c00485{height:56.320312px;}
.h4_c00485{height:60.257812px;}
.h6_c00485{height:60.331973px;}
.h5_c00485{height:65.130820px;}
.h0_c00485{height:1263.000000px;}
.w1_c00485{width:892.500000px;}
.w0_c00485{width:892.830000px;}
.x0_c00485{left:0.000000px;}
.x2_c00485{left:127.620000px;}
.x6_c00485{left:154.612350px;}
.x5_c00485{left:180.810000px;}
.x1_c00485{left:217.440000px;}
.x4_c00485{left:435.240000px;}
.x3_c00485{left:446.490000px;}
@media print{
.v3_c00485{vertical-align:-13.440000pt;}
.v0_c00485{vertical-align:0.000000pt;}
.v2_c00485{vertical-align:13.505920pt;}
.v1_c00485{vertical-align:26.560000pt;}
.ls1d_c00485{letter-spacing:-0.236800pt;}
.ls12_c00485{letter-spacing:-0.134400pt;}
.ls1b_c00485{letter-spacing:-0.037408pt;}
.ls16_c00485{letter-spacing:-0.032000pt;}
.lsf_c00485{letter-spacing:-0.026720pt;}
.ls15_c00485{letter-spacing:-0.025600pt;}
.ls1a_c00485{letter-spacing:-0.021376pt;}
.ls13_c00485{letter-spacing:-0.019200pt;}
.ls17_c00485{letter-spacing:-0.012800pt;}
.ls18_c00485{letter-spacing:-0.006400pt;}
.ls10_c00485{letter-spacing:-0.005344pt;}
.ls11_c00485{letter-spacing:0.000000pt;}
.ls0_c00485{letter-spacing:0.006400pt;}
.lsc_c00485{letter-spacing:0.012768pt;}
.ls14_c00485{letter-spacing:0.012800pt;}
.ls3_c00485{letter-spacing:0.016032pt;}
.lse_c00485{letter-spacing:0.017024pt;}
.ls8_c00485{letter-spacing:0.021280pt;}
.ls9_c00485{letter-spacing:0.025536pt;}
.ls6_c00485{letter-spacing:0.029792pt;}
.ls7_c00485{letter-spacing:0.034048pt;}
.lsb_c00485{letter-spacing:0.038304pt;}
.lsa_c00485{letter-spacing:0.042560pt;}
.ls2_c00485{letter-spacing:0.048096pt;}
.ls1_c00485{letter-spacing:0.048672pt;}
.lsd_c00485{letter-spacing:0.051072pt;}
.ls1c_c00485{letter-spacing:0.085504pt;}
.ls4_c00485{letter-spacing:0.120960pt;}
.ls5_c00485{letter-spacing:0.136640pt;}
.ls19_c00485{letter-spacing:3.281216pt;}
.ws1_c00485{word-spacing:-13.445504pt;}
.ws0_c00485{word-spacing:-9.408672pt;}
.ws2_c00485{word-spacing:-8.760960pt;}
.ws4_c00485{word-spacing:-0.235136pt;}
.ws3_c00485{word-spacing:-0.213760pt;}
.ws27_c00485{word-spacing:-0.017024pt;}
.wsb_c00485{word-spacing:-0.012800pt;}
.ws25_c00485{word-spacing:-0.012768pt;}
.ws26_c00485{word-spacing:-0.008512pt;}
.ws24_c00485{word-spacing:-0.006400pt;}
.ws5_c00485{word-spacing:0.000000pt;}
.ws15_c00485{word-spacing:0.019200pt;}
.ws30_c00485{word-spacing:0.302176pt;}
.ws31_c00485{word-spacing:0.310688pt;}
.ws40_c00485{word-spacing:0.319200pt;}
.ws2f_c00485{word-spacing:0.612864pt;}
.ws2e_c00485{word-spacing:0.621376pt;}
.ws23_c00485{word-spacing:0.697600pt;}
.ws22_c00485{word-spacing:0.953600pt;}
.ws21_c00485{word-spacing:0.992000pt;}
.ws3c_c00485{word-spacing:1.255520pt;}
.ws33_c00485{word-spacing:1.259776pt;}
.ws3b_c00485{word-spacing:1.268288pt;}
.ws3d_c00485{word-spacing:1.281056pt;}
.wsf_c00485{word-spacing:1.888000pt;}
.ws3a_c00485{word-spacing:1.902432pt;}
.ws39_c00485{word-spacing:1.910944pt;}
.wse_c00485{word-spacing:1.952000pt;}
.ws20_c00485{word-spacing:2.176000pt;}
.ws3f_c00485{word-spacing:2.204608pt;}
.ws1f_c00485{word-spacing:2.208000pt;}
.ws3e_c00485{word-spacing:2.221632pt;}
.ws32_c00485{word-spacing:2.225888pt;}
.ws2a_c00485{word-spacing:2.234400pt;}
.ws41_c00485{word-spacing:2.532320pt;}
.ws38_c00485{word-spacing:2.536576pt;}
.ws37_c00485{word-spacing:2.549344pt;}
.ws16_c00485{word-spacing:2.591840pt;}
.ws28_c00485{word-spacing:2.860032pt;}
.ws29_c00485{word-spacing:2.872800pt;}
.ws18_c00485{word-spacing:2.912480pt;}
.ws17_c00485{word-spacing:2.981952pt;}
.ws2b_c00485{word-spacing:3.174976pt;}
.ws2c_c00485{word-spacing:3.187744pt;}
.ws10_c00485{word-spacing:3.200000pt;}
.ws8_c00485{word-spacing:3.225600pt;}
.ws35_c00485{word-spacing:4.460288pt;}
.ws36_c00485{word-spacing:4.468800pt;}
.ws7_c00485{word-spacing:4.518400pt;}
.ws6_c00485{word-spacing:4.550400pt;}
.ws2d_c00485{word-spacing:4.788000pt;}
.ws9_c00485{word-spacing:4.832000pt;}
.wsa_c00485{word-spacing:4.876800pt;}
.ws34_c00485{word-spacing:5.749856pt;}
.wsc_c00485{word-spacing:8.358400pt;}
.wsd_c00485{word-spacing:8.396800pt;}
.ws14_c00485{word-spacing:9.593600pt;}
.ws13_c00485{word-spacing:9.664000pt;}
.ws12_c00485{word-spacing:10.240000pt;}
.ws1c_c00485{word-spacing:11.874368pt;}
.ws1b_c00485{word-spacing:12.275168pt;}
.ws1a_c00485{word-spacing:14.781504pt;}
.ws19_c00485{word-spacing:14.797536pt;}
.ws11_c00485{word-spacing:16.326400pt;}
.ws1e_c00485{word-spacing:21.376000pt;}
.ws1d_c00485{word-spacing:21.388800pt;}
._3_c00485{margin-left:-4.275200pt;}
._2_c00485{margin-left:-3.206400pt;}
._1_c00485{margin-left:-0.960000pt;}
._0_c00485{width:0.935200pt;}
.fs4_c00485{font-size:34.560000pt;}
.fs3_c00485{font-size:37.440000pt;}
.fs5_c00485{font-size:42.560000pt;}
.fs2_c00485{font-size:48.000000pt;}
.fs0_c00485{font-size:53.440000pt;}
.fs1_c00485{font-size:64.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y3_c00485{bottom:51.067067pt;}
.y4_c00485{bottom:54.587067pt;}
.y34_c00485{bottom:74.480667pt;}
.y33_c00485{bottom:86.716667pt;}
.y32_c00485{bottom:99.037787pt;}
.y31_c00485{bottom:111.273787pt;}
.y30_c00485{bottom:123.509787pt;}
.y2f_c00485{bottom:135.830907pt;}
.y2e_c00485{bottom:148.066907pt;}
.y2d_c00485{bottom:160.302907pt;}
.y2c_c00485{bottom:172.624027pt;}
.y2b_c00485{bottom:184.860027pt;}
.y2a_c00485{bottom:197.096027pt;}
.y29_c00485{bottom:209.417147pt;}
.y28_c00485{bottom:221.653147pt;}
.y27_c00485{bottom:233.889147pt;}
.y26_c00485{bottom:246.125147pt;}
.y25_c00485{bottom:258.446267pt;}
.y24_c00485{bottom:270.682267pt;}
.y23_c00485{bottom:282.918267pt;}
.y22_c00485{bottom:295.239387pt;}
.y21_c00485{bottom:307.475387pt;}
.y20_c00485{bottom:323.712027pt;}
.y1f_c00485{bottom:340.033787pt;}
.y1e_c00485{bottom:356.270427pt;}
.y1d_c00485{bottom:372.507067pt;}
.y1c_c00485{bottom:386.027200pt;}
.y1b_c00485{bottom:404.427200pt;}
.y1a_c00485{bottom:422.827200pt;}
.y19_c00485{bottom:463.947067pt;}
.y18_c00485{bottom:494.587067pt;}
.y17_c00485{bottom:525.147067pt;}
.y16_c00485{bottom:555.787067pt;}
.y15_c00485{bottom:589.050587pt;}
.y14_c00485{bottom:604.093947pt;}
.y13_c00485{bottom:619.057147pt;}
.y12_c00485{bottom:634.100507pt;}
.y11_c00485{bottom:649.063707pt;}
.y10_c00485{bottom:664.107067pt;}
.yf_c00485{bottom:700.347067pt;}
.ye_c00485{bottom:730.987067pt;}
.yd_c00485{bottom:761.547067pt;}
.yc_c00485{bottom:792.187067pt;}
.yb_c00485{bottom:822.747067pt;}
.ya_c00485{bottom:853.387067pt;}
.y9_c00485{bottom:883.947067pt;}
.y8_c00485{bottom:922.587067pt;}
.y7_c00485{bottom:953.147067pt;}
.y6_c00485{bottom:983.787067pt;}
.y5_c00485{bottom:1014.347067pt;}
.y2_c00485{bottom:1045.707067pt;}
.y1_c00485{bottom:1063.947067pt;}
.h2_c00485{height:42.656250pt;}
.h7_c00485{height:44.388750pt;}
.h1_c00485{height:44.724687pt;}
.h3_c00485{height:50.062500pt;}
.h4_c00485{height:53.562500pt;}
.h6_c00485{height:53.628420pt;}
.h5_c00485{height:57.894063pt;}
.h0_c00485{height:1122.666667pt;}
.w1_c00485{width:793.333333pt;}
.w0_c00485{width:793.626667pt;}
.x0_c00485{left:0.000000pt;}
.x2_c00485{left:113.440000pt;}
.x6_c00485{left:137.433200pt;}
.x5_c00485{left:160.720000pt;}
.x1_c00485{left:193.280000pt;}
.x4_c00485{left:386.880000pt;}
.x3_c00485{left:396.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_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_0c10cb27b280fac02b825f79.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00486;src:url('chunks/assets/font_6076ca7ac8678ce4945fe647.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00486;src:url('chunks/assets/font_9b10ae311bbae408a8c677ee.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;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_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);}
.v4_c00486{vertical-align:-60.840600px;}
.v2_c00486{vertical-align:-15.120000px;}
.v0_c00486{vertical-align:0.000000px;}
.v1_c00486{vertical-align:15.840000px;}
.v3_c00486{vertical-align:29.880000px;}
.ls25_c00486{letter-spacing:-0.246492px;}
.ls24_c00486{letter-spacing:-0.192384px;}
.ls17_c00486{letter-spacing:-0.151200px;}
.ls22_c00486{letter-spacing:-0.114228px;}
.ls27_c00486{letter-spacing:-0.048096px;}
.ls28_c00486{letter-spacing:-0.036000px;}
.ls19_c00486{letter-spacing:-0.030060px;}
.ls29_c00486{letter-spacing:-0.028800px;}
.ls18_c00486{letter-spacing:-0.024048px;}
.ls1f_c00486{letter-spacing:-0.021600px;}
.ls1c_c00486{letter-spacing:-0.018036px;}
.ls1e_c00486{letter-spacing:-0.014400px;}
.ls1a_c00486{letter-spacing:-0.012024px;}
.ls21_c00486{letter-spacing:-0.007200px;}
.ls26_c00486{letter-spacing:-0.006012px;}
.ls20_c00486{letter-spacing:0.000000px;}
.ls5_c00486{letter-spacing:0.006012px;}
.ls7_c00486{letter-spacing:0.007200px;}
.ls9_c00486{letter-spacing:0.012024px;}
.ls16_c00486{letter-spacing:0.014364px;}
.ls2_c00486{letter-spacing:0.018036px;}
.lsf_c00486{letter-spacing:0.023940px;}
.lsc_c00486{letter-spacing:0.024048px;}
.ls15_c00486{letter-spacing:0.028728px;}
.ls3_c00486{letter-spacing:0.030060px;}
.ls10_c00486{letter-spacing:0.033516px;}
.ls12_c00486{letter-spacing:0.038304px;}
.ls13_c00486{letter-spacing:0.043092px;}
.ls11_c00486{letter-spacing:0.047880px;}
.ls0_c00486{letter-spacing:0.048096px;}
.ls14_c00486{letter-spacing:0.052668px;}
.ls4_c00486{letter-spacing:0.054108px;}
.ls8_c00486{letter-spacing:0.054756px;}
.lsb_c00486{letter-spacing:0.060120px;}
.lsa_c00486{letter-spacing:0.078156px;}
.ls2a_c00486{letter-spacing:0.093600px;}
.ls6_c00486{letter-spacing:0.136080px;}
.lsd_c00486{letter-spacing:0.153720px;}
.ls1d_c00486{letter-spacing:0.168336px;}
.ls1b_c00486{letter-spacing:7.292556px;}
.ls23_c00486{letter-spacing:9.450864px;}
.lse_c00486{letter-spacing:90.000000px;}
.ls1_c00486{letter-spacing:1212.120000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00486{word-spacing:-18.007200px;}
.ws1_c00486{word-spacing:-10.584756px;}
.ws0_c00486{word-spacing:-9.856080px;}
.ws24_c00486{word-spacing:-0.222444px;}
.ws29_c00486{word-spacing:-0.093600px;}
.ws30_c00486{word-spacing:-0.014364px;}
.ws2f_c00486{word-spacing:-0.009576px;}
.ws31_c00486{word-spacing:-0.004788px;}
.ws4_c00486{word-spacing:0.000000px;}
.ws32_c00486{word-spacing:0.004788px;}
.ws28_c00486{word-spacing:0.028800px;}
.ws3_c00486{word-spacing:0.042084px;}
.ws23_c00486{word-spacing:0.066132px;}
.ws5_c00486{word-spacing:0.072144px;}
.ws10_c00486{word-spacing:0.108216px;}
.ws6_c00486{word-spacing:0.114228px;}
.ws1d_c00486{word-spacing:0.120240px;}
.ws18_c00486{word-spacing:0.204408px;}
.ws3d_c00486{word-spacing:0.325584px;}
.ws40_c00486{word-spacing:0.330372px;}
.ws3c_c00486{word-spacing:0.339948px;}
.ws36_c00486{word-spacing:0.689472px;}
.ws35_c00486{word-spacing:0.703836px;}
.ws27_c00486{word-spacing:0.756000px;}
.ws33_c00486{word-spacing:1.048572px;}
.ws34_c00486{word-spacing:1.058148px;}
.ws15_c00486{word-spacing:1.108800px;}
.ws2e_c00486{word-spacing:1.422036px;}
.ws2d_c00486{word-spacing:1.431612px;}
.ws2c_c00486{word-spacing:2.109600px;}
.ws3a_c00486{word-spacing:2.135448px;}
.ws2b_c00486{word-spacing:2.138400px;}
.ws3b_c00486{word-spacing:2.145024px;}
.ws3e_c00486{word-spacing:2.149812px;}
.ws9_c00486{word-spacing:2.555100px;}
.ws43_c00486{word-spacing:2.853648px;}
.ws45_c00486{word-spacing:2.858436px;}
.ws44_c00486{word-spacing:2.872800px;}
.ws22_c00486{word-spacing:2.909808px;}
.ws21_c00486{word-spacing:2.975940px;}
.ws39_c00486{word-spacing:3.571848px;}
.ws46_c00486{word-spacing:3.581424px;}
.ws47_c00486{word-spacing:3.586212px;}
.ws8_c00486{word-spacing:3.661308px;}
.ws1b_c00486{word-spacing:3.673332px;}
.ws1c_c00486{word-spacing:4.003992px;}
.ws1a_c00486{word-spacing:4.040064px;}
.ws7_c00486{word-spacing:4.070124px;}
.ws41_c00486{word-spacing:4.304412px;}
.ws42_c00486{word-spacing:4.323564px;}
.wsc_c00486{word-spacing:4.406796px;}
.wsb_c00486{word-spacing:4.713408px;}
.wsd_c00486{word-spacing:4.749480px;}
.wsa_c00486{word-spacing:4.797576px;}
.wse_c00486{word-spacing:5.140260px;}
.ws12_c00486{word-spacing:5.392800px;}
.ws11_c00486{word-spacing:5.414400px;}
.ws3f_c00486{word-spacing:6.099912px;}
.ws37_c00486{word-spacing:6.444648px;}
.ws38_c00486{word-spacing:6.473376px;}
.ws25_c00486{word-spacing:6.840000px;}
.ws26_c00486{word-spacing:6.861600px;}
.wsf_c00486{word-spacing:7.244460px;}
.ws19_c00486{word-spacing:9.036036px;}
.ws20_c00486{word-spacing:9.372708px;}
.ws1e_c00486{word-spacing:10.003968px;}
.ws1f_c00486{word-spacing:10.058076px;}
.ws2a_c00486{word-spacing:12.283200px;}
.ws14_c00486{word-spacing:13.658400px;}
.ws13_c00486{word-spacing:13.701600px;}
.ws16_c00486{word-spacing:18.324000px;}
.ws17_c00486{word-spacing:18.374400px;}
._4_c00486{margin-left:-10.521000px;}
._3_c00486{margin-left:-9.318600px;}
._1_c00486{margin-left:-7.334640px;}
._5_c00486{margin-left:-4.680000px;}
._0_c00486{margin-left:-1.322640px;}
._2_c00486{width:1.324800px;}
.fc0_c00486{color:rgb(0,0,0);}
.fs3_c00486{font-size:38.880000px;}
.fs4_c00486{font-size:42.120000px;}
.fs5_c00486{font-size:47.880000px;}
.fs2_c00486{font-size:54.000000px;}
.fs0_c00486{font-size:60.120000px;}
.fs1_c00486{font-size:72.000000px;}
.y0_c00486{bottom:0.000000px;}
.y2_c00486{bottom:57.450450px;}
.y33_c00486{bottom:83.781570px;}
.y32_c00486{bottom:97.547070px;}
.y31_c00486{bottom:111.408330px;}
.y30_c00486{bottom:125.173830px;}
.y2f_c00486{bottom:138.939330px;}
.y2e_c00486{bottom:152.800590px;}
.y2d_c00486{bottom:166.566090px;}
.y2c_c00486{bottom:180.331590px;}
.y2b_c00486{bottom:194.192850px;}
.y2a_c00486{bottom:207.958350px;}
.y29_c00486{bottom:221.723850px;}
.y28_c00486{bottom:235.585110px;}
.y27_c00486{bottom:249.350610px;}
.y26_c00486{bottom:263.116110px;}
.y25_c00486{bottom:281.382330px;}
.y24_c00486{bottom:299.744310px;}
.y23_c00486{bottom:318.010530px;}
.y22_c00486{bottom:336.276750px;}
.y21_c00486{bottom:354.638730px;}
.y20_c00486{bottom:372.904950px;}
.y1f_c00486{bottom:401.880600px;}
.y1e_c00486{bottom:422.580600px;}
.y1d_c00486{bottom:443.280600px;}
.y1c_c00486{bottom:480.360450px;}
.y1b_c00486{bottom:514.740450px;}
.y1a_c00486{bottom:558.210450px;}
.y19_c00486{bottom:592.590450px;}
.y18_c00486{bottom:627.060450px;}
.y17_c00486{bottom:664.464990px;}
.y16_c00486{bottom:681.388770px;}
.y15_c00486{bottom:698.222370px;}
.y14_c00486{bottom:724.149120px;}
.y13_c00486{bottom:740.982720px;}
.y12_c00486{bottom:757.906500px;}
.y11_c00486{bottom:774.740100px;}
.y10_c00486{bottom:791.663880px;}
.yf_c00486{bottom:817.500450px;}
.ye_c00486{bottom:858.360450px;}
.yd_c00486{bottom:892.740450px;}
.yc_c00486{bottom:927.210450px;}
.yb_c00486{bottom:961.590450px;}
.ya_c00486{bottom:996.060450px;}
.y9_c00486{bottom:1033.475340px;}
.y8_c00486{bottom:1050.399120px;}
.y7_c00486{bottom:1067.232720px;}
.y6_c00486{bottom:1084.156500px;}
.y5_c00486{bottom:1100.990100px;}
.y4_c00486{bottom:1117.913880px;}
.y3_c00486{bottom:1143.750450px;}
.y1_c00486{bottom:1196.850450px;}
.h7_c00486{height:47.988281px;}
.h8_c00486{height:49.937344px;}
.h1_c00486{height:50.315273px;}
.h3_c00486{height:50.415713px;}
.h4_c00486{height:60.257812px;}
.h6_c00486{height:60.399653px;}
.h5_c00486{height:65.130820px;}
.h2_c00486{height:72.160312px;}
.h0_c00486{height:1263.000000px;}
.w1_c00486{width:892.500000px;}
.w0_c00486{width:892.830000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:127.620000px;}
.x2_c00486{left:154.710000px;}
.x3_c00486{left:180.817110px;}
@media print{
.v4_c00486{vertical-align:-54.080533pt;}
.v2_c00486{vertical-align:-13.440000pt;}
.v0_c00486{vertical-align:0.000000pt;}
.v1_c00486{vertical-align:14.080000pt;}
.v3_c00486{vertical-align:26.560000pt;}
.ls25_c00486{letter-spacing:-0.219104pt;}
.ls24_c00486{letter-spacing:-0.171008pt;}
.ls17_c00486{letter-spacing:-0.134400pt;}
.ls22_c00486{letter-spacing:-0.101536pt;}
.ls27_c00486{letter-spacing:-0.042752pt;}
.ls28_c00486{letter-spacing:-0.032000pt;}
.ls19_c00486{letter-spacing:-0.026720pt;}
.ls29_c00486{letter-spacing:-0.025600pt;}
.ls18_c00486{letter-spacing:-0.021376pt;}
.ls1f_c00486{letter-spacing:-0.019200pt;}
.ls1c_c00486{letter-spacing:-0.016032pt;}
.ls1e_c00486{letter-spacing:-0.012800pt;}
.ls1a_c00486{letter-spacing:-0.010688pt;}
.ls21_c00486{letter-spacing:-0.006400pt;}
.ls26_c00486{letter-spacing:-0.005344pt;}
.ls20_c00486{letter-spacing:0.000000pt;}
.ls5_c00486{letter-spacing:0.005344pt;}
.ls7_c00486{letter-spacing:0.006400pt;}
.ls9_c00486{letter-spacing:0.010688pt;}
.ls16_c00486{letter-spacing:0.012768pt;}
.ls2_c00486{letter-spacing:0.016032pt;}
.lsf_c00486{letter-spacing:0.021280pt;}
.lsc_c00486{letter-spacing:0.021376pt;}
.ls15_c00486{letter-spacing:0.025536pt;}
.ls3_c00486{letter-spacing:0.026720pt;}
.ls10_c00486{letter-spacing:0.029792pt;}
.ls12_c00486{letter-spacing:0.034048pt;}
.ls13_c00486{letter-spacing:0.038304pt;}
.ls11_c00486{letter-spacing:0.042560pt;}
.ls0_c00486{letter-spacing:0.042752pt;}
.ls14_c00486{letter-spacing:0.046816pt;}
.ls4_c00486{letter-spacing:0.048096pt;}
.ls8_c00486{letter-spacing:0.048672pt;}
.lsb_c00486{letter-spacing:0.053440pt;}
.lsa_c00486{letter-spacing:0.069472pt;}
.ls2a_c00486{letter-spacing:0.083200pt;}
.ls6_c00486{letter-spacing:0.120960pt;}
.lsd_c00486{letter-spacing:0.136640pt;}
.ls1d_c00486{letter-spacing:0.149632pt;}
.ls1b_c00486{letter-spacing:6.482272pt;}
.ls23_c00486{letter-spacing:8.400768pt;}
.lse_c00486{letter-spacing:80.000000pt;}
.ls1_c00486{letter-spacing:1077.440000pt;}
.ws2_c00486{word-spacing:-16.006400pt;}
.ws1_c00486{word-spacing:-9.408672pt;}
.ws0_c00486{word-spacing:-8.760960pt;}
.ws24_c00486{word-spacing:-0.197728pt;}
.ws29_c00486{word-spacing:-0.083200pt;}
.ws30_c00486{word-spacing:-0.012768pt;}
.ws2f_c00486{word-spacing:-0.008512pt;}
.ws31_c00486{word-spacing:-0.004256pt;}
.ws4_c00486{word-spacing:0.000000pt;}
.ws32_c00486{word-spacing:0.004256pt;}
.ws28_c00486{word-spacing:0.025600pt;}
.ws3_c00486{word-spacing:0.037408pt;}
.ws23_c00486{word-spacing:0.058784pt;}
.ws5_c00486{word-spacing:0.064128pt;}
.ws10_c00486{word-spacing:0.096192pt;}
.ws6_c00486{word-spacing:0.101536pt;}
.ws1d_c00486{word-spacing:0.106880pt;}
.ws18_c00486{word-spacing:0.181696pt;}
.ws3d_c00486{word-spacing:0.289408pt;}
.ws40_c00486{word-spacing:0.293664pt;}
.ws3c_c00486{word-spacing:0.302176pt;}
.ws36_c00486{word-spacing:0.612864pt;}
.ws35_c00486{word-spacing:0.625632pt;}
.ws27_c00486{word-spacing:0.672000pt;}
.ws33_c00486{word-spacing:0.932064pt;}
.ws34_c00486{word-spacing:0.940576pt;}
.ws15_c00486{word-spacing:0.985600pt;}
.ws2e_c00486{word-spacing:1.264032pt;}
.ws2d_c00486{word-spacing:1.272544pt;}
.ws2c_c00486{word-spacing:1.875200pt;}
.ws3a_c00486{word-spacing:1.898176pt;}
.ws2b_c00486{word-spacing:1.900800pt;}
.ws3b_c00486{word-spacing:1.906688pt;}
.ws3e_c00486{word-spacing:1.910944pt;}
.ws9_c00486{word-spacing:2.271200pt;}
.ws43_c00486{word-spacing:2.536576pt;}
.ws45_c00486{word-spacing:2.540832pt;}
.ws44_c00486{word-spacing:2.553600pt;}
.ws22_c00486{word-spacing:2.586496pt;}
.ws21_c00486{word-spacing:2.645280pt;}
.ws39_c00486{word-spacing:3.174976pt;}
.ws46_c00486{word-spacing:3.183488pt;}
.ws47_c00486{word-spacing:3.187744pt;}
.ws8_c00486{word-spacing:3.254496pt;}
.ws1b_c00486{word-spacing:3.265184pt;}
.ws1c_c00486{word-spacing:3.559104pt;}
.ws1a_c00486{word-spacing:3.591168pt;}
.ws7_c00486{word-spacing:3.617888pt;}
.ws41_c00486{word-spacing:3.826144pt;}
.ws42_c00486{word-spacing:3.843168pt;}
.wsc_c00486{word-spacing:3.917152pt;}
.wsb_c00486{word-spacing:4.189696pt;}
.wsd_c00486{word-spacing:4.221760pt;}
.wsa_c00486{word-spacing:4.264512pt;}
.wse_c00486{word-spacing:4.569120pt;}
.ws12_c00486{word-spacing:4.793600pt;}
.ws11_c00486{word-spacing:4.812800pt;}
.ws3f_c00486{word-spacing:5.422144pt;}
.ws37_c00486{word-spacing:5.728576pt;}
.ws38_c00486{word-spacing:5.754112pt;}
.ws25_c00486{word-spacing:6.080000pt;}
.ws26_c00486{word-spacing:6.099200pt;}
.wsf_c00486{word-spacing:6.439520pt;}
.ws19_c00486{word-spacing:8.032032pt;}
.ws20_c00486{word-spacing:8.331296pt;}
.ws1e_c00486{word-spacing:8.892416pt;}
.ws1f_c00486{word-spacing:8.940512pt;}
.ws2a_c00486{word-spacing:10.918400pt;}
.ws14_c00486{word-spacing:12.140800pt;}
.ws13_c00486{word-spacing:12.179200pt;}
.ws16_c00486{word-spacing:16.288000pt;}
.ws17_c00486{word-spacing:16.332800pt;}
._4_c00486{margin-left:-9.352000pt;}
._3_c00486{margin-left:-8.283200pt;}
._1_c00486{margin-left:-6.519680pt;}
._5_c00486{margin-left:-4.160000pt;}
._0_c00486{margin-left:-1.175680pt;}
._2_c00486{width:1.177600pt;}
.fs3_c00486{font-size:34.560000pt;}
.fs4_c00486{font-size:37.440000pt;}
.fs5_c00486{font-size:42.560000pt;}
.fs2_c00486{font-size:48.000000pt;}
.fs0_c00486{font-size:53.440000pt;}
.fs1_c00486{font-size:64.000000pt;}
.y0_c00486{bottom:0.000000pt;}
.y2_c00486{bottom:51.067067pt;}
.y33_c00486{bottom:74.472507pt;}
.y32_c00486{bottom:86.708507pt;}
.y31_c00486{bottom:99.029627pt;}
.y30_c00486{bottom:111.265627pt;}
.y2f_c00486{bottom:123.501627pt;}
.y2e_c00486{bottom:135.822747pt;}
.y2d_c00486{bottom:148.058747pt;}
.y2c_c00486{bottom:160.294747pt;}
.y2b_c00486{bottom:172.615867pt;}
.y2a_c00486{bottom:184.851867pt;}
.y29_c00486{bottom:197.087867pt;}
.y28_c00486{bottom:209.408987pt;}
.y27_c00486{bottom:221.644987pt;}
.y26_c00486{bottom:233.880987pt;}
.y25_c00486{bottom:250.117627pt;}
.y24_c00486{bottom:266.439387pt;}
.y23_c00486{bottom:282.676027pt;}
.y22_c00486{bottom:298.912667pt;}
.y21_c00486{bottom:315.234427pt;}
.y20_c00486{bottom:331.471067pt;}
.y1f_c00486{bottom:357.227200pt;}
.y1e_c00486{bottom:375.627200pt;}
.y1d_c00486{bottom:394.027200pt;}
.y1c_c00486{bottom:426.987067pt;}
.y1b_c00486{bottom:457.547067pt;}
.y1a_c00486{bottom:496.187067pt;}
.y19_c00486{bottom:526.747067pt;}
.y18_c00486{bottom:557.387067pt;}
.y17_c00486{bottom:590.635547pt;}
.y16_c00486{bottom:605.678907pt;}
.y15_c00486{bottom:620.642107pt;}
.y14_c00486{bottom:643.688107pt;}
.y13_c00486{bottom:658.651307pt;}
.y12_c00486{bottom:673.694667pt;}
.y11_c00486{bottom:688.657867pt;}
.y10_c00486{bottom:703.701227pt;}
.yf_c00486{bottom:726.667067pt;}
.ye_c00486{bottom:762.987067pt;}
.yd_c00486{bottom:793.547067pt;}
.yc_c00486{bottom:824.187067pt;}
.yb_c00486{bottom:854.747067pt;}
.ya_c00486{bottom:885.387067pt;}
.y9_c00486{bottom:918.644747pt;}
.y8_c00486{bottom:933.688107pt;}
.y7_c00486{bottom:948.651307pt;}
.y6_c00486{bottom:963.694667pt;}
.y5_c00486{bottom:978.657867pt;}
.y4_c00486{bottom:993.701227pt;}
.y3_c00486{bottom:1016.667067pt;}
.y1_c00486{bottom:1063.867067pt;}
.h7_c00486{height:42.656250pt;}
.h8_c00486{height:44.388750pt;}
.h1_c00486{height:44.724687pt;}
.h3_c00486{height:44.813968pt;}
.h4_c00486{height:53.562500pt;}
.h6_c00486{height:53.688580pt;}
.h5_c00486{height:57.894063pt;}
.h2_c00486{height:64.142500pt;}
.h0_c00486{height:1122.666667pt;}
.w1_c00486{width:793.333333pt;}
.w0_c00486{width:793.626667pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:113.440000pt;}
.x2_c00486{left:137.520000pt;}
.x3_c00486{left:160.726320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_342ebe46b4f2202a66835fa7.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00487;src:url('chunks/assets/font_236cf6ad94cf867f3acaba6e.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00487;src:url('chunks/assets/font_38dddf5e384cef2e01f5628b.woff2')format("woff");}.ff4_c00487{font-family:ff4_c00487;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00487;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00487{font-family:ff5_c00487;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_c00487;src:url('chunks/assets/font_f747e2b07e81eed77458cbc8.woff2')format("woff");}.ff6_c00487{font-family:ff6_c00487;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_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);}
.v3_c00487{vertical-align:-60.840000px;}
.v2_c00487{vertical-align:-29.880000px;}
.v0_c00487{vertical-align:0.000000px;}
.v1_c00487{vertical-align:29.880000px;}
.ls19_c00487{letter-spacing:-0.266400px;}
.ls14_c00487{letter-spacing:-0.151200px;}
.ls1b_c00487{letter-spacing:-0.043200px;}
.ls17_c00487{letter-spacing:-0.036000px;}
.ls11_c00487{letter-spacing:-0.030060px;}
.ls15_c00487{letter-spacing:-0.028800px;}
.ls1a_c00487{letter-spacing:-0.021600px;}
.ls20_c00487{letter-spacing:-0.019152px;}
.ls16_c00487{letter-spacing:-0.014400px;}
.ls1d_c00487{letter-spacing:-0.007776px;}
.ls18_c00487{letter-spacing:-0.007200px;}
.ls12_c00487{letter-spacing:-0.006012px;}
.ls1f_c00487{letter-spacing:-0.003888px;}
.ls13_c00487{letter-spacing:0.000000px;}
.ls1_c00487{letter-spacing:0.007200px;}
.ls4_c00487{letter-spacing:0.007812px;}
.lsd_c00487{letter-spacing:0.014364px;}
.ls0_c00487{letter-spacing:0.014400px;}
.lsb_c00487{letter-spacing:0.019152px;}
.ls6_c00487{letter-spacing:0.021600px;}
.lsf_c00487{letter-spacing:0.023940px;}
.ls9_c00487{letter-spacing:0.028728px;}
.ls2_c00487{letter-spacing:0.031248px;}
.lsc_c00487{letter-spacing:0.033516px;}
.ls8_c00487{letter-spacing:0.038304px;}
.lse_c00487{letter-spacing:0.043092px;}
.lsa_c00487{letter-spacing:0.047880px;}
.ls5_c00487{letter-spacing:0.054756px;}
.ls1c_c00487{letter-spacing:0.093600px;}
.ls1e_c00487{letter-spacing:0.353808px;}
.ls10_c00487{letter-spacing:0.464040px;}
.ls3_c00487{letter-spacing:26.560800px;}
.ls7_c00487{letter-spacing:90.000000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00487{word-spacing:-19.561248px;}
.ws2_c00487{word-spacing:-13.310640px;}
.ws3_c00487{word-spacing:-11.162448px;}
.ws4_c00487{word-spacing:-10.804752px;}
.ws1_c00487{word-spacing:-10.584756px;}
.ws6_c00487{word-spacing:-0.264528px;}
.ws5_c00487{word-spacing:-0.240480px;}
.wsf_c00487{word-spacing:-0.101556px;}
.ws23_c00487{word-spacing:-0.093600px;}
.ws3c_c00487{word-spacing:-0.028728px;}
.ws15_c00487{word-spacing:-0.014400px;}
.ws32_c00487{word-spacing:-0.014364px;}
.ws3e_c00487{word-spacing:-0.009576px;}
.wsc_c00487{word-spacing:-0.007200px;}
.ws39_c00487{word-spacing:-0.004788px;}
.ws7_c00487{word-spacing:0.000000px;}
.ws3a_c00487{word-spacing:0.004788px;}
.ws38_c00487{word-spacing:0.019152px;}
.wse_c00487{word-spacing:0.036000px;}
.ws3d_c00487{word-spacing:0.038304px;}
.ws22_c00487{word-spacing:0.050400px;}
.wsd_c00487{word-spacing:0.064800px;}
.ws26_c00487{word-spacing:0.108000px;}
.ws25_c00487{word-spacing:0.165600px;}
.ws2a_c00487{word-spacing:0.302400px;}
.ws29_c00487{word-spacing:0.331200px;}
.ws3b_c00487{word-spacing:0.363888px;}
.ws2f_c00487{word-spacing:0.699048px;}
.ws2b_c00487{word-spacing:1.058148px;}
.ws34_c00487{word-spacing:1.062936px;}
.ws2c_c00487{word-spacing:1.067724px;}
.ws33_c00487{word-spacing:1.082088px;}
.wsb_c00487{word-spacing:1.764000px;}
.wsa_c00487{word-spacing:1.778400px;}
.ws2d_c00487{word-spacing:1.790712px;}
.ws1e_c00487{word-spacing:2.505600px;}
.ws1d_c00487{word-spacing:2.606400px;}
.ws31_c00487{word-spacing:2.848860px;}
.ws30_c00487{word-spacing:2.858436px;}
.ws2e_c00487{word-spacing:2.868012px;}
.ws14_c00487{word-spacing:3.621600px;}
.ws13_c00487{word-spacing:3.672000px;}
.ws8_c00487{word-spacing:3.945600px;}
.ws9_c00487{word-spacing:4.032000px;}
.ws19_c00487{word-spacing:5.839200px;}
.ws18_c00487{word-spacing:5.911200px;}
.ws1a_c00487{word-spacing:5.940000px;}
.ws27_c00487{word-spacing:6.156000px;}
.ws28_c00487{word-spacing:6.818400px;}
.ws36_c00487{word-spacing:7.531524px;}
.ws35_c00487{word-spacing:7.536312px;}
.ws37_c00487{word-spacing:7.560252px;}
.ws24_c00487{word-spacing:7.920000px;}
.ws10_c00487{word-spacing:12.960000px;}
.ws1b_c00487{word-spacing:14.414400px;}
.ws1c_c00487{word-spacing:14.443200px;}
.ws20_c00487{word-spacing:14.450400px;}
.ws1f_c00487{word-spacing:14.472000px;}
.ws21_c00487{word-spacing:14.486400px;}
.ws12_c00487{word-spacing:14.745600px;}
.ws11_c00487{word-spacing:14.767200px;}
.ws17_c00487{word-spacing:19.785600px;}
.ws16_c00487{word-spacing:19.800000px;}
._2_c00487{margin-left:-4.680000px;}
._1_c00487{margin-left:-1.166400px;}
._0_c00487{width:1.052100px;}
.fc0_c00487{color:rgb(0,0,0);}
.fs6_c00487{font-size:38.880000px;}
.fs4_c00487{font-size:42.120000px;}
.fs5_c00487{font-size:47.880000px;}
.fs2_c00487{font-size:54.000000px;}
.fs0_c00487{font-size:60.120000px;}
.fs1_c00487{font-size:72.000000px;}
.fs3_c00487{font-size:78.120000px;}
.y0_c00487{bottom:0.000000px;}
.y3_c00487{bottom:57.450450px;}
.y4_c00487{bottom:61.410450px;}
.y29_c00487{bottom:88.234230px;}
.y28_c00487{bottom:106.498470px;}
.y27_c00487{bottom:124.867470px;}
.y26_c00487{bottom:143.133690px;}
.y25_c00487{bottom:156.899190px;}
.y24_c00487{bottom:170.779710px;}
.y23_c00487{bottom:189.045930px;}
.y22_c00487{bottom:202.811430px;}
.y21_c00487{bottom:216.672690px;}
.y20_c00487{bottom:230.438190px;}
.y1f_c00487{bottom:244.203690px;}
.y1e_c00487{bottom:258.064950px;}
.y1d_c00487{bottom:287.040450px;}
.y1c_c00487{bottom:307.740450px;}
.y1b_c00487{bottom:328.440450px;}
.y1a_c00487{bottom:352.380450px;}
.y19_c00487{bottom:386.760450px;}
.y18_c00487{bottom:421.230450px;}
.y17_c00487{bottom:455.610450px;}
.y16_c00487{bottom:499.080450px;}
.y15_c00487{bottom:533.460450px;}
.y14_c00487{bottom:567.930450px;}
.y13_c00487{bottom:611.310450px;}
.y12_c00487{bottom:645.780450px;}
.y11_c00487{bottom:680.160450px;}
.y10_c00487{bottom:714.630450px;}
.yf_c00487{bottom:749.010450px;}
.ye_c00487{bottom:783.480450px;}
.yd_c00487{bottom:826.860450px;}
.yc_c00487{bottom:861.330450px;}
.yb_c00487{bottom:895.710450px;}
.ya_c00487{bottom:930.180450px;}
.y9_c00487{bottom:975.180450px;}
.y8_c00487{bottom:1037.910450px;}
.y7_c00487{bottom:1072.290450px;}
.y6_c00487{bottom:1106.760450px;}
.y5_c00487{bottom:1141.140450px;}
.y2_c00487{bottom:1176.420450px;}
.y1_c00487{bottom:1196.940450px;}
.h2_c00487{height:47.988281px;}
.h7_c00487{height:49.937344px;}
.h8_c00487{height:49.945264px;}
.h1_c00487{height:50.315273px;}
.h3_c00487{height:56.320312px;}
.h4_c00487{height:60.257812px;}
.h6_c00487{height:65.130820px;}
.h5_c00487{height:81.476719px;}
.h0_c00487{height:1263.000000px;}
.w1_c00487{width:892.500000px;}
.w0_c00487{width:892.830000px;}
.x0_c00487{left:0.000000px;}
.x2_c00487{left:127.620000px;}
.x6_c00487{left:154.620000px;}
.x5_c00487{left:180.720000px;}
.x1_c00487{left:217.440000px;}
.x4_c00487{left:435.240000px;}
.x3_c00487{left:446.490000px;}
@media print{
.v3_c00487{vertical-align:-54.080000pt;}
.v2_c00487{vertical-align:-26.560000pt;}
.v0_c00487{vertical-align:0.000000pt;}
.v1_c00487{vertical-align:26.560000pt;}
.ls19_c00487{letter-spacing:-0.236800pt;}
.ls14_c00487{letter-spacing:-0.134400pt;}
.ls1b_c00487{letter-spacing:-0.038400pt;}
.ls17_c00487{letter-spacing:-0.032000pt;}
.ls11_c00487{letter-spacing:-0.026720pt;}
.ls15_c00487{letter-spacing:-0.025600pt;}
.ls1a_c00487{letter-spacing:-0.019200pt;}
.ls20_c00487{letter-spacing:-0.017024pt;}
.ls16_c00487{letter-spacing:-0.012800pt;}
.ls1d_c00487{letter-spacing:-0.006912pt;}
.ls18_c00487{letter-spacing:-0.006400pt;}
.ls12_c00487{letter-spacing:-0.005344pt;}
.ls1f_c00487{letter-spacing:-0.003456pt;}
.ls13_c00487{letter-spacing:0.000000pt;}
.ls1_c00487{letter-spacing:0.006400pt;}
.ls4_c00487{letter-spacing:0.006944pt;}
.lsd_c00487{letter-spacing:0.012768pt;}
.ls0_c00487{letter-spacing:0.012800pt;}
.lsb_c00487{letter-spacing:0.017024pt;}
.ls6_c00487{letter-spacing:0.019200pt;}
.lsf_c00487{letter-spacing:0.021280pt;}
.ls9_c00487{letter-spacing:0.025536pt;}
.ls2_c00487{letter-spacing:0.027776pt;}
.lsc_c00487{letter-spacing:0.029792pt;}
.ls8_c00487{letter-spacing:0.034048pt;}
.lse_c00487{letter-spacing:0.038304pt;}
.lsa_c00487{letter-spacing:0.042560pt;}
.ls5_c00487{letter-spacing:0.048672pt;}
.ls1c_c00487{letter-spacing:0.083200pt;}
.ls1e_c00487{letter-spacing:0.314496pt;}
.ls10_c00487{letter-spacing:0.412480pt;}
.ls3_c00487{letter-spacing:23.609600pt;}
.ls7_c00487{letter-spacing:80.000000pt;}
.ws0_c00487{word-spacing:-17.387776pt;}
.ws2_c00487{word-spacing:-11.831680pt;}
.ws3_c00487{word-spacing:-9.922176pt;}
.ws4_c00487{word-spacing:-9.604224pt;}
.ws1_c00487{word-spacing:-9.408672pt;}
.ws6_c00487{word-spacing:-0.235136pt;}
.ws5_c00487{word-spacing:-0.213760pt;}
.wsf_c00487{word-spacing:-0.090272pt;}
.ws23_c00487{word-spacing:-0.083200pt;}
.ws3c_c00487{word-spacing:-0.025536pt;}
.ws15_c00487{word-spacing:-0.012800pt;}
.ws32_c00487{word-spacing:-0.012768pt;}
.ws3e_c00487{word-spacing:-0.008512pt;}
.wsc_c00487{word-spacing:-0.006400pt;}
.ws39_c00487{word-spacing:-0.004256pt;}
.ws7_c00487{word-spacing:0.000000pt;}
.ws3a_c00487{word-spacing:0.004256pt;}
.ws38_c00487{word-spacing:0.017024pt;}
.wse_c00487{word-spacing:0.032000pt;}
.ws3d_c00487{word-spacing:0.034048pt;}
.ws22_c00487{word-spacing:0.044800pt;}
.wsd_c00487{word-spacing:0.057600pt;}
.ws26_c00487{word-spacing:0.096000pt;}
.ws25_c00487{word-spacing:0.147200pt;}
.ws2a_c00487{word-spacing:0.268800pt;}
.ws29_c00487{word-spacing:0.294400pt;}
.ws3b_c00487{word-spacing:0.323456pt;}
.ws2f_c00487{word-spacing:0.621376pt;}
.ws2b_c00487{word-spacing:0.940576pt;}
.ws34_c00487{word-spacing:0.944832pt;}
.ws2c_c00487{word-spacing:0.949088pt;}
.ws33_c00487{word-spacing:0.961856pt;}
.wsb_c00487{word-spacing:1.568000pt;}
.wsa_c00487{word-spacing:1.580800pt;}
.ws2d_c00487{word-spacing:1.591744pt;}
.ws1e_c00487{word-spacing:2.227200pt;}
.ws1d_c00487{word-spacing:2.316800pt;}
.ws31_c00487{word-spacing:2.532320pt;}
.ws30_c00487{word-spacing:2.540832pt;}
.ws2e_c00487{word-spacing:2.549344pt;}
.ws14_c00487{word-spacing:3.219200pt;}
.ws13_c00487{word-spacing:3.264000pt;}
.ws8_c00487{word-spacing:3.507200pt;}
.ws9_c00487{word-spacing:3.584000pt;}
.ws19_c00487{word-spacing:5.190400pt;}
.ws18_c00487{word-spacing:5.254400pt;}
.ws1a_c00487{word-spacing:5.280000pt;}
.ws27_c00487{word-spacing:5.472000pt;}
.ws28_c00487{word-spacing:6.060800pt;}
.ws36_c00487{word-spacing:6.694688pt;}
.ws35_c00487{word-spacing:6.698944pt;}
.ws37_c00487{word-spacing:6.720224pt;}
.ws24_c00487{word-spacing:7.040000pt;}
.ws10_c00487{word-spacing:11.520000pt;}
.ws1b_c00487{word-spacing:12.812800pt;}
.ws1c_c00487{word-spacing:12.838400pt;}
.ws20_c00487{word-spacing:12.844800pt;}
.ws1f_c00487{word-spacing:12.864000pt;}
.ws21_c00487{word-spacing:12.876800pt;}
.ws12_c00487{word-spacing:13.107200pt;}
.ws11_c00487{word-spacing:13.126400pt;}
.ws17_c00487{word-spacing:17.587200pt;}
.ws16_c00487{word-spacing:17.600000pt;}
._2_c00487{margin-left:-4.160000pt;}
._1_c00487{margin-left:-1.036800pt;}
._0_c00487{width:0.935200pt;}
.fs6_c00487{font-size:34.560000pt;}
.fs4_c00487{font-size:37.440000pt;}
.fs5_c00487{font-size:42.560000pt;}
.fs2_c00487{font-size:48.000000pt;}
.fs0_c00487{font-size:53.440000pt;}
.fs1_c00487{font-size:64.000000pt;}
.fs3_c00487{font-size:69.440000pt;}
.y0_c00487{bottom:0.000000pt;}
.y3_c00487{bottom:51.067067pt;}
.y4_c00487{bottom:54.587067pt;}
.y29_c00487{bottom:78.430427pt;}
.y28_c00487{bottom:94.665307pt;}
.y27_c00487{bottom:110.993307pt;}
.y26_c00487{bottom:127.229947pt;}
.y25_c00487{bottom:139.465947pt;}
.y24_c00487{bottom:151.804187pt;}
.y23_c00487{bottom:168.040827pt;}
.y22_c00487{bottom:180.276827pt;}
.y21_c00487{bottom:192.597947pt;}
.y20_c00487{bottom:204.833947pt;}
.y1f_c00487{bottom:217.069947pt;}
.y1e_c00487{bottom:229.391067pt;}
.y1d_c00487{bottom:255.147067pt;}
.y1c_c00487{bottom:273.547067pt;}
.y1b_c00487{bottom:291.947067pt;}
.y1a_c00487{bottom:313.227067pt;}
.y19_c00487{bottom:343.787067pt;}
.y18_c00487{bottom:374.427067pt;}
.y17_c00487{bottom:404.987067pt;}
.y16_c00487{bottom:443.627067pt;}
.y15_c00487{bottom:474.187067pt;}
.y14_c00487{bottom:504.827067pt;}
.y13_c00487{bottom:543.387067pt;}
.y12_c00487{bottom:574.027067pt;}
.y11_c00487{bottom:604.587067pt;}
.y10_c00487{bottom:635.227067pt;}
.yf_c00487{bottom:665.787067pt;}
.ye_c00487{bottom:696.427067pt;}
.yd_c00487{bottom:734.987067pt;}
.yc_c00487{bottom:765.627067pt;}
.yb_c00487{bottom:796.187067pt;}
.ya_c00487{bottom:826.827067pt;}
.y9_c00487{bottom:866.827067pt;}
.y8_c00487{bottom:922.587067pt;}
.y7_c00487{bottom:953.147067pt;}
.y6_c00487{bottom:983.787067pt;}
.y5_c00487{bottom:1014.347067pt;}
.y2_c00487{bottom:1045.707067pt;}
.y1_c00487{bottom:1063.947067pt;}
.h2_c00487{height:42.656250pt;}
.h7_c00487{height:44.388750pt;}
.h8_c00487{height:44.395790pt;}
.h1_c00487{height:44.724687pt;}
.h3_c00487{height:50.062500pt;}
.h4_c00487{height:53.562500pt;}
.h6_c00487{height:57.894063pt;}
.h5_c00487{height:72.423750pt;}
.h0_c00487{height:1122.666667pt;}
.w1_c00487{width:793.333333pt;}
.w0_c00487{width:793.626667pt;}
.x0_c00487{left:0.000000pt;}
.x2_c00487{left:113.440000pt;}
.x6_c00487{left:137.440000pt;}
.x5_c00487{left:160.640000pt;}
.x1_c00487{left:193.280000pt;}
.x4_c00487{left:386.880000pt;}
.x3_c00487{left:396.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_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_5641ec6080c78c8bbe460a81.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00488;src:url('chunks/assets/font_07503a64c390bb3669a0515d.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00488;src:url('chunks/assets/font_a11c50c3d95ede30de49cb19.woff2')format("woff");}.ff4_c00488{font-family:ff4_c00488;line-height:1.102051;font-style:normal;font-weight:normal;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_754ecb9ae6e934be0d3a2ca7.woff2')format("woff");}.ff5_c00488{font-family:ff5_c00488;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_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;}
.v1_c00488{vertical-align:15.840000px;}
.v2_c00488{vertical-align:29.880000px;}
.lsf_c00488{letter-spacing:-0.151200px;}
.ls18_c00488{letter-spacing:-0.093600px;}
.ls17_c00488{letter-spacing:-0.050400px;}
.ls19_c00488{letter-spacing:-0.036000px;}
.ls13_c00488{letter-spacing:-0.028800px;}
.ls11_c00488{letter-spacing:-0.021600px;}
.ls1b_c00488{letter-spacing:-0.019152px;}
.ls10_c00488{letter-spacing:-0.014400px;}
.ls14_c00488{letter-spacing:-0.007200px;}
.ls1a_c00488{letter-spacing:-0.003888px;}
.ls12_c00488{letter-spacing:0.000000px;}
.ls3_c00488{letter-spacing:0.007200px;}
.lsd_c00488{letter-spacing:0.014364px;}
.lsc_c00488{letter-spacing:0.019152px;}
.lsb_c00488{letter-spacing:0.023940px;}
.ls9_c00488{letter-spacing:0.028728px;}
.ls6_c00488{letter-spacing:0.033516px;}
.ls4_c00488{letter-spacing:0.038304px;}
.ls5_c00488{letter-spacing:0.043092px;}
.ls8_c00488{letter-spacing:0.047880px;}
.ls0_c00488{letter-spacing:0.048096px;}
.ls16_c00488{letter-spacing:0.050400px;}
.lsa_c00488{letter-spacing:0.052668px;}
.ls2_c00488{letter-spacing:0.054756px;}
.ls7_c00488{letter-spacing:0.057456px;}
.ls15_c00488{letter-spacing:0.093600px;}
.lse_c00488{letter-spacing:0.464040px;}
.ls1_c00488{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00488{word-spacing:-18.007200px;}
.ws2_c00488{word-spacing:-10.804752px;}
.ws0_c00488{word-spacing:-10.584756px;}
.ws13_c00488{word-spacing:-0.086400px;}
.ws22_c00488{word-spacing:-0.038304px;}
.ws45_c00488{word-spacing:-0.028728px;}
.ws21_c00488{word-spacing:-0.019152px;}
.ws3b_c00488{word-spacing:-0.014364px;}
.ws3c_c00488{word-spacing:-0.009576px;}
.ws18_c00488{word-spacing:-0.007200px;}
.ws42_c00488{word-spacing:-0.004788px;}
.ws4_c00488{word-spacing:0.000000px;}
.ws43_c00488{word-spacing:0.004788px;}
.wsf_c00488{word-spacing:0.014400px;}
.ws47_c00488{word-spacing:0.019152px;}
.ws9_c00488{word-spacing:0.036000px;}
.ws46_c00488{word-spacing:0.038304px;}
.ws3_c00488{word-spacing:0.042084px;}
.ws29_c00488{word-spacing:0.325584px;}
.ws23_c00488{word-spacing:0.335160px;}
.ws28_c00488{word-spacing:0.339948px;}
.ws3e_c00488{word-spacing:0.349524px;}
.ws44_c00488{word-spacing:0.363888px;}
.ws32_c00488{word-spacing:0.689472px;}
.ws31_c00488{word-spacing:0.699048px;}
.ws2f_c00488{word-spacing:1.048572px;}
.ws2c_c00488{word-spacing:1.053360px;}
.ws2e_c00488{word-spacing:1.058148px;}
.ws25_c00488{word-spacing:1.407672px;}
.ws2d_c00488{word-spacing:1.412460px;}
.ws26_c00488{word-spacing:1.417248px;}
.ws24_c00488{word-spacing:1.422036px;}
.ws27_c00488{word-spacing:1.426824px;}
.ws16_c00488{word-spacing:1.440000px;}
.ws17_c00488{word-spacing:1.490400px;}
.ws2a_c00488{word-spacing:2.130660px;}
.ws1f_c00488{word-spacing:2.135448px;}
.ws20_c00488{word-spacing:2.145024px;}
.ws2b_c00488{word-spacing:2.154600px;}
.ws34_c00488{word-spacing:3.212748px;}
.ws30_c00488{word-spacing:3.217536px;}
.ws33_c00488{word-spacing:3.231900px;}
.ws41_c00488{word-spacing:3.236688px;}
.wsc_c00488{word-spacing:3.240000px;}
.ws10_c00488{word-spacing:3.247200px;}
.wsd_c00488{word-spacing:3.312000px;}
.ws38_c00488{word-spacing:4.304412px;}
.ws37_c00488{word-spacing:4.309200px;}
.ws3f_c00488{word-spacing:4.649148px;}
.ws40_c00488{word-spacing:4.668300px;}
.ws3d_c00488{word-spacing:5.027400px;}
.ws15_c00488{word-spacing:5.349600px;}
.ws14_c00488{word-spacing:5.400000px;}
.ws1b_c00488{word-spacing:5.817600px;}
.ws1c_c00488{word-spacing:6.033600px;}
.ws1e_c00488{word-spacing:7.541100px;}
.ws5_c00488{word-spacing:7.574400px;}
.ws6_c00488{word-spacing:7.668000px;}
.ws7_c00488{word-spacing:7.920000px;}
.ws8_c00488{word-spacing:7.977600px;}
.ws36_c00488{word-spacing:8.977500px;}
.ws35_c00488{word-spacing:8.991864px;}
.ws3a_c00488{word-spacing:9.350964px;}
.ws39_c00488{word-spacing:9.355752px;}
.wse_c00488{word-spacing:9.734400px;}
.wsa_c00488{word-spacing:15.796800px;}
.wsb_c00488{word-spacing:15.868800px;}
.ws11_c00488{word-spacing:16.552800px;}
.ws12_c00488{word-spacing:16.567200px;}
.ws1d_c00488{word-spacing:21.391200px;}
.ws19_c00488{word-spacing:29.887200px;}
.ws1a_c00488{word-spacing:30.031200px;}
._0_c00488{margin-left:-1.322640px;}
._1_c00488{width:1.008000px;}
.fc0_c00488{color:rgb(0,0,0);}
.fs5_c00488{font-size:38.880000px;}
.fs3_c00488{font-size:42.120000px;}
.fs4_c00488{font-size:47.880000px;}
.fs2_c00488{font-size:54.000000px;}
.fs0_c00488{font-size:60.120000px;}
.fs1_c00488{font-size:72.000000px;}
.y0_c00488{bottom:0.000000px;}
.y2_c00488{bottom:57.450450px;}
.y32_c00488{bottom:88.232250px;}
.y31_c00488{bottom:106.498470px;}
.y30_c00488{bottom:124.864230px;}
.y2f_c00488{bottom:143.196150px;}
.y2e_c00488{bottom:161.462370px;}
.y2d_c00488{bottom:175.323630px;}
.y2c_c00488{bottom:189.089130px;}
.y2b_c00488{bottom:202.854630px;}
.y2a_c00488{bottom:216.715890px;}
.y29_c00488{bottom:230.481390px;}
.y28_c00488{bottom:244.246890px;}
.y27_c00488{bottom:258.108150px;}
.y26_c00488{bottom:271.873650px;}
.y25_c00488{bottom:285.639150px;}
.y24_c00488{bottom:299.404650px;}
.y23_c00488{bottom:313.265910px;}
.y22_c00488{bottom:327.031410px;}
.y21_c00488{bottom:340.796910px;}
.y20_c00488{bottom:354.658170px;}
.y1f_c00488{bottom:368.423670px;}
.y1e_c00488{bottom:382.189170px;}
.y1d_c00488{bottom:396.050430px;}
.y1c_c00488{bottom:409.815930px;}
.y1b_c00488{bottom:423.581430px;}
.y1a_c00488{bottom:437.442690px;}
.y19_c00488{bottom:451.208190px;}
.y18_c00488{bottom:464.973690px;}
.y17_c00488{bottom:478.834950px;}
.y16_c00488{bottom:492.600450px;}
.y15_c00488{bottom:507.810450px;}
.y14_c00488{bottom:528.510450px;}
.y13_c00488{bottom:549.210450px;}
.y12_c00488{bottom:588.810450px;}
.y11_c00488{bottom:623.190450px;}
.y10_c00488{bottom:657.660450px;}
.yf_c00488{bottom:701.040600px;}
.ye_c00488{bottom:735.510600px;}
.yd_c00488{bottom:769.890600px;}
.yc_c00488{bottom:813.360450px;}
.yb_c00488{bottom:847.740450px;}
.ya_c00488{bottom:882.210450px;}
.y9_c00488{bottom:925.590450px;}
.y8_c00488{bottom:960.060450px;}
.y7_c00488{bottom:994.440450px;}
.y6_c00488{bottom:1028.910450px;}
.y5_c00488{bottom:1072.290450px;}
.y4_c00488{bottom:1106.760450px;}
.y3_c00488{bottom:1141.140450px;}
.y1_c00488{bottom:1196.850450px;}
.h7_c00488{height:47.988281px;}
.h8_c00488{height:49.937344px;}
.h1_c00488{height:50.315273px;}
.h3_c00488{height:60.257812px;}
.h5_c00488{height:60.890625px;}
.h6_c00488{height:65.130220px;}
.h4_c00488{height:65.130820px;}
.h2_c00488{height:72.160312px;}
.h0_c00488{height:1263.000000px;}
.w1_c00488{width:892.500000px;}
.w0_c00488{width:892.830000px;}
.x0_c00488{left:0.000000px;}
.x1_c00488{left:127.620000px;}
.x3_c00488{left:154.624320px;}
.x2_c00488{left:180.810000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.v1_c00488{vertical-align:14.080000pt;}
.v2_c00488{vertical-align:26.560000pt;}
.lsf_c00488{letter-spacing:-0.134400pt;}
.ls18_c00488{letter-spacing:-0.083200pt;}
.ls17_c00488{letter-spacing:-0.044800pt;}
.ls19_c00488{letter-spacing:-0.032000pt;}
.ls13_c00488{letter-spacing:-0.025600pt;}
.ls11_c00488{letter-spacing:-0.019200pt;}
.ls1b_c00488{letter-spacing:-0.017024pt;}
.ls10_c00488{letter-spacing:-0.012800pt;}
.ls14_c00488{letter-spacing:-0.006400pt;}
.ls1a_c00488{letter-spacing:-0.003456pt;}
.ls12_c00488{letter-spacing:0.000000pt;}
.ls3_c00488{letter-spacing:0.006400pt;}
.lsd_c00488{letter-spacing:0.012768pt;}
.lsc_c00488{letter-spacing:0.017024pt;}
.lsb_c00488{letter-spacing:0.021280pt;}
.ls9_c00488{letter-spacing:0.025536pt;}
.ls6_c00488{letter-spacing:0.029792pt;}
.ls4_c00488{letter-spacing:0.034048pt;}
.ls5_c00488{letter-spacing:0.038304pt;}
.ls8_c00488{letter-spacing:0.042560pt;}
.ls0_c00488{letter-spacing:0.042752pt;}
.ls16_c00488{letter-spacing:0.044800pt;}
.lsa_c00488{letter-spacing:0.046816pt;}
.ls2_c00488{letter-spacing:0.048672pt;}
.ls7_c00488{letter-spacing:0.051072pt;}
.ls15_c00488{letter-spacing:0.083200pt;}
.lse_c00488{letter-spacing:0.412480pt;}
.ls1_c00488{letter-spacing:1077.440000pt;}
.ws1_c00488{word-spacing:-16.006400pt;}
.ws2_c00488{word-spacing:-9.604224pt;}
.ws0_c00488{word-spacing:-9.408672pt;}
.ws13_c00488{word-spacing:-0.076800pt;}
.ws22_c00488{word-spacing:-0.034048pt;}
.ws45_c00488{word-spacing:-0.025536pt;}
.ws21_c00488{word-spacing:-0.017024pt;}
.ws3b_c00488{word-spacing:-0.012768pt;}
.ws3c_c00488{word-spacing:-0.008512pt;}
.ws18_c00488{word-spacing:-0.006400pt;}
.ws42_c00488{word-spacing:-0.004256pt;}
.ws4_c00488{word-spacing:0.000000pt;}
.ws43_c00488{word-spacing:0.004256pt;}
.wsf_c00488{word-spacing:0.012800pt;}
.ws47_c00488{word-spacing:0.017024pt;}
.ws9_c00488{word-spacing:0.032000pt;}
.ws46_c00488{word-spacing:0.034048pt;}
.ws3_c00488{word-spacing:0.037408pt;}
.ws29_c00488{word-spacing:0.289408pt;}
.ws23_c00488{word-spacing:0.297920pt;}
.ws28_c00488{word-spacing:0.302176pt;}
.ws3e_c00488{word-spacing:0.310688pt;}
.ws44_c00488{word-spacing:0.323456pt;}
.ws32_c00488{word-spacing:0.612864pt;}
.ws31_c00488{word-spacing:0.621376pt;}
.ws2f_c00488{word-spacing:0.932064pt;}
.ws2c_c00488{word-spacing:0.936320pt;}
.ws2e_c00488{word-spacing:0.940576pt;}
.ws25_c00488{word-spacing:1.251264pt;}
.ws2d_c00488{word-spacing:1.255520pt;}
.ws26_c00488{word-spacing:1.259776pt;}
.ws24_c00488{word-spacing:1.264032pt;}
.ws27_c00488{word-spacing:1.268288pt;}
.ws16_c00488{word-spacing:1.280000pt;}
.ws17_c00488{word-spacing:1.324800pt;}
.ws2a_c00488{word-spacing:1.893920pt;}
.ws1f_c00488{word-spacing:1.898176pt;}
.ws20_c00488{word-spacing:1.906688pt;}
.ws2b_c00488{word-spacing:1.915200pt;}
.ws34_c00488{word-spacing:2.855776pt;}
.ws30_c00488{word-spacing:2.860032pt;}
.ws33_c00488{word-spacing:2.872800pt;}
.ws41_c00488{word-spacing:2.877056pt;}
.wsc_c00488{word-spacing:2.880000pt;}
.ws10_c00488{word-spacing:2.886400pt;}
.wsd_c00488{word-spacing:2.944000pt;}
.ws38_c00488{word-spacing:3.826144pt;}
.ws37_c00488{word-spacing:3.830400pt;}
.ws3f_c00488{word-spacing:4.132576pt;}
.ws40_c00488{word-spacing:4.149600pt;}
.ws3d_c00488{word-spacing:4.468800pt;}
.ws15_c00488{word-spacing:4.755200pt;}
.ws14_c00488{word-spacing:4.800000pt;}
.ws1b_c00488{word-spacing:5.171200pt;}
.ws1c_c00488{word-spacing:5.363200pt;}
.ws1e_c00488{word-spacing:6.703200pt;}
.ws5_c00488{word-spacing:6.732800pt;}
.ws6_c00488{word-spacing:6.816000pt;}
.ws7_c00488{word-spacing:7.040000pt;}
.ws8_c00488{word-spacing:7.091200pt;}
.ws36_c00488{word-spacing:7.980000pt;}
.ws35_c00488{word-spacing:7.992768pt;}
.ws3a_c00488{word-spacing:8.311968pt;}
.ws39_c00488{word-spacing:8.316224pt;}
.wse_c00488{word-spacing:8.652800pt;}
.wsa_c00488{word-spacing:14.041600pt;}
.wsb_c00488{word-spacing:14.105600pt;}
.ws11_c00488{word-spacing:14.713600pt;}
.ws12_c00488{word-spacing:14.726400pt;}
.ws1d_c00488{word-spacing:19.014400pt;}
.ws19_c00488{word-spacing:26.566400pt;}
.ws1a_c00488{word-spacing:26.694400pt;}
._0_c00488{margin-left:-1.175680pt;}
._1_c00488{width:0.896000pt;}
.fs5_c00488{font-size:34.560000pt;}
.fs3_c00488{font-size:37.440000pt;}
.fs4_c00488{font-size:42.560000pt;}
.fs2_c00488{font-size:48.000000pt;}
.fs0_c00488{font-size:53.440000pt;}
.fs1_c00488{font-size:64.000000pt;}
.y0_c00488{bottom:0.000000pt;}
.y2_c00488{bottom:51.067067pt;}
.y32_c00488{bottom:78.428667pt;}
.y31_c00488{bottom:94.665307pt;}
.y30_c00488{bottom:110.990427pt;}
.y2f_c00488{bottom:127.285467pt;}
.y2e_c00488{bottom:143.522107pt;}
.y2d_c00488{bottom:155.843227pt;}
.y2c_c00488{bottom:168.079227pt;}
.y2b_c00488{bottom:180.315227pt;}
.y2a_c00488{bottom:192.636347pt;}
.y29_c00488{bottom:204.872347pt;}
.y28_c00488{bottom:217.108347pt;}
.y27_c00488{bottom:229.429467pt;}
.y26_c00488{bottom:241.665467pt;}
.y25_c00488{bottom:253.901467pt;}
.y24_c00488{bottom:266.137467pt;}
.y23_c00488{bottom:278.458587pt;}
.y22_c00488{bottom:290.694587pt;}
.y21_c00488{bottom:302.930587pt;}
.y20_c00488{bottom:315.251707pt;}
.y1f_c00488{bottom:327.487707pt;}
.y1e_c00488{bottom:339.723707pt;}
.y1d_c00488{bottom:352.044827pt;}
.y1c_c00488{bottom:364.280827pt;}
.y1b_c00488{bottom:376.516827pt;}
.y1a_c00488{bottom:388.837947pt;}
.y19_c00488{bottom:401.073947pt;}
.y18_c00488{bottom:413.309947pt;}
.y17_c00488{bottom:425.631067pt;}
.y16_c00488{bottom:437.867067pt;}
.y15_c00488{bottom:451.387067pt;}
.y14_c00488{bottom:469.787067pt;}
.y13_c00488{bottom:488.187067pt;}
.y12_c00488{bottom:523.387067pt;}
.y11_c00488{bottom:553.947067pt;}
.y10_c00488{bottom:584.587067pt;}
.yf_c00488{bottom:623.147200pt;}
.ye_c00488{bottom:653.787200pt;}
.yd_c00488{bottom:684.347200pt;}
.yc_c00488{bottom:722.987067pt;}
.yb_c00488{bottom:753.547067pt;}
.ya_c00488{bottom:784.187067pt;}
.y9_c00488{bottom:822.747067pt;}
.y8_c00488{bottom:853.387067pt;}
.y7_c00488{bottom:883.947067pt;}
.y6_c00488{bottom:914.587067pt;}
.y5_c00488{bottom:953.147067pt;}
.y4_c00488{bottom:983.787067pt;}
.y3_c00488{bottom:1014.347067pt;}
.y1_c00488{bottom:1063.867067pt;}
.h7_c00488{height:42.656250pt;}
.h8_c00488{height:44.388750pt;}
.h1_c00488{height:44.724687pt;}
.h3_c00488{height:53.562500pt;}
.h5_c00488{height:54.125000pt;}
.h6_c00488{height:57.893529pt;}
.h4_c00488{height:57.894062pt;}
.h2_c00488{height:64.142500pt;}
.h0_c00488{height:1122.666667pt;}
.w1_c00488{width:793.333333pt;}
.w0_c00488{width:793.626667pt;}
.x0_c00488{left:0.000000pt;}
.x1_c00488{left:113.440000pt;}
.x3_c00488{left:137.443840pt;}
.x2_c00488{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_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_79925600a233f3035c2b2ac3.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_6b39890501e8fc4fca06b48e.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00489;src:url('chunks/assets/font_b20f59bdbc619d8c0312e310.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;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_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.v1_c00489{vertical-align:15.149520px;}
.lse_c00489{letter-spacing:-0.151200px;}
.ls12_c00489{letter-spacing:-0.043200px;}
.ls14_c00489{letter-spacing:-0.042084px;}
.ls17_c00489{letter-spacing:-0.036000px;}
.lsb_c00489{letter-spacing:-0.030060px;}
.ls15_c00489{letter-spacing:-0.028800px;}
.ls13_c00489{letter-spacing:-0.024048px;}
.lsf_c00489{letter-spacing:-0.021600px;}
.ls16_c00489{letter-spacing:-0.014400px;}
.ls11_c00489{letter-spacing:-0.007200px;}
.lsc_c00489{letter-spacing:-0.006012px;}
.ls18_c00489{letter-spacing:-0.003888px;}
.lsd_c00489{letter-spacing:0.000000px;}
.ls1_c00489{letter-spacing:0.012024px;}
.ls6_c00489{letter-spacing:0.014364px;}
.ls0_c00489{letter-spacing:0.014400px;}
.ls10_c00489{letter-spacing:0.021600px;}
.lsa_c00489{letter-spacing:0.023940px;}
.ls9_c00489{letter-spacing:0.028728px;}
.ls5_c00489{letter-spacing:0.030060px;}
.ls2_c00489{letter-spacing:0.036072px;}
.ls8_c00489{letter-spacing:0.047880px;}
.ls3_c00489{letter-spacing:0.136080px;}
.ls4_c00489{letter-spacing:0.153720px;}
.ls7_c00489{letter-spacing:0.464040px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00489{word-spacing:-10.804752px;}
.ws0_c00489{word-spacing:-9.856080px;}
.ws3_c00489{word-spacing:-0.264528px;}
.ws2_c00489{word-spacing:-0.240480px;}
.ws1e_c00489{word-spacing:-0.028728px;}
.ws20_c00489{word-spacing:-0.009576px;}
.ws21_c00489{word-spacing:-0.004788px;}
.ws4_c00489{word-spacing:0.000000px;}
.ws1c_c00489{word-spacing:0.004788px;}
.wsa_c00489{word-spacing:0.007200px;}
.ws1f_c00489{word-spacing:0.019152px;}
.ws13_c00489{word-spacing:0.060120px;}
.ws14_c00489{word-spacing:0.120240px;}
.wsf_c00489{word-spacing:0.132264px;}
.ws1d_c00489{word-spacing:0.363888px;}
.wse_c00489{word-spacing:0.775548px;}
.wsd_c00489{word-spacing:0.835668px;}
.ws7_c00489{word-spacing:1.065600px;}
.ws11_c00489{word-spacing:1.771200px;}
.ws12_c00489{word-spacing:1.821600px;}
.ws15_c00489{word-spacing:2.829600px;}
.ws16_c00489{word-spacing:2.916000px;}
.ws5_c00489{word-spacing:6.501600px;}
.ws6_c00489{word-spacing:7.221600px;}
.ws18_c00489{word-spacing:7.545600px;}
.ws17_c00489{word-spacing:7.574400px;}
.ws19_c00489{word-spacing:10.087200px;}
.ws1a_c00489{word-spacing:10.137600px;}
.ws1b_c00489{word-spacing:11.894400px;}
.ws9_c00489{word-spacing:13.320000px;}
.ws8_c00489{word-spacing:13.327200px;}
.wsb_c00489{word-spacing:13.755456px;}
.wsc_c00489{word-spacing:13.773492px;}
.ws10_c00489{word-spacing:17.668800px;}
._1_c00489{margin-left:-13.707360px;}
._2_c00489{margin-left:-1.322640px;}
._0_c00489{width:1.052100px;}
.fc0_c00489{color:rgb(0,0,0);}
.fs3_c00489{font-size:38.880000px;}
.fs4_c00489{font-size:47.880000px;}
.fs2_c00489{font-size:54.000000px;}
.fs0_c00489{font-size:60.120000px;}
.fs1_c00489{font-size:72.000000px;}
.y0_c00489{bottom:0.000000px;}
.y3_c00489{bottom:57.450450px;}
.y4_c00489{bottom:61.410450px;}
.y1b_c00489{bottom:88.234230px;}
.y1a_c00489{bottom:106.500450px;}
.y19_c00489{bottom:121.710450px;}
.y18_c00489{bottom:142.410450px;}
.y17_c00489{bottom:163.110450px;}
.y16_c00489{bottom:267.690450px;}
.y15_c00489{bottom:302.070450px;}
.y14_c00489{bottom:336.540450px;}
.y13_c00489{bottom:370.920450px;}
.y12_c00489{bottom:408.450600px;}
.y11_c00489{bottom:430.320450px;}
.y10_c00489{bottom:779.160450px;}
.yf_c00489{bottom:813.540450px;}
.ye_c00489{bottom:848.010450px;}
.yd_c00489{bottom:885.443070px;}
.yc_c00489{bottom:902.366850px;}
.yb_c00489{bottom:919.200450px;}
.ya_c00489{bottom:960.060450px;}
.y9_c00489{bottom:994.440450px;}
.y8_c00489{bottom:1028.910450px;}
.y7_c00489{bottom:1072.290450px;}
.y6_c00489{bottom:1106.760450px;}
.y5_c00489{bottom:1141.140450px;}
.y2_c00489{bottom:1176.420450px;}
.y1_c00489{bottom:1196.940450px;}
.h2_c00489{height:47.988281px;}
.h6_c00489{height:49.937344px;}
.h1_c00489{height:50.315273px;}
.h3_c00489{height:56.320312px;}
.h4_c00489{height:60.257812px;}
.h5_c00489{height:60.287333px;}
.h0_c00489{height:1263.000000px;}
.w1_c00489{width:892.500000px;}
.w0_c00489{width:892.830000px;}
.x0_c00489{left:0.000000px;}
.x2_c00489{left:127.620000px;}
.x5_c00489{left:180.810000px;}
.x7_c00489{left:197.190000px;}
.x1_c00489{left:217.440000px;}
.x4_c00489{left:435.240000px;}
.x3_c00489{left:446.490000px;}
.x6_c00489{left:694.980000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.v1_c00489{vertical-align:13.466240pt;}
.lse_c00489{letter-spacing:-0.134400pt;}
.ls12_c00489{letter-spacing:-0.038400pt;}
.ls14_c00489{letter-spacing:-0.037408pt;}
.ls17_c00489{letter-spacing:-0.032000pt;}
.lsb_c00489{letter-spacing:-0.026720pt;}
.ls15_c00489{letter-spacing:-0.025600pt;}
.ls13_c00489{letter-spacing:-0.021376pt;}
.lsf_c00489{letter-spacing:-0.019200pt;}
.ls16_c00489{letter-spacing:-0.012800pt;}
.ls11_c00489{letter-spacing:-0.006400pt;}
.lsc_c00489{letter-spacing:-0.005344pt;}
.ls18_c00489{letter-spacing:-0.003456pt;}
.lsd_c00489{letter-spacing:0.000000pt;}
.ls1_c00489{letter-spacing:0.010688pt;}
.ls6_c00489{letter-spacing:0.012768pt;}
.ls0_c00489{letter-spacing:0.012800pt;}
.ls10_c00489{letter-spacing:0.019200pt;}
.lsa_c00489{letter-spacing:0.021280pt;}
.ls9_c00489{letter-spacing:0.025536pt;}
.ls5_c00489{letter-spacing:0.026720pt;}
.ls2_c00489{letter-spacing:0.032064pt;}
.ls8_c00489{letter-spacing:0.042560pt;}
.ls3_c00489{letter-spacing:0.120960pt;}
.ls4_c00489{letter-spacing:0.136640pt;}
.ls7_c00489{letter-spacing:0.412480pt;}
.ws1_c00489{word-spacing:-9.604224pt;}
.ws0_c00489{word-spacing:-8.760960pt;}
.ws3_c00489{word-spacing:-0.235136pt;}
.ws2_c00489{word-spacing:-0.213760pt;}
.ws1e_c00489{word-spacing:-0.025536pt;}
.ws20_c00489{word-spacing:-0.008512pt;}
.ws21_c00489{word-spacing:-0.004256pt;}
.ws4_c00489{word-spacing:0.000000pt;}
.ws1c_c00489{word-spacing:0.004256pt;}
.wsa_c00489{word-spacing:0.006400pt;}
.ws1f_c00489{word-spacing:0.017024pt;}
.ws13_c00489{word-spacing:0.053440pt;}
.ws14_c00489{word-spacing:0.106880pt;}
.wsf_c00489{word-spacing:0.117568pt;}
.ws1d_c00489{word-spacing:0.323456pt;}
.wse_c00489{word-spacing:0.689376pt;}
.wsd_c00489{word-spacing:0.742816pt;}
.ws7_c00489{word-spacing:0.947200pt;}
.ws11_c00489{word-spacing:1.574400pt;}
.ws12_c00489{word-spacing:1.619200pt;}
.ws15_c00489{word-spacing:2.515200pt;}
.ws16_c00489{word-spacing:2.592000pt;}
.ws5_c00489{word-spacing:5.779200pt;}
.ws6_c00489{word-spacing:6.419200pt;}
.ws18_c00489{word-spacing:6.707200pt;}
.ws17_c00489{word-spacing:6.732800pt;}
.ws19_c00489{word-spacing:8.966400pt;}
.ws1a_c00489{word-spacing:9.011200pt;}
.ws1b_c00489{word-spacing:10.572800pt;}
.ws9_c00489{word-spacing:11.840000pt;}
.ws8_c00489{word-spacing:11.846400pt;}
.wsb_c00489{word-spacing:12.227072pt;}
.wsc_c00489{word-spacing:12.243104pt;}
.ws10_c00489{word-spacing:15.705600pt;}
._1_c00489{margin-left:-12.184320pt;}
._2_c00489{margin-left:-1.175680pt;}
._0_c00489{width:0.935200pt;}
.fs3_c00489{font-size:34.560000pt;}
.fs4_c00489{font-size:42.560000pt;}
.fs2_c00489{font-size:48.000000pt;}
.fs0_c00489{font-size:53.440000pt;}
.fs1_c00489{font-size:64.000000pt;}
.y0_c00489{bottom:0.000000pt;}
.y3_c00489{bottom:51.067067pt;}
.y4_c00489{bottom:54.587067pt;}
.y1b_c00489{bottom:78.430427pt;}
.y1a_c00489{bottom:94.667067pt;}
.y19_c00489{bottom:108.187067pt;}
.y18_c00489{bottom:126.587067pt;}
.y17_c00489{bottom:144.987067pt;}
.y16_c00489{bottom:237.947067pt;}
.y15_c00489{bottom:268.507067pt;}
.y14_c00489{bottom:299.147067pt;}
.y13_c00489{bottom:329.707067pt;}
.y12_c00489{bottom:363.067200pt;}
.y11_c00489{bottom:382.507067pt;}
.y10_c00489{bottom:692.587067pt;}
.yf_c00489{bottom:723.147067pt;}
.ye_c00489{bottom:753.787067pt;}
.yd_c00489{bottom:787.060507pt;}
.yc_c00489{bottom:802.103867pt;}
.yb_c00489{bottom:817.067067pt;}
.ya_c00489{bottom:853.387067pt;}
.y9_c00489{bottom:883.947067pt;}
.y8_c00489{bottom:914.587067pt;}
.y7_c00489{bottom:953.147067pt;}
.y6_c00489{bottom:983.787067pt;}
.y5_c00489{bottom:1014.347067pt;}
.y2_c00489{bottom:1045.707067pt;}
.y1_c00489{bottom:1063.947067pt;}
.h2_c00489{height:42.656250pt;}
.h6_c00489{height:44.388750pt;}
.h1_c00489{height:44.724687pt;}
.h3_c00489{height:50.062500pt;}
.h4_c00489{height:53.562500pt;}
.h5_c00489{height:53.588740pt;}
.h0_c00489{height:1122.666667pt;}
.w1_c00489{width:793.333333pt;}
.w0_c00489{width:793.626667pt;}
.x0_c00489{left:0.000000pt;}
.x2_c00489{left:113.440000pt;}
.x5_c00489{left:160.720000pt;}
.x7_c00489{left:175.280000pt;}
.x1_c00489{left:193.280000pt;}
.x4_c00489{left:386.880000pt;}
.x3_c00489{left:396.880000pt;}
.x6_c00489{left:617.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_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_772972f0ce1d65cdb9fd3244.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00490;src:url('chunks/assets/font_9795fc60d44daa2e0566cdbd.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00490;src:url('chunks/assets/font_f1931acc0246af3064bdb8e4.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;line-height:1.102051;font-style:normal;font-weight:normal;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_754ecb9ae6e934be0d3a2ca7.woff2')format("woff");}.ff5_c00490{font-family:ff5_c00490;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_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);}
.v3_c00490{vertical-align:-15.120600px;}
.v0_c00490{vertical-align:0.000000px;}
.v1_c00490{vertical-align:15.840000px;}
.v2_c00490{vertical-align:29.880000px;}
.ls14_c00490{letter-spacing:-0.151200px;}
.ls21_c00490{letter-spacing:-0.144288px;}
.ls20_c00490{letter-spacing:-0.050400px;}
.ls1d_c00490{letter-spacing:-0.048096px;}
.ls1b_c00490{letter-spacing:-0.036000px;}
.ls1e_c00490{letter-spacing:-0.030060px;}
.ls17_c00490{letter-spacing:-0.028800px;}
.ls19_c00490{letter-spacing:-0.021600px;}
.ls1f_c00490{letter-spacing:-0.018036px;}
.ls15_c00490{letter-spacing:-0.014400px;}
.ls22_c00490{letter-spacing:-0.012024px;}
.ls16_c00490{letter-spacing:-0.007200px;}
.ls23_c00490{letter-spacing:-0.006012px;}
.ls24_c00490{letter-spacing:-0.003888px;}
.ls1a_c00490{letter-spacing:0.000000px;}
.ls9_c00490{letter-spacing:0.006012px;}
.ls3_c00490{letter-spacing:0.007200px;}
.lse_c00490{letter-spacing:0.014364px;}
.ls1c_c00490{letter-spacing:0.014400px;}
.lsa_c00490{letter-spacing:0.018036px;}
.ls5_c00490{letter-spacing:0.021600px;}
.ls13_c00490{letter-spacing:0.023940px;}
.lsd_c00490{letter-spacing:0.028800px;}
.ls6_c00490{letter-spacing:0.036072px;}
.ls8_c00490{letter-spacing:0.042084px;}
.ls11_c00490{letter-spacing:0.043092px;}
.ls10_c00490{letter-spacing:0.047880px;}
.ls0_c00490{letter-spacing:0.048096px;}
.lsb_c00490{letter-spacing:0.054108px;}
.ls2_c00490{letter-spacing:0.054756px;}
.ls12_c00490{letter-spacing:0.062244px;}
.ls4_c00490{letter-spacing:0.072000px;}
.ls18_c00490{letter-spacing:0.093600px;}
.lsc_c00490{letter-spacing:0.136080px;}
.ls7_c00490{letter-spacing:0.153720px;}
.lsf_c00490{letter-spacing:0.464040px;}
.ls1_c00490{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00490{word-spacing:-10.804752px;}
.ws0_c00490{word-spacing:-10.584756px;}
.ws1_c00490{word-spacing:-9.856080px;}
.ws1a_c00490{word-spacing:-0.318636px;}
.ws19_c00490{word-spacing:-0.252504px;}
.ws30_c00490{word-spacing:-0.050400px;}
.ws3b_c00490{word-spacing:-0.043092px;}
.ws39_c00490{word-spacing:-0.028728px;}
.ws3a_c00490{word-spacing:-0.023940px;}
.ws14_c00490{word-spacing:-0.014400px;}
.ws36_c00490{word-spacing:-0.007200px;}
.ws3c_c00490{word-spacing:-0.004788px;}
.ws4_c00490{word-spacing:0.000000px;}
.ws37_c00490{word-spacing:0.004788px;}
.ws1d_c00490{word-spacing:0.036000px;}
.ws3_c00490{word-spacing:0.042084px;}
.wsd_c00490{word-spacing:0.050400px;}
.ws1e_c00490{word-spacing:0.057600px;}
.ws7_c00490{word-spacing:0.115200px;}
.ws38_c00490{word-spacing:0.363888px;}
.ws1c_c00490{word-spacing:0.410400px;}
.ws27_c00490{word-spacing:0.757512px;}
.ws26_c00490{word-spacing:0.817632px;}
.ws10_c00490{word-spacing:1.447200px;}
.ws11_c00490{word-spacing:1.526400px;}
.ws32_c00490{word-spacing:2.160000px;}
.ws9_c00490{word-spacing:2.174400px;}
.ws8_c00490{word-spacing:2.210400px;}
.ws33_c00490{word-spacing:2.232000px;}
.ws20_c00490{word-spacing:2.603196px;}
.ws1f_c00490{word-spacing:2.927844px;}
.ws2a_c00490{word-spacing:3.997980px;}
.ws2b_c00490{word-spacing:4.046076px;}
.ws2c_c00490{word-spacing:4.100184px;}
.ws2f_c00490{word-spacing:5.407200px;}
.wsa_c00490{word-spacing:6.472800px;}
.wsb_c00490{word-spacing:6.544800px;}
.ws28_c00490{word-spacing:6.571116px;}
.ws29_c00490{word-spacing:6.583140px;}
.ws21_c00490{word-spacing:6.913800px;}
.ws22_c00490{word-spacing:6.931836px;}
.ws16_c00490{word-spacing:6.961896px;}
.ws15_c00490{word-spacing:6.979932px;}
.wsc_c00490{word-spacing:7.214400px;}
.wsf_c00490{word-spacing:7.596000px;}
.wse_c00490{word-spacing:7.603200px;}
.ws1b_c00490{word-spacing:7.920000px;}
.ws18_c00490{word-spacing:9.775512px;}
.ws17_c00490{word-spacing:9.829620px;}
.ws34_c00490{word-spacing:10.389600px;}
.ws35_c00490{word-spacing:10.468800px;}
.ws2e_c00490{word-spacing:11.491200px;}
.ws2d_c00490{word-spacing:11.577600px;}
.ws25_c00490{word-spacing:13.046040px;}
.ws6_c00490{word-spacing:13.370400px;}
.ws5_c00490{word-spacing:13.384800px;}
.ws24_c00490{word-spacing:13.424796px;}
.ws23_c00490{word-spacing:13.557060px;}
.ws12_c00490{word-spacing:14.752800px;}
.ws13_c00490{word-spacing:14.774400px;}
.ws31_c00490{word-spacing:16.200000px;}
._0_c00490{margin-left:-1.322640px;}
._1_c00490{width:1.022400px;}
.fc0_c00490{color:rgb(0,0,0);}
.fs4_c00490{font-size:38.880000px;}
.fs3_c00490{font-size:42.120000px;}
.fs5_c00490{font-size:47.880000px;}
.fs2_c00490{font-size:54.000000px;}
.fs0_c00490{font-size:60.120000px;}
.fs1_c00490{font-size:72.000000px;}
.y0_c00490{bottom:0.000000px;}
.y2_c00490{bottom:57.450450px;}
.y28_c00490{bottom:88.234230px;}
.y27_c00490{bottom:106.498470px;}
.y26_c00490{bottom:124.864230px;}
.y25_c00490{bottom:143.134230px;}
.y24_c00490{bottom:161.398470px;}
.y23_c00490{bottom:179.760450px;}
.y22_c00490{bottom:194.970600px;}
.y21_c00490{bottom:215.670600px;}
.y20_c00490{bottom:236.370450px;}
.y1f_c00490{bottom:268.410450px;}
.y1e_c00490{bottom:302.790450px;}
.y1d_c00490{bottom:337.260450px;}
.y1c_c00490{bottom:371.640450px;}
.y1b_c00490{bottom:415.110450px;}
.y1a_c00490{bottom:449.490450px;}
.y19_c00490{bottom:483.960450px;}
.y18_c00490{bottom:525.180600px;}
.y17_c00490{bottom:538.302090px;}
.y16_c00490{bottom:555.135690px;}
.y15_c00490{bottom:572.059470px;}
.y14_c00490{bottom:588.893070px;}
.y13_c00490{bottom:605.816850px;}
.y12_c00490{bottom:622.650450px;}
.y11_c00490{bottom:663.510450px;}
.y10_c00490{bottom:697.890450px;}
.yf_c00490{bottom:736.142880px;}
.ye_c00490{bottom:755.666850px;}
.yd_c00490{bottom:772.500450px;}
.yc_c00490{bottom:813.360450px;}
.yb_c00490{bottom:847.740450px;}
.ya_c00490{bottom:882.210450px;}
.y9_c00490{bottom:916.590450px;}
.y8_c00490{bottom:960.060450px;}
.y7_c00490{bottom:994.440450px;}
.y6_c00490{bottom:1028.910450px;}
.y5_c00490{bottom:1063.290450px;}
.y4_c00490{bottom:1106.760450px;}
.y3_c00490{bottom:1141.140450px;}
.y1_c00490{bottom:1196.850450px;}
.h7_c00490{height:45.137212px;}
.h9_c00490{height:47.988281px;}
.h8_c00490{height:47.988881px;}
.ha_c00490{height:49.937344px;}
.hb_c00490{height:49.945264px;}
.h1_c00490{height:50.315273px;}
.h3_c00490{height:60.257812px;}
.h6_c00490{height:60.890625px;}
.h5_c00490{height:65.121100px;}
.h4_c00490{height:65.130820px;}
.h2_c00490{height:72.160312px;}
.h0_c00490{height:1263.000000px;}
.w1_c00490{width:892.500000px;}
.w0_c00490{width:892.830000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:127.620000px;}
.x2_c00490{left:180.810000px;}
@media print{
.v3_c00490{vertical-align:-13.440533pt;}
.v0_c00490{vertical-align:0.000000pt;}
.v1_c00490{vertical-align:14.080000pt;}
.v2_c00490{vertical-align:26.560000pt;}
.ls14_c00490{letter-spacing:-0.134400pt;}
.ls21_c00490{letter-spacing:-0.128256pt;}
.ls20_c00490{letter-spacing:-0.044800pt;}
.ls1d_c00490{letter-spacing:-0.042752pt;}
.ls1b_c00490{letter-spacing:-0.032000pt;}
.ls1e_c00490{letter-spacing:-0.026720pt;}
.ls17_c00490{letter-spacing:-0.025600pt;}
.ls19_c00490{letter-spacing:-0.019200pt;}
.ls1f_c00490{letter-spacing:-0.016032pt;}
.ls15_c00490{letter-spacing:-0.012800pt;}
.ls22_c00490{letter-spacing:-0.010688pt;}
.ls16_c00490{letter-spacing:-0.006400pt;}
.ls23_c00490{letter-spacing:-0.005344pt;}
.ls24_c00490{letter-spacing:-0.003456pt;}
.ls1a_c00490{letter-spacing:0.000000pt;}
.ls9_c00490{letter-spacing:0.005344pt;}
.ls3_c00490{letter-spacing:0.006400pt;}
.lse_c00490{letter-spacing:0.012768pt;}
.ls1c_c00490{letter-spacing:0.012800pt;}
.lsa_c00490{letter-spacing:0.016032pt;}
.ls5_c00490{letter-spacing:0.019200pt;}
.ls13_c00490{letter-spacing:0.021280pt;}
.lsd_c00490{letter-spacing:0.025600pt;}
.ls6_c00490{letter-spacing:0.032064pt;}
.ls8_c00490{letter-spacing:0.037408pt;}
.ls11_c00490{letter-spacing:0.038304pt;}
.ls10_c00490{letter-spacing:0.042560pt;}
.ls0_c00490{letter-spacing:0.042752pt;}
.lsb_c00490{letter-spacing:0.048096pt;}
.ls2_c00490{letter-spacing:0.048672pt;}
.ls12_c00490{letter-spacing:0.055328pt;}
.ls4_c00490{letter-spacing:0.064000pt;}
.ls18_c00490{letter-spacing:0.083200pt;}
.lsc_c00490{letter-spacing:0.120960pt;}
.ls7_c00490{letter-spacing:0.136640pt;}
.lsf_c00490{letter-spacing:0.412480pt;}
.ls1_c00490{letter-spacing:1077.440000pt;}
.ws2_c00490{word-spacing:-9.604224pt;}
.ws0_c00490{word-spacing:-9.408672pt;}
.ws1_c00490{word-spacing:-8.760960pt;}
.ws1a_c00490{word-spacing:-0.283232pt;}
.ws19_c00490{word-spacing:-0.224448pt;}
.ws30_c00490{word-spacing:-0.044800pt;}
.ws3b_c00490{word-spacing:-0.038304pt;}
.ws39_c00490{word-spacing:-0.025536pt;}
.ws3a_c00490{word-spacing:-0.021280pt;}
.ws14_c00490{word-spacing:-0.012800pt;}
.ws36_c00490{word-spacing:-0.006400pt;}
.ws3c_c00490{word-spacing:-0.004256pt;}
.ws4_c00490{word-spacing:0.000000pt;}
.ws37_c00490{word-spacing:0.004256pt;}
.ws1d_c00490{word-spacing:0.032000pt;}
.ws3_c00490{word-spacing:0.037408pt;}
.wsd_c00490{word-spacing:0.044800pt;}
.ws1e_c00490{word-spacing:0.051200pt;}
.ws7_c00490{word-spacing:0.102400pt;}
.ws38_c00490{word-spacing:0.323456pt;}
.ws1c_c00490{word-spacing:0.364800pt;}
.ws27_c00490{word-spacing:0.673344pt;}
.ws26_c00490{word-spacing:0.726784pt;}
.ws10_c00490{word-spacing:1.286400pt;}
.ws11_c00490{word-spacing:1.356800pt;}
.ws32_c00490{word-spacing:1.920000pt;}
.ws9_c00490{word-spacing:1.932800pt;}
.ws8_c00490{word-spacing:1.964800pt;}
.ws33_c00490{word-spacing:1.984000pt;}
.ws20_c00490{word-spacing:2.313952pt;}
.ws1f_c00490{word-spacing:2.602528pt;}
.ws2a_c00490{word-spacing:3.553760pt;}
.ws2b_c00490{word-spacing:3.596512pt;}
.ws2c_c00490{word-spacing:3.644608pt;}
.ws2f_c00490{word-spacing:4.806400pt;}
.wsa_c00490{word-spacing:5.753600pt;}
.wsb_c00490{word-spacing:5.817600pt;}
.ws28_c00490{word-spacing:5.840992pt;}
.ws29_c00490{word-spacing:5.851680pt;}
.ws21_c00490{word-spacing:6.145600pt;}
.ws22_c00490{word-spacing:6.161632pt;}
.ws16_c00490{word-spacing:6.188352pt;}
.ws15_c00490{word-spacing:6.204384pt;}
.wsc_c00490{word-spacing:6.412800pt;}
.wsf_c00490{word-spacing:6.752000pt;}
.wse_c00490{word-spacing:6.758400pt;}
.ws1b_c00490{word-spacing:7.040000pt;}
.ws18_c00490{word-spacing:8.689344pt;}
.ws17_c00490{word-spacing:8.737440pt;}
.ws34_c00490{word-spacing:9.235200pt;}
.ws35_c00490{word-spacing:9.305600pt;}
.ws2e_c00490{word-spacing:10.214400pt;}
.ws2d_c00490{word-spacing:10.291200pt;}
.ws25_c00490{word-spacing:11.596480pt;}
.ws6_c00490{word-spacing:11.884800pt;}
.ws5_c00490{word-spacing:11.897600pt;}
.ws24_c00490{word-spacing:11.933152pt;}
.ws23_c00490{word-spacing:12.050720pt;}
.ws12_c00490{word-spacing:13.113600pt;}
.ws13_c00490{word-spacing:13.132800pt;}
.ws31_c00490{word-spacing:14.400000pt;}
._0_c00490{margin-left:-1.175680pt;}
._1_c00490{width:0.908800pt;}
.fs4_c00490{font-size:34.560000pt;}
.fs3_c00490{font-size:37.440000pt;}
.fs5_c00490{font-size:42.560000pt;}
.fs2_c00490{font-size:48.000000pt;}
.fs0_c00490{font-size:53.440000pt;}
.fs1_c00490{font-size:64.000000pt;}
.y0_c00490{bottom:0.000000pt;}
.y2_c00490{bottom:51.067067pt;}
.y28_c00490{bottom:78.430427pt;}
.y27_c00490{bottom:94.665307pt;}
.y26_c00490{bottom:110.990427pt;}
.y25_c00490{bottom:127.230427pt;}
.y24_c00490{bottom:143.465307pt;}
.y23_c00490{bottom:159.787067pt;}
.y22_c00490{bottom:173.307200pt;}
.y21_c00490{bottom:191.707200pt;}
.y20_c00490{bottom:210.107067pt;}
.y1f_c00490{bottom:238.587067pt;}
.y1e_c00490{bottom:269.147067pt;}
.y1d_c00490{bottom:299.787067pt;}
.y1c_c00490{bottom:330.347067pt;}
.y1b_c00490{bottom:368.987067pt;}
.y1a_c00490{bottom:399.547067pt;}
.y19_c00490{bottom:430.187067pt;}
.y18_c00490{bottom:466.827200pt;}
.y17_c00490{bottom:478.490747pt;}
.y16_c00490{bottom:493.453947pt;}
.y15_c00490{bottom:508.497307pt;}
.y14_c00490{bottom:523.460507pt;}
.y13_c00490{bottom:538.503867pt;}
.y12_c00490{bottom:553.467067pt;}
.y11_c00490{bottom:589.787067pt;}
.y10_c00490{bottom:620.347067pt;}
.yf_c00490{bottom:654.349227pt;}
.ye_c00490{bottom:671.703867pt;}
.yd_c00490{bottom:686.667067pt;}
.yc_c00490{bottom:722.987067pt;}
.yb_c00490{bottom:753.547067pt;}
.ya_c00490{bottom:784.187067pt;}
.y9_c00490{bottom:814.747067pt;}
.y8_c00490{bottom:853.387067pt;}
.y7_c00490{bottom:883.947067pt;}
.y6_c00490{bottom:914.587067pt;}
.y5_c00490{bottom:945.147067pt;}
.y4_c00490{bottom:983.787067pt;}
.y3_c00490{bottom:1014.347067pt;}
.y1_c00490{bottom:1063.867067pt;}
.h7_c00490{height:40.121967pt;}
.h9_c00490{height:42.656250pt;}
.h8_c00490{height:42.656783pt;}
.ha_c00490{height:44.388750pt;}
.hb_c00490{height:44.395790pt;}
.h1_c00490{height:44.724687pt;}
.h3_c00490{height:53.562500pt;}
.h6_c00490{height:54.125000pt;}
.h5_c00490{height:57.885423pt;}
.h4_c00490{height:57.894063pt;}
.h2_c00490{height:64.142500pt;}
.h0_c00490{height:1122.666667pt;}
.w1_c00490{width:793.333333pt;}
.w0_c00490{width:793.626667pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:113.440000pt;}
.x2_c00490{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_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_05959b696ac036d5b66f333e.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00491;src:url('chunks/assets/font_672d3c8c2f951662c4c901b6.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00491;src:url('chunks/assets/font_3c2c9a6ee2cfda88b0f612c1.woff2')format("woff");}.ff4_c00491{font-family:ff4_c00491;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00491;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00491{font-family:ff5_c00491;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_c00491;src:url('chunks/assets/font_34790df931f1c68a3c6ac592.woff2')format("woff");}.ff6_c00491{font-family:ff6_c00491;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_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00491{vertical-align:-29.880000px;}
.v0_c00491{vertical-align:0.000000px;}
.v1_c00491{vertical-align:29.880000px;}
.ls16_c00491{letter-spacing:-0.151200px;}
.ls18_c00491{letter-spacing:-0.093744px;}
.ls17_c00491{letter-spacing:-0.046872px;}
.ls1e_c00491{letter-spacing:-0.043200px;}
.ls1d_c00491{letter-spacing:-0.036000px;}
.ls13_c00491{letter-spacing:-0.030060px;}
.ls1a_c00491{letter-spacing:-0.028800px;}
.ls1c_c00491{letter-spacing:-0.021600px;}
.ls1b_c00491{letter-spacing:-0.014400px;}
.ls1f_c00491{letter-spacing:-0.007776px;}
.ls19_c00491{letter-spacing:-0.007200px;}
.ls14_c00491{letter-spacing:-0.006012px;}
.ls20_c00491{letter-spacing:-0.003888px;}
.ls15_c00491{letter-spacing:0.000000px;}
.ls3_c00491{letter-spacing:0.007200px;}
.ls8_c00491{letter-spacing:0.014364px;}
.ls5_c00491{letter-spacing:0.014400px;}
.ls4_c00491{letter-spacing:0.021600px;}
.lsd_c00491{letter-spacing:0.028728px;}
.ls0_c00491{letter-spacing:0.031248px;}
.ls12_c00491{letter-spacing:0.033516px;}
.ls11_c00491{letter-spacing:0.043092px;}
.lsf_c00491{letter-spacing:0.047880px;}
.ls6_c00491{letter-spacing:0.048096px;}
.lsb_c00491{letter-spacing:0.052668px;}
.ls2_c00491{letter-spacing:0.054756px;}
.lsc_c00491{letter-spacing:0.057456px;}
.ls7_c00491{letter-spacing:0.066132px;}
.lsa_c00491{letter-spacing:0.067032px;}
.ls10_c00491{letter-spacing:0.104040px;}
.ls21_c00491{letter-spacing:0.357696px;}
.ls9_c00491{letter-spacing:0.378720px;}
.lse_c00491{letter-spacing:0.464040px;}
.ls1_c00491{letter-spacing:26.560800px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00491{word-spacing:-19.561248px;}
.ws3_c00491{word-spacing:-11.166336px;}
.ws2_c00491{word-spacing:-10.804752px;}
.ws1_c00491{word-spacing:-10.584756px;}
.ws5_c00491{word-spacing:-0.264528px;}
.ws4_c00491{word-spacing:-0.240480px;}
.ws7_c00491{word-spacing:-0.164052px;}
.ws8_c00491{word-spacing:-0.070308px;}
.ws32_c00491{word-spacing:-0.038304px;}
.ws36_c00491{word-spacing:-0.028728px;}
.ws39_c00491{word-spacing:-0.014364px;}
.ws33_c00491{word-spacing:-0.009576px;}
.wsb_c00491{word-spacing:-0.007200px;}
.ws6_c00491{word-spacing:0.000000px;}
.ws34_c00491{word-spacing:0.004788px;}
.ws17_c00491{word-spacing:0.007200px;}
.wsa_c00491{word-spacing:0.028800px;}
.ws16_c00491{word-spacing:0.043200px;}
.ws28_c00491{word-spacing:0.122400px;}
.ws35_c00491{word-spacing:0.363888px;}
.ws20_c00491{word-spacing:0.727200px;}
.ws1f_c00491{word-spacing:0.784800px;}
.ws30_c00491{word-spacing:1.029420px;}
.ws31_c00491{word-spacing:1.043784px;}
.ws38_c00491{word-spacing:1.053360px;}
.ws37_c00491{word-spacing:1.067724px;}
.ws2e_c00491{word-spacing:1.082088px;}
.ws2f_c00491{word-spacing:1.084752px;}
.ws2d_c00491{word-spacing:1.839672px;}
.ws9_c00491{word-spacing:2.167200px;}
.ws2b_c00491{word-spacing:3.625236px;}
.ws2c_c00491{word-spacing:3.691368px;}
.ws29_c00491{word-spacing:4.003992px;}
.ws2a_c00491{word-spacing:4.052088px;}
.ws13_c00491{word-spacing:5.407200px;}
.wsc_c00491{word-spacing:5.832000px;}
.wsd_c00491{word-spacing:5.839200px;}
.ws18_c00491{word-spacing:6.134400px;}
.ws19_c00491{word-spacing:6.148800px;}
.ws23_c00491{word-spacing:6.516000px;}
.ws15_c00491{word-spacing:6.876000px;}
.ws14_c00491{word-spacing:6.912000px;}
.ws1c_c00491{word-spacing:7.992000px;}
.ws1d_c00491{word-spacing:8.028000px;}
.ws22_c00491{word-spacing:11.520000px;}
.ws12_c00491{word-spacing:11.592000px;}
.ws11_c00491{word-spacing:11.620800px;}
.ws21_c00491{word-spacing:11.628000px;}
.wse_c00491{word-spacing:11.880000px;}
.wsf_c00491{word-spacing:11.916000px;}
.ws10_c00491{word-spacing:16.948800px;}
.ws1b_c00491{word-spacing:17.978400px;}
.ws1a_c00491{word-spacing:18.000000px;}
.ws24_c00491{word-spacing:18.381600px;}
.ws26_c00491{word-spacing:26.992800px;}
.ws25_c00491{word-spacing:27.057600px;}
.ws27_c00491{word-spacing:27.122400px;}
.ws1e_c00491{word-spacing:28.123200px;}
._1_c00491{margin-left:-1.440000px;}
._0_c00491{width:1.052100px;}
.fc0_c00491{color:rgb(0,0,0);}
.fs6_c00491{font-size:38.880000px;}
.fs4_c00491{font-size:42.120000px;}
.fs5_c00491{font-size:47.880000px;}
.fs2_c00491{font-size:54.000000px;}
.fs0_c00491{font-size:60.120000px;}
.fs1_c00491{font-size:72.000000px;}
.fs3_c00491{font-size:78.120000px;}
.y0_c00491{bottom:0.000000px;}
.y3_c00491{bottom:57.450450px;}
.y4_c00491{bottom:61.410450px;}
.y26_c00491{bottom:88.234950px;}
.y25_c00491{bottom:101.998470px;}
.y24_c00491{bottom:120.368730px;}
.y23_c00491{bottom:138.634950px;}
.y22_c00491{bottom:152.400450px;}
.y21_c00491{bottom:167.610450px;}
.y20_c00491{bottom:188.310450px;}
.y1f_c00491{bottom:209.010450px;}
.y1e_c00491{bottom:261.383070px;}
.y1d_c00491{bottom:278.216670px;}
.y1c_c00491{bottom:295.140450px;}
.y1b_c00491{bottom:335.910450px;}
.y1a_c00491{bottom:370.380450px;}
.y19_c00491{bottom:404.760450px;}
.y18_c00491{bottom:448.230450px;}
.y17_c00491{bottom:482.610450px;}
.y16_c00491{bottom:517.080450px;}
.y15_c00491{bottom:551.460450px;}
.y14_c00491{bottom:585.930450px;}
.y13_c00491{bottom:629.310450px;}
.y12_c00491{bottom:663.780450px;}
.y11_c00491{bottom:698.160600px;}
.y10_c00491{bottom:732.630600px;}
.yf_c00491{bottom:767.010600px;}
.ye_c00491{bottom:810.480600px;}
.yd_c00491{bottom:844.860450px;}
.yc_c00491{bottom:879.330450px;}
.yb_c00491{bottom:913.710450px;}
.ya_c00491{bottom:948.180450px;}
.y9_c00491{bottom:982.560450px;}
.y8_c00491{bottom:1017.030450px;}
.y7_c00491{bottom:1060.410450px;}
.y6_c00491{bottom:1094.880450px;}
.y5_c00491{bottom:1139.880450px;}
.y2_c00491{bottom:1176.420450px;}
.y1_c00491{bottom:1196.940450px;}
.h2_c00491{height:47.988281px;}
.h8_c00491{height:49.937344px;}
.h9_c00491{height:49.945264px;}
.h1_c00491{height:50.315273px;}
.h3_c00491{height:56.320312px;}
.h5_c00491{height:60.257812px;}
.h7_c00491{height:65.130220px;}
.h6_c00491{height:65.130820px;}
.h4_c00491{height:81.476719px;}
.h0_c00491{height:1263.000000px;}
.w1_c00491{width:892.500000px;}
.w0_c00491{width:892.830000px;}
.x0_c00491{left:0.000000px;}
.x2_c00491{left:127.620000px;}
.x6_c00491{left:154.624590px;}
.x5_c00491{left:180.720000px;}
.x1_c00491{left:217.440000px;}
.x4_c00491{left:435.240000px;}
.x3_c00491{left:446.490000px;}
@media print{
.v2_c00491{vertical-align:-26.560000pt;}
.v0_c00491{vertical-align:0.000000pt;}
.v1_c00491{vertical-align:26.560000pt;}
.ls16_c00491{letter-spacing:-0.134400pt;}
.ls18_c00491{letter-spacing:-0.083328pt;}
.ls17_c00491{letter-spacing:-0.041664pt;}
.ls1e_c00491{letter-spacing:-0.038400pt;}
.ls1d_c00491{letter-spacing:-0.032000pt;}
.ls13_c00491{letter-spacing:-0.026720pt;}
.ls1a_c00491{letter-spacing:-0.025600pt;}
.ls1c_c00491{letter-spacing:-0.019200pt;}
.ls1b_c00491{letter-spacing:-0.012800pt;}
.ls1f_c00491{letter-spacing:-0.006912pt;}
.ls19_c00491{letter-spacing:-0.006400pt;}
.ls14_c00491{letter-spacing:-0.005344pt;}
.ls20_c00491{letter-spacing:-0.003456pt;}
.ls15_c00491{letter-spacing:0.000000pt;}
.ls3_c00491{letter-spacing:0.006400pt;}
.ls8_c00491{letter-spacing:0.012768pt;}
.ls5_c00491{letter-spacing:0.012800pt;}
.ls4_c00491{letter-spacing:0.019200pt;}
.lsd_c00491{letter-spacing:0.025536pt;}
.ls0_c00491{letter-spacing:0.027776pt;}
.ls12_c00491{letter-spacing:0.029792pt;}
.ls11_c00491{letter-spacing:0.038304pt;}
.lsf_c00491{letter-spacing:0.042560pt;}
.ls6_c00491{letter-spacing:0.042752pt;}
.lsb_c00491{letter-spacing:0.046816pt;}
.ls2_c00491{letter-spacing:0.048672pt;}
.lsc_c00491{letter-spacing:0.051072pt;}
.ls7_c00491{letter-spacing:0.058784pt;}
.lsa_c00491{letter-spacing:0.059584pt;}
.ls10_c00491{letter-spacing:0.092480pt;}
.ls21_c00491{letter-spacing:0.317952pt;}
.ls9_c00491{letter-spacing:0.336640pt;}
.lse_c00491{letter-spacing:0.412480pt;}
.ls1_c00491{letter-spacing:23.609600pt;}
.ws0_c00491{word-spacing:-17.387776pt;}
.ws3_c00491{word-spacing:-9.925632pt;}
.ws2_c00491{word-spacing:-9.604224pt;}
.ws1_c00491{word-spacing:-9.408672pt;}
.ws5_c00491{word-spacing:-0.235136pt;}
.ws4_c00491{word-spacing:-0.213760pt;}
.ws7_c00491{word-spacing:-0.145824pt;}
.ws8_c00491{word-spacing:-0.062496pt;}
.ws32_c00491{word-spacing:-0.034048pt;}
.ws36_c00491{word-spacing:-0.025536pt;}
.ws39_c00491{word-spacing:-0.012768pt;}
.ws33_c00491{word-spacing:-0.008512pt;}
.wsb_c00491{word-spacing:-0.006400pt;}
.ws6_c00491{word-spacing:0.000000pt;}
.ws34_c00491{word-spacing:0.004256pt;}
.ws17_c00491{word-spacing:0.006400pt;}
.wsa_c00491{word-spacing:0.025600pt;}
.ws16_c00491{word-spacing:0.038400pt;}
.ws28_c00491{word-spacing:0.108800pt;}
.ws35_c00491{word-spacing:0.323456pt;}
.ws20_c00491{word-spacing:0.646400pt;}
.ws1f_c00491{word-spacing:0.697600pt;}
.ws30_c00491{word-spacing:0.915040pt;}
.ws31_c00491{word-spacing:0.927808pt;}
.ws38_c00491{word-spacing:0.936320pt;}
.ws37_c00491{word-spacing:0.949088pt;}
.ws2e_c00491{word-spacing:0.961856pt;}
.ws2f_c00491{word-spacing:0.964224pt;}
.ws2d_c00491{word-spacing:1.635264pt;}
.ws9_c00491{word-spacing:1.926400pt;}
.ws2b_c00491{word-spacing:3.222432pt;}
.ws2c_c00491{word-spacing:3.281216pt;}
.ws29_c00491{word-spacing:3.559104pt;}
.ws2a_c00491{word-spacing:3.601856pt;}
.ws13_c00491{word-spacing:4.806400pt;}
.wsc_c00491{word-spacing:5.184000pt;}
.wsd_c00491{word-spacing:5.190400pt;}
.ws18_c00491{word-spacing:5.452800pt;}
.ws19_c00491{word-spacing:5.465600pt;}
.ws23_c00491{word-spacing:5.792000pt;}
.ws15_c00491{word-spacing:6.112000pt;}
.ws14_c00491{word-spacing:6.144000pt;}
.ws1c_c00491{word-spacing:7.104000pt;}
.ws1d_c00491{word-spacing:7.136000pt;}
.ws22_c00491{word-spacing:10.240000pt;}
.ws12_c00491{word-spacing:10.304000pt;}
.ws11_c00491{word-spacing:10.329600pt;}
.ws21_c00491{word-spacing:10.336000pt;}
.wse_c00491{word-spacing:10.560000pt;}
.wsf_c00491{word-spacing:10.592000pt;}
.ws10_c00491{word-spacing:15.065600pt;}
.ws1b_c00491{word-spacing:15.980800pt;}
.ws1a_c00491{word-spacing:16.000000pt;}
.ws24_c00491{word-spacing:16.339200pt;}
.ws26_c00491{word-spacing:23.993600pt;}
.ws25_c00491{word-spacing:24.051200pt;}
.ws27_c00491{word-spacing:24.108800pt;}
.ws1e_c00491{word-spacing:24.998400pt;}
._1_c00491{margin-left:-1.280000pt;}
._0_c00491{width:0.935200pt;}
.fs6_c00491{font-size:34.560000pt;}
.fs4_c00491{font-size:37.440000pt;}
.fs5_c00491{font-size:42.560000pt;}
.fs2_c00491{font-size:48.000000pt;}
.fs0_c00491{font-size:53.440000pt;}
.fs1_c00491{font-size:64.000000pt;}
.fs3_c00491{font-size:69.440000pt;}
.y0_c00491{bottom:0.000000pt;}
.y3_c00491{bottom:51.067067pt;}
.y4_c00491{bottom:54.587067pt;}
.y26_c00491{bottom:78.431067pt;}
.y25_c00491{bottom:90.665307pt;}
.y24_c00491{bottom:106.994427pt;}
.y23_c00491{bottom:123.231067pt;}
.y22_c00491{bottom:135.467067pt;}
.y21_c00491{bottom:148.987067pt;}
.y20_c00491{bottom:167.387067pt;}
.y1f_c00491{bottom:185.787067pt;}
.y1e_c00491{bottom:232.340507pt;}
.y1d_c00491{bottom:247.303707pt;}
.y1c_c00491{bottom:262.347067pt;}
.y1b_c00491{bottom:298.587067pt;}
.y1a_c00491{bottom:329.227067pt;}
.y19_c00491{bottom:359.787067pt;}
.y18_c00491{bottom:398.427067pt;}
.y17_c00491{bottom:428.987067pt;}
.y16_c00491{bottom:459.627067pt;}
.y15_c00491{bottom:490.187067pt;}
.y14_c00491{bottom:520.827067pt;}
.y13_c00491{bottom:559.387067pt;}
.y12_c00491{bottom:590.027067pt;}
.y11_c00491{bottom:620.587200pt;}
.y10_c00491{bottom:651.227200pt;}
.yf_c00491{bottom:681.787200pt;}
.ye_c00491{bottom:720.427200pt;}
.yd_c00491{bottom:750.987067pt;}
.yc_c00491{bottom:781.627067pt;}
.yb_c00491{bottom:812.187067pt;}
.ya_c00491{bottom:842.827067pt;}
.y9_c00491{bottom:873.387067pt;}
.y8_c00491{bottom:904.027067pt;}
.y7_c00491{bottom:942.587067pt;}
.y6_c00491{bottom:973.227067pt;}
.y5_c00491{bottom:1013.227067pt;}
.y2_c00491{bottom:1045.707067pt;}
.y1_c00491{bottom:1063.947067pt;}
.h2_c00491{height:42.656250pt;}
.h8_c00491{height:44.388750pt;}
.h9_c00491{height:44.395790pt;}
.h1_c00491{height:44.724687pt;}
.h3_c00491{height:50.062500pt;}
.h5_c00491{height:53.562500pt;}
.h7_c00491{height:57.893529pt;}
.h6_c00491{height:57.894062pt;}
.h4_c00491{height:72.423750pt;}
.h0_c00491{height:1122.666667pt;}
.w1_c00491{width:793.333333pt;}
.w0_c00491{width:793.626667pt;}
.x0_c00491{left:0.000000pt;}
.x2_c00491{left:113.440000pt;}
.x6_c00491{left:137.444080pt;}
.x5_c00491{left:160.640000pt;}
.x1_c00491{left:193.280000pt;}
.x4_c00491{left:386.880000pt;}
.x3_c00491{left:396.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_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_77ad13605cdcbff53be3eb24.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_a80b1dfe4b32d5f43bc81eb7.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00492;src:url('chunks/assets/font_8bd10b7a15a99defe4c2dd24.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00492;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00492{font-family:ff5_c00492;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_c00492;src:url('chunks/assets/font_1bd2cfd77c1acc71367ea074.woff2')format("woff");}.ff6_c00492{font-family:ff6_c00492;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_c00492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00492{vertical-align:-15.120000px;}
.v0_c00492{vertical-align:0.000000px;}
.v1_c00492{vertical-align:15.840000px;}
.v3_c00492{vertical-align:29.880000px;}
.ls17_c00492{letter-spacing:-0.151200px;}
.ls1b_c00492{letter-spacing:-0.064800px;}
.ls22_c00492{letter-spacing:-0.054108px;}
.ls26_c00492{letter-spacing:-0.036000px;}
.ls1d_c00492{letter-spacing:-0.030060px;}
.ls1a_c00492{letter-spacing:-0.028800px;}
.ls20_c00492{letter-spacing:-0.024048px;}
.ls24_c00492{letter-spacing:-0.021600px;}
.ls1f_c00492{letter-spacing:-0.018036px;}
.ls25_c00492{letter-spacing:-0.014400px;}
.ls1e_c00492{letter-spacing:-0.012024px;}
.ls28_c00492{letter-spacing:-0.007776px;}
.ls19_c00492{letter-spacing:-0.007200px;}
.ls29_c00492{letter-spacing:-0.003888px;}
.ls21_c00492{letter-spacing:0.000000px;}
.lsd_c00492{letter-spacing:0.006012px;}
.ls11_c00492{letter-spacing:0.007200px;}
.ls2a_c00492{letter-spacing:0.009576px;}
.lsa_c00492{letter-spacing:0.012024px;}
.ls13_c00492{letter-spacing:0.014364px;}
.ls1c_c00492{letter-spacing:0.014400px;}
.ls7_c00492{letter-spacing:0.018036px;}
.ls10_c00492{letter-spacing:0.021600px;}
.ls16_c00492{letter-spacing:0.023940px;}
.ls6_c00492{letter-spacing:0.024048px;}
.lsc_c00492{letter-spacing:0.030060px;}
.lse_c00492{letter-spacing:0.031248px;}
.ls12_c00492{letter-spacing:0.033516px;}
.ls2_c00492{letter-spacing:0.036072px;}
.ls9_c00492{letter-spacing:0.042084px;}
.ls0_c00492{letter-spacing:0.048096px;}
.ls3_c00492{letter-spacing:0.054108px;}
.ls5_c00492{letter-spacing:0.054756px;}
.ls15_c00492{letter-spacing:0.057456px;}
.lsb_c00492{letter-spacing:0.060120px;}
.ls8_c00492{letter-spacing:0.072144px;}
.ls27_c00492{letter-spacing:0.093600px;}
.ls23_c00492{letter-spacing:0.096192px;}
.ls4_c00492{letter-spacing:0.136080px;}
.ls18_c00492{letter-spacing:0.168336px;}
.ls14_c00492{letter-spacing:0.378720px;}
.lsf_c00492{letter-spacing:26.560800px;}
.ls1_c00492{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00492{word-spacing:-19.561248px;}
.ws3_c00492{word-spacing:-18.021600px;}
.ws4_c00492{word-spacing:-10.804752px;}
.ws1_c00492{word-spacing:-10.584756px;}
.ws0_c00492{word-spacing:-9.856080px;}
.ws14_c00492{word-spacing:-0.312624px;}
.ws27_c00492{word-spacing:-0.093744px;}
.ws2f_c00492{word-spacing:-0.093600px;}
.ws38_c00492{word-spacing:-0.038304px;}
.ws34_c00492{word-spacing:-0.014364px;}
.ws25_c00492{word-spacing:-0.006012px;}
.ws39_c00492{word-spacing:-0.004788px;}
.ws6_c00492{word-spacing:0.000000px;}
.ws36_c00492{word-spacing:0.003888px;}
.ws35_c00492{word-spacing:0.004788px;}
.ws37_c00492{word-spacing:0.009576px;}
.ws8_c00492{word-spacing:0.036072px;}
.ws5_c00492{word-spacing:0.042084px;}
.wse_c00492{word-spacing:0.066132px;}
.ws24_c00492{word-spacing:0.144288px;}
.ws1c_c00492{word-spacing:0.450900px;}
.ws1d_c00492{word-spacing:0.468936px;}
.ws20_c00492{word-spacing:0.787572px;}
.ws21_c00492{word-spacing:0.823644px;}
.wsc_c00492{word-spacing:1.137600px;}
.wsd_c00492{word-spacing:1.216800px;}
.ws2c_c00492{word-spacing:1.778400px;}
.ws1e_c00492{word-spacing:1.833660px;}
.ws1f_c00492{word-spacing:1.857708px;}
.ws16_c00492{word-spacing:1.869732px;}
.ws2d_c00492{word-spacing:1.900800px;}
.ws15_c00492{word-spacing:1.905804px;}
.ws2e_c00492{word-spacing:2.556000px;}
.ws23_c00492{word-spacing:2.567124px;}
.ws22_c00492{word-spacing:2.603196px;}
.ws2a_c00492{word-spacing:2.880000px;}
.ws2b_c00492{word-spacing:2.937600px;}
.ws9_c00492{word-spacing:3.297600px;}
.wsa_c00492{word-spacing:3.348000px;}
.ws28_c00492{word-spacing:4.586400px;}
.ws29_c00492{word-spacing:4.665600px;}
.ws18_c00492{word-spacing:7.250472px;}
.ws17_c00492{word-spacing:7.316604px;}
.ws1b_c00492{word-spacing:7.587144px;}
.ws7_c00492{word-spacing:7.611192px;}
.ws1a_c00492{word-spacing:7.635240px;}
.wsb_c00492{word-spacing:8.668800px;}
.ws11_c00492{word-spacing:9.823608px;}
.ws13_c00492{word-spacing:10.100160px;}
.ws12_c00492{word-spacing:10.154268px;}
.wsf_c00492{word-spacing:11.224404px;}
.ws10_c00492{word-spacing:11.639232px;}
.ws19_c00492{word-spacing:11.933820px;}
.ws32_c00492{word-spacing:13.687200px;}
.ws33_c00492{word-spacing:13.701600px;}
.ws26_c00492{word-spacing:18.367200px;}
.ws31_c00492{word-spacing:19.360800px;}
.ws30_c00492{word-spacing:19.447200px;}
._0_c00492{margin-left:-1.322640px;}
._1_c00492{width:1.080000px;}
.fc0_c00492{color:rgb(0,0,0);}
.fs3_c00492{font-size:38.880000px;}
.fs4_c00492{font-size:42.120000px;}
.fs6_c00492{font-size:47.880000px;}
.fs2_c00492{font-size:54.000000px;}
.fs0_c00492{font-size:60.120000px;}
.fs1_c00492{font-size:72.000000px;}
.fs5_c00492{font-size:78.120000px;}
.y0_c00492{bottom:0.000000px;}
.y2_c00492{bottom:57.450450px;}
.y27_c00492{bottom:88.232250px;}
.y26_c00492{bottom:106.498470px;}
.y25_c00492{bottom:124.864230px;}
.y24_c00492{bottom:143.130450px;}
.y23_c00492{bottom:158.340450px;}
.y22_c00492{bottom:179.040450px;}
.y21_c00492{bottom:199.740450px;}
.y20_c00492{bottom:321.780450px;}
.y1f_c00492{bottom:356.160450px;}
.y1e_c00492{bottom:399.630450px;}
.y1d_c00492{bottom:434.010450px;}
.y1c_c00492{bottom:468.480450px;}
.y1b_c00492{bottom:502.860450px;}
.y1a_c00492{bottom:537.330450px;}
.y19_c00492{bottom:582.330450px;}
.y18_c00492{bottom:645.060450px;}
.y17_c00492{bottom:679.440450px;}
.y16_c00492{bottom:716.916630px;}
.y15_c00492{bottom:733.750230px;}
.y14_c00492{bottom:750.674010px;}
.y13_c00492{bottom:767.507610px;}
.y12_c00492{bottom:784.431390px;}
.y11_c00492{bottom:801.264990px;}
.y10_c00492{bottom:818.188770px;}
.yf_c00492{bottom:835.022370px;}
.ye_c00492{bottom:851.946150px;}
.yd_c00492{bottom:877.782720px;}
.yc_c00492{bottom:894.706500px;}
.yb_c00492{bottom:911.540100px;}
.ya_c00492{bottom:928.463880px;}
.y9_c00492{bottom:954.300450px;}
.y8_c00492{bottom:995.160450px;}
.y7_c00492{bottom:1029.540450px;}
.y6_c00492{bottom:1064.010450px;}
.y5_c00492{bottom:1098.390450px;}
.y4_c00492{bottom:1126.916850px;}
.y3_c00492{bottom:1143.750450px;}
.y1_c00492{bottom:1196.850450px;}
.h8_c00492{height:47.988281px;}
.h9_c00492{height:49.937344px;}
.h1_c00492{height:50.315273px;}
.h3_c00492{height:50.329673px;}
.h6_c00492{height:50.530553px;}
.h4_c00492{height:60.257812px;}
.h5_c00492{height:65.130820px;}
.h2_c00492{height:72.160312px;}
.h7_c00492{height:81.476719px;}
.h0_c00492{height:1263.000000px;}
.w1_c00492{width:892.500000px;}
.w0_c00492{width:892.830000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:127.620000px;}
.x3_c00492{left:154.620000px;}
.x2_c00492{left:180.720000px;}
@media print{
.v2_c00492{vertical-align:-13.440000pt;}
.v0_c00492{vertical-align:0.000000pt;}
.v1_c00492{vertical-align:14.080000pt;}
.v3_c00492{vertical-align:26.560000pt;}
.ls17_c00492{letter-spacing:-0.134400pt;}
.ls1b_c00492{letter-spacing:-0.057600pt;}
.ls22_c00492{letter-spacing:-0.048096pt;}
.ls26_c00492{letter-spacing:-0.032000pt;}
.ls1d_c00492{letter-spacing:-0.026720pt;}
.ls1a_c00492{letter-spacing:-0.025600pt;}
.ls20_c00492{letter-spacing:-0.021376pt;}
.ls24_c00492{letter-spacing:-0.019200pt;}
.ls1f_c00492{letter-spacing:-0.016032pt;}
.ls25_c00492{letter-spacing:-0.012800pt;}
.ls1e_c00492{letter-spacing:-0.010688pt;}
.ls28_c00492{letter-spacing:-0.006912pt;}
.ls19_c00492{letter-spacing:-0.006400pt;}
.ls29_c00492{letter-spacing:-0.003456pt;}
.ls21_c00492{letter-spacing:0.000000pt;}
.lsd_c00492{letter-spacing:0.005344pt;}
.ls11_c00492{letter-spacing:0.006400pt;}
.ls2a_c00492{letter-spacing:0.008512pt;}
.lsa_c00492{letter-spacing:0.010688pt;}
.ls13_c00492{letter-spacing:0.012768pt;}
.ls1c_c00492{letter-spacing:0.012800pt;}
.ls7_c00492{letter-spacing:0.016032pt;}
.ls10_c00492{letter-spacing:0.019200pt;}
.ls16_c00492{letter-spacing:0.021280pt;}
.ls6_c00492{letter-spacing:0.021376pt;}
.lsc_c00492{letter-spacing:0.026720pt;}
.lse_c00492{letter-spacing:0.027776pt;}
.ls12_c00492{letter-spacing:0.029792pt;}
.ls2_c00492{letter-spacing:0.032064pt;}
.ls9_c00492{letter-spacing:0.037408pt;}
.ls0_c00492{letter-spacing:0.042752pt;}
.ls3_c00492{letter-spacing:0.048096pt;}
.ls5_c00492{letter-spacing:0.048672pt;}
.ls15_c00492{letter-spacing:0.051072pt;}
.lsb_c00492{letter-spacing:0.053440pt;}
.ls8_c00492{letter-spacing:0.064128pt;}
.ls27_c00492{letter-spacing:0.083200pt;}
.ls23_c00492{letter-spacing:0.085504pt;}
.ls4_c00492{letter-spacing:0.120960pt;}
.ls18_c00492{letter-spacing:0.149632pt;}
.ls14_c00492{letter-spacing:0.336640pt;}
.lsf_c00492{letter-spacing:23.609600pt;}
.ls1_c00492{letter-spacing:1077.440000pt;}
.ws2_c00492{word-spacing:-17.387776pt;}
.ws3_c00492{word-spacing:-16.019200pt;}
.ws4_c00492{word-spacing:-9.604224pt;}
.ws1_c00492{word-spacing:-9.408672pt;}
.ws0_c00492{word-spacing:-8.760960pt;}
.ws14_c00492{word-spacing:-0.277888pt;}
.ws27_c00492{word-spacing:-0.083328pt;}
.ws2f_c00492{word-spacing:-0.083200pt;}
.ws38_c00492{word-spacing:-0.034048pt;}
.ws34_c00492{word-spacing:-0.012768pt;}
.ws25_c00492{word-spacing:-0.005344pt;}
.ws39_c00492{word-spacing:-0.004256pt;}
.ws6_c00492{word-spacing:0.000000pt;}
.ws36_c00492{word-spacing:0.003456pt;}
.ws35_c00492{word-spacing:0.004256pt;}
.ws37_c00492{word-spacing:0.008512pt;}
.ws8_c00492{word-spacing:0.032064pt;}
.ws5_c00492{word-spacing:0.037408pt;}
.wse_c00492{word-spacing:0.058784pt;}
.ws24_c00492{word-spacing:0.128256pt;}
.ws1c_c00492{word-spacing:0.400800pt;}
.ws1d_c00492{word-spacing:0.416832pt;}
.ws20_c00492{word-spacing:0.700064pt;}
.ws21_c00492{word-spacing:0.732128pt;}
.wsc_c00492{word-spacing:1.011200pt;}
.wsd_c00492{word-spacing:1.081600pt;}
.ws2c_c00492{word-spacing:1.580800pt;}
.ws1e_c00492{word-spacing:1.629920pt;}
.ws1f_c00492{word-spacing:1.651296pt;}
.ws16_c00492{word-spacing:1.661984pt;}
.ws2d_c00492{word-spacing:1.689600pt;}
.ws15_c00492{word-spacing:1.694048pt;}
.ws2e_c00492{word-spacing:2.272000pt;}
.ws23_c00492{word-spacing:2.281888pt;}
.ws22_c00492{word-spacing:2.313952pt;}
.ws2a_c00492{word-spacing:2.560000pt;}
.ws2b_c00492{word-spacing:2.611200pt;}
.ws9_c00492{word-spacing:2.931200pt;}
.wsa_c00492{word-spacing:2.976000pt;}
.ws28_c00492{word-spacing:4.076800pt;}
.ws29_c00492{word-spacing:4.147200pt;}
.ws18_c00492{word-spacing:6.444864pt;}
.ws17_c00492{word-spacing:6.503648pt;}
.ws1b_c00492{word-spacing:6.744128pt;}
.ws7_c00492{word-spacing:6.765504pt;}
.ws1a_c00492{word-spacing:6.786880pt;}
.wsb_c00492{word-spacing:7.705600pt;}
.ws11_c00492{word-spacing:8.732096pt;}
.ws13_c00492{word-spacing:8.977920pt;}
.ws12_c00492{word-spacing:9.026016pt;}
.wsf_c00492{word-spacing:9.977248pt;}
.ws10_c00492{word-spacing:10.345984pt;}
.ws19_c00492{word-spacing:10.607840pt;}
.ws32_c00492{word-spacing:12.166400pt;}
.ws33_c00492{word-spacing:12.179200pt;}
.ws26_c00492{word-spacing:16.326400pt;}
.ws31_c00492{word-spacing:17.209600pt;}
.ws30_c00492{word-spacing:17.286400pt;}
._0_c00492{margin-left:-1.175680pt;}
._1_c00492{width:0.960000pt;}
.fs3_c00492{font-size:34.560000pt;}
.fs4_c00492{font-size:37.440000pt;}
.fs6_c00492{font-size:42.560000pt;}
.fs2_c00492{font-size:48.000000pt;}
.fs0_c00492{font-size:53.440000pt;}
.fs1_c00492{font-size:64.000000pt;}
.fs5_c00492{font-size:69.440000pt;}
.y0_c00492{bottom:0.000000pt;}
.y2_c00492{bottom:51.067067pt;}
.y27_c00492{bottom:78.428667pt;}
.y26_c00492{bottom:94.665307pt;}
.y25_c00492{bottom:110.990427pt;}
.y24_c00492{bottom:127.227067pt;}
.y23_c00492{bottom:140.747067pt;}
.y22_c00492{bottom:159.147067pt;}
.y21_c00492{bottom:177.547067pt;}
.y20_c00492{bottom:286.027067pt;}
.y1f_c00492{bottom:316.587067pt;}
.y1e_c00492{bottom:355.227067pt;}
.y1d_c00492{bottom:385.787067pt;}
.y1c_c00492{bottom:416.427067pt;}
.y1b_c00492{bottom:446.987067pt;}
.y1a_c00492{bottom:477.627067pt;}
.y19_c00492{bottom:517.627067pt;}
.y18_c00492{bottom:573.387067pt;}
.y17_c00492{bottom:603.947067pt;}
.y16_c00492{bottom:637.259227pt;}
.y15_c00492{bottom:652.222427pt;}
.y14_c00492{bottom:667.265787pt;}
.y13_c00492{bottom:682.228987pt;}
.y12_c00492{bottom:697.272347pt;}
.y11_c00492{bottom:712.235547pt;}
.y10_c00492{bottom:727.278907pt;}
.yf_c00492{bottom:742.242107pt;}
.ye_c00492{bottom:757.285467pt;}
.yd_c00492{bottom:780.251307pt;}
.yc_c00492{bottom:795.294667pt;}
.yb_c00492{bottom:810.257867pt;}
.ya_c00492{bottom:825.301227pt;}
.y9_c00492{bottom:848.267067pt;}
.y8_c00492{bottom:884.587067pt;}
.y7_c00492{bottom:915.147067pt;}
.y6_c00492{bottom:945.787067pt;}
.y5_c00492{bottom:976.347067pt;}
.y4_c00492{bottom:1001.703867pt;}
.y3_c00492{bottom:1016.667067pt;}
.y1_c00492{bottom:1063.867067pt;}
.h8_c00492{height:42.656250pt;}
.h9_c00492{height:44.388750pt;}
.h1_c00492{height:44.724687pt;}
.h3_c00492{height:44.737488pt;}
.h6_c00492{height:44.916047pt;}
.h4_c00492{height:53.562500pt;}
.h5_c00492{height:57.894062pt;}
.h2_c00492{height:64.142500pt;}
.h7_c00492{height:72.423750pt;}
.h0_c00492{height:1122.666667pt;}
.w1_c00492{width:793.333333pt;}
.w0_c00492{width:793.626667pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:113.440000pt;}
.x3_c00492{left:137.440000pt;}
.x2_c00492{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_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_519fefe5e0a8a6b0f2b79e7f.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_89d28d9a602090f12f72b393.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00493;src:url('chunks/assets/font_287109326345cbc0bdbe878f.woff2')format("woff");}.ff4_c00493{font-family:ff4_c00493;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00493;src:url('chunks/assets/font_882ce65091e066c12fb17a65.woff2')format("woff");}.ff5_c00493{font-family:ff5_c00493;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_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;}
.v1_c00493{vertical-align:29.880000px;}
.lsf_c00493{letter-spacing:-0.151200px;}
.ls15_c00493{letter-spacing:-0.043200px;}
.lsc_c00493{letter-spacing:-0.030060px;}
.ls11_c00493{letter-spacing:-0.028800px;}
.ls13_c00493{letter-spacing:-0.021600px;}
.ls16_c00493{letter-spacing:-0.014400px;}
.ls12_c00493{letter-spacing:-0.007200px;}
.lsd_c00493{letter-spacing:-0.006012px;}
.ls18_c00493{letter-spacing:-0.004788px;}
.ls17_c00493{letter-spacing:-0.003888px;}
.lse_c00493{letter-spacing:0.000000px;}
.ls0_c00493{letter-spacing:0.007200px;}
.lsb_c00493{letter-spacing:0.009576px;}
.ls5_c00493{letter-spacing:0.014364px;}
.ls2_c00493{letter-spacing:0.014400px;}
.ls14_c00493{letter-spacing:0.021600px;}
.ls4_c00493{letter-spacing:0.023940px;}
.ls3_c00493{letter-spacing:0.028800px;}
.ls8_c00493{letter-spacing:0.033516px;}
.ls9_c00493{letter-spacing:0.038304px;}
.ls7_c00493{letter-spacing:0.047880px;}
.ls1_c00493{letter-spacing:0.054756px;}
.ls10_c00493{letter-spacing:0.093600px;}
.ls6_c00493{letter-spacing:0.464040px;}
.lsa_c00493{letter-spacing:2.151360px;}
.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;}
}
.ws2_c00493{word-spacing:-18.007200px;}
.ws1_c00493{word-spacing:-17.956800px;}
.ws3_c00493{word-spacing:-10.804752px;}
.ws0_c00493{word-spacing:-10.584756px;}
.ws5_c00493{word-spacing:-0.264528px;}
.ws4_c00493{word-spacing:-0.240480px;}
.ws10_c00493{word-spacing:-0.093600px;}
.ws2c_c00493{word-spacing:-0.028728px;}
.ws2d_c00493{word-spacing:-0.014364px;}
.ws9_c00493{word-spacing:-0.007200px;}
.ws29_c00493{word-spacing:-0.004788px;}
.ws6_c00493{word-spacing:0.000000px;}
.ws2a_c00493{word-spacing:0.004788px;}
.ws17_c00493{word-spacing:0.007200px;}
.ws2f_c00493{word-spacing:0.019152px;}
.ws1a_c00493{word-spacing:0.021600px;}
.ws2e_c00493{word-spacing:0.023940px;}
.wsf_c00493{word-spacing:0.136800px;}
.ws2b_c00493{word-spacing:0.363888px;}
.ws28_c00493{word-spacing:0.698400px;}
.wsd_c00493{word-spacing:0.720000px;}
.ws27_c00493{word-spacing:0.741600px;}
.wse_c00493{word-spacing:0.777600px;}
.ws25_c00493{word-spacing:1.087200px;}
.ws26_c00493{word-spacing:1.108800px;}
.ws1c_c00493{word-spacing:1.461600px;}
.ws1b_c00493{word-spacing:1.562400px;}
.ws33_c00493{word-spacing:2.140236px;}
.ws34_c00493{word-spacing:2.154600px;}
.ws31_c00493{word-spacing:2.157840px;}
.ws30_c00493{word-spacing:2.164176px;}
.ws35_c00493{word-spacing:2.168964px;}
.ws16_c00493{word-spacing:2.174400px;}
.ws32_c00493{word-spacing:2.523276px;}
.ws7_c00493{word-spacing:2.916000px;}
.ws8_c00493{word-spacing:2.923200px;}
.ws21_c00493{word-spacing:3.592800px;}
.ws20_c00493{word-spacing:3.650400px;}
.ws22_c00493{word-spacing:4.334400px;}
.ws23_c00493{word-spacing:5.054400px;}
.ws24_c00493{word-spacing:5.068800px;}
.wsa_c00493{word-spacing:5.090400px;}
.ws12_c00493{word-spacing:5.320800px;}
.ws11_c00493{word-spacing:5.428800px;}
.ws19_c00493{word-spacing:6.494400px;}
.ws18_c00493{word-spacing:6.609600px;}
.ws1e_c00493{word-spacing:9.763200px;}
.ws1d_c00493{word-spacing:9.813600px;}
.ws1f_c00493{word-spacing:9.828000px;}
.ws15_c00493{word-spacing:19.454400px;}
.ws14_c00493{word-spacing:20.160000px;}
.ws13_c00493{word-spacing:20.181600px;}
.wsc_c00493{word-spacing:21.607200px;}
.wsb_c00493{word-spacing:21.686400px;}
._0_c00493{width:1.052100px;}
.fc0_c00493{color:rgb(0,0,0);}
.fs5_c00493{font-size:38.880000px;}
.fs3_c00493{font-size:42.120000px;}
.fs4_c00493{font-size:47.880000px;}
.fs2_c00493{font-size:54.000000px;}
.fs0_c00493{font-size:60.120000px;}
.fs1_c00493{font-size:72.000000px;}
.y0_c00493{bottom:0.000000px;}
.y3_c00493{bottom:57.450450px;}
.y4_c00493{bottom:61.410450px;}
.y26_c00493{bottom:88.236750px;}
.y25_c00493{bottom:106.502970px;}
.y24_c00493{bottom:124.864950px;}
.y23_c00493{bottom:138.634230px;}
.y22_c00493{bottom:156.902250px;}
.y21_c00493{bottom:175.264230px;}
.y20_c00493{bottom:193.534230px;}
.y1f_c00493{bottom:211.800450px;}
.y1e_c00493{bottom:227.010450px;}
.y1d_c00493{bottom:247.710450px;}
.y1c_c00493{bottom:268.410450px;}
.y1b_c00493{bottom:320.790450px;}
.y1a_c00493{bottom:355.260450px;}
.y19_c00493{bottom:389.640450px;}
.y18_c00493{bottom:424.110450px;}
.y17_c00493{bottom:467.490450px;}
.y16_c00493{bottom:501.960450px;}
.y15_c00493{bottom:536.340450px;}
.y14_c00493{bottom:579.810450px;}
.y13_c00493{bottom:614.190450px;}
.y12_c00493{bottom:657.660450px;}
.y11_c00493{bottom:692.040450px;}
.y10_c00493{bottom:735.510450px;}
.yf_c00493{bottom:769.890450px;}
.ye_c00493{bottom:804.360450px;}
.yd_c00493{bottom:847.740450px;}
.yc_c00493{bottom:882.210450px;}
.yb_c00493{bottom:916.590450px;}
.ya_c00493{bottom:960.060450px;}
.y9_c00493{bottom:994.440450px;}
.y8_c00493{bottom:1028.910450px;}
.y7_c00493{bottom:1063.290450px;}
.y6_c00493{bottom:1106.760450px;}
.y5_c00493{bottom:1141.140450px;}
.y2_c00493{bottom:1176.420450px;}
.y1_c00493{bottom:1196.940450px;}
.h2_c00493{height:47.988281px;}
.h7_c00493{height:49.937344px;}
.h1_c00493{height:50.315273px;}
.h3_c00493{height:56.320312px;}
.h4_c00493{height:60.257812px;}
.h5_c00493{height:65.130820px;}
.h6_c00493{height:65.131420px;}
.h0_c00493{height:1263.000000px;}
.w1_c00493{width:892.500000px;}
.w0_c00493{width:892.830000px;}
.x0_c00493{left:0.000000px;}
.x2_c00493{left:127.620000px;}
.x6_c00493{left:154.617210px;}
.x5_c00493{left:180.810000px;}
.x1_c00493{left:217.440000px;}
.x4_c00493{left:435.240000px;}
.x3_c00493{left:446.490000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.v1_c00493{vertical-align:26.560000pt;}
.lsf_c00493{letter-spacing:-0.134400pt;}
.ls15_c00493{letter-spacing:-0.038400pt;}
.lsc_c00493{letter-spacing:-0.026720pt;}
.ls11_c00493{letter-spacing:-0.025600pt;}
.ls13_c00493{letter-spacing:-0.019200pt;}
.ls16_c00493{letter-spacing:-0.012800pt;}
.ls12_c00493{letter-spacing:-0.006400pt;}
.lsd_c00493{letter-spacing:-0.005344pt;}
.ls18_c00493{letter-spacing:-0.004256pt;}
.ls17_c00493{letter-spacing:-0.003456pt;}
.lse_c00493{letter-spacing:0.000000pt;}
.ls0_c00493{letter-spacing:0.006400pt;}
.lsb_c00493{letter-spacing:0.008512pt;}
.ls5_c00493{letter-spacing:0.012768pt;}
.ls2_c00493{letter-spacing:0.012800pt;}
.ls14_c00493{letter-spacing:0.019200pt;}
.ls4_c00493{letter-spacing:0.021280pt;}
.ls3_c00493{letter-spacing:0.025600pt;}
.ls8_c00493{letter-spacing:0.029792pt;}
.ls9_c00493{letter-spacing:0.034048pt;}
.ls7_c00493{letter-spacing:0.042560pt;}
.ls1_c00493{letter-spacing:0.048672pt;}
.ls10_c00493{letter-spacing:0.083200pt;}
.ls6_c00493{letter-spacing:0.412480pt;}
.lsa_c00493{letter-spacing:1.912320pt;}
.ws2_c00493{word-spacing:-16.006400pt;}
.ws1_c00493{word-spacing:-15.961600pt;}
.ws3_c00493{word-spacing:-9.604224pt;}
.ws0_c00493{word-spacing:-9.408672pt;}
.ws5_c00493{word-spacing:-0.235136pt;}
.ws4_c00493{word-spacing:-0.213760pt;}
.ws10_c00493{word-spacing:-0.083200pt;}
.ws2c_c00493{word-spacing:-0.025536pt;}
.ws2d_c00493{word-spacing:-0.012768pt;}
.ws9_c00493{word-spacing:-0.006400pt;}
.ws29_c00493{word-spacing:-0.004256pt;}
.ws6_c00493{word-spacing:0.000000pt;}
.ws2a_c00493{word-spacing:0.004256pt;}
.ws17_c00493{word-spacing:0.006400pt;}
.ws2f_c00493{word-spacing:0.017024pt;}
.ws1a_c00493{word-spacing:0.019200pt;}
.ws2e_c00493{word-spacing:0.021280pt;}
.wsf_c00493{word-spacing:0.121600pt;}
.ws2b_c00493{word-spacing:0.323456pt;}
.ws28_c00493{word-spacing:0.620800pt;}
.wsd_c00493{word-spacing:0.640000pt;}
.ws27_c00493{word-spacing:0.659200pt;}
.wse_c00493{word-spacing:0.691200pt;}
.ws25_c00493{word-spacing:0.966400pt;}
.ws26_c00493{word-spacing:0.985600pt;}
.ws1c_c00493{word-spacing:1.299200pt;}
.ws1b_c00493{word-spacing:1.388800pt;}
.ws33_c00493{word-spacing:1.902432pt;}
.ws34_c00493{word-spacing:1.915200pt;}
.ws31_c00493{word-spacing:1.918080pt;}
.ws30_c00493{word-spacing:1.923712pt;}
.ws35_c00493{word-spacing:1.927968pt;}
.ws16_c00493{word-spacing:1.932800pt;}
.ws32_c00493{word-spacing:2.242912pt;}
.ws7_c00493{word-spacing:2.592000pt;}
.ws8_c00493{word-spacing:2.598400pt;}
.ws21_c00493{word-spacing:3.193600pt;}
.ws20_c00493{word-spacing:3.244800pt;}
.ws22_c00493{word-spacing:3.852800pt;}
.ws23_c00493{word-spacing:4.492800pt;}
.ws24_c00493{word-spacing:4.505600pt;}
.wsa_c00493{word-spacing:4.524800pt;}
.ws12_c00493{word-spacing:4.729600pt;}
.ws11_c00493{word-spacing:4.825600pt;}
.ws19_c00493{word-spacing:5.772800pt;}
.ws18_c00493{word-spacing:5.875200pt;}
.ws1e_c00493{word-spacing:8.678400pt;}
.ws1d_c00493{word-spacing:8.723200pt;}
.ws1f_c00493{word-spacing:8.736000pt;}
.ws15_c00493{word-spacing:17.292800pt;}
.ws14_c00493{word-spacing:17.920000pt;}
.ws13_c00493{word-spacing:17.939200pt;}
.wsc_c00493{word-spacing:19.206400pt;}
.wsb_c00493{word-spacing:19.276800pt;}
._0_c00493{width:0.935200pt;}
.fs5_c00493{font-size:34.560000pt;}
.fs3_c00493{font-size:37.440000pt;}
.fs4_c00493{font-size:42.560000pt;}
.fs2_c00493{font-size:48.000000pt;}
.fs0_c00493{font-size:53.440000pt;}
.fs1_c00493{font-size:64.000000pt;}
.y0_c00493{bottom:0.000000pt;}
.y3_c00493{bottom:51.067067pt;}
.y4_c00493{bottom:54.587067pt;}
.y26_c00493{bottom:78.432667pt;}
.y25_c00493{bottom:94.669307pt;}
.y24_c00493{bottom:110.991067pt;}
.y23_c00493{bottom:123.230427pt;}
.y22_c00493{bottom:139.468667pt;}
.y21_c00493{bottom:155.790427pt;}
.y20_c00493{bottom:172.030427pt;}
.y1f_c00493{bottom:188.267067pt;}
.y1e_c00493{bottom:201.787067pt;}
.y1d_c00493{bottom:220.187067pt;}
.y1c_c00493{bottom:238.587067pt;}
.y1b_c00493{bottom:285.147067pt;}
.y1a_c00493{bottom:315.787067pt;}
.y19_c00493{bottom:346.347067pt;}
.y18_c00493{bottom:376.987067pt;}
.y17_c00493{bottom:415.547067pt;}
.y16_c00493{bottom:446.187067pt;}
.y15_c00493{bottom:476.747067pt;}
.y14_c00493{bottom:515.387067pt;}
.y13_c00493{bottom:545.947067pt;}
.y12_c00493{bottom:584.587067pt;}
.y11_c00493{bottom:615.147067pt;}
.y10_c00493{bottom:653.787067pt;}
.yf_c00493{bottom:684.347067pt;}
.ye_c00493{bottom:714.987067pt;}
.yd_c00493{bottom:753.547067pt;}
.yc_c00493{bottom:784.187067pt;}
.yb_c00493{bottom:814.747067pt;}
.ya_c00493{bottom:853.387067pt;}
.y9_c00493{bottom:883.947067pt;}
.y8_c00493{bottom:914.587067pt;}
.y7_c00493{bottom:945.147067pt;}
.y6_c00493{bottom:983.787067pt;}
.y5_c00493{bottom:1014.347067pt;}
.y2_c00493{bottom:1045.707067pt;}
.y1_c00493{bottom:1063.947067pt;}
.h2_c00493{height:42.656250pt;}
.h7_c00493{height:44.388750pt;}
.h1_c00493{height:44.724687pt;}
.h3_c00493{height:50.062500pt;}
.h4_c00493{height:53.562500pt;}
.h5_c00493{height:57.894063pt;}
.h6_c00493{height:57.894596pt;}
.h0_c00493{height:1122.666667pt;}
.w1_c00493{width:793.333333pt;}
.w0_c00493{width:793.626667pt;}
.x0_c00493{left:0.000000pt;}
.x2_c00493{left:113.440000pt;}
.x6_c00493{left:137.437520pt;}
.x5_c00493{left:160.720000pt;}
.x1_c00493{left:193.280000pt;}
.x4_c00493{left:386.880000pt;}
.x3_c00493{left:396.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_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_25a6908f78f9b1cbddd4a8e7.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_190563ff75502227a91c7422.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00494;src:url('chunks/assets/font_fc5377d49c65097c9b0754c1.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;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_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.v1_c00494{vertical-align:15.840000px;}
.v2_c00494{vertical-align:29.880000px;}
.lsa_c00494{letter-spacing:-0.151200px;}
.ls12_c00494{letter-spacing:-0.043200px;}
.lse_c00494{letter-spacing:-0.036000px;}
.lsb_c00494{letter-spacing:-0.028800px;}
.lsd_c00494{letter-spacing:-0.021600px;}
.ls11_c00494{letter-spacing:-0.014400px;}
.ls15_c00494{letter-spacing:-0.009576px;}
.lsc_c00494{letter-spacing:-0.007200px;}
.ls14_c00494{letter-spacing:-0.003888px;}
.lsf_c00494{letter-spacing:0.000000px;}
.ls9_c00494{letter-spacing:0.004788px;}
.ls2_c00494{letter-spacing:0.007200px;}
.ls5_c00494{letter-spacing:0.014364px;}
.ls4_c00494{letter-spacing:0.014400px;}
.ls8_c00494{letter-spacing:0.019152px;}
.ls13_c00494{letter-spacing:0.021600px;}
.ls7_c00494{letter-spacing:0.047880px;}
.ls0_c00494{letter-spacing:0.048096px;}
.ls3_c00494{letter-spacing:0.054756px;}
.ls10_c00494{letter-spacing:0.093600px;}
.ls6_c00494{letter-spacing:0.464040px;}
.ls1_c00494{letter-spacing:1212.120000px;}
.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;}
}
.ws1_c00494{word-spacing:-10.804752px;}
.ws0_c00494{word-spacing:-10.584756px;}
.ws1b_c00494{word-spacing:-0.093600px;}
.ws1f_c00494{word-spacing:-0.072000px;}
.ws2a_c00494{word-spacing:-0.028728px;}
.ws6_c00494{word-spacing:-0.007200px;}
.ws3_c00494{word-spacing:0.000000px;}
.ws28_c00494{word-spacing:0.004788px;}
.ws16_c00494{word-spacing:0.007200px;}
.ws2d_c00494{word-spacing:0.014364px;}
.ws2b_c00494{word-spacing:0.019152px;}
.ws1e_c00494{word-spacing:0.021600px;}
.ws2c_c00494{word-spacing:0.028728px;}
.ws2_c00494{word-spacing:0.042084px;}
.ws1a_c00494{word-spacing:0.072000px;}
.wse_c00494{word-spacing:0.086400px;}
.ws19_c00494{word-spacing:0.144000px;}
.ws29_c00494{word-spacing:0.363888px;}
.wsd_c00494{word-spacing:0.741600px;}
.wsc_c00494{word-spacing:0.763200px;}
.ws17_c00494{word-spacing:2.145600px;}
.ws12_c00494{word-spacing:2.152800px;}
.ws24_c00494{word-spacing:2.181600px;}
.ws13_c00494{word-spacing:2.246400px;}
.ws26_c00494{word-spacing:3.614400px;}
.ws27_c00494{word-spacing:3.729600px;}
.ws14_c00494{word-spacing:5.414400px;}
.ws15_c00494{word-spacing:5.508000px;}
.ws1d_c00494{word-spacing:5.781600px;}
.wsa_c00494{word-spacing:6.501600px;}
.wsb_c00494{word-spacing:6.516000px;}
.ws23_c00494{word-spacing:6.825600px;}
.ws22_c00494{word-spacing:6.854400px;}
.wsf_c00494{word-spacing:8.992800px;}
.ws10_c00494{word-spacing:9.014400px;}
.ws11_c00494{word-spacing:9.172800px;}
.ws5_c00494{word-spacing:9.396000px;}
.ws4_c00494{word-spacing:9.410400px;}
.ws9_c00494{word-spacing:9.424800px;}
.ws8_c00494{word-spacing:9.439200px;}
.ws21_c00494{word-spacing:10.418400px;}
.ws20_c00494{word-spacing:10.533600px;}
.ws18_c00494{word-spacing:12.276000px;}
.ws1c_c00494{word-spacing:12.621600px;}
.ws25_c00494{word-spacing:16.603200px;}
.ws7_c00494{word-spacing:25.257600px;}
._0_c00494{margin-left:-1.322640px;}
._1_c00494{width:1.224000px;}
.fc0_c00494{color:rgb(0,0,0);}
.fs5_c00494{font-size:38.880000px;}
.fs3_c00494{font-size:42.120000px;}
.fs4_c00494{font-size:47.880000px;}
.fs2_c00494{font-size:54.000000px;}
.fs0_c00494{font-size:60.120000px;}
.fs1_c00494{font-size:72.000000px;}
.y0_c00494{bottom:0.000000px;}
.y2_c00494{bottom:57.450450px;}
.y21_c00494{bottom:88.234230px;}
.y20_c00494{bottom:106.502250px;}
.y1f_c00494{bottom:124.864230px;}
.y1e_c00494{bottom:143.130450px;}
.y1d_c00494{bottom:158.340450px;}
.y1c_c00494{bottom:179.040450px;}
.y1b_c00494{bottom:199.740600px;}
.y1a_c00494{bottom:295.410600px;}
.y19_c00494{bottom:329.790600px;}
.y18_c00494{bottom:364.260600px;}
.y17_c00494{bottom:407.640600px;}
.y16_c00494{bottom:442.110600px;}
.y15_c00494{bottom:476.490600px;}
.y14_c00494{bottom:519.960450px;}
.y13_c00494{bottom:554.340450px;}
.y12_c00494{bottom:588.810450px;}
.y11_c00494{bottom:632.190450px;}
.y10_c00494{bottom:666.660450px;}
.yf_c00494{bottom:701.040450px;}
.ye_c00494{bottom:744.510450px;}
.yd_c00494{bottom:778.890450px;}
.yc_c00494{bottom:813.360450px;}
.yb_c00494{bottom:847.740450px;}
.ya_c00494{bottom:891.210450px;}
.y9_c00494{bottom:925.590450px;}
.y8_c00494{bottom:960.060450px;}
.y7_c00494{bottom:994.440450px;}
.y6_c00494{bottom:1028.910450px;}
.y5_c00494{bottom:1063.290450px;}
.y4_c00494{bottom:1106.760450px;}
.y3_c00494{bottom:1141.140450px;}
.y1_c00494{bottom:1196.850450px;}
.h5_c00494{height:47.988281px;}
.h6_c00494{height:49.937344px;}
.h1_c00494{height:50.315273px;}
.h3_c00494{height:60.257812px;}
.h4_c00494{height:65.130820px;}
.h2_c00494{height:72.160312px;}
.h0_c00494{height:1263.000000px;}
.w1_c00494{width:892.500000px;}
.w0_c00494{width:892.830000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:127.620000px;}
.x2_c00494{left:180.810000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.v1_c00494{vertical-align:14.080000pt;}
.v2_c00494{vertical-align:26.560000pt;}
.lsa_c00494{letter-spacing:-0.134400pt;}
.ls12_c00494{letter-spacing:-0.038400pt;}
.lse_c00494{letter-spacing:-0.032000pt;}
.lsb_c00494{letter-spacing:-0.025600pt;}
.lsd_c00494{letter-spacing:-0.019200pt;}
.ls11_c00494{letter-spacing:-0.012800pt;}
.ls15_c00494{letter-spacing:-0.008512pt;}
.lsc_c00494{letter-spacing:-0.006400pt;}
.ls14_c00494{letter-spacing:-0.003456pt;}
.lsf_c00494{letter-spacing:0.000000pt;}
.ls9_c00494{letter-spacing:0.004256pt;}
.ls2_c00494{letter-spacing:0.006400pt;}
.ls5_c00494{letter-spacing:0.012768pt;}
.ls4_c00494{letter-spacing:0.012800pt;}
.ls8_c00494{letter-spacing:0.017024pt;}
.ls13_c00494{letter-spacing:0.019200pt;}
.ls7_c00494{letter-spacing:0.042560pt;}
.ls0_c00494{letter-spacing:0.042752pt;}
.ls3_c00494{letter-spacing:0.048672pt;}
.ls10_c00494{letter-spacing:0.083200pt;}
.ls6_c00494{letter-spacing:0.412480pt;}
.ls1_c00494{letter-spacing:1077.440000pt;}
.ws1_c00494{word-spacing:-9.604224pt;}
.ws0_c00494{word-spacing:-9.408672pt;}
.ws1b_c00494{word-spacing:-0.083200pt;}
.ws1f_c00494{word-spacing:-0.064000pt;}
.ws2a_c00494{word-spacing:-0.025536pt;}
.ws6_c00494{word-spacing:-0.006400pt;}
.ws3_c00494{word-spacing:0.000000pt;}
.ws28_c00494{word-spacing:0.004256pt;}
.ws16_c00494{word-spacing:0.006400pt;}
.ws2d_c00494{word-spacing:0.012768pt;}
.ws2b_c00494{word-spacing:0.017024pt;}
.ws1e_c00494{word-spacing:0.019200pt;}
.ws2c_c00494{word-spacing:0.025536pt;}
.ws2_c00494{word-spacing:0.037408pt;}
.ws1a_c00494{word-spacing:0.064000pt;}
.wse_c00494{word-spacing:0.076800pt;}
.ws19_c00494{word-spacing:0.128000pt;}
.ws29_c00494{word-spacing:0.323456pt;}
.wsd_c00494{word-spacing:0.659200pt;}
.wsc_c00494{word-spacing:0.678400pt;}
.ws17_c00494{word-spacing:1.907200pt;}
.ws12_c00494{word-spacing:1.913600pt;}
.ws24_c00494{word-spacing:1.939200pt;}
.ws13_c00494{word-spacing:1.996800pt;}
.ws26_c00494{word-spacing:3.212800pt;}
.ws27_c00494{word-spacing:3.315200pt;}
.ws14_c00494{word-spacing:4.812800pt;}
.ws15_c00494{word-spacing:4.896000pt;}
.ws1d_c00494{word-spacing:5.139200pt;}
.wsa_c00494{word-spacing:5.779200pt;}
.wsb_c00494{word-spacing:5.792000pt;}
.ws23_c00494{word-spacing:6.067200pt;}
.ws22_c00494{word-spacing:6.092800pt;}
.wsf_c00494{word-spacing:7.993600pt;}
.ws10_c00494{word-spacing:8.012800pt;}
.ws11_c00494{word-spacing:8.153600pt;}
.ws5_c00494{word-spacing:8.352000pt;}
.ws4_c00494{word-spacing:8.364800pt;}
.ws9_c00494{word-spacing:8.377600pt;}
.ws8_c00494{word-spacing:8.390400pt;}
.ws21_c00494{word-spacing:9.260800pt;}
.ws20_c00494{word-spacing:9.363200pt;}
.ws18_c00494{word-spacing:10.912000pt;}
.ws1c_c00494{word-spacing:11.219200pt;}
.ws25_c00494{word-spacing:14.758400pt;}
.ws7_c00494{word-spacing:22.451200pt;}
._0_c00494{margin-left:-1.175680pt;}
._1_c00494{width:1.088000pt;}
.fs5_c00494{font-size:34.560000pt;}
.fs3_c00494{font-size:37.440000pt;}
.fs4_c00494{font-size:42.560000pt;}
.fs2_c00494{font-size:48.000000pt;}
.fs0_c00494{font-size:53.440000pt;}
.fs1_c00494{font-size:64.000000pt;}
.y0_c00494{bottom:0.000000pt;}
.y2_c00494{bottom:51.067067pt;}
.y21_c00494{bottom:78.430427pt;}
.y20_c00494{bottom:94.668667pt;}
.y1f_c00494{bottom:110.990427pt;}
.y1e_c00494{bottom:127.227067pt;}
.y1d_c00494{bottom:140.747067pt;}
.y1c_c00494{bottom:159.147067pt;}
.y1b_c00494{bottom:177.547200pt;}
.y1a_c00494{bottom:262.587200pt;}
.y19_c00494{bottom:293.147200pt;}
.y18_c00494{bottom:323.787200pt;}
.y17_c00494{bottom:362.347200pt;}
.y16_c00494{bottom:392.987200pt;}
.y15_c00494{bottom:423.547200pt;}
.y14_c00494{bottom:462.187067pt;}
.y13_c00494{bottom:492.747067pt;}
.y12_c00494{bottom:523.387067pt;}
.y11_c00494{bottom:561.947067pt;}
.y10_c00494{bottom:592.587067pt;}
.yf_c00494{bottom:623.147067pt;}
.ye_c00494{bottom:661.787067pt;}
.yd_c00494{bottom:692.347067pt;}
.yc_c00494{bottom:722.987067pt;}
.yb_c00494{bottom:753.547067pt;}
.ya_c00494{bottom:792.187067pt;}
.y9_c00494{bottom:822.747067pt;}
.y8_c00494{bottom:853.387067pt;}
.y7_c00494{bottom:883.947067pt;}
.y6_c00494{bottom:914.587067pt;}
.y5_c00494{bottom:945.147067pt;}
.y4_c00494{bottom:983.787067pt;}
.y3_c00494{bottom:1014.347067pt;}
.y1_c00494{bottom:1063.867067pt;}
.h5_c00494{height:42.656250pt;}
.h6_c00494{height:44.388750pt;}
.h1_c00494{height:44.724687pt;}
.h3_c00494{height:53.562500pt;}
.h4_c00494{height:57.894063pt;}
.h2_c00494{height:64.142500pt;}
.h0_c00494{height:1122.666667pt;}
.w1_c00494{width:793.333333pt;}
.w0_c00494{width:793.626667pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:113.440000pt;}
.x2_c00494{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_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_b8d5e4ff412f39a28c987396.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_0a30efb44cde8c0db9450482.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00495;src:url('chunks/assets/font_2d8aff596c4b81c79857e74d.woff2')format("woff");}.ff4_c00495{font-family:ff4_c00495;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00495;src:url('chunks/assets/font_48c1e3e5d782121cc944f96b.woff2')format("woff");}.ff5_c00495{font-family:ff5_c00495;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00495;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00495{font-family:ff6_c00495;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00495;src:url('chunks/assets/font_882ce65091e066c12fb17a65.woff2')format("woff");}.ff7_c00495{font-family:ff7_c00495;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_c00495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.v1_c00495{vertical-align:29.880000px;}
.ls11_c00495{letter-spacing:-0.151200px;}
.ls13_c00495{letter-spacing:-0.036000px;}
.lse_c00495{letter-spacing:-0.030060px;}
.ls12_c00495{letter-spacing:-0.028800px;}
.ls19_c00495{letter-spacing:-0.021600px;}
.ls18_c00495{letter-spacing:-0.014400px;}
.ls1d_c00495{letter-spacing:-0.011664px;}
.ls1c_c00495{letter-spacing:-0.009576px;}
.ls15_c00495{letter-spacing:-0.007200px;}
.lsf_c00495{letter-spacing:-0.006012px;}
.ls1b_c00495{letter-spacing:-0.003888px;}
.ls10_c00495{letter-spacing:0.000000px;}
.lsc_c00495{letter-spacing:0.004788px;}
.ls1_c00495{letter-spacing:0.007200px;}
.ls4_c00495{letter-spacing:0.007812px;}
.ls5_c00495{letter-spacing:0.014364px;}
.ls8_c00495{letter-spacing:0.019152px;}
.ls9_c00495{letter-spacing:0.023940px;}
.lsd_c00495{letter-spacing:0.028728px;}
.ls16_c00495{letter-spacing:0.028800px;}
.ls2_c00495{letter-spacing:0.031248px;}
.lsa_c00495{letter-spacing:0.033516px;}
.ls17_c00495{letter-spacing:0.036000px;}
.lsb_c00495{letter-spacing:0.038304px;}
.ls7_c00495{letter-spacing:0.047880px;}
.ls1a_c00495{letter-spacing:0.050400px;}
.ls0_c00495{letter-spacing:0.054756px;}
.ls14_c00495{letter-spacing:0.093600px;}
.ls6_c00495{letter-spacing:0.464040px;}
.ls3_c00495{letter-spacing:26.560800px;}
.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;}
}
.ws2_c00495{word-spacing:-19.561248px;}
.ws1_c00495{word-spacing:-18.007200px;}
.ws3_c00495{word-spacing:-17.985600px;}
.ws4_c00495{word-spacing:-10.804752px;}
.ws0_c00495{word-spacing:-10.584756px;}
.ws15_c00495{word-spacing:-0.320292px;}
.ws6_c00495{word-spacing:-0.264528px;}
.ws5_c00495{word-spacing:-0.240480px;}
.ws1c_c00495{word-spacing:-0.093600px;}
.ws18_c00495{word-spacing:-0.086400px;}
.ws2c_c00495{word-spacing:-0.028728px;}
.ws31_c00495{word-spacing:-0.019152px;}
.ws30_c00495{word-spacing:-0.014364px;}
.ws33_c00495{word-spacing:-0.009576px;}
.ws12_c00495{word-spacing:-0.007200px;}
.ws2f_c00495{word-spacing:-0.004788px;}
.ws7_c00495{word-spacing:0.000000px;}
.ws2a_c00495{word-spacing:0.004788px;}
.ws10_c00495{word-spacing:0.007200px;}
.ws32_c00495{word-spacing:0.014364px;}
.ws22_c00495{word-spacing:0.014400px;}
.ws2d_c00495{word-spacing:0.019152px;}
.ws2e_c00495{word-spacing:0.028728px;}
.ws1b_c00495{word-spacing:0.036000px;}
.ws23_c00495{word-spacing:0.115200px;}
.wsa_c00495{word-spacing:0.208800px;}
.ws2b_c00495{word-spacing:0.363888px;}
.wsf_c00495{word-spacing:0.684000px;}
.wse_c00495{word-spacing:0.727200px;}
.ws1d_c00495{word-spacing:2.512800px;}
.ws1e_c00495{word-spacing:2.664000px;}
.ws17_c00495{word-spacing:3.614400px;}
.ws8_c00495{word-spacing:3.931200px;}
.ws9_c00495{word-spacing:3.996000px;}
.ws16_c00495{word-spacing:4.060800px;}
.ws1a_c00495{word-spacing:5.414400px;}
.ws19_c00495{word-spacing:5.421600px;}
.ws20_c00495{word-spacing:5.709600px;}
.ws1f_c00495{word-spacing:5.774400px;}
.ws26_c00495{word-spacing:7.862400px;}
.ws27_c00495{word-spacing:7.920000px;}
.ws14_c00495{word-spacing:8.719200px;}
.ws13_c00495{word-spacing:8.848800px;}
.wsd_c00495{word-spacing:10.771200px;}
.wsb_c00495{word-spacing:10.893600px;}
.wsc_c00495{word-spacing:10.944000px;}
.ws21_c00495{word-spacing:12.290400px;}
.ws11_c00495{word-spacing:12.974400px;}
.ws29_c00495{word-spacing:14.407200px;}
.ws28_c00495{word-spacing:14.428800px;}
.ws25_c00495{word-spacing:21.614400px;}
.ws24_c00495{word-spacing:21.672000px;}
._1_c00495{margin-left:-1.296792px;}
._0_c00495{width:1.052100px;}
.fc0_c00495{color:rgb(0,0,0);}
.fs6_c00495{font-size:38.880000px;}
.fs3_c00495{font-size:42.120000px;}
.fs5_c00495{font-size:47.880000px;}
.fs2_c00495{font-size:54.000000px;}
.fs0_c00495{font-size:60.120000px;}
.fs1_c00495{font-size:72.000000px;}
.fs4_c00495{font-size:78.120000px;}
.y0_c00495{bottom:0.000000px;}
.y3_c00495{bottom:57.450450px;}
.y4_c00495{bottom:61.410450px;}
.y26_c00495{bottom:86.884230px;}
.y25_c00495{bottom:105.148470px;}
.y24_c00495{bottom:123.514230px;}
.y23_c00495{bottom:141.784230px;}
.y22_c00495{bottom:160.054050px;}
.y21_c00495{bottom:178.416030px;}
.y20_c00495{bottom:196.682250px;}
.y1f_c00495{bottom:214.948470px;}
.y1e_c00495{bottom:233.310450px;}
.y1d_c00495{bottom:248.520450px;}
.y1c_c00495{bottom:269.130450px;}
.y1b_c00495{bottom:289.830450px;}
.y1a_c00495{bottom:325.380450px;}
.y19_c00495{bottom:359.760600px;}
.y18_c00495{bottom:394.230600px;}
.y17_c00495{bottom:437.610600px;}
.y16_c00495{bottom:472.080600px;}
.y15_c00495{bottom:506.460450px;}
.y14_c00495{bottom:540.930450px;}
.y13_c00495{bottom:584.310450px;}
.y12_c00495{bottom:618.780450px;}
.y11_c00495{bottom:662.160450px;}
.y10_c00495{bottom:696.630450px;}
.yf_c00495{bottom:731.010450px;}
.ye_c00495{bottom:776.100450px;}
.yd_c00495{bottom:838.740450px;}
.yc_c00495{bottom:873.210450px;}
.yb_c00495{bottom:916.590450px;}
.ya_c00495{bottom:951.060450px;}
.y9_c00495{bottom:994.440450px;}
.y8_c00495{bottom:1028.910450px;}
.y7_c00495{bottom:1063.290450px;}
.y6_c00495{bottom:1106.760450px;}
.y5_c00495{bottom:1141.140450px;}
.y2_c00495{bottom:1176.420450px;}
.y1_c00495{bottom:1196.940450px;}
.h2_c00495{height:47.988281px;}
.h9_c00495{height:49.937344px;}
.ha_c00495{height:49.945264px;}
.h1_c00495{height:50.315273px;}
.h3_c00495{height:56.320312px;}
.h4_c00495{height:60.257812px;}
.h8_c00495{height:65.130220px;}
.h5_c00495{height:65.130820px;}
.h7_c00495{height:65.131420px;}
.h6_c00495{height:81.476719px;}
.h0_c00495{height:1263.000000px;}
.w1_c00495{width:892.500000px;}
.w0_c00495{width:892.830000px;}
.x0_c00495{left:0.000000px;}
.x2_c00495{left:127.620000px;}
.x5_c00495{left:180.810000px;}
.x1_c00495{left:217.440000px;}
.x4_c00495{left:435.240000px;}
.x3_c00495{left:446.490000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.v1_c00495{vertical-align:26.560000pt;}
.ls11_c00495{letter-spacing:-0.134400pt;}
.ls13_c00495{letter-spacing:-0.032000pt;}
.lse_c00495{letter-spacing:-0.026720pt;}
.ls12_c00495{letter-spacing:-0.025600pt;}
.ls19_c00495{letter-spacing:-0.019200pt;}
.ls18_c00495{letter-spacing:-0.012800pt;}
.ls1d_c00495{letter-spacing:-0.010368pt;}
.ls1c_c00495{letter-spacing:-0.008512pt;}
.ls15_c00495{letter-spacing:-0.006400pt;}
.lsf_c00495{letter-spacing:-0.005344pt;}
.ls1b_c00495{letter-spacing:-0.003456pt;}
.ls10_c00495{letter-spacing:0.000000pt;}
.lsc_c00495{letter-spacing:0.004256pt;}
.ls1_c00495{letter-spacing:0.006400pt;}
.ls4_c00495{letter-spacing:0.006944pt;}
.ls5_c00495{letter-spacing:0.012768pt;}
.ls8_c00495{letter-spacing:0.017024pt;}
.ls9_c00495{letter-spacing:0.021280pt;}
.lsd_c00495{letter-spacing:0.025536pt;}
.ls16_c00495{letter-spacing:0.025600pt;}
.ls2_c00495{letter-spacing:0.027776pt;}
.lsa_c00495{letter-spacing:0.029792pt;}
.ls17_c00495{letter-spacing:0.032000pt;}
.lsb_c00495{letter-spacing:0.034048pt;}
.ls7_c00495{letter-spacing:0.042560pt;}
.ls1a_c00495{letter-spacing:0.044800pt;}
.ls0_c00495{letter-spacing:0.048672pt;}
.ls14_c00495{letter-spacing:0.083200pt;}
.ls6_c00495{letter-spacing:0.412480pt;}
.ls3_c00495{letter-spacing:23.609600pt;}
.ws2_c00495{word-spacing:-17.387776pt;}
.ws1_c00495{word-spacing:-16.006400pt;}
.ws3_c00495{word-spacing:-15.987200pt;}
.ws4_c00495{word-spacing:-9.604224pt;}
.ws0_c00495{word-spacing:-9.408672pt;}
.ws15_c00495{word-spacing:-0.284704pt;}
.ws6_c00495{word-spacing:-0.235136pt;}
.ws5_c00495{word-spacing:-0.213760pt;}
.ws1c_c00495{word-spacing:-0.083200pt;}
.ws18_c00495{word-spacing:-0.076800pt;}
.ws2c_c00495{word-spacing:-0.025536pt;}
.ws31_c00495{word-spacing:-0.017024pt;}
.ws30_c00495{word-spacing:-0.012768pt;}
.ws33_c00495{word-spacing:-0.008512pt;}
.ws12_c00495{word-spacing:-0.006400pt;}
.ws2f_c00495{word-spacing:-0.004256pt;}
.ws7_c00495{word-spacing:0.000000pt;}
.ws2a_c00495{word-spacing:0.004256pt;}
.ws10_c00495{word-spacing:0.006400pt;}
.ws32_c00495{word-spacing:0.012768pt;}
.ws22_c00495{word-spacing:0.012800pt;}
.ws2d_c00495{word-spacing:0.017024pt;}
.ws2e_c00495{word-spacing:0.025536pt;}
.ws1b_c00495{word-spacing:0.032000pt;}
.ws23_c00495{word-spacing:0.102400pt;}
.wsa_c00495{word-spacing:0.185600pt;}
.ws2b_c00495{word-spacing:0.323456pt;}
.wsf_c00495{word-spacing:0.608000pt;}
.wse_c00495{word-spacing:0.646400pt;}
.ws1d_c00495{word-spacing:2.233600pt;}
.ws1e_c00495{word-spacing:2.368000pt;}
.ws17_c00495{word-spacing:3.212800pt;}
.ws8_c00495{word-spacing:3.494400pt;}
.ws9_c00495{word-spacing:3.552000pt;}
.ws16_c00495{word-spacing:3.609600pt;}
.ws1a_c00495{word-spacing:4.812800pt;}
.ws19_c00495{word-spacing:4.819200pt;}
.ws20_c00495{word-spacing:5.075200pt;}
.ws1f_c00495{word-spacing:5.132800pt;}
.ws26_c00495{word-spacing:6.988800pt;}
.ws27_c00495{word-spacing:7.040000pt;}
.ws14_c00495{word-spacing:7.750400pt;}
.ws13_c00495{word-spacing:7.865600pt;}
.wsd_c00495{word-spacing:9.574400pt;}
.wsb_c00495{word-spacing:9.683200pt;}
.wsc_c00495{word-spacing:9.728000pt;}
.ws21_c00495{word-spacing:10.924800pt;}
.ws11_c00495{word-spacing:11.532800pt;}
.ws29_c00495{word-spacing:12.806400pt;}
.ws28_c00495{word-spacing:12.825600pt;}
.ws25_c00495{word-spacing:19.212800pt;}
.ws24_c00495{word-spacing:19.264000pt;}
._1_c00495{margin-left:-1.152704pt;}
._0_c00495{width:0.935200pt;}
.fs6_c00495{font-size:34.560000pt;}
.fs3_c00495{font-size:37.440000pt;}
.fs5_c00495{font-size:42.560000pt;}
.fs2_c00495{font-size:48.000000pt;}
.fs0_c00495{font-size:53.440000pt;}
.fs1_c00495{font-size:64.000000pt;}
.fs4_c00495{font-size:69.440000pt;}
.y0_c00495{bottom:0.000000pt;}
.y3_c00495{bottom:51.067067pt;}
.y4_c00495{bottom:54.587067pt;}
.y26_c00495{bottom:77.230427pt;}
.y25_c00495{bottom:93.465307pt;}
.y24_c00495{bottom:109.790427pt;}
.y23_c00495{bottom:126.030427pt;}
.y22_c00495{bottom:142.270267pt;}
.y21_c00495{bottom:158.592027pt;}
.y20_c00495{bottom:174.828667pt;}
.y1f_c00495{bottom:191.065307pt;}
.y1e_c00495{bottom:207.387067pt;}
.y1d_c00495{bottom:220.907067pt;}
.y1c_c00495{bottom:239.227067pt;}
.y1b_c00495{bottom:257.627067pt;}
.y1a_c00495{bottom:289.227067pt;}
.y19_c00495{bottom:319.787200pt;}
.y18_c00495{bottom:350.427200pt;}
.y17_c00495{bottom:388.987200pt;}
.y16_c00495{bottom:419.627200pt;}
.y15_c00495{bottom:450.187067pt;}
.y14_c00495{bottom:480.827067pt;}
.y13_c00495{bottom:519.387067pt;}
.y12_c00495{bottom:550.027067pt;}
.y11_c00495{bottom:588.587067pt;}
.y10_c00495{bottom:619.227067pt;}
.yf_c00495{bottom:649.787067pt;}
.ye_c00495{bottom:689.867067pt;}
.yd_c00495{bottom:745.547067pt;}
.yc_c00495{bottom:776.187067pt;}
.yb_c00495{bottom:814.747067pt;}
.ya_c00495{bottom:845.387067pt;}
.y9_c00495{bottom:883.947067pt;}
.y8_c00495{bottom:914.587067pt;}
.y7_c00495{bottom:945.147067pt;}
.y6_c00495{bottom:983.787067pt;}
.y5_c00495{bottom:1014.347067pt;}
.y2_c00495{bottom:1045.707067pt;}
.y1_c00495{bottom:1063.947067pt;}
.h2_c00495{height:42.656250pt;}
.h9_c00495{height:44.388750pt;}
.ha_c00495{height:44.395790pt;}
.h1_c00495{height:44.724687pt;}
.h3_c00495{height:50.062500pt;}
.h4_c00495{height:53.562500pt;}
.h8_c00495{height:57.893529pt;}
.h5_c00495{height:57.894063pt;}
.h7_c00495{height:57.894596pt;}
.h6_c00495{height:72.423750pt;}
.h0_c00495{height:1122.666667pt;}
.w1_c00495{width:793.333333pt;}
.w0_c00495{width:793.626667pt;}
.x0_c00495{left:0.000000pt;}
.x2_c00495{left:113.440000pt;}
.x5_c00495{left:160.720000pt;}
.x1_c00495{left:193.280000pt;}
.x4_c00495{left:386.880000pt;}
.x3_c00495{left:396.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_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_a9430d2f5255ff178bd8bc0d.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00496;src:url('chunks/assets/font_e702e292da6b793032595a5e.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00496;src:url('chunks/assets/font_716e29238eea26048eba1bd7.woff2')format("woff");}.ff4_c00496{font-family:ff4_c00496;line-height:1.102051;font-style:normal;font-weight:normal;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_6a0b7a7ac8ece9d3d97b58e8.woff2')format("woff");}.ff5_c00496{font-family:ff5_c00496;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00496;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00496{font-family:ff6_c00496;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00496;src:url('chunks/assets/font_68d3317cd4a7af66c1f48089.woff2')format("woff");}.ff7_c00496{font-family:ff7_c00496;line-height:0.674805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00496;src:url('chunks/assets/font_754ecb9ae6e934be0d3a2ca7.woff2')format("woff");}.ff8_c00496{font-family:ff8_c00496;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_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;}
.v1_c00496{vertical-align:15.840000px;}
.v2_c00496{vertical-align:29.880000px;}
.lsf_c00496{letter-spacing:-0.151200px;}
.ls13_c00496{letter-spacing:-0.050400px;}
.ls17_c00496{letter-spacing:-0.036000px;}
.ls12_c00496{letter-spacing:-0.028800px;}
.ls18_c00496{letter-spacing:-0.023436px;}
.ls15_c00496{letter-spacing:-0.021600px;}
.ls10_c00496{letter-spacing:-0.014400px;}
.ls1a_c00496{letter-spacing:-0.011664px;}
.ls14_c00496{letter-spacing:-0.007200px;}
.ls19_c00496{letter-spacing:-0.003888px;}
.ls11_c00496{letter-spacing:0.000000px;}
.lsc_c00496{letter-spacing:0.004788px;}
.ls3_c00496{letter-spacing:0.007200px;}
.ls9_c00496{letter-spacing:0.014364px;}
.ls6_c00496{letter-spacing:0.015624px;}
.ls7_c00496{letter-spacing:0.021600px;}
.lse_c00496{letter-spacing:0.023940px;}
.lsd_c00496{letter-spacing:0.028728px;}
.ls4_c00496{letter-spacing:0.031248px;}
.ls8_c00496{letter-spacing:0.036000px;}
.lsb_c00496{letter-spacing:0.047880px;}
.ls0_c00496{letter-spacing:0.048096px;}
.ls2_c00496{letter-spacing:0.054756px;}
.ls16_c00496{letter-spacing:0.093600px;}
.lsa_c00496{letter-spacing:0.464040px;}
.ls5_c00496{letter-spacing:26.560800px;}
.ls1_c00496{letter-spacing:1212.120000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00496{word-spacing:-19.561248px;}
.ws2_c00496{word-spacing:-17.978400px;}
.ws3_c00496{word-spacing:-10.804752px;}
.ws0_c00496{word-spacing:-10.584756px;}
.ws16_c00496{word-spacing:-0.289044px;}
.ws26_c00496{word-spacing:-0.028728px;}
.ws29_c00496{word-spacing:-0.009576px;}
.ws2a_c00496{word-spacing:-0.004788px;}
.ws5_c00496{word-spacing:0.000000px;}
.ws24_c00496{word-spacing:0.004788px;}
.ws27_c00496{word-spacing:0.014364px;}
.ws10_c00496{word-spacing:0.014400px;}
.ws28_c00496{word-spacing:0.019152px;}
.ws13_c00496{word-spacing:0.036000px;}
.ws4_c00496{word-spacing:0.042084px;}
.ws22_c00496{word-spacing:0.057600px;}
.ws21_c00496{word-spacing:0.079200px;}
.ws25_c00496{word-spacing:0.363888px;}
.ws9_c00496{word-spacing:1.807200px;}
.ws23_c00496{word-spacing:1.828800px;}
.ws12_c00496{word-spacing:2.808000px;}
.ws11_c00496{word-spacing:2.836800px;}
.ws1a_c00496{word-spacing:2.887200px;}
.ws19_c00496{word-spacing:2.973600px;}
.ws1e_c00496{word-spacing:5.378400px;}
.ws1f_c00496{word-spacing:5.400000px;}
.wsc_c00496{word-spacing:5.407200px;}
.wsa_c00496{word-spacing:5.428800px;}
.ws20_c00496{word-spacing:5.479200px;}
.wsb_c00496{word-spacing:5.500800px;}
.ws6_c00496{word-spacing:7.840800px;}
.ws7_c00496{word-spacing:7.891200px;}
.wsd_c00496{word-spacing:7.984800px;}
.ws1c_c00496{word-spacing:9.374400px;}
.ws1b_c00496{word-spacing:11.174400px;}
.ws15_c00496{word-spacing:13.444452px;}
.ws14_c00496{word-spacing:13.616316px;}
.ws8_c00496{word-spacing:14.414400px;}
.ws17_c00496{word-spacing:17.956800px;}
.ws18_c00496{word-spacing:18.021600px;}
.ws1d_c00496{word-spacing:18.367200px;}
.wse_c00496{word-spacing:21.621600px;}
.wsf_c00496{word-spacing:21.729600px;}
._0_c00496{margin-left:-1.322640px;}
._1_c00496{width:1.008000px;}
.fc0_c00496{color:rgb(0,0,0);}
.fs6_c00496{font-size:38.880000px;}
.fs3_c00496{font-size:42.120000px;}
.fs5_c00496{font-size:47.880000px;}
.fs2_c00496{font-size:54.000000px;}
.fs0_c00496{font-size:60.120000px;}
.fs1_c00496{font-size:72.000000px;}
.fs4_c00496{font-size:78.120000px;}
.y0_c00496{bottom:0.000000px;}
.y2_c00496{bottom:57.450450px;}
.y22_c00496{bottom:82.900650px;}
.y21_c00496{bottom:101.166870px;}
.y20_c00496{bottom:119.532630px;}
.y1f_c00496{bottom:137.802630px;}
.y1e_c00496{bottom:156.068850px;}
.y1d_c00496{bottom:171.278850px;}
.y1c_c00496{bottom:191.978850px;}
.y1b_c00496{bottom:212.679000px;}
.y1a_c00496{bottom:266.319000px;}
.y19_c00496{bottom:300.789000px;}
.y18_c00496{bottom:344.168850px;}
.y17_c00496{bottom:378.638850px;}
.y16_c00496{bottom:413.018850px;}
.y15_c00496{bottom:456.488850px;}
.y14_c00496{bottom:490.868850px;}
.y13_c00496{bottom:525.338850px;}
.y12_c00496{bottom:559.718850px;}
.y11_c00496{bottom:594.188850px;}
.y10_c00496{bottom:641.568180px;}
.yf_c00496{bottom:681.780450px;}
.ye_c00496{bottom:744.510450px;}
.yd_c00496{bottom:778.890450px;}
.yc_c00496{bottom:813.360450px;}
.yb_c00496{bottom:856.740450px;}
.ya_c00496{bottom:891.210450px;}
.y9_c00496{bottom:925.590450px;}
.y8_c00496{bottom:960.060450px;}
.y7_c00496{bottom:994.440450px;}
.y6_c00496{bottom:1028.910450px;}
.y5_c00496{bottom:1063.290450px;}
.y4_c00496{bottom:1106.760450px;}
.y3_c00496{bottom:1141.140450px;}
.y1_c00496{bottom:1196.850450px;}
.h8_c00496{height:47.988281px;}
.h9_c00496{height:49.937344px;}
.h1_c00496{height:50.315273px;}
.h3_c00496{height:60.257812px;}
.h4_c00496{height:65.130820px;}
.h7_c00496{height:65.131420px;}
.h6_c00496{height:65.456016px;}
.h2_c00496{height:72.160312px;}
.h5_c00496{height:81.476719px;}
.h0_c00496{height:1263.000000px;}
.w1_c00496{width:892.500000px;}
.w0_c00496{width:892.830000px;}
.x0_c00496{left:0.000000px;}
.x1_c00496{left:127.620000px;}
.x2_c00496{left:180.720000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.v1_c00496{vertical-align:14.080000pt;}
.v2_c00496{vertical-align:26.560000pt;}
.lsf_c00496{letter-spacing:-0.134400pt;}
.ls13_c00496{letter-spacing:-0.044800pt;}
.ls17_c00496{letter-spacing:-0.032000pt;}
.ls12_c00496{letter-spacing:-0.025600pt;}
.ls18_c00496{letter-spacing:-0.020832pt;}
.ls15_c00496{letter-spacing:-0.019200pt;}
.ls10_c00496{letter-spacing:-0.012800pt;}
.ls1a_c00496{letter-spacing:-0.010368pt;}
.ls14_c00496{letter-spacing:-0.006400pt;}
.ls19_c00496{letter-spacing:-0.003456pt;}
.ls11_c00496{letter-spacing:0.000000pt;}
.lsc_c00496{letter-spacing:0.004256pt;}
.ls3_c00496{letter-spacing:0.006400pt;}
.ls9_c00496{letter-spacing:0.012768pt;}
.ls6_c00496{letter-spacing:0.013888pt;}
.ls7_c00496{letter-spacing:0.019200pt;}
.lse_c00496{letter-spacing:0.021280pt;}
.lsd_c00496{letter-spacing:0.025536pt;}
.ls4_c00496{letter-spacing:0.027776pt;}
.ls8_c00496{letter-spacing:0.032000pt;}
.lsb_c00496{letter-spacing:0.042560pt;}
.ls0_c00496{letter-spacing:0.042752pt;}
.ls2_c00496{letter-spacing:0.048672pt;}
.ls16_c00496{letter-spacing:0.083200pt;}
.lsa_c00496{letter-spacing:0.412480pt;}
.ls5_c00496{letter-spacing:23.609600pt;}
.ls1_c00496{letter-spacing:1077.440000pt;}
.ws1_c00496{word-spacing:-17.387776pt;}
.ws2_c00496{word-spacing:-15.980800pt;}
.ws3_c00496{word-spacing:-9.604224pt;}
.ws0_c00496{word-spacing:-9.408672pt;}
.ws16_c00496{word-spacing:-0.256928pt;}
.ws26_c00496{word-spacing:-0.025536pt;}
.ws29_c00496{word-spacing:-0.008512pt;}
.ws2a_c00496{word-spacing:-0.004256pt;}
.ws5_c00496{word-spacing:0.000000pt;}
.ws24_c00496{word-spacing:0.004256pt;}
.ws27_c00496{word-spacing:0.012768pt;}
.ws10_c00496{word-spacing:0.012800pt;}
.ws28_c00496{word-spacing:0.017024pt;}
.ws13_c00496{word-spacing:0.032000pt;}
.ws4_c00496{word-spacing:0.037408pt;}
.ws22_c00496{word-spacing:0.051200pt;}
.ws21_c00496{word-spacing:0.070400pt;}
.ws25_c00496{word-spacing:0.323456pt;}
.ws9_c00496{word-spacing:1.606400pt;}
.ws23_c00496{word-spacing:1.625600pt;}
.ws12_c00496{word-spacing:2.496000pt;}
.ws11_c00496{word-spacing:2.521600pt;}
.ws1a_c00496{word-spacing:2.566400pt;}
.ws19_c00496{word-spacing:2.643200pt;}
.ws1e_c00496{word-spacing:4.780800pt;}
.ws1f_c00496{word-spacing:4.800000pt;}
.wsc_c00496{word-spacing:4.806400pt;}
.wsa_c00496{word-spacing:4.825600pt;}
.ws20_c00496{word-spacing:4.870400pt;}
.wsb_c00496{word-spacing:4.889600pt;}
.ws6_c00496{word-spacing:6.969600pt;}
.ws7_c00496{word-spacing:7.014400pt;}
.wsd_c00496{word-spacing:7.097600pt;}
.ws1c_c00496{word-spacing:8.332800pt;}
.ws1b_c00496{word-spacing:9.932800pt;}
.ws15_c00496{word-spacing:11.950624pt;}
.ws14_c00496{word-spacing:12.103392pt;}
.ws8_c00496{word-spacing:12.812800pt;}
.ws17_c00496{word-spacing:15.961600pt;}
.ws18_c00496{word-spacing:16.019200pt;}
.ws1d_c00496{word-spacing:16.326400pt;}
.wse_c00496{word-spacing:19.219200pt;}
.wsf_c00496{word-spacing:19.315200pt;}
._0_c00496{margin-left:-1.175680pt;}
._1_c00496{width:0.896000pt;}
.fs6_c00496{font-size:34.560000pt;}
.fs3_c00496{font-size:37.440000pt;}
.fs5_c00496{font-size:42.560000pt;}
.fs2_c00496{font-size:48.000000pt;}
.fs0_c00496{font-size:53.440000pt;}
.fs1_c00496{font-size:64.000000pt;}
.fs4_c00496{font-size:69.440000pt;}
.y0_c00496{bottom:0.000000pt;}
.y2_c00496{bottom:51.067067pt;}
.y22_c00496{bottom:73.689467pt;}
.y21_c00496{bottom:89.926107pt;}
.y20_c00496{bottom:106.251227pt;}
.y1f_c00496{bottom:122.491227pt;}
.y1e_c00496{bottom:138.727867pt;}
.y1d_c00496{bottom:152.247867pt;}
.y1c_c00496{bottom:170.647867pt;}
.y1b_c00496{bottom:189.048000pt;}
.y1a_c00496{bottom:236.728000pt;}
.y19_c00496{bottom:267.368000pt;}
.y18_c00496{bottom:305.927867pt;}
.y17_c00496{bottom:336.567867pt;}
.y16_c00496{bottom:367.127867pt;}
.y15_c00496{bottom:405.767867pt;}
.y14_c00496{bottom:436.327867pt;}
.y13_c00496{bottom:466.967867pt;}
.y12_c00496{bottom:497.527867pt;}
.y11_c00496{bottom:528.167867pt;}
.y10_c00496{bottom:570.282827pt;}
.yf_c00496{bottom:606.027067pt;}
.ye_c00496{bottom:661.787067pt;}
.yd_c00496{bottom:692.347067pt;}
.yc_c00496{bottom:722.987067pt;}
.yb_c00496{bottom:761.547067pt;}
.ya_c00496{bottom:792.187067pt;}
.y9_c00496{bottom:822.747067pt;}
.y8_c00496{bottom:853.387067pt;}
.y7_c00496{bottom:883.947067pt;}
.y6_c00496{bottom:914.587067pt;}
.y5_c00496{bottom:945.147067pt;}
.y4_c00496{bottom:983.787067pt;}
.y3_c00496{bottom:1014.347067pt;}
.y1_c00496{bottom:1063.867067pt;}
.h8_c00496{height:42.656250pt;}
.h9_c00496{height:44.388750pt;}
.h1_c00496{height:44.724687pt;}
.h3_c00496{height:53.562500pt;}
.h4_c00496{height:57.894062pt;}
.h7_c00496{height:57.894596pt;}
.h6_c00496{height:58.183125pt;}
.h2_c00496{height:64.142500pt;}
.h5_c00496{height:72.423750pt;}
.h0_c00496{height:1122.666667pt;}
.w1_c00496{width:793.333333pt;}
.w0_c00496{width:793.626667pt;}
.x0_c00496{left:0.000000pt;}
.x1_c00496{left:113.440000pt;}
.x2_c00496{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_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_eb347216655f9920b94c3255.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_b000bf6c1475c25aea919070.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00497;src:url('chunks/assets/font_cae18cc77973140b1f5a8a3f.woff2')format("woff");}.ff4_c00497{font-family:ff4_c00497;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00497;src:url('chunks/assets/font_882ce65091e066c12fb17a65.woff2')format("woff");}.ff5_c00497{font-family:ff5_c00497;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_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;}
.v1_c00497{vertical-align:29.880000px;}
.lsf_c00497{letter-spacing:-0.151200px;}
.ls15_c00497{letter-spacing:-0.050400px;}
.ls16_c00497{letter-spacing:-0.036000px;}
.lsc_c00497{letter-spacing:-0.030060px;}
.ls14_c00497{letter-spacing:-0.028800px;}
.ls10_c00497{letter-spacing:-0.021600px;}
.ls13_c00497{letter-spacing:-0.014400px;}
.ls18_c00497{letter-spacing:-0.009576px;}
.ls11_c00497{letter-spacing:-0.007200px;}
.lsd_c00497{letter-spacing:-0.006012px;}
.ls17_c00497{letter-spacing:-0.003888px;}
.lse_c00497{letter-spacing:0.000000px;}
.lsa_c00497{letter-spacing:0.004788px;}
.ls2_c00497{letter-spacing:0.007200px;}
.ls7_c00497{letter-spacing:0.014364px;}
.ls0_c00497{letter-spacing:0.014400px;}
.lsb_c00497{letter-spacing:0.019152px;}
.ls6_c00497{letter-spacing:0.023940px;}
.ls9_c00497{letter-spacing:0.047880px;}
.ls1_c00497{letter-spacing:0.054756px;}
.ls12_c00497{letter-spacing:0.093600px;}
.ls3_c00497{letter-spacing:0.144000px;}
.ls8_c00497{letter-spacing:0.464040px;}
.ls4_c00497{letter-spacing:65.304000px;}
.ls5_c00497{letter-spacing:66.024000px;}
.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;}
}
.ws1_c00497{word-spacing:-18.007200px;}
.ws2_c00497{word-spacing:-17.964000px;}
.ws3_c00497{word-spacing:-10.804752px;}
.ws0_c00497{word-spacing:-10.584756px;}
.ws5_c00497{word-spacing:-0.264528px;}
.ws4_c00497{word-spacing:-0.240480px;}
.ws22_c00497{word-spacing:-0.093600px;}
.ws19_c00497{word-spacing:-0.086400px;}
.ws2a_c00497{word-spacing:-0.028728px;}
.ws27_c00497{word-spacing:-0.004788px;}
.ws6_c00497{word-spacing:0.000000px;}
.ws28_c00497{word-spacing:0.004788px;}
.wsb_c00497{word-spacing:0.007200px;}
.ws2b_c00497{word-spacing:0.014364px;}
.ws13_c00497{word-spacing:0.014400px;}
.wsd_c00497{word-spacing:0.021600px;}
.ws2c_c00497{word-spacing:0.028728px;}
.ws17_c00497{word-spacing:0.100800px;}
.ws18_c00497{word-spacing:0.316800px;}
.ws29_c00497{word-spacing:0.363888px;}
.ws15_c00497{word-spacing:1.022400px;}
.ws16_c00497{word-spacing:1.065600px;}
.wsf_c00497{word-spacing:1.440000px;}
.wse_c00497{word-spacing:1.555200px;}
.ws10_c00497{word-spacing:1.720800px;}
.ws23_c00497{word-spacing:1.792800px;}
.ws11_c00497{word-spacing:1.821600px;}
.ws12_c00497{word-spacing:1.850400px;}
.ws24_c00497{word-spacing:1.886400px;}
.ws1b_c00497{word-spacing:5.392800px;}
.ws1a_c00497{word-spacing:5.421600px;}
.ws1d_c00497{word-spacing:6.825600px;}
.ws20_c00497{word-spacing:7.574400px;}
.ws1f_c00497{word-spacing:7.581600px;}
.ws1c_c00497{word-spacing:7.941600px;}
.ws7_c00497{word-spacing:8.985600px;}
.ws8_c00497{word-spacing:9.043200px;}
.ws1e_c00497{word-spacing:12.628800px;}
.ws14_c00497{word-spacing:13.334400px;}
.wsc_c00497{word-spacing:14.760000px;}
.ws26_c00497{word-spacing:17.287200px;}
.ws25_c00497{word-spacing:17.337600px;}
.wsa_c00497{word-spacing:17.661600px;}
.ws9_c00497{word-spacing:17.719200px;}
.ws21_c00497{word-spacing:41.407200px;}
._1_c00497{margin-left:-1.008000px;}
._0_c00497{width:1.052100px;}
.fc0_c00497{color:rgb(0,0,0);}
.fs5_c00497{font-size:38.880000px;}
.fs3_c00497{font-size:42.120000px;}
.fs4_c00497{font-size:47.880000px;}
.fs2_c00497{font-size:54.000000px;}
.fs0_c00497{font-size:60.120000px;}
.fs1_c00497{font-size:72.000000px;}
.y0_c00497{bottom:0.000000px;}
.y3_c00497{bottom:57.450450px;}
.y4_c00497{bottom:61.410450px;}
.y24_c00497{bottom:88.236030px;}
.y23_c00497{bottom:106.502250px;}
.y22_c00497{bottom:124.864230px;}
.y21_c00497{bottom:143.134230px;}
.y20_c00497{bottom:161.400450px;}
.y1f_c00497{bottom:176.610450px;}
.y1e_c00497{bottom:197.310450px;}
.y1d_c00497{bottom:218.010450px;}
.y1c_c00497{bottom:268.410450px;}
.y1b_c00497{bottom:302.790450px;}
.y1a_c00497{bottom:346.260600px;}
.y19_c00497{bottom:380.640600px;}
.y18_c00497{bottom:415.110600px;}
.y17_c00497{bottom:449.490600px;}
.y16_c00497{bottom:492.960450px;}
.y15_c00497{bottom:527.340450px;}
.y14_c00497{bottom:579.810450px;}
.y13_c00497{bottom:614.190450px;}
.y12_c00497{bottom:648.660450px;}
.y11_c00497{bottom:692.040450px;}
.y10_c00497{bottom:726.510450px;}
.yf_c00497{bottom:769.890450px;}
.ye_c00497{bottom:804.360450px;}
.yd_c00497{bottom:838.740450px;}
.yc_c00497{bottom:882.210450px;}
.yb_c00497{bottom:916.590450px;}
.ya_c00497{bottom:951.060450px;}
.y9_c00497{bottom:994.440450px;}
.y8_c00497{bottom:1028.910450px;}
.y7_c00497{bottom:1072.290450px;}
.y6_c00497{bottom:1106.760450px;}
.y5_c00497{bottom:1141.140450px;}
.y2_c00497{bottom:1176.420450px;}
.y1_c00497{bottom:1196.940450px;}
.h2_c00497{height:47.988281px;}
.ha_c00497{height:49.937344px;}
.h1_c00497{height:50.315273px;}
.h3_c00497{height:56.320312px;}
.h4_c00497{height:60.257812px;}
.h6_c00497{height:60.890625px;}
.h9_c00497{height:65.130220px;}
.h5_c00497{height:65.130820px;}
.h8_c00497{height:65.131420px;}
.h7_c00497{height:75.093750px;}
.h0_c00497{height:1263.000000px;}
.w1_c00497{width:892.500000px;}
.w0_c00497{width:892.830000px;}
.x0_c00497{left:0.000000px;}
.x2_c00497{left:127.620000px;}
.x6_c00497{left:154.620000px;}
.x5_c00497{left:180.810000px;}
.x1_c00497{left:217.440000px;}
.x4_c00497{left:435.240000px;}
.x3_c00497{left:446.490000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.v1_c00497{vertical-align:26.560000pt;}
.lsf_c00497{letter-spacing:-0.134400pt;}
.ls15_c00497{letter-spacing:-0.044800pt;}
.ls16_c00497{letter-spacing:-0.032000pt;}
.lsc_c00497{letter-spacing:-0.026720pt;}
.ls14_c00497{letter-spacing:-0.025600pt;}
.ls10_c00497{letter-spacing:-0.019200pt;}
.ls13_c00497{letter-spacing:-0.012800pt;}
.ls18_c00497{letter-spacing:-0.008512pt;}
.ls11_c00497{letter-spacing:-0.006400pt;}
.lsd_c00497{letter-spacing:-0.005344pt;}
.ls17_c00497{letter-spacing:-0.003456pt;}
.lse_c00497{letter-spacing:0.000000pt;}
.lsa_c00497{letter-spacing:0.004256pt;}
.ls2_c00497{letter-spacing:0.006400pt;}
.ls7_c00497{letter-spacing:0.012768pt;}
.ls0_c00497{letter-spacing:0.012800pt;}
.lsb_c00497{letter-spacing:0.017024pt;}
.ls6_c00497{letter-spacing:0.021280pt;}
.ls9_c00497{letter-spacing:0.042560pt;}
.ls1_c00497{letter-spacing:0.048672pt;}
.ls12_c00497{letter-spacing:0.083200pt;}
.ls3_c00497{letter-spacing:0.128000pt;}
.ls8_c00497{letter-spacing:0.412480pt;}
.ls4_c00497{letter-spacing:58.048000pt;}
.ls5_c00497{letter-spacing:58.688000pt;}
.ws1_c00497{word-spacing:-16.006400pt;}
.ws2_c00497{word-spacing:-15.968000pt;}
.ws3_c00497{word-spacing:-9.604224pt;}
.ws0_c00497{word-spacing:-9.408672pt;}
.ws5_c00497{word-spacing:-0.235136pt;}
.ws4_c00497{word-spacing:-0.213760pt;}
.ws22_c00497{word-spacing:-0.083200pt;}
.ws19_c00497{word-spacing:-0.076800pt;}
.ws2a_c00497{word-spacing:-0.025536pt;}
.ws27_c00497{word-spacing:-0.004256pt;}
.ws6_c00497{word-spacing:0.000000pt;}
.ws28_c00497{word-spacing:0.004256pt;}
.wsb_c00497{word-spacing:0.006400pt;}
.ws2b_c00497{word-spacing:0.012768pt;}
.ws13_c00497{word-spacing:0.012800pt;}
.wsd_c00497{word-spacing:0.019200pt;}
.ws2c_c00497{word-spacing:0.025536pt;}
.ws17_c00497{word-spacing:0.089600pt;}
.ws18_c00497{word-spacing:0.281600pt;}
.ws29_c00497{word-spacing:0.323456pt;}
.ws15_c00497{word-spacing:0.908800pt;}
.ws16_c00497{word-spacing:0.947200pt;}
.wsf_c00497{word-spacing:1.280000pt;}
.wse_c00497{word-spacing:1.382400pt;}
.ws10_c00497{word-spacing:1.529600pt;}
.ws23_c00497{word-spacing:1.593600pt;}
.ws11_c00497{word-spacing:1.619200pt;}
.ws12_c00497{word-spacing:1.644800pt;}
.ws24_c00497{word-spacing:1.676800pt;}
.ws1b_c00497{word-spacing:4.793600pt;}
.ws1a_c00497{word-spacing:4.819200pt;}
.ws1d_c00497{word-spacing:6.067200pt;}
.ws20_c00497{word-spacing:6.732800pt;}
.ws1f_c00497{word-spacing:6.739200pt;}
.ws1c_c00497{word-spacing:7.059200pt;}
.ws7_c00497{word-spacing:7.987200pt;}
.ws8_c00497{word-spacing:8.038400pt;}
.ws1e_c00497{word-spacing:11.225600pt;}
.ws14_c00497{word-spacing:11.852800pt;}
.wsc_c00497{word-spacing:13.120000pt;}
.ws26_c00497{word-spacing:15.366400pt;}
.ws25_c00497{word-spacing:15.411200pt;}
.wsa_c00497{word-spacing:15.699200pt;}
.ws9_c00497{word-spacing:15.750400pt;}
.ws21_c00497{word-spacing:36.806400pt;}
._1_c00497{margin-left:-0.896000pt;}
._0_c00497{width:0.935200pt;}
.fs5_c00497{font-size:34.560000pt;}
.fs3_c00497{font-size:37.440000pt;}
.fs4_c00497{font-size:42.560000pt;}
.fs2_c00497{font-size:48.000000pt;}
.fs0_c00497{font-size:53.440000pt;}
.fs1_c00497{font-size:64.000000pt;}
.y0_c00497{bottom:0.000000pt;}
.y3_c00497{bottom:51.067067pt;}
.y4_c00497{bottom:54.587067pt;}
.y24_c00497{bottom:78.432027pt;}
.y23_c00497{bottom:94.668667pt;}
.y22_c00497{bottom:110.990427pt;}
.y21_c00497{bottom:127.230427pt;}
.y20_c00497{bottom:143.467067pt;}
.y1f_c00497{bottom:156.987067pt;}
.y1e_c00497{bottom:175.387067pt;}
.y1d_c00497{bottom:193.787067pt;}
.y1c_c00497{bottom:238.587067pt;}
.y1b_c00497{bottom:269.147067pt;}
.y1a_c00497{bottom:307.787200pt;}
.y19_c00497{bottom:338.347200pt;}
.y18_c00497{bottom:368.987200pt;}
.y17_c00497{bottom:399.547200pt;}
.y16_c00497{bottom:438.187067pt;}
.y15_c00497{bottom:468.747067pt;}
.y14_c00497{bottom:515.387067pt;}
.y13_c00497{bottom:545.947067pt;}
.y12_c00497{bottom:576.587067pt;}
.y11_c00497{bottom:615.147067pt;}
.y10_c00497{bottom:645.787067pt;}
.yf_c00497{bottom:684.347067pt;}
.ye_c00497{bottom:714.987067pt;}
.yd_c00497{bottom:745.547067pt;}
.yc_c00497{bottom:784.187067pt;}
.yb_c00497{bottom:814.747067pt;}
.ya_c00497{bottom:845.387067pt;}
.y9_c00497{bottom:883.947067pt;}
.y8_c00497{bottom:914.587067pt;}
.y7_c00497{bottom:953.147067pt;}
.y6_c00497{bottom:983.787067pt;}
.y5_c00497{bottom:1014.347067pt;}
.y2_c00497{bottom:1045.707067pt;}
.y1_c00497{bottom:1063.947067pt;}
.h2_c00497{height:42.656250pt;}
.ha_c00497{height:44.388750pt;}
.h1_c00497{height:44.724687pt;}
.h3_c00497{height:50.062500pt;}
.h4_c00497{height:53.562500pt;}
.h6_c00497{height:54.125000pt;}
.h9_c00497{height:57.893529pt;}
.h5_c00497{height:57.894062pt;}
.h8_c00497{height:57.894596pt;}
.h7_c00497{height:66.750000pt;}
.h0_c00497{height:1122.666667pt;}
.w1_c00497{width:793.333333pt;}
.w0_c00497{width:793.626667pt;}
.x0_c00497{left:0.000000pt;}
.x2_c00497{left:113.440000pt;}
.x6_c00497{left:137.440000pt;}
.x5_c00497{left:160.720000pt;}
.x1_c00497{left:193.280000pt;}
.x4_c00497{left:386.880000pt;}
.x3_c00497{left:396.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_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_35c3d4717536c8c475cb3ede.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_fc59f7c768ac0d7687495831.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00498;src:url('chunks/assets/font_4fe0a0df8d37db8f57d5add4.woff2')format("woff");}.ff4_c00498{font-family:ff4_c00498;line-height:1.102051;font-style:normal;font-weight:normal;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_aa2ff9fe34e99009631a5413.woff2')format("woff");}.ff5_c00498{font-family:ff5_c00498;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00498;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00498{font-family:ff6_c00498;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00498;src:url('chunks/assets/font_9518ac2b2b8a914ec0726118.woff2')format("woff");}.ff7_c00498{font-family:ff7_c00498;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_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;}
.v1_c00498{vertical-align:15.840000px;}
.v2_c00498{vertical-align:29.880000px;}
.ls1a_c00498{letter-spacing:-0.468000px;}
.ls11_c00498{letter-spacing:-0.151200px;}
.ls18_c00498{letter-spacing:-0.054684px;}
.ls15_c00498{letter-spacing:-0.036000px;}
.ls14_c00498{letter-spacing:-0.028800px;}
.ls12_c00498{letter-spacing:-0.021600px;}
.ls19_c00498{letter-spacing:-0.014400px;}
.ls1b_c00498{letter-spacing:-0.009576px;}
.ls13_c00498{letter-spacing:-0.007200px;}
.ls1e_c00498{letter-spacing:-0.004788px;}
.ls1c_c00498{letter-spacing:-0.003888px;}
.ls16_c00498{letter-spacing:0.000000px;}
.ls4_c00498{letter-spacing:0.007200px;}
.lsc_c00498{letter-spacing:0.014364px;}
.ls17_c00498{letter-spacing:0.014400px;}
.ls8_c00498{letter-spacing:0.019152px;}
.ls3_c00498{letter-spacing:0.021600px;}
.lse_c00498{letter-spacing:0.028728px;}
.ls5_c00498{letter-spacing:0.031248px;}
.ls10_c00498{letter-spacing:0.033516px;}
.lsb_c00498{letter-spacing:0.038304px;}
.lsa_c00498{letter-spacing:0.043092px;}
.ls0_c00498{letter-spacing:0.048096px;}
.ls2_c00498{letter-spacing:0.054756px;}
.lsf_c00498{letter-spacing:0.057456px;}
.ls7_c00498{letter-spacing:0.093600px;}
.ls9_c00498{letter-spacing:0.104040px;}
.ls1d_c00498{letter-spacing:0.357696px;}
.lsd_c00498{letter-spacing:5.751360px;}
.ls6_c00498{letter-spacing:26.560800px;}
.ls1_c00498{letter-spacing:1212.120000px;}
.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;}
}
.ws2_c00498{word-spacing:-19.561248px;}
.ws3_c00498{word-spacing:-18.093600px;}
.ws1_c00498{word-spacing:-18.007200px;}
.ws4_c00498{word-spacing:-11.166336px;}
.ws5_c00498{word-spacing:-10.808640px;}
.ws0_c00498{word-spacing:-10.584756px;}
.ws10_c00498{word-spacing:-0.093600px;}
.ws1a_c00498{word-spacing:-0.086400px;}
.ws13_c00498{word-spacing:-0.039060px;}
.ws2f_c00498{word-spacing:-0.038304px;}
.ws29_c00498{word-spacing:-0.023940px;}
.ws2b_c00498{word-spacing:-0.019152px;}
.ws31_c00498{word-spacing:-0.014364px;}
.ws12_c00498{word-spacing:-0.007200px;}
.ws7_c00498{word-spacing:0.000000px;}
.ws28_c00498{word-spacing:0.004788px;}
.wsf_c00498{word-spacing:0.007200px;}
.ws2a_c00498{word-spacing:0.019152px;}
.ws30_c00498{word-spacing:0.023940px;}
.ws27_c00498{word-spacing:0.028728px;}
.wsa_c00498{word-spacing:0.028800px;}
.ws6_c00498{word-spacing:0.042084px;}
.ws26_c00498{word-spacing:0.043200px;}
.ws21_c00498{word-spacing:0.057600px;}
.ws1f_c00498{word-spacing:0.626400px;}
.ws1e_c00498{word-spacing:0.698400px;}
.ws1d_c00498{word-spacing:0.770400px;}
.ws20_c00498{word-spacing:0.828000px;}
.ws16_c00498{word-spacing:1.072800px;}
.ws17_c00498{word-spacing:1.087200px;}
.ws15_c00498{word-spacing:1.166400px;}
.ws11_c00498{word-spacing:2.527200px;}
.ws14_c00498{word-spacing:3.628800px;}
.ws22_c00498{word-spacing:4.298400px;}
.wsd_c00498{word-spacing:4.658400px;}
.wsc_c00498{word-spacing:4.752000px;}
.wse_c00498{word-spacing:4.845600px;}
.ws2d_c00498{word-spacing:5.736024px;}
.ws2e_c00498{word-spacing:5.750388px;}
.ws2c_c00498{word-spacing:5.764752px;}
.ws8_c00498{word-spacing:6.501600px;}
.ws9_c00498{word-spacing:6.530400px;}
.ws23_c00498{word-spacing:7.920000px;}
.ws1c_c00498{word-spacing:11.527200px;}
.ws1b_c00498{word-spacing:11.599200px;}
.ws19_c00498{word-spacing:13.680000px;}
.ws18_c00498{word-spacing:13.687200px;}
.ws25_c00498{word-spacing:13.744800px;}
.ws24_c00498{word-spacing:13.759200px;}
.wsb_c00498{word-spacing:28.080000px;}
._0_c00498{margin-left:-1.322640px;}
._1_c00498{width:1.008000px;}
._2_c00498{width:6.153696px;}
.fc0_c00498{color:rgb(0,0,0);}
.fs6_c00498{font-size:38.880000px;}
.fs3_c00498{font-size:42.120000px;}
.fs5_c00498{font-size:47.880000px;}
.fs2_c00498{font-size:54.000000px;}
.fs0_c00498{font-size:60.120000px;}
.fs1_c00498{font-size:72.000000px;}
.fs4_c00498{font-size:78.120000px;}
.y0_c00498{bottom:0.000000px;}
.y2_c00498{bottom:57.450450px;}
.y22_c00498{bottom:88.238550px;}
.y21_c00498{bottom:106.504770px;}
.y20_c00498{bottom:124.866750px;}
.y1f_c00498{bottom:143.132970px;}
.y1e_c00498{bottom:161.399190px;}
.y1d_c00498{bottom:175.268010px;}
.y1c_c00498{bottom:193.534230px;}
.y1b_c00498{bottom:211.802250px;}
.y1a_c00498{bottom:230.164230px;}
.y19_c00498{bottom:248.430450px;}
.y18_c00498{bottom:263.640450px;}
.y17_c00498{bottom:284.340450px;}
.y16_c00498{bottom:305.040600px;}
.y15_c00498{bottom:446.610450px;}
.y14_c00498{bottom:481.080450px;}
.y13_c00498{bottom:515.460450px;}
.y12_c00498{bottom:549.930450px;}
.y11_c00498{bottom:593.310450px;}
.y10_c00498{bottom:627.780450px;}
.yf_c00498{bottom:662.160450px;}
.ye_c00498{bottom:705.630450px;}
.yd_c00498{bottom:740.010450px;}
.yc_c00498{bottom:774.480600px;}
.yb_c00498{bottom:808.860600px;}
.ya_c00498{bottom:853.950450px;}
.y9_c00498{bottom:916.590450px;}
.y8_c00498{bottom:951.060450px;}
.y7_c00498{bottom:994.440450px;}
.y6_c00498{bottom:1028.910450px;}
.y5_c00498{bottom:1063.290450px;}
.y4_c00498{bottom:1106.760450px;}
.y3_c00498{bottom:1141.140450px;}
.y1_c00498{bottom:1196.850450px;}
.h7_c00498{height:47.988281px;}
.h8_c00498{height:49.937344px;}
.h1_c00498{height:50.315273px;}
.h3_c00498{height:60.257812px;}
.h6_c00498{height:65.130220px;}
.h4_c00498{height:65.130820px;}
.h2_c00498{height:72.160312px;}
.h5_c00498{height:81.476719px;}
.h0_c00498{height:1263.000000px;}
.w1_c00498{width:892.500000px;}
.w0_c00498{width:892.830000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:127.620000px;}
.x3_c00498{left:154.627200px;}
.x2_c00498{left:180.810000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.v1_c00498{vertical-align:14.080000pt;}
.v2_c00498{vertical-align:26.560000pt;}
.ls1a_c00498{letter-spacing:-0.416000pt;}
.ls11_c00498{letter-spacing:-0.134400pt;}
.ls18_c00498{letter-spacing:-0.048608pt;}
.ls15_c00498{letter-spacing:-0.032000pt;}
.ls14_c00498{letter-spacing:-0.025600pt;}
.ls12_c00498{letter-spacing:-0.019200pt;}
.ls19_c00498{letter-spacing:-0.012800pt;}
.ls1b_c00498{letter-spacing:-0.008512pt;}
.ls13_c00498{letter-spacing:-0.006400pt;}
.ls1e_c00498{letter-spacing:-0.004256pt;}
.ls1c_c00498{letter-spacing:-0.003456pt;}
.ls16_c00498{letter-spacing:0.000000pt;}
.ls4_c00498{letter-spacing:0.006400pt;}
.lsc_c00498{letter-spacing:0.012768pt;}
.ls17_c00498{letter-spacing:0.012800pt;}
.ls8_c00498{letter-spacing:0.017024pt;}
.ls3_c00498{letter-spacing:0.019200pt;}
.lse_c00498{letter-spacing:0.025536pt;}
.ls5_c00498{letter-spacing:0.027776pt;}
.ls10_c00498{letter-spacing:0.029792pt;}
.lsb_c00498{letter-spacing:0.034048pt;}
.lsa_c00498{letter-spacing:0.038304pt;}
.ls0_c00498{letter-spacing:0.042752pt;}
.ls2_c00498{letter-spacing:0.048672pt;}
.lsf_c00498{letter-spacing:0.051072pt;}
.ls7_c00498{letter-spacing:0.083200pt;}
.ls9_c00498{letter-spacing:0.092480pt;}
.ls1d_c00498{letter-spacing:0.317952pt;}
.lsd_c00498{letter-spacing:5.112320pt;}
.ls6_c00498{letter-spacing:23.609600pt;}
.ls1_c00498{letter-spacing:1077.440000pt;}
.ws2_c00498{word-spacing:-17.387776pt;}
.ws3_c00498{word-spacing:-16.083200pt;}
.ws1_c00498{word-spacing:-16.006400pt;}
.ws4_c00498{word-spacing:-9.925632pt;}
.ws5_c00498{word-spacing:-9.607680pt;}
.ws0_c00498{word-spacing:-9.408672pt;}
.ws10_c00498{word-spacing:-0.083200pt;}
.ws1a_c00498{word-spacing:-0.076800pt;}
.ws13_c00498{word-spacing:-0.034720pt;}
.ws2f_c00498{word-spacing:-0.034048pt;}
.ws29_c00498{word-spacing:-0.021280pt;}
.ws2b_c00498{word-spacing:-0.017024pt;}
.ws31_c00498{word-spacing:-0.012768pt;}
.ws12_c00498{word-spacing:-0.006400pt;}
.ws7_c00498{word-spacing:0.000000pt;}
.ws28_c00498{word-spacing:0.004256pt;}
.wsf_c00498{word-spacing:0.006400pt;}
.ws2a_c00498{word-spacing:0.017024pt;}
.ws30_c00498{word-spacing:0.021280pt;}
.ws27_c00498{word-spacing:0.025536pt;}
.wsa_c00498{word-spacing:0.025600pt;}
.ws6_c00498{word-spacing:0.037408pt;}
.ws26_c00498{word-spacing:0.038400pt;}
.ws21_c00498{word-spacing:0.051200pt;}
.ws1f_c00498{word-spacing:0.556800pt;}
.ws1e_c00498{word-spacing:0.620800pt;}
.ws1d_c00498{word-spacing:0.684800pt;}
.ws20_c00498{word-spacing:0.736000pt;}
.ws16_c00498{word-spacing:0.953600pt;}
.ws17_c00498{word-spacing:0.966400pt;}
.ws15_c00498{word-spacing:1.036800pt;}
.ws11_c00498{word-spacing:2.246400pt;}
.ws14_c00498{word-spacing:3.225600pt;}
.ws22_c00498{word-spacing:3.820800pt;}
.wsd_c00498{word-spacing:4.140800pt;}
.wsc_c00498{word-spacing:4.224000pt;}
.wse_c00498{word-spacing:4.307200pt;}
.ws2d_c00498{word-spacing:5.098688pt;}
.ws2e_c00498{word-spacing:5.111456pt;}
.ws2c_c00498{word-spacing:5.124224pt;}
.ws8_c00498{word-spacing:5.779200pt;}
.ws9_c00498{word-spacing:5.804800pt;}
.ws23_c00498{word-spacing:7.040000pt;}
.ws1c_c00498{word-spacing:10.246400pt;}
.ws1b_c00498{word-spacing:10.310400pt;}
.ws19_c00498{word-spacing:12.160000pt;}
.ws18_c00498{word-spacing:12.166400pt;}
.ws25_c00498{word-spacing:12.217600pt;}
.ws24_c00498{word-spacing:12.230400pt;}
.wsb_c00498{word-spacing:24.960000pt;}
._0_c00498{margin-left:-1.175680pt;}
._1_c00498{width:0.896000pt;}
._2_c00498{width:5.469952pt;}
.fs6_c00498{font-size:34.560000pt;}
.fs3_c00498{font-size:37.440000pt;}
.fs5_c00498{font-size:42.560000pt;}
.fs2_c00498{font-size:48.000000pt;}
.fs0_c00498{font-size:53.440000pt;}
.fs1_c00498{font-size:64.000000pt;}
.fs4_c00498{font-size:69.440000pt;}
.y0_c00498{bottom:0.000000pt;}
.y2_c00498{bottom:51.067067pt;}
.y22_c00498{bottom:78.434267pt;}
.y21_c00498{bottom:94.670907pt;}
.y20_c00498{bottom:110.992667pt;}
.y1f_c00498{bottom:127.229307pt;}
.y1e_c00498{bottom:143.465947pt;}
.y1d_c00498{bottom:155.793787pt;}
.y1c_c00498{bottom:172.030427pt;}
.y1b_c00498{bottom:188.268667pt;}
.y1a_c00498{bottom:204.590427pt;}
.y19_c00498{bottom:220.827067pt;}
.y18_c00498{bottom:234.347067pt;}
.y17_c00498{bottom:252.747067pt;}
.y16_c00498{bottom:271.147200pt;}
.y15_c00498{bottom:396.987067pt;}
.y14_c00498{bottom:427.627067pt;}
.y13_c00498{bottom:458.187067pt;}
.y12_c00498{bottom:488.827067pt;}
.y11_c00498{bottom:527.387067pt;}
.y10_c00498{bottom:558.027067pt;}
.yf_c00498{bottom:588.587067pt;}
.ye_c00498{bottom:627.227067pt;}
.yd_c00498{bottom:657.787067pt;}
.yc_c00498{bottom:688.427200pt;}
.yb_c00498{bottom:718.987200pt;}
.ya_c00498{bottom:759.067067pt;}
.y9_c00498{bottom:814.747067pt;}
.y8_c00498{bottom:845.387067pt;}
.y7_c00498{bottom:883.947067pt;}
.y6_c00498{bottom:914.587067pt;}
.y5_c00498{bottom:945.147067pt;}
.y4_c00498{bottom:983.787067pt;}
.y3_c00498{bottom:1014.347067pt;}
.y1_c00498{bottom:1063.867067pt;}
.h7_c00498{height:42.656250pt;}
.h8_c00498{height:44.388750pt;}
.h1_c00498{height:44.724687pt;}
.h3_c00498{height:53.562500pt;}
.h6_c00498{height:57.893529pt;}
.h4_c00498{height:57.894063pt;}
.h2_c00498{height:64.142500pt;}
.h5_c00498{height:72.423750pt;}
.h0_c00498{height:1122.666667pt;}
.w1_c00498{width:793.333333pt;}
.w0_c00498{width:793.626667pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:113.440000pt;}
.x3_c00498{left:137.446400pt;}
.x2_c00498{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_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_3456be028dcf39d58b68c150.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00499;src:url('chunks/assets/font_875bd302e62bf746c3548790.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00499;src:url('chunks/assets/font_9b10ae311bbae408a8c677ee.woff2')format("woff");}.ff4_c00499{font-family:ff4_c00499;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_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);}
.v3_c00499{vertical-align:-15.120000px;}
.v0_c00499{vertical-align:0.000000px;}
.v2_c00499{vertical-align:15.190920px;}
.v1_c00499{vertical-align:29.880000px;}
.ls16_c00499{letter-spacing:-0.151200px;}
.ls1f_c00499{letter-spacing:-0.096192px;}
.ls20_c00499{letter-spacing:-0.036072px;}
.ls18_c00499{letter-spacing:-0.036000px;}
.ls13_c00499{letter-spacing:-0.030060px;}
.ls1b_c00499{letter-spacing:-0.028800px;}
.ls1e_c00499{letter-spacing:-0.024048px;}
.ls1c_c00499{letter-spacing:-0.018036px;}
.ls17_c00499{letter-spacing:-0.014400px;}
.ls1d_c00499{letter-spacing:-0.012024px;}
.ls19_c00499{letter-spacing:-0.007200px;}
.ls14_c00499{letter-spacing:-0.006012px;}
.ls21_c00499{letter-spacing:-0.003888px;}
.ls15_c00499{letter-spacing:0.000000px;}
.ls1_c00499{letter-spacing:0.007200px;}
.ls3_c00499{letter-spacing:0.012024px;}
.lse_c00499{letter-spacing:0.014364px;}
.lsa_c00499{letter-spacing:0.014400px;}
.ls5_c00499{letter-spacing:0.018036px;}
.ls2_c00499{letter-spacing:0.021600px;}
.ls10_c00499{letter-spacing:0.023940px;}
.ls4_c00499{letter-spacing:0.030060px;}
.ls11_c00499{letter-spacing:0.033516px;}
.ls12_c00499{letter-spacing:0.038304px;}
.ls9_c00499{letter-spacing:0.043200px;}
.lsd_c00499{letter-spacing:0.048096px;}
.lsc_c00499{letter-spacing:0.054108px;}
.ls0_c00499{letter-spacing:0.054756px;}
.ls6_c00499{letter-spacing:0.066132px;}
.lsb_c00499{letter-spacing:0.072144px;}
.ls1a_c00499{letter-spacing:0.093600px;}
.lsf_c00499{letter-spacing:0.104040px;}
.ls7_c00499{letter-spacing:0.136080px;}
.ls8_c00499{letter-spacing:0.153720px;}
.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;}
}
.ws3_c00499{word-spacing:-18.014400px;}
.ws1_c00499{word-spacing:-17.992800px;}
.ws4_c00499{word-spacing:-10.808640px;}
.ws0_c00499{word-spacing:-10.584756px;}
.ws2_c00499{word-spacing:-9.856080px;}
.ws21_c00499{word-spacing:-0.336672px;}
.ws6_c00499{word-spacing:-0.264528px;}
.ws5_c00499{word-spacing:-0.240480px;}
.ws15_c00499{word-spacing:-0.093600px;}
.wsd_c00499{word-spacing:-0.086400px;}
.ws3d_c00499{word-spacing:-0.014364px;}
.ws2a_c00499{word-spacing:-0.007200px;}
.ws3b_c00499{word-spacing:-0.004788px;}
.ws7_c00499{word-spacing:0.000000px;}
.ws3a_c00499{word-spacing:0.004788px;}
.wsc_c00499{word-spacing:0.007200px;}
.ws2e_c00499{word-spacing:0.014400px;}
.ws3c_c00499{word-spacing:0.019152px;}
.ws25_c00499{word-spacing:0.028800px;}
.ws26_c00499{word-spacing:0.057600px;}
.ws2f_c00499{word-spacing:0.060120px;}
.ws1b_c00499{word-spacing:0.078156px;}
.ws2b_c00499{word-spacing:0.093600px;}
.ws1a_c00499{word-spacing:0.108216px;}
.ws30_c00499{word-spacing:0.186372px;}
.wsb_c00499{word-spacing:0.316800px;}
.ws24_c00499{word-spacing:0.388800px;}
.wsa_c00499{word-spacing:0.396000px;}
.ws9_c00499{word-spacing:0.770400px;}
.ws8_c00499{word-spacing:0.792000px;}
.ws33_c00499{word-spacing:0.829656px;}
.ws22_c00499{word-spacing:1.036800px;}
.ws23_c00499{word-spacing:1.116000px;}
.ws1c_c00499{word-spacing:1.527048px;}
.ws27_c00499{word-spacing:2.174400px;}
.ws29_c00499{word-spacing:2.253600px;}
.ws28_c00499{word-spacing:2.368800px;}
.ws19_c00499{word-spacing:2.887200px;}
.ws18_c00499{word-spacing:2.944800px;}
.ws32_c00499{word-spacing:2.981952px;}
.ws31_c00499{word-spacing:3.006000px;}
.ws38_c00499{word-spacing:3.336660px;}
.ws39_c00499{word-spacing:3.709404px;}
.ws37_c00499{word-spacing:3.715416px;}
.ws36_c00499{word-spacing:4.364712px;}
.ws13_c00499{word-spacing:7.920000px;}
.ws12_c00499{word-spacing:7.941600px;}
.ws34_c00499{word-spacing:8.296560px;}
.ws35_c00499{word-spacing:8.314596px;}
.ws20_c00499{word-spacing:8.350668px;}
.ws1f_c00499{word-spacing:8.753472px;}
.ws14_c00499{word-spacing:9.374400px;}
.ws10_c00499{word-spacing:9.784800px;}
.ws11_c00499{word-spacing:9.799200px;}
.wse_c00499{word-spacing:10.468800px;}
.ws1d_c00499{word-spacing:10.857672px;}
.ws1e_c00499{word-spacing:10.899756px;}
.ws17_c00499{word-spacing:12.218400px;}
.ws16_c00499{word-spacing:12.247200px;}
.ws2c_c00499{word-spacing:14.342400px;}
.ws2d_c00499{word-spacing:14.428800px;}
.wsf_c00499{word-spacing:28.072800px;}
._1_c00499{margin-left:-1.382760px;}
._0_c00499{width:1.052100px;}
.fc0_c00499{color:rgb(0,0,0);}
.fs4_c00499{font-size:38.880000px;}
.fs3_c00499{font-size:42.120000px;}
.fs5_c00499{font-size:47.880000px;}
.fs2_c00499{font-size:54.000000px;}
.fs0_c00499{font-size:60.120000px;}
.fs1_c00499{font-size:72.000000px;}
.y0_c00499{bottom:0.000000px;}
.y3_c00499{bottom:57.450450px;}
.y4_c00499{bottom:61.410450px;}
.y2a_c00499{bottom:88.239810px;}
.y29_c00499{bottom:106.506030px;}
.y28_c00499{bottom:124.868010px;}
.y27_c00499{bottom:143.134230px;}
.y26_c00499{bottom:161.400450px;}
.y25_c00499{bottom:176.610450px;}
.y24_c00499{bottom:197.310450px;}
.y23_c00499{bottom:218.010450px;}
.y22_c00499{bottom:239.949120px;}
.y21_c00499{bottom:256.782720px;}
.y20_c00499{bottom:273.706500px;}
.y1f_c00499{bottom:290.540100px;}
.y1e_c00499{bottom:307.463880px;}
.y1d_c00499{bottom:333.300450px;}
.y1c_c00499{bottom:374.160600px;}
.y1b_c00499{bottom:408.540600px;}
.y1a_c00499{bottom:443.010600px;}
.y19_c00499{bottom:477.390600px;}
.y18_c00499{bottom:520.860450px;}
.y17_c00499{bottom:555.240450px;}
.y16_c00499{bottom:589.710450px;}
.y15_c00499{bottom:627.132720px;}
.y14_c00499{bottom:644.056500px;}
.y13_c00499{bottom:660.890100px;}
.y12_c00499{bottom:677.813880px;}
.y11_c00499{bottom:703.650450px;}
.y10_c00499{bottom:744.510450px;}
.yf_c00499{bottom:778.890450px;}
.ye_c00499{bottom:813.360450px;}
.yd_c00499{bottom:856.740450px;}
.yc_c00499{bottom:891.210450px;}
.yb_c00499{bottom:925.590450px;}
.ya_c00499{bottom:960.060450px;}
.y9_c00499{bottom:994.440450px;}
.y8_c00499{bottom:1028.910450px;}
.y7_c00499{bottom:1072.290450px;}
.y6_c00499{bottom:1106.760450px;}
.y5_c00499{bottom:1141.140450px;}
.y2_c00499{bottom:1176.420450px;}
.y1_c00499{bottom:1196.940450px;}
.h2_c00499{height:47.988281px;}
.h7_c00499{height:49.937344px;}
.h1_c00499{height:50.315273px;}
.h3_c00499{height:56.320312px;}
.h4_c00499{height:60.257812px;}
.h6_c00499{height:60.328733px;}
.h5_c00499{height:65.130820px;}
.h0_c00499{height:1263.000000px;}
.w1_c00499{width:892.500000px;}
.w0_c00499{width:892.830000px;}
.x0_c00499{left:0.000000px;}
.x2_c00499{left:127.620000px;}
.x6_c00499{left:154.710000px;}
.x5_c00499{left:180.810000px;}
.x1_c00499{left:217.440000px;}
.x4_c00499{left:435.240000px;}
.x3_c00499{left:446.490000px;}
@media print{
.v3_c00499{vertical-align:-13.440000pt;}
.v0_c00499{vertical-align:0.000000pt;}
.v2_c00499{vertical-align:13.503040pt;}
.v1_c00499{vertical-align:26.560000pt;}
.ls16_c00499{letter-spacing:-0.134400pt;}
.ls1f_c00499{letter-spacing:-0.085504pt;}
.ls20_c00499{letter-spacing:-0.032064pt;}
.ls18_c00499{letter-spacing:-0.032000pt;}
.ls13_c00499{letter-spacing:-0.026720pt;}
.ls1b_c00499{letter-spacing:-0.025600pt;}
.ls1e_c00499{letter-spacing:-0.021376pt;}
.ls1c_c00499{letter-spacing:-0.016032pt;}
.ls17_c00499{letter-spacing:-0.012800pt;}
.ls1d_c00499{letter-spacing:-0.010688pt;}
.ls19_c00499{letter-spacing:-0.006400pt;}
.ls14_c00499{letter-spacing:-0.005344pt;}
.ls21_c00499{letter-spacing:-0.003456pt;}
.ls15_c00499{letter-spacing:0.000000pt;}
.ls1_c00499{letter-spacing:0.006400pt;}
.ls3_c00499{letter-spacing:0.010688pt;}
.lse_c00499{letter-spacing:0.012768pt;}
.lsa_c00499{letter-spacing:0.012800pt;}
.ls5_c00499{letter-spacing:0.016032pt;}
.ls2_c00499{letter-spacing:0.019200pt;}
.ls10_c00499{letter-spacing:0.021280pt;}
.ls4_c00499{letter-spacing:0.026720pt;}
.ls11_c00499{letter-spacing:0.029792pt;}
.ls12_c00499{letter-spacing:0.034048pt;}
.ls9_c00499{letter-spacing:0.038400pt;}
.lsd_c00499{letter-spacing:0.042752pt;}
.lsc_c00499{letter-spacing:0.048096pt;}
.ls0_c00499{letter-spacing:0.048672pt;}
.ls6_c00499{letter-spacing:0.058784pt;}
.lsb_c00499{letter-spacing:0.064128pt;}
.ls1a_c00499{letter-spacing:0.083200pt;}
.lsf_c00499{letter-spacing:0.092480pt;}
.ls7_c00499{letter-spacing:0.120960pt;}
.ls8_c00499{letter-spacing:0.136640pt;}
.ws3_c00499{word-spacing:-16.012800pt;}
.ws1_c00499{word-spacing:-15.993600pt;}
.ws4_c00499{word-spacing:-9.607680pt;}
.ws0_c00499{word-spacing:-9.408672pt;}
.ws2_c00499{word-spacing:-8.760960pt;}
.ws21_c00499{word-spacing:-0.299264pt;}
.ws6_c00499{word-spacing:-0.235136pt;}
.ws5_c00499{word-spacing:-0.213760pt;}
.ws15_c00499{word-spacing:-0.083200pt;}
.wsd_c00499{word-spacing:-0.076800pt;}
.ws3d_c00499{word-spacing:-0.012768pt;}
.ws2a_c00499{word-spacing:-0.006400pt;}
.ws3b_c00499{word-spacing:-0.004256pt;}
.ws7_c00499{word-spacing:0.000000pt;}
.ws3a_c00499{word-spacing:0.004256pt;}
.wsc_c00499{word-spacing:0.006400pt;}
.ws2e_c00499{word-spacing:0.012800pt;}
.ws3c_c00499{word-spacing:0.017024pt;}
.ws25_c00499{word-spacing:0.025600pt;}
.ws26_c00499{word-spacing:0.051200pt;}
.ws2f_c00499{word-spacing:0.053440pt;}
.ws1b_c00499{word-spacing:0.069472pt;}
.ws2b_c00499{word-spacing:0.083200pt;}
.ws1a_c00499{word-spacing:0.096192pt;}
.ws30_c00499{word-spacing:0.165664pt;}
.wsb_c00499{word-spacing:0.281600pt;}
.ws24_c00499{word-spacing:0.345600pt;}
.wsa_c00499{word-spacing:0.352000pt;}
.ws9_c00499{word-spacing:0.684800pt;}
.ws8_c00499{word-spacing:0.704000pt;}
.ws33_c00499{word-spacing:0.737472pt;}
.ws22_c00499{word-spacing:0.921600pt;}
.ws23_c00499{word-spacing:0.992000pt;}
.ws1c_c00499{word-spacing:1.357376pt;}
.ws27_c00499{word-spacing:1.932800pt;}
.ws29_c00499{word-spacing:2.003200pt;}
.ws28_c00499{word-spacing:2.105600pt;}
.ws19_c00499{word-spacing:2.566400pt;}
.ws18_c00499{word-spacing:2.617600pt;}
.ws32_c00499{word-spacing:2.650624pt;}
.ws31_c00499{word-spacing:2.672000pt;}
.ws38_c00499{word-spacing:2.965920pt;}
.ws39_c00499{word-spacing:3.297248pt;}
.ws37_c00499{word-spacing:3.302592pt;}
.ws36_c00499{word-spacing:3.879744pt;}
.ws13_c00499{word-spacing:7.040000pt;}
.ws12_c00499{word-spacing:7.059200pt;}
.ws34_c00499{word-spacing:7.374720pt;}
.ws35_c00499{word-spacing:7.390752pt;}
.ws20_c00499{word-spacing:7.422816pt;}
.ws1f_c00499{word-spacing:7.780864pt;}
.ws14_c00499{word-spacing:8.332800pt;}
.ws10_c00499{word-spacing:8.697600pt;}
.ws11_c00499{word-spacing:8.710400pt;}
.wse_c00499{word-spacing:9.305600pt;}
.ws1d_c00499{word-spacing:9.651264pt;}
.ws1e_c00499{word-spacing:9.688672pt;}
.ws17_c00499{word-spacing:10.860800pt;}
.ws16_c00499{word-spacing:10.886400pt;}
.ws2c_c00499{word-spacing:12.748800pt;}
.ws2d_c00499{word-spacing:12.825600pt;}
.wsf_c00499{word-spacing:24.953600pt;}
._1_c00499{margin-left:-1.229120pt;}
._0_c00499{width:0.935200pt;}
.fs4_c00499{font-size:34.560000pt;}
.fs3_c00499{font-size:37.440000pt;}
.fs5_c00499{font-size:42.560000pt;}
.fs2_c00499{font-size:48.000000pt;}
.fs0_c00499{font-size:53.440000pt;}
.fs1_c00499{font-size:64.000000pt;}
.y0_c00499{bottom:0.000000pt;}
.y3_c00499{bottom:51.067067pt;}
.y4_c00499{bottom:54.587067pt;}
.y2a_c00499{bottom:78.435387pt;}
.y29_c00499{bottom:94.672027pt;}
.y28_c00499{bottom:110.993787pt;}
.y27_c00499{bottom:127.230427pt;}
.y26_c00499{bottom:143.467067pt;}
.y25_c00499{bottom:156.987067pt;}
.y24_c00499{bottom:175.387067pt;}
.y23_c00499{bottom:193.787067pt;}
.y22_c00499{bottom:213.288107pt;}
.y21_c00499{bottom:228.251307pt;}
.y20_c00499{bottom:243.294667pt;}
.y1f_c00499{bottom:258.257867pt;}
.y1e_c00499{bottom:273.301227pt;}
.y1d_c00499{bottom:296.267067pt;}
.y1c_c00499{bottom:332.587200pt;}
.y1b_c00499{bottom:363.147200pt;}
.y1a_c00499{bottom:393.787200pt;}
.y19_c00499{bottom:424.347200pt;}
.y18_c00499{bottom:462.987067pt;}
.y17_c00499{bottom:493.547067pt;}
.y16_c00499{bottom:524.187067pt;}
.y15_c00499{bottom:557.451307pt;}
.y14_c00499{bottom:572.494667pt;}
.y13_c00499{bottom:587.457867pt;}
.y12_c00499{bottom:602.501227pt;}
.y11_c00499{bottom:625.467067pt;}
.y10_c00499{bottom:661.787067pt;}
.yf_c00499{bottom:692.347067pt;}
.ye_c00499{bottom:722.987067pt;}
.yd_c00499{bottom:761.547067pt;}
.yc_c00499{bottom:792.187067pt;}
.yb_c00499{bottom:822.747067pt;}
.ya_c00499{bottom:853.387067pt;}
.y9_c00499{bottom:883.947067pt;}
.y8_c00499{bottom:914.587067pt;}
.y7_c00499{bottom:953.147067pt;}
.y6_c00499{bottom:983.787067pt;}
.y5_c00499{bottom:1014.347067pt;}
.y2_c00499{bottom:1045.707067pt;}
.y1_c00499{bottom:1063.947067pt;}
.h2_c00499{height:42.656250pt;}
.h7_c00499{height:44.388750pt;}
.h1_c00499{height:44.724687pt;}
.h3_c00499{height:50.062500pt;}
.h4_c00499{height:53.562500pt;}
.h6_c00499{height:53.625540pt;}
.h5_c00499{height:57.894062pt;}
.h0_c00499{height:1122.666667pt;}
.w1_c00499{width:793.333333pt;}
.w0_c00499{width:793.626667pt;}
.x0_c00499{left:0.000000pt;}
.x2_c00499{left:113.440000pt;}
.x6_c00499{left:137.520000pt;}
.x5_c00499{left:160.720000pt;}
.x1_c00499{left:193.280000pt;}
.x4_c00499{left:386.880000pt;}
.x3_c00499{left:396.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_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_33bba29e48ab6ebc5e7d481c.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.100098;font-style:normal;font-weight:normal;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_cd6e5a97003388831524cdd9.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_32859f7be68315e9fc59d355.woff2')format("woff");}.ff3_c00001{font-family:ff3_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:ff4_c00001;src:url('chunks/assets/font_9bd99fde7333f36bfe52b4f2.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00001{font-family:ff5_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:ff6_c00001;src:url('chunks/assets/font_8ed50e77e07d116b7bd0cf36.woff2')format("woff");}.ff6_c00001{font-family:ff6_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:ff7_c00001;src:url('chunks/assets/font_bb579cf31890d1c32ac94636.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.102051;font-style:normal;font-weight:normal;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_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:1.281250;font-style:normal;font-weight:normal;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_e83a8e3f4bee26b045b7c500.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00001;src:url('chunks/assets/font_5008d7368f19abf3735ebee5.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_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);}
.m3_c00001{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,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);}
.m2_c00001{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.v6_c00001{vertical-align:-60.840000px;}
.v4_c00001{vertical-align:-29.880000px;}
.v3_c00001{vertical-align:-15.120000px;}
.v0_c00001{vertical-align:0.000000px;}
.v1_c00001{vertical-align:15.840000px;}
.v5_c00001{vertical-align:24.102000px;}
.v2_c00001{vertical-align:29.880000px;}
.ls131_c00001{letter-spacing:-2.054241px;}
.ls130_c00001{letter-spacing:-1.949384px;}
.ls12e_c00001{letter-spacing:-0.595778px;}
.ls84_c00001{letter-spacing:-0.468000px;}
.ls13e_c00001{letter-spacing:-0.432000px;}
.lsb5_c00001{letter-spacing:-0.384768px;}
.ls127_c00001{letter-spacing:-0.372744px;}
.lsf2_c00001{letter-spacing:-0.361800px;}
.lsfa_c00001{letter-spacing:-0.344736px;}
.ls104_c00001{letter-spacing:-0.342684px;}
.lsf0_c00001{letter-spacing:-0.307800px;}
.ls7e_c00001{letter-spacing:-0.273600px;}
.ls137_c00001{letter-spacing:-0.270540px;}
.ls9d_c00001{letter-spacing:-0.266400px;}
.lsb0_c00001{letter-spacing:-0.264528px;}
.ls93_c00001{letter-spacing:-0.258516px;}
.ls95_c00001{letter-spacing:-0.240480px;}
.ls112_c00001{letter-spacing:-0.234360px;}
.ls12f_c00001{letter-spacing:-0.233545px;}
.ls48_c00001{letter-spacing:-0.228456px;}
.lsaa_c00001{letter-spacing:-0.222444px;}
.ls182_c00001{letter-spacing:-0.204768px;}
.ls105_c00001{letter-spacing:-0.204408px;}
.ls3c_c00001{letter-spacing:-0.198396px;}
.ls9f_c00001{letter-spacing:-0.192384px;}
.lsa1_c00001{letter-spacing:-0.186372px;}
.ls177_c00001{letter-spacing:-0.176328px;}
.lsef_c00001{letter-spacing:-0.172800px;}
.ls16a_c00001{letter-spacing:-0.170640px;}
.lsaf_c00001{letter-spacing:-0.162324px;}
.ls196_c00001{letter-spacing:-0.159264px;}
.ls166_c00001{letter-spacing:-0.158400px;}
.lsf1_c00001{letter-spacing:-0.156600px;}
.ls176_c00001{letter-spacing:-0.153576px;}
.ls10_c00001{letter-spacing:-0.151200px;}
.ls3f_c00001{letter-spacing:-0.150300px;}
.ls35_c00001{letter-spacing:-0.144288px;}
.ls4e_c00001{letter-spacing:-0.138276px;}
.lse6_c00001{letter-spacing:-0.135000px;}
.lse1_c00001{letter-spacing:-0.129600px;}
.ls3d_c00001{letter-spacing:-0.126252px;}
.ls13d_c00001{letter-spacing:-0.125136px;}
.lsee_c00001{letter-spacing:-0.124200px;}
.ls10f_c00001{letter-spacing:-0.122400px;}
.ls128_c00001{letter-spacing:-0.120240px;}
.lsdb_c00001{letter-spacing:-0.118800px;}
.ls100_c00001{letter-spacing:-0.114228px;}
.lse2_c00001{letter-spacing:-0.113400px;}
.ls3e_c00001{letter-spacing:-0.108216px;}
.ls5c_c00001{letter-spacing:-0.108000px;}
.ls91_c00001{letter-spacing:-0.105336px;}
.ls138_c00001{letter-spacing:-0.102204px;}
.lsdc_c00001{letter-spacing:-0.097200px;}
.ls15b_c00001{letter-spacing:-0.096696px;}
.ls102_c00001{letter-spacing:-0.096192px;}
.lsa8_c00001{letter-spacing:-0.093600px;}
.lsd8_c00001{letter-spacing:-0.091800px;}
.lsa4_c00001{letter-spacing:-0.090180px;}
.ls31_c00001{letter-spacing:-0.086400px;}
.ls6d_c00001{letter-spacing:-0.086184px;}
.ls195_c00001{letter-spacing:-0.085320px;}
.lsa6_c00001{letter-spacing:-0.084168px;}
.lse7_c00001{letter-spacing:-0.081000px;}
.ls151_c00001{letter-spacing:-0.079632px;}
.ls9c_c00001{letter-spacing:-0.079200px;}
.ls76_c00001{letter-spacing:-0.078156px;}
.lse0_c00001{letter-spacing:-0.075600px;}
.lsc0_c00001{letter-spacing:-0.075492px;}
.ls77_c00001{letter-spacing:-0.072144px;}
.ls5d_c00001{letter-spacing:-0.072000px;}
.ls126_c00001{letter-spacing:-0.070308px;}
.lsda_c00001{letter-spacing:-0.070200px;}
.ls197_c00001{letter-spacing:-0.068256px;}
.ls36_c00001{letter-spacing:-0.066132px;}
.ls5f_c00001{letter-spacing:-0.064800px;}
.ls183_c00001{letter-spacing:-0.062568px;}
.ls111_c00001{letter-spacing:-0.062496px;}
.ls8d_c00001{letter-spacing:-0.062244px;}
.ls94_c00001{letter-spacing:-0.060120px;}
.lse3_c00001{letter-spacing:-0.059400px;}
.ls59_c00001{letter-spacing:-0.057600px;}
.ls190_c00001{letter-spacing:-0.056880px;}
.ls13_c00001{letter-spacing:-0.054108px;}
.lsdd_c00001{letter-spacing:-0.054000px;}
.ls168_c00001{letter-spacing:-0.051192px;}
.ls30_c00001{letter-spacing:-0.050400px;}
.lsde_c00001{letter-spacing:-0.048600px;}
.ls32_c00001{letter-spacing:-0.048096px;}
.ls6c_c00001{letter-spacing:-0.047880px;}
.ls78_c00001{letter-spacing:-0.046872px;}
.ls159_c00001{letter-spacing:-0.045504px;}
.ls5b_c00001{letter-spacing:-0.043200px;}
.ls14_c00001{letter-spacing:-0.042084px;}
.ls47_c00001{letter-spacing:-0.039060px;}
.ls124_c00001{letter-spacing:-0.038304px;}
.lsf4_c00001{letter-spacing:-0.037800px;}
.ls2e_c00001{letter-spacing:-0.036072px;}
.ls19_c00001{letter-spacing:-0.036000px;}
.ls150_c00001{letter-spacing:-0.034128px;}
.lsdf_c00001{letter-spacing:-0.032400px;}
.ls46_c00001{letter-spacing:-0.031248px;}
.ls2d_c00001{letter-spacing:-0.030060px;}
.ls1a_c00001{letter-spacing:-0.028800px;}
.ls8a_c00001{letter-spacing:-0.028728px;}
.ls154_c00001{letter-spacing:-0.028440px;}
.lse5_c00001{letter-spacing:-0.027000px;}
.ls16_c00001{letter-spacing:-0.024048px;}
.ls8e_c00001{letter-spacing:-0.023940px;}
.ls70_c00001{letter-spacing:-0.023436px;}
.ls191_c00001{letter-spacing:-0.022752px;}
.ls1b_c00001{letter-spacing:-0.021600px;}
.ls90_c00001{letter-spacing:-0.019440px;}
.ls6e_c00001{letter-spacing:-0.019152px;}
.ls34_c00001{letter-spacing:-0.018036px;}
.ls153_c00001{letter-spacing:-0.017064px;}
.ls66_c00001{letter-spacing:-0.015624px;}
.ls61_c00001{letter-spacing:-0.015552px;}
.ls1c_c00001{letter-spacing:-0.014400px;}
.lsc1_c00001{letter-spacing:-0.014364px;}
.ls2f_c00001{letter-spacing:-0.012024px;}
.ls69_c00001{letter-spacing:-0.011664px;}
.ls17b_c00001{letter-spacing:-0.011376px;}
.lse8_c00001{letter-spacing:-0.010800px;}
.ls82_c00001{letter-spacing:-0.009576px;}
.ls65_c00001{letter-spacing:-0.007812px;}
.ls6a_c00001{letter-spacing:-0.007776px;}
.ls18_c00001{letter-spacing:-0.007200px;}
.ls11_c00001{letter-spacing:-0.006012px;}
.ls14f_c00001{letter-spacing:-0.005688px;}
.lsd9_c00001{letter-spacing:-0.005400px;}
.ls68_c00001{letter-spacing:-0.004788px;}
.ls49_c00001{letter-spacing:-0.003888px;}
.ls12_c00001{letter-spacing:0.000000px;}
.ls57_c00001{letter-spacing:0.003888px;}
.ls45_c00001{letter-spacing:0.004788px;}
.lsd7_c00001{letter-spacing:0.005400px;}
.ls157_c00001{letter-spacing:0.005688px;}
.ls3_c00001{letter-spacing:0.006012px;}
.ls5_c00001{letter-spacing:0.007200px;}
.ls53_c00001{letter-spacing:0.007776px;}
.ls51_c00001{letter-spacing:0.007812px;}
.ls62_c00001{letter-spacing:0.009360px;}
.ls73_c00001{letter-spacing:0.009576px;}
.lsd5_c00001{letter-spacing:0.010800px;}
.ls158_c00001{letter-spacing:0.011376px;}
.ls1d_c00001{letter-spacing:0.012024px;}
.lse_c00001{letter-spacing:0.014364px;}
.ls26_c00001{letter-spacing:0.014400px;}
.ls41_c00001{letter-spacing:0.015624px;}
.lse4_c00001{letter-spacing:0.016200px;}
.ls164_c00001{letter-spacing:0.017064px;}
.ls1f_c00001{letter-spacing:0.018036px;}
.ls8c_c00001{letter-spacing:0.018720px;}
.lsf_c00001{letter-spacing:0.019152px;}
.lsfd_c00001{letter-spacing:0.019440px;}
.ls52_c00001{letter-spacing:0.021060px;}
.ls39_c00001{letter-spacing:0.021600px;}
.ls161_c00001{letter-spacing:0.022752px;}
.lsb_c00001{letter-spacing:0.023940px;}
.ls27_c00001{letter-spacing:0.024048px;}
.lsc6_c00001{letter-spacing:0.027000px;}
.ls139_c00001{letter-spacing:0.028440px;}
.lsc_c00001{letter-spacing:0.028728px;}
.ls4b_c00001{letter-spacing:0.028800px;}
.ls22_c00001{letter-spacing:0.030060px;}
.lsfb_c00001{letter-spacing:0.031248px;}
.lse9_c00001{letter-spacing:0.032400px;}
.lsa_c00001{letter-spacing:0.033516px;}
.lsba_c00001{letter-spacing:0.033552px;}
.ls13b_c00001{letter-spacing:0.034128px;}
.ls37_c00001{letter-spacing:0.036000px;}
.ls1e_c00001{letter-spacing:0.036072px;}
.lsbf_c00001{letter-spacing:0.037800px;}
.ls7_c00001{letter-spacing:0.038304px;}
.ls149_c00001{letter-spacing:0.039816px;}
.ls11c_c00001{letter-spacing:0.041940px;}
.ls20_c00001{letter-spacing:0.042084px;}
.ls9_c00001{letter-spacing:0.043092px;}
.ls25_c00001{letter-spacing:0.043200px;}
.ls148_c00001{letter-spacing:0.045504px;}
.lsac_c00001{letter-spacing:0.046872px;}
.ls8_c00001{letter-spacing:0.047880px;}
.ls0_c00001{letter-spacing:0.048096px;}
.lsec_c00001{letter-spacing:0.048600px;}
.ls98_c00001{letter-spacing:0.050400px;}
.ls13a_c00001{letter-spacing:0.051192px;}
.lsd_c00001{letter-spacing:0.052668px;}
.lsd3_c00001{letter-spacing:0.054000px;}
.ls2_c00001{letter-spacing:0.054108px;}
.ls6_c00001{letter-spacing:0.054756px;}
.ls15a_c00001{letter-spacing:0.056880px;}
.ls7c_c00001{letter-spacing:0.057456px;}
.ls3a_c00001{letter-spacing:0.057600px;}
.ls12d_c00001{letter-spacing:0.058716px;}
.lsca_c00001{letter-spacing:0.059400px;}
.ls33_c00001{letter-spacing:0.060120px;}
.ls56_c00001{letter-spacing:0.062244px;}
.ls155_c00001{letter-spacing:0.062568px;}
.lsa2_c00001{letter-spacing:0.064800px;}
.ls21_c00001{letter-spacing:0.066132px;}
.ls7d_c00001{letter-spacing:0.067032px;}
.ls147_c00001{letter-spacing:0.068256px;}
.lsd2_c00001{letter-spacing:0.070200px;}
.ls2a_c00001{letter-spacing:0.071820px;}
.ls4c_c00001{letter-spacing:0.072000px;}
.ls28_c00001{letter-spacing:0.072144px;}
.ls13f_c00001{letter-spacing:0.073944px;}
.ls7f_c00001{letter-spacing:0.075600px;}
.ls54_c00001{letter-spacing:0.075960px;}
.ls55_c00001{letter-spacing:0.076608px;}
.ls89_c00001{letter-spacing:0.078156px;}
.ls23_c00001{letter-spacing:0.079200px;}
.ls140_c00001{letter-spacing:0.079632px;}
.lsce_c00001{letter-spacing:0.081000px;}
.ls29_c00001{letter-spacing:0.081396px;}
.lsbe_c00001{letter-spacing:0.081720px;}
.ls11d_c00001{letter-spacing:0.083880px;}
.ls38_c00001{letter-spacing:0.084168px;}
.ls14b_c00001{letter-spacing:0.085320px;}
.ls2b_c00001{letter-spacing:0.086184px;}
.lsd1_c00001{letter-spacing:0.086400px;}
.ls12b_c00001{letter-spacing:0.090000px;}
.ls92_c00001{letter-spacing:0.090180px;}
.ls15e_c00001{letter-spacing:0.091008px;}
.lscf_c00001{letter-spacing:0.091800px;}
.ls24_c00001{letter-spacing:0.093600px;}
.ls11e_c00001{letter-spacing:0.095760px;}
.ls72_c00001{letter-spacing:0.096192px;}
.ls165_c00001{letter-spacing:0.096696px;}
.lsc5_c00001{letter-spacing:0.097200px;}
.ls63_c00001{letter-spacing:0.100548px;}
.lsab_c00001{letter-spacing:0.100800px;}
.lsf8_c00001{letter-spacing:0.101088px;}
.lsae_c00001{letter-spacing:0.102204px;}
.ls174_c00001{letter-spacing:0.102384px;}
.lscc_c00001{letter-spacing:0.102600px;}
.ls85_c00001{letter-spacing:0.103440px;}
.ls4d_c00001{letter-spacing:0.104040px;}
.ls58_c00001{letter-spacing:0.105336px;}
.lsa7_c00001{letter-spacing:0.108000px;}
.ls152_c00001{letter-spacing:0.108072px;}
.lsf6_c00001{letter-spacing:0.108216px;}
.ls119_c00001{letter-spacing:0.110124px;}
.lsc7_c00001{letter-spacing:0.113400px;}
.ls156_c00001{letter-spacing:0.113760px;}
.ls10b_c00001{letter-spacing:0.114228px;}
.lsb7_c00001{letter-spacing:0.114912px;}
.ls18d_c00001{letter-spacing:0.115200px;}
.lscb_c00001{letter-spacing:0.118800px;}
.ls17f_c00001{letter-spacing:0.119448px;}
.ls18c_c00001{letter-spacing:0.122400px;}
.lsc9_c00001{letter-spacing:0.124200px;}
.lsc3_c00001{letter-spacing:0.124488px;}
.lscd_c00001{letter-spacing:0.129600px;}
.lsa9_c00001{letter-spacing:0.132264px;}
.ls81_c00001{letter-spacing:0.134640px;}
.lsc8_c00001{letter-spacing:0.135000px;}
.ls143_c00001{letter-spacing:0.135720px;}
.ls4_c00001{letter-spacing:0.136080px;}
.ls181_c00001{letter-spacing:0.136800px;}
.ls83_c00001{letter-spacing:0.138852px;}
.lsd0_c00001{letter-spacing:0.140400px;}
.ls2c_c00001{letter-spacing:0.143640px;}
.ls42_c00001{letter-spacing:0.144000px;}
.lsd4_c00001{letter-spacing:0.145800px;}
.lsea_c00001{letter-spacing:0.151200px;}
.ls133_c00001{letter-spacing:0.153216px;}
.ls60_c00001{letter-spacing:0.153720px;}
.lsd6_c00001{letter-spacing:0.156600px;}
.ls115_c00001{letter-spacing:0.158400px;}
.ls179_c00001{letter-spacing:0.159264px;}
.lsed_c00001{letter-spacing:0.162000px;}
.ls17a_c00001{letter-spacing:0.165600px;}
.lseb_c00001{letter-spacing:0.167400px;}
.ls134_c00001{letter-spacing:0.167580px;}
.ls17_c00001{letter-spacing:0.168336px;}
.ls193_c00001{letter-spacing:0.172800px;}
.lsf3_c00001{letter-spacing:0.178200px;}
.ls198_c00001{letter-spacing:0.179280px;}
.ls7a_c00001{letter-spacing:0.180000px;}
.ls75_c00001{letter-spacing:0.181944px;}
.ls113_c00001{letter-spacing:0.189360px;}
.ls175_c00001{letter-spacing:0.210456px;}
.lsa3_c00001{letter-spacing:0.215460px;}
.ls180_c00001{letter-spacing:0.223200px;}
.ls170_c00001{letter-spacing:0.227520px;}
.ls17c_c00001{letter-spacing:0.250272px;}
.ls17e_c00001{letter-spacing:0.266400px;}
.lsc2_c00001{letter-spacing:0.272916px;}
.ls17d_c00001{letter-spacing:0.273600px;}
.ls5e_c00001{letter-spacing:0.288000px;}
.ls107_c00001{letter-spacing:0.288576px;}
.ls10d_c00001{letter-spacing:0.324000px;}
.lsb1_c00001{letter-spacing:0.324648px;}
.ls132_c00001{letter-spacing:0.338256px;}
.ls167_c00001{letter-spacing:0.341280px;}
.ls5a_c00001{letter-spacing:0.346032px;}
.ls162_c00001{letter-spacing:0.346968px;}
.lsad_c00001{letter-spacing:0.350640px;}
.ls123_c00001{letter-spacing:0.351360px;}
.ls4f_c00001{letter-spacing:0.357696px;}
.ls184_c00001{letter-spacing:0.358344px;}
.ls14e_c00001{letter-spacing:0.360000px;}
.ls6b_c00001{letter-spacing:0.361584px;}
.ls86_c00001{letter-spacing:0.369360px;}
.ls67_c00001{letter-spacing:0.378252px;}
.ls114_c00001{letter-spacing:0.378720px;}
.ls64_c00001{letter-spacing:0.383040px;}
.lsff_c00001{letter-spacing:0.397404px;}
.ls11f_c00001{letter-spacing:0.410400px;}
.ls120_c00001{letter-spacing:0.435708px;}
.ls118_c00001{letter-spacing:0.435960px;}
.lsa5_c00001{letter-spacing:0.446400px;}
.ls44_c00001{letter-spacing:0.464040px;}
.ls163_c00001{letter-spacing:0.472104px;}
.ls16e_c00001{letter-spacing:0.504000px;}
.ls18f_c00001{letter-spacing:0.540000px;}
.ls74_c00001{letter-spacing:0.811620px;}
.lsf9_c00001{letter-spacing:1.071360px;}
.ls186_c00001{letter-spacing:1.080000px;}
.ls3b_c00001{letter-spacing:1.172340px;}
.ls14a_c00001{letter-spacing:1.260000px;}
.ls50_c00001{letter-spacing:1.328040px;}
.lsb6_c00001{letter-spacing:1.791360px;}
.ls125_c00001{letter-spacing:1.800000px;}
.ls9a_c00001{letter-spacing:1.887768px;}
.ls12a_c00001{letter-spacing:2.160000px;}
.ls15_c00001{letter-spacing:2.248488px;}
.ls7b_c00001{letter-spacing:2.511360px;}
.ls11b_c00001{letter-spacing:2.520000px;}
.ls101_c00001{letter-spacing:2.609208px;}
.ls192_c00001{letter-spacing:2.700000px;}
.ls141_c00001{letter-spacing:2.880000px;}
.ls96_c00001{letter-spacing:2.969928px;}
.ls185_c00001{letter-spacing:3.240000px;}
.lsc4_c00001{letter-spacing:3.591000px;}
.lsb8_c00001{letter-spacing:3.591360px;}
.ls16d_c00001{letter-spacing:3.600000px;}
.ls40_c00001{letter-spacing:4.052088px;}
.ls108_c00001{letter-spacing:4.218480px;}
.lsbc_c00001{letter-spacing:4.311360px;}
.ls11a_c00001{letter-spacing:4.320000px;}
.lsb2_c00001{letter-spacing:4.412808px;}
.ls14d_c00001{letter-spacing:4.680000px;}
.lsa0_c00001{letter-spacing:4.767516px;}
.ls188_c00001{letter-spacing:5.040000px;}
.ls16c_c00001{letter-spacing:5.220000px;}
.ls10e_c00001{letter-spacing:5.400000px;}
.ls146_c00001{letter-spacing:5.731200px;}
.lsbd_c00001{letter-spacing:5.751360px;}
.ls8f_c00001{letter-spacing:5.760000px;}
.ls160_c00001{letter-spacing:5.940000px;}
.lsfe_c00001{letter-spacing:6.111360px;}
.lsfc_c00001{letter-spacing:6.128640px;}
.ls122_c00001{letter-spacing:6.471360px;}
.ls117_c00001{letter-spacing:6.537600px;}
.ls18a_c00001{letter-spacing:6.660000px;}
.lsb4_c00001{letter-spacing:6.931836px;}
.ls15f_c00001{letter-spacing:7.020000px;}
.ls142_c00001{letter-spacing:7.200000px;}
.ls14c_c00001{letter-spacing:7.380000px;}
.ls97_c00001{letter-spacing:7.551360px;}
.lsb3_c00001{letter-spacing:7.920000px;}
.ls10a_c00001{letter-spacing:8.297604px;}
.ls99_c00001{letter-spacing:8.515080px;}
.ls16f_c00001{letter-spacing:9.180000px;}
.ls12c_c00001{letter-spacing:9.360000px;}
.ls16b_c00001{letter-spacing:9.900000px;}
.ls15d_c00001{letter-spacing:10.260000px;}
.ls13c_c00001{letter-spacing:10.440000px;}
.ls194_c00001{letter-spacing:10.800000px;}
.ls15c_c00001{letter-spacing:10.980000px;}
.ls116_c00001{letter-spacing:11.160000px;}
.ls103_c00001{letter-spacing:11.520000px;}
.ls145_c00001{letter-spacing:11.548800px;}
.ls144_c00001{letter-spacing:11.851200px;}
.ls129_c00001{letter-spacing:11.969892px;}
.ls171_c00001{letter-spacing:12.240000px;}
.ls106_c00001{letter-spacing:13.348800px;}
.ls109_c00001{letter-spacing:14.128200px;}
.ls8b_c00001{letter-spacing:14.295960px;}
.ls169_c00001{letter-spacing:14.400000px;}
.ls18b_c00001{letter-spacing:15.300000px;}
.ls18e_c00001{letter-spacing:15.480000px;}
.lsb9_c00001{letter-spacing:17.363160px;}
.ls173_c00001{letter-spacing:17.820000px;}
.ls189_c00001{letter-spacing:18.720000px;}
.ls178_c00001{letter-spacing:19.440000px;}
.ls87_c00001{letter-spacing:20.076840px;}
.ls80_c00001{letter-spacing:22.186080px;}
.ls187_c00001{letter-spacing:22.860000px;}
.ls172_c00001{letter-spacing:23.400000px;}
.ls110_c00001{letter-spacing:23.670360px;}
.ls88_c00001{letter-spacing:23.760000px;}
.ls10c_c00001{letter-spacing:26.560800px;}
.ls71_c00001{letter-spacing:27.966960px;}
.lsf7_c00001{letter-spacing:29.373120px;}
.lsbb_c00001{letter-spacing:32.263560px;}
.ls6f_c00001{letter-spacing:33.747840px;}
.lsf5_c00001{letter-spacing:35.154000px;}
.ls9b_c00001{letter-spacing:44.784000px;}
.ls136_c00001{letter-spacing:58.902480px;}
.ls135_c00001{letter-spacing:64.683360px;}
.ls121_c00001{letter-spacing:64.944000px;}
.ls43_c00001{letter-spacing:65.304000px;}
.ls4a_c00001{letter-spacing:66.024000px;}
.ls79_c00001{letter-spacing:68.544000px;}
.ls9e_c00001{letter-spacing:90.000000px;}
.ls1_c00001{letter-spacing:1212.120000px;}
.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;}
}
.ws67e_c00001{word-spacing:-20.894508px;}
.ws57f_c00001{word-spacing:-19.576872px;}
.ws85d_c00001{word-spacing:-19.561248px;}
.wsde_c00001{word-spacing:-19.545624px;}
.ws8af_c00001{word-spacing:-19.537812px;}
.ws13e_c00001{word-spacing:-19.530000px;}
.ws2bf_c00001{word-spacing:-19.522188px;}
.ws1f0_c00001{word-spacing:-19.514376px;}
.ws212_c00001{word-spacing:-19.506564px;}
.ws1f1_c00001{word-spacing:-19.498752px;}
.ws3f0_c00001{word-spacing:-18.093600px;}
.wsbd2_c00001{word-spacing:-18.086400px;}
.wsbfa_c00001{word-spacing:-18.079200px;}
.ws13f_c00001{word-spacing:-18.072000px;}
.wsbd0_c00001{word-spacing:-18.064800px;}
.ws966_c00001{word-spacing:-18.050400px;}
.ws2fc_c00001{word-spacing:-18.043200px;}
.wsa17_c00001{word-spacing:-18.036000px;}
.ws594_c00001{word-spacing:-18.028800px;}
.ws1c8_c00001{word-spacing:-18.021600px;}
.ws1a7_c00001{word-spacing:-18.014400px;}
.ws18e_c00001{word-spacing:-18.007200px;}
.ws140_c00001{word-spacing:-18.000000px;}
.ws213_c00001{word-spacing:-17.992800px;}
.ws647_c00001{word-spacing:-17.985600px;}
.ws211_c00001{word-spacing:-17.978400px;}
.ws341_c00001{word-spacing:-17.971200px;}
.wsa3e_c00001{word-spacing:-17.964000px;}
.ws1c9_c00001{word-spacing:-17.956800px;}
.ws4d3_c00001{word-spacing:-17.949600px;}
.ws1a6_c00001{word-spacing:-17.942400px;}
.wsa54_c00001{word-spacing:-17.935200px;}
.ws18f_c00001{word-spacing:-17.928000px;}
.ws42d_c00001{word-spacing:-17.920800px;}
.wsb68_c00001{word-spacing:-17.913600px;}
.wsc84_c00001{word-spacing:-17.877600px;}
.wsb69_c00001{word-spacing:-17.568000px;}
.ws6fd_c00001{word-spacing:-15.054048px;}
.ws3cb_c00001{word-spacing:-15.030000px;}
.ws9af_c00001{word-spacing:-14.987916px;}
.ws45a_c00001{word-spacing:-14.981904px;}
.wsbc0_c00001{word-spacing:-14.692104px;}
.wsc35_c00001{word-spacing:-14.578344px;}
.wsbbb_c00001{word-spacing:-14.566968px;}
.wsbcf_c00001{word-spacing:-14.561280px;}
.wsc1a_c00001{word-spacing:-14.470272px;}
.wsbfd_c00001{word-spacing:-14.447520px;}
.wsbfb_c00001{word-spacing:-14.430456px;}
.wsc19_c00001{word-spacing:-14.379264px;}
.wsc24_c00001{word-spacing:-14.339448px;}
.wsbb0_c00001{word-spacing:-14.333760px;}
.wsbb2_c00001{word-spacing:-14.328072px;}
.wsc77_c00001{word-spacing:-14.322384px;}
.wsbbc_c00001{word-spacing:-14.311008px;}
.wsbbd_c00001{word-spacing:-14.305320px;}
.wsbea_c00001{word-spacing:-14.299632px;}
.wsbeb_c00001{word-spacing:-14.293944px;}
.wsba9_c00001{word-spacing:-14.288256px;}
.wsbff_c00001{word-spacing:-14.282568px;}
.wsbb1_c00001{word-spacing:-14.276880px;}
.wsb66_c00001{word-spacing:-14.271192px;}
.wsb8d_c00001{word-spacing:-14.265504px;}
.wsb8f_c00001{word-spacing:-14.259816px;}
.wsb67_c00001{word-spacing:-14.254128px;}
.wsb64_c00001{word-spacing:-14.248440px;}
.wsbce_c00001{word-spacing:-14.242752px;}
.wsbe9_c00001{word-spacing:-14.237064px;}
.wsbb4_c00001{word-spacing:-14.231376px;}
.wsbbe_c00001{word-spacing:-14.225688px;}
.wsb65_c00001{word-spacing:-14.220000px;}
.wsbbf_c00001{word-spacing:-14.214312px;}
.wsc18_c00001{word-spacing:-14.208624px;}
.wsba7_c00001{word-spacing:-14.202936px;}
.wsc6a_c00001{word-spacing:-14.197248px;}
.wsba8_c00001{word-spacing:-14.191560px;}
.wsb8e_c00001{word-spacing:-14.185872px;}
.wsbaf_c00001{word-spacing:-14.174496px;}
.wsc36_c00001{word-spacing:-14.168808px;}
.wsc69_c00001{word-spacing:-14.163120px;}
.wsc54_c00001{word-spacing:-14.157432px;}
.wsc76_c00001{word-spacing:-14.151744px;}
.wsb90_c00001{word-spacing:-14.140368px;}
.wsc75_c00001{word-spacing:-14.134680px;}
.wsbb3_c00001{word-spacing:-14.123304px;}
.wsbfc_c00001{word-spacing:-14.066424px;}
.wsbd1_c00001{word-spacing:-14.049360px;}
.wsbfe_c00001{word-spacing:-14.043672px;}
.wsc34_c00001{word-spacing:-14.015232px;}
.ws90d_c00001{word-spacing:-13.746348px;}
.ws6bd_c00001{word-spacing:-13.656600px;}
.ws6ba_c00001{word-spacing:-13.591800px;}
.ws680_c00001{word-spacing:-13.583556px;}
.ws6ec_c00001{word-spacing:-13.554000px;}
.ws231_c00001{word-spacing:-13.492584px;}
.ws6bb_c00001{word-spacing:-13.478400px;}
.ws6ed_c00001{word-spacing:-13.408200px;}
.ws6bf_c00001{word-spacing:-13.386600px;}
.ws6bc_c00001{word-spacing:-13.381200px;}
.ws6be_c00001{word-spacing:-13.370400px;}
.ws2fd_c00001{word-spacing:-13.348944px;}
.ws9c2_c00001{word-spacing:-13.329792px;}
.ws342_c00001{word-spacing:-13.320216px;}
.ws141_c00001{word-spacing:-13.310640px;}
.ws681_c00001{word-spacing:-13.296276px;}
.ws2c0_c00001{word-spacing:-13.291488px;}
.ws940_c00001{word-spacing:-13.272336px;}
.ws343_c00001{word-spacing:-13.248396px;}
.ws1cc_c00001{word-spacing:-13.224456px;}
.wsa4b_c00001{word-spacing:-13.016547px;}
.wsa4d_c00001{word-spacing:-12.654314px;}
.wsa4c_c00001{word-spacing:-11.300708px;}
.wsa4e_c00001{word-spacing:-11.195851px;}
.ws1ca_c00001{word-spacing:-11.170224px;}
.ws110_c00001{word-spacing:-11.166336px;}
.ws142_c00001{word-spacing:-11.154672px;}
.wsa55_c00001{word-spacing:-11.146896px;}
.ws289_c00001{word-spacing:-10.812528px;}
.ws67f_c00001{word-spacing:-10.808640px;}
.wsdf_c00001{word-spacing:-10.804752px;}
.ws1cb_c00001{word-spacing:-10.800864px;}
.ws2ea_c00001{word-spacing:-10.796976px;}
.ws1a8_c00001{word-spacing:-10.793088px;}
.ws1_c00001{word-spacing:-10.584756px;}
.ws0_c00001{word-spacing:-9.856080px;}
.ws344_c00001{word-spacing:-8.306640px;}
.ws7f_c00001{word-spacing:-0.505440px;}
.ws435_c00001{word-spacing:-0.453600px;}
.ws8ca_c00001{word-spacing:-0.446400px;}
.wsa2b_c00001{word-spacing:-0.437472px;}
.wsbf5_c00001{word-spacing:-0.424800px;}
.ws7e0_c00001{word-spacing:-0.372744px;}
.ws98b_c00001{word-spacing:-0.366732px;}
.ws253_c00001{word-spacing:-0.359100px;}
.ws37d_c00001{word-spacing:-0.354708px;}
.ws31b_c00001{word-spacing:-0.348696px;}
.ws4e7_c00001{word-spacing:-0.345600px;}
.ws329_c00001{word-spacing:-0.342684px;}
.ws48e_c00001{word-spacing:-0.336672px;}
.ws636_c00001{word-spacing:-0.331200px;}
.ws4fa_c00001{word-spacing:-0.330660px;}
.ws491_c00001{word-spacing:-0.324648px;}
.ws314_c00001{word-spacing:-0.318636px;}
.ws6c5_c00001{word-spacing:-0.313200px;}
.ws3fc_c00001{word-spacing:-0.312624px;}
.ws407_c00001{word-spacing:-0.306612px;}
.ws6f2_c00001{word-spacing:-0.297000px;}
.ws7e_c00001{word-spacing:-0.294588px;}
.wsabe_c00001{word-spacing:-0.289044px;}
.ws409_c00001{word-spacing:-0.282564px;}
.wsc71_c00001{word-spacing:-0.280800px;}
.ws7b1_c00001{word-spacing:-0.276552px;}
.ws6f3_c00001{word-spacing:-0.275400px;}
.ws860_c00001{word-spacing:-0.273420px;}
.ws506_c00001{word-spacing:-0.270540px;}
.ws6d1_c00001{word-spacing:-0.270000px;}
.wsbdd_c00001{word-spacing:-0.266400px;}
.ws43_c00001{word-spacing:-0.264528px;}
.ws8b_c00001{word-spacing:-0.258516px;}
.ws6ea_c00001{word-spacing:-0.253800px;}
.ws4de_c00001{word-spacing:-0.252504px;}
.wsc13_c00001{word-spacing:-0.252000px;}
.ws843_c00001{word-spacing:-0.249984px;}
.ws6c_c00001{word-spacing:-0.246492px;}
.wsc10_c00001{word-spacing:-0.244800px;}
.ws780_c00001{word-spacing:-0.242172px;}
.ws42_c00001{word-spacing:-0.240480px;}
.ws63b_c00001{word-spacing:-0.234468px;}
.ws6de_c00001{word-spacing:-0.232200px;}
.wsb_c00001{word-spacing:-0.228456px;}
.ws68e_c00001{word-spacing:-0.226548px;}
.ws86_c00001{word-spacing:-0.223200px;}
.ws73d_c00001{word-spacing:-0.222444px;}
.ws6f1_c00001{word-spacing:-0.221400px;}
.ws728_c00001{word-spacing:-0.216432px;}
.ws771_c00001{word-spacing:-0.210924px;}
.wsab8_c00001{word-spacing:-0.210420px;}
.wsb75_c00001{word-spacing:-0.201600px;}
.ws8e9_c00001{word-spacing:-0.195300px;}
.wsb6b_c00001{word-spacing:-0.194400px;}
.ws149_c00001{word-spacing:-0.187488px;}
.ws127_c00001{word-spacing:-0.187200px;}
.ws6ee_c00001{word-spacing:-0.183600px;}
.wsc3a_c00001{word-spacing:-0.180000px;}
.ws3ec_c00001{word-spacing:-0.179676px;}
.ws8fd_c00001{word-spacing:-0.176148px;}
.wsc03_c00001{word-spacing:-0.172800px;}
.wsee_c00001{word-spacing:-0.171864px;}
.wsbc3_c00001{word-spacing:-0.165600px;}
.ws264_c00001{word-spacing:-0.164052px;}
.wsbb9_c00001{word-spacing:-0.158400px;}
.wsc58_c00001{word-spacing:-0.151200px;}
.wsa3c_c00001{word-spacing:-0.150984px;}
.ws80c_c00001{word-spacing:-0.148428px;}
.wsbc5_c00001{word-spacing:-0.144000px;}
.ws199_c00001{word-spacing:-0.140616px;}
.wsbd9_c00001{word-spacing:-0.136800px;}
.ws8fc_c00001{word-spacing:-0.134208px;}
.ws1db_c00001{word-spacing:-0.132804px;}
.ws6f5_c00001{word-spacing:-0.129600px;}
.ws682_c00001{word-spacing:-0.125820px;}
.ws1fc_c00001{word-spacing:-0.124992px;}
.wsa42_c00001{word-spacing:-0.122400px;}
.ws200_c00001{word-spacing:-0.117180px;}
.wsb96_c00001{word-spacing:-0.115200px;}
.ws15c_c00001{word-spacing:-0.109512px;}
.ws222_c00001{word-spacing:-0.109368px;}
.ws9d0_c00001{word-spacing:-0.108000px;}
.ws589_c00001{word-spacing:-0.101556px;}
.ws73e_c00001{word-spacing:-0.101088px;}
.ws8ed_c00001{word-spacing:-0.100800px;}
.ws645_c00001{word-spacing:-0.095760px;}
.ws305_c00001{word-spacing:-0.093744px;}
.ws5c_c00001{word-spacing:-0.093600px;}
.ws8e5_c00001{word-spacing:-0.090972px;}
.ws126_c00001{word-spacing:-0.086400px;}
.ws1da_c00001{word-spacing:-0.085932px;}
.wsa3f_c00001{word-spacing:-0.079200px;}
.wsa05_c00001{word-spacing:-0.078156px;}
.ws451_c00001{word-spacing:-0.078120px;}
.ws90c_c00001{word-spacing:-0.076608px;}
.ws92e_c00001{word-spacing:-0.072000px;}
.ws529_c00001{word-spacing:-0.070308px;}
.ws2e9_c00001{word-spacing:-0.067032px;}
.ws352_c00001{word-spacing:-0.064800px;}
.wsed_c00001{word-spacing:-0.062496px;}
.wsa4a_c00001{word-spacing:-0.062244px;}
.ws7a0_c00001{word-spacing:-0.057600px;}
.ws901_c00001{word-spacing:-0.057456px;}
.ws265_c00001{word-spacing:-0.054684px;}
.ws87e_c00001{word-spacing:-0.052668px;}
.ws944_c00001{word-spacing:-0.050400px;}
.ws2fb_c00001{word-spacing:-0.047880px;}
.ws26f_c00001{word-spacing:-0.046872px;}
.ws96f_c00001{word-spacing:-0.043200px;}
.ws2be_c00001{word-spacing:-0.043092px;}
.wsfa_c00001{word-spacing:-0.042084px;}
.ws831_c00001{word-spacing:-0.038304px;}
.ws361_c00001{word-spacing:-0.036000px;}
.ws17e_c00001{word-spacing:-0.033516px;}
.ws8c0_c00001{word-spacing:-0.031248px;}
.ws117_c00001{word-spacing:-0.028800px;}
.ws10e_c00001{word-spacing:-0.028728px;}
.ws13a_c00001{word-spacing:-0.023940px;}
.ws11e_c00001{word-spacing:-0.021600px;}
.ws1e_c00001{word-spacing:-0.019152px;}
.ws105_c00001{word-spacing:-0.014400px;}
.wsa8_c00001{word-spacing:-0.014364px;}
.ws41_c00001{word-spacing:-0.009576px;}
.ws3a0_c00001{word-spacing:-0.007776px;}
.ws89_c00001{word-spacing:-0.007200px;}
.ws13d_c00001{word-spacing:-0.004788px;}
.ws3_c00001{word-spacing:0.000000px;}
.ws1ed_c00001{word-spacing:0.003888px;}
.ws10c_c00001{word-spacing:0.004788px;}
.ws508_c00001{word-spacing:0.006012px;}
.ws1d_c00001{word-spacing:0.007200px;}
.ws359_c00001{word-spacing:0.009576px;}
.ws6f8_c00001{word-spacing:0.010800px;}
.ws4a1_c00001{word-spacing:0.012024px;}
.ws10f_c00001{word-spacing:0.014364px;}
.ws8a_c00001{word-spacing:0.014400px;}
.ws3c4_c00001{word-spacing:0.018036px;}
.ws27_c00001{word-spacing:0.019152px;}
.ws1a4_c00001{word-spacing:0.021600px;}
.ws1ec_c00001{word-spacing:0.023940px;}
.wsd3_c00001{word-spacing:0.024048px;}
.ws6f7_c00001{word-spacing:0.027000px;}
.ws2cd_c00001{word-spacing:0.028728px;}
.ws5f_c00001{word-spacing:0.028800px;}
.ws74_c00001{word-spacing:0.030060px;}
.ws6d8_c00001{word-spacing:0.032400px;}
.ws8c5_c00001{word-spacing:0.033516px;}
.wsc8_c00001{word-spacing:0.036000px;}
.ws33b_c00001{word-spacing:0.036072px;}
.ws6d3_c00001{word-spacing:0.037800px;}
.ws1ef_c00001{word-spacing:0.038304px;}
.ws2_c00001{word-spacing:0.042084px;}
.ws35e_c00001{word-spacing:0.043092px;}
.ws155_c00001{word-spacing:0.043200px;}
.ws324_c00001{word-spacing:0.047880px;}
.ws92_c00001{word-spacing:0.048096px;}
.ws6cd_c00001{word-spacing:0.048600px;}
.wsf4_c00001{word-spacing:0.050400px;}
.ws6c4_c00001{word-spacing:0.054000px;}
.ws2eb_c00001{word-spacing:0.054108px;}
.ws172_c00001{word-spacing:0.057600px;}
.ws6c8_c00001{word-spacing:0.059400px;}
.ws55_c00001{word-spacing:0.060120px;}
.ws21e_c00001{word-spacing:0.064800px;}
.wsd0_c00001{word-spacing:0.066132px;}
.ws1ee_c00001{word-spacing:0.067032px;}
.ws6c6_c00001{word-spacing:0.070200px;}
.ws247_c00001{word-spacing:0.072000px;}
.ws2ae_c00001{word-spacing:0.072144px;}
.ws6cb_c00001{word-spacing:0.075600px;}
.ws91_c00001{word-spacing:0.078156px;}
.wsa3_c00001{word-spacing:0.079200px;}
.ws6c1_c00001{word-spacing:0.081000px;}
.wsfe_c00001{word-spacing:0.084168px;}
.ws2f6_c00001{word-spacing:0.086400px;}
.ws408_c00001{word-spacing:0.090180px;}
.ws6d7_c00001{word-spacing:0.091800px;}
.ws65c_c00001{word-spacing:0.093600px;}
.ws8f_c00001{word-spacing:0.096192px;}
.ws6ce_c00001{word-spacing:0.097200px;}
.ws3eb_c00001{word-spacing:0.100800px;}
.ws90_c00001{word-spacing:0.102204px;}
.ws6ca_c00001{word-spacing:0.102600px;}
.ws294_c00001{word-spacing:0.108000px;}
.ws9e_c00001{word-spacing:0.108216px;}
.ws6d4_c00001{word-spacing:0.113400px;}
.ws67_c00001{word-spacing:0.114228px;}
.ws1e6_c00001{word-spacing:0.115200px;}
.ws12c_c00001{word-spacing:0.120240px;}
.ws29c_c00001{word-spacing:0.122400px;}
.ws6dd_c00001{word-spacing:0.124200px;}
.ws44_c00001{word-spacing:0.126252px;}
.ws62d_c00001{word-spacing:0.129600px;}
.wsd1_c00001{word-spacing:0.132264px;}
.ws6db_c00001{word-spacing:0.135000px;}
.ws11d_c00001{word-spacing:0.136800px;}
.ws68_c00001{word-spacing:0.138276px;}
.ws6cc_c00001{word-spacing:0.140400px;}
.ws488_c00001{word-spacing:0.144000px;}
.ws5dc_c00001{word-spacing:0.144288px;}
.ws6f0_c00001{word-spacing:0.145800px;}
.ws507_c00001{word-spacing:0.150300px;}
.ws6c2_c00001{word-spacing:0.151200px;}
.ws9f_c00001{word-spacing:0.156312px;}
.ws6e3_c00001{word-spacing:0.156600px;}
.wsc09_c00001{word-spacing:0.158400px;}
.ws6f9_c00001{word-spacing:0.162000px;}
.ws25c_c00001{word-spacing:0.162324px;}
.wsc89_c00001{word-spacing:0.164952px;}
.ws30b_c00001{word-spacing:0.165600px;}
.ws6d0_c00001{word-spacing:0.167400px;}
.ws6e7_c00001{word-spacing:0.172800px;}
.ws6dc_c00001{word-spacing:0.178200px;}
.ws276_c00001{word-spacing:0.180000px;}
.ws4a7_c00001{word-spacing:0.180360px;}
.ws6c7_c00001{word-spacing:0.183600px;}
.ws798_c00001{word-spacing:0.186372px;}
.ws876_c00001{word-spacing:0.187200px;}
.ws6eb_c00001{word-spacing:0.189000px;}
.ws8ba_c00001{word-spacing:0.194400px;}
.wsc9_c00001{word-spacing:0.198396px;}
.ws6e1_c00001{word-spacing:0.199800px;}
.wsa2_c00001{word-spacing:0.201600px;}
.ws6e8_c00001{word-spacing:0.205200px;}
.ws8bf_c00001{word-spacing:0.208800px;}
.ws6da_c00001{word-spacing:0.210600px;}
.ws6fc_c00001{word-spacing:0.216000px;}
.wsc3_c00001{word-spacing:0.216432px;}
.ws6d6_c00001{word-spacing:0.221400px;}
.ws6d9_c00001{word-spacing:0.226800px;}
.wsb91_c00001{word-spacing:0.228456px;}
.ws6d5_c00001{word-spacing:0.232200px;}
.ws6e4_c00001{word-spacing:0.237600px;}
.ws6d2_c00001{word-spacing:0.243000px;}
.ws6c3_c00001{word-spacing:0.248400px;}
.ws30c_c00001{word-spacing:0.252000px;}
.ws987_c00001{word-spacing:0.252504px;}
.ws6df_c00001{word-spacing:0.253800px;}
.ws586_c00001{word-spacing:0.259200px;}
.ws6e0_c00001{word-spacing:0.264600px;}
.ws1f9_c00001{word-spacing:0.266400px;}
.ws6c0_c00001{word-spacing:0.270000px;}
.ws16b_c00001{word-spacing:0.272916px;}
.wsb14_c00001{word-spacing:0.273600px;}
.ws6cf_c00001{word-spacing:0.275400px;}
.ws587_c00001{word-spacing:0.280800px;}
.ws6e2_c00001{word-spacing:0.286200px;}
.ws628_c00001{word-spacing:0.288000px;}
.wsc2_c00001{word-spacing:0.288576px;}
.ws6e5_c00001{word-spacing:0.291600px;}
.ws7bd_c00001{word-spacing:0.294588px;}
.ws634_c00001{word-spacing:0.295200px;}
.ws94b_c00001{word-spacing:0.296856px;}
.ws6c9_c00001{word-spacing:0.297000px;}
.ws6ef_c00001{word-spacing:0.302400px;}
.ws6e6_c00001{word-spacing:0.307800px;}
.ws204_c00001{word-spacing:0.309600px;}
.wsa50_c00001{word-spacing:0.309804px;}
.ws55f_c00001{word-spacing:0.312624px;}
.ws6e9_c00001{word-spacing:0.313200px;}
.ws29d_c00001{word-spacing:0.316800px;}
.ws555_c00001{word-spacing:0.318636px;}
.ws94c_c00001{word-spacing:0.320796px;}
.ws96c_c00001{word-spacing:0.324000px;}
.ws3c_c00001{word-spacing:0.325584px;}
.ws6fb_c00001{word-spacing:0.329400px;}
.ws4ec_c00001{word-spacing:0.330372px;}
.ws275_c00001{word-spacing:0.331200px;}
.ws6fa_c00001{word-spacing:0.334800px;}
.ws484_c00001{word-spacing:0.335160px;}
.ws9ed_c00001{word-spacing:0.336672px;}
.ws3dd_c00001{word-spacing:0.338400px;}
.ws30_c00001{word-spacing:0.339948px;}
.ws441_c00001{word-spacing:0.344736px;}
.ws3bb_c00001{word-spacing:0.345600px;}
.ws3d_c00001{word-spacing:0.349524px;}
.ws6f4_c00001{word-spacing:0.351000px;}
.ws44b_c00001{word-spacing:0.352800px;}
.ws16a_c00001{word-spacing:0.354312px;}
.ws249_c00001{word-spacing:0.354708px;}
.ws1e9_c00001{word-spacing:0.357696px;}
.ws1eb_c00001{word-spacing:0.359100px;}
.ws29e_c00001{word-spacing:0.360000px;}
.ws556_c00001{word-spacing:0.360720px;}
.ws10d_c00001{word-spacing:0.363888px;}
.ws7a7_c00001{word-spacing:0.366732px;}
.ws1f8_c00001{word-spacing:0.367200px;}
.ws73a_c00001{word-spacing:0.372744px;}
.ws2a3_c00001{word-spacing:0.373464px;}
.ws23f_c00001{word-spacing:0.374400px;}
.ws723_c00001{word-spacing:0.378756px;}
.ws203_c00001{word-spacing:0.381600px;}
.ws646_c00001{word-spacing:0.383040px;}
.ws635_c00001{word-spacing:0.388800px;}
.ws37e_c00001{word-spacing:0.390780px;}
.ws566_c00001{word-spacing:0.396000px;}
.ws81b_c00001{word-spacing:0.396792px;}
.wsa36_c00001{word-spacing:0.402804px;}
.ws227_c00001{word-spacing:0.403200px;}
.ws56a_c00001{word-spacing:0.410400px;}
.ws402_c00001{word-spacing:0.414828px;}
.ws263_c00001{word-spacing:0.417600px;}
.ws143_c00001{word-spacing:0.424800px;}
.ws133_c00001{word-spacing:0.426852px;}
.ws26e_c00001{word-spacing:0.432000px;}
.ws5e1_c00001{word-spacing:0.432864px;}
.ws328_c00001{word-spacing:0.438876px;}
.ws4b0_c00001{word-spacing:0.439200px;}
.ws39d_c00001{word-spacing:0.444888px;}
.ws241_c00001{word-spacing:0.446400px;}
.ws134_c00001{word-spacing:0.450900px;}
.ws228_c00001{word-spacing:0.453600px;}
.ws45d_c00001{word-spacing:0.456912px;}
.ws32f_c00001{word-spacing:0.460800px;}
.ws50a_c00001{word-spacing:0.462924px;}
.ws585_c00001{word-spacing:0.468000px;}
.ws255_c00001{word-spacing:0.468936px;}
.ws401_c00001{word-spacing:0.474948px;}
.ws262_c00001{word-spacing:0.475200px;}
.ws256_c00001{word-spacing:0.480960px;}
.wsa1a_c00001{word-spacing:0.482400px;}
.ws6f6_c00001{word-spacing:0.486000px;}
.ws45b_c00001{word-spacing:0.486972px;}
.wsab7_c00001{word-spacing:0.492984px;}
.wsa91_c00001{word-spacing:0.496800px;}
.ws673_c00001{word-spacing:0.498996px;}
.ws8ec_c00001{word-spacing:0.504000px;}
.ws8e_c00001{word-spacing:0.505008px;}
.ws240_c00001{word-spacing:0.511200px;}
.ws4a2_c00001{word-spacing:0.517032px;}
.ws481_c00001{word-spacing:0.521892px;}
.ws3bc_c00001{word-spacing:0.525600px;}
.ws45c_c00001{word-spacing:0.529056px;}
.wsa34_c00001{word-spacing:0.547092px;}
.ws8d2_c00001{word-spacing:0.583200px;}
.ws135_c00001{word-spacing:0.589176px;}
.wsc3c_c00001{word-spacing:0.590400px;}
.wsc74_c00001{word-spacing:0.626400px;}
.ws480_c00001{word-spacing:0.636804px;}
.wsc3b_c00001{word-spacing:0.640800px;}
.ws64d_c00001{word-spacing:0.649296px;}
.ws56f_c00001{word-spacing:0.655200px;}
.wsb29_c00001{word-spacing:0.669600px;}
.wsa07_c00001{word-spacing:0.673344px;}
.ws63d_c00001{word-spacing:0.675108px;}
.ws201_c00001{word-spacing:0.676800px;}
.ws543_c00001{word-spacing:0.684684px;}
.ws2c_c00001{word-spacing:0.689472px;}
.ws31d_c00001{word-spacing:0.691200px;}
.ws6d_c00001{word-spacing:0.694260px;}
.ws2d8_c00001{word-spacing:0.698400px;}
.ws2b_c00001{word-spacing:0.699048px;}
.ws724_c00001{word-spacing:0.703404px;}
.ws31_c00001{word-spacing:0.703836px;}
.ws8f3_c00001{word-spacing:0.705600px;}
.ws87c_c00001{word-spacing:0.708624px;}
.ws570_c00001{word-spacing:0.712800px;}
.ws6e_c00001{word-spacing:0.713412px;}
.ws5d1_c00001{word-spacing:0.715428px;}
.ws202_c00001{word-spacing:0.720000px;}
.ws725_c00001{word-spacing:0.721440px;}
.ws1ea_c00001{word-spacing:0.722988px;}
.ws260_c00001{word-spacing:0.727200px;}
.ws322_c00001{word-spacing:0.727776px;}
.ws542_c00001{word-spacing:0.732564px;}
.ws2d9_c00001{word-spacing:0.734400px;}
.ws694_c00001{word-spacing:0.737352px;}
.ws7a6_c00001{word-spacing:0.739476px;}
.ws1b0_c00001{word-spacing:0.741600px;}
.ws674_c00001{word-spacing:0.745488px;}
.ws94e_c00001{word-spacing:0.746928px;}
.ws1af_c00001{word-spacing:0.748800px;}
.ws4fe_c00001{word-spacing:0.751500px;}
.ws107_c00001{word-spacing:0.756000px;}
.ws739_c00001{word-spacing:0.757512px;}
.ws281_c00001{word-spacing:0.763200px;}
.ws60c_c00001{word-spacing:0.763524px;}
.ws9f6_c00001{word-spacing:0.769536px;}
.ws2ec_c00001{word-spacing:0.770400px;}
.ws784_c00001{word-spacing:0.775548px;}
.ws8c6_c00001{word-spacing:0.777600px;}
.ws70c_c00001{word-spacing:0.781560px;}
.ws25f_c00001{word-spacing:0.784800px;}
.ws24f_c00001{word-spacing:0.787572px;}
.ws1de_c00001{word-spacing:0.792000px;}
.ws816_c00001{word-spacing:0.793584px;}
.ws4f5_c00001{word-spacing:0.799200px;}
.ws70b_c00001{word-spacing:0.799596px;}
.ws4c9_c00001{word-spacing:0.805608px;}
.ws743_c00001{word-spacing:0.806400px;}
.ws7f9_c00001{word-spacing:0.811620px;}
.ws4_c00001{word-spacing:0.817632px;}
.wsa58_c00001{word-spacing:0.820800px;}
.ws463_c00001{word-spacing:0.823644px;}
.ws50f_c00001{word-spacing:0.829656px;}
.ws465_c00001{word-spacing:0.835668px;}
.ws767_c00001{word-spacing:0.841680px;}
.ws922_c00001{word-spacing:0.842400px;}
.wsa0c_c00001{word-spacing:0.847692px;}
.ws5_c00001{word-spacing:0.853704px;}
.ws53d_c00001{word-spacing:0.856800px;}
.ws837_c00001{word-spacing:0.859716px;}
.ws932_c00001{word-spacing:0.865728px;}
.ws768_c00001{word-spacing:0.871740px;}
.wsc87_c00001{word-spacing:0.936000px;}
.wsc7c_c00001{word-spacing:0.957600px;}
.wsc1c_c00001{word-spacing:0.979200px;}
.wsb0b_c00001{word-spacing:1.000800px;}
.ws72b_c00001{word-spacing:1.015200px;}
.ws18b_c00001{word-spacing:1.022400px;}
.ws1a2_c00001{word-spacing:1.029600px;}
.ws74c_c00001{word-spacing:1.034208px;}
.ws82_c00001{word-spacing:1.036800px;}
.ws33_c00001{word-spacing:1.043784px;}
.ws4ac_c00001{word-spacing:1.044000px;}
.ws28_c00001{word-spacing:1.048572px;}
.ws56e_c00001{word-spacing:1.051200px;}
.ws73_c00001{word-spacing:1.053360px;}
.ws29_c00001{word-spacing:1.058148px;}
.ws41e_c00001{word-spacing:1.058400px;}
.ws23_c00001{word-spacing:1.062936px;}
.ws742_c00001{word-spacing:1.065600px;}
.ws17c_c00001{word-spacing:1.067724px;}
.ws32_c00001{word-spacing:1.072512px;}
.ws261_c00001{word-spacing:1.072800px;}
.ws74b_c00001{word-spacing:1.076976px;}
.ws17d_c00001{word-spacing:1.077300px;}
.ws18a_c00001{word-spacing:1.080000px;}
.ws69a_c00001{word-spacing:1.080864px;}
.ws74a_c00001{word-spacing:1.082088px;}
.ws298_c00001{word-spacing:1.087200px;}
.ws18c_c00001{word-spacing:1.094400px;}
.ws94d_c00001{word-spacing:1.096452px;}
.ws26c_c00001{word-spacing:1.101600px;}
.ws7b4_c00001{word-spacing:1.106208px;}
.ws22a_c00001{word-spacing:1.108800px;}
.ws45f_c00001{word-spacing:1.112220px;}
.wsa1b_c00001{word-spacing:1.116000px;}
.ws98_c00001{word-spacing:1.118232px;}
.ws7ed_c00001{word-spacing:1.123200px;}
.ws4cb_c00001{word-spacing:1.124244px;}
.ws701_c00001{word-spacing:1.130256px;}
.ws2af_c00001{word-spacing:1.130400px;}
.ws3c7_c00001{word-spacing:1.136268px;}
.ws59c_c00001{word-spacing:1.137600px;}
.ws4e3_c00001{word-spacing:1.142280px;}
.ws1a3_c00001{word-spacing:1.144800px;}
.ws7a5_c00001{word-spacing:1.148292px;}
.ws19f_c00001{word-spacing:1.152000px;}
.wsb7_c00001{word-spacing:1.154304px;}
.ws72d_c00001{word-spacing:1.159200px;}
.ws7ab_c00001{word-spacing:1.160316px;}
.ws4cf_c00001{word-spacing:1.166328px;}
.ws81_c00001{word-spacing:1.166400px;}
.wsb8_c00001{word-spacing:1.172340px;}
.ws2b0_c00001{word-spacing:1.173600px;}
.ws983_c00001{word-spacing:1.178352px;}
.ws793_c00001{word-spacing:1.184364px;}
.ws8b6_c00001{word-spacing:1.188000px;}
.ws9d_c00001{word-spacing:1.190376px;}
.ws79f_c00001{word-spacing:1.195200px;}
.ws453_c00001{word-spacing:1.202400px;}
.ws8f9_c00001{word-spacing:1.209600px;}
.ws97f_c00001{word-spacing:1.216800px;}
.ws464_c00001{word-spacing:1.220436px;}
.ws7a4_c00001{word-spacing:1.226448px;}
.ws297_c00001{word-spacing:1.238400px;}
.ws4ca_c00001{word-spacing:1.256508px;}
.ws972_c00001{word-spacing:1.260000px;}
.wsba0_c00001{word-spacing:1.274400px;}
.ws8a5_c00001{word-spacing:1.296000px;}
.ws8fa_c00001{word-spacing:1.303200px;}
.ws9fe_c00001{word-spacing:1.317600px;}
.wsac3_c00001{word-spacing:1.353600px;}
.wsc80_c00001{word-spacing:1.360800px;}
.ws80_c00001{word-spacing:1.368000px;}
.ws1f5_c00001{word-spacing:1.375200px;}
.wsb42_c00001{word-spacing:1.389600px;}
.wsb3d_c00001{word-spacing:1.396800px;}
.ws471_c00001{word-spacing:1.398096px;}
.ws2bc_c00001{word-spacing:1.402884px;}
.ws54a_c00001{word-spacing:1.407672px;}
.ws19d_c00001{word-spacing:1.411200px;}
.ws2a_c00001{word-spacing:1.412460px;}
.ws569_c00001{word-spacing:1.417248px;}
.ws95f_c00001{word-spacing:1.418400px;}
.ws43f_c00001{word-spacing:1.422036px;}
.ws777_c00001{word-spacing:1.425600px;}
.ws449_c00001{word-spacing:1.426824px;}
.ws422_c00001{word-spacing:1.431612px;}
.ws599_c00001{word-spacing:1.432800px;}
.ws2bd_c00001{word-spacing:1.436400px;}
.ws225_c00001{word-spacing:1.440000px;}
.wsa47_c00001{word-spacing:1.442448px;}
.ws86b_c00001{word-spacing:1.447200px;}
.ws183_c00001{word-spacing:1.454400px;}
.ws259_c00001{word-spacing:1.454904px;}
.wsa48_c00001{word-spacing:1.455552px;}
.ws7be_c00001{word-spacing:1.460916px;}
.ws19e_c00001{word-spacing:1.461600px;}
.ws4df_c00001{word-spacing:1.466928px;}
.ws15d_c00001{word-spacing:1.468800px;}
.ws76_c00001{word-spacing:1.472940px;}
.ws8dd_c00001{word-spacing:1.476000px;}
.ws4e0_c00001{word-spacing:1.478952px;}
.ws3f9_c00001{word-spacing:1.483200px;}
.ws75_c00001{word-spacing:1.484964px;}
.ws598_c00001{word-spacing:1.490400px;}
.ws9df_c00001{word-spacing:1.490976px;}
.ws137_c00001{word-spacing:1.496988px;}
.ws72e_c00001{word-spacing:1.497600px;}
.ws311_c00001{word-spacing:1.503000px;}
.ws30d_c00001{word-spacing:1.504800px;}
.ws4ce_c00001{word-spacing:1.509012px;}
.ws271_c00001{word-spacing:1.512000px;}
.ws138_c00001{word-spacing:1.515024px;}
.ws9be_c00001{word-spacing:1.519200px;}
.ws9_c00001{word-spacing:1.521036px;}
.ws184_c00001{word-spacing:1.526400px;}
.wsb0_c00001{word-spacing:1.527048px;}
.wsc1_c00001{word-spacing:1.533060px;}
.ws3f8_c00001{word-spacing:1.533600px;}
.ws139_c00001{word-spacing:1.539072px;}
.ws8a1_c00001{word-spacing:1.540800px;}
.ws9bd_c00001{word-spacing:1.548000px;}
.wsb1_c00001{word-spacing:1.551096px;}
.ws958_c00001{word-spacing:1.555200px;}
.ws8b9_c00001{word-spacing:1.562400px;}
.ws734_c00001{word-spacing:1.563120px;}
.ws9a4_c00001{word-spacing:1.569132px;}
.wsb0a_c00001{word-spacing:1.569600px;}
.ws7aa_c00001{word-spacing:1.575144px;}
.ws1f4_c00001{word-spacing:1.576800px;}
.ws790_c00001{word-spacing:1.581156px;}
.wsa7e_c00001{word-spacing:1.591200px;}
.ws2cc_c00001{word-spacing:1.598400px;}
.ws5ec_c00001{word-spacing:1.605600px;}
.ws733_c00001{word-spacing:1.611216px;}
.wsac9_c00001{word-spacing:1.612800px;}
.wsc73_c00001{word-spacing:1.620000px;}
.wsc37_c00001{word-spacing:1.627200px;}
.wsb7f_c00001{word-spacing:1.641600px;}
.wsc7d_c00001{word-spacing:1.656000px;}
.ws9fd_c00001{word-spacing:1.706400px;}
.ws2cb_c00001{word-spacing:1.713600px;}
.ws9c8_c00001{word-spacing:1.720800px;}
.ws800_c00001{word-spacing:1.728000px;}
.ws2bb_c00001{word-spacing:1.735200px;}
.ws266_c00001{word-spacing:1.742400px;}
.wsadb_c00001{word-spacing:1.749600px;}
.ws9c1_c00001{word-spacing:1.756800px;}
.ws4a8_c00001{word-spacing:1.764000px;}
.ws44a_c00001{word-spacing:1.771200px;}
.ws574_c00001{word-spacing:1.771560px;}
.ws36_c00001{word-spacing:1.776348px;}
.ws150_c00001{word-spacing:1.778400px;}
.ws37_c00001{word-spacing:1.781136px;}
.ws43a_c00001{word-spacing:1.785600px;}
.ws575_c00001{word-spacing:1.785924px;}
.ws4f1_c00001{word-spacing:1.790712px;}
.ws60e_c00001{word-spacing:1.791576px;}
.ws2dd_c00001{word-spacing:1.792800px;}
.ws54f_c00001{word-spacing:1.795500px;}
.ws1e2_c00001{word-spacing:1.800000px;}
.ws63e_c00001{word-spacing:1.800288px;}
.ws630_c00001{word-spacing:1.805076px;}
.ws85_c00001{word-spacing:1.807200px;}
.ws191_c00001{word-spacing:1.814400px;}
.ws6b_c00001{word-spacing:1.815624px;}
.ws102_c00001{word-spacing:1.821600px;}
.ws95_c00001{word-spacing:1.821636px;}
.ws4d0_c00001{word-spacing:1.827648px;}
.ws333_c00001{word-spacing:1.828800px;}
.ws9ef_c00001{word-spacing:1.833660px;}
.ws175_c00001{word-spacing:1.836000px;}
.ws7f2_c00001{word-spacing:1.843200px;}
.ws45e_c00001{word-spacing:1.845684px;}
.ws267_c00001{word-spacing:1.850400px;}
.ws490_c00001{word-spacing:1.851696px;}
.ws420_c00001{word-spacing:1.857600px;}
.ws9a6_c00001{word-spacing:1.857708px;}
.ws83c_c00001{word-spacing:1.863720px;}
.ws176_c00001{word-spacing:1.864800px;}
.ws57a_c00001{word-spacing:1.869732px;}
.ws101_c00001{word-spacing:1.872000px;}
.ws405_c00001{word-spacing:1.875744px;}
.wsc4e_c00001{word-spacing:1.877040px;}
.ws76d_c00001{word-spacing:1.879200px;}
.ws97_c00001{word-spacing:1.881756px;}
.ws666_c00001{word-spacing:1.886400px;}
.wsca_c00001{word-spacing:1.887768px;}
.ws7cd_c00001{word-spacing:1.893600px;}
.ws96_c00001{word-spacing:1.899792px;}
.ws345_c00001{word-spacing:1.900800px;}
.ws7c_c00001{word-spacing:1.905804px;}
.ws14f_c00001{word-spacing:1.908000px;}
.wsa_c00001{word-spacing:1.911816px;}
.wsa6e_c00001{word-spacing:1.915200px;}
.ws2de_c00001{word-spacing:1.922400px;}
.ws6a_c00001{word-spacing:1.923840px;}
.ws7a2_c00001{word-spacing:1.929600px;}
.ws439_c00001{word-spacing:1.936800px;}
.wsa88_c00001{word-spacing:1.944000px;}
.ws4e4_c00001{word-spacing:1.947888px;}
.ws965_c00001{word-spacing:1.951200px;}
.wsbdb_c00001{word-spacing:1.968048px;}
.wsc85_c00001{word-spacing:1.987200px;}
.wsadf_c00001{word-spacing:1.989972px;}
.ws88f_c00001{word-spacing:2.008800px;}
.ws509_c00001{word-spacing:2.014020px;}
.wsa86_c00001{word-spacing:2.016000px;}
.wsc86_c00001{word-spacing:2.030400px;}
.ws7d_c00001{word-spacing:2.032056px;}
.ws9c7_c00001{word-spacing:2.037600px;}
.ws99e_c00001{word-spacing:2.073600px;}
.ws91e_c00001{word-spacing:2.080800px;}
.ws8b8_c00001{word-spacing:2.088000px;}
.ws460_c00001{word-spacing:2.095200px;}
.ws762_c00001{word-spacing:2.102400px;}
.ws778_c00001{word-spacing:2.106720px;}
.ws8b5_c00001{word-spacing:2.109600px;}
.wsae0_c00001{word-spacing:2.116224px;}
.ws2f8_c00001{word-spacing:2.116296px;}
.ws749_c00001{word-spacing:2.116800px;}
.ws2f7_c00001{word-spacing:2.121084px;}
.wsa9f_c00001{word-spacing:2.124000px;}
.ws2e_c00001{word-spacing:2.125872px;}
.ws96a_c00001{word-spacing:2.131200px;}
.ws13b_c00001{word-spacing:2.135448px;}
.ws47a_c00001{word-spacing:2.138400px;}
.ws39_c00001{word-spacing:2.140236px;}
.ws440_c00001{word-spacing:2.145024px;}
.ws438_c00001{word-spacing:2.145600px;}
.ws2d_c00001{word-spacing:2.149812px;}
.ws5a3_c00001{word-spacing:2.152800px;}
.ws38_c00001{word-spacing:2.154600px;}
.ws61f_c00001{word-spacing:2.159388px;}
.ws3e1_c00001{word-spacing:2.160000px;}
.ws54e_c00001{word-spacing:2.164176px;}
.ws631_c00001{word-spacing:2.165616px;}
.wsd4_c00001{word-spacing:2.167200px;}
.ws541_c00001{word-spacing:2.168964px;}
.ws840_c00001{word-spacing:2.170332px;}
.ws188_c00001{word-spacing:2.174400px;}
.ws792_c00001{word-spacing:2.176344px;}
.ws9ce_c00001{word-spacing:2.178540px;}
.ws6b4_c00001{word-spacing:2.181600px;}
.ws248_c00001{word-spacing:2.182356px;}
.ws98c_c00001{word-spacing:2.188368px;}
.ws28f_c00001{word-spacing:2.188800px;}
.ws6_c00001{word-spacing:2.194380px;}
.ws424_c00001{word-spacing:2.196000px;}
.ws524_c00001{word-spacing:2.200392px;}
.ws806_c00001{word-spacing:2.203200px;}
.ws51_c00001{word-spacing:2.206404px;}
.ws290_c00001{word-spacing:2.210400px;}
.ws648_c00001{word-spacing:2.212416px;}
.ws38b_c00001{word-spacing:2.217600px;}
.wse0_c00001{word-spacing:2.218428px;}
.wse1_c00001{word-spacing:2.224440px;}
.ws969_c00001{word-spacing:2.224800px;}
.ws632_c00001{word-spacing:2.226420px;}
.ws5dd_c00001{word-spacing:2.230452px;}
.ws8bc_c00001{word-spacing:2.232000px;}
.ws5ab_c00001{word-spacing:2.236464px;}
.ws3e0_c00001{word-spacing:2.239200px;}
.ws7_c00001{word-spacing:2.242476px;}
.ws4c7_c00001{word-spacing:2.246400px;}
.ws79b_c00001{word-spacing:2.248488px;}
.wsc42_c00001{word-spacing:2.253600px;}
.ws9e3_c00001{word-spacing:2.254500px;}
.ws389_c00001{word-spacing:2.260512px;}
.ws8c4_c00001{word-spacing:2.260800px;}
.ws9d9_c00001{word-spacing:2.266524px;}
.ws29f_c00001{word-spacing:2.268000px;}
.ws404_c00001{word-spacing:2.272536px;}
.ws38c_c00001{word-spacing:2.275200px;}
.ws730_c00001{word-spacing:2.278548px;}
.wsc32_c00001{word-spacing:2.280888px;}
.ws8f6_c00001{word-spacing:2.282400px;}
.ws929_c00001{word-spacing:2.289600px;}
.ws9d8_c00001{word-spacing:2.290572px;}
.ws5a4_c00001{word-spacing:2.304000px;}
.wsbba_c00001{word-spacing:2.311200px;}
.ws5ac_c00001{word-spacing:2.314620px;}
.ws51f_c00001{word-spacing:2.325600px;}
.wsa92_c00001{word-spacing:2.340000px;}
.wsa53_c00001{word-spacing:2.361600px;}
.ws78b_c00001{word-spacing:2.362716px;}
.wsb95_c00001{word-spacing:2.368800px;}
.wsa90_c00001{word-spacing:2.370060px;}
.ws9f3_c00001{word-spacing:2.383200px;}
.ws9b1_c00001{word-spacing:2.398788px;}
.wsa75_c00001{word-spacing:2.404800px;}
.ws5ad_c00001{word-spacing:2.410812px;}
.wsc50_c00001{word-spacing:2.412000px;}
.ws9d1_c00001{word-spacing:2.426400px;}
.wsa29_c00001{word-spacing:2.433600px;}
.ws92b_c00001{word-spacing:2.455200px;}
.ws75b_c00001{word-spacing:2.462400px;}
.ws783_c00001{word-spacing:2.465820px;}
.ws8b7_c00001{word-spacing:2.469600px;}
.ws620_c00001{word-spacing:2.470608px;}
.ws35d_c00001{word-spacing:2.480184px;}
.wsa6_c00001{word-spacing:2.484000px;}
.ws2a2_c00001{word-spacing:2.484972px;}
.ws1c7_c00001{word-spacing:2.489760px;}
.ws32c_c00001{word-spacing:2.491200px;}
.ws21_c00001{word-spacing:2.494548px;}
.ws1b1_c00001{word-spacing:2.498400px;}
.ws22_c00001{word-spacing:2.499336px;}
.ws1c6_c00001{word-spacing:2.504124px;}
.wsaa5_c00001{word-spacing:2.505600px;}
.ws5ce_c00001{word-spacing:2.507004px;}
.ws2a8_c00001{word-spacing:2.508912px;}
.ws32d_c00001{word-spacing:2.512800px;}
.ws3e_c00001{word-spacing:2.513700px;}
.ws4b7_c00001{word-spacing:2.518488px;}
.ws4b6_c00001{word-spacing:2.519424px;}
.ws16d_c00001{word-spacing:2.520000px;}
.ws2a4_c00001{word-spacing:2.523276px;}
.ws2a5_c00001{word-spacing:2.523312px;}
.ws16c_c00001{word-spacing:2.527200px;}
.ws2a9_c00001{word-spacing:2.528064px;}
.wsa5_c00001{word-spacing:2.534400px;}
.ws802_c00001{word-spacing:2.537064px;}
.ws2a7_c00001{word-spacing:2.537640px;}
.ws59b_c00001{word-spacing:2.541600px;}
.ws35c_c00001{word-spacing:2.542428px;}
.ws391_c00001{word-spacing:2.543076px;}
.ws118_c00001{word-spacing:2.548800px;}
.ws5f1_c00001{word-spacing:2.549088px;}
.ws69b_c00001{word-spacing:2.552004px;}
.ws789_c00001{word-spacing:2.555100px;}
.ws340_c00001{word-spacing:2.556000px;}
.ws99f_c00001{word-spacing:2.561112px;}
.ws3f1_c00001{word-spacing:2.563200px;}
.ws769_c00001{word-spacing:2.567124px;}
.ws119_c00001{word-spacing:2.570400px;}
.ws4b_c00001{word-spacing:2.573136px;}
.ws572_c00001{word-spacing:2.577600px;}
.ws7a9_c00001{word-spacing:2.579148px;}
.ws8f2_c00001{word-spacing:2.584800px;}
.ws609_c00001{word-spacing:2.585160px;}
.ws7e9_c00001{word-spacing:2.591172px;}
.ws5fd_c00001{word-spacing:2.592000px;}
.ws4c_c00001{word-spacing:2.597184px;}
.ws981_c00001{word-spacing:2.599200px;}
.ws24a_c00001{word-spacing:2.603196px;}
.ws907_c00001{word-spacing:2.606400px;}
.ws392_c00001{word-spacing:2.609208px;}
.ws7d9_c00001{word-spacing:2.613600px;}
.ws7a8_c00001{word-spacing:2.615220px;}
.ws4dc_c00001{word-spacing:2.620800px;}
.ws791_c00001{word-spacing:2.621232px;}
.ws552_c00001{word-spacing:2.627244px;}
.wsbc4_c00001{word-spacing:2.628000px;}
.ws89b_c00001{word-spacing:2.635200px;}
.ws394_c00001{word-spacing:2.639268px;}
.wsb63_c00001{word-spacing:2.642400px;}
.ws9a0_c00001{word-spacing:2.645280px;}
.ws5fc_c00001{word-spacing:2.656800px;}
.wsb7a_c00001{word-spacing:2.664000px;}
.ws393_c00001{word-spacing:2.669328px;}
.wsbd6_c00001{word-spacing:2.685600px;}
.ws991_c00001{word-spacing:2.699388px;}
.wsc1d_c00001{word-spacing:2.700000px;}
.wsb94_c00001{word-spacing:2.728800px;}
.ws990_c00001{word-spacing:2.753496px;}
.wsc60_c00001{word-spacing:2.757600px;}
.wsb51_c00001{word-spacing:2.786400px;}
.wsc70_c00001{word-spacing:2.793600px;}
.wsb50_c00001{word-spacing:2.808000px;}
.ws80d_c00001{word-spacing:2.815200px;}
.wsa65_c00001{word-spacing:2.822400px;}
.ws10b_c00001{word-spacing:2.824920px;}
.ws411_c00001{word-spacing:2.829600px;}
.ws74e_c00001{word-spacing:2.829708px;}
.ws74d_c00001{word-spacing:2.834496px;}
.ws11_c00001{word-spacing:2.836800px;}
.wsa9b_c00001{word-spacing:2.844000px;}
.ws4ef_c00001{word-spacing:2.844072px;}
.ws5f7_c00001{word-spacing:2.848860px;}
.ws456_c00001{word-spacing:2.851200px;}
.wsaa_c00001{word-spacing:2.853648px;}
.ws97c_c00001{word-spacing:2.858400px;}
.ws4f2_c00001{word-spacing:2.858436px;}
.wsa9_c00001{word-spacing:2.863224px;}
.ws47f_c00001{word-spacing:2.865600px;}
.ws10a_c00001{word-spacing:2.868012px;}
.ws3da_c00001{word-spacing:2.872800px;}
.ws515_c00001{word-spacing:2.873736px;}
.ws29b_c00001{word-spacing:2.880000px;}
.ws2a6_c00001{word-spacing:2.882376px;}
.ws66c_c00001{word-spacing:2.887200px;}
.ws33c_c00001{word-spacing:2.891772px;}
.ws1df_c00001{word-spacing:2.894400px;}
.ws514_c00001{word-spacing:2.897784px;}
.ws52d_c00001{word-spacing:2.901600px;}
.ws78a_c00001{word-spacing:2.903796px;}
.ws10_c00001{word-spacing:2.908800px;}
.ws466_c00001{word-spacing:2.909808px;}
.ws98d_c00001{word-spacing:2.915820px;}
.ws3a3_c00001{word-spacing:2.916000px;}
.ws4e5_c00001{word-spacing:2.921832px;}
.ws671_c00001{word-spacing:2.923200px;}
.ws817_c00001{word-spacing:2.927844px;}
.ws3fb_c00001{word-spacing:2.930400px;}
.ws25b_c00001{word-spacing:2.933856px;}
.ws3fa_c00001{word-spacing:2.937600px;}
.wsfd_c00001{word-spacing:2.939868px;}
.ws9c6_c00001{word-spacing:2.944800px;}
.wsff_c00001{word-spacing:2.945880px;}
.ws60d_c00001{word-spacing:2.951892px;}
.ws9d4_c00001{word-spacing:2.952000px;}
.ws513_c00001{word-spacing:2.957904px;}
.ws9b5_c00001{word-spacing:2.959200px;}
.ws720_c00001{word-spacing:2.963916px;}
.wsb1f_c00001{word-spacing:2.966400px;}
.ws5a8_c00001{word-spacing:2.969928px;}
.ws474_c00001{word-spacing:2.973600px;}
.ws100_c00001{word-spacing:2.975940px;}
.ws5de_c00001{word-spacing:2.981952px;}
.ws7ec_c00001{word-spacing:2.987964px;}
.ws3db_c00001{word-spacing:2.988000px;}
.ws5a9_c00001{word-spacing:2.993976px;}
.wsa00_c00001{word-spacing:2.999988px;}
.ws84e_c00001{word-spacing:3.006000px;}
.wsc63_c00001{word-spacing:3.024000px;}
.ws858_c00001{word-spacing:3.024036px;}
.wsa06_c00001{word-spacing:3.030048px;}
.wsb3a_c00001{word-spacing:3.031200px;}
.wsc5d_c00001{word-spacing:3.038400px;}
.ws5df_c00001{word-spacing:3.042072px;}
.wsb1e_c00001{word-spacing:3.074400px;}
.wsbc6_c00001{word-spacing:3.088800px;}
.wsc5f_c00001{word-spacing:3.096000px;}
.wsa6c_c00001{word-spacing:3.102624px;}
.wsc52_c00001{word-spacing:3.110400px;}
.ws3ea_c00001{word-spacing:3.117600px;}
.ws97d_c00001{word-spacing:3.132000px;}
.wsc53_c00001{word-spacing:3.146400px;}
.wsa6a_c00001{word-spacing:3.150504px;}
.ws67b_c00001{word-spacing:3.153600px;}
.ws20a_c00001{word-spacing:3.160800px;}
.ws6b5_c00001{word-spacing:3.168000px;}
.wsa6b_c00001{word-spacing:3.169656px;}
.ws91a_c00001{word-spacing:3.175200px;}
.ws6a9_c00001{word-spacing:3.179232px;}
.ws921_c00001{word-spacing:3.182400px;}
.ws6aa_c00001{word-spacing:3.188808px;}
.wsda_c00001{word-spacing:3.189600px;}
.ws161_c00001{word-spacing:3.193596px;}
.ws27c_c00001{word-spacing:3.196800px;}
.wsa44_c00001{word-spacing:3.198384px;}
.ws2e7_c00001{word-spacing:3.203172px;}
.ws3e9_c00001{word-spacing:3.204000px;}
.ws160_c00001{word-spacing:3.207960px;}
.ws864_c00001{word-spacing:3.211200px;}
.ws549_c00001{word-spacing:3.212748px;}
.ws162_c00001{word-spacing:3.217536px;}
.ws3e8_c00001{word-spacing:3.218400px;}
.wsac_c00001{word-spacing:3.222324px;}
.ws520_c00001{word-spacing:3.225600px;}
.ws551_c00001{word-spacing:3.227112px;}
.ws2e8_c00001{word-spacing:3.231900px;}
.ws1bb_c00001{word-spacing:3.232800px;}
.ws15f_c00001{word-spacing:3.236688px;}
.ws1ba_c00001{word-spacing:3.240000px;}
.ws163_c00001{word-spacing:3.241476px;}
.ws6ab_c00001{word-spacing:3.246264px;}
.ws27b_c00001{word-spacing:3.247200px;}
.ws15e_c00001{word-spacing:3.254400px;}
.ws4fd_c00001{word-spacing:3.258504px;}
.ws3b2_c00001{word-spacing:3.261600px;}
.ws607_c00001{word-spacing:3.264516px;}
.ws209_c00001{word-spacing:3.268800px;}
.ws5b4_c00001{word-spacing:3.270528px;}
.wsdb_c00001{word-spacing:3.276000px;}
.wse2_c00001{word-spacing:3.282552px;}
.ws827_c00001{word-spacing:3.283200px;}
.ws9b_c00001{word-spacing:3.288564px;}
.ws5e_c00001{word-spacing:3.290400px;}
.ws25a_c00001{word-spacing:3.294576px;}
.ws72c_c00001{word-spacing:3.297600px;}
.ws5b1_c00001{word-spacing:3.300588px;}
.ws5d_c00001{word-spacing:3.304800px;}
.ws8e2_c00001{word-spacing:3.312000px;}
.ws511_c00001{word-spacing:3.312612px;}
.wsd6_c00001{word-spacing:3.318624px;}
.ws52c_c00001{word-spacing:3.319200px;}
.ws510_c00001{word-spacing:3.324636px;}
.ws32a_c00001{word-spacing:3.326400px;}
.ws5b0_c00001{word-spacing:3.330648px;}
.ws865_c00001{word-spacing:3.333600px;}
.wsd7_c00001{word-spacing:3.336660px;}
.wsa8d_c00001{word-spacing:3.340800px;}
.ws48_c00001{word-spacing:3.342672px;}
.ws527_c00001{word-spacing:3.348000px;}
.ws4fc_c00001{word-spacing:3.348684px;}
.ws5b3_c00001{word-spacing:3.354696px;}
.ws9fa_c00001{word-spacing:3.355200px;}
.wsd8_c00001{word-spacing:3.360708px;}
.ws69c_c00001{word-spacing:3.362400px;}
.ws32b_c00001{word-spacing:3.369600px;}
.ws794_c00001{word-spacing:3.372732px;}
.ws961_c00001{word-spacing:3.384000px;}
.ws83b_c00001{word-spacing:3.390768px;}
.ws9c_c00001{word-spacing:3.396780px;}
.wsc16_c00001{word-spacing:3.398400px;}
.wsb02_c00001{word-spacing:3.405600px;}
.ws71e_c00001{word-spacing:3.414816px;}
.ws688_c00001{word-spacing:3.420000px;}
.ws718_c00001{word-spacing:3.420828px;}
.ws9fb_c00001{word-spacing:3.427200px;}
.wsc4a_c00001{word-spacing:3.434400px;}
.wsc17_c00001{word-spacing:3.448800px;}
.ws997_c00001{word-spacing:3.463200px;}
.ws891_c00001{word-spacing:3.477600px;}
.wsa59_c00001{word-spacing:3.484800px;}
.ws67a_c00001{word-spacing:3.492000px;}
.ws6a8_c00001{word-spacing:3.495240px;}
.ws890_c00001{word-spacing:3.506400px;}
.wsac2_c00001{word-spacing:3.513600px;}
.wsbee_c00001{word-spacing:3.520800px;}
.wsac4_c00001{word-spacing:3.528000px;}
.wsc1e_c00001{word-spacing:3.535200px;}
.wsaea_c00001{word-spacing:3.542400px;}
.ws35a_c00001{word-spacing:3.552696px;}
.ws2a1_c00001{word-spacing:3.556800px;}
.ws168_c00001{word-spacing:3.557484px;}
.ws288_c00001{word-spacing:3.562272px;}
.ws6a6_c00001{word-spacing:3.564000px;}
.ws5f9_c00001{word-spacing:3.567060px;}
.ws533_c00001{word-spacing:3.571200px;}
.ws40_c00001{word-spacing:3.571848px;}
.ws169_c00001{word-spacing:3.576636px;}
.ws450_c00001{word-spacing:3.578400px;}
.ws3a_c00001{word-spacing:3.581424px;}
.ws4f4_c00001{word-spacing:3.585600px;}
.ws3b_c00001{word-spacing:3.586212px;}
.ws164_c00001{word-spacing:3.591000px;}
.ws1d9_c00001{word-spacing:3.592800px;}
.ws38f_c00001{word-spacing:3.595176px;}
.ws3f_c00001{word-spacing:3.595788px;}
.ws286_c00001{word-spacing:3.596400px;}
.ws1ae_c00001{word-spacing:3.600000px;}
.ws6a7_c00001{word-spacing:3.600288px;}
.ws670_c00001{word-spacing:3.600576px;}
.ws66f_c00001{word-spacing:3.604176px;}
.ws285_c00001{word-spacing:3.605364px;}
.ws4f3_c00001{word-spacing:3.607200px;}
.ws116_c00001{word-spacing:3.614400px;}
.ws982_c00001{word-spacing:3.619224px;}
.ws1ff_c00001{word-spacing:3.621600px;}
.ws468_c00001{word-spacing:3.625236px;}
.ws3f4_c00001{word-spacing:3.628800px;}
.wse6_c00001{word-spacing:3.631248px;}
.ws687_c00001{word-spacing:3.636000px;}
.ws558_c00001{word-spacing:3.637260px;}
.ws2a0_c00001{word-spacing:3.643200px;}
.ws853_c00001{word-spacing:3.643272px;}
.ws64a_c00001{word-spacing:3.649284px;}
.ws145_c00001{word-spacing:3.650400px;}
.ws54_c00001{word-spacing:3.655296px;}
.ws627_c00001{word-spacing:3.657600px;}
.ws7c8_c00001{word-spacing:3.661308px;}
.ws144_c00001{word-spacing:3.664800px;}
.ws557_c00001{word-spacing:3.667320px;}
.wsac0_c00001{word-spacing:3.672000px;}
.wsea_c00001{word-spacing:3.673332px;}
.ws1fe_c00001{word-spacing:3.679200px;}
.ws7d5_c00001{word-spacing:3.679344px;}
.wse9_c00001{word-spacing:3.685356px;}
.ws521_c00001{word-spacing:3.686400px;}
.wsbb_c00001{word-spacing:3.691368px;}
.ws492_c00001{word-spacing:3.693600px;}
.ws38e_c00001{word-spacing:3.697380px;}
.ws3f3_c00001{word-spacing:3.700800px;}
.ws5d6_c00001{word-spacing:3.703392px;}
.wsbf8_c00001{word-spacing:3.708000px;}
.ws856_c00001{word-spacing:3.709404px;}
.wsac1_c00001{word-spacing:3.715200px;}
.ws136_c00001{word-spacing:3.715416px;}
.ws47_c00001{word-spacing:3.721428px;}
.ws1ad_c00001{word-spacing:3.722400px;}
.ws9eb_c00001{word-spacing:3.729600px;}
.ws70d_c00001{word-spacing:3.733452px;}
.ws9da_c00001{word-spacing:3.739464px;}
.ws668_c00001{word-spacing:3.744000px;}
.ws49_c00001{word-spacing:3.745476px;}
.ws9dc_c00001{word-spacing:3.751488px;}
.wsa56_c00001{word-spacing:3.758400px;}
.ws8f8_c00001{word-spacing:3.765600px;}
.ws254_c00001{word-spacing:3.769524px;}
.wsa04_c00001{word-spacing:3.781548px;}
.wsc00_c00001{word-spacing:3.782520px;}
.ws9c3_c00001{word-spacing:3.801600px;}
.ws9db_c00001{word-spacing:3.811608px;}
.ws3ad_c00001{word-spacing:3.816000px;}
.ws72_c00001{word-spacing:3.835188px;}
.ws7d8_c00001{word-spacing:3.852000px;}
.wsb83_c00001{word-spacing:3.859200px;}
.ws467_c00001{word-spacing:3.877740px;}
.wsb28_c00001{word-spacing:3.880800px;}
.ws6a5_c00001{word-spacing:3.888000px;}
.ws71_c00001{word-spacing:3.892644px;}
.ws3ac_c00001{word-spacing:3.895200px;}
.ws6f_c00001{word-spacing:3.897432px;}
.ws70_c00001{word-spacing:3.907008px;}
.ws6a4_c00001{word-spacing:3.909600px;}
.ws17_c00001{word-spacing:3.924000px;}
.ws546_c00001{word-spacing:3.926160px;}
.ws641_c00001{word-spacing:3.930948px;}
.ws6ae_c00001{word-spacing:3.931200px;}
.ws49a_c00001{word-spacing:3.935736px;}
.ws85b_c00001{word-spacing:3.937860px;}
.ws4f7_c00001{word-spacing:3.938400px;}
.ws444_c00001{word-spacing:3.940524px;}
.ws34_c00001{word-spacing:3.945312px;}
.ws2e0_c00001{word-spacing:3.945600px;}
.ws4f0_c00001{word-spacing:3.950100px;}
.ws2b2_c00001{word-spacing:3.952800px;}
.ws445_c00001{word-spacing:3.954888px;}
.ws547_c00001{word-spacing:3.959676px;}
.wsc7_c00001{word-spacing:3.960000px;}
.ws39c_c00001{word-spacing:3.961908px;}
.ws287_c00001{word-spacing:3.964464px;}
.ws16_c00001{word-spacing:3.967200px;}
.wsbc_c00001{word-spacing:3.967920px;}
.ws39b_c00001{word-spacing:3.973932px;}
.ws2ca_c00001{word-spacing:3.974400px;}
.ws3ab_c00001{word-spacing:3.981600px;}
.wsa30_c00001{word-spacing:3.985956px;}
.ws49c_c00001{word-spacing:3.988800px;}
.ws649_c00001{word-spacing:3.991968px;}
.ws695_c00001{word-spacing:3.993192px;}
.ws146_c00001{word-spacing:3.996000px;}
.ws327_c00001{word-spacing:3.997980px;}
.ws111_c00001{word-spacing:4.003200px;}
.ws55b_c00001{word-spacing:4.003992px;}
.ws3c8_c00001{word-spacing:4.010004px;}
.ws7df_c00001{word-spacing:4.010400px;}
.ws3c9_c00001{word-spacing:4.016016px;}
.ws847_c00001{word-spacing:4.017600px;}
.wsd5_c00001{word-spacing:4.022028px;}
.ws46c_c00001{word-spacing:4.024800px;}
.ws5b2_c00001{word-spacing:4.028040px;}
.ws6a3_c00001{word-spacing:4.032000px;}
.ws48f_c00001{word-spacing:4.034052px;}
.ws34a_c00001{word-spacing:4.039200px;}
.ws46_c00001{word-spacing:4.040064px;}
.ws45_c00001{word-spacing:4.046076px;}
.ws173_c00001{word-spacing:4.046400px;}
.ws52_c00001{word-spacing:4.052088px;}
.ws2b3_c00001{word-spacing:4.053600px;}
.wsa31_c00001{word-spacing:4.058100px;}
.ws349_c00001{word-spacing:4.060800px;}
.wsb7d_c00001{word-spacing:4.061232px;}
.ws5ca_c00001{word-spacing:4.064112px;}
.wse5_c00001{word-spacing:4.070124px;}
.ws5d7_c00001{word-spacing:4.075200px;}
.ws94_c00001{word-spacing:4.076136px;}
.ws381_c00001{word-spacing:4.082148px;}
.ws85a_c00001{word-spacing:4.088160px;}
.ws763_c00001{word-spacing:4.089600px;}
.ws93_c00001{word-spacing:4.100184px;}
.ws9b0_c00001{word-spacing:4.111200px;}
.wsb27_c00001{word-spacing:4.125600px;}
.wsc27_c00001{word-spacing:4.176000px;}
.ws8a6_c00001{word-spacing:4.190400px;}
.ws614_c00001{word-spacing:4.226400px;}
.wsb8c_c00001{word-spacing:4.240800px;}
.ws28d_c00001{word-spacing:4.248000px;}
.ws18_c00001{word-spacing:4.255200px;}
.ws9d5_c00001{word-spacing:4.262400px;}
.wsaa6_c00001{word-spacing:4.269600px;}
.ws613_c00001{word-spacing:4.276800px;}
.ws4be_c00001{word-spacing:4.284000px;}
.ws446_c00001{word-spacing:4.285260px;}
.ws643_c00001{word-spacing:4.290048px;}
.ws78f_c00001{word-spacing:4.291200px;}
.ws545_c00001{word-spacing:4.294836px;}
.ws8d5_c00001{word-spacing:4.298400px;}
.ws642_c00001{word-spacing:4.299624px;}
.ws2f_c00001{word-spacing:4.304412px;}
.ws185_c00001{word-spacing:4.305600px;}
.ws67d_c00001{word-spacing:4.309200px;}
.ws42a_c00001{word-spacing:4.312800px;}
.ws24_c00001{word-spacing:4.313988px;}
.ws459_c00001{word-spacing:4.318776px;}
.ws612_c00001{word-spacing:4.320000px;}
.wsab6_c00001{word-spacing:4.322628px;}
.ws35_c00001{word-spacing:4.323564px;}
.ws571_c00001{word-spacing:4.327200px;}
.ws28c_c00001{word-spacing:4.334400px;}
.ws19_c00001{word-spacing:4.341600px;}
.ws696_c00001{word-spacing:4.342716px;}
.ws24b_c00001{word-spacing:4.346676px;}
.ws282_c00001{word-spacing:4.348800px;}
.ws50e_c00001{word-spacing:4.352688px;}
.ws4d7_c00001{word-spacing:4.356000px;}
.ws250_c00001{word-spacing:4.358700px;}
.ws186_c00001{word-spacing:4.363200px;}
.ws7c6_c00001{word-spacing:4.364712px;}
.ws429_c00001{word-spacing:4.370400px;}
.ws811_c00001{word-spacing:4.376736px;}
.ws5d8_c00001{word-spacing:4.377600px;}
.ws73c_c00001{word-spacing:4.382748px;}
.ws75c_c00001{word-spacing:4.384800px;}
.ws73b_c00001{word-spacing:4.388760px;}
.ws4d8_c00001{word-spacing:4.392000px;}
.ws711_c00001{word-spacing:4.394772px;}
.ws2c8_c00001{word-spacing:4.399200px;}
.ws4c8_c00001{word-spacing:4.406400px;}
.ws710_c00001{word-spacing:4.406796px;}
.ws765_c00001{word-spacing:4.412808px;}
.ws355_c00001{word-spacing:4.413600px;}
.ws2c9_c00001{word-spacing:4.420800px;}
.ws3ca_c00001{word-spacing:4.424832px;}
.ws1c4_c00001{word-spacing:4.428000px;}
.ws523_c00001{word-spacing:4.430844px;}
.ws5ae_c00001{word-spacing:4.436856px;}
.ws854_c00001{word-spacing:4.442400px;}
.ws679_c00001{word-spacing:4.442868px;}
.ws356_c00001{word-spacing:4.449600px;}
.ws678_c00001{word-spacing:4.454892px;}
.ws1c5_c00001{word-spacing:4.456800px;}
.ws79c_c00001{word-spacing:4.460904px;}
.ws677_c00001{word-spacing:4.466916px;}
.ws5af_c00001{word-spacing:4.472928px;}
.wsc72_c00001{word-spacing:4.514400px;}
.wsac6_c00001{word-spacing:4.543200px;}
.wsa39_c00001{word-spacing:4.572000px;}
.wsc3f_c00001{word-spacing:4.586400px;}
.wsaa3_c00001{word-spacing:4.593600px;}
.wsc55_c00001{word-spacing:4.600800px;}
.ws78e_c00001{word-spacing:4.608000px;}
.wsc06_c00001{word-spacing:4.615200px;}
.ws129_c00001{word-spacing:4.622400px;}
.wsc40_c00001{word-spacing:4.629600px;}
.ws1b9_c00001{word-spacing:4.636800px;}
.ws3e4_c00001{word-spacing:4.644000px;}
.ws54d_c00001{word-spacing:4.649148px;}
.ws33f_c00001{word-spacing:4.651200px;}
.ws63f_c00001{word-spacing:4.653936px;}
.ws97e_c00001{word-spacing:4.658400px;}
.ws2ce_c00001{word-spacing:4.658724px;}
.ws536_c00001{word-spacing:4.663512px;}
.ws360_c00001{word-spacing:4.665600px;}
.ws447_c00001{word-spacing:4.668300px;}
.ws866_c00001{word-spacing:4.672800px;}
.ws535_c00001{word-spacing:4.673088px;}
.ws2d1_c00001{word-spacing:4.677876px;}
.ws4d4_c00001{word-spacing:4.680000px;}
.ws2cf_c00001{word-spacing:4.682664px;}
.ws1cd_c00001{word-spacing:4.687200px;}
.ws36b_c00001{word-spacing:4.694400px;}
.ws797_c00001{word-spacing:4.695372px;}
.ws1b8_c00001{word-spacing:4.701600px;}
.ws7d1_c00001{word-spacing:4.707396px;}
.ws128_c00001{word-spacing:4.708800px;}
.ws740_c00001{word-spacing:4.713408px;}
.ws996_c00001{word-spacing:4.716000px;}
.ws7c7_c00001{word-spacing:4.719420px;}
.ws6a2_c00001{word-spacing:4.723200px;}
.ws35f_c00001{word-spacing:4.730400px;}
.ws796_c00001{word-spacing:4.737456px;}
.wsf6_c00001{word-spacing:4.737600px;}
.ws503_c00001{word-spacing:4.743468px;}
.ws595_c00001{word-spacing:4.744800px;}
.ws502_c00001{word-spacing:4.749480px;}
.ws9ca_c00001{word-spacing:4.752000px;}
.ws7bf_c00001{word-spacing:4.755492px;}
.ws9b6_c00001{word-spacing:4.759200px;}
.ws3cc_c00001{word-spacing:4.761504px;}
.wsf5_c00001{word-spacing:4.766400px;}
.ws741_c00001{word-spacing:4.767516px;}
.ws57e_c00001{word-spacing:4.773528px;}
.wsaa4_c00001{word-spacing:4.773600px;}
.ws818_c00001{word-spacing:4.779540px;}
.ws3d1_c00001{word-spacing:4.780800px;}
.ws9ee_c00001{word-spacing:4.785552px;}
.ws33e_c00001{word-spacing:4.788000px;}
.ws702_c00001{word-spacing:4.791564px;}
.ws3cd_c00001{word-spacing:4.797576px;}
.wsa22_c00001{word-spacing:4.803588px;}
.ws4bd_c00001{word-spacing:4.809600px;}
.ws36c_c00001{word-spacing:4.824000px;}
.ws857_c00001{word-spacing:4.833648px;}
.ws8df_c00001{word-spacing:4.838400px;}
.wsc08_c00001{word-spacing:4.845600px;}
.wsc05_c00001{word-spacing:4.857552px;}
.wsc07_c00001{word-spacing:4.888800px;}
.wsc49_c00001{word-spacing:4.896000px;}
.ws967_c00001{word-spacing:4.910400px;}
.ws8d1_c00001{word-spacing:4.939200px;}
.ws968_c00001{word-spacing:4.946400px;}
.wsb84_c00001{word-spacing:4.975200px;}
.wsa97_c00001{word-spacing:4.982400px;}
.ws3ef_c00001{word-spacing:4.989600px;}
.wsa12_c00001{word-spacing:4.996800px;}
.wsae5_c00001{word-spacing:5.004000px;}
.ws548_c00001{word-spacing:5.008248px;}
.ws47c_c00001{word-spacing:5.011200px;}
.ws25_c00001{word-spacing:5.013036px;}
.ws26_c00001{word-spacing:5.017824px;}
.ws27e_c00001{word-spacing:5.018400px;}
.ws5f6_c00001{word-spacing:5.022612px;}
.ws1b3_c00001{word-spacing:5.025600px;}
.ws497_c00001{word-spacing:5.027400px;}
.ws63c_c00001{word-spacing:5.032188px;}
.ws6b3_c00001{word-spacing:5.032800px;}
.ws644_c00001{word-spacing:5.036976px;}
.ws2d0_c00001{word-spacing:5.038848px;}
.ws278_c00001{word-spacing:5.040000px;}
.ws77b_c00001{word-spacing:5.047200px;}
.ws3c2_c00001{word-spacing:5.054400px;}
.ws39a_c00001{word-spacing:5.056092px;}
.ws232_c00001{word-spacing:5.061600px;}
.ws187_c00001{word-spacing:5.068800px;}
.ws380_c00001{word-spacing:5.074128px;}
.ws233_c00001{word-spacing:5.076000px;}
.wsa11_c00001{word-spacing:5.083200px;}
.ws55e_c00001{word-spacing:5.086152px;}
.wsb18_c00001{word-spacing:5.090400px;}
.ws412_c00001{word-spacing:5.097600px;}
.ws501_c00001{word-spacing:5.098176px;}
.ws9e7_c00001{word-spacing:5.104188px;}
.ws1b2_c00001{word-spacing:5.104800px;}
.ws4e_c00001{word-spacing:5.110200px;}
.wsb4c_c00001{word-spacing:5.112000px;}
.ws2da_c00001{word-spacing:5.119200px;}
.ws72f_c00001{word-spacing:5.122224px;}
.ws277_c00001{word-spacing:5.126400px;}
.ws37f_c00001{word-spacing:5.128236px;}
.ws76a_c00001{word-spacing:5.134248px;}
.ws7ce_c00001{word-spacing:5.140260px;}
.wsb15_c00001{word-spacing:5.140800px;}
.wsa21_c00001{word-spacing:5.146272px;}
.ws47b_c00001{word-spacing:5.155200px;}
.ws4d_c00001{word-spacing:5.158296px;}
.ws772_c00001{word-spacing:5.162400px;}
.wsb34_c00001{word-spacing:5.169600px;}
.wsb74_c00001{word-spacing:5.176800px;}
.wsbf1_c00001{word-spacing:5.220000px;}
.ws62f_c00001{word-spacing:5.266512px;}
.wsbf0_c00001{word-spacing:5.270400px;}
.ws8f1_c00001{word-spacing:5.276376px;}
.wsa16_c00001{word-spacing:5.320800px;}
.ws999_c00001{word-spacing:5.328000px;}
.wsafc_c00001{word-spacing:5.335200px;}
.ws91b_c00001{word-spacing:5.342400px;}
.ws174_c00001{word-spacing:5.349600px;}
.ws331_c00001{word-spacing:5.356800px;}
.ws2f9_c00001{word-spacing:5.357772px;}
.ws91d_c00001{word-spacing:5.367348px;}
.ws6b7_c00001{word-spacing:5.371200px;}
.ws54b_c00001{word-spacing:5.372136px;}
.ws49b_c00001{word-spacing:5.376924px;}
.ws871_c00001{word-spacing:5.378400px;}
.ws2fa_c00001{word-spacing:5.381712px;}
.ws23a_c00001{word-spacing:5.385600px;}
.wsa2a_c00001{word-spacing:5.386500px;}
.ws458_c00001{word-spacing:5.391288px;}
.ws14_c00001{word-spacing:5.392800px;}
.ws4ea_c00001{word-spacing:5.396076px;}
.ws15_c00001{word-spacing:5.400000px;}
.ws91c_c00001{word-spacing:5.400864px;}
.ws332_c00001{word-spacing:5.407200px;}
.ws3f7_c00001{word-spacing:5.414400px;}
.ws31c_c00001{word-spacing:5.421600px;}
.ws367_c00001{word-spacing:5.428800px;}
.ws79a_c00001{word-spacing:5.428836px;}
.wsa1_c00001{word-spacing:5.436000px;}
.ws403_c00001{word-spacing:5.440860px;}
.ws954_c00001{word-spacing:5.443200px;}
.ws50b_c00001{word-spacing:5.446872px;}
.ws239_c00001{word-spacing:5.450400px;}
.ws926_c00001{word-spacing:5.457600px;}
.ws62e_c00001{word-spacing:5.458896px;}
.ws5f3_c00001{word-spacing:5.464800px;}
.wse4_c00001{word-spacing:5.470920px;}
.ws65b_c00001{word-spacing:5.472000px;}
.ws7fb_c00001{word-spacing:5.476932px;}
.wsace_c00001{word-spacing:5.479200px;}
.ws49e_c00001{word-spacing:5.486400px;}
.ws7fa_c00001{word-spacing:5.488956px;}
.wse3_c00001{word-spacing:5.494968px;}
.ws2f4_c00001{word-spacing:5.500800px;}
.ws399_c00001{word-spacing:5.506992px;}
.ws5d2_c00001{word-spacing:5.513004px;}
.ws799_c00001{word-spacing:5.519016px;}
.ws8b3_c00001{word-spacing:5.522400px;}
.ws398_c00001{word-spacing:5.525028px;}
.wsa80_c00001{word-spacing:5.529600px;}
.ws927_c00001{word-spacing:5.536800px;}
.ws7e8_c00001{word-spacing:5.537052px;}
.wsa2c_c00001{word-spacing:5.587200px;}
.wsa9e_c00001{word-spacing:5.594400px;}
.ws872_c00001{word-spacing:5.601600px;}
.wsc41_c00001{word-spacing:5.623200px;}
.ws8be_c00001{word-spacing:5.644800px;}
.ws36d_c00001{word-spacing:5.673600px;}
.ws98a_c00001{word-spacing:5.695200px;}
.wsb9b_c00001{word-spacing:5.702400px;}
.ws5e7_c00001{word-spacing:5.707296px;}
.ws618_c00001{word-spacing:5.709600px;}
.ws657_c00001{word-spacing:5.716800px;}
.ws5ea_c00001{word-spacing:5.724000px;}
.wsa60_c00001{word-spacing:5.726448px;}
.ws476_c00001{word-spacing:5.731200px;}
.ws20_c00001{word-spacing:5.731236px;}
.ws43d_c00001{word-spacing:5.736024px;}
.ws4dd_c00001{word-spacing:5.738400px;}
.ws1f_c00001{word-spacing:5.740812px;}
.ws104_c00001{word-spacing:5.745600px;}
.wsab_c00001{word-spacing:5.750388px;}
.ws30f_c00001{word-spacing:5.752800px;}
.ws496_c00001{word-spacing:5.755176px;}
.ws698_c00001{word-spacing:5.758128px;}
.ws4b4_c00001{word-spacing:5.759964px;}
.ws103_c00001{word-spacing:5.760000px;}
.wsa5f_c00001{word-spacing:5.764752px;}
.ws221_c00001{word-spacing:5.767200px;}
.ws697_c00001{word-spacing:5.769540px;}
.ws55d_c00001{word-spacing:5.771520px;}
.ws699_c00001{word-spacing:5.774328px;}
.ws218_c00001{word-spacing:5.774400px;}
.ws245_c00001{word-spacing:5.781600px;}
.ws369_c00001{word-spacing:5.788800px;}
.ws33a_c00001{word-spacing:5.789556px;}
.ws93a_c00001{word-spacing:5.796000px;}
.ws339_c00001{word-spacing:5.801580px;}
.ws5eb_c00001{word-spacing:5.803200px;}
.ws83a_c00001{word-spacing:5.807592px;}
.ws30e_c00001{word-spacing:5.810400px;}
.ws386_c00001{word-spacing:5.813604px;}
.wsbf4_c00001{word-spacing:5.817600px;}
.ws251_c00001{word-spacing:5.819616px;}
.ws65f_c00001{word-spacing:5.824800px;}
.wsbd_c00001{word-spacing:5.825628px;}
.ws364_c00001{word-spacing:5.831640px;}
.ws158_c00001{word-spacing:5.832000px;}
.ws579_c00001{word-spacing:5.837652px;}
.wsa77_c00001{word-spacing:5.839200px;}
.ws9a5_c00001{word-spacing:5.843664px;}
.wsab9_c00001{word-spacing:5.846400px;}
.ws252_c00001{word-spacing:5.849676px;}
.ws910_c00001{word-spacing:5.853600px;}
.ws365_c00001{word-spacing:5.855688px;}
.ws159_c00001{word-spacing:5.860800px;}
.wsbe_c00001{word-spacing:5.867712px;}
.wsbcd_c00001{word-spacing:5.868000px;}
.ws387_c00001{word-spacing:5.879736px;}
.ws5ed_c00001{word-spacing:5.882400px;}
.ws578_c00001{word-spacing:5.885748px;}
.ws477_c00001{word-spacing:5.947200px;}
.wsa8a_c00001{word-spacing:5.968800px;}
.ws707_c00001{word-spacing:5.990400px;}
.wsbe6_c00001{word-spacing:6.026400px;}
.ws957_c00001{word-spacing:6.033600px;}
.ws943_c00001{word-spacing:6.048000px;}
.ws852_c00001{word-spacing:6.054084px;}
.ws5a1_c00001{word-spacing:6.055200px;}
.ws166_c00001{word-spacing:6.061608px;}
.wsa66_c00001{word-spacing:6.062400px;}
.ws2d2_c00001{word-spacing:6.069600px;}
.ws693_c00001{word-spacing:6.071184px;}
.ws87d_c00001{word-spacing:6.075972px;}
.ws2d3_c00001{word-spacing:6.076800px;}
.ws442_c00001{word-spacing:6.080760px;}
.ws751_c00001{word-spacing:6.084000px;}
.ws167_c00001{word-spacing:6.090336px;}
.ws705_c00001{word-spacing:6.091200px;}
.ws443_c00001{word-spacing:6.095124px;}
.ws596_c00001{word-spacing:6.098400px;}
.ws4ed_c00001{word-spacing:6.099912px;}
.ws43e_c00001{word-spacing:6.104700px;}
.ws68f_c00001{word-spacing:6.105600px;}
.ws4e9_c00001{word-spacing:6.109488px;}
.ws4ae_c00001{word-spacing:6.112800px;}
.ws640_c00001{word-spacing:6.114276px;}
.ws4ee_c00001{word-spacing:6.119064px;}
.ws4b3_c00001{word-spacing:6.119712px;}
.ws629_c00001{word-spacing:6.120000px;}
.ws57d_c00001{word-spacing:6.120216px;}
.ws4b5_c00001{word-spacing:6.123852px;}
.ws4af_c00001{word-spacing:6.127200px;}
.ws165_c00001{word-spacing:6.133428px;}
.ws318_c00001{word-spacing:6.134400px;}
.ws3a7_c00001{word-spacing:6.138252px;}
.ws5c1_c00001{word-spacing:6.141600px;}
.ws5b6_c00001{word-spacing:6.144264px;}
.ws280_c00001{word-spacing:6.148800px;}
.ws896_c00001{word-spacing:6.150276px;}
.ws2b5_c00001{word-spacing:6.156000px;}
.ws24c_c00001{word-spacing:6.156288px;}
.ws9f4_c00001{word-spacing:6.162300px;}
.ws89a_c00001{word-spacing:6.163200px;}
.ws395_c00001{word-spacing:6.168312px;}
.ws2b8_c00001{word-spacing:6.170400px;}
.wsbca_c00001{word-spacing:6.177600px;}
.ws7e3_c00001{word-spacing:6.180336px;}
.ws886_c00001{word-spacing:6.184800px;}
.wsb9_c00001{word-spacing:6.186348px;}
.ws2b7_c00001{word-spacing:6.192000px;}
.wsadc_c00001{word-spacing:6.192360px;}
.ws5b5_c00001{word-spacing:6.198372px;}
.ws861_c00001{word-spacing:6.199200px;}
.wsc4c_c00001{word-spacing:6.199920px;}
.ws363_c00001{word-spacing:6.204384px;}
.ws5a0_c00001{word-spacing:6.206400px;}
.ws57b_c00001{word-spacing:6.210396px;}
.wsb58_c00001{word-spacing:6.213600px;}
.wsba_c00001{word-spacing:6.216408px;}
.ws362_c00001{word-spacing:6.222420px;}
.ws81c_c00001{word-spacing:6.228432px;}
.ws5d3_c00001{word-spacing:6.234444px;}
.ws62a_c00001{word-spacing:6.256800px;}
.wsc7a_c00001{word-spacing:6.271200px;}
.ws57c_c00001{word-spacing:6.288552px;}
.ws5a2_c00001{word-spacing:6.300000px;}
.ws851_c00001{word-spacing:6.300576px;}
.wsc4d_c00001{word-spacing:6.321600px;}
.wsa70_c00001{word-spacing:6.357600px;}
.wsa73_c00001{word-spacing:6.364800px;}
.wsc48_c00001{word-spacing:6.379200px;}
.ws351_c00001{word-spacing:6.386400px;}
.wsbdc_c00001{word-spacing:6.400800px;}
.wsabd_c00001{word-spacing:6.408000px;}
.ws9ec_c00001{word-spacing:6.415200px;}
.wsabc_c00001{word-spacing:6.422400px;}
.ws8ef_c00001{word-spacing:6.425496px;}
.wsa13_c00001{word-spacing:6.429600px;}
.wsbe4_c00001{word-spacing:6.436800px;}
.ws5d4_c00001{word-spacing:6.438852px;}
.ws9e4_c00001{word-spacing:6.444000px;}
.ws43b_c00001{word-spacing:6.444648px;}
.ws43c_c00001{word-spacing:6.449436px;}
.ws602_c00001{word-spacing:6.451200px;}
.ws13c_c00001{word-spacing:6.454224px;}
.ws1f7_c00001{word-spacing:6.458400px;}
.ws472_c00001{word-spacing:6.459012px;}
.ws46f_c00001{word-spacing:6.463800px;}
.ws303_c00001{word-spacing:6.465600px;}
.ws473_c00001{word-spacing:6.468588px;}
.ws388_c00001{word-spacing:6.468912px;}
.ws7c3_c00001{word-spacing:6.472800px;}
.ws470_c00001{word-spacing:6.473376px;}
.ws94a_c00001{word-spacing:6.477408px;}
.ws2e4_c00001{word-spacing:6.478164px;}
.ws3a1_c00001{word-spacing:6.480000px;}
.ws8ee_c00001{word-spacing:6.482952px;}
.ws3d4_c00001{word-spacing:6.487200px;}
.ws5f8_c00001{word-spacing:6.487740px;}
.ws5c9_c00001{word-spacing:6.492960px;}
.ws226_c00001{word-spacing:6.494400px;}
.ws274_c00001{word-spacing:6.501600px;}
.ws9e8_c00001{word-spacing:6.504984px;}
.wsef_c00001{word-spacing:6.508800px;}
.ws44f_c00001{word-spacing:6.516000px;}
.wsd9_c00001{word-spacing:6.517008px;}
.ws3a2_c00001{word-spacing:6.523200px;}
.ws559_c00001{word-spacing:6.529032px;}
.ws4a9_c00001{word-spacing:6.530400px;}
.ws76b_c00001{word-spacing:6.535044px;}
.ws273_c00001{word-spacing:6.537600px;}
.ws4cc_c00001{word-spacing:6.541056px;}
.ws3d5_c00001{word-spacing:6.544800px;}
.ws776_c00001{word-spacing:6.547068px;}
.ws475_c00001{word-spacing:6.552000px;}
.wsb5_c00001{word-spacing:6.553080px;}
.wsfb_c00001{word-spacing:6.559092px;}
.ws1f6_c00001{word-spacing:6.559200px;}
.ws304_c00001{word-spacing:6.566400px;}
.wsb4_c00001{word-spacing:6.571116px;}
.wsbb6_c00001{word-spacing:6.573600px;}
.ws700_c00001{word-spacing:6.577128px;}
.ws8d4_c00001{word-spacing:6.580800px;}
.wsbf_c00001{word-spacing:6.583140px;}
.wsbe5_c00001{word-spacing:6.586704px;}
.wsbb7_c00001{word-spacing:6.588000px;}
.ws7a_c00001{word-spacing:6.589152px;}
.ws24d_c00001{word-spacing:6.595164px;}
.ws358_c00001{word-spacing:6.595200px;}
.wsc0_c00001{word-spacing:6.601176px;}
.wsfc_c00001{word-spacing:6.607188px;}
.ws357_c00001{word-spacing:6.609600px;}
.ws44e_c00001{word-spacing:6.616800px;}
.ws24e_c00001{word-spacing:6.619212px;}
.ws601_c00001{word-spacing:6.645600px;}
.ws974_c00001{word-spacing:6.648012px;}
.wsbb8_c00001{word-spacing:6.660000px;}
.ws493_c00001{word-spacing:6.667200px;}
.ws975_c00001{word-spacing:6.671448px;}
.wsa4f_c00001{word-spacing:6.674400px;}
.ws34e_c00001{word-spacing:6.746400px;}
.wsc5e_c00001{word-spacing:6.760800px;}
.ws973_c00001{word-spacing:6.768000px;}
.wsb52_c00001{word-spacing:6.775200px;}
.ws96b_c00001{word-spacing:6.782400px;}
.ws37c_c00001{word-spacing:6.784596px;}
.wsa0a_c00001{word-spacing:6.789600px;}
.ws2e5_c00001{word-spacing:6.794172px;}
.ws88e_c00001{word-spacing:6.796800px;}
.ws37b_c00001{word-spacing:6.803748px;}
.ws2fe_c00001{word-spacing:6.804000px;}
.ws4e8_c00001{word-spacing:6.808536px;}
.ws192_c00001{word-spacing:6.811200px;}
.ws37a_c00001{word-spacing:6.813324px;}
.wsb7e_c00001{word-spacing:6.818400px;}
.ws482_c00001{word-spacing:6.822900px;}
.ws58a_c00001{word-spacing:6.825600px;}
.ws5fa_c00001{word-spacing:6.832476px;}
.ws195_c00001{word-spacing:6.832800px;}
.ws2e6_c00001{word-spacing:6.837264px;}
.ws2e3_c00001{word-spacing:6.838992px;}
.ws8cc_c00001{word-spacing:6.840000px;}
.ws2e2_c00001{word-spacing:6.842052px;}
.ws99d_c00001{word-spacing:6.842880px;}
.ws494_c00001{word-spacing:6.847200px;}
.ws7bb_c00001{word-spacing:6.847668px;}
.ws34d_c00001{word-spacing:6.854400px;}
.ws284_c00001{word-spacing:6.861600px;}
.ws7bc_c00001{word-spacing:6.865704px;}
.ws338_c00001{word-spacing:6.868800px;}
.ws78_c00001{word-spacing:6.871716px;}
.ws889_c00001{word-spacing:6.876000px;}
.ws7ee_c00001{word-spacing:6.883200px;}
.ws49d_c00001{word-spacing:6.883740px;}
.ws7b_c00001{word-spacing:6.889752px;}
.ws495_c00001{word-spacing:6.890400px;}
.ws832_c00001{word-spacing:6.895764px;}
.ws941_c00001{word-spacing:6.897600px;}
.ws895_c00001{word-spacing:6.901776px;}
.ws2f1_c00001{word-spacing:6.904800px;}
.ws5c6_c00001{word-spacing:6.907788px;}
.ws4ab_c00001{word-spacing:6.912000px;}
.wscc_c00001{word-spacing:6.913800px;}
.ws8e8_c00001{word-spacing:6.919200px;}
.ws899_c00001{word-spacing:6.919812px;}
.ws4cd_c00001{word-spacing:6.925824px;}
.ws41f_c00001{word-spacing:6.926400px;}
.wsb6_c00001{word-spacing:6.931836px;}
.ws2f2_c00001{word-spacing:6.933600px;}
.ws77_c00001{word-spacing:6.937848px;}
.ws505_c00001{word-spacing:6.943860px;}
.ws7c4_c00001{word-spacing:6.948000px;}
.ws71f_c00001{word-spacing:6.949872px;}
.ws504_c00001{word-spacing:6.955884px;}
.ws469_c00001{word-spacing:6.961896px;}
.ws79_c00001{word-spacing:6.967908px;}
.ws50d_c00001{word-spacing:6.973920px;}
.wsc2b_c00001{word-spacing:6.984000px;}
.ws7b5_c00001{word-spacing:6.985944px;}
.ws50c_c00001{word-spacing:6.997968px;}
.ws911_c00001{word-spacing:6.998400px;}
.ws88d_c00001{word-spacing:7.012800px;}
.wsb92_c00001{word-spacing:7.020000px;}
.wsa7f_c00001{word-spacing:7.063200px;}
.wsaf3_c00001{word-spacing:7.099200px;}
.wsc5a_c00001{word-spacing:7.113600px;}
.ws7c5_c00001{word-spacing:7.120800px;}
.wsb93_c00001{word-spacing:7.135200px;}
.ws60f_c00001{word-spacing:7.142400px;}
.ws719_c00001{word-spacing:7.149600px;}
.ws3b5_c00001{word-spacing:7.156800px;}
.ws7f5_c00001{word-spacing:7.164000px;}
.ws691_c00001{word-spacing:7.167636px;}
.ws120_c00001{word-spacing:7.171200px;}
.ws54c_c00001{word-spacing:7.172424px;}
.ws4eb_c00001{word-spacing:7.177212px;}
.ws550_c00001{word-spacing:7.182000px;}
.ws269_c00001{word-spacing:7.185600px;}
.ws690_c00001{word-spacing:7.191576px;}
.ws65a_c00001{word-spacing:7.192800px;}
.ws692_c00001{word-spacing:7.196364px;}
.ws379_c00001{word-spacing:7.196688px;}
.ws34f_c00001{word-spacing:7.200000px;}
.ws67c_c00001{word-spacing:7.201152px;}
.ws418_c00001{word-spacing:7.207200px;}
.ws1e7_c00001{word-spacing:7.214400px;}
.ws15a_c00001{word-spacing:7.221600px;}
.ws299_c00001{word-spacing:7.228800px;}
.ws419_c00001{word-spacing:7.236000px;}
.wse8_c00001{word-spacing:7.238448px;}
.ws5fb_c00001{word-spacing:7.243200px;}
.ws396_c00001{word-spacing:7.244460px;}
.ws4c4_c00001{word-spacing:7.250400px;}
.ws703_c00001{word-spacing:7.250472px;}
.ws3b9_c00001{word-spacing:7.257600px;}
.ws350_c00001{word-spacing:7.264800px;}
.ws397_c00001{word-spacing:7.268508px;}
.ws40f_c00001{word-spacing:7.272000px;}
.ws7b6_c00001{word-spacing:7.274520px;}
.ws268_c00001{word-spacing:7.279200px;}
.wse7_c00001{word-spacing:7.280532px;}
.ws4b2_c00001{word-spacing:7.286400px;}
.ws7b7_c00001{word-spacing:7.286544px;}
.wsba2_c00001{word-spacing:7.292016px;}
.ws85c_c00001{word-spacing:7.300800px;}
.ws60a_c00001{word-spacing:7.304580px;}
.ws15b_c00001{word-spacing:7.308000px;}
.ws11f_c00001{word-spacing:7.315200px;}
.ws879_c00001{word-spacing:7.336800px;}
.ws60b_c00001{word-spacing:7.340652px;}
.wsac7_c00001{word-spacing:7.351200px;}
.wsc4f_c00001{word-spacing:7.358400px;}
.ws59f_c00001{word-spacing:7.372800px;}
.ws591_c00001{word-spacing:7.380000px;}
.ws97b_c00001{word-spacing:7.387200px;}
.wsc11_c00001{word-spacing:7.408800px;}
.wsaf0_c00001{word-spacing:7.473600px;}
.wsb88_c00001{word-spacing:7.480800px;}
.ws8ac_c00001{word-spacing:7.488000px;}
.ws66b_c00001{word-spacing:7.495200px;}
.wsc5_c00001{word-spacing:7.502400px;}
.ws95d_c00001{word-spacing:7.509600px;}
.ws2ab_c00001{word-spacing:7.512372px;}
.ws6af_c00001{word-spacing:7.516800px;}
.wsa49_c00001{word-spacing:7.517160px;}
.ws2aa_c00001{word-spacing:7.521948px;}
.ws3c0_c00001{word-spacing:7.524000px;}
.ws354_c00001{word-spacing:7.531200px;}
.ws448_c00001{word-spacing:7.536312px;}
.wsf0_c00001{word-spacing:7.538400px;}
.ws3e3_c00001{word-spacing:7.541100px;}
.ws13_c00001{word-spacing:7.545600px;}
.wsae_c00001{word-spacing:7.545888px;}
.wsad_c00001{word-spacing:7.550676px;}
.wsd_c00001{word-spacing:7.552800px;}
.ws3e2_c00001{word-spacing:7.555464px;}
.ws20e_c00001{word-spacing:7.560000px;}
.ws35b_c00001{word-spacing:7.560252px;}
.ws310_c00001{word-spacing:7.565040px;}
.wsaf_c00001{word-spacing:7.567200px;}
.ws421_c00001{word-spacing:7.574400px;}
.wsa35_c00001{word-spacing:7.575120px;}
.ws12_c00001{word-spacing:7.581600px;}
.ws939_c00001{word-spacing:7.587144px;}
.ws415_c00001{word-spacing:7.588800px;}
.ws79d_c00001{word-spacing:7.593156px;}
.ws217_c00001{word-spacing:7.596000px;}
.ws819_c00001{word-spacing:7.599168px;}
.ws20d_c00001{word-spacing:7.603200px;}
.ws190_c00001{word-spacing:7.610400px;}
.ws531_c00001{word-spacing:7.611192px;}
.ws992_c00001{word-spacing:7.617204px;}
.ws1a_c00001{word-spacing:7.617600px;}
.ws14c_c00001{word-spacing:7.624800px;}
.ws9b3_c00001{word-spacing:7.629228px;}
.ws3c1_c00001{word-spacing:7.632000px;}
.ws79e_c00001{word-spacing:7.635240px;}
.ws215_c00001{word-spacing:7.639200px;}
.ws7ea_c00001{word-spacing:7.641252px;}
.wsc0e_c00001{word-spacing:7.644672px;}
.ws216_c00001{word-spacing:7.646400px;}
.ws78d_c00001{word-spacing:7.647264px;}
.ws7b9_c00001{word-spacing:7.653276px;}
.wsc_c00001{word-spacing:7.653600px;}
.ws60_c00001{word-spacing:7.660800px;}
.ws8e1_c00001{word-spacing:7.668000px;}
.ws7ba_c00001{word-spacing:7.671312px;}
.ws530_c00001{word-spacing:7.677324px;}
.ws7eb_c00001{word-spacing:7.683336px;}
.ws588_c00001{word-spacing:7.689600px;}
.wsb79_c00001{word-spacing:7.696800px;}
.wsb4f_c00001{word-spacing:7.704000px;}
.wsb6c_c00001{word-spacing:7.711200px;}
.ws62_c00001{word-spacing:7.754400px;}
.ws7da_c00001{word-spacing:7.797600px;}
.wsc0d_c00001{word-spacing:7.812000px;}
.ws61_c00001{word-spacing:7.826400px;}
.ws115_c00001{word-spacing:7.833600px;}
.ws230_c00001{word-spacing:7.866684px;}
.ws750_c00001{word-spacing:7.869600px;}
.ws9a2_c00001{word-spacing:7.876800px;}
.ws84_c00001{word-spacing:7.884000px;}
.ws22e_c00001{word-spacing:7.885836px;}
.ws83_c00001{word-spacing:7.891200px;}
.ws6ff_c00001{word-spacing:7.898400px;}
.ws22f_c00001{word-spacing:7.904988px;}
.ws63_c00001{word-spacing:7.905600px;}
.ws323_c00001{word-spacing:7.909776px;}
.ws76c_c00001{word-spacing:7.912800px;}
.ws22c_c00001{word-spacing:7.915968px;}
.ws18d_c00001{word-spacing:7.920000px;}
.ws22b_c00001{word-spacing:7.924140px;}
.ws114_c00001{word-spacing:7.927200px;}
.ws3b6_c00001{word-spacing:7.934400px;}
.ws930_c00001{word-spacing:7.935840px;}
.ws1a9_c00001{word-spacing:7.941600px;}
.ws416_c00001{word-spacing:7.948800px;}
.ws7b8_c00001{word-spacing:7.953876px;}
.ws64_c00001{word-spacing:7.956000px;}
.ws4a_c00001{word-spacing:7.959888px;}
.ws36a_c00001{word-spacing:7.963200px;}
.wsce_c00001{word-spacing:7.965900px;}
.ws660_c00001{word-spacing:7.970400px;}
.wscd_c00001{word-spacing:7.971912px;}
.wsac8_c00001{word-spacing:7.977600px;}
.ws9f0_c00001{word-spacing:7.977924px;}
.ws803_c00001{word-spacing:7.983936px;}
.ws779_c00001{word-spacing:7.984800px;}
.ws417_c00001{word-spacing:7.992000px;}
.wsa0f_c00001{word-spacing:7.995960px;}
.ws6fe_c00001{word-spacing:7.999200px;}
.ws7cf_c00001{word-spacing:8.001972px;}
.wsa09_c00001{word-spacing:8.006400px;}
.ws652_c00001{word-spacing:8.007984px;}
.ws5e4_c00001{word-spacing:8.026020px;}
.ws40b_c00001{word-spacing:8.028000px;}
.ws7d0_c00001{word-spacing:8.032032px;}
.wsb48_c00001{word-spacing:8.064000px;}
.wsba1_c00001{word-spacing:8.078400px;}
.wsa7a_c00001{word-spacing:8.133372px;}
.wscf_c00001{word-spacing:8.158284px;}
.ws40c_c00001{word-spacing:8.179200px;}
.wsb9a_c00001{word-spacing:8.193600px;}
.ws113_c00001{word-spacing:8.215200px;}
.ws6a1_c00001{word-spacing:8.229600px;}
.ws112_c00001{word-spacing:8.236800px;}
.ws917_c00001{word-spacing:8.244000px;}
.ws912_c00001{word-spacing:8.251200px;}
.wsa45_c00001{word-spacing:8.254512px;}
.ws5f0_c00001{word-spacing:8.258400px;}
.wsa46_c00001{word-spacing:8.259300px;}
.ws84a_c00001{word-spacing:8.264088px;}
.ws5ef_c00001{word-spacing:8.265600px;}
.ws229_c00001{word-spacing:8.272800px;}
.wsb0e_c00001{word-spacing:8.280000px;}
.ws22d_c00001{word-spacing:8.283240px;}
.ws5e9_c00001{word-spacing:8.287200px;}
.ws21f_c00001{word-spacing:8.294400px;}
.ws6a0_c00001{word-spacing:8.301600px;}
.ws83d_c00001{word-spacing:8.308584px;}
.wsa7_c00001{word-spacing:8.308800px;}
.ws85e_c00001{word-spacing:8.314596px;}
.ws1e8_c00001{word-spacing:8.316000px;}
.wseb_c00001{word-spacing:8.320608px;}
.wsbb5_c00001{word-spacing:8.323200px;}
.wsb40_c00001{word-spacing:8.330400px;}
.ws608_c00001{word-spacing:8.332632px;}
.ws3d9_c00001{word-spacing:8.337600px;}
.ws5e0_c00001{word-spacing:8.338644px;}
.ws512_c00001{word-spacing:8.344656px;}
.ws658_c00001{word-spacing:8.344800px;}
.ws651_c00001{word-spacing:8.350668px;}
.ws189_c00001{word-spacing:8.352000px;}
.wsec_c00001{word-spacing:8.356680px;}
.ws3d0_c00001{word-spacing:8.366400px;}
.ws736_c00001{word-spacing:8.368704px;}
.wsb0d_c00001{word-spacing:8.373600px;}
.ws7ca_c00001{word-spacing:8.374716px;}
.ws7c0_c00001{word-spacing:8.380728px;}
.wsc3e_c00001{word-spacing:8.380800px;}
.ws7c9_c00001{word-spacing:8.386740px;}
.wsb16_c00001{word-spacing:8.395200px;}
.ws931_c00001{word-spacing:8.398764px;}
.wsc3d_c00001{word-spacing:8.412552px;}
.ws220_c00001{word-spacing:8.416800px;}
.wsbe7_c00001{word-spacing:8.424000px;}
.wsa78_c00001{word-spacing:8.431200px;}
.wsc45_c00001{word-spacing:8.488800px;}
.ws916_c00001{word-spacing:8.496000px;}
.wsb73_c00001{word-spacing:8.546400px;}
.wsb3e_c00001{word-spacing:8.560800px;}
.ws3ae_c00001{word-spacing:8.568000px;}
.ws2ee_c00001{word-spacing:8.575200px;}
.wsb26_c00001{word-spacing:8.589600px;}
.ws826_c00001{word-spacing:8.596800px;}
.wsb3f_c00001{word-spacing:8.604000px;}
.wsad3_c00001{word-spacing:8.611200px;}
.wsa8f_c00001{word-spacing:8.618400px;}
.wsa27_c00001{word-spacing:8.625600px;}
.ws41a_c00001{word-spacing:8.632800px;}
.ws8c1_c00001{word-spacing:8.640000px;}
.wsf1_c00001{word-spacing:8.647200px;}
.ws16f_c00001{word-spacing:8.654400px;}
.ws2ed_c00001{word-spacing:8.661600px;}
.ws14d_c00001{word-spacing:8.668800px;}
.ws132_c00001{word-spacing:8.669304px;}
.ws14e_c00001{word-spacing:8.676000px;}
.ws16e_c00001{word-spacing:8.683200px;}
.ws590_c00001{word-spacing:8.690400px;}
.ws836_c00001{word-spacing:8.693352px;}
.ws41b_c00001{word-spacing:8.697600px;}
.ws312_c00001{word-spacing:8.699364px;}
.ws53e_c00001{word-spacing:8.704800px;}
.ws131_c00001{word-spacing:8.711388px;}
.ws828_c00001{word-spacing:8.712000px;}
.ws775_c00001{word-spacing:8.717400px;}
.ws3af_c00001{word-spacing:8.719200px;}
.wsad4_c00001{word-spacing:8.726400px;}
.ws9e9_c00001{word-spacing:8.729424px;}
.wsb24_c00001{word-spacing:8.740800px;}
.ws61c_c00001{word-spacing:8.741448px;}
.ws976_c00001{word-spacing:8.748000px;}
.ws970_c00001{word-spacing:8.755200px;}
.wsb72_c00001{word-spacing:8.762400px;}
.wsb71_c00001{word-spacing:8.769600px;}
.ws313_c00001{word-spacing:8.777520px;}
.wsb25_c00001{word-spacing:8.798400px;}
.wsb81_c00001{word-spacing:8.848800px;}
.ws9a8_c00001{word-spacing:8.849664px;}
.wsb82_c00001{word-spacing:8.877600px;}
.wsb89_c00001{word-spacing:8.892000px;}
.wsc2c_c00001{word-spacing:8.935200px;}
.ws5be_c00001{word-spacing:8.942400px;}
.ws235_c00001{word-spacing:8.949600px;}
.ws7af_c00001{word-spacing:8.953560px;}
.wsaf8_c00001{word-spacing:8.956800px;}
.wsa18_c00001{word-spacing:8.964000px;}
.ws7ae_c00001{word-spacing:8.967924px;}
.ws483_c00001{word-spacing:8.972712px;}
.ws19b_c00001{word-spacing:8.978400px;}
.ws20c_c00001{word-spacing:8.985600px;}
.ws20b_c00001{word-spacing:8.992800px;}
.ws544_c00001{word-spacing:8.996652px;}
.ws87_c00001{word-spacing:9.000000px;}
.ws7ac_c00001{word-spacing:9.001440px;}
.ws270_c00001{word-spacing:9.007200px;}
.ws665_c00001{word-spacing:9.014400px;}
.ws368_c00001{word-spacing:9.021600px;}
.ws5aa_c00001{word-spacing:9.024012px;}
.ws19a_c00001{word-spacing:9.028800px;}
.ws321_c00001{word-spacing:9.030024px;}
.ws9ab_c00001{word-spacing:9.036036px;}
.wsa1e_c00001{word-spacing:9.043200px;}
.ws7ad_c00001{word-spacing:9.044532px;}
.ws12e_c00001{word-spacing:9.048060px;}
.ws809_c00001{word-spacing:9.050400px;}
.ws788_c00001{word-spacing:9.054072px;}
.ws5bc_c00001{word-spacing:9.057600px;}
.ws88_c00001{word-spacing:9.064800px;}
.ws55c_c00001{word-spacing:9.066096px;}
.ws584_c00001{word-spacing:9.072000px;}
.wsa24_c00001{word-spacing:9.072108px;}
.ws9a1_c00001{word-spacing:9.078120px;}
.ws787_c00001{word-spacing:9.084132px;}
.ws3e5_c00001{word-spacing:9.086400px;}
.ws9a7_c00001{word-spacing:9.090144px;}
.ws5bd_c00001{word-spacing:9.093600px;}
.ws785_c00001{word-spacing:9.096156px;}
.ws5c5_c00001{word-spacing:9.100800px;}
.wsa01_c00001{word-spacing:9.108180px;}
.ws61b_c00001{word-spacing:9.114192px;}
.wsbae_c00001{word-spacing:9.115200px;}
.ws786_c00001{word-spacing:9.120204px;}
.ws500_c00001{word-spacing:9.126216px;}
.ws4ff_c00001{word-spacing:9.138240px;}
.wsa23_c00001{word-spacing:9.144252px;}
.ws583_c00001{word-spacing:9.151200px;}
.ws9a9_c00001{word-spacing:9.168300px;}
.ws452_c00001{word-spacing:9.172800px;}
.wsc31_c00001{word-spacing:9.288000px;}
.wsb35_c00001{word-spacing:9.295200px;}
.ws947_c00001{word-spacing:9.302400px;}
.wsa72_c00001{word-spacing:9.309600px;}
.wsaa8_c00001{word-spacing:9.324000px;}
.wsa71_c00001{word-spacing:9.331200px;}
.ws5f2_c00001{word-spacing:9.338400px;}
.ws53a_c00001{word-spacing:9.345600px;}
.ws499_c00001{word-spacing:9.350964px;}
.ws4f6_c00001{word-spacing:9.352800px;}
.ws804_c00001{word-spacing:9.354672px;}
.ws498_c00001{word-spacing:9.355752px;}
.wsf9_c00001{word-spacing:9.360000px;}
.ws7b0_c00001{word-spacing:9.360540px;}
.ws884_c00001{word-spacing:9.367200px;}
.wsae1_c00001{word-spacing:9.372708px;}
.wsc6_c00001{word-spacing:9.374400px;}
.wsf7_c00001{word-spacing:9.381600px;}
.ws53b_c00001{word-spacing:9.388800px;}
.ws34c_c00001{word-spacing:9.403200px;}
.ws795_c00001{word-spacing:9.408780px;}
.wsa64_c00001{word-spacing:9.410400px;}
.ws12d_c00001{word-spacing:9.414792px;}
.ws2b9_c00001{word-spacing:9.417600px;}
.ws34b_c00001{word-spacing:9.424800px;}
.wsae2_c00001{word-spacing:9.426816px;}
.ws2ba_c00001{word-spacing:9.432000px;}
.wsae6_c00001{word-spacing:9.439200px;}
.ws2c4_c00001{word-spacing:9.453600px;}
.ws7e5_c00001{word-spacing:9.462888px;}
.wsf8_c00001{word-spacing:9.468000px;}
.wsb23_c00001{word-spacing:9.496800px;}
.ws8a4_c00001{word-spacing:9.511200px;}
.wsc83_c00001{word-spacing:9.547200px;}
.ws90f_c00001{word-spacing:9.573876px;}
.wsbef_c00001{word-spacing:9.576000px;}
.ws805_c00001{word-spacing:9.589140px;}
.wsc30_c00001{word-spacing:9.612000px;}
.ws489_c00001{word-spacing:9.648000px;}
.ws2f3_c00001{word-spacing:9.662400px;}
.wsbe8_c00001{word-spacing:9.669600px;}
.ws8a7_c00001{word-spacing:9.676800px;}
.ws821_c00001{word-spacing:9.684000px;}
.ws744_c00001{word-spacing:9.691200px;}
.ws8a3_c00001{word-spacing:9.698400px;}
.ws48a_c00001{word-spacing:9.705600px;}
.ws2df_c00001{word-spacing:9.712800px;}
.ws2c5_c00001{word-spacing:9.720000px;}
.ws1c3_c00001{word-spacing:9.727200px;}
.ws81f_c00001{word-spacing:9.734400px;}
.ws1b5_c00001{word-spacing:9.741600px;}
.ws3fd_c00001{word-spacing:9.745452px;}
.ws4da_c00001{word-spacing:9.748800px;}
.ws963_c00001{word-spacing:9.756000px;}
.ws525_c00001{word-spacing:9.757476px;}
.ws3f2_c00001{word-spacing:9.763200px;}
.wsadd_c00001{word-spacing:9.763488px;}
.ws712_c00001{word-spacing:9.769500px;}
.wsb5a_c00001{word-spacing:9.770400px;}
.ws7e4_c00001{word-spacing:9.775512px;}
.ws1dc_c00001{word-spacing:9.777600px;}
.ws2c6_c00001{word-spacing:9.784800px;}
.ws593_c00001{word-spacing:9.787536px;}
.ws2f5_c00001{word-spacing:9.799200px;}
.ws3fe_c00001{word-spacing:9.799560px;}
.wsade_c00001{word-spacing:9.805572px;}
.wsb13_c00001{word-spacing:9.806400px;}
.ws522_c00001{word-spacing:9.813600px;}
.ws1dd_c00001{word-spacing:9.820800px;}
.wsa7d_c00001{word-spacing:9.828000px;}
.ws64b_c00001{word-spacing:9.835200px;}
.wsb10_c00001{word-spacing:9.849600px;}
.ws84f_c00001{word-spacing:9.853668px;}
.wsbec_c00001{word-spacing:9.885600px;}
.ws820_c00001{word-spacing:9.936000px;}
.ws90e_c00001{word-spacing:9.972000px;}
.wsb31_c00001{word-spacing:9.993600px;}
.ws1a1_c00001{word-spacing:10.008000px;}
.wsc7b_c00001{word-spacing:10.015200px;}
.ws74f_c00001{word-spacing:10.022400px;}
.ws615_c00001{word-spacing:10.029600px;}
.ws759_c00001{word-spacing:10.030860px;}
.ws600_c00001{word-spacing:10.036800px;}
.wsb9c_c00001{word-spacing:10.044000px;}
.ws8bd_c00001{word-spacing:10.051200px;}
.ws75a_c00001{word-spacing:10.054800px;}
.ws46d_c00001{word-spacing:10.058400px;}
.ws374_c00001{word-spacing:10.059588px;}
.ws573_c00001{word-spacing:10.065600px;}
.ws88c_c00001{word-spacing:10.072800px;}
.ws373_c00001{word-spacing:10.078740px;}
.ws1d4_c00001{word-spacing:10.080000px;}
.ws1d5_c00001{word-spacing:10.087200px;}
.ws156_c00001{word-spacing:10.094400px;}
.ws4d6_c00001{word-spacing:10.101600px;}
.ws731_c00001{word-spacing:10.106172px;}
.wsa0_c00001{word-spacing:10.108800px;}
.ws732_c00001{word-spacing:10.112184px;}
.ws236_c00001{word-spacing:10.116000px;}
.ws810_c00001{word-spacing:10.123200px;}
.ws4a6_c00001{word-spacing:10.130220px;}
.ws8c3_c00001{word-spacing:10.130400px;}
.ws9f9_c00001{word-spacing:10.136232px;}
.wsbc2_c00001{word-spacing:10.137600px;}
.ws9b2_c00001{word-spacing:10.142244px;}
.ws430_c00001{word-spacing:10.144800px;}
.ws9f8_c00001{word-spacing:10.148256px;}
.ws157_c00001{word-spacing:10.152000px;}
.ws650_c00001{word-spacing:10.154268px;}
.ws6b2_c00001{word-spacing:10.159200px;}
.ws7d3_c00001{word-spacing:10.160280px;}
.ws64e_c00001{word-spacing:10.166292px;}
.ws727_c00001{word-spacing:10.166400px;}
.ws7d2_c00001{word-spacing:10.172304px;}
.ws1a0_c00001{word-spacing:10.173600px;}
.ws850_c00001{word-spacing:10.178316px;}
.ws7d4_c00001{word-spacing:10.184328px;}
.wsb2b_c00001{word-spacing:10.188000px;}
.ws64f_c00001{word-spacing:10.190340px;}
.ws592_c00001{word-spacing:10.196352px;}
.ws1e3_c00001{word-spacing:10.202400px;}
.ws9cf_c00001{word-spacing:10.209600px;}
.wsc7f_c00001{word-spacing:10.231200px;}
.ws606_c00001{word-spacing:10.303200px;}
.wsb70_c00001{word-spacing:10.346400px;}
.wsb87_c00001{word-spacing:10.353600px;}
.ws4d5_c00001{word-spacing:10.375200px;}
.wsaa2_c00001{word-spacing:10.382400px;}
.ws88a_c00001{word-spacing:10.389600px;}
.ws427_c00001{word-spacing:10.404000px;}
.ws621_c00001{word-spacing:10.409112px;}
.ws88b_c00001{word-spacing:10.411200px;}
.ws622_c00001{word-spacing:10.423476px;}
.ws950_c00001{word-spacing:10.425600px;}
.ws70f_c00001{word-spacing:10.432800px;}
.ws428_c00001{word-spacing:10.440000px;}
.ws841_c00001{word-spacing:10.447200px;}
.ws272_c00001{word-spacing:10.454400px;}
.ws2f0_c00001{word-spacing:10.461600px;}
.ws3ba_c00001{word-spacing:10.468800px;}
.ws210_c00001{word-spacing:10.476000px;}
.ws1a5_c00001{word-spacing:10.483200px;}
.ws5d5_c00001{word-spacing:10.484928px;}
.ws89f_c00001{word-spacing:10.490400px;}
.ws897_c00001{word-spacing:10.490940px;}
.ws898_c00001{word-spacing:10.496952px;}
.ws2ef_c00001{word-spacing:10.497600px;}
.ws98e_c00001{word-spacing:10.502964px;}
.ws946_c00001{word-spacing:10.504800px;}
.ws945_c00001{word-spacing:10.512000px;}
.wsaa1_c00001{word-spacing:10.519200px;}
.ws9ac_c00001{word-spacing:10.521000px;}
.wsb6f_c00001{word-spacing:10.526400px;}
.ws951_c00001{word-spacing:10.533600px;}
.ws426_c00001{word-spacing:10.540800px;}
.ws9ad_c00001{word-spacing:10.545048px;}
.ws7db_c00001{word-spacing:10.548000px;}
.ws70e_c00001{word-spacing:10.551060px;}
.ws89e_c00001{word-spacing:10.555200px;}
.ws98f_c00001{word-spacing:10.557072px;}
.ws878_c00001{word-spacing:10.569600px;}
.wsa14_c00001{word-spacing:10.584000px;}
.ws7dc_c00001{word-spacing:10.641600px;}
.wsc88_c00001{word-spacing:10.663200px;}
.wsc79_c00001{word-spacing:10.670400px;}
.wsc33_c00001{word-spacing:10.692000px;}
.wsc51_c00001{word-spacing:10.699200px;}
.ws3df_c00001{word-spacing:10.706400px;}
.wsc65_c00001{word-spacing:10.713600px;}
.ws2c7_c00001{word-spacing:10.728000px;}
.wsa28_c00001{word-spacing:10.742400px;}
.ws348_c00001{word-spacing:10.756800px;}
.ws562_c00001{word-spacing:10.771200px;}
.ws346_c00001{word-spacing:10.778400px;}
.ws885_c00001{word-spacing:10.785600px;}
.ws708_c00001{word-spacing:10.792800px;}
.ws208_c00001{word-spacing:10.800000px;}
.ws2b6_c00001{word-spacing:10.807200px;}
.ws38d_c00001{word-spacing:10.814400px;}
.ws9f1_c00001{word-spacing:10.815588px;}
.ws207_c00001{word-spacing:10.821600px;}
.ws57_c00001{word-spacing:10.828800px;}
.ws326_c00001{word-spacing:10.833624px;}
.ws3de_c00001{word-spacing:10.836000px;}
.wsd2_c00001{word-spacing:10.839636px;}
.ws959_c00001{word-spacing:10.843200px;}
.ws7d7_c00001{word-spacing:10.845648px;}
.ws667_c00001{word-spacing:10.850400px;}
.ws935_c00001{word-spacing:10.851660px;}
.ws82b_c00001{word-spacing:10.857600px;}
.ws715_c00001{word-spacing:10.863684px;}
.ws2ad_c00001{word-spacing:10.864800px;}
.wsa3d_c00001{word-spacing:10.872000px;}
.wsc12_c00001{word-spacing:10.875456px;}
.ws839_c00001{word-spacing:10.881720px;}
.ws26d_c00001{word-spacing:10.886400px;}
.wsb45_c00001{word-spacing:10.893600px;}
.ws325_c00001{word-spacing:10.893744px;}
.ws50_c00001{word-spacing:10.899756px;}
.wscb_c00001{word-spacing:10.905768px;}
.wsc78_c00001{word-spacing:10.908000px;}
.ws4f_c00001{word-spacing:10.911780px;}
.ws859_c00001{word-spacing:10.917792px;}
.ws7d6_c00001{word-spacing:10.929816px;}
.ws726_c00001{word-spacing:10.941840px;}
.ws82a_c00001{word-spacing:10.951200px;}
.ws9f2_c00001{word-spacing:10.965888px;}
.ws2ac_c00001{word-spacing:10.987200px;}
.wsb99_c00001{word-spacing:11.044800px;}
.ws998_c00001{word-spacing:11.052000px;}
.wsb86_c00001{word-spacing:11.059200px;}
.ws659_c00001{word-spacing:11.088000px;}
.ws704_c00001{word-spacing:11.095200px;}
.ws5a_c00001{word-spacing:11.102400px;}
.ws194_c00001{word-spacing:11.109600px;}
.wsb5f_c00001{word-spacing:11.116800px;}
.wsc2a_c00001{word-spacing:11.124000px;}
.ws5e6_c00001{word-spacing:11.127312px;}
.ws5db_c00001{word-spacing:11.131200px;}
.ws5e5_c00001{word-spacing:11.132100px;}
.ws75f_c00001{word-spacing:11.138400px;}
.ws960_c00001{word-spacing:11.145600px;}
.wsb06_c00001{word-spacing:11.152800px;}
.ws58b_c00001{word-spacing:11.160000px;}
.ws243_c00001{word-spacing:11.167200px;}
.ws58c_c00001{word-spacing:11.174400px;}
.ws81d_c00001{word-spacing:11.176308px;}
.ws193_c00001{word-spacing:11.181600px;}
.ws244_c00001{word-spacing:11.188800px;}
.ws383_c00001{word-spacing:11.196000px;}
.ws384_c00001{word-spacing:11.200356px;}
.ws964_c00001{word-spacing:11.203200px;}
.ws5b9_c00001{word-spacing:11.206368px;}
.wsa87_c00001{word-spacing:11.210400px;}
.ws933_c00001{word-spacing:11.212380px;}
.ws433_c00001{word-spacing:11.217600px;}
.ws130_c00001{word-spacing:11.218392px;}
.ws8f7_c00001{word-spacing:11.224800px;}
.ws385_c00001{word-spacing:11.230416px;}
.ws58d_c00001{word-spacing:11.232000px;}
.ws390_c00001{word-spacing:11.236428px;}
.ws995_c00001{word-spacing:11.239200px;}
.ws8_c00001{word-spacing:11.242440px;}
.ws59_c00001{word-spacing:11.246400px;}
.ws7e1_c00001{word-spacing:11.248452px;}
.ws848_c00001{word-spacing:11.253600px;}
.ws12f_c00001{word-spacing:11.254464px;}
.ws7e2_c00001{word-spacing:11.260476px;}
.ws760_c00001{word-spacing:11.260800px;}
.ws5b7_c00001{word-spacing:11.266488px;}
.wsc29_c00001{word-spacing:11.268000px;}
.ws52f_c00001{word-spacing:11.278512px;}
.ws432_c00001{word-spacing:11.282400px;}
.ws5b8_c00001{word-spacing:11.290536px;}
.ws8e7_c00001{word-spacing:11.347200px;}
.ws8a0_c00001{word-spacing:11.390400px;}
.wsaa7_c00001{word-spacing:11.426400px;}
.wsb1b_c00001{word-spacing:11.433600px;}
.ws761_c00001{word-spacing:11.469600px;}
.ws84c_c00001{word-spacing:11.472048px;}
.ws5ba_c00001{word-spacing:11.484000px;}
.ws84b_c00001{word-spacing:11.491200px;}
.ws84d_c00001{word-spacing:11.495988px;}
.ws87f_c00001{word-spacing:11.498400px;}
.wsc4_c00001{word-spacing:11.505600px;}
.ws3be_c00001{word-spacing:11.512800px;}
.ws65_c00001{word-spacing:11.520000px;}
.wsa32_c00001{word-spacing:11.525004px;}
.ws238_c00001{word-spacing:11.527200px;}
.ws237_c00001{word-spacing:11.534400px;}
.wsa03_c00001{word-spacing:11.537028px;}
.ws5bb_c00001{word-spacing:11.541600px;}
.ws3bf_c00001{word-spacing:11.548800px;}
.ws82f_c00001{word-spacing:11.555064px;}
.ws42b_c00001{word-spacing:11.556000px;}
.wsa51_c00001{word-spacing:11.563200px;}
.ws8c_c00001{word-spacing:11.567088px;}
.ws66_c00001{word-spacing:11.570400px;}
.ws87a_c00001{word-spacing:11.577600px;}
.wsa33_c00001{word-spacing:11.579112px;}
.ws27f_c00001{word-spacing:11.584800px;}
.ws928_c00001{word-spacing:11.592000px;}
.wsbab_c00001{word-spacing:11.592144px;}
.ws3bd_c00001{word-spacing:11.599200px;}
.wsa1c_c00001{word-spacing:11.609172px;}
.wsa02_c00001{word-spacing:11.615184px;}
.ws8d_c00001{word-spacing:11.633220px;}
.wsbad_c00001{word-spacing:11.635200px;}
.ws582_c00001{word-spacing:11.649600px;}
.wsb47_c00001{word-spacing:11.656800px;}
.ws934_c00001{word-spacing:11.657268px;}
.wsa1d_c00001{word-spacing:11.663280px;}
.wsbac_c00001{word-spacing:11.721600px;}
.ws92a_c00001{word-spacing:11.736000px;}
.ws880_c00001{word-spacing:11.764800px;}
.wsb33_c00001{word-spacing:11.808000px;}
.ws625_c00001{word-spacing:11.815200px;}
.ws91f_c00001{word-spacing:11.822400px;}
.ws65d_c00001{word-spacing:11.829600px;}
.wsb98_c00001{word-spacing:11.836800px;}
.ws9ea_c00001{word-spacing:11.844000px;}
.ws62b_c00001{word-spacing:11.858400px;}
.ws66a_c00001{word-spacing:11.865600px;}
.wsab3_c00001{word-spacing:11.872800px;}
.ws72a_c00001{word-spacing:11.880000px;}
.ws8a8_c00001{word-spacing:11.887200px;}
.ws4a5_c00001{word-spacing:11.891736px;}
.ws1c_c00001{word-spacing:11.894400px;}
.ws729_c00001{word-spacing:11.901600px;}
.ws808_c00001{word-spacing:11.908800px;}
.ws5cf_c00001{word-spacing:11.909772px;}
.ws2b4_c00001{word-spacing:11.916000px;}
.ws5d0_c00001{word-spacing:11.921796px;}
.ws626_c00001{word-spacing:11.923200px;}
.ws9f5_c00001{word-spacing:11.927808px;}
.wsb97_c00001{word-spacing:11.930400px;}
.ws561_c00001{word-spacing:11.937600px;}
.ws554_c00001{word-spacing:11.939832px;}
.ws9d7_c00001{word-spacing:11.944800px;}
.ws69_c00001{word-spacing:11.945844px;}
.ws553_c00001{word-spacing:11.951856px;}
.ws308_c00001{word-spacing:11.952000px;}
.ws5c7_c00001{word-spacing:11.957868px;}
.ws560_c00001{word-spacing:11.959200px;}
.ws5c8_c00001{word-spacing:11.963880px;}
.ws8c2_c00001{word-spacing:11.966400px;}
.ws9b4_c00001{word-spacing:11.969892px;}
.ws8db_c00001{word-spacing:11.973600px;}
.ws5e2_c00001{word-spacing:11.975904px;}
.ws9f7_c00001{word-spacing:11.981916px;}
.ws309_c00001{word-spacing:11.988000px;}
.ws8dc_c00001{word-spacing:11.995200px;}
.ws5e3_c00001{word-spacing:11.999952px;}
.ws62c_c00001{word-spacing:12.002400px;}
.ws95c_c00001{word-spacing:12.009600px;}
.wsa93_c00001{word-spacing:12.031200px;}
.wsb8b_c00001{word-spacing:12.081600px;}
.wsc0b_c00001{word-spacing:12.117600px;}
.wsb8a_c00001{word-spacing:12.132000px;}
.wsc0c_c00001{word-spacing:12.139200px;}
.wsa79_c00001{word-spacing:12.168000px;}
.ws414_c00001{word-spacing:12.189600px;}
.wsa69_c00001{word-spacing:12.204000px;}
.ws915_c00001{word-spacing:12.211200px;}
.ws4db_c00001{word-spacing:12.218400px;}
.wsbc9_c00001{word-spacing:12.225600px;}
.ws534_c00001{word-spacing:12.232800px;}
.ws8bb_c00001{word-spacing:12.240000px;}
.ws11a_c00001{word-spacing:12.247200px;}
.ws42e_c00001{word-spacing:12.254400px;}
.ws413_c00001{word-spacing:12.261600px;}
.ws65e_c00001{word-spacing:12.268800px;}
.ws42c_c00001{word-spacing:12.276000px;}
.ws9dd_c00001{word-spacing:12.282516px;}
.ws95e_c00001{word-spacing:12.283200px;}
.ws752_c00001{word-spacing:12.290400px;}
.ws4a3_c00001{word-spacing:12.300552px;}
.ws205_c00001{word-spacing:12.304800px;}
.ws46a_c00001{word-spacing:12.306564px;}
.ws713_c00001{word-spacing:12.318588px;}
.ws27d_c00001{word-spacing:12.319200px;}
.ws9de_c00001{word-spacing:12.330612px;}
.ws206_c00001{word-spacing:12.333600px;}
.ws4a4_c00001{word-spacing:12.336624px;}
.wsaac_c00001{word-spacing:12.340800px;}
.ws835_c00001{word-spacing:12.354660px;}
.ws46b_c00001{word-spacing:12.360672px;}
.ws753_c00001{word-spacing:12.369600px;}
.ws672_c00001{word-spacing:12.398400px;}
.wsb2e_c00001{word-spacing:12.405600px;}
.wsc26_c00001{word-spacing:12.412800px;}
.ws938_c00001{word-spacing:12.420000px;}
.ws9d2_c00001{word-spacing:12.434400px;}
.ws754_c00001{word-spacing:12.484800px;}
.ws539_c00001{word-spacing:12.542400px;}
.ws873_c00001{word-spacing:12.549600px;}
.wsb85_c00001{word-spacing:12.556800px;}
.wsdc_c00001{word-spacing:12.564000px;}
.wsc0f_c00001{word-spacing:12.578400px;}
.wsdd_c00001{word-spacing:12.585600px;}
.ws180_c00001{word-spacing:12.592800px;}
.ws181_c00001{word-spacing:12.600000px;}
.wsf2_c00001{word-spacing:12.607200px;}
.ws82e_c00001{word-spacing:12.614400px;}
.ws5d9_c00001{word-spacing:12.621600px;}
.ws425_c00001{word-spacing:12.628800px;}
.ws3f5_c00001{word-spacing:12.636000px;}
.ws30a_c00001{word-spacing:12.643200px;}
.ws603_c00001{word-spacing:12.650400px;}
.ws9aa_c00001{word-spacing:12.655260px;}
.wsf3_c00001{word-spacing:12.657600px;}
.ws3f6_c00001{word-spacing:12.672000px;}
.ws9a_c00001{word-spacing:12.673296px;}
.ws604_c00001{word-spacing:12.679200px;}
.ws722_c00001{word-spacing:12.679308px;}
.ws99_c00001{word-spacing:12.685320px;}
.ws962_c00001{word-spacing:12.686400px;}
.ws830_c00001{word-spacing:12.691332px;}
.ws182_c00001{word-spacing:12.708000px;}
.ws721_c00001{word-spacing:12.721392px;}
.ws714_c00001{word-spacing:12.727404px;}
.wsaaa_c00001{word-spacing:12.758400px;}
.wsbcb_c00001{word-spacing:12.772800px;}
.ws77d_c00001{word-spacing:12.837600px;}
.ws8b1_c00001{word-spacing:12.866400px;}
.wsbcc_c00001{word-spacing:12.873600px;}
.ws95b_c00001{word-spacing:12.895200px;}
.ws906_c00001{word-spacing:12.902400px;}
.ws90b_c00001{word-spacing:12.916800px;}
.wsb57_c00001{word-spacing:12.924000px;}
.ws518_c00001{word-spacing:12.938400px;}
.ws73f_c00001{word-spacing:12.945600px;}
.ws152_c00001{word-spacing:12.952800px;}
.ws151_c00001{word-spacing:12.960000px;}
.wsb53_c00001{word-spacing:12.967200px;}
.ws823_c00001{word-spacing:12.974400px;}
.ws330_c00001{word-spacing:12.981600px;}
.wsa95_c00001{word-spacing:12.988800px;}
.ws154_c00001{word-spacing:12.996000px;}
.ws519_c00001{word-spacing:13.003200px;}
.ws8b0_c00001{word-spacing:13.010400px;}
.ws153_c00001{word-spacing:13.017600px;}
.ws89d_c00001{word-spacing:13.024800px;}
.ws89c_c00001{word-spacing:13.032000px;}
.wsb3_c00001{word-spacing:13.034016px;}
.ws90a_c00001{word-spacing:13.039200px;}
.wsb80_c00001{word-spacing:13.046400px;}
.wsb2_c00001{word-spacing:13.052052px;}
.wsb4d_c00001{word-spacing:13.053600px;}
.ws735_c00001{word-spacing:13.058064px;}
.wsbf6_c00001{word-spacing:13.068000px;}
.ws1be_c00001{word-spacing:13.096800px;}
.ws59a_c00001{word-spacing:13.118400px;}
.ws1bd_c00001{word-spacing:13.168800px;}
.ws914_c00001{word-spacing:13.204800px;}
.ws69d_c00001{word-spacing:13.226400px;}
.wsc1b_c00001{word-spacing:13.262400px;}
.wsb11_c00001{word-spacing:13.269600px;}
.wsbd3_c00001{word-spacing:13.276800px;}
.ws76f_c00001{word-spacing:13.298400px;}
.ws214_c00001{word-spacing:13.305600px;}
.ws76e_c00001{word-spacing:13.312800px;}
.wsbd4_c00001{word-spacing:13.320000px;}
.ws69e_c00001{word-spacing:13.327200px;}
.ws283_c00001{word-spacing:13.334400px;}
.wsa94_c00001{word-spacing:13.341600px;}
.ws738_c00001{word-spacing:13.346640px;}
.ws2c3_c00001{word-spacing:13.348800px;}
.ws51e_c00001{word-spacing:13.356000px;}
.wsa9d_c00001{word-spacing:13.370400px;}
.ws7fd_c00001{word-spacing:13.377600px;}
.wsa9c_c00001{word-spacing:13.384800px;}
.ws8cb_c00001{word-spacing:13.392000px;}
.ws737_c00001{word-spacing:13.412772px;}
.ws8ab_c00001{word-spacing:13.420800px;}
.ws8aa_c00001{word-spacing:13.435200px;}
.wsbd5_c00001{word-spacing:13.478400px;}
.wsc2d_c00001{word-spacing:13.564800px;}
.ws97a_c00001{word-spacing:13.579200px;}
.ws617_c00001{word-spacing:13.586400px;}
.ws5f5_c00001{word-spacing:13.615200px;}
.ws4c0_c00001{word-spacing:13.622400px;}
.wsbe0_c00001{word-spacing:13.629600px;}
.ws1b7_c00001{word-spacing:13.636800px;}
.wsad5_c00001{word-spacing:13.644000px;}
.ws27a_c00001{word-spacing:13.651200px;}
.ws96e_c00001{word-spacing:13.658400px;}
.ws20f_c00001{word-spacing:13.665600px;}
.ws437_c00001{word-spacing:13.672800px;}
.ws93d_c00001{word-spacing:13.680000px;}
.ws4bf_c00001{word-spacing:13.687200px;}
.ws4aa_c00001{word-spacing:13.694400px;}
.ws334_c00001{word-spacing:13.701600px;}
.ws5f4_c00001{word-spacing:13.708800px;}
.ws894_c00001{word-spacing:13.713372px;}
.ws279_c00001{word-spacing:13.716000px;}
.ws903_c00001{word-spacing:13.723200px;}
.ws597_c00001{word-spacing:13.730400px;}
.ws892_c00001{word-spacing:13.731408px;}
.wsa6d_c00001{word-spacing:13.737600px;}
.ws675_c00001{word-spacing:13.749444px;}
.ws1b6_c00001{word-spacing:13.752000px;}
.ws436_c00001{word-spacing:13.759200px;}
.ws400_c00001{word-spacing:13.761468px;}
.wsbde_c00001{word-spacing:13.764960px;}
.ws8a9_c00001{word-spacing:13.766400px;}
.ws7dd_c00001{word-spacing:13.773600px;}
.ws676_c00001{word-spacing:13.785516px;}
.ws893_c00001{word-spacing:13.803552px;}
.ws77a_c00001{word-spacing:13.809600px;}
.ws335_c00001{word-spacing:13.816800px;}
.wsbdf_c00001{word-spacing:13.860000px;}
.ws526_c00001{word-spacing:13.917600px;}
.wsbf9_c00001{word-spacing:13.982400px;}
.wsc01_c00001{word-spacing:13.996800px;}
.wsaba_c00001{word-spacing:14.004000px;}
.ws8f0_c00001{word-spacing:14.009688px;}
.wsbf2_c00001{word-spacing:14.025600px;}
.ws454_c00001{word-spacing:14.032800px;}
.ws23b_c00001{word-spacing:14.040000px;}
.ws3d7_c00001{word-spacing:14.047200px;}
.ws5fe_c00001{word-spacing:14.061600px;}
.ws3a4_c00001{word-spacing:14.068800px;}
.wsabb_c00001{word-spacing:14.076000px;}
.ws455_c00001{word-spacing:14.083200px;}
.ws9ae_c00001{word-spacing:14.090400px;}
.ws4fb_c00001{word-spacing:14.092128px;}
.ws56d_c00001{word-spacing:14.097600px;}
.ws5cd_c00001{word-spacing:14.098140px;}
.ws5cc_c00001{word-spacing:14.110164px;}
.ws5ff_c00001{word-spacing:14.112000px;}
.wsb32_c00001{word-spacing:14.119200px;}
.ws319_c00001{word-spacing:14.122188px;}
.ws3d8_c00001{word-spacing:14.126400px;}
.ws838_c00001{word-spacing:14.152248px;}
.ws5cb_c00001{word-spacing:14.158260px;}
.wsb39_c00001{word-spacing:14.169600px;}
.ws23c_c00001{word-spacing:14.191200px;}
.wsbf3_c00001{word-spacing:14.212800px;}
.ws633_c00001{word-spacing:14.335200px;}
.wsbc1_c00001{word-spacing:14.349600px;}
.wsbe3_c00001{word-spacing:14.378400px;}
.wsa9a_c00001{word-spacing:14.385600px;}
.ws52a_c00001{word-spacing:14.392800px;}
.ws178_c00001{word-spacing:14.407200px;}
.ws624_c00001{word-spacing:14.414400px;}
.ws5b_c00001{word-spacing:14.421600px;}
.wsa0b_c00001{word-spacing:14.422788px;}
.ws148_c00001{word-spacing:14.428800px;}
.ws883_c00001{word-spacing:14.436000px;}
.ws17f_c00001{word-spacing:14.443200px;}
.ws179_c00001{word-spacing:14.457600px;}
.ws58f_c00001{word-spacing:14.464800px;}
.ws125_c00001{word-spacing:14.472000px;}
.wsb2c_c00001{word-spacing:14.479200px;}
.ws147_c00001{word-spacing:14.486400px;}
.ws52b_c00001{word-spacing:14.493600px;}
.ws58e_c00001{word-spacing:14.515200px;}
.wsa99_c00001{word-spacing:14.529600px;}
.ws92c_c00001{word-spacing:14.544000px;}
.ws610_c00001{word-spacing:14.551200px;}
.ws623_c00001{word-spacing:14.558400px;}
.ws92d_c00001{word-spacing:14.565600px;}
.ws124_c00001{word-spacing:14.580000px;}
.wsc5c_c00001{word-spacing:14.652000px;}
.ws95a_c00001{word-spacing:14.716800px;}
.wsa5e_c00001{word-spacing:14.724000px;}
.ws40e_c00001{word-spacing:14.731200px;}
.ws21c_c00001{word-spacing:14.738400px;}
.ws40d_c00001{word-spacing:14.745600px;}
.wsc56_c00001{word-spacing:14.752800px;}
.wsab0_c00001{word-spacing:14.760000px;}
.ws40a_c00001{word-spacing:14.767200px;}
.ws7a3_c00001{word-spacing:14.774400px;}
.ws2d5_c00001{word-spacing:14.781600px;}
.wsc57_c00001{word-spacing:14.788800px;}
.ws21d_c00001{word-spacing:14.796000px;}
.wsb2d_c00001{word-spacing:14.803200px;}
.ws748_c00001{word-spacing:14.810400px;}
.ws2d4_c00001{word-spacing:14.817600px;}
.ws81a_c00001{word-spacing:14.819580px;}
.ws747_c00001{word-spacing:14.824800px;}
.ws870_c00001{word-spacing:14.839200px;}
.ws6b1_c00001{word-spacing:14.846400px;}
.wsa08_c00001{word-spacing:14.853600px;}
.wsa15_c00001{word-spacing:14.860800px;}
.ws3a6_c00001{word-spacing:14.861664px;}
.ws977_c00001{word-spacing:14.889600px;}
.ws978_c00001{word-spacing:14.940000px;}
.wsbf7_c00001{word-spacing:15.026400px;}
.wsbed_c00001{word-spacing:15.055200px;}
.wsc0a_c00001{word-spacing:15.062400px;}
.ws774_c00001{word-spacing:15.084000px;}
.ws3a5_c00001{word-spacing:15.090120px;}
.ws56c_c00001{word-spacing:15.091200px;}
.ws353_c00001{word-spacing:15.098400px;}
.ws580_c00001{word-spacing:15.105600px;}
.ws842_c00001{word-spacing:15.112800px;}
.ws565_c00001{word-spacing:15.120000px;}
.ws1bc_c00001{word-spacing:15.127200px;}
.ws431_c00001{word-spacing:15.134400px;}
.ws3ee_c00001{word-spacing:15.141600px;}
.ws581_c00001{word-spacing:15.148800px;}
.ws61a_c00001{word-spacing:15.150240px;}
.wsa4_c00001{word-spacing:15.156000px;}
.ws812_c00001{word-spacing:15.156252px;}
.wsad7_c00001{word-spacing:15.163200px;}
.ws52e_c00001{word-spacing:15.170400px;}
.ws3d6_c00001{word-spacing:15.177600px;}
.wsb12_c00001{word-spacing:15.184800px;}
.wsb09_c00001{word-spacing:15.192000px;}
.ws833_c00001{word-spacing:15.192324px;}
.ws936_c00001{word-spacing:15.198336px;}
.ws773_c00001{word-spacing:15.206400px;}
.ws4e2_c00001{word-spacing:15.210360px;}
.wsacd_c00001{word-spacing:15.213600px;}
.ws781_c00001{word-spacing:15.228000px;}
.ws619_c00001{word-spacing:15.228396px;}
.ws44d_c00001{word-spacing:15.242400px;}
.ws834_c00001{word-spacing:15.246432px;}
.ws937_c00001{word-spacing:15.252444px;}
.ws4e1_c00001{word-spacing:15.258456px;}
.wsc6b_c00001{word-spacing:15.264000px;}
.wsc64_c00001{word-spacing:15.321600px;}
.ws7f1_c00001{word-spacing:15.357600px;}
.ws9e2_c00001{word-spacing:15.372000px;}
.wsa3b_c00001{word-spacing:15.393600px;}
.ws293_c00001{word-spacing:15.422400px;}
.ws7f0_c00001{word-spacing:15.429600px;}
.wsc25_c00001{word-spacing:15.436800px;}
.ws919_c00001{word-spacing:15.444000px;}
.wsa10_c00001{word-spacing:15.451200px;}
.ws291_c00001{word-spacing:15.458400px;}
.wsaa9_c00001{word-spacing:15.465600px;}
.ws316_c00001{word-spacing:15.472800px;}
.ws1b_c00001{word-spacing:15.480000px;}
.ws918_c00001{word-spacing:15.487200px;}
.ws3d2_c00001{word-spacing:15.494400px;}
.ws4d1_c00001{word-spacing:15.501600px;}
.ws685_c00001{word-spacing:15.508800px;}
.ws4ba_c00001{word-spacing:15.516000px;}
.ws406_c00001{word-spacing:15.516972px;}
.ws292_c00001{word-spacing:15.523200px;}
.ws242_c00001{word-spacing:15.530400px;}
.ws766_c00001{word-spacing:15.535008px;}
.ws9e6_c00001{word-spacing:15.537600px;}
.ws78c_c00001{word-spacing:15.541020px;}
.ws315_c00001{word-spacing:15.552000px;}
.ws689_c00001{word-spacing:15.559200px;}
.ws457_c00001{word-spacing:15.566400px;}
.wsb41_c00001{word-spacing:15.573600px;}
.wsa5c_c00001{word-spacing:15.580800px;}
.wsc23_c00001{word-spacing:15.595200px;}
.ws3d3_c00001{word-spacing:15.616800px;}
.wsae4_c00001{word-spacing:15.619176px;}
.wsa3a_c00001{word-spacing:15.660000px;}
.wsae3_c00001{word-spacing:15.661260px;}
.wsae8_c00001{word-spacing:15.775200px;}
.wsa2e_c00001{word-spacing:15.782400px;}
.ws366_c00001{word-spacing:15.789600px;}
.wsa2d_c00001{word-spacing:15.796800px;}
.wsb62_c00001{word-spacing:15.804000px;}
.wsb77_c00001{word-spacing:15.818400px;}
.wsb78_c00001{word-spacing:15.825600px;}
.ws51a_c00001{word-spacing:15.832800px;}
.ws198_c00001{word-spacing:15.840000px;}
.ws1c2_c00001{word-spacing:15.847200px;}
.ws829_c00001{word-spacing:15.854400px;}
.ws31e_c00001{word-spacing:15.861600px;}
.ws96d_c00001{word-spacing:15.868800px;}
.ws4c2_c00001{word-spacing:15.876000px;}
.ws8d0_c00001{word-spacing:15.883200px;}
.ws9d3_c00001{word-spacing:15.890400px;}
.wsb61_c00001{word-spacing:15.897600px;}
.ws197_c00001{word-spacing:15.904800px;}
.ws68b_c00001{word-spacing:15.912000px;}
.ws1c1_c00001{word-spacing:15.919200px;}
.ws984_c00001{word-spacing:15.925788px;}
.ws985_c00001{word-spacing:15.937812px;}
.wsb76_c00001{word-spacing:15.943464px;}
.ws479_c00001{word-spacing:15.955200px;}
.ws7c1_c00001{word-spacing:16.005600px;}
.ws51b_c00001{word-spacing:16.034400px;}
.ws7c2_c00001{word-spacing:16.056000px;}
.wsb6e_c00001{word-spacing:16.135200px;}
.ws516_c00001{word-spacing:16.142400px;}
.wsb6d_c00001{word-spacing:16.149600px;}
.ws7f8_c00001{word-spacing:16.156800px;}
.wsb43_c00001{word-spacing:16.164000px;}
.wsbe2_c00001{word-spacing:16.171200px;}
.wsb03_c00001{word-spacing:16.178400px;}
.wsf_c00001{word-spacing:16.185600px;}
.ws12b_c00001{word-spacing:16.192800px;}
.ws7de_c00001{word-spacing:16.200000px;}
.ws639_c00001{word-spacing:16.207200px;}
.ws12a_c00001{word-spacing:16.214400px;}
.ws9ff_c00001{word-spacing:16.221600px;}
.ws7f7_c00001{word-spacing:16.228800px;}
.ws9d6_c00001{word-spacing:16.236000px;}
.ws888_c00001{word-spacing:16.243200px;}
.ws638_c00001{word-spacing:16.257600px;}
.ws234_c00001{word-spacing:16.272000px;}
.wse_c00001{word-spacing:16.279200px;}
.wsc14_c00001{word-spacing:16.290432px;}
.ws3c5_c00001{word-spacing:16.292520px;}
.ws517_c00001{word-spacing:16.293600px;}
.ws4d9_c00001{word-spacing:16.315200px;}
.ws3c6_c00001{word-spacing:16.334604px;}
.wsc15_c00001{word-spacing:16.365600px;}
.ws64c_c00001{word-spacing:16.376688px;}
.ws6b6_c00001{word-spacing:16.380000px;}
.wsaff_c00001{word-spacing:16.509600px;}
.ws75e_c00001{word-spacing:16.516800px;}
.ws6b0_c00001{word-spacing:16.524000px;}
.ws5e8_c00001{word-spacing:16.531200px;}
.ws6b8_c00001{word-spacing:16.545600px;}
.ws3ed_c00001{word-spacing:16.552800px;}
.ws5c2_c00001{word-spacing:16.560000px;}
.ws1d3_c00001{word-spacing:16.567200px;}
.ws2e1_c00001{word-spacing:16.574400px;}
.ws1d0_c00001{word-spacing:16.581600px;}
.ws21b_c00001{word-spacing:16.588800px;}
.ws347_c00001{word-spacing:16.596000px;}
.ws6b9_c00001{word-spacing:16.603200px;}
.wsa0e_c00001{word-spacing:16.611156px;}
.ws5c3_c00001{word-spacing:16.617600px;}
.ws532_c00001{word-spacing:16.624800px;}
.ws39f_c00001{word-spacing:16.632000px;}
.wsb17_c00001{word-spacing:16.639200px;}
.ws1d1_c00001{word-spacing:16.646400px;}
.ws9e1_c00001{word-spacing:16.653600px;}
.ws21a_c00001{word-spacing:16.660800px;}
.wsa0d_c00001{word-spacing:16.671276px;}
.ws8fb_c00001{word-spacing:16.812000px;}
.wsa62_c00001{word-spacing:16.855200px;}
.ws296_c00001{word-spacing:16.876800px;}
.wsa74_c00001{word-spacing:16.884000px;}
.wsae9_c00001{word-spacing:16.898400px;}
.ws875_c00001{word-spacing:16.905600px;}
.ws7cc_c00001{word-spacing:16.912800px;}
.ws26a_c00001{word-spacing:16.920000px;}
.ws295_c00001{word-spacing:16.927200px;}
.ws28e_c00001{word-spacing:16.934400px;}
.ws755_c00001{word-spacing:16.941600px;}
.ws31a_c00001{word-spacing:16.947828px;}
.ws874_c00001{word-spacing:16.948800px;}
.ws756_c00001{word-spacing:16.956000px;}
.wsb0f_c00001{word-spacing:16.970400px;}
.ws26b_c00001{word-spacing:16.977600px;}
.ws716_c00001{word-spacing:16.983900px;}
.ws68c_c00001{word-spacing:16.992000px;}
.wsc46_c00001{word-spacing:16.995744px;}
.ws709_c00001{word-spacing:16.995924px;}
.ws988_c00001{word-spacing:17.001936px;}
.wsc28_c00001{word-spacing:17.006400px;}
.ws717_c00001{word-spacing:17.007948px;}
.ws70a_c00001{word-spacing:17.013960px;}
.ws7cb_c00001{word-spacing:17.020800px;}
.ws989_c00001{word-spacing:17.025984px;}
.ws56b_c00001{word-spacing:17.121600px;}
.ws99c_c00001{word-spacing:17.215200px;}
.wsb4e_c00001{word-spacing:17.229600px;}
.wsc47_c00001{word-spacing:17.236800px;}
.ws9c5_c00001{word-spacing:17.258400px;}
.ws7f3_c00001{word-spacing:17.265600px;}
.ws44c_c00001{word-spacing:17.272800px;}
.ws177_c00001{word-spacing:17.287200px;}
.ws1f3_c00001{word-spacing:17.294400px;}
.ws246_c00001{word-spacing:17.301600px;}
.ws8eb_c00001{word-spacing:17.308800px;}
.wsb21_c00001{word-spacing:17.323200px;}
.ws9c4_c00001{word-spacing:17.337600px;}
.ws3ce_c00001{word-spacing:17.344620px;}
.ws1f2_c00001{word-spacing:17.344800px;}
.ws3cf_c00001{word-spacing:17.368668px;}
.ws7f4_c00001{word-spacing:17.388000px;}
.wsb2a_c00001{word-spacing:17.431200px;}
.wsa7b_c00001{word-spacing:17.575200px;}
.wsc20_c00001{word-spacing:17.589600px;}
.wsb20_c00001{word-spacing:17.596800px;}
.ws8b4_c00001{word-spacing:17.604000px;}
.wsc04_c00001{word-spacing:17.618400px;}
.ws77c_c00001{word-spacing:17.625600px;}
.ws605_c00001{word-spacing:17.640000px;}
.ws764_c00001{word-spacing:17.647200px;}
.wsa5b_c00001{word-spacing:17.654400px;}
.ws56_c00001{word-spacing:17.661600px;}
.ws994_c00001{word-spacing:17.668800px;}
.ws317_c00001{word-spacing:17.676000px;}
.ws1c0_c00001{word-spacing:17.683200px;}
.ws32e_c00001{word-spacing:17.690400px;}
.ws1bf_c00001{word-spacing:17.697600px;}
.ws257_c00001{word-spacing:17.711352px;}
.ws815_c00001{word-spacing:17.717364px;}
.ws971_c00001{word-spacing:17.719200px;}
.ws258_c00001{word-spacing:17.723376px;}
.wsba6_c00001{word-spacing:17.726400px;}
.wsa6f_c00001{word-spacing:17.733600px;}
.ws8b2_c00001{word-spacing:17.740800px;}
.wsb7c_c00001{word-spacing:17.748000px;}
.ws814_c00001{word-spacing:17.765460px;}
.wsc1f_c00001{word-spacing:17.805600px;}
.wsa26_c00001{word-spacing:17.892000px;}
.ws48d_c00001{word-spacing:17.920800px;}
.wsa25_c00001{word-spacing:17.949600px;}
.wsc62_c00001{word-spacing:17.985600px;}
.ws59d_c00001{word-spacing:18.000000px;}
.ws4d2_c00001{word-spacing:18.007200px;}
.ws1fa_c00001{word-spacing:18.014400px;}
.ws8fe_c00001{word-spacing:18.021600px;}
.ws1fb_c00001{word-spacing:18.028800px;}
.ws69f_c00001{word-spacing:18.036000px;}
.wsc21_c00001{word-spacing:18.050400px;}
.wsc61_c00001{word-spacing:18.057600px;}
.ws59e_c00001{word-spacing:18.079200px;}
.wsb37_c00001{word-spacing:18.093600px;}
.wsb38_c00001{word-spacing:18.100800px;}
.wsa19_c00001{word-spacing:18.115200px;}
.ws813_c00001{word-spacing:18.120168px;}
.wsc22_c00001{word-spacing:18.165600px;}
.wsafe_c00001{word-spacing:18.324000px;}
.ws376_c00001{word-spacing:18.333252px;}
.ws616_c00001{word-spacing:18.345600px;}
.ws378_c00001{word-spacing:18.352404px;}
.wsbd8_c00001{word-spacing:18.352800px;}
.ws9b7_c00001{word-spacing:18.360000px;}
.ws669_c00001{word-spacing:18.374400px;}
.ws375_c00001{word-spacing:18.376344px;}
.ws2b1_c00001{word-spacing:18.381600px;}
.ws8d6_c00001{word-spacing:18.388800px;}
.ws2db_c00001{word-spacing:18.396000px;}
.ws93e_c00001{word-spacing:18.402732px;}
.ws2d6_c00001{word-spacing:18.403200px;}
.ws462_c00001{word-spacing:18.410400px;}
.ws2d7_c00001{word-spacing:18.417600px;}
.ws377_c00001{word-spacing:18.424224px;}
.ws461_c00001{word-spacing:18.424800px;}
.wsad2_c00001{word-spacing:18.439200px;}
.ws2dc_c00001{word-spacing:18.453600px;}
.ws93f_c00001{word-spacing:18.456840px;}
.wsafd_c00001{word-spacing:18.460800px;}
.ws486_c00001{word-spacing:18.482400px;}
.wsbd7_c00001{word-spacing:18.626400px;}
.ws485_c00001{word-spacing:18.648000px;}
.ws902_c00001{word-spacing:18.662400px;}
.wsaad_c00001{word-spacing:18.684000px;}
.wsb9f_c00001{word-spacing:18.691200px;}
.ws4c3_c00001{word-spacing:18.698400px;}
.wsaf9_c00001{word-spacing:18.705600px;}
.ws807_c00001{word-spacing:18.712800px;}
.ws29a_c00001{word-spacing:18.720000px;}
.ws3b3_c00001{word-spacing:18.727200px;}
.ws38a_c00001{word-spacing:18.734400px;}
.wsaef_c00001{word-spacing:18.741600px;}
.ws53_c00001{word-spacing:18.745416px;}
.wsaae_c00001{word-spacing:18.748800px;}
.wsa76_c00001{word-spacing:18.756000px;}
.ws487_c00001{word-spacing:18.763200px;}
.ws849_c00001{word-spacing:18.770400px;}
.ws986_c00001{word-spacing:18.775476px;}
.ws3b4_c00001{word-spacing:18.813600px;}
.wsb9d_c00001{word-spacing:18.832968px;}
.wsb9e_c00001{word-spacing:18.835200px;}
.ws920_c00001{word-spacing:18.864000px;}
.ws8a2_c00001{word-spacing:19.036800px;}
.wsbc7_c00001{word-spacing:19.044000px;}
.wsa68_c00001{word-spacing:19.051200px;}
.ws77f_c00001{word-spacing:19.058400px;}
.ws979_c00001{word-spacing:19.072800px;}
.ws108_c00001{word-spacing:19.080000px;}
.wsb7b_c00001{word-spacing:19.087200px;}
.ws68a_c00001{word-spacing:19.094400px;}
.ws109_c00001{word-spacing:19.101600px;}
.wsab1_c00001{word-spacing:19.108800px;}
.wsab2_c00001{word-spacing:19.123200px;}
.ws953_c00001{word-spacing:19.130400px;}
.wsa67_c00001{word-spacing:19.137600px;}
.ws77e_c00001{word-spacing:19.144800px;}
.ws801_c00001{word-spacing:19.148220px;}
.ws1ac_c00001{word-spacing:19.152000px;}
.wsb5b_c00001{word-spacing:19.202400px;}
.wsb5d_c00001{word-spacing:19.224000px;}
.wsb5c_c00001{word-spacing:19.252800px;}
.ws952_c00001{word-spacing:19.281600px;}
.ws8ea_c00001{word-spacing:19.324800px;}
.wsbc8_c00001{word-spacing:19.368000px;}
.wsc39_c00001{word-spacing:19.418400px;}
.ws9cd_c00001{word-spacing:19.425600px;}
.wsc81_c00001{word-spacing:19.432800px;}
.ws655_c00001{word-spacing:19.447200px;}
.ws656_c00001{word-spacing:19.454400px;}
.ws478_c00001{word-spacing:19.461600px;}
.wsa7c_c00001{word-spacing:19.468800px;}
.ws7a1_c00001{word-spacing:19.476000px;}
.ws661_c00001{word-spacing:19.483200px;}
.ws320_c00001{word-spacing:19.490400px;}
.ws9cc_c00001{word-spacing:19.519200px;}
.ws7f6_c00001{word-spacing:19.548000px;}
.wsc82_c00001{word-spacing:19.555200px;}
.wsaa0_c00001{word-spacing:19.620000px;}
.wsc6f_c00001{word-spacing:19.713600px;}
.wsa5a_c00001{word-spacing:19.742400px;}
.ws47d_c00001{word-spacing:19.756800px;}
.ws47e_c00001{word-spacing:19.771200px;}
.ws75d_c00001{word-spacing:19.792800px;}
.ws844_c00001{word-spacing:19.800000px;}
.wsba3_c00001{word-spacing:19.807200px;}
.ws653_c00001{word-spacing:19.814400px;}
.ws3b1_c00001{word-spacing:19.821600px;}
.ws4c1_c00001{word-spacing:19.828800px;}
.wsb60_c00001{word-spacing:19.843200px;}
.ws92f_c00001{word-spacing:19.857600px;}
.ws863_c00001{word-spacing:19.872000px;}
.wsc6e_c00001{word-spacing:19.900800px;}
.ws862_c00001{word-spacing:19.944000px;}
.ws4bc_c00001{word-spacing:20.109600px;}
.ws8e4_c00001{word-spacing:20.145600px;}
.ws19c_c00001{word-spacing:20.152800px;}
.ws1ab_c00001{word-spacing:20.160000px;}
.ws4bb_c00001{word-spacing:20.167200px;}
.ws4b1_c00001{word-spacing:20.174400px;}
.wsb19_c00001{word-spacing:20.181600px;}
.ws7e7_c00001{word-spacing:20.188296px;}
.ws9fc_c00001{word-spacing:20.196000px;}
.ws93c_c00001{word-spacing:20.203200px;}
.ws7fc_c00001{word-spacing:20.210400px;}
.ws7e6_c00001{word-spacing:20.224368px;}
.wsa43_c00001{word-spacing:20.224800px;}
.ws219_c00001{word-spacing:20.239200px;}
.ws93b_c00001{word-spacing:20.253600px;}
.ws1aa_c00001{word-spacing:20.268000px;}
.ws7ff_c00001{word-spacing:20.462400px;}
.ws7fe_c00001{word-spacing:20.484000px;}
.ws71a_c00001{word-spacing:20.491200px;}
.ws4e6_c00001{word-spacing:20.505600px;}
.ws924_c00001{word-spacing:20.512800px;}
.ws8d3_c00001{word-spacing:20.520000px;}
.ws887_c00001{word-spacing:20.527200px;}
.ws71b_c00001{word-spacing:20.548800px;}
.ws83f_c00001{word-spacing:20.555028px;}
.wsb5e_c00001{word-spacing:20.570400px;}
.ws923_c00001{word-spacing:20.577600px;}
.wsb54_c00001{word-spacing:20.584800px;}
.wsb55_c00001{word-spacing:20.592000px;}
.ws83e_c00001{word-spacing:20.615148px;}
.wsb22_c00001{word-spacing:20.635200px;}
.wsa89_c00001{word-spacing:20.714400px;}
.wsbda_c00001{word-spacing:20.793600px;}
.ws5bf_c00001{word-spacing:20.808000px;}
.ws82d_c00001{word-spacing:20.851200px;}
.ws82c_c00001{word-spacing:20.872800px;}
.ws877_c00001{word-spacing:20.880000px;}
.ws5c0_c00001{word-spacing:20.887200px;}
.ws855_c00001{word-spacing:20.894400px;}
.ws8ae_c00001{word-spacing:20.901600px;}
.ws8ad_c00001{word-spacing:20.908800px;}
.ws68d_c00001{word-spacing:20.916000px;}
.ws909_c00001{word-spacing:20.923200px;}
.ws869_c00001{word-spacing:20.930400px;}
.wsbe1_c00001{word-spacing:20.937600px;}
.ws925_c00001{word-spacing:20.952000px;}
.ws86a_c00001{word-spacing:21.031200px;}
.wsc4b_c00001{word-spacing:21.103200px;}
.wsc66_c00001{word-spacing:21.146400px;}
.wsaab_c00001{word-spacing:21.168000px;}
.wsaca_c00001{word-spacing:21.225600px;}
.wsa63_c00001{word-spacing:21.232800px;}
.ws706_c00001{word-spacing:21.240000px;}
.ws4a0_c00001{word-spacing:21.247200px;}
.ws758_c00001{word-spacing:21.261600px;}
.ws757_c00001{word-spacing:21.268800px;}
.wsb1a_c00001{word-spacing:21.283200px;}
.ws654_c00001{word-spacing:21.290400px;}
.ws49f_c00001{word-spacing:21.326400px;}
.ws3ff_c00001{word-spacing:21.348612px;}
.ws17a_c00001{word-spacing:21.571200px;}
.ws9bf_c00001{word-spacing:21.585600px;}
.wsa57_c00001{word-spacing:21.600000px;}
.ws905_c00001{word-spacing:21.607200px;}
.ws9c0_c00001{word-spacing:21.614400px;}
.ws23e_c00001{word-spacing:21.621600px;}
.ws23d_c00001{word-spacing:21.628800px;}
.wsb56_c00001{word-spacing:21.657600px;}
.ws17b_c00001{word-spacing:21.664800px;}
.ws55a_c00001{word-spacing:21.667248px;}
.ws9bb_c00001{word-spacing:21.679200px;}
.wsa41_c00001{word-spacing:21.686400px;}
.ws9bc_c00001{word-spacing:21.700800px;}
.wsa40_c00001{word-spacing:21.772800px;}
.ws846_c00001{word-spacing:21.924000px;}
.ws300_c00001{word-spacing:21.938400px;}
.ws746_c00001{word-spacing:21.945600px;}
.wsb3c_c00001{word-spacing:21.952800px;}
.wsab5_c00001{word-spacing:21.960000px;}
.ws14b_c00001{word-spacing:21.967200px;}
.ws2ff_c00001{word-spacing:21.974400px;}
.ws1d2_c00001{word-spacing:21.981600px;}
.ws3b7_c00001{word-spacing:21.988800px;}
.ws14a_c00001{word-spacing:21.996000px;}
.ws53f_c00001{word-spacing:22.003200px;}
.wsb3b_c00001{word-spacing:22.010400px;}
.ws845_c00001{word-spacing:22.032000px;}
.ws745_c00001{word-spacing:22.039200px;}
.wsc38_c00001{word-spacing:22.068000px;}
.wsafb_c00001{word-spacing:22.132800px;}
.ws7b3_c00001{word-spacing:22.240800px;}
.ws1e4_c00001{word-spacing:22.284000px;}
.ws1e5_c00001{word-spacing:22.312800px;}
.ws106_c00001{word-spacing:22.320000px;}
.ws7b2_c00001{word-spacing:22.327200px;}
.wsada_c00001{word-spacing:22.334400px;}
.ws31f_c00001{word-spacing:22.341600px;}
.ws9e5_c00001{word-spacing:22.356000px;}
.ws4f9_c00001{word-spacing:22.377600px;}
.ws8c9_c00001{word-spacing:22.406400px;}
.ws4f8_c00001{word-spacing:22.413600px;}
.wsab4_c00001{word-spacing:22.435200px;}
.ws540_c00001{word-spacing:22.456800px;}
.wsc2e_c00001{word-spacing:22.651200px;}
.wsc59_c00001{word-spacing:22.658400px;}
.wsb44_c00001{word-spacing:22.665600px;}
.ws8de_c00001{word-spacing:22.687200px;}
.wsa1f_c00001{word-spacing:22.694400px;}
.ws9a3_c00001{word-spacing:22.701600px;}
.ws993_c00001{word-spacing:22.708800px;}
.wsa8e_c00001{word-spacing:22.716000px;}
.wsc2f_c00001{word-spacing:22.730400px;}
.wsa20_c00001{word-spacing:22.744800px;}
.wsa82_c00001{word-spacing:22.975200px;}
.wsbaa_c00001{word-spacing:22.982400px;}
.ws71c_c00001{word-spacing:23.018400px;}
.ws8e0_c00001{word-spacing:23.025600px;}
.ws881_c00001{word-spacing:23.032800px;}
.wsa81_c00001{word-spacing:23.040000px;}
.wsafa_c00001{word-spacing:23.047200px;}
.wsb08_c00001{word-spacing:23.054400px;}
.wsabf_c00001{word-spacing:23.061600px;}
.ws611_c00001{word-spacing:23.068800px;}
.wsb49_c00001{word-spacing:23.090400px;}
.ws882_c00001{word-spacing:23.097600px;}
.wsa83_c00001{word-spacing:23.104800px;}
.wsa84_c00001{word-spacing:23.133600px;}
.ws71d_c00001{word-spacing:23.155200px;}
.wsa85_c00001{word-spacing:23.176800px;}
.ws8d8_c00001{word-spacing:23.342400px;}
.ws80b_c00001{word-spacing:23.364000px;}
.ws824_c00001{word-spacing:23.400000px;}
.wsac5_c00001{word-spacing:23.407200px;}
.ws8d7_c00001{word-spacing:23.414400px;}
.ws80a_c00001{word-spacing:23.421600px;}
.wsc02_c00001{word-spacing:23.450400px;}
.wsb1d_c00001{word-spacing:23.472000px;}
.ws825_c00001{word-spacing:23.493600px;}
.wsb1c_c00001{word-spacing:23.536800px;}
.ws86d_c00001{word-spacing:23.680800px;}
.ws3e7_c00001{word-spacing:23.724000px;}
.ws302_c00001{word-spacing:23.745600px;}
.ws7ef_c00001{word-spacing:23.760000px;}
.ws301_c00001{word-spacing:23.767200px;}
.ws1ce_c00001{word-spacing:23.774400px;}
.ws86c_c00001{word-spacing:23.781600px;}
.wsa8c_c00001{word-spacing:23.796000px;}
.wsaec_c00001{word-spacing:23.810400px;}
.ws1cf_c00001{word-spacing:23.832000px;}
.ws3e6_c00001{word-spacing:23.846400px;}
.wsa8b_c00001{word-spacing:23.868000px;}
.ws567_c00001{word-spacing:24.040800px;}
.ws568_c00001{word-spacing:24.112800px;}
.ws4ad_c00001{word-spacing:24.127200px;}
.wsa96_c00001{word-spacing:24.141600px;}
.ws3b0_c00001{word-spacing:24.148800px;}
.ws3a9_c00001{word-spacing:24.156216px;}
.ws423_c00001{word-spacing:24.177600px;}
.wsb46_c00001{word-spacing:24.184800px;}
.ws3a8_c00001{word-spacing:24.234372px;}
.ws122_c00001{word-spacing:24.422400px;}
.ws42f_c00001{word-spacing:24.458400px;}
.wsc7e_c00001{word-spacing:24.472800px;}
.ws81e_c00001{word-spacing:24.480000px;}
.ws121_c00001{word-spacing:24.501600px;}
.ws196_c00001{word-spacing:24.508800px;}
.ws4b8_c00001{word-spacing:24.552000px;}
.ws4b9_c00001{word-spacing:24.580800px;}
.ws39e_c00001{word-spacing:24.825600px;}
.wsba5_c00001{word-spacing:24.832800px;}
.ws1e1_c00001{word-spacing:24.840000px;}
.ws5ee_c00001{word-spacing:24.847200px;}
.ws382_c00001{word-spacing:24.861600px;}
.wsb07_c00001{word-spacing:24.868800px;}
.ws1e0_c00001{word-spacing:24.912000px;}
.wsba4_c00001{word-spacing:24.926400px;}
.ws537_c00001{word-spacing:24.940800px;}
.ws538_c00001{word-spacing:24.991200px;}
.ws564_c00001{word-spacing:25.034400px;}
.ws80f_c00001{word-spacing:25.135200px;}
.ws25d_c00001{word-spacing:25.142400px;}
.ws123_c00001{word-spacing:25.192800px;}
.ws9c9_c00001{word-spacing:25.200000px;}
.wsad6_c00001{word-spacing:25.207200px;}
.ws563_c00001{word-spacing:25.214400px;}
.ws25e_c00001{word-spacing:25.228800px;}
.ws336_c00001{word-spacing:25.243200px;}
.ws8da_c00001{word-spacing:25.250400px;}
.ws80e_c00001{word-spacing:25.257600px;}
.ws337_c00001{word-spacing:25.272000px;}
.ws8d9_c00001{word-spacing:25.279200px;}
.ws904_c00001{word-spacing:25.286400px;}
.ws5a5_c00001{word-spacing:25.538400px;}
.ws58_c00001{word-spacing:25.560000px;}
.ws434_c00001{word-spacing:25.567200px;}
.ws5a6_c00001{word-spacing:25.574400px;}
.wsacf_c00001{word-spacing:25.581600px;}
.ws1b4_c00001{word-spacing:25.588800px;}
.wsa98_c00001{word-spacing:25.596000px;}
.ws3b8_c00001{word-spacing:25.603200px;}
.wsb2f_c00001{word-spacing:25.646400px;}
.wsb30_c00001{word-spacing:25.711200px;}
.ws307_c00001{word-spacing:25.905600px;}
.ws1d7_c00001{word-spacing:25.927200px;}
.ws9b8_c00001{word-spacing:25.941600px;}
.ws306_c00001{word-spacing:25.948800px;}
.wsc5b_c00001{word-spacing:25.992000px;}
.ws1d6_c00001{word-spacing:26.013600px;}
.ws1d8_c00001{word-spacing:26.100000px;}
.ws956_c00001{word-spacing:26.208000px;}
.wsc6d_c00001{word-spacing:26.258400px;}
.ws41c_c00001{word-spacing:26.272800px;}
.wsb4a_c00001{word-spacing:26.287200px;}
.ws41d_c00001{word-spacing:26.308800px;}
.wsc6c_c00001{word-spacing:26.366400px;}
.ws955_c00001{word-spacing:26.438400px;}
.ws5a7_c00001{word-spacing:26.611200px;}
.ws8cd_c00001{word-spacing:26.640000px;}
.ws770_c00001{word-spacing:26.668800px;}
.wsaf4_c00001{word-spacing:26.704800px;}
.wsaf5_c00001{word-spacing:26.791200px;}
.ws664_c00001{word-spacing:26.978400px;}
.ws662_c00001{word-spacing:26.992800px;}
.ws2c1_c00001{word-spacing:27.021600px;}
.ws942_c00001{word-spacing:27.036000px;}
.ws2c2_c00001{word-spacing:27.057600px;}
.ws46e_c00001{word-spacing:27.086400px;}
.ws86f_c00001{word-spacing:27.345600px;}
.ws663_c00001{word-spacing:27.360000px;}
.ws63a_c00001{word-spacing:27.374400px;}
.ws86e_c00001{word-spacing:27.439200px;}
.ws867_c00001{word-spacing:27.698400px;}
.ws410_c00001{word-spacing:27.712800px;}
.ws1fd_c00001{word-spacing:27.741600px;}
.ws87b_c00001{word-spacing:28.065600px;}
.wsb00_c00001{word-spacing:28.094400px;}
.wsb01_c00001{word-spacing:28.101600px;}
.ws3c3_c00001{word-spacing:28.108800px;}
.ws5da_c00001{word-spacing:28.137600px;}
.ws822_c00001{word-spacing:28.382400px;}
.ws782_c00001{word-spacing:28.432800px;}
.ws170_c00001{word-spacing:28.440000px;}
.ws980_c00001{word-spacing:28.447200px;}
.wsacc_c00001{word-spacing:28.476000px;}
.wsa61_c00001{word-spacing:28.504800px;}
.wsacb_c00001{word-spacing:28.512000px;}
.ws171_c00001{word-spacing:28.555200px;}
.ws99a_c00001{word-spacing:28.807200px;}
.wsae7_c00001{word-spacing:28.821600px;}
.ws4c6_c00001{word-spacing:28.828800px;}
.wsb59_c00001{word-spacing:28.843200px;}
.ws99b_c00001{word-spacing:28.857600px;}
.ws4c5_c00001{word-spacing:28.908000px;}
.wsa52_c00001{word-spacing:29.167200px;}
.ws11b_c00001{word-spacing:29.174400px;}
.ws11c_c00001{word-spacing:29.181600px;}
.ws3dc_c00001{word-spacing:29.253600px;}
.ws949_c00001{word-spacing:29.520000px;}
.ws61d_c00001{word-spacing:29.527200px;}
.ws94f_c00001{word-spacing:29.534400px;}
.ws948_c00001{word-spacing:29.548800px;}
.ws66e_c00001{word-spacing:29.570400px;}
.ws61e_c00001{word-spacing:29.577600px;}
.ws66d_c00001{word-spacing:29.635200px;}
.ws9cb_c00001{word-spacing:29.872800px;}
.ws33d_c00001{word-spacing:29.880000px;}
.ws528_c00001{word-spacing:29.908800px;}
.wsc43_c00001{word-spacing:30.124800px;}
.wsc44_c00001{word-spacing:30.189600px;}
.ws908_c00001{word-spacing:30.225600px;}
.wsa38_c00001{word-spacing:30.240000px;}
.wsc67_c00001{word-spacing:30.247200px;}
.wsc68_c00001{word-spacing:30.276000px;}
.wsa37_c00001{word-spacing:30.312000px;}
.ws576_c00001{word-spacing:30.585600px;}
.ws48c_c00001{word-spacing:30.607200px;}
.ws48b_c00001{word-spacing:30.614400px;}
.wsaed_c00001{word-spacing:30.664800px;}
.ws577_c00001{word-spacing:30.686400px;}
.wsaee_c00001{word-spacing:30.794400px;}
.ws868_c00001{word-spacing:30.974400px;}
.ws913_c00001{word-spacing:31.010400px;}
.ws8ff_c00001{word-spacing:31.341600px;}
.wsad0_c00001{word-spacing:31.629600px;}
.ws28b_c00001{word-spacing:31.651200px;}
.wsb05_c00001{word-spacing:31.658400px;}
.wsb04_c00001{word-spacing:31.672800px;}
.wsad1_c00001{word-spacing:31.708800px;}
.ws28a_c00001{word-spacing:31.730400px;}
.ws637_c00001{word-spacing:32.032800px;}
.wsaeb_c00001{word-spacing:32.155200px;}
.ws8f4_c00001{word-spacing:32.392800px;}
.ws8f5_c00001{word-spacing:32.421600px;}
.ws85f_c00001{word-spacing:32.436000px;}
.ws3aa_c00001{word-spacing:32.760000px;}
.wsaaf_c00001{word-spacing:32.803200px;}
.wsad8_c00001{word-spacing:33.112800px;}
.wsad9_c00001{word-spacing:33.156000px;}
.wsc8a_c00001{word-spacing:33.436800px;}
.ws9ba_c00001{word-spacing:33.480000px;}
.wsc8c_c00001{word-spacing:33.487200px;}
.wsa5d_c00001{word-spacing:33.494400px;}
.wsc8b_c00001{word-spacing:33.501600px;}
.ws51d_c00001{word-spacing:33.523200px;}
.wsc8d_c00001{word-spacing:33.552000px;}
.ws51c_c00001{word-spacing:33.595200px;}
.wsb36_c00001{word-spacing:33.890400px;}
.ws53c_c00001{word-spacing:34.192800px;}
.ws900_c00001{word-spacing:34.596000px;}
.ws224_c00001{word-spacing:34.869600px;}
.ws9e0_c00001{word-spacing:34.920000px;}
.ws223_c00001{word-spacing:34.934400px;}
.wsb6a_c00001{word-spacing:34.941600px;}
.wsa2f_c00001{word-spacing:36.007200px;}
.ws8c7_c00001{word-spacing:36.014400px;}
.ws8ce_c00001{word-spacing:36.021600px;}
.ws8c8_c00001{word-spacing:36.043200px;}
.ws8cf_c00001{word-spacing:36.072000px;}
.ws8e6_c00001{word-spacing:36.396000px;}
.ws683_c00001{word-spacing:38.109600px;}
.ws6ad_c00001{word-spacing:38.160000px;}
.ws684_c00001{word-spacing:38.167200px;}
.wsb0c_c00001{word-spacing:38.174400px;}
.ws6ac_c00001{word-spacing:38.196000px;}
.wsaf6_c00001{word-spacing:39.204000px;}
.wsaf7_c00001{word-spacing:39.254400px;}
.wsb4b_c00001{word-spacing:39.628800px;}
.ws5c4_c00001{word-spacing:40.327200px;}
.wsaf2_c00001{word-spacing:41.140800px;}
.wsaf1_c00001{word-spacing:41.198400px;}
.ws9b9_c00001{word-spacing:41.774400px;}
.ws36f_c00001{word-spacing:48.239100px;}
.ws8e3_c00001{word-spacing:48.247200px;}
.ws372_c00001{word-spacing:48.540744px;}
.ws370_c00001{word-spacing:48.564684px;}
.ws36e_c00001{word-spacing:48.583836px;}
.ws371_c00001{word-spacing:49.081788px;}
.ws686_c00001{word-spacing:67.341600px;}
._9_c00001{margin-left:-24.363108px;}
._a_c00001{margin-left:-23.084892px;}
._1c_c00001{margin-left:-19.512000px;}
._1d_c00001{margin-left:-18.360000px;}
._14_c00001{margin-left:-14.356080px;}
._13_c00001{margin-left:-12.355920px;}
._10_c00001{margin-left:-10.468080px;}
._11_c00001{margin-left:-8.832960px;}
._8_c00001{margin-left:-7.499520px;}
._b_c00001{margin-left:-6.440760px;}
._4_c00001{margin-left:-5.230440px;}
._3_c00001{margin-left:-4.028040px;}
._1_c00001{margin-left:-2.404800px;}
._0_c00001{margin-left:-1.322640px;}
._2_c00001{width:1.130400px;}
._5_c00001{width:2.896740px;}
._6_c00001{width:3.919176px;}
._12_c00001{width:4.975848px;}
._7_c00001{width:6.768720px;}
._e_c00001{width:7.963632px;}
._1e_c00001{width:9.137952px;}
._18_c00001{width:10.304280px;}
._1b_c00001{width:11.910672px;}
._20_c00001{width:12.916800px;}
._1a_c00001{width:14.011200px;}
._f_c00001{width:15.026400px;}
._15_c00001{width:16.502400px;}
._d_c00001{width:18.694080px;}
._19_c00001{width:19.892376px;}
._1f_c00001{width:22.786272px;}
._17_c00001{width:24.811200px;}
._21_c00001{width:33.379200px;}
._c_c00001{width:49.360284px;}
._16_c00001{width:125.368740px;}
.fc1_c00001{color:transparent;}
.fc3_c00001{color:rgb(51,51,51);}
.fc2_c00001{color:rgb(255,255,255);}
.fc0_c00001{color:rgb(0,0,0);}
.fs7_c00001{font-size:29.880000px;}
.fs3_c00001{font-size:38.880000px;}
.fs4_c00001{font-size:42.120000px;}
.fs9_c00001{font-size:47.662200px;}
.fs5_c00001{font-size:47.880000px;}
.fs2_c00001{font-size:54.000000px;}
.fsb_c00001{font-size:56.880000px;}
.fs0_c00001{font-size:60.120000px;}
.fs1_c00001{font-size:72.000000px;}
.fsc_c00001{font-size:76.094487px;}
.fs6_c00001{font-size:78.120000px;}
.fs8_c00001{font-size:83.880000px;}
.fsa_c00001{font-size:108.000000px;}
.y0_c00001{bottom:0.000000px;}
.y69b_c00001{bottom:0.090450px;}
.y6ac_c00001{bottom:0.090600px;}
.y6ae_c00001{bottom:9.900450px;}
.y6a5_c00001{bottom:10.890450px;}
.y6b0_c00001{bottom:18.630450px;}
.y69d_c00001{bottom:26.280450px;}
.y6b2_c00001{bottom:34.740450px;}
.y6a7_c00001{bottom:40.680450px;}
.y6b4_c00001{bottom:46.080450px;}
.y6b6_c00001{bottom:55.170450px;}
.y69f_c00001{bottom:56.970450px;}
.y2_c00001{bottom:57.450450px;}
.y3a_c00001{bottom:61.410450px;}
.y6b8_c00001{bottom:77.220450px;}
.y6a1_c00001{bottom:78.660450px;}
.y592_c00001{bottom:83.743050px;}
.y3ad_c00001{bottom:83.774010px;}
.y35e_c00001{bottom:83.799210px;}
.y9b2_c00001{bottom:83.929170px;}
.yac1_c00001{bottom:84.371250px;}
.y545_c00001{bottom:85.811250px;}
.y9a4_c00001{bottom:88.059810px;}
.y905_c00001{bottom:88.230000px;}
.y6c2_c00001{bottom:88.230450px;}
.yba_c00001{bottom:88.232250px;}
.y1d0_c00001{bottom:88.232970px;}
.y73a_c00001{bottom:88.233690px;}
.y144_c00001{bottom:88.234230px;}
.y20e_c00001{bottom:88.234950px;}
.y332_c00001{bottom:88.236030px;}
.y12e_c00001{bottom:88.236750px;}
.y1df_c00001{bottom:88.237470px;}
.y46d_c00001{bottom:88.237830px;}
.y97f_c00001{bottom:88.238190px;}
.y66a_c00001{bottom:88.238550px;}
.y748_c00001{bottom:88.239180px;}
.y219_c00001{bottom:88.239270px;}
.y2de_c00001{bottom:88.239810px;}
.ydc_c00001{bottom:88.240530px;}
.y8b9_c00001{bottom:88.241250px;}
.yb25_c00001{bottom:88.241760px;}
.y878_c00001{bottom:88.241970px;}
.ya0b_c00001{bottom:88.242330px;}
.y326_c00001{bottom:88.243050px;}
.y65d_c00001{bottom:88.243410px;}
.y3f1_c00001{bottom:88.244130px;}
.y4e4_c00001{bottom:88.245210px;}
.y27e_c00001{bottom:88.245390px;}
.y101_c00001{bottom:88.245570px;}
.y8e2_c00001{bottom:88.247190px;}
.yb1e_c00001{bottom:88.248990px;}
.ya99_c00001{bottom:88.249350px;}
.y4d5_c00001{bottom:88.251690px;}
.y390_c00001{bottom:88.255440px;}
.y90_c00001{bottom:88.256160px;}
.y23f_c00001{bottom:88.257270px;}
.y36c_c00001{bottom:88.257810px;}
.y561_c00001{bottom:88.264470px;}
.y68_c00001{bottom:88.264650px;}
.yafa_c00001{bottom:88.266060px;}
.y5b0_c00001{bottom:88.269480px;}
.y627_c00001{bottom:88.279950px;}
.y3d5_c00001{bottom:88.294890px;}
.y37_c00001{bottom:88.311060px;}
.y5de_c00001{bottom:88.321710px;}
.y4b8_c00001{bottom:88.337910px;}
.y450_c00001{bottom:88.357320px;}
.y6ba_c00001{bottom:89.820450px;}
.yb4f_c00001{bottom:90.390450px;}
.y6a3_c00001{bottom:95.850450px;}
.y591_c00001{bottom:97.508550px;}
.y3ac_c00001{bottom:97.539510px;}
.y35d_c00001{bottom:97.564710px;}
.y739_c00001{bottom:101.915400px;}
.y2f5_c00001{bottom:101.998470px;}
.y20d_c00001{bottom:102.002250px;}
.y1de_c00001{bottom:102.002970px;}
.y646_c00001{bottom:102.003690px;}
.y4e3_c00001{bottom:102.010710px;}
.y290_c00001{bottom:102.015570px;}
.y4d4_c00001{bottom:102.017190px;}
.y67_c00001{bottom:102.030150px;}
.y3d4_c00001{bottom:102.060390px;}
.y36_c00001{bottom:102.076560px;}
.y44f_c00001{bottom:102.122820px;}
.y9b1_c00001{bottom:102.195390px;}
.yac0_c00001{bottom:102.637470px;}
.y6c1_c00001{bottom:103.440450px;}
.yb3a_c00001{bottom:103.710450px;}
.y544_c00001{bottom:104.077470px;}
.ya53_c00001{bottom:105.606030px;}
.y9a3_c00001{bottom:106.326030px;}
.y904_c00001{bottom:106.496220px;}
.yb9_c00001{bottom:106.498470px;}
.y1cf_c00001{bottom:106.499190px;}
.y521_c00001{bottom:106.500450px;}
.y17e_c00001{bottom:106.502250px;}
.y12d_c00001{bottom:106.502970px;}
.y765_c00001{bottom:106.503690px;}
.y46c_c00001{bottom:106.504050px;}
.y669_c00001{bottom:106.504770px;}
.y747_c00001{bottom:106.505400px;}
.y218_c00001{bottom:106.505490px;}
.y2c7_c00001{bottom:106.506030px;}
.ydb_c00001{bottom:106.506750px;}
.y8b8_c00001{bottom:106.507470px;}
.yb24_c00001{bottom:106.507980px;}
.y877_c00001{bottom:106.508190px;}
.ya02_c00001{bottom:106.508550px;}
.y325_c00001{bottom:106.509270px;}
.y65c_c00001{bottom:106.509630px;}
.y3f0_c00001{bottom:106.510350px;}
.y27d_c00001{bottom:106.511610px;}
.y100_c00001{bottom:106.511790px;}
.y8e1_c00001{bottom:106.513410px;}
.yb1d_c00001{bottom:106.515210px;}
.ya98_c00001{bottom:106.515570px;}
.y38f_c00001{bottom:106.521660px;}
.y8f_c00001{bottom:106.522380px;}
.y23e_c00001{bottom:106.523490px;}
.y36b_c00001{bottom:106.524030px;}
.y560_c00001{bottom:106.530690px;}
.yaf9_c00001{bottom:106.532280px;}
.y5af_c00001{bottom:106.535700px;}
.y626_c00001{bottom:106.546170px;}
.y5dd_c00001{bottom:106.587930px;}
.y4b7_c00001{bottom:106.604130px;}
.yb49_c00001{bottom:106.860450px;}
.y3ab_c00001{bottom:111.400770px;}
.y35c_c00001{bottom:111.425970px;}
.yc18_c00001{bottom:112.890450px;}
.yb43_c00001{bottom:115.860450px;}
.y645_c00001{bottom:115.864950px;}
.y738_c00001{bottom:115.868010px;}
.y590_c00001{bottom:115.870530px;}
.y4e2_c00001{bottom:115.871970px;}
.y28f_c00001{bottom:115.876830px;}
.y35_c00001{bottom:115.937820px;}
.y44e_c00001{bottom:115.984080px;}
.ybf2_c00001{bottom:117.120450px;}
.y543_c00001{bottom:117.842970px;}
.y903_c00001{bottom:120.357480px;}
.y1ce_c00001{bottom:120.360450px;}
.y12c_c00001{bottom:120.364230px;}
.y1dd_c00001{bottom:120.364950px;}
.y217_c00001{bottom:120.366750px;}
.yae1_c00001{bottom:120.368010px;}
.y8b7_c00001{bottom:120.368730px;}
.y876_c00001{bottom:120.369450px;}
.y8ec_c00001{bottom:120.370530px;}
.yff_c00001{bottom:120.373050px;}
.y1f3_c00001{bottom:120.375750px;}
.y25c_c00001{bottom:120.376830px;}
.y4d3_c00001{bottom:120.379170px;}
.y8e_c00001{bottom:120.383640px;}
.y66_c00001{bottom:120.392130px;}
.y3d3_c00001{bottom:120.422370px;}
.y5dc_c00001{bottom:120.449190px;}
.y9b0_c00001{bottom:120.461610px;}
.y4b6_c00001{bottom:120.465390px;}
.yabf_c00001{bottom:120.903690px;}
.y520_c00001{bottom:121.710450px;}
.yc04_c00001{bottom:121.890450px;}
.ya52_c00001{bottom:123.968010px;}
.y6c0_c00001{bottom:124.140450px;}
.y9a2_c00001{bottom:124.688010px;}
.yb8_c00001{bottom:124.860450px;}
.y17d_c00001{bottom:124.864230px;}
.y16d_c00001{bottom:124.864950px;}
.y158_c00001{bottom:124.866030px;}
.y608_c00001{bottom:124.866750px;}
.y746_c00001{bottom:124.867380px;}
.y143_c00001{bottom:124.868010px;}
.yda_c00001{bottom:124.868730px;}
.yb23_c00001{bottom:124.869960px;}
.y11e_c00001{bottom:124.870530px;}
.y324_c00001{bottom:124.871250px;}
.y65b_c00001{bottom:124.871610px;}
.y3ef_c00001{bottom:124.872330px;}
.y27c_c00001{bottom:124.873590px;}
.y651_c00001{bottom:124.873770px;}
.y8e0_c00001{bottom:124.875390px;}
.yb1c_c00001{bottom:124.877190px;}
.ya97_c00001{bottom:124.877550px;}
.y48b_c00001{bottom:124.878270px;}
.y38e_c00001{bottom:124.883640px;}
.y23d_c00001{bottom:124.885470px;}
.y36a_c00001{bottom:124.886010px;}
.y55f_c00001{bottom:124.892670px;}
.yaf8_c00001{bottom:124.894260px;}
.y5ae_c00001{bottom:124.897680px;}
.y625_c00001{bottom:124.908150px;}
.y3aa_c00001{bottom:125.166270px;}
.y35b_c00001{bottom:125.191470px;}
.y97e_c00001{bottom:129.633690px;}
.y644_c00001{bottom:129.634950px;}
.y4e1_c00001{bottom:129.637470px;}
.y34_c00001{bottom:129.703320px;}
.y44d_c00001{bottom:129.749580px;}
.y542_c00001{bottom:131.704230px;}
.yc17_c00001{bottom:133.140450px;}
.y902_c00001{bottom:134.039190px;}
.y1dc_c00001{bottom:134.134230px;}
.y875_c00001{bottom:134.134950px;}
.y58f_c00001{bottom:134.136750px;}
.yfe_c00001{bottom:134.138550px;}
.y1f2_c00001{bottom:134.141250px;}
.y25b_c00001{bottom:134.142330px;}
.y28e_c00001{bottom:134.143050px;}
.y8d_c00001{bottom:134.149140px;}
.y4b5_c00001{bottom:134.230890px;}
.yabe_c00001{bottom:134.764950px;}
.yb9a_c00001{bottom:135.390450px;}
.y1cd_c00001{bottom:135.570450px;}
.ybf1_c00001{bottom:137.370450px;}
.yb39_c00001{bottom:138.180450px;}
.y12b_c00001{bottom:138.630450px;}
.y419_c00001{bottom:138.632250px;}
.y16c_c00001{bottom:138.632970px;}
.yd9_c00001{bottom:138.634230px;}
.y323_c00001{bottom:138.636750px;}
.y5b7_c00001{bottom:138.641250px;}
.y4d2_c00001{bottom:138.645390px;}
.y55e_c00001{bottom:138.658170px;}
.y65_c00001{bottom:138.658350px;}
.y5ad_c00001{bottom:138.663180px;}
.y624_c00001{bottom:138.673650px;}
.y3d2_c00001{bottom:138.688590px;}
.y5db_c00001{bottom:138.715410px;}
.y9af_c00001{bottom:138.823590px;}
.y3a9_c00001{bottom:138.931770px;}
.y35a_c00001{bottom:138.956970px;}
.ybd2_c00001{bottom:139.890450px;}
.yb7_c00001{bottom:140.070450px;}
.yb48_c00001{bottom:141.240450px;}
.yc03_c00001{bottom:142.140450px;}
.ya51_c00001{bottom:142.234230px;}
.y51f_c00001{bottom:142.410450px;}
.y9a1_c00001{bottom:142.954230px;}
.y6fc_c00001{bottom:143.130450px;}
.y157_c00001{bottom:143.132250px;}
.y17c_c00001{bottom:143.132970px;}
.y745_c00001{bottom:143.133600px;}
.y142_c00001{bottom:143.134230px;}
.y197_c00001{bottom:143.134950px;}
.yb22_c00001{bottom:143.136180px;}
.y11d_c00001{bottom:143.136750px;}
.y65a_c00001{bottom:143.137830px;}
.y3ee_c00001{bottom:143.138550px;}
.y27b_c00001{bottom:143.139810px;}
.y650_c00001{bottom:143.139990px;}
.y8df_c00001{bottom:143.141610px;}
.yb1b_c00001{bottom:143.143410px;}
.ya96_c00001{bottom:143.143770px;}
.y48a_c00001{bottom:143.144490px;}
.y38d_c00001{bottom:143.149860px;}
.y23c_c00001{bottom:143.151690px;}
.y369_c00001{bottom:143.152230px;}
.yaf7_c00001{bottom:143.160480px;}
.y643_c00001{bottom:143.399190px;}
.y4e0_c00001{bottom:143.402970px;}
.y33_c00001{bottom:143.468820px;}
.y44c_c00001{bottom:143.515080px;}
.yc01_c00001{bottom:144.390450px;}
.y6bf_c00001{bottom:144.840450px;}
.ybb4_c00001{bottom:146.280450px;}
.y901_c00001{bottom:147.898470px;}
.yfd_c00001{bottom:147.904050px;}
.y874_c00001{bottom:147.906030px;}
.y1f1_c00001{bottom:147.906750px;}
.y25a_c00001{bottom:147.907830px;}
.y8c_c00001{bottom:147.914640px;}
.yabd_c00001{bottom:148.542120px;}
.yb82_c00001{bottom:148.890450px;}
.y541_c00001{bottom:149.970450px;}
.yb42_c00001{bottom:150.240450px;}
.yb63_c00001{bottom:151.050450px;}
.y16b_c00001{bottom:152.398470px;}
.y1db_c00001{bottom:152.399730px;}
.y227_c00001{bottom:152.400450px;}
.y322_c00001{bottom:152.402250px;}
.y58e_c00001{bottom:152.402970px;}
.y737_c00001{bottom:152.406030px;}
.y28d_c00001{bottom:152.409270px;}
.y55d_c00001{bottom:152.423670px;}
.y64_c00001{bottom:152.423850px;}
.y623_c00001{bottom:152.439150px;}
.y5da_c00001{bottom:152.480910px;}
.y4b4_c00001{bottom:152.497110px;}
.y3a8_c00001{bottom:152.793030px;}
.y359_c00001{bottom:152.818230px;}
.yc16_c00001{bottom:153.390450px;}
.y12a_c00001{bottom:153.840450px;}
.yb99_c00001{bottom:155.640450px;}
.y1cc_c00001{bottom:156.270450px;}
.y196_c00001{bottom:156.898470px;}
.y216_c00001{bottom:156.899190px;}
.yd8_c00001{bottom:156.900450px;}
.y9e2_c00001{bottom:156.902250px;}
.y76e_c00001{bottom:156.902970px;}
.y20c_c00001{bottom:156.904050px;}
.y64f_c00001{bottom:156.905490px;}
.y5b6_c00001{bottom:156.907470px;}
.y4d1_c00001{bottom:156.911610px;}
.y2ab_c00001{bottom:156.912330px;}
.y38c_c00001{bottom:156.915360px;}
.y5ac_c00001{bottom:156.929400px;}
.y3d1_c00001{bottom:156.954810px;}
.y9ae_c00001{bottom:157.089810px;}
.y642_c00001{bottom:157.257480px;}
.y4df_c00001{bottom:157.264230px;}
.y97d_c00001{bottom:157.269450px;}
.y32_c00001{bottom:157.330080px;}
.y44b_c00001{bottom:157.376340px;}
.ybf0_c00001{bottom:157.620450px;}
.yc24_c00001{bottom:157.890450px;}
.y6fb_c00001{bottom:158.340450px;}
.yb4e_c00001{bottom:159.240450px;}
.ybc8_c00001{bottom:160.140450px;}
.ya50_c00001{bottom:160.500450px;}
.yb6_c00001{bottom:160.770450px;}
.y9a0_c00001{bottom:161.218470px;}
.y156_c00001{bottom:161.398470px;}
.y17b_c00001{bottom:161.399190px;}
.y744_c00001{bottom:161.399820px;}
.y141_c00001{bottom:161.400450px;}
.yb21_c00001{bottom:161.402400px;}
.y11c_c00001{bottom:161.402970px;}
.y659_c00001{bottom:161.404050px;}
.y27a_c00001{bottom:161.406030px;}
.y8de_c00001{bottom:161.407830px;}
.yb1a_c00001{bottom:161.409630px;}
.ya95_c00001{bottom:161.409990px;}
.y489_c00001{bottom:161.410710px;}
.y23b_c00001{bottom:161.417910px;}
.y368_c00001{bottom:161.418450px;}
.yaf6_c00001{bottom:161.426700px;}
.y1f0_c00001{bottom:161.768010px;}
.y8b_c00001{bottom:161.775900px;}
.yabc_c00001{bottom:162.307620px;}
.yc2a_c00001{bottom:162.390450px;}
.y51e_c00001{bottom:163.110450px;}
.y808_c00001{bottom:163.110600px;}
.yc00_c00001{bottom:164.640450px;}
.y540_c00001{bottom:165.180450px;}
.y1da_c00001{bottom:166.260450px;}
.yfc_c00001{bottom:166.266030px;}
.y873_c00001{bottom:166.268010px;}
.y259_c00001{bottom:166.269810px;}
.y28c_c00001{bottom:166.270530px;}
.y55c_c00001{bottom:166.284930px;}
.y63_c00001{bottom:166.285110px;}
.y622_c00001{bottom:166.300410px;}
.y5d9_c00001{bottom:166.342170px;}
.y4b3_c00001{bottom:166.358370px;}
.ybb3_c00001{bottom:166.530600px;}
.y3a7_c00001{bottom:166.558530px;}
.y358_c00001{bottom:166.583730px;}
.y226_c00001{bottom:167.610450px;}
.yb81_c00001{bottom:169.140450px;}
.y6be_c00001{bottom:169.950600px;}
.y16a_c00001{bottom:170.760450px;}
.y321_c00001{bottom:170.764230px;}
.y58d_c00001{bottom:170.764950px;}
.y8b6_c00001{bottom:170.767470px;}
.y3fa_c00001{bottom:170.768010px;}
.y215_c00001{bottom:170.768730px;}
.y38b_c00001{bottom:170.776620px;}
.y641_c00001{bottom:170.939190px;}
.y97c_c00001{bottom:171.034950px;}
.y31_c00001{bottom:171.095580px;}
.y44a_c00001{bottom:171.141840px;}
.yb62_c00001{bottom:171.300450px;}
.yd7_c00001{bottom:172.110450px;}
.yb38_c00001{bottom:172.560450px;}
.yc15_c00001{bottom:173.640450px;}
.y84a_c00001{bottom:174.076500px;}
.y129_c00001{bottom:174.540450px;}
.y17a_c00001{bottom:175.260450px;}
.y743_c00001{bottom:175.261080px;}
.y418_c00001{bottom:175.264230px;}
.y76d_c00001{bottom:175.264950px;}
.y20b_c00001{bottom:175.266030px;}
.y64e_c00001{bottom:175.267470px;}
.y8fe_c00001{bottom:175.268010px;}
.y5b5_c00001{bottom:175.269450px;}
.ya94_c00001{bottom:175.271250px;}
.y488_c00001{bottom:175.271970px;}
.y4d0_c00001{bottom:175.273590px;}
.y2aa_c00001{bottom:175.274310px;}
.y5ab_c00001{bottom:175.291380px;}
.y3d0_c00001{bottom:175.316790px;}
.y9ad_c00001{bottom:175.356030px;}
.y4de_c00001{bottom:175.530450px;}
.ya4f_c00001{bottom:175.710450px;}
.yb98_c00001{bottom:175.890450px;}
.yad6_c00001{bottom:176.340450px;}
.y140_c00001{bottom:176.610450px;}
.y2f4_c00001{bottom:176.970450px;}
.y1cb_c00001{bottom:176.970600px;}
.y6fa_c00001{bottom:179.040450px;}
.y99f_c00001{bottom:179.580450px;}
.y1a9_c00001{bottom:179.760450px;}
.y155_c00001{bottom:179.764380px;}
.y11b_c00001{bottom:179.764950px;}
.y658_c00001{bottom:179.766030px;}
.y279_c00001{bottom:179.768010px;}
.y8dd_c00001{bottom:179.769810px;}
.yb19_c00001{bottom:179.771610px;}
.y23a_c00001{bottom:179.779890px;}
.y367_c00001{bottom:179.780430px;}
.yaf5_c00001{bottom:179.788680px;}
.y1ef_c00001{bottom:180.034230px;}
.y8a_c00001{bottom:180.042120px;}
.y55b_c00001{bottom:180.050430px;}
.y62_c00001{bottom:180.050610px;}
.y621_c00001{bottom:180.065910px;}
.y5d8_c00001{bottom:180.107670px;}
.y4b2_c00001{bottom:180.123870px;}
.y3a6_c00001{bottom:180.324030px;}
.y357_c00001{bottom:180.349230px;}
.ybc7_c00001{bottom:180.390450px;}
.yabb_c00001{bottom:180.573840px;}
.yb5_c00001{bottom:181.470450px;}
.y1d9_c00001{bottom:181.470600px;}
.yc29_c00001{bottom:182.640450px;}
.y58c_c00001{bottom:184.530450px;}
.yfb_c00001{bottom:184.532250px;}
.y872_c00001{bottom:184.534230px;}
.y258_c00001{bottom:184.536030px;}
.y28b_c00001{bottom:184.536750px;}
.yb41_c00001{bottom:184.710450px;}
.y97b_c00001{bottom:184.802970px;}
.y640_c00001{bottom:184.804770px;}
.y30_c00001{bottom:184.861080px;}
.y449_c00001{bottom:184.907340px;}
.y53f_c00001{bottom:185.880450px;}
.y169_c00001{bottom:185.970600px;}
.y699_c00001{bottom:186.240450px;}
.y6a9_c00001{bottom:186.244950px;}
.y8af_c00001{bottom:186.780450px;}
.y685_c00001{bottom:187.140450px;}
.y225_c00001{bottom:188.310450px;}
.y742_c00001{bottom:188.942790px;}
.y320_c00001{bottom:189.030450px;}
.y76c_c00001{bottom:189.032250px;}
.y8b5_c00001{bottom:189.033690px;}
.y3f9_c00001{bottom:189.034230px;}
.y214_c00001{bottom:189.034950px;}
.y487_c00001{bottom:189.037470px;}
.y38a_c00001{bottom:189.042840px;}
.yb80_c00001{bottom:189.390450px;}
.y179_c00001{bottom:190.470600px;}
.y4dd_c00001{bottom:190.740450px;}
.y849_c00001{bottom:190.910100px;}
.yd6_c00001{bottom:192.810450px;}
.y417_c00001{bottom:193.530450px;}
.y20a_c00001{bottom:193.532250px;}
.y64d_c00001{bottom:193.533690px;}
.y607_c00001{bottom:193.534230px;}
.y11a_c00001{bottom:193.534950px;}
.ya93_c00001{bottom:193.537470px;}
.y4cf_c00001{bottom:193.539810px;}
.y2a9_c00001{bottom:193.540530px;}
.y366_c00001{bottom:193.545930px;}
.y5aa_c00001{bottom:193.557600px;}
.y3cf_c00001{bottom:193.583010px;}
.yb4d_c00001{bottom:193.710450px;}
.y9ac_c00001{bottom:193.718010px;}
.y89_c00001{bottom:193.807620px;}
.y55a_c00001{bottom:193.815930px;}
.y620_c00001{bottom:193.831410px;}
.y5d7_c00001{bottom:193.873170px;}
.y4b1_c00001{bottom:193.889370px;}
.yc14_c00001{bottom:193.890450px;}
.y69a_c00001{bottom:194.070000px;}
.y897_c00001{bottom:194.070450px;}
.y3a5_c00001{bottom:194.185290px;}
.y356_c00001{bottom:194.210490px;}
.yaba_c00001{bottom:194.435100px;}
.y6ab_c00001{bottom:194.610000px;}
.y6bc_c00001{bottom:194.700600px;}
.y6bd_c00001{bottom:194.704950px;}
.y6aa_c00001{bottom:194.709450px;}
.y99e_c00001{bottom:194.790450px;}
.y1a8_c00001{bottom:194.970600px;}
.yada_c00001{bottom:195.240450px;}
.y128_c00001{bottom:195.240600px;}
.y687_c00001{bottom:195.600450px;}
.y686_c00001{bottom:195.604950px;}
.ybef_c00001{bottom:195.870450px;}
.yc23_c00001{bottom:196.140450px;}
.ya4e_c00001{bottom:196.410450px;}
.y13f_c00001{bottom:197.310450px;}
.y154_c00001{bottom:198.030600px;}
.y657_c00001{bottom:198.032250px;}
.y278_c00001{bottom:198.034230px;}
.y8dc_c00001{bottom:198.036030px;}
.yb18_c00001{bottom:198.037830px;}
.y239_c00001{bottom:198.046110px;}
.yaf4_c00001{bottom:198.054900px;}
.y8c4_c00001{bottom:198.077610px;}
.y1ee_c00001{bottom:198.300450px;}
.y61_c00001{bottom:198.316830px;}
.ybd1_c00001{bottom:198.390450px;}
.y97a_c00001{bottom:198.664230px;}
.y2f_c00001{bottom:198.722340px;}
.y448_c00001{bottom:198.768600px;}
.y51d_c00001{bottom:198.908310px;}
.y58b_c00001{bottom:199.740450px;}
.ybc6_c00001{bottom:200.640450px;}
.y6ad_c00001{bottom:201.450600px;}
.y8d5_c00001{bottom:201.990450px;}
.y1d8_c00001{bottom:202.170600px;}
.yb51_c00001{bottom:202.710450px;}
.yfa_c00001{bottom:202.798470px;}
.y8b4_c00001{bottom:202.799190px;}
.y213_c00001{bottom:202.800450px;}
.y257_c00001{bottom:202.802250px;}
.y28a_c00001{bottom:202.802970px;}
.y741_c00001{bottom:202.804050px;}
.y389_c00001{bottom:202.808340px;}
.ybff_c00001{bottom:202.890450px;}
.y63f_c00001{bottom:203.166750px;}
.y69c_c00001{bottom:203.340450px;}
.y31f_c00001{bottom:204.240450px;}
.ybb2_c00001{bottom:204.780600px;}
.yae2_c00001{bottom:205.680450px;}
.y53e_c00001{bottom:206.580450px;}
.y168_c00001{bottom:206.670600px;}
.yb37_c00001{bottom:207.030450px;}
.y3f8_c00001{bottom:207.298470px;}
.y119_c00001{bottom:207.299190px;}
.y736_c00001{bottom:207.300450px;}
.ya92_c00001{bottom:207.302970px;}
.y365_c00001{bottom:207.311430px;}
.y5a9_c00001{bottom:207.323100px;}
.y88_c00001{bottom:207.668880px;}
.y559_c00001{bottom:207.677190px;}
.y61f_c00001{bottom:207.692670px;}
.y5d6_c00001{bottom:207.734430px;}
.y4b0_c00001{bottom:207.750630px;}
.y3a4_c00001{bottom:207.950790px;}
.y355_c00001{bottom:207.975990px;}
.yab9_c00001{bottom:208.200600px;}
.y799_c00001{bottom:208.701390px;}
.y416_c00001{bottom:208.740450px;}
.y224_c00001{bottom:209.010450px;}
.yb61_c00001{bottom:209.550450px;}
.yb7f_c00001{bottom:209.640450px;}
.yb47_c00001{bottom:210.090450px;}
.y6af_c00001{bottom:210.180450px;}
.yad5_c00001{bottom:210.810450px;}
.y178_c00001{bottom:211.170600px;}
.y4dc_c00001{bottom:211.440450px;}
.y209_c00001{bottom:211.798470px;}
.y606_c00001{bottom:211.800450px;}
.y4ce_c00001{bottom:211.806030px;}
.y2a8_c00001{bottom:211.806750px;}
.y3ce_c00001{bottom:211.849230px;}
.y9ab_c00001{bottom:211.984230px;}
.y2e_c00001{bottom:212.487840px;}
.y447_c00001{bottom:212.534100px;}
.y153_c00001{bottom:213.240450px;}
.yd5_c00001{bottom:213.510450px;}
.y601_c00001{bottom:213.510600px;}
.yb97_c00001{bottom:214.140450px;}
.y8c3_c00001{bottom:214.911210px;}
.y99d_c00001{bottom:215.490450px;}
.y1a7_c00001{bottom:215.670600px;}
.y51c_c00001{bottom:215.741910px;}
.y861_c00001{bottom:215.940450px;}
.y81c_c00001{bottom:216.030450px;}
.ybee_c00001{bottom:216.120450px;}
.y656_c00001{bottom:216.298470px;}
.y277_c00001{bottom:216.300450px;}
.y8db_c00001{bottom:216.302250px;}
.yb17_c00001{bottom:216.304050px;}
.y238_c00001{bottom:216.312330px;}
.yaf3_c00001{bottom:216.321120px;}
.yc22_c00001{bottom:216.390450px;}
.y8b3_c00001{bottom:216.660450px;}
.y289_c00001{bottom:216.664230px;}
.y388_c00001{bottom:216.669600px;}
.y60_c00001{bottom:216.678810px;}
.y848_c00001{bottom:216.836850px;}
.y994_c00001{bottom:216.840600px;}
.y979_c00001{bottom:216.932250px;}
.ya4d_c00001{bottom:217.110600px;}
.y807_c00001{bottom:217.740600px;}
.y212_c00001{bottom:218.010450px;}
.y13e_c00001{bottom:218.010600px;}
.y941_c00001{bottom:218.190450px;}
.ybd0_c00001{bottom:218.640450px;}
.y6b1_c00001{bottom:218.910450px;}
.y404_c00001{bottom:219.000450px;}
.yb4c_c00001{bottom:219.090450px;}
.y58a_c00001{bottom:220.440450px;}
.y300_c00001{bottom:220.530450px;}
.yc02_c00001{bottom:220.890450px;}
.y6f9_c00001{bottom:221.056500px;}
.y64c_c00001{bottom:221.160450px;}
.yf9_c00001{bottom:221.164230px;}
.y740_c00001{bottom:221.166030px;}
.y118_c00001{bottom:221.169450px;}
.y364_c00001{bottom:221.172690px;}
.y5a8_c00001{bottom:221.184360px;}
.y63e_c00001{bottom:221.432970px;}
.y87_c00001{bottom:221.434380px;}
.y558_c00001{bottom:221.442690px;}
.y61e_c00001{bottom:221.458170px;}
.y5d5_c00001{bottom:221.499930px;}
.y4af_c00001{bottom:221.516130px;}
.ya87_c00001{bottom:221.610450px;}
.y3a3_c00001{bottom:221.716290px;}
.y354_c00001{bottom:221.741490px;}
.y735_c00001{bottom:222.510450px;}
.y1d7_c00001{bottom:222.870450px;}
.ybfe_c00001{bottom:223.140450px;}
.yab8_c00001{bottom:223.410450px;}
.yb0e_c00001{bottom:224.130600px;}
.y31e_c00001{bottom:224.940450px;}
.ybb1_c00001{bottom:225.030450px;}
.y798_c00001{bottom:225.534990px;}
.y76b_c00001{bottom:225.660450px;}
.y3f7_c00001{bottom:225.664230px;}
.y2d_c00001{bottom:226.253340px;}
.y446_c00001{bottom:226.299600px;}
.yad9_c00001{bottom:226.560450px;}
.y605_c00001{bottom:227.010450px;}
.y167_c00001{bottom:227.370450px;}
.y2f3_c00001{bottom:228.000450px;}
.yb40_c00001{bottom:228.090450px;}
.y5f4_c00001{bottom:228.360600px;}
.y684_c00001{bottom:228.900450px;}
.y415_c00001{bottom:229.440450px;}
.yb60_c00001{bottom:229.800450px;}
.yb7e_c00001{bottom:229.890450px;}
.y3ed_c00001{bottom:230.160450px;}
.y208_c00001{bottom:230.164230px;}
.y4cd_c00001{bottom:230.168010px;}
.y2a7_c00001{bottom:230.168730px;}
.y3cd_c00001{bottom:230.211210px;}
.y9aa_c00001{bottom:230.250450px;}
.y387_c00001{bottom:230.435100px;}
.y5f_c00001{bottom:230.444310px;}
.y9ce_c00001{bottom:230.610450px;}
.y276_c00001{bottom:231.510450px;}
.y8c2_c00001{bottom:231.834990px;}
.y177_c00001{bottom:231.870450px;}
.y69e_c00001{bottom:231.960600px;}
.y4db_c00001{bottom:232.140450px;}
.y51b_c00001{bottom:232.665690px;}
.y847_c00001{bottom:233.670450px;}
.y47a_c00001{bottom:233.760450px;}
.y152_c00001{bottom:233.940450px;}
.y1ed_c00001{bottom:234.210450px;}
.yb96_c00001{bottom:234.390450px;}
.y655_c00001{bottom:234.660450px;}
.y8da_c00001{bottom:234.664230px;}
.yb16_c00001{bottom:234.666030px;}
.y237_c00001{bottom:234.674310px;}
.yaf2_c00001{bottom:234.683100px;}
.y896_c00001{bottom:234.840600px;}
.y288_c00001{bottom:234.930450px;}
.y117_c00001{bottom:234.934950px;}
.y363_c00001{bottom:234.938190px;}
.y1bf_c00001{bottom:235.020450px;}
.y978_c00001{bottom:235.198470px;}
.y557_c00001{bottom:235.208190px;}
.y61d_c00001{bottom:235.223670px;}
.y5d4_c00001{bottom:235.265430px;}
.y4ae_c00001{bottom:235.281630px;}
.y996_c00001{bottom:235.560450px;}
.y1ca_c00001{bottom:235.560600px;}
.y3a2_c00001{bottom:235.577550px;}
.y353_c00001{bottom:235.602750px;}
.y190_c00001{bottom:235.650450px;}
.y99c_c00001{bottom:236.190450px;}
.y6b3_c00001{bottom:236.280600px;}
.y46b_c00001{bottom:236.370450px;}
.y1a6_c00001{bottom:236.370600px;}
.y8d4_c00001{bottom:236.460450px;}
.y956_c00001{bottom:236.640450px;}
.yb50_c00001{bottom:237.090450px;}
.y920_c00001{bottom:237.270450px;}
.y6f8_c00001{bottom:237.890100px;}
.y211_c00001{bottom:238.710450px;}
.ybc5_c00001{bottom:238.890450px;}
.yf8_c00001{bottom:239.430450px;}
.y73f_c00001{bottom:239.432250px;}
.y5a7_c00001{bottom:239.450580px;}
.y63d_c00001{bottom:239.699190px;}
.y86_c00001{bottom:239.700600px;}
.yadb_c00001{bottom:240.060450px;}
.y2c_c00001{bottom:240.114600px;}
.y76a_c00001{bottom:240.870450px;}
.yab3_c00001{bottom:241.050600px;}
.y589_c00001{bottom:241.140450px;}
.y77e_c00001{bottom:242.310450px;}
.y797_c00001{bottom:242.458770px;}
.y734_c00001{bottom:243.210450px;}
.yc28_c00001{bottom:243.390450px;}
.yd4_c00001{bottom:243.930450px;}
.y726_c00001{bottom:244.002720px;}
.yab7_c00001{bottom:244.110450px;}
.y386_c00001{bottom:244.200600px;}
.y5e_c00001{bottom:244.209810px;}
.yb46_c00001{bottom:244.560450px;}
.y445_c00001{bottom:244.661580px;}
.y53d_c00001{bottom:245.060580px;}
.yad4_c00001{bottom:245.190450px;}
.y3ec_c00001{bottom:245.370450px;}
.y9a9_c00001{bottom:245.460450px;}
.y8eb_c00001{bottom:245.640450px;}
.y31d_c00001{bottom:245.640600px;}
.yb4_c00001{bottom:246.090450px;}
.y6b5_c00001{bottom:246.360600px;}
.y6da_c00001{bottom:246.691560px;}
.y7f0_c00001{bottom:247.530450px;}
.y604_c00001{bottom:247.710450px;}
.y2c6_c00001{bottom:248.160450px;}
.y4cc_c00001{bottom:248.434230px;}
.y207_c00001{bottom:248.434950px;}
.y3cc_c00001{bottom:248.477430px;}
.y116_c00001{bottom:248.700450px;}
.y362_c00001{bottom:248.703690px;}
.y556_c00001{bottom:249.069450px;}
.y61c_c00001{bottom:249.084930px;}
.y5d3_c00001{bottom:249.126690px;}
.y4ad_c00001{bottom:249.142890px;}
.y352_c00001{bottom:249.368250px;}
.y51a_c00001{bottom:249.499290px;}
.y654_c00001{bottom:249.870450px;}
.y287_c00001{bottom:250.140450px;}
.y81b_c00001{bottom:250.410450px;}
.y993_c00001{bottom:251.220600px;}
.y8fb_c00001{bottom:251.940450px;}
.y275_c00001{bottom:252.210450px;}
.y806_c00001{bottom:252.210600px;}
.yc13_c00001{bottom:252.390450px;}
.y8b2_c00001{bottom:252.570450px;}
.y940_c00001{bottom:252.660450px;}
.y8d9_c00001{bottom:252.930450px;}
.yb15_c00001{bottom:252.932250px;}
.y236_c00001{bottom:252.940530px;}
.yaf1_c00001{bottom:252.949320px;}
.y5a6_c00001{bottom:253.216080px;}
.y403_c00001{bottom:253.380450px;}
.y63c_c00001{bottom:253.560450px;}
.y3a1_c00001{bottom:253.843770px;}
.y2b_c00001{bottom:253.880100px;}
.y912_c00001{bottom:254.550450px;}
.yf7_c00001{bottom:254.640450px;}
.y6f7_c00001{bottom:254.813880px;}
.y85_c00001{bottom:254.910450px;}
.y1ec_c00001{bottom:254.910600px;}
.y8ae_c00001{bottom:255.630450px;}
.ya86_c00001{bottom:255.990450px;}
.ybed_c00001{bottom:256.620450px;}
.ybd6_c00001{bottom:256.890450px;}
.y64b_c00001{bottom:257.070450px;}
.y8c1_c00001{bottom:257.671560px;}
.y73e_c00001{bottom:257.698470px;}
.y7b5_c00001{bottom:258.060450px;}
.y1a5_c00001{bottom:258.384510px;}
.y444_c00001{bottom:258.427080px;}
.yb0d_c00001{bottom:258.510600px;}
.y3f6_c00001{bottom:259.140450px;}
.y796_c00001{bottom:259.292370px;}
.y210_c00001{bottom:259.410450px;}
.y725_c00001{bottom:260.836320px;}
.y166_c00001{bottom:260.940450px;}
.ybfd_c00001{bottom:261.390450px;}
.y769_c00001{bottom:261.570450px;}
.y6a0_c00001{bottom:261.840450px;}
.y53c_c00001{bottom:261.984360px;}
.y6b7_c00001{bottom:262.110450px;}
.y206_c00001{bottom:262.200450px;}
.y3cb_c00001{bottom:262.242930px;}
.y2f2_c00001{bottom:262.470450px;}
.yb4b_c00001{bottom:262.560450px;}
.y361_c00001{bottom:262.564950px;}
.y5d_c00001{bottom:262.571790px;}
.y5f3_c00001{bottom:262.830600px;}
.y555_c00001{bottom:262.834950px;}
.y61b_c00001{bottom:262.850430px;}
.y5d2_c00001{bottom:262.892190px;}
.y4ac_c00001{bottom:262.908390px;}
.y351_c00001{bottom:263.133750px;}
.ybb0_c00001{bottom:263.280450px;}
.y6d9_c00001{bottom:263.615340px;}
.y115_c00001{bottom:263.910450px;}
.yab6_c00001{bottom:264.810450px;}
.y9cd_c00001{bottom:264.990450px;}
.y3eb_c00001{bottom:266.070450px;}
.y9a8_c00001{bottom:266.160450px;}
.y519_c00001{bottom:266.423070px;}
.y4cb_c00001{bottom:266.700450px;}
.y5a5_c00001{bottom:267.077340px;}
.y977_c00001{bottom:267.330450px;}
.y3a0_c00001{bottom:267.609270px;}
.y2a_c00001{bottom:267.645600px;}
.y7c0_c00001{bottom:267.780450px;}
.yb5f_c00001{bottom:268.050450px;}
.y8d8_c00001{bottom:268.140450px;}
.y479_c00001{bottom:268.230450px;}
.y603_c00001{bottom:268.410450px;}
.y63b_c00001{bottom:268.680450px;}
.ya3e_c00001{bottom:268.936320px;}
.y895_c00001{bottom:269.310600px;}
.y1be_c00001{bottom:269.400450px;}
.y995_c00001{bottom:269.940450px;}
.y13d_c00001{bottom:269.940600px;}
.y18f_c00001{bottom:270.120450px;}
.y653_c00001{bottom:270.570450px;}
.y286_c00001{bottom:270.840450px;}
.y955_c00001{bottom:271.110450px;}
.yb14_c00001{bottom:271.198470px;}
.y235_c00001{bottom:271.206750px;}
.yaf0_c00001{bottom:271.215540px;}
.yb3f_c00001{bottom:271.560450px;}
.y91f_c00001{bottom:271.650450px;}
.y443_c00001{bottom:272.192580px;}
.yc12_c00001{bottom:272.640450px;}
.y8e3_c00001{bottom:272.910450px;}
.y274_c00001{bottom:272.910600px;}
.y8b1_c00001{bottom:273.180450px;}
.y7d8_c00001{bottom:273.360450px;}
.y195_c00001{bottom:274.530450px;}
.y8c0_c00001{bottom:274.595340px;}
.yb95_c00001{bottom:274.890450px;}
.y1a4_c00001{bottom:275.218110px;}
.yf6_c00001{bottom:275.340450px;}
.yab2_c00001{bottom:275.520600px;}
.y84_c00001{bottom:275.610450px;}
.y2dc_c00001{bottom:276.060450px;}
.y2a6_c00001{bottom:276.068730px;}
.y554_c00001{bottom:276.600450px;}
.y61a_c00001{bottom:276.615930px;}
.y5d1_c00001{bottom:276.657690px;}
.y4ab_c00001{bottom:276.673890px;}
.y830_c00001{bottom:276.683880px;}
.y77d_c00001{bottom:276.690450px;}
.y764_c00001{bottom:276.780450px;}
.y350_c00001{bottom:276.899250px;}
.ybd5_c00001{bottom:277.140450px;}
.y205_c00001{bottom:277.410450px;}
.y64a_c00001{bottom:277.680600px;}
.y724_c00001{bottom:277.760100px;}
.y6b9_c00001{bottom:278.130450px;}
.yd3_c00001{bottom:278.310450px;}
.y53b_c00001{bottom:278.817960px;}
.yadc_c00001{bottom:278.940450px;}
.ybc4_c00001{bottom:279.390450px;}
.yad3_c00001{bottom:279.660450px;}
.y3f5_c00001{bottom:279.840450px;}
.y385_c00001{bottom:280.110450px;}
.y6a2_c00001{bottom:280.200450px;}
.y6d8_c00001{bottom:280.448940px;}
.yb3_c00001{bottom:280.560450px;}
.y3ca_c00001{bottom:280.604910px;}
.y6f6_c00001{bottom:280.650450px;}
.y5c_c00001{bottom:280.838010px;}
.y5a4_c00001{bottom:280.842840px;}
.ya68_c00001{bottom:281.100450px;}
.y29_c00001{bottom:281.411100px;}
.ybfc_c00001{bottom:281.640450px;}
.y4ca_c00001{bottom:281.910450px;}
.y600_c00001{bottom:281.910600px;}
.y768_c00001{bottom:282.180450px;}
.y2c5_c00001{bottom:282.540450px;}
.y518_c00001{bottom:283.256670px;}
.yad8_c00001{bottom:283.530450px;}
.y46a_c00001{bottom:283.710450px;}
.y4f4_c00001{bottom:283.968930px;}
.y114_c00001{bottom:284.610450px;}
.y81a_c00001{bottom:284.880450px;}
.y795_c00001{bottom:285.219120px;}
.y992_c00001{bottom:285.690600px;}
.ya3d_c00001{bottom:285.860100px;}
.y39f_c00001{bottom:285.875490px;}
.y442_c00001{bottom:285.958080px;}
.y8fa_c00001{bottom:286.410450px;}
.y8f5_c00001{bottom:286.410600px;}
.y9e1_c00001{bottom:286.680450px;}
.y3ea_c00001{bottom:286.680600px;}
.y9a7_c00001{bottom:286.860450px;}
.y93f_c00001{bottom:287.040450px;}
.y402_c00001{bottom:287.850450px;}
.yb45_c00001{bottom:287.940450px;}
.yb5e_c00001{bottom:288.300450px;}
.yb7d_c00001{bottom:288.390450px;}
.y8d7_c00001{bottom:288.840450px;}
.y911_c00001{bottom:288.930450px;}
.y63a_c00001{bottom:289.380450px;}
.yb13_c00001{bottom:289.560450px;}
.y234_c00001{bottom:289.568730px;}
.yaef_c00001{bottom:289.577520px;}
.y8ad_c00001{bottom:290.010450px;}
.yb20_c00001{bottom:290.096670px;}
.y619_c00001{bottom:290.381430px;}
.y5d0_c00001{bottom:290.423190px;}
.y4aa_c00001{bottom:290.439390px;}
.y6bb_c00001{bottom:290.730450px;}
.y652_c00001{bottom:291.180450px;}
.yae3_c00001{bottom:291.180600px;}
.y8bf_c00001{bottom:291.428940px;}
.y285_c00001{bottom:291.540450px;}
.y553_c00001{bottom:291.810600px;}
.y588_c00001{bottom:291.990600px;}
.ya0a_c00001{bottom:292.080450px;}
.y1a3_c00001{bottom:292.141890px;}
.y7b4_c00001{bottom:292.440450px;}
.yc11_c00001{bottom:292.890450px;}
.yb0c_c00001{bottom:292.980600px;}
.y846_c00001{bottom:293.610450px;}
.y860_c00001{bottom:293.790450px;}
.y710_c00001{bottom:293.880450px;}
.y2a5_c00001{bottom:294.334950px;}
.y3c9_c00001{bottom:294.370410px;}
.y723_c00001{bottom:294.593700px;}
.y5a3_c00001{bottom:294.608340px;}
.ybec_c00001{bottom:294.870450px;}
.ya22_c00001{bottom:295.031910px;}
.y34f_c00001{bottom:295.261230px;}
.y28_c00001{bottom:295.272360px;}
.y165_c00001{bottom:295.410450px;}
.y805_c00001{bottom:295.590600px;}
.y53a_c00001{bottom:295.741740px;}
.yf5_c00001{bottom:296.040450px;}
.y83_c00001{bottom:296.310450px;}
.y2f1_c00001{bottom:296.850450px;}
.yb4a_c00001{bottom:296.940450px;}
.y6d7_c00001{bottom:297.372720px;}
.ybcf_c00001{bottom:297.390450px;}
.y204_c00001{bottom:298.110450px;}
.y413_c00001{bottom:298.290450px;}
.y5b_c00001{bottom:299.104230px;}
.ya85_c00001{bottom:299.460450px;}
.ybc3_c00001{bottom:299.640450px;}
.y39e_c00001{bottom:299.736750px;}
.y441_c00001{bottom:299.819340px;}
.y517_c00001{bottom:300.180450px;}
.y3f4_c00001{bottom:300.540450px;}
.y384_c00001{bottom:300.810450px;}
.ybaf_c00001{bottom:301.530450px;}
.ya5b_c00001{bottom:301.834470px;}
.y794_c00001{bottom:302.052720px;}
.y7bf_c00001{bottom:302.160450px;}
.y82f_c00001{bottom:302.520450px;}
.y478_c00001{bottom:302.610450px;}
.y938_c00001{bottom:303.150600px;}
.y6a4_c00001{bottom:303.240000px;}
.y976_c00001{bottom:303.240450px;}
.y4f3_c00001{bottom:303.402720px;}
.yab5_c00001{bottom:303.420450px;}
.y618_c00001{bottom:304.242690px;}
.y5cf_c00001{bottom:304.284450px;}
.y4a9_c00001{bottom:304.300650px;}
.y13c_c00001{bottom:304.320600px;}
.y4fa_c00001{bottom:304.410450px;}
.y1c9_c00001{bottom:304.410600px;}
.y18e_c00001{bottom:304.500450px;}
.yb12_c00001{bottom:304.680450px;}
.y113_c00001{bottom:305.310450px;}
.y9de_c00001{bottom:305.490600px;}
.y318_c00001{bottom:305.760450px;}
.yb3e_c00001{bottom:305.940450px;}
.y91e_c00001{bottom:306.120450px;}
.y5f2_c00001{bottom:306.210450px;}
.yb1f_c00001{bottom:307.020450px;}
.y2ff_c00001{bottom:307.380450px;}
.ya6f_c00001{bottom:307.442370px;}
.y871_c00001{bottom:307.560450px;}
.y233_c00001{bottom:307.834950px;}
.yaee_c00001{bottom:307.843740px;}
.y2a4_c00001{bottom:308.104950px;}
.y3c8_c00001{bottom:308.135910px;}
.y8be_c00001{bottom:308.352720px;}
.y5a2_c00001{bottom:308.373840px;}
.y9cc_c00001{bottom:308.460450px;}
.yb7c_c00001{bottom:308.640450px;}
.y176_c00001{bottom:308.910450px;}
.y9f5_c00001{bottom:308.910600px;}
.y1a2_c00001{bottom:308.975490px;}
.y34e_c00001{bottom:309.026730px;}
.y27_c00001{bottom:309.037860px;}
.y8d6_c00001{bottom:309.540450px;}
.y4f9_c00001{bottom:309.636660px;}
.yab1_c00001{bottom:309.900600px;}
.y639_c00001{bottom:310.080450px;}
.y2db_c00001{bottom:310.530450px;}
.y763_c00001{bottom:311.160450px;}
.y969_c00001{bottom:311.520450px;}
.ya3c_c00001{bottom:311.696670px;}
.y73d_c00001{bottom:311.880450px;}
.ya21_c00001{bottom:311.955690px;}
.y360_c00001{bottom:312.240450px;}
.y552_c00001{bottom:312.510600px;}
.y539_c00001{bottom:312.575340px;}
.y894_c00001{bottom:312.690600px;}
.yb94_c00001{bottom:313.140450px;}
.y4da_c00001{bottom:313.410450px;}
.y8b0_c00001{bottom:313.410600px;}
.y223_c00001{bottom:313.500450px;}
.y440_c00001{bottom:313.584840px;}
.yad2_c00001{bottom:314.040450px;}
.y6d6_c00001{bottom:314.206320px;}
.yae0_c00001{bottom:314.220450px;}
.y8d3_c00001{bottom:314.310450px;}
.y1bd_c00001{bottom:314.400450px;}
.y954_c00001{bottom:314.490450px;}
.yb2_c00001{bottom:314.940450px;}
.y99b_c00001{bottom:315.120450px;}
.yc1f_c00001{bottom:315.390450px;}
.ya67_c00001{bottom:315.570450px;}
.y756_c00001{bottom:316.290450px;}
.y7ef_c00001{bottom:316.380450px;}
.y5ff_c00001{bottom:316.380600px;}
.y7d7_c00001{bottom:316.740450px;}
.y5a_c00001{bottom:317.370450px;}
.ybce_c00001{bottom:317.640450px;}
.y900_c00001{bottom:317.910450px;}
.y39d_c00001{bottom:318.002970px;}
.y617_c00001{bottom:318.008190px;}
.y5ce_c00001{bottom:318.049950px;}
.y4a8_c00001{bottom:318.066150px;}
.y469_c00001{bottom:318.090450px;}
.y5b4_c00001{bottom:318.180450px;}
.y203_c00001{bottom:318.810450px;}
.y793_c00001{bottom:318.976500px;}
.y6a6_c00001{bottom:319.170450px;}
.yb36_c00001{bottom:319.260450px;}
.ybfb_c00001{bottom:319.890450px;}
.y2c4_c00001{bottom:320.046420px;}
.y4f2_c00001{bottom:320.326500px;}
.y722_c00001{bottom:320.520450px;}
.y8f9_c00001{bottom:320.790450px;}
.y8f4_c00001{bottom:320.790600px;}
.ya5a_c00001{bottom:321.358440px;}
.y6f5_c00001{bottom:321.510450px;}
.y232_c00001{bottom:321.602250px;}
.yd2_c00001{bottom:321.780450px;}
.y2a3_c00001{bottom:321.870450px;}
.y3c7_c00001{bottom:321.901410px;}
.y5a1_c00001{bottom:322.235100px;}
.yb44_c00001{bottom:322.410450px;}
.y986_c00001{bottom:322.410600px;}
.y34d_c00001{bottom:322.792230px;}
.y26_c00001{bottom:322.803360px;}
.y4c9_c00001{bottom:323.310600px;}
.y910_c00001{bottom:323.400450px;}
.y273_c00001{bottom:323.490600px;}
.y975_c00001{bottom:323.940450px;}
.ya6e_c00001{bottom:324.275970px;}
.y256_c00001{bottom:324.572160px;}
.y8bd_c00001{bottom:325.186320px;}
.yab4_c00001{bottom:325.290450px;}
.yb11_c00001{bottom:325.380450px;}
.y1a1_c00001{bottom:325.899270px;}
.yaed_c00001{bottom:326.109960px;}
.y587_c00001{bottom:326.460450px;}
.yb5d_c00001{bottom:326.550450px;}
.y56d_c00001{bottom:326.910450px;}
.y43f_c00001{bottom:327.350340px;}
.yb0b_c00001{bottom:327.360600px;}
.y845_c00001{bottom:327.990450px;}
.y70f_c00001{bottom:328.260450px;}
.ya3b_c00001{bottom:328.620450px;}
.ya20_c00001{bottom:328.789290px;}
.yb7b_c00001{bottom:328.890450px;}
.y4f8_c00001{bottom:329.070450px;}
.y991_c00001{bottom:329.070600px;}
.y538_c00001{bottom:329.499120px;}
.y164_c00001{bottom:329.790450px;}
.y819_c00001{bottom:329.880450px;}
.y7b3_c00001{bottom:329.931390px;}
.y804_c00001{bottom:330.060600px;}
.ya4c_c00001{bottom:330.510600px;}
.y6d5_c00001{bottom:331.130100px;}
.y401_c00001{bottom:331.230450px;}
.y2f0_c00001{bottom:331.320450px;}
.y82_c00001{bottom:331.410450px;}
.y39c_c00001{bottom:331.768470px;}
.y616_c00001{bottom:331.773690px;}
.y5cd_c00001{bottom:331.815450px;}
.y4a7_c00001{bottom:331.831650px;}
.ya00_c00001{bottom:332.490450px;}
.y59_c00001{bottom:332.580450px;}
.y73c_c00001{bottom:332.580600px;}
.y412_c00001{bottom:332.760450px;}
.y35f_c00001{bottom:332.940600px;}
.y551_c00001{bottom:333.210600px;}
.yb93_c00001{bottom:333.390450px;}
.y8ac_c00001{bottom:333.480450px;}
.ya84_c00001{bottom:333.840450px;}
.y151_c00001{bottom:334.380450px;}
.y31c_c00001{bottom:334.380600px;}
.y733_c00001{bottom:335.010600px;}
.ybeb_c00001{bottom:335.370600px;}
.yc1e_c00001{bottom:335.640450px;}
.y3c6_c00001{bottom:335.762670px;}
.y792_c00001{bottom:335.810100px;}
.y34c_c00001{bottom:336.653490px;}
.y25_c00001{bottom:336.664620px;}
.y2c3_c00001{bottom:336.880020px;}
.y2a2_c00001{bottom:337.080450px;}
.y4f1_c00001{bottom:337.160100px;}
.y937_c00001{bottom:337.620600px;}
.ybc2_c00001{bottom:337.890450px;}
.ya59_c00001{bottom:338.192040px;}
.y3f3_c00001{bottom:338.790450px;}
.y1c8_c00001{bottom:338.790600px;}
.y18d_c00001{bottom:338.970450px;}
.y7be_c00001{bottom:339.658110px;}
.ybae_c00001{bottom:339.780450px;}
.y231_c00001{bottom:339.868470px;}
.y317_c00001{bottom:340.140450px;}
.yb3d_c00001{bottom:340.410450px;}
.y5f1_c00001{bottom:340.680450px;}
.y516_c00001{bottom:340.950600px;}
.ya6d_c00001{bottom:341.199750px;}
.y43e_c00001{bottom:341.211600px;}
.y255_c00001{bottom:341.405760px;}
.y2fe_c00001{bottom:341.760450px;}
.y870_c00001{bottom:342.030450px;}
.y8bc_c00001{bottom:342.110100px;}
.y1a0_c00001{bottom:342.732870px;}
.y9cb_c00001{bottom:342.840450px;}
.y9f4_c00001{bottom:343.290600px;}
.y112_c00001{bottom:343.380450px;}
.y82e_c00001{bottom:343.380600px;}
.yab0_c00001{bottom:344.370600px;}
.yaec_c00001{bottom:344.376180px;}
.y486_c00001{bottom:344.730450px;}
.y762_c00001{bottom:345.630450px;}
.y615_c00001{bottom:345.634950px;}
.y5cc_c00001{bottom:345.676710px;}
.y4a6_c00001{bottom:345.692910px;}
.ya1f_c00001{bottom:345.713070px;}
.y968_c00001{bottom:345.900450px;}
.y4f7_c00001{bottom:345.990450px;}
.yb10_c00001{bottom:346.080450px;}
.y537_c00001{bottom:346.332720px;}
.y7b2_c00001{bottom:346.764990px;}
.yb5c_c00001{bottom:346.800450px;}
.y893_c00001{bottom:347.160600px;}
.y4d9_c00001{bottom:347.790450px;}
.y13b_c00001{bottom:347.790600px;}
.y6d4_c00001{bottom:347.963700px;}
.y222_c00001{bottom:347.970450px;}
.yad1_c00001{bottom:348.510450px;}
.y77c_c00001{bottom:348.546450px;}
.yadf_c00001{bottom:348.600450px;}
.y8d2_c00001{bottom:348.690450px;}
.y953_c00001{bottom:348.960450px;}
.y9dd_c00001{bottom:348.960600px;}
.yb7a_c00001{bottom:349.140450px;}
.y91d_c00001{bottom:349.500450px;}
.y3c5_c00001{bottom:349.528170px;}
.ya66_c00001{bottom:349.950450px;}
.y39b_c00001{bottom:350.130450px;}
.y34b_c00001{bottom:350.418990px;}
.y24_c00001{bottom:350.430120px;}
.y755_c00001{bottom:350.760450px;}
.y5fe_c00001{bottom:350.760600px;}
.y5a0_c00001{bottom:351.210600px;}
.y6a8_c00001{bottom:351.390450px;}
.yf4_c00001{bottom:351.991740px;}
.y194_c00001{bottom:352.380450px;}
.y284_c00001{bottom:352.380600px;}
.yb1_c00001{bottom:352.452900px;}
.y468_c00001{bottom:352.560450px;}
.y791_c00001{bottom:352.733880px;}
.y58_c00001{bottom:353.280450px;}
.yb92_c00001{bottom:353.640450px;}
.yb35_c00001{bottom:353.730450px;}
.y7ee_c00001{bottom:353.736930px;}
.y2c2_c00001{bottom:353.803800px;}
.y2da_c00001{bottom:353.910450px;}
.y4f0_c00001{bottom:354.083880px;}
.y43d_c00001{bottom:354.977100px;}
.ya58_c00001{bottom:355.115820px;}
.y6f4_c00001{bottom:355.890450px;}
.yd1_c00001{bottom:356.160450px;}
.y7bd_c00001{bottom:356.491710px;}
.y649_c00001{bottom:356.790450px;}
.y985_c00001{bottom:356.790600px;}
.y2a1_c00001{bottom:357.780450px;}
.y272_c00001{bottom:357.960600px;}
.ybc1_c00001{bottom:358.140450px;}
.y230_c00001{bottom:358.230450px;}
.y8bb_c00001{bottom:358.943700px;}
.y614_c00001{bottom:359.400450px;}
.y5cb_c00001{bottom:359.442210px;}
.y4a5_c00001{bottom:359.458410px;}
.y19f_c00001{bottom:359.656650px;}
.y7d6_c00001{bottom:360.210450px;}
.yc07_c00001{bottom:360.390450px;}
.y586_c00001{bottom:360.840450px;}
.ya09_c00001{bottom:360.930450px;}
.y721_c00001{bottom:361.290450px;}
.y56c_c00001{bottom:361.380450px;}
.y844_c00001{bottom:362.460450px;}
.ya1e_c00001{bottom:362.546670px;}
.y85f_c00001{bottom:362.640450px;}
.y70e_c00001{bottom:362.730450px;}
.yaeb_c00001{bottom:362.738160px;}
.y536_c00001{bottom:363.256500px;}
.y3c4_c00001{bottom:363.293670px;}
.y990_c00001{bottom:363.540450px;}
.y7b1_c00001{bottom:363.688770px;}
.y67c_c00001{bottom:364.174950px;}
.y34a_c00001{bottom:364.184490px;}
.y23_c00001{bottom:364.195620px;}
.y1d6_c00001{bottom:364.260450px;}
.y8f3_c00001{bottom:364.260600px;}
.y696_c00001{bottom:364.440450px;}
.y803_c00001{bottom:364.440600px;}
.y93e_c00001{bottom:364.890450px;}
.ya4b_c00001{bottom:364.890600px;}
.y39a_c00001{bottom:365.340450px;}
.y77b_c00001{bottom:365.470230px;}
.y400_c00001{bottom:365.700450px;}
.y81_c00001{bottom:365.790450px;}
.y9ff_c00001{bottom:366.960450px;}
.ya6c_c00001{bottom:367.036320px;}
.y411_c00001{bottom:367.140450px;}
.y3e9_c00001{bottom:367.140600px;}
.y383_c00001{bottom:367.410450px;}
.y82c_c00001{bottom:367.590450px;}
.y8ab_c00001{bottom:367.860450px;}
.ya83_c00001{bottom:368.310450px;}
.y43c_c00001{bottom:368.742600px;}
.y150_c00001{bottom:368.760450px;}
.y31b_c00001{bottom:368.760600px;}
.yf3_c00001{bottom:368.825340px;}
.yb0_c00001{bottom:369.286500px;}
.yb79_c00001{bottom:369.390450px;}
.ya3a_c00001{bottom:369.390600px;}
.y732_c00001{bottom:369.480600px;}
.y974_c00001{bottom:370.380450px;}
.y2c1_c00001{bottom:370.637400px;}
.y7ed_c00001{bottom:370.660710px;}
.yb0a_c00001{bottom:370.830450px;}
.y678_c00001{bottom:371.550450px;}
.yc10_c00001{bottom:371.640450px;}
.y68e_c00001{bottom:371.910450px;}
.y59f_c00001{bottom:371.910600px;}
.ya57_c00001{bottom:371.949420px;}
.y936_c00001{bottom:372.000450px;}
.y680_c00001{bottom:372.072450px;}
.y67e_c00001{bottom:372.085950px;}
.y5ca_c00001{bottom:373.207710px;}
.y4a4_c00001{bottom:373.223910px;}
.y163_c00001{bottom:373.260450px;}
.y1c7_c00001{bottom:373.260600px;}
.y7bc_c00001{bottom:373.415490px;}
.y22f_c00001{bottom:373.440600px;}
.ybea_c00001{bottom:373.620600px;}
.y6d3_c00001{bottom:373.890450px;}
.y690_c00001{bottom:373.894950px;}
.y57_c00001{bottom:373.980450px;}
.y676_c00001{bottom:374.340450px;}
.y477_c00001{bottom:374.491710px;}
.y316_c00001{bottom:374.610450px;}
.y2ef_c00001{bottom:374.700450px;}
.yb3c_c00001{bottom:374.790450px;}
.y5f0_c00001{bottom:375.060450px;}
.y693_c00001{bottom:375.339450px;}
.y515_c00001{bottom:375.420600px;}
.y682_c00001{bottom:375.582450px;}
.ybcd_c00001{bottom:376.140450px;}
.y254_c00001{bottom:376.320450px;}
.y86f_c00001{bottom:376.410450px;}
.y19e_c00001{bottom:376.490250px;}
.y1bc_c00001{bottom:377.130450px;}
.y3c3_c00001{bottom:377.154930px;}
.y9ca_c00001{bottom:377.310450px;}
.y111_c00001{bottom:377.760450px;}
.y82d_c00001{bottom:377.760600px;}
.y67a_c00001{bottom:377.850450px;}
.ybad_c00001{bottom:378.030450px;}
.y349_c00001{bottom:378.045750px;}
.y22_c00001{bottom:378.056880px;}
.ybfa_c00001{bottom:378.390450px;}
.y2a0_c00001{bottom:378.480600px;}
.y790_c00001{bottom:378.570450px;}
.yaaf_c00001{bottom:378.750600px;}
.y485_c00001{bottom:379.110600px;}
.ya1d_c00001{bottom:379.470450px;}
.y4ef_c00001{bottom:379.920450px;}
.y535_c00001{bottom:380.090100px;}
.y967_c00001{bottom:380.370450px;}
.y694_c00001{bottom:380.469450px;}
.y7b0_c00001{bottom:380.522370px;}
.yaea_c00001{bottom:381.004380px;}
.y892_c00001{bottom:381.540600px;}
.y13a_c00001{bottom:382.170600px;}
.y4d8_c00001{bottom:382.260450px;}
.y602_c00001{bottom:382.260600px;}
.y18c_c00001{bottom:382.350450px;}
.y43b_c00001{bottom:382.603860px;}
.yad0_c00001{bottom:382.890450px;}
.y761_c00001{bottom:383.037960px;}
.y952_c00001{bottom:383.340450px;}
.ya6b_c00001{bottom:383.960100px;}
.y677_c00001{bottom:383.965950px;}
.y91c_c00001{bottom:383.970450px;}
.ya65_c00001{bottom:384.420450px;}
.y8ba_c00001{bottom:384.870450px;}
.yb5b_c00001{bottom:385.050450px;}
.y754_c00001{bottom:385.140450px;}
.y5fd_c00001{bottom:385.230600px;}
.yf2_c00001{bottom:385.749120px;}
.y399_c00001{bottom:386.040450px;}
.yade_c00001{bottom:386.131950px;}
.yaf_c00001{bottom:386.210280px;}
.y193_c00001{bottom:386.760450px;}
.y283_c00001{bottom:386.760600px;}
.y5c9_c00001{bottom:387.068970px;}
.y4a3_c00001{bottom:387.085170px;}
.y7ec_c00001{bottom:387.494310px;}
.y2c0_c00001{bottom:387.561180px;}
.y1eb_c00001{bottom:387.750450px;}
.y692_c00001{bottom:387.934950px;}
.yb34_c00001{bottom:388.110450px;}
.y2d9_c00001{bottom:388.380450px;}
.ya56_c00001{bottom:388.873200px;}
.y668_c00001{bottom:389.640450px;}
.y467_c00001{bottom:389.953830px;}
.y5b3_c00001{bottom:390.083220px;}
.y7bb_c00001{bottom:390.249090px;}
.y6f3_c00001{bottom:390.360450px;}
.y3c2_c00001{bottom:390.920430px;}
.y648_c00001{bottom:391.260450px;}
.y927_c00001{bottom:391.260600px;}
.y77a_c00001{bottom:391.306800px;}
.y697_c00001{bottom:391.345950px;}
.y476_c00001{bottom:391.415490px;}
.y348_c00001{bottom:391.811250px;}
.y21_c00001{bottom:391.822380px;}
.yb91_c00001{bottom:391.890450px;}
.y8d1_c00001{bottom:392.160450px;}
.y90f_c00001{bottom:392.250450px;}
.y9dc_c00001{bottom:392.340450px;}
.y271_c00001{bottom:392.340600px;}
.y59e_c00001{bottom:392.610450px;}
.y818_c00001{bottom:392.610600px;}
.y2dd_c00001{bottom:393.414030px;}
.ybe9_c00001{bottom:393.870600px;}
.yc1d_c00001{bottom:394.140450px;}
.y22e_c00001{bottom:394.140600px;}
.y2fd_c00001{bottom:394.230450px;}
.y683_c00001{bottom:394.482450px;}
.y7d5_c00001{bottom:394.590450px;}
.y681_c00001{bottom:395.116950px;}
.y67b_c00001{bottom:395.130450px;}
.y585_c00001{bottom:395.310450px;}
.y56b_c00001{bottom:395.760450px;}
.ybc0_c00001{bottom:396.390450px;}
.y843_c00001{bottom:396.840450px;}
.y534_c00001{bottom:397.013880px;}
.y698_c00001{bottom:397.015950px;}
.y70d_c00001{bottom:397.110450px;}
.y67d_c00001{bottom:397.290450px;}
.y7af_c00001{bottom:397.446150px;}
.y638_c00001{bottom:397.470450px;}
.y56_c00001{bottom:397.632720px;}
.y68f_c00001{bottom:397.654950px;}
.y98f_c00001{bottom:397.920450px;}
.ybac_c00001{bottom:398.280600px;}
.y8f8_c00001{bottom:398.640450px;}
.y8f2_c00001{bottom:398.640600px;}
.yae9_c00001{bottom:399.270600px;}
.y93d_c00001{bottom:399.360450px;}
.yd0_c00001{bottom:399.630450px;}
.y760_c00001{bottom:399.961740px;}
.y3ff_c00001{bottom:400.080450px;}
.y80_c00001{bottom:400.260450px;}
.ya6a_c00001{bottom:400.793700px;}
.y691_c00001{bottom:400.800450px;}
.y5c8_c00001{bottom:400.834470px;}
.y4a2_c00001{bottom:400.850670px;}
.y43a_c00001{bottom:400.870080px;}
.y9fe_c00001{bottom:401.340450px;}
.y3e8_c00001{bottom:401.610600px;}
.y382_c00001{bottom:401.790450px;}
.y82b_c00001{bottom:402.060450px;}
.y8aa_c00001{bottom:402.330450px;}
.y19d_c00001{bottom:402.417000px;}
.yf1_c00001{bottom:402.582720px;}
.ya82_c00001{bottom:402.690450px;}
.yae_c00001{bottom:403.043880px;}
.y67f_c00001{bottom:403.216950px;}
.y679_c00001{bottom:403.221450px;}
.y202_c00001{bottom:403.230600px;}
.y731_c00001{bottom:403.860600px;}
.ya08_c00001{bottom:404.310450px;}
.y2bf_c00001{bottom:404.394780px;}
.y7eb_c00001{bottom:404.418090px;}
.y410_c00001{bottom:404.630580px;}
.y3c1_c00001{bottom:404.685930px;}
.y973_c00001{bottom:404.760450px;}
.yb09_c00001{bottom:405.210450px;}
.yb5a_c00001{bottom:405.300450px;}
.y347_c00001{bottom:405.576750px;}
.y20_c00001{bottom:405.587880px;}
.ya55_c00001{bottom:405.706800px;}
.y935_c00001{bottom:406.470450px;}
.y398_c00001{bottom:406.740600px;}
.y466_c00001{bottom:406.877610px;}
.y5b2_c00001{bottom:406.916820px;}
.y7ba_c00001{bottom:407.172870px;}
.y1d5_c00001{bottom:407.640450px;}
.y1c6_c00001{bottom:407.640600px;}
.y802_c00001{bottom:407.910600px;}
.yadd_c00001{bottom:408.000600px;}
.y779_c00001{bottom:408.230580px;}
.y475_c00001{bottom:408.249090px;}
.y550_c00001{bottom:408.540600px;}
.y315_c00001{bottom:408.990450px;}
.y2ee_c00001{bottom:409.170450px;}
.yb3b_c00001{bottom:409.260450px;}
.y5ef_c00001{bottom:409.530450px;}
.y514_c00001{bottom:409.800600px;}
.yb78_c00001{bottom:409.890450px;}
.y86e_c00001{bottom:410.880450px;}
.y4c8_c00001{bottom:411.240600px;}
.y1bb_c00001{bottom:411.510450px;}
.yb90_c00001{bottom:412.140450px;}
.y9f3_c00001{bottom:412.140600px;}
.y767_c00001{bottom:412.230450px;}
.y14f_c00001{bottom:412.230600px;}
.y484_c00001{bottom:413.580600px;}
.y7ae_c00001{bottom:414.279750px;}
.ybcc_c00001{bottom:414.390450px;}
.yae8_c00001{bottom:414.480450px;}
.y55_c00001{bottom:414.556500px;}
.y5c7_c00001{bottom:414.599970px;}
.y4a1_c00001{bottom:414.616170px;}
.y439_c00001{bottom:414.635580px;}
.y6d2_c00001{bottom:414.660450px;}
.y9c9_c00001{bottom:414.737400px;}
.y966_c00001{bottom:414.750450px;}
.y22d_c00001{bottom:414.840600px;}
.y613_c00001{bottom:416.010600px;}
.y162_c00001{bottom:416.640450px;}
.y139_c00001{bottom:416.640600px;}
.y75f_c00001{bottom:416.795340px;}
.y18b_c00001{bottom:416.820450px;}
.y253_c00001{bottom:417.090450px;}
.yacf_c00001{bottom:417.360450px;}
.y951_c00001{bottom:417.810450px;}
.y91b_c00001{bottom:418.350450px;}
.y3c0_c00001{bottom:418.547190px;}
.yc06_c00001{bottom:418.890450px;}
.y19c_c00001{bottom:419.250600px;}
.y78f_c00001{bottom:419.430450px;}
.y346_c00001{bottom:419.438010px;}
.yf0_c00001{bottom:419.506500px;}
.y5fc_c00001{bottom:419.610600px;}
.ya1c_c00001{bottom:420.240600px;}
.y4ee_c00001{bottom:420.780450px;}
.y110_c00001{bottom:421.230450px;}
.y175_c00001{bottom:421.230600px;}
.y7ea_c00001{bottom:421.251690px;}
.y2be_c00001{bottom:421.318560px;}
.y40f_c00001{bottom:421.464180px;}
.y1ea_c00001{bottom:422.220450px;}
.yb33_c00001{bottom:422.580450px;}
.y753_c00001{bottom:422.630580px;}
.y2d8_c00001{bottom:422.760450px;}
.y533_c00001{bottom:422.850450px;}
.y465_c00001{bottom:423.711210px;}
.y5b1_c00001{bottom:423.840600px;}
.y1f_c00001{bottom:423.949860px;}
.y7b9_c00001{bottom:424.006470px;}
.y73b_c00001{bottom:424.110450px;}
.y6f2_c00001{bottom:424.740450px;}
.y778_c00001{bottom:425.064180px;}
.y474_c00001{bottom:425.172870px;}
.yaae_c00001{bottom:425.280450px;}
.yb59_c00001{bottom:425.550450px;}
.y647_c00001{bottom:425.640450px;}
.y926_c00001{bottom:425.640600px;}
.y8d0_c00001{bottom:426.540450px;}
.ya69_c00001{bottom:426.720450px;}
.y9db_c00001{bottom:426.810450px;}
.y817_c00001{bottom:426.990600px;}
.y695_c00001{bottom:427.260450px;}
.y4a0_c00001{bottom:428.477430px;}
.y438_c00001{bottom:428.496840px;}
.y7d4_c00001{bottom:429.060450px;}
.ya64_c00001{bottom:429.420450px;}
.y584_c00001{bottom:429.690600px;}
.y270_c00001{bottom:429.859620px;}
.y720_c00001{bottom:430.140450px;}
.y8ff_c00001{bottom:430.230450px;}
.y282_c00001{bottom:430.230600px;}
.y842_c00001{bottom:431.310450px;}
.y54_c00001{bottom:431.390100px;}
.y85e_c00001{bottom:431.490450px;}
.y637_c00001{bottom:431.940450px;}
.ybe8_c00001{bottom:432.120600px;}
.y3bf_c00001{bottom:432.312690px;}
.y98e_c00001{bottom:432.390450px;}
.y5c6_c00001{bottom:432.961950px;}
.y667_c00001{bottom:433.110450px;}
.y331_c00001{bottom:433.110600px;}
.y75e_c00001{bottom:433.719120px;}
.y93c_c00001{bottom:433.740450px;}
.ycf_c00001{bottom:434.010450px;}
.y29f_c00001{bottom:434.460450px;}
.y3fe_c00001{bottom:434.550450px;}
.y9a6_c00001{bottom:434.640450px;}
.yae7_c00001{bottom:435.180450px;}
.y90e_c00001{bottom:435.630450px;}
.y9fd_c00001{bottom:435.810450px;}
.y3e7_c00001{bottom:435.990600px;}
.y381_c00001{bottom:436.260450px;}
.yef_c00001{bottom:436.340100px;}
.y82a_c00001{bottom:436.440450px;}
.ybab_c00001{bottom:436.530600px;}
.y8a9_c00001{bottom:436.710450px;}
.ybf9_c00001{bottom:436.890450px;}
.y201_c00001{bottom:437.610450px;}
.y8ea_c00001{bottom:437.610600px;}
.y345_c00001{bottom:437.704230px;}
.y1e_c00001{bottom:437.715360px;}
.y2bd_c00001{bottom:438.152160px;}
.y7e9_c00001{bottom:438.175470px;}
.y40e_c00001{bottom:438.387960px;}
.ya07_c00001{bottom:438.780450px;}
.y56a_c00001{bottom:439.230450px;}
.y752_c00001{bottom:439.464180px;}
.yb08_c00001{bottom:439.680450px;}
.y7ad_c00001{bottom:440.206500px;}
.y70c_c00001{bottom:440.580450px;}
.y9c8_c00001{bottom:440.649120px;}
.y7b8_c00001{bottom:440.930250px;}
.y777_c00001{bottom:441.987960px;}
.y473_c00001{bottom:442.006470px;}
.y1d4_c00001{bottom:442.110450px;}
.y8fd_c00001{bottom:442.110600px;}
.y49f_c00001{bottom:442.242930px;}
.y437_c00001{bottom:442.262340px;}
.y801_c00001{bottom:442.290450px;}
.y54f_c00001{bottom:443.010600px;}
.y2ed_c00001{bottom:443.550450px;}
.y7f_c00001{bottom:443.640450px;}
.y5ee_c00001{bottom:443.910450px;}
.yad_c00001{bottom:443.910600px;}
.y513_c00001{bottom:444.270600px;}
.y86d_c00001{bottom:445.260450px;}
.y4c7_c00001{bottom:445.710600px;}
.yb58_c00001{bottom:445.800450px;}
.y1ba_c00001{bottom:445.980450px;}
.y3be_c00001{bottom:446.078190px;}
.ya81_c00001{bottom:446.160450px;}
.y31a_c00001{bottom:446.610450px;}
.y14e_c00001{bottom:446.610600px;}
.y26f_c00001{bottom:446.693220px;}
.y5c5_c00001{bottom:446.727450px;}
.y314_c00001{bottom:447.196260px;}
.ya39_c00001{bottom:447.240600px;}
.y483_c00001{bottom:447.960600px;}
.y53_c00001{bottom:448.313880px;}
.y730_c00001{bottom:448.950600px;}
.y6d1_c00001{bottom:449.130450px;}
.y464_c00001{bottom:449.637960px;}
.y934_c00001{bottom:449.850450px;}
.yb77_c00001{bottom:450.390450px;}
.y891_c00001{bottom:450.390600px;}
.y75d_c00001{bottom:450.552720px;}
.y161_c00001{bottom:451.110450px;}
.y1c5_c00001{bottom:451.110600px;}
.y18a_c00001{bottom:451.200450px;}
.y1d_c00001{bottom:451.480860px;}
.y252_c00001{bottom:451.560450px;}
.yace_c00001{bottom:451.740450px;}
.y950_c00001{bottom:452.190450px;}
.ybe7_c00001{bottom:452.370600px;}
.yc1c_c00001{bottom:452.640450px;}
.y99a_c00001{bottom:452.820450px;}
.yee_c00001{bottom:453.263880px;}
.y78e_c00001{bottom:453.810450px;}
.y5fb_c00001{bottom:454.080600px;}
.ya1b_c00001{bottom:454.710450px;}
.ybbf_c00001{bottom:454.890450px;}
.y7e8_c00001{bottom:455.009070px;}
.y2bc_c00001{bottom:455.075940px;}
.y40d_c00001{bottom:455.221560px;}
.y10f_c00001{bottom:455.610450px;}
.y174_c00001{bottom:455.610600px;}
.yae6_c00001{bottom:455.880450px;}
.y344_c00001{bottom:455.968470px;}
.y49e_c00001{bottom:456.008430px;}
.y751_c00001{bottom:456.387960px;}
.y1e9_c00001{bottom:456.600450px;}
.ybaa_c00001{bottom:456.780450px;}
.yb32_c00001{bottom:456.960450px;}
.y7ac_c00001{bottom:457.040100px;}
.ybf8_c00001{bottom:457.140450px;}
.y2d7_c00001{bottom:457.230450px;}
.y9c7_c00001{bottom:457.482720px;}
.ya91_c00001{bottom:458.490450px;}
.y776_c00001{bottom:458.821560px;}
.y472_c00001{bottom:458.930250px;}
.y6f1_c00001{bottom:459.210450px;}
.y3bd_c00001{bottom:459.939450px;}
.y138_c00001{bottom:460.020450px;}
.y19b_c00001{bottom:460.110450px;}
.y925_c00001{bottom:460.110600px;}
.y5c4_c00001{bottom:460.492950px;}
.y436_c00001{bottom:460.528560px;}
.y8cf_c00001{bottom:461.010450px;}
.y9da_c00001{bottom:461.190450px;}
.y221_c00001{bottom:461.820450px;}
.y7d3_c00001{bottom:463.440450px;}
.y26e_c00001{bottom:463.617000px;}
.y532_c00001{bottom:463.710450px;}
.y965_c00001{bottom:464.049750px;}
.y4ed_c00001{bottom:464.160450px;}
.y583_c00001{bottom:464.160600px;}
.y816_c00001{bottom:464.509470px;}
.y22c_c00001{bottom:464.610450px;}
.y1c_c00001{bottom:465.342120px;}
.y841_c00001{bottom:465.690450px;}
.y463_c00001{bottom:466.471560px;}
.y313_c00001{bottom:466.720230px;}
.y7b7_c00001{bottom:466.766820px;}
.y75c_c00001{bottom:467.476500px;}
.y666_c00001{bottom:467.490450px;}
.y330_c00001{bottom:467.490600px;}
.y93b_c00001{bottom:468.210450px;}
.yc0f_c00001{bottom:468.390450px;}
.yce_c00001{bottom:468.480450px;}
.y29e_c00001{bottom:468.840450px;}
.y984_c00001{bottom:469.110450px;}
.y85d_c00001{bottom:469.677900px;}
.y90d_c00001{bottom:470.100450px;}
.y9fc_c00001{bottom:470.190450px;}
.yb76_c00001{bottom:470.640450px;}
.y829_c00001{bottom:470.910450px;}
.y8a8_c00001{bottom:471.180450px;}
.y200_c00001{bottom:472.080450px;}
.y40c_c00001{bottom:472.145340px;}
.ybe6_c00001{bottom:472.620450px;}
.yc1b_c00001{bottom:472.890450px;}
.ya06_c00001{bottom:473.160450px;}
.y750_c00001{bottom:473.221560px;}
.y569_c00001{bottom:473.610450px;}
.y3bc_c00001{bottom:473.704950px;}
.y7ab_c00001{bottom:473.963880px;}
.yb07_c00001{bottom:474.060450px;}
.y52_c00001{bottom:474.150450px;}
.y343_c00001{bottom:474.330450px;}
.y5c3_c00001{bottom:474.354210px;}
.y49d_c00001{bottom:474.370410px;}
.y435_c00001{bottom:474.389820px;}
.y9c6_c00001{bottom:474.406500px;}
.y70b_c00001{bottom:474.960450px;}
.ybbe_c00001{bottom:475.140450px;}
.y775_c00001{bottom:475.745340px;}
.y471_c00001{bottom:475.763850px;}
.y98d_c00001{bottom:475.770450px;}
.y8f7_c00001{bottom:476.490450px;}
.y8fc_c00001{bottom:476.490600px;}
.y800_c00001{bottom:476.760450px;}
.y636_c00001{bottom:476.940600px;}
.ya4a_c00001{bottom:477.210450px;}
.y54e_c00001{bottom:477.390600px;}
.y3fd_c00001{bottom:477.930450px;}
.y2ec_c00001{bottom:478.020450px;}
.y7e_c00001{bottom:478.110450px;}
.yac_c00001{bottom:478.290600px;}
.y512_c00001{bottom:478.650600px;}
.y612_c00001{bottom:478.740600px;}
.yed_c00001{bottom:479.100450px;}
.y1b_c00001{bottom:479.107620px;}
.y3e6_c00001{bottom:479.460450px;}
.y380_c00001{bottom:479.640450px;}
.y4c6_c00001{bottom:480.090450px;}
.y26d_c00001{bottom:480.450600px;}
.ya80_c00001{bottom:480.540450px;}
.y7e7_c00001{bottom:480.935820px;}
.y319_c00001{bottom:481.080450px;}
.y14d_c00001{bottom:481.080600px;}
.y815_c00001{bottom:481.343070px;}
.ya38_c00001{bottom:481.710600px;}
.y482_c00001{bottom:482.430600px;}
.y972_c00001{bottom:482.610450px;}
.y462_c00001{bottom:483.395340px;}
.y6d0_c00001{bottom:483.510450px;}
.y7b6_c00001{bottom:483.690600px;}
.y9f2_c00001{bottom:483.996450px;}
.yb57_c00001{bottom:484.050450px;}
.y75b_c00001{bottom:484.310100px;}
.y933_c00001{bottom:484.320450px;}
.y890_c00001{bottom:484.860600px;}
.y3f2_c00001{bottom:485.490450px;}
.y1c4_c00001{bottom:485.490600px;}
.y189_c00001{bottom:485.670450px;}
.y251_c00001{bottom:485.940450px;}
.y999_c00001{bottom:487.200450px;}
.y5ed_c00001{bottom:487.380450px;}
.y5c2_c00001{bottom:488.119710px;}
.y49c_c00001{bottom:488.135910px;}
.y434_c00001{bottom:488.155320px;}
.y78d_c00001{bottom:488.280450px;}
.yc0e_c00001{bottom:488.640450px;}
.y86c_c00001{bottom:488.730450px;}
.y40b_c00001{bottom:488.978940px;}
.ya1a_c00001{bottom:489.090450px;}
.y85c_c00001{bottom:489.201870px;}
.yacd_c00001{bottom:489.270600px;}
.y1b9_c00001{bottom:489.360450px;}
.y342_c00001{bottom:489.540450px;}
.y964_c00001{bottom:489.886320px;}
.y2bb_c00001{bottom:489.900450px;}
.y10e_c00001{bottom:490.080450px;}
.y173_c00001{bottom:490.080600px;}
.y74f_c00001{bottom:490.145340px;}
.yb75_c00001{bottom:490.890450px;}
.y1e8_c00001{bottom:491.070450px;}
.y9c5_c00001{bottom:491.240100px;}
.ya63_c00001{bottom:492.060450px;}
.y312_c00001{bottom:492.556800px;}
.y774_c00001{bottom:492.578940px;}
.y1a_c00001{bottom:492.873120px;}
.ya90_c00001{bottom:492.960450px;}
.yc1a_c00001{bottom:493.140450px;}
.y6f0_c00001{bottom:493.590450px;}
.y137_c00001{bottom:494.490450px;}
.y924_c00001{bottom:494.490600px;}
.yba9_c00001{bottom:495.030450px;}
.y59d_c00001{bottom:495.390450px;}
.y94f_c00001{bottom:495.660450px;}
.y91a_c00001{bottom:496.200450px;}
.y7e6_c00001{bottom:497.769420px;}
.y531_c00001{bottom:498.090450px;}
.y814_c00001{bottom:498.266850px;}
.y582_c00001{bottom:498.540600px;}
.y4ec_c00001{bottom:498.630450px;}
.y22b_c00001{bottom:499.080450px;}
.y7aa_c00001{bottom:499.800450px;}
.yc31_c00001{bottom:499.890450px;}
.y461_c00001{bottom:500.228940px;}
.yb31_c00001{bottom:500.430450px;}
.y2d6_c00001{bottom:500.610450px;}
.y9f1_c00001{bottom:500.920230px;}
.y75a_c00001{bottom:501.233880px;}
.y470_c00001{bottom:501.690600px;}
.y5c1_c00001{bottom:501.885210px;}
.y49b_c00001{bottom:501.901410px;}
.y433_c00001{bottom:501.920820px;}
.y665_c00001{bottom:501.960450px;}
.y3bb_c00001{bottom:502.680450px;}
.y983_c00001{bottom:503.490450px;}
.y675_c00001{bottom:503.760450px;}
.y68d_c00001{bottom:504.300450px;}
.y9fb_c00001{bottom:504.660450px;}
.y828_c00001{bottom:505.290450px;}
.y8a7_c00001{bottom:505.560450px;}
.y40a_c00001{bottom:505.902720px;}
.ycd_c00001{bottom:505.907400px;}
.y85b_c00001{bottom:506.035470px;}
.y1ff_c00001{bottom:506.460450px;}
.y5fa_c00001{bottom:506.460600px;}
.y19_c00001{bottom:506.734380px;}
.y963_c00001{bottom:506.810100px;}
.y7d2_c00001{bottom:506.910450px;}
.y74e_c00001{bottom:506.978940px;}
.ya05_c00001{bottom:507.630450px;}
.y71f_c00001{bottom:507.990450px;}
.y568_c00001{bottom:508.080450px;}
.y9c4_c00001{bottom:508.163880px;}
.yc0d_c00001{bottom:508.890450px;}
.y840_c00001{bottom:509.160450px;}
.y70a_c00001{bottom:509.430450px;}
.y311_c00001{bottom:509.480580px;}
.y773_c00001{bottom:509.502720px;}
.y341_c00001{bottom:510.240450px;}
.ybe5_c00001{bottom:510.870450px;}
.y32f_c00001{bottom:510.960450px;}
.y8f1_c00001{bottom:510.960600px;}
.y7ff_c00001{bottom:511.140450px;}
.y72f_c00001{bottom:511.590450px;}
.y29d_c00001{bottom:512.310450px;}
.y2eb_c00001{bottom:512.400450px;}
.y7d_c00001{bottom:512.490450px;}
.y511_c00001{bottom:513.120450px;}
.y611_c00001{bottom:513.210450px;}
.ybbd_c00001{bottom:513.390450px;}
.y90c_c00001{bottom:513.480450px;}
.y3e5_c00001{bottom:513.840450px;}
.y37f_c00001{bottom:514.110450px;}
.y4c5_c00001{bottom:514.560450px;}
.y7e5_c00001{bottom:514.693200px;}
.y51_c00001{bottom:515.010450px;}
.y813_c00001{bottom:515.100450px;}
.yba8_c00001{bottom:515.280450px;}
.y2fc_c00001{bottom:515.460450px;}
.ybf7_c00001{bottom:515.640450px;}
.y5c0_c00001{bottom:515.746470px;}
.y49a_c00001{bottom:515.762670px;}
.y432_c00001{bottom:515.782080px;}
.yab_c00001{bottom:515.788770px;}
.ya37_c00001{bottom:516.090450px;}
.y971_c00001{bottom:517.080450px;}
.y460_c00001{bottom:517.152720px;}
.yb06_c00001{bottom:517.530450px;}
.y9f0_c00001{bottom:517.753830px;}
.y6cf_c00001{bottom:517.980450px;}
.y932_c00001{bottom:518.700450px;}
.y481_c00001{bottom:519.859290px;}
.yec_c00001{bottom:519.960450px;}
.y1c3_c00001{bottom:519.960600px;}
.y54d_c00001{bottom:520.860450px;}
.y26c_c00001{bottom:521.310450px;}
.yae5_c00001{bottom:521.490450px;}
.y5ec_c00001{bottom:521.760450px;}
.yb56_c00001{bottom:522.300450px;}
.y78c_c00001{bottom:522.660450px;}
.y409_c00001{bottom:522.736320px;}
.ycc_c00001{bottom:522.831180px;}
.y85a_c00001{bottom:522.959250px;}
.y88f_c00001{bottom:523.062660px;}
.y86b_c00001{bottom:523.110450px;}
.y3ba_c00001{bottom:523.380450px;}
.ya19_c00001{bottom:523.560450px;}
.y962_c00001{bottom:523.643700px;}
.yaad_c00001{bottom:523.740450px;}
.y1b8_c00001{bottom:523.830450px;}
.y74d_c00001{bottom:523.902720px;}
.y14c_c00001{bottom:524.460450px;}
.y220_c00001{bottom:524.550450px;}
.y18_c00001{bottom:525.000600px;}
.y310_c00001{bottom:526.314180px;}
.y772_c00001{bottom:526.336320px;}
.ya62_c00001{bottom:526.530450px;}
.y759_c00001{bottom:527.070450px;}
.ya8f_c00001{bottom:527.340450px;}
.yac5_c00001{bottom:527.432072px;}
.y6ef_c00001{bottom:528.060450px;}
.y136_c00001{bottom:528.870450px;}
.y160_c00001{bottom:528.960450px;}
.y188_c00001{bottom:529.050450px;}
.yb74_c00001{bottom:529.140450px;}
.y250_c00001{bottom:529.410450px;}
.y5bf_c00001{bottom:529.511970px;}
.y499_c00001{bottom:529.528170px;}
.y431_c00001{bottom:529.547580px;}
.y59c_c00001{bottom:529.860450px;}
.y94e_c00001{bottom:530.040450px;}
.y919_c00001{bottom:530.670450px;}
.y2ba_c00001{bottom:530.760450px;}
.y340_c00001{bottom:530.940450px;}
.ybe4_c00001{bottom:531.120450px;}
.yc21_c00001{bottom:531.390450px;}
.y7e4_c00001{bottom:531.526800px;}
.y530_c00001{bottom:532.560450px;}
.yaa_c00001{bottom:532.622370px;}
.y4eb_c00001{bottom:533.010450px;}
.y10d_c00001{bottom:533.460450px;}
.ybbc_c00001{bottom:533.640450px;}
.y45f_c00001{bottom:533.986320px;}
.y9c3_c00001{bottom:534.000450px;}
.y1e7_c00001{bottom:534.450450px;}
.y9ef_c00001{bottom:534.677610px;}
.yb30_c00001{bottom:534.810450px;}
.y2d5_c00001{bottom:535.080450px;}
.yba7_c00001{bottom:535.530450px;}
.y581_c00001{bottom:536.045340px;}
.y664_c00001{bottom:536.340450px;}
.y480_c00001{bottom:536.783070px;}
.y982_c00001{bottom:537.960450px;}
.y923_c00001{bottom:537.960600px;}
.yc30_c00001{bottom:538.140450px;}
.y9fa_c00001{bottom:539.040450px;}
.y408_c00001{bottom:539.660100px;}
.ycb_c00001{bottom:539.664780px;}
.y635_c00001{bottom:539.670450px;}
.y827_c00001{bottom:539.760450px;}
.y859_c00001{bottom:539.792850px;}
.y8a6_c00001{bottom:540.030450px;}
.y17_c00001{bottom:540.210450px;}
.y7a9_c00001{bottom:540.660450px;}
.y74c_c00001{bottom:540.736320px;}
.y7d1_c00001{bottom:541.290450px;}
.y281_c00001{bottom:542.460450px;}
.y88e_c00001{bottom:542.496450px;}
.yb55_c00001{bottom:542.550450px;}
.y30f_c00001{bottom:543.237960px;}
.y771_c00001{bottom:543.260100px;}
.y5be_c00001{bottom:543.277470px;}
.y498_c00001{bottom:543.293670px;}
.y430_c00001{bottom:543.313080px;}
.y83f_c00001{bottom:543.540450px;}
.y709_c00001{bottom:543.810450px;}
.y3b9_c00001{bottom:544.080450px;}
.y98c_c00001{bottom:544.620450px;}
.y32e_c00001{bottom:545.340450px;}
.y8f0_c00001{bottom:545.340600px;}
.y674_c00001{bottom:545.515950px;}
.y7fe_c00001{bottom:545.610450px;}
.ya04_c00001{bottom:545.850390px;}
.y72e_c00001{bottom:546.060450px;}
.y29c_c00001{bottom:546.690450px;}
.y7c_c00001{bottom:546.960450px;}
.y510_c00001{bottom:547.500450px;}
.y610_c00001{bottom:547.590450px;}
.y90b_c00001{bottom:547.950450px;}
.yac6_c00001{bottom:548.045974px;}
.y3e4_c00001{bottom:548.310450px;}
.y7e3_c00001{bottom:548.450580px;}
.y37e_c00001{bottom:548.490450px;}
.y50_c00001{bottom:549.390450px;}
.y961_c00001{bottom:549.570450px;}
.y3fc_c00001{bottom:549.840450px;}
.y1fe_c00001{bottom:549.930450px;}
.y5f9_c00001{bottom:549.930600px;}
.y45e_c00001{bottom:550.910100px;}
.y970_c00001{bottom:551.460450px;}
.y9ee_c00001{bottom:551.511210px;}
.yc19_c00001{bottom:551.640450px;}
.yb05_c00001{bottom:551.910450px;}
.yac4_c00001{bottom:552.359403px;}
.y580_c00001{bottom:552.878940px;}
.y931_c00001{bottom:553.170450px;}
.y47f_c00001{bottom:553.616670px;}
.ybbb_c00001{bottom:553.890450px;}
.ya36_c00001{bottom:554.324340px;}
.yeb_c00001{bottom:554.340450px;}
.y54c_c00001{bottom:555.240450px;}
.yacc_c00001{bottom:555.600450px;}
.y26b_c00001{bottom:555.690450px;}
.y2ea_c00001{bottom:555.870450px;}
.y812_c00001{bottom:555.960450px;}
.y5eb_c00001{bottom:556.230450px;}
.y407_c00001{bottom:556.493700px;}
.y858_c00001{bottom:556.716630px;}
.y5bd_c00001{bottom:557.138730px;}
.y497_c00001{bottom:557.154930px;}
.y42f_c00001{bottom:557.174340px;}
.y86a_c00001{bottom:557.580450px;}
.y74b_c00001{bottom:557.660100px;}
.y4c4_c00001{bottom:557.940450px;}
.y1b7_c00001{bottom:558.210450px;}
.ya7f_c00001{bottom:558.390450px;}
.ya9_c00001{bottom:558.549120px;}
.y14b_c00001{bottom:558.930450px;}
.y88d_c00001{bottom:559.420230px;}
.y30e_c00001{bottom:560.071560px;}
.y770_c00001{bottom:560.093700px;}
.y16_c00001{bottom:560.910450px;}
.y6ce_c00001{bottom:561.360450px;}
.ya8e_c00001{bottom:561.810450px;}
.y135_c00001{bottom:563.340450px;}
.y1c2_c00001{bottom:563.340600px;}
.y187_c00001{bottom:563.520450px;}
.y24f_c00001{bottom:563.790450px;}
.y59b_c00001{bottom:564.240450px;}
.y94d_c00001{bottom:564.510450px;}
.y918_c00001{bottom:565.050450px;}
.y2b9_c00001{bottom:565.140450px;}
.y7e2_c00001{bottom:565.284180px;}
.yca_c00001{bottom:565.576500px;}
.y78b_c00001{bottom:566.130450px;}
.ya18_c00001{bottom:566.940450px;}
.yaac_c00001{bottom:567.210450px;}
.yc0c_c00001{bottom:567.390450px;}
.y4ea_c00001{bottom:567.480450px;}
.y9d9_c00001{bottom:567.566850px;}
.y45d_c00001{bottom:567.743700px;}
.y10c_c00001{bottom:567.930450px;}
.y9ed_c00001{bottom:568.434990px;}
.y1e6_c00001{bottom:568.920450px;}
.yb2f_c00001{bottom:569.280450px;}
.ybe3_c00001{bottom:569.370450px;}
.y2d4_c00001{bottom:569.460450px;}
.yb73_c00001{bottom:569.640450px;}
.y57f_c00001{bottom:569.802720px;}
.y47e_c00001{bottom:570.540450px;}
.y496_c00001{bottom:570.920430px;}
.y42e_c00001{bottom:570.939840px;}
.y6ee_c00001{bottom:571.440450px;}
.y3fb_c00001{bottom:571.710450px;}
.ybcb_c00001{bottom:571.890450px;}
.y15f_c00001{bottom:572.340450px;}
.y922_c00001{bottom:572.340600px;}
.y857_c00001{bottom:573.550230px;}
.yba6_c00001{bottom:573.780450px;}
.ya35_c00001{bottom:573.848310px;}
.y634_c00001{bottom:574.050450px;}
.ybba_c00001{bottom:574.140450px;}
.y8a5_c00001{bottom:574.410450px;}
.y74a_c00001{bottom:574.493700px;}
.y9c2_c00001{bottom:574.860450px;}
.y7a8_c00001{bottom:575.040450px;}
.ya8_c00001{bottom:575.382720px;}
.y5bc_c00001{bottom:575.404950px;}
.y7d0_c00001{bottom:575.760450px;}
.y52f_c00001{bottom:575.940450px;}
.y88c_c00001{bottom:576.253830px;}
.yc2f_c00001{bottom:576.390450px;}
.y71e_c00001{bottom:576.840450px;}
.y22a_c00001{bottom:576.930450px;}
.y30d_c00001{bottom:576.995340px;}
.y826_c00001{bottom:577.164180px;}
.y83e_c00001{bottom:578.010450px;}
.y98b_c00001{bottom:579.090450px;}
.y32d_c00001{bottom:579.810450px;}
.y8ef_c00001{bottom:579.810600px;}
.y7fd_c00001{bottom:579.990450px;}
.y72d_c00001{bottom:580.440450px;}
.y29b_c00001{bottom:581.160450px;}
.yb0f_c00001{bottom:581.340450px;}
.y15_c00001{bottom:581.610450px;}
.y7e1_c00001{bottom:582.207960px;}
.y90a_c00001{bottom:582.330450px;}
.yc9_c00001{bottom:582.410100px;}
.y406_c00001{bottom:582.420450px;}
.y9f9_c00001{bottom:582.510450px;}
.y3e3_c00001{bottom:582.690450px;}
.ya54_c00001{bottom:583.496670px;}
.y4f_c00001{bottom:583.860450px;}
.y1fd_c00001{bottom:584.310450px;}
.y5f8_c00001{bottom:584.310600px;}
.y7b_c00001{bottom:584.360580px;}
.y9d8_c00001{bottom:584.400450px;}
.y495_c00001{bottom:584.685930px;}
.y42d_c00001{bottom:584.705340px;}
.y9ec_c00001{bottom:585.268590px;}
.y96f_c00001{bottom:585.930450px;}
.y37d_c00001{bottom:585.987960px;}
.y76f_c00001{bottom:586.020450px;}
.yb04_c00001{bottom:586.380450px;}
.y57e_c00001{bottom:586.636320px;}
.yacb_c00001{bottom:587.010450px;}
.y930_c00001{bottom:587.550450px;}
.yc0b_c00001{bottom:587.640450px;}
.yea_c00001{bottom:588.810450px;}
.y127_c00001{bottom:588.810600px;}
.y708_c00001{bottom:588.900450px;}
.y5bb_c00001{bottom:589.170450px;}
.ybe2_c00001{bottom:589.620450px;}
.y54b_c00001{bottom:589.710450px;}
.yb72_c00001{bottom:589.890450px;}
.y26a_c00001{bottom:590.160450px;}
.y2e9_c00001{bottom:590.250450px;}
.y811_c00001{bottom:590.340450px;}
.y856_c00001{bottom:590.474010px;}
.ya34_c00001{bottom:590.681910px;}
.y50f_c00001{bottom:590.970450px;}
.y60f_c00001{bottom:591.060450px;}
.y869_c00001{bottom:591.960450px;}
.ybca_c00001{bottom:592.140450px;}
.ya7_c00001{bottom:592.306500px;}
.y4c3_c00001{bottom:592.410450px;}
.y1b6_c00001{bottom:592.680450px;}
.ya7e_c00001{bottom:592.860450px;}
.y88b_c00001{bottom:593.177610px;}
.y14a_c00001{bottom:593.310450px;}
.y21f_c00001{bottom:593.400450px;}
.y45c_c00001{bottom:593.670450px;}
.y30c_c00001{bottom:593.828940px;}
.yba5_c00001{bottom:594.030450px;}
.y825_c00001{bottom:594.087960px;}
.yc27_c00001{bottom:594.390450px;}
.y2fb_c00001{bottom:594.930450px;}
.y6cd_c00001{bottom:595.830450px;}
.yc2e_c00001{bottom:596.640450px;}
.y20f_c00001{bottom:597.810450px;}
.y1c1_c00001{bottom:597.810600px;}
.y186_c00001{bottom:597.900450px;}
.y24e_c00001{bottom:598.260450px;}
.ya61_c00001{bottom:598.419120px;}
.y494_c00001{bottom:598.547190px;}
.y42c_c00001{bottom:598.566600px;}
.y94c_c00001{bottom:598.890450px;}
.y7e0_c00001{bottom:599.041560px;}
.yc8_c00001{bottom:599.333880px;}
.y917_c00001{bottom:599.520450px;}
.y2b8_c00001{bottom:599.610450px;}
.y749_c00001{bottom:600.420450px;}
.y78a_c00001{bottom:600.510450px;}
.y5ea_c00001{bottom:601.230450px;}
.y7a_c00001{bottom:601.284360px;}
.ya17_c00001{bottom:601.410450px;}
.yaab_c00001{bottom:601.590450px;}
.y59a_c00001{bottom:601.752720px;}
.y9eb_c00001{bottom:602.192370px;}
.y192_c00001{bottom:602.310450px;}
.y37c_c00001{bottom:602.821560px;}
.yac3_c00001{bottom:603.298379px;}
.y1e5_c00001{bottom:603.300450px;}
.y57d_c00001{bottom:603.560100px;}
.yb2e_c00001{bottom:603.660450px;}
.y2d3_c00001{bottom:603.930450px;}
.y5ba_c00001{bottom:604.380450px;}
.ya8d_c00001{bottom:605.190450px;}
.y6ed_c00001{bottom:605.910450px;}
.y134_c00001{bottom:606.720450px;}
.y15e_c00001{bottom:606.810450px;}
.y921_c00001{bottom:606.810600px;}
.y855_c00001{bottom:607.307610px;}
.ya33_c00001{bottom:607.605690px;}
.y8ce_c00001{bottom:607.710450px;}
.yc0a_c00001{bottom:607.890450px;}
.y633_c00001{bottom:608.520450px;}
.y8a4_c00001{bottom:608.880450px;}
.ya6_c00001{bottom:609.140100px;}
.y9c1_c00001{bottom:609.240450px;}
.y7a7_c00001{bottom:609.510450px;}
.y88a_c00001{bottom:610.011210px;}
.y7cf_c00001{bottom:610.140450px;}
.y52e_c00001{bottom:610.410450px;}
.y30b_c00001{bottom:610.752720px;}
.y4e9_c00001{bottom:610.860450px;}
.y824_c00001{bottom:610.921560px;}
.y10b_c00001{bottom:611.310450px;}
.y493_c00001{bottom:612.312690px;}
.y42b_c00001{bottom:612.332100px;}
.y83d_c00001{bottom:612.390450px;}
.y98a_c00001{bottom:613.470450px;}
.y32c_c00001{bottom:614.190450px;}
.y8ee_c00001{bottom:614.190600px;}
.yba4_c00001{bottom:614.280450px;}
.y7fc_c00001{bottom:614.460450px;}
.ya49_c00001{bottom:614.910450px;}
.ya60_c00001{bottom:615.252720px;}
.y29a_c00001{bottom:615.540450px;}
.y9a5_c00001{bottom:615.810450px;}
.y7df_c00001{bottom:615.965340px;}
.y3b8_c00001{bottom:616.260450px;}
.y9f8_c00001{bottom:616.890450px;}
.y3e2_c00001{bottom:617.160450px;}
.yaca_c00001{bottom:617.340450px;}
.y93a_c00001{bottom:617.966850px;}
.y79_c00001{bottom:618.117960px;}
.y4e_c00001{bottom:618.240450px;}
.y599_c00001{bottom:618.586320px;}
.y8e9_c00001{bottom:618.780450px;}
.y5f7_c00001{bottom:618.780600px;}
.y9ea_c00001{bottom:619.025970px;}
.y37b_c00001{bottom:619.745340px;}
.y9e0_c00001{bottom:620.310450px;}
.y567_c00001{bottom:620.310600px;}
.y57c_c00001{bottom:620.393700px;}
.yb03_c00001{bottom:620.760450px;}
.yad7_c00001{bottom:621.930450px;}
.y405_c00001{bottom:623.190450px;}
.y126_c00001{bottom:623.190600px;}
.y72c_c00001{bottom:623.910450px;}
.ya32_c00001{bottom:624.439290px;}
.y269_c00001{bottom:624.540450px;}
.y810_c00001{bottom:624.810450px;}
.y5b9_c00001{bottom:625.080450px;}
.yc7_c00001{bottom:625.170450px;}
.y50e_c00001{bottom:625.350450px;}
.y60e_c00001{bottom:625.440450px;}
.y909_c00001{bottom:625.800450px;}
.ya5_c00001{bottom:626.063880px;}
.y492_c00001{bottom:626.078190px;}
.y42a_c00001{bottom:626.097600px;}
.y868_c00001{bottom:626.430450px;}
.y4c2_c00001{bottom:626.790450px;}
.y889_c00001{bottom:626.934990px;}
.y1b5_c00001{bottom:627.060450px;}
.y54a_c00001{bottom:627.132720px;}
.ya7d_c00001{bottom:627.240450px;}
.y30a_c00001{bottom:627.586320px;}
.y1fc_c00001{bottom:627.780450px;}
.y823_c00001{bottom:627.845340px;}
.ybe1_c00001{bottom:627.870450px;}
.yb8f_c00001{bottom:628.140450px;}
.y96e_c00001{bottom:629.310450px;}
.yb54_c00001{bottom:629.400450px;}
.y6cc_c00001{bottom:630.210450px;}
.ybc9_c00001{bottom:630.390450px;}
.y92f_c00001{bottom:631.020450px;}
.ya5f_c00001{bottom:632.176500px;}
.ye9_c00001{bottom:632.190450px;}
.y185_c00001{bottom:632.370450px;}
.y24d_c00001{bottom:632.640450px;}
.y7de_c00001{bottom:632.798940px;}
.y854_c00001{bottom:633.234360px;}
.y916_c00001{bottom:633.900450px;}
.y14_c00001{bottom:634.260450px;}
.y45b_c00001{bottom:634.440450px;}
.y939_c00001{bottom:634.800450px;}
.yc2d_c00001{bottom:634.890450px;}
.y789_c00001{bottom:634.980450px;}
.y78_c00001{bottom:635.041740px;}
.y2e8_c00001{bottom:635.250450px;}
.y598_c00001{bottom:635.510100px;}
.y9e9_c00001{bottom:635.949750px;}
.yaaa_c00001{bottom:636.060450px;}
.y94b_c00001{bottom:636.394710px;}
.y37a_c00001{bottom:636.578940px;}
.y149_c00001{bottom:636.780450px;}
.y1e4_c00001{bottom:637.770450px;}
.yb2d_c00001{bottom:638.130450px;}
.y2d2_c00001{bottom:638.310450px;}
.y766_c00001{bottom:638.400450px;}
.ya8c_c00001{bottom:639.660450px;}
.y491_c00001{bottom:639.843690px;}
.y429_c00001{bottom:639.863100px;}
.y6ec_c00001{bottom:640.290450px;}
.y133_c00001{bottom:641.190450px;}
.y1c0_c00001{bottom:641.190600px;}
.ya31_c00001{bottom:641.363070px;}
.ya16_c00001{bottom:641.708850px;}
.y8cd_c00001{bottom:642.090450px;}
.y632_c00001{bottom:642.900450px;}
.y2b7_c00001{bottom:642.990450px;}
.y8a3_c00001{bottom:643.260450px;}
.y9c0_c00001{bottom:643.710450px;}
.y888_c00001{bottom:643.768590px;}
.y549_c00001{bottom:644.056500px;}
.y309_c00001{bottom:644.510100px;}
.y822_c00001{bottom:644.678940px;}
.y52d_c00001{bottom:644.790450px;}
.y4e8_c00001{bottom:645.330450px;}
.y10a_c00001{bottom:645.780450px;}
.y57b_c00001{bottom:646.320450px;}
.y83c_c00001{bottom:646.860450px;}
.y7a6_c00001{bottom:646.900230px;}
.y191_c00001{bottom:647.400450px;}
.y7ce_c00001{bottom:647.635260px;}
.y989_c00001{bottom:647.940450px;}
.ybe0_c00001{bottom:648.120450px;}
.yb71_c00001{bottom:648.390450px;}
.y663_c00001{bottom:648.660450px;}
.y71d_c00001{bottom:648.696720px;}
.yac9_c00001{bottom:648.750450px;}
.y5e9_c00001{bottom:648.992640px;}
.ya5e_c00001{bottom:649.010100px;}
.y7dd_c00001{bottom:649.722720px;}
.y299_c00001{bottom:650.010450px;}
.y853_c00001{bottom:650.067960px;}
.y981_c00001{bottom:650.190450px;}
.y3b7_c00001{bottom:650.640450px;}
.y9f7_c00001{bottom:651.360450px;}
.y707_c00001{bottom:651.540450px;}
.y77_c00001{bottom:651.875340px;}
.ya4_c00001{bottom:651.900450px;}
.y597_c00001{bottom:652.343700px;}
.yba3_c00001{bottom:652.530450px;}
.y4d_c00001{bottom:652.710450px;}
.yc26_c00001{bottom:652.890450px;}
.y8e8_c00001{bottom:653.160450px;}
.yac7_c00001{bottom:653.164956px;}
.y94a_c00001{bottom:653.228310px;}
.y379_c00001{bottom:653.502720px;}
.y490_c00001{bottom:653.704950px;}
.y428_c00001{bottom:653.724360px;}
.y3e1_c00001{bottom:654.575340px;}
.y33f_c00001{bottom:654.780450px;}
.y566_c00001{bottom:654.780600px;}
.yc2c_c00001{bottom:655.140450px;}
.yb02_c00001{bottom:655.230450px;}
.y2fa_c00001{bottom:657.660450px;}
.y125_c00001{bottom:657.660600px;}
.y7fb_c00001{bottom:657.840450px;}
.ya30_c00001{bottom:658.196670px;}
.y72b_c00001{bottom:658.290450px;}
.y268_c00001{bottom:659.010450px;}
.y80f_c00001{bottom:659.190450px;}
.y50d_c00001{bottom:659.820450px;}
.y908_c00001{bottom:660.180450px;}
.y548_c00001{bottom:660.890100px;}
.y4c1_c00001{bottom:661.260450px;}
.y308_c00001{bottom:661.343700px;}
.y1b4_c00001{bottom:661.530450px;}
.y821_c00001{bottom:661.602720px;}
.ya7c_c00001{bottom:661.710450px;}
.y9e8_c00001{bottom:661.786320px;}
.y1fb_c00001{bottom:662.160450px;}
.y5f6_c00001{bottom:662.160600px;}
.y21e_c00001{bottom:662.250450px;}
.y96d_c00001{bottom:663.780450px;}
.y7cd_c00001{bottom:664.468860px;}
.y6cb_c00001{bottom:664.680450px;}
.y92e_c00001{bottom:665.400450px;}
.y71c_c00001{bottom:665.620500px;}
.y5e8_c00001{bottom:665.826240px;}
.ya5d_c00001{bottom:665.933880px;}
.yc6_c00001{bottom:666.030450px;}
.y7dc_c00001{bottom:666.556320px;}
.ye8_c00001{bottom:666.660450px;}
.y8f6_c00001{bottom:666.660600px;}
.y852_c00001{bottom:666.991740px;}
.y48f_c00001{bottom:667.470450px;}
.y427_c00001{bottom:667.489860px;}
.y960_c00001{bottom:668.190450px;}
.y915_c00001{bottom:668.370450px;}
.y13_c00001{bottom:668.640450px;}
.y76_c00001{bottom:668.799120px;}
.y45a_c00001{bottom:668.910450px;}
.y788_c00001{bottom:669.360450px;}
.y887_c00001{bottom:669.695340px;}
.y867_c00001{bottom:669.810450px;}
.y949_c00001{bottom:670.152090px;}
.ya15_c00001{bottom:670.325970px;}
.y378_c00001{bottom:670.336320px;}
.y68a_c00001{bottom:670.440450px;}
.ybb9_c00001{bottom:670.890450px;}
.y148_c00001{bottom:671.160450px;}
.y672_c00001{bottom:671.250450px;}
.y3e0_c00001{bottom:671.499120px;}
.y1e3_c00001{bottom:672.150450px;}
.yb2c_c00001{bottom:672.510450px;}
.yba2_c00001{bottom:672.780450px;}
.y7a5_c00001{bottom:672.826980px;}
.ya8b_c00001{bottom:674.040450px;}
.y6eb_c00001{bottom:674.760450px;}
.ya2f_c00001{bottom:675.120450px;}
.y132_c00001{bottom:675.570450px;}
.y19a_c00001{bottom:675.660450px;}
.y15d_c00001{bottom:675.660600px;}
.y24c_c00001{bottom:676.110450px;}
.y8cc_c00001{bottom:676.560450px;}
.y184_c00001{bottom:677.370450px;}
.y2b6_c00001{bottom:677.460450px;}
.y547_c00001{bottom:677.813880px;}
.y9bf_c00001{bottom:678.090450px;}
.y596_c00001{bottom:678.270450px;}
.y820_c00001{bottom:678.436320px;}
.y9e7_c00001{bottom:678.710100px;}
.y68c_c00001{bottom:678.900450px;}
.y68b_c00001{bottom:678.904950px;}
.yac8_c00001{bottom:679.080450px;}
.y4e7_c00001{bottom:679.710450px;}
.y673_c00001{bottom:679.714950px;}
.y109_c00001{bottom:680.160450px;}
.y426_c00001{bottom:681.255360px;}
.y7cc_c00001{bottom:681.392640px;}
.y2d1_c00001{bottom:681.780450px;}
.y71b_c00001{bottom:682.454100px;}
.y48e_c00001{bottom:682.680450px;}
.y5e7_c00001{bottom:682.750020px;}
.y7db_c00001{bottom:683.480100px;}
.y851_c00001{bottom:683.825340px;}
.y980_c00001{bottom:684.660450px;}
.y3b6_c00001{bottom:685.110450px;}
.y988_c00001{bottom:685.380450px;}
.y75_c00001{bottom:685.632720px;}
.y9f6_c00001{bottom:685.740450px;}
.y706_c00001{bottom:686.010450px;}
.y886_c00001{bottom:686.528940px;}
.yb8e_c00001{bottom:686.640450px;}
.y8a2_c00001{bottom:686.730450px;}
.y948_c00001{bottom:686.985690px;}
.y57a_c00001{bottom:687.090600px;}
.y377_c00001{bottom:687.260100px;}
.y307_c00001{bottom:687.270450px;}
.y52c_c00001{bottom:688.260450px;}
.y3df_c00001{bottom:688.332720px;}
.yb70_c00001{bottom:688.890450px;}
.y33e_c00001{bottom:689.160450px;}
.y565_c00001{bottom:689.160600px;}
.y7a4_c00001{bottom:689.660580px;}
.y83b_c00001{bottom:690.240450px;}
.ybb8_c00001{bottom:691.140450px;}
.ya5c_c00001{bottom:691.770450px;}
.y2f9_c00001{bottom:692.040450px;}
.y32b_c00001{bottom:692.040600px;}
.y7fa_c00001{bottom:692.310450px;}
.ya03_c00001{bottom:692.483070px;}
.ya3_c00001{bottom:692.760450px;}
.y298_c00001{bottom:693.390450px;}
.y80e_c00001{bottom:693.660450px;}
.y50c_c00001{bottom:694.200450px;}
.y425_c00001{bottom:695.116620px;}
.y81f_c00001{bottom:695.360100px;}
.y9e6_c00001{bottom:695.543700px;}
.y4c0_c00001{bottom:695.640450px;}
.y1b3_c00001{bottom:695.910450px;}
.y4c_c00001{bottom:696.090450px;}
.ya14_c00001{bottom:696.252720px;}
.y1fa_c00001{bottom:696.630450px;}
.y5f5_c00001{bottom:696.630600px;}
.y907_c00001{bottom:697.710450px;}
.y2e7_c00001{bottom:697.980450px;}
.y96c_c00001{bottom:698.160450px;}
.y7cb_c00001{bottom:698.226240px;}
.y71a_c00001{bottom:699.377880px;}
.y5e6_c00001{bottom:699.583620px;}
.y92d_c00001{bottom:699.870450px;}
.yb01_c00001{bottom:700.230450px;}
.yc5_c00001{bottom:700.410450px;}
.y850_c00001{bottom:700.749120px;}
.ye7_c00001{bottom:701.040450px;}
.y124_c00001{bottom:701.040600px;}
.y670_c00001{bottom:701.580450px;}
.y6ca_c00001{bottom:702.105690px;}
.y267_c00001{bottom:702.390450px;}
.y74_c00001{bottom:702.556500px;}
.y95f_c00001{bottom:702.660450px;}
.y914_c00001{bottom:702.750450px;}
.y12_c00001{bottom:703.110450px;}
.y60d_c00001{bottom:703.290450px;}
.y48d_c00001{bottom:703.380450px;}
.y885_c00001{bottom:703.452720px;}
.y5b8_c00001{bottom:703.643880px;}
.y546_c00001{bottom:703.650450px;}
.y947_c00001{bottom:703.909470px;}
.y376_c00001{bottom:704.093700px;}
.y866_c00001{bottom:704.280450px;}
.y3de_c00001{bottom:705.256500px;}
.y147_c00001{bottom:705.630450px;}
.y459_c00001{bottom:706.317960px;}
.y7a3_c00001{bottom:706.584360px;}
.y1e2_c00001{bottom:706.620450px;}
.yb8d_c00001{bottom:706.890450px;}
.y987_c00001{bottom:707.250450px;}
.yaa9_c00001{bottom:707.906280px;}
.y424_c00001{bottom:708.882120px;}
.y6ea_c00001{bottom:709.140450px;}
.y7da_c00001{bottom:709.316670px;}
.y131_c00001{bottom:710.040450px;}
.y15c_c00001{bottom:710.040600px;}
.y24b_c00001{bottom:710.490450px;}
.y8cb_c00001{bottom:710.940450px;}
.ybd4_c00001{bottom:711.390450px;}
.y631_c00001{bottom:711.750450px;}
.y2b5_c00001{bottom:711.840450px;}
.y81e_c00001{bottom:712.193700px;}
.ya13_c00001{bottom:713.086320px;}
.yc2b_c00001{bottom:713.640450px;}
.y4e6_c00001{bottom:714.180450px;}
.y787_c00001{bottom:714.450450px;}
.y280_c00001{bottom:714.630450px;}
.y4f6_c00001{bottom:714.630600px;}
.y7ca_c00001{bottom:715.150020px;}
.ya2e_c00001{bottom:715.890450px;}
.y2d0_c00001{bottom:716.160450px;}
.y719_c00001{bottom:716.211480px;}
.y5e5_c00001{bottom:716.507400px;}
.ya8a_c00001{bottom:717.510450px;}
.y84f_c00001{bottom:717.582720px;}
.yac2_c00001{bottom:718.140450px;}
.y6c9_c00001{bottom:719.029470px;}
.y4d7_c00001{bottom:719.040450px;}
.y595_c00001{bottom:719.040600px;}
.y73_c00001{bottom:719.390100px;}
.y3b5_c00001{bottom:719.490450px;}
.y906_c00001{bottom:719.580450px;}
.y884_c00001{bottom:720.286320px;}
.y946_c00001{bottom:720.743070px;}
.y8a1_c00001{bottom:721.110450px;}
.y9e5_c00001{bottom:721.470450px;}
.y9be_c00001{bottom:721.560450px;}
.y579_c00001{bottom:721.560600px;}
.y3dd_c00001{bottom:722.090100px;}
.y52b_c00001{bottom:722.640450px;}
.y423_c00001{bottom:722.647620px;}
.y458_c00001{bottom:723.241740px;}
.y7a2_c00001{bottom:723.417960px;}
.y108_c00001{bottom:723.630450px;}
.y564_c00001{bottom:723.630600px;}
.y48c_c00001{bottom:724.080450px;}
.y671_c00001{bottom:724.435950px;}
.y83a_c00001{bottom:724.710450px;}
.yaa8_c00001{bottom:724.739880px;}
.yb2b_c00001{bottom:725.340450px;}
.y7d9_c00001{bottom:726.240450px;}
.y2f8_c00001{bottom:726.510450px;}
.y32a_c00001{bottom:726.510600px;}
.y7f9_c00001{bottom:726.690450px;}
.ybdf_c00001{bottom:726.870450px;}
.ya2_c00001{bottom:727.140450px;}
.y297_c00001{bottom:727.860450px;}
.y306_c00001{bottom:728.040450px;}
.y9d7_c00001{bottom:728.490450px;}
.y50b_c00001{bottom:728.670450px;}
.y705_c00001{bottom:729.390450px;}
.ya12_c00001{bottom:730.010100px;}
.y375_c00001{bottom:730.020450px;}
.y4b_c00001{bottom:730.560450px;}
.y8e7_c00001{bottom:731.010450px;}
.y80d_c00001{bottom:731.072370px;}
.yc25_c00001{bottom:731.640450px;}
.y7c9_c00001{bottom:731.983620px;}
.y2e6_c00001{bottom:732.360450px;}
.y96b_c00001{bottom:732.630450px;}
.y718_c00001{bottom:733.135260px;}
.y5e4_c00001{bottom:733.341000px;}
.y92c_c00001{bottom:734.250450px;}
.y84e_c00001{bottom:734.506500px;}
.yc4_c00001{bottom:734.880450px;}
.ye6_c00001{bottom:735.510450px;}
.y123_c00001{bottom:735.510600px;}
.y6c8_c00001{bottom:735.863070px;}
.ya48_c00001{bottom:736.140450px;}
.y72_c00001{bottom:736.313880px;}
.y422_c00001{bottom:736.508880px;}
.y266_c00001{bottom:736.860450px;}
.y95e_c00001{bottom:737.040450px;}
.y883_c00001{bottom:737.210100px;}
.y11_c00001{bottom:737.490450px;}
.y945_c00001{bottom:737.666850px;}
.y60c_c00001{bottom:737.760450px;}
.y81d_c00001{bottom:738.120450px;}
.y865_c00001{bottom:738.660450px;}
.y3dc_c00001{bottom:739.013880px;}
.y4bf_c00001{bottom:739.110450px;}
.y1f9_c00001{bottom:740.010450px;}
.y183_c00001{bottom:740.010600px;}
.y457_c00001{bottom:740.075340px;}
.y21d_c00001{bottom:740.100450px;}
.y7a1_c00001{bottom:740.341740px;}
.yb53_c00001{bottom:740.370450px;}
.y1b2_c00001{bottom:741.000450px;}
.y1e1_c00001{bottom:744.060450px;}
.y199_c00001{bottom:744.510450px;}
.y15b_c00001{bottom:744.510600px;}
.y24a_c00001{bottom:744.960450px;}
.y630_c00001{bottom:746.220450px;}
.ya11_c00001{bottom:746.843700px;}
.y6e9_c00001{bottom:747.363990px;}
.yc20_c00001{bottom:747.390450px;}
.y80c_c00001{bottom:747.996150px;}
.y130_c00001{bottom:748.286580px;}
.y7c8_c00001{bottom:748.907400px;}
.y397_c00001{bottom:749.010450px;}
.y47d_c00001{bottom:749.010600px;}
.y913_c00001{bottom:749.280450px;}
.y2b4_c00001{bottom:749.355690px;}
.yba1_c00001{bottom:749.370450px;}
.ybb7_c00001{bottom:749.640450px;}
.y717_c00001{bottom:749.968860px;}
.y421_c00001{bottom:750.274380px;}
.ya2d_c00001{bottom:750.360450px;}
.y146_c00001{bottom:750.630450px;}
.yaa7_c00001{bottom:750.666630px;}
.y84d_c00001{bottom:751.340100px;}
.y4e5_c00001{bottom:751.621800px;}
.ya89_c00001{bottom:751.890450px;}
.y6c7_c00001{bottom:752.786850px;}
.y4d6_c00001{bottom:753.510450px;}
.y594_c00001{bottom:753.510600px;}
.y3b4_c00001{bottom:753.960450px;}
.y8ca_c00001{bottom:754.410450px;}
.y944_c00001{bottom:754.500450px;}
.y8a0_c00001{bottom:755.580450px;}
.y9bd_c00001{bottom:755.940450px;}
.y578_c00001{bottom:755.940600px;}
.y456_c00001{bottom:756.999120px;}
.y7a0_c00001{bottom:757.175340px;}
.y107_c00001{bottom:758.010450px;}
.y563_c00001{bottom:758.010600px;}
.y839_c00001{bottom:759.090450px;}
.y5e3_c00001{bottom:759.252720px;}
.y27f_c00001{bottom:759.630450px;}
.y2f7_c00001{bottom:760.890450px;}
.y329_c00001{bottom:760.890600px;}
.y7f8_c00001{bottom:761.160450px;}
.y2cf_c00001{bottom:761.250450px;}
.ya1_c00001{bottom:761.610450px;}
.y71_c00001{bottom:762.150450px;}
.y9e4_c00001{bottom:762.240450px;}
.y305_c00001{bottom:762.510450px;}
.y9d6_c00001{bottom:762.960450px;}
.y882_c00001{bottom:763.046670px;}
.y704_c00001{bottom:763.860450px;}
.y80b_c00001{bottom:764.829750px;}
.y3db_c00001{bottom:764.850450px;}
.y4a_c00001{bottom:764.940450px;}
.ybde_c00001{bottom:765.120450px;}
.yb8c_c00001{bottom:765.390450px;}
.y8e6_c00001{bottom:765.480450px;}
.y7c7_c00001{bottom:765.741000px;}
.y1e0_c00001{bottom:765.930450px;}
.y50a_c00001{bottom:766.051950px;}
.y52a_c00001{bottom:766.110450px;}
.y2b3_c00001{bottom:766.189290px;}
.y2e5_c00001{bottom:766.830450px;}
.y6e8_c00001{bottom:766.887960px;}
.y716_c00001{bottom:766.892640px;}
.y33d_c00001{bottom:767.010450px;}
.yaa6_c00001{bottom:767.500230px;}
.yb6f_c00001{bottom:767.640450px;}
.ya7b_c00001{bottom:767.971830px;}
.y420_c00001{bottom:768.540600px;}
.y92b_c00001{bottom:768.720450px;}
.y6c6_c00001{bottom:769.620450px;}
.ye5_c00001{bottom:769.890450px;}
.y122_c00001{bottom:769.890600px;}
.ya47_c00001{bottom:770.610450px;}
.y374_c00001{bottom:770.790450px;}
.y265_c00001{bottom:771.240450px;}
.y10_c00001{bottom:771.960450px;}
.y12f_c00001{bottom:772.770450px;}
.y864_c00001{bottom:773.130450px;}
.y4be_c00001{bottom:773.490450px;}
.y455_c00001{bottom:773.832720px;}
.y79f_c00001{bottom:774.099120px;}
.y1f8_c00001{bottom:774.480450px;}
.y182_c00001{bottom:774.480600px;}
.y95d_c00001{bottom:774.548310px;}
.y60b_c00001{bottom:775.167960px;}
.y96a_c00001{bottom:776.010450px;}
.y5e2_c00001{bottom:776.086320px;}
.y786_c00001{bottom:777.090450px;}
.y84c_c00001{bottom:777.266850px;}
.yc3_c00001{bottom:778.260450px;}
.y198_c00001{bottom:778.890450px;}
.y15a_c00001{bottom:778.890600px;}
.y881_c00001{bottom:779.970450px;}
.y62f_c00001{bottom:780.600450px;}
.y80a_c00001{bottom:781.753530px;}
.y249_c00001{bottom:782.393070px;}
.y509_c00001{bottom:782.975730px;}
.y2b2_c00001{bottom:783.113070px;}
.y396_c00001{bottom:783.480450px;}
.y47c_c00001{bottom:783.480600px;}
.y6e7_c00001{bottom:783.721560px;}
.y715_c00001{bottom:783.726240px;}
.y41f_c00001{bottom:783.750450px;}
.yaa5_c00001{bottom:784.424010px;}
.ya2c_c00001{bottom:784.740450px;}
.ya7a_c00001{bottom:784.895610px;}
.y21c_c00001{bottom:785.100450px;}
.ybdd_c00001{bottom:785.370450px;}
.yb8b_c00001{bottom:785.640450px;}
.ya88_c00001{bottom:786.360450px;}
.y1d3_c00001{bottom:787.890450px;}
.y593_c00001{bottom:787.890600px;}
.y8c9_c00001{bottom:788.790450px;}
.y89f_c00001{bottom:789.960450px;}
.ybf6_c00001{bottom:790.140450px;}
.y9bc_c00001{bottom:790.410450px;}
.y577_c00001{bottom:790.410600px;}
.y454_c00001{bottom:790.756500px;}
.y79e_c00001{bottom:790.932720px;}
.y998_c00001{bottom:791.217210px;}
.y3b3_c00001{bottom:791.378940px;}
.y95c_c00001{bottom:791.381910px;}
.y7c6_c00001{bottom:791.652720px;}
.y60a_c00001{bottom:792.091740px;}
.y106_c00001{bottom:792.480450px;}
.y562_c00001{bottom:792.480600px;}
.y5e1_c00001{bottom:793.010100px;}
.y838_c00001{bottom:793.560450px;}
.y84b_c00001{bottom:794.100450px;}
.y2f6_c00001{bottom:795.360450px;}
.ya0_c00001{bottom:795.990450px;}
.y9e3_c00001{bottom:796.710450px;}
.y304_c00001{bottom:796.890450px;}
.yae4_c00001{bottom:796.890600px;}
.y9d5_c00001{bottom:797.340450px;}
.y703_c00001{bottom:798.240450px;}
.y809_c00001{bottom:798.587130px;}
.y248_c00001{bottom:799.316850px;}
.y49_c00001{bottom:799.410450px;}
.y508_c00001{bottom:799.809330px;}
.y2b1_c00001{bottom:799.946670px;}
.y529_c00001{bottom:800.490450px;}
.y6e6_c00001{bottom:800.645340px;}
.y714_c00001{bottom:800.650020px;}
.yaa4_c00001{bottom:801.257610px;}
.y33c_c00001{bottom:801.480450px;}
.ya79_c00001{bottom:801.729210px;}
.y70_c00001{bottom:803.010600px;}
.y92a_c00001{bottom:803.100450px;}
.y1b1_c00001{bottom:803.640450px;}
.y328_c00001{bottom:804.360450px;}
.y41e_c00001{bottom:804.450450px;}
.y7f7_c00001{bottom:804.540450px;}
.ya46_c00001{bottom:804.990450px;}
.y373_c00001{bottom:805.260450px;}
.y264_c00001{bottom:805.710450px;}
.yc09_c00001{bottom:805.890450px;}
.y453_c00001{bottom:807.590100px;}
.y79d_c00001{bottom:807.856500px;}
.y4bd_c00001{bottom:807.960450px;}
.yb6e_c00001{bottom:808.140450px;}
.y3b2_c00001{bottom:808.302720px;}
.y95b_c00001{bottom:808.305690px;}
.y7c5_c00001{bottom:808.486320px;}
.y1f7_c00001{bottom:808.860450px;}
.y181_c00001{bottom:808.860600px;}
.y2ce_c00001{bottom:808.925340px;}
.y5e0_c00001{bottom:809.843700px;}
.y2e4_c00001{bottom:810.210450px;}
.y6c5_c00001{bottom:810.480450px;}
.ya9b_c00001{bottom:810.480600px;}
.y785_c00001{bottom:811.560450px;}
.yc2_c00001{bottom:812.730450px;}
.y121_c00001{bottom:813.360450px;}
.ya01_c00001{bottom:813.360600px;}
.ya10_c00001{bottom:813.540450px;}
.yf_c00001{bottom:815.340450px;}
.y247_c00001{bottom:816.150450px;}
.y507_c00001{bottom:816.733110px;}
.y2b0_c00001{bottom:816.870450px;}
.y6e5_c00001{bottom:817.478940px;}
.y713_c00001{bottom:817.483620px;}
.y395_c00001{bottom:817.860450px;}
.y4f5_c00001{bottom:817.860600px;}
.y863_c00001{bottom:818.130450px;}
.yaa3_c00001{bottom:818.181390px;}
.ya78_c00001{bottom:818.652990px;}
.ya2b_c00001{bottom:819.210450px;}
.y880_c00001{bottom:820.740450px;}
.ye4_c00001{bottom:822.360450px;}
.y8c8_c00001{bottom:823.260450px;}
.ybdc_c00001{bottom:823.620450px;}
.yb8a_c00001{bottom:823.890450px;}
.y62e_c00001{bottom:824.070450px;}
.y89e_c00001{bottom:824.430450px;}
.y452_c00001{bottom:824.513880px;}
.y79c_c00001{bottom:824.690100px;}
.y576_c00001{bottom:824.790600px;}
.y3b1_c00001{bottom:825.136320px;}
.y95a_c00001{bottom:825.139290px;}
.y41d_c00001{bottom:825.150600px;}
.yb29_c00001{bottom:825.240450px;}
.y7c4_c00001{bottom:825.410100px;}
.y2cd_c00001{bottom:825.849120px;}
.yc05_c00001{bottom:826.140450px;}
.y105_c00001{bottom:826.860450px;}
.y758_c00001{bottom:826.860600px;}
.y9bb_c00001{bottom:827.803830px;}
.ybb6_c00001{bottom:828.390450px;}
.y997_c00001{bottom:828.480450px;}
.y943_c00001{bottom:829.740450px;}
.y9f_c00001{bottom:830.460450px;}
.y837_c00001{bottom:830.931060px;}
.y303_c00001{bottom:831.360450px;}
.yb00_c00001{bottom:831.810450px;}
.y9d4_c00001{bottom:831.810600px;}
.y702_c00001{bottom:832.710450px;}
.y21b_c00001{bottom:832.890450px;}
.y506_c00001{bottom:833.566710px;}
.y6e4_c00001{bottom:834.402720px;}
.y712_c00001{bottom:834.407400px;}
.y528_c00001{bottom:834.960450px;}
.yaa2_c00001{bottom:835.014990px;}
.ya77_c00001{bottom:835.486590px;}
.y5df_c00001{bottom:835.770450px;}
.y33b_c00001{bottom:835.860450px;}
.y6f_c00001{bottom:837.390600px;}
.y1b0_c00001{bottom:838.110450px;}
.y327_c00001{bottom:838.740450px;}
.y7f6_c00001{bottom:839.010450px;}
.y72a_c00001{bottom:839.460450px;}
.y372_c00001{bottom:839.640450px;}
.y263_c00001{bottom:840.090450px;}
.y929_c00001{bottom:840.630450px;}
.y79b_c00001{bottom:841.613880px;}
.y3b0_c00001{bottom:842.060100px;}
.y959_c00001{bottom:842.063070px;}
.y2cc_c00001{bottom:842.682720px;}
.y48_c00001{bottom:842.790450px;}
.y8e5_c00001{bottom:843.330450px;}
.ybdb_c00001{bottom:843.870450px;}
.yb89_c00001{bottom:844.140450px;}
.y2e3_c00001{bottom:844.680450px;}
.y9ba_c00001{bottom:844.727610px;}
.y6c4_c00001{bottom:844.860450px;}
.y4bc_c00001{bottom:845.350230px;}
.yb6d_c00001{bottom:846.390450px;}
.yc1_c00001{bottom:847.110450px;}
.y120_c00001{bottom:847.740450px;}
.y836_c00001{bottom:847.854840px;}
.ya0f_c00001{bottom:848.010450px;}
.ybf5_c00001{bottom:848.640450px;}
.ye_c00001{bottom:849.810450px;}
.y451_c00001{bottom:850.350450px;}
.y505_c00001{bottom:850.490490px;}
.y6e3_c00001{bottom:851.236320px;}
.y711_c00001{bottom:851.241000px;}
.y7c3_c00001{bottom:851.246670px;}
.yaa1_c00001{bottom:851.938770px;}
.y1f6_c00001{bottom:852.330450px;}
.ya76_c00001{bottom:852.410370px;}
.y21a_c00001{bottom:854.760450px;}
.y784_c00001{bottom:854.940450px;}
.y87f_c00001{bottom:855.210450px;}
.ye3_c00001{bottom:856.740450px;}
.y246_c00001{bottom:857.010450px;}
.y2af_c00001{bottom:857.640450px;}
.y62d_c00001{bottom:858.450450px;}
.y89d_c00001{bottom:858.810450px;}
.y3af_c00001{bottom:858.893700px;}
.y958_c00001{bottom:858.896670px;}
.y2cb_c00001{bottom:859.606500px;}
.yb28_c00001{bottom:859.710450px;}
.y104_c00001{bottom:861.330450px;}
.y9b9_c00001{bottom:861.561210px;}
.y4bb_c00001{bottom:862.274010px;}
.y575_c00001{bottom:862.289040px;}
.y928_c00001{bottom:862.500600px;}
.ya2a_c00001{bottom:862.590450px;}
.y180_c00001{bottom:862.950450px;}
.y942_c00001{bottom:864.210450px;}
.yc08_c00001{bottom:864.390450px;}
.y835_c00001{bottom:864.688440px;}
.y302_c00001{bottom:865.740450px;}
.y9d3_c00001{bottom:866.190600px;}
.ybb5_c00001{bottom:866.640450px;}
.y504_c00001{bottom:867.324090px;}
.y79a_c00001{bottom:867.450450px;}
.y6e2_c00001{bottom:868.160100px;}
.y7c2_c00001{bottom:868.170450px;}
.y9e_c00001{bottom:868.676790px;}
.yaff_c00001{bottom:869.228940px;}
.ya75_c00001{bottom:869.243970px;}
.y527_c00001{bottom:869.340450px;}
.y701_c00001{bottom:870.140100px;}
.y33a_c00001{bottom:870.330450px;}
.y757_c00001{bottom:871.950450px;}
.y1af_c00001{bottom:872.490450px;}
.y688_c00001{bottom:873.120450px;}
.y662_c00001{bottom:873.210450px;}
.y7f5_c00001{bottom:873.390450px;}
.y729_c00001{bottom:873.840450px;}
.y66f_c00001{bottom:874.105950px;}
.y66d_c00001{bottom:874.110600px;}
.y262_c00001{bottom:874.560450px;}
.y957_c00001{bottom:875.820450px;}
.y2ca_c00001{bottom:876.440100px;}
.y41c_c00001{bottom:876.540450px;}
.y371_c00001{bottom:877.152720px;}
.y47_c00001{bottom:877.260450px;}
.yaa0_c00001{bottom:877.775340px;}
.y2e2_c00001{bottom:879.060450px;}
.y4ba_c00001{bottom:879.107610px;}
.y574_c00001{bottom:879.122640px;}
.y46f_c00001{bottom:879.330450px;}
.y6e_c00001{bottom:880.860450px;}
.yc0_c00001{bottom:881.580450px;}
.y689_c00001{bottom:881.584950px;}
.y834_c00001{bottom:881.612220px;}
.ybda_c00001{bottom:882.120450px;}
.y145_c00001{bottom:882.210450px;}
.ya0e_c00001{bottom:882.390450px;}
.y66c_c00001{bottom:882.570450px;}
.y66e_c00001{bottom:882.575100px;}
.yd_c00001{bottom:884.190600px;}
.y503_c00001{bottom:884.247870px;}
.yb6c_c00001{bottom:884.640450px;}
.y3ae_c00001{bottom:884.820450px;}
.yafe_c00001{bottom:886.152720px;}
.y1f5_c00001{bottom:886.710450px;}
.ybd3_c00001{bottom:886.890450px;}
.y700_c00001{bottom:887.063880px;}
.y9b8_c00001{bottom:887.487960px;}
.y9d_c00001{bottom:888.110580px;}
.y8e4_c00001{bottom:888.330450px;}
.y783_c00001{bottom:889.410450px;}
.ye2_c00001{bottom:891.210450px;}
.y245_c00001{bottom:891.390450px;}
.y2ae_c00001{bottom:892.110450px;}
.y62c_c00001{bottom:892.920450px;}
.y2c9_c00001{bottom:893.363880px;}
.y370_c00001{bottom:893.986320px;}
.y6e1_c00001{bottom:893.996670px;}
.yb27_c00001{bottom:894.090450px;}
.ya9f_c00001{bottom:894.699120px;}
.ya74_c00001{bottom:895.155690px;}
.y103_c00001{bottom:895.710450px;}
.y4b9_c00001{bottom:896.031390px;}
.y573_c00001{bottom:896.046420px;}
.ya29_c00001{bottom:897.060450px;}
.y414_c00001{bottom:897.330450px;}
.y833_c00001{bottom:898.445820px;}
.y87e_c00001{bottom:898.590450px;}
.y66b_c00001{bottom:899.400450px;}
.y301_c00001{bottom:900.210450px;}
.y502_c00001{bottom:901.081470px;}
.y609_c00001{bottom:902.366850px;}
.ybd9_c00001{bottom:902.370450px;}
.yb88_c00001{bottom:902.640450px;}
.yafd_c00001{bottom:902.986320px;}
.y526_c00001{bottom:903.810450px;}
.y89c_c00001{bottom:903.900450px;}
.y9b7_c00001{bottom:904.321560px;}
.y9df_c00001{bottom:904.710450px;}
.yb6b_c00001{bottom:904.890450px;}
.y9c_c00001{bottom:905.034360px;}
.y229_c00001{bottom:906.330450px;}
.y1ae_c00001{bottom:906.960450px;}
.ybf4_c00001{bottom:907.140450px;}
.y661_c00001{bottom:907.590450px;}
.y7f4_c00001{bottom:907.860450px;}
.y728_c00001{bottom:908.310450px;}
.y296_c00001{bottom:908.940450px;}
.y9d2_c00001{bottom:909.660600px;}
.y36f_c00001{bottom:910.910100px;}
.y6e0_c00001{bottom:910.920450px;}
.y41b_c00001{bottom:911.010450px;}
.ya9e_c00001{bottom:911.532720px;}
.y46_c00001{bottom:911.640450px;}
.ya73_c00001{bottom:911.989290px;}
.y572_c00001{bottom:912.880020px;}
.y6ff_c00001{bottom:912.900450px;}
.y339_c00001{bottom:913.710450px;}
.y6d_c00001{bottom:915.240450px;}
.y832_c00001{bottom:915.369600px;}
.ybf_c00001{bottom:915.960450px;}
.y172_c00001{bottom:916.590450px;}
.y261_c00001{bottom:917.940450px;}
.y501_c00001{bottom:918.005250px;}
.yc_c00001{bottom:918.660600px;}
.y2c8_c00001{bottom:919.200450px;}
.yafc_c00001{bottom:919.910100px;}
.ya0d_c00001{bottom:919.913070px;}
.y9b6_c00001{bottom:921.245340px;}
.y9b_c00001{bottom:921.867960px;}
.ya9a_c00001{bottom:922.710450px;}
.yb87_c00001{bottom:922.890450px;}
.y782_c00001{bottom:923.790450px;}
.y2e1_c00001{bottom:924.150450px;}
.yba0_c00001{bottom:925.140450px;}
.ye1_c00001{bottom:925.590450px;}
.y2ad_c00001{bottom:926.490450px;}
.y62b_c00001{bottom:927.300450px;}
.y36e_c00001{bottom:927.743700px;}
.ya9d_c00001{bottom:928.456500px;}
.yb26_c00001{bottom:928.560450px;}
.ya72_c00001{bottom:928.913070px;}
.y571_c00001{bottom:929.803800px;}
.y394_c00001{bottom:930.180450px;}
.ya28_c00001{bottom:931.440450px;}
.y1f4_c00001{bottom:931.800450px;}
.y831_c00001{bottom:932.203200px;}
.y87d_c00001{bottom:933.060450px;}
.y1d2_c00001{bottom:934.590450px;}
.y500_c00001{bottom:934.838850px;}
.y244_c00001{bottom:934.860450px;}
.yafb_c00001{bottom:936.743700px;}
.ya0c_c00001{bottom:936.746670px;}
.y9b5_c00001{bottom:938.078940px;}
.y9a_c00001{bottom:938.791740px;}
.ybd8_c00001{bottom:940.620450px;}
.y102_c00001{bottom:940.800450px;}
.y525_c00001{bottom:941.206170px;}
.y1ad_c00001{bottom:941.340450px;}
.y660_c00001{bottom:942.060450px;}
.y727_c00001{bottom:942.690450px;}
.yb6a_c00001{bottom:943.140450px;}
.y295_c00001{bottom:943.410450px;}
.y3da_c00001{bottom:943.410600px;}
.y9d1_c00001{bottom:944.040600px;}
.y7f3_c00001{bottom:945.290100px;}
.y41a_c00001{bottom:945.390450px;}
.ya71_c00001{bottom:945.746670px;}
.ya45_c00001{bottom:946.541820px;}
.y570_c00001{bottom:946.637400px;}
.y338_c00001{bottom:948.180450px;}
.y45_c00001{bottom:949.126980px;}
.y6c_c00001{bottom:949.710450px;}
.y171_c00001{bottom:951.060450px;}
.y6df_c00001{bottom:951.690450px;}
.y260_c00001{bottom:952.410450px;}
.yb_c00001{bottom:953.040450px;}
.y36d_c00001{bottom:953.670450px;}
.y6fe_c00001{bottom:953.760450px;}
.y9b4_c00001{bottom:955.002720px;}
.y99_c00001{bottom:955.625340px;}
.y6c3_c00001{bottom:957.180450px;}
.y524_c00001{bottom:958.129950px;}
.y781_c00001{bottom:958.260450px;}
.ye0_c00001{bottom:960.060450px;}
.y4ff_c00001{bottom:960.765600px;}
.ybe_c00001{bottom:961.050450px;}
.yb86_c00001{bottom:961.140450px;}
.y62a_c00001{bottom:961.770450px;}
.ybd7_c00001{bottom:962.130450px;}
.y7f2_c00001{bottom:962.213880px;}
.ya70_c00001{bottom:962.670450px;}
.yb69_c00001{bottom:963.390450px;}
.y56f_c00001{bottom:963.561180px;}
.y2ac_c00001{bottom:964.005690px;}
.y393_c00001{bottom:964.560450px;}
.ybf3_c00001{bottom:965.640450px;}
.ya27_c00001{bottom:965.910450px;}
.y44_c00001{bottom:965.960580px;}
.ya44_c00001{bottom:965.975610px;}
.y89b_c00001{bottom:966.540450px;}
.y1d1_c00001{bottom:969.060450px;}
.y243_c00001{bottom:969.240450px;}
.y8c7_c00001{bottom:969.960450px;}
.ya9c_c00001{bottom:971.216850px;}
.y87c_c00001{bottom:971.296230px;}
.y2e0_c00001{bottom:971.836320px;}
.y98_c00001{bottom:972.549120px;}
.y523_c00001{bottom:974.963550px;}
.y8ed_c00001{bottom:975.180450px;}
.y1ac_c00001{bottom:975.810450px;}
.y65f_c00001{bottom:976.440450px;}
.y4fe_c00001{bottom:977.599200px;}
.y7c1_c00001{bottom:977.790450px;}
.y3d9_c00001{bottom:977.790600px;}
.y56e_c00001{bottom:980.394780px;}
.y294_c00001{bottom:980.839290px;}
.yb85_c00001{bottom:981.390450px;}
.y9d0_c00001{bottom:981.552090px;}
.y337_c00001{bottom:982.560450px;}
.y43_c00001{bottom:982.884360px;}
.ya43_c00001{bottom:982.899390px;}
.yb9f_c00001{bottom:983.640450px;}
.y6b_c00001{bottom:984.090450px;}
.y170_c00001{bottom:985.440450px;}
.y6de_c00001{bottom:986.160450px;}
.y25f_c00001{bottom:986.790450px;}
.ya_c00001{bottom:987.510450px;}
.y7f1_c00001{bottom:988.050450px;}
.y6fd_c00001{bottom:988.140450px;}
.y2df_c00001{bottom:988.760100px;}
.y97_c00001{bottom:989.382720px;}
.y87b_c00001{bottom:990.730020px;}
.y46e_c00001{bottom:991.560450px;}
.y522_c00001{bottom:991.887330px;}
.y780_c00001{bottom:992.640450px;}
.y11f_c00001{bottom:994.440450px;}
.y4fd_c00001{bottom:994.522980px;}
.y629_c00001{bottom:996.150450px;}
.y293_c00001{bottom:997.763070px;}
.y9cf_c00001{bottom:998.385690px;}
.y392_c00001{bottom:999.030450px;}
.y42_c00001{bottom:999.717960px;}
.ya42_c00001{bottom:999.732990px;}
.ya26_c00001{bottom:1000.290450px;}
.y89a_c00001{bottom:1001.010450px;}
.yb68_c00001{bottom:1001.640450px;}
.ydf_c00001{bottom:1003.440450px;}
.y242_c00001{bottom:1003.710450px;}
.yb9e_c00001{bottom:1003.890450px;}
.y8c6_c00001{bottom:1004.340450px;}
.y9b3_c00001{bottom:1005.593700px;}
.y96_c00001{bottom:1006.306500px;}
.y87a_c00001{bottom:1007.653800px;}
.ybd_c00001{bottom:1008.720930px;}
.y47b_c00001{bottom:1009.650450px;}
.y65e_c00001{bottom:1010.910450px;}
.y4fc_c00001{bottom:1011.356580px;}
.y1ab_c00001{bottom:1014.056580px;}
.y292_c00001{bottom:1014.596670px;}
.y3d8_c00001{bottom:1015.309470px;}
.y41_c00001{bottom:1016.641740px;}
.ya41_c00001{bottom:1016.656770px;}
.y6a_c00001{bottom:1018.560450px;}
.y16f_c00001{bottom:1019.910450px;}
.y6dd_c00001{bottom:1020.540450px;}
.y25e_c00001{bottom:1021.260450px;}
.y9_c00001{bottom:1021.890450px;}
.y95_c00001{bottom:1023.140100px;}
.yb9d_c00001{bottom:1024.140450px;}
.y879_c00001{bottom:1024.487400px;}
.ybc_c00001{bottom:1025.644710px;}
.y336_c00001{bottom:1026.030450px;}
.y4fb_c00001{bottom:1028.280360px;}
.y159_c00001{bottom:1028.910450px;}
.y77f_c00001{bottom:1030.875150px;}
.y291_c00001{bottom:1031.520450px;}
.y3d7_c00001{bottom:1032.143070px;}
.y40_c00001{bottom:1033.475340px;}
.y1aa_c00001{bottom:1033.490370px;}
.ya25_c00001{bottom:1034.760450px;}
.y899_c00001{bottom:1035.390450px;}
.yde_c00001{bottom:1037.910450px;}
.y241_c00001{bottom:1038.090450px;}
.y8c5_c00001{bottom:1038.810450px;}
.y94_c00001{bottom:1040.063880px;}
.yb67_c00001{bottom:1042.140450px;}
.ybb_c00001{bottom:1042.478310px;}
.y628_c00001{bottom:1042.680450px;}
.y391_c00001{bottom:1044.030450px;}
.y228_c00001{bottom:1045.380450px;}
.y862_c00001{bottom:1047.798930px;}
.y3d6_c00001{bottom:1049.066850px;}
.y3f_c00001{bottom:1050.399120px;}
.ya40_c00001{bottom:1050.414150px;}
.y16e_c00001{bottom:1054.290450px;}
.y6dc_c00001{bottom:1055.010450px;}
.y25d_c00001{bottom:1055.640450px;}
.y69_c00001{bottom:1056.801900px;}
.y8_c00001{bottom:1059.402090px;}
.yb84_c00001{bottom:1060.140450px;}
.y335_c00001{bottom:1060.410450px;}
.yb9c_c00001{bottom:1062.390450px;}
.y17f_c00001{bottom:1063.290450px;}
.y93_c00001{bottom:1065.900450px;}
.y3e_c00001{bottom:1067.232720px;}
.ya3f_c00001{bottom:1067.247750px;}
.ya24_c00001{bottom:1069.140450px;}
.ydd_c00001{bottom:1072.290450px;}
.y240_c00001{bottom:1072.560450px;}
.y898_c00001{bottom:1073.635500px;}
.y7_c00001{bottom:1076.235690px;}
.yb66_c00001{bottom:1080.390450px;}
.yb9b_c00001{bottom:1082.640450px;}
.y3d_c00001{bottom:1084.156500px;}
.y6db_c00001{bottom:1089.390450px;}
.y6_c00001{bottom:1093.159470px;}
.y334_c00001{bottom:1094.880450px;}
.yb52_c00001{bottom:1097.760450px;}
.yb65_c00001{bottom:1100.640450px;}
.y3c_c00001{bottom:1100.990100px;}
.y92_c00001{bottom:1106.760450px;}
.ya23_c00001{bottom:1107.392880px;}
.y5_c00001{bottom:1109.993070px;}
.y3b_c00001{bottom:1117.913880px;}
.yb64_c00001{bottom:1120.890450px;}
.y4_c00001{bottom:1126.916850px;}
.y333_c00001{bottom:1139.880450px;}
.y91_c00001{bottom:1141.140450px;}
.y3_c00001{bottom:1143.750450px;}
.y39_c00001{bottom:1176.420450px;}
.yb83_c00001{bottom:1177.500450px;}
.yb2a_c00001{bottom:1193.250450px;}
.y1_c00001{bottom:1196.850450px;}
.y38_c00001{bottom:1196.940450px;}
.h1d_c00001{height:35.250820px;}
.h6f_c00001{height:40.071445px;}
.h3c_c00001{height:45.193359px;}
.h40_c00001{height:45.246094px;}
.h43_c00001{height:45.667969px;}
.h3f_c00001{height:47.880281px;}
.h42_c00001{height:47.880881px;}
.h3e_c00001{height:47.934281px;}
.h41_c00001{height:47.952281px;}
.h3d_c00001{height:47.970281px;}
.h7_c00001{height:47.988281px;}
.h1a_c00001{height:47.988881px;}
.h70_c00001{height:49.710185px;}
.h8_c00001{height:49.937344px;}
.h5e_c00001{height:49.939144px;}
.h1c_c00001{height:49.940224px;}
.h17_c00001{height:49.942384px;}
.h19_c00001{height:49.945264px;}
.h3b_c00001{height:49.949224px;}
.h1_c00001{height:50.315273px;}
.h47_c00001{height:50.329673px;}
.h1e_c00001{height:50.344793px;}
.h4a_c00001{height:50.356673px;}
.h1f_c00001{height:50.359193px;}
.h21_c00001{height:50.359913px;}
.h12_c00001{height:50.367473px;}
.h64_c00001{height:50.368073px;}
.h27_c00001{height:50.371793px;}
.h31_c00001{height:50.373984px;}
.h23_c00001{height:50.374313px;}
.hf_c00001{height:50.385473px;}
.h29_c00001{height:50.386193px;}
.h3_c00001{height:50.388713px;}
.h6c_c00001{height:50.400593px;}
.h71_c00001{height:50.401913px;}
.h60_c00001{height:50.403833px;}
.h24_c00001{height:50.411393px;}
.h26_c00001{height:50.415113px;}
.h25_c00001{height:50.415713px;}
.h49_c00001{height:50.418233px;}
.h38_c00001{height:50.426513px;}
.h54_c00001{height:50.427593px;}
.h6d_c00001{height:50.429753px;}
.h14_c00001{height:50.430113px;}
.h2e_c00001{height:50.430233px;}
.h10_c00001{height:50.433353px;}
.h37_c00001{height:50.440913px;}
.he_c00001{height:50.441993px;}
.h4f_c00001{height:50.444633px;}
.h2a_c00001{height:50.445233px;}
.h51_c00001{height:50.456033px;}
.h2c_c00001{height:50.459633px;}
.h56_c00001{height:50.460353px;}
.h4e_c00001{height:50.471513px;}
.hc_c00001{height:50.474753px;}
.ha_c00001{height:50.489153px;}
.h35_c00001{height:50.492393px;}
.h63_c00001{height:50.501753px;}
.h2d_c00001{height:50.502353px;}
.h58_c00001{height:50.504273px;}
.h30_c00001{height:50.516153px;}
.h4b_c00001{height:50.530193px;}
.h4c_c00001{height:50.531273px;}
.h34_c00001{height:50.549273px;}
.h6e_c00001{height:50.571953px;}
.h57_c00001{height:50.592833px;}
.h52_c00001{height:50.649353px;}
.h20_c00001{height:55.265906px;}
.h22_c00001{height:55.283906px;}
.h45_c00001{height:55.440000px;}
.h9_c00001{height:56.320312px;}
.h4_c00001{height:60.257812px;}
.h39_c00001{height:60.258412px;}
.h18_c00001{height:60.273292px;}
.h53_c00001{height:60.299213px;}
.h50_c00001{height:60.301733px;}
.h55_c00001{height:60.302333px;}
.h2f_c00001{height:60.303052px;}
.h32_c00001{height:60.303893px;}
.h5f_c00001{height:60.328125px;}
.h36_c00001{height:60.328733px;}
.h61_c00001{height:60.340613px;}
.h2b_c00001{height:60.343853px;}
.h67_c00001{height:60.344212px;}
.h65_c00001{height:60.372652px;}
.h72_c00001{height:60.417293px;}
.h75_c00001{height:60.890025px;}
.h15_c00001{height:60.890625px;}
.h74_c00001{height:60.891225px;}
.h77_c00001{height:63.758857px;}
.h76_c00001{height:64.160156px;}
.h33_c00001{height:65.105980px;}
.h68_c00001{height:65.121100px;}
.h6_c00001{height:65.130220px;}
.h5_c00001{height:65.130820px;}
.h16_c00001{height:65.131420px;}
.h1b_c00001{height:65.146300px;}
.h5d_c00001{height:65.150620px;}
.hb_c00001{height:65.165020px;}
.h5a_c00001{height:65.176900px;}
.h5b_c00001{height:65.187700px;}
.h4d_c00001{height:65.192020px;}
.h69_c00001{height:65.195260px;}
.h6a_c00001{height:65.205340px;}
.h48_c00001{height:65.236660px;}
.h66_c00001{height:65.251060px;}
.hd_c00001{height:65.266060px;}
.h28_c00001{height:65.308180px;}
.h5c_c00001{height:65.321980px;}
.h6b_c00001{height:65.354740px;}
.h59_c00001{height:65.381620px;}
.h62_c00001{height:65.456016px;}
.h2_c00001{height:72.160312px;}
.h13_c00001{height:75.093750px;}
.h11_c00001{height:81.476719px;}
.h3a_c00001{height:87.484219px;}
.h73_c00001{height:90.492188px;}
.h46_c00001{height:96.120000px;}
.h44_c00001{height:109.260000px;}
.h0_c00001{height:1263.000000px;}
.w2_c00001{width:11.970000px;}
.w1_c00001{width:892.500000px;}
.w0_c00001{width:892.830000px;}
.x0_c00001{left:0.000000px;}
.x1a_c00001{left:6.120000px;}
.x92_c00001{left:8.190000px;}
.x94_c00001{left:11.880000px;}
.x91_c00001{left:60.390000px;}
.x90_c00001{left:68.580000px;}
.x34_c00001{left:79.110000px;}
.x70_c00001{left:84.150000px;}
.x1b_c00001{left:86.940000px;}
.x82_c00001{left:91.980000px;}
.x35_c00001{left:94.675500px;}
.x71_c00001{left:99.715500px;}
.x83_c00001{left:107.545500px;}
.x59_c00001{left:115.020000px;}
.x84_c00001{left:123.205500px;}
.x1c_c00001{left:125.640000px;}
.x1_c00001{left:127.620000px;}
.x36_c00001{left:130.680000px;}
.x93_c00001{left:134.730000px;}
.x51_c00001{left:138.420000px;}
.x9_c00001{left:141.220890px;}
.x37_c00001{left:146.245500px;}
.x3_c00001{left:154.624320px;}
.x95_c00001{left:159.210000px;}
.x38_c00001{left:161.811000px;}
.x6b_c00001{left:166.950000px;}
.x16_c00001{left:168.120000px;}
.x52_c00001{left:169.645500px;}
.x96_c00001{left:174.775500px;}
.x39_c00001{left:177.471000px;}
.x2_c00001{left:180.810000px;}
.x6c_c00001{left:182.610000px;}
.x9d_c00001{left:186.390000px;}
.x97_c00001{left:190.435500px;}
.xa2_c00001{left:191.882717px;}
.x5a_c00001{left:193.036500px;}
.x9f_c00001{left:195.930000px;}
.x6d_c00001{left:198.175500px;}
.x89_c00001{left:201.064500px;}
.x19_c00001{left:206.730000px;}
.xa_c00001{left:208.620000px;}
.x1d_c00001{left:214.380000px;}
.x4_c00001{left:217.440000px;}
.x5b_c00001{left:220.500000px;}
.x10_c00001{left:222.120000px;}
.x72_c00001{left:224.451000px;}
.x1e_c00001{left:229.945500px;}
.x13_c00001{left:234.000000px;}
.x11_c00001{left:235.620000px;}
.x98_c00001{left:237.226500px;}
.xe_c00001{left:240.930000px;}
.x3a_c00001{left:243.900000px;}
.x1f_c00001{left:245.511000px;}
.x8_c00001{left:246.781620px;}
.x9a_c00001{left:249.113880px;}
.x53_c00001{left:251.640000px;}
.x73_c00001{left:255.676500px;}
.x99_c00001{left:258.030000px;}
.x12_c00001{left:259.290000px;}
.x20_c00001{left:261.171000px;}
.x9b_c00001{left:262.620000px;}
.x18_c00001{left:266.671080px;}
.x15_c00001{left:272.160000px;}
.x3b_c00001{left:275.125500px;}
.x21_c00001{left:276.736500px;}
.x74_c00001{left:281.520000px;}
.x5c_c00001{left:282.856500px;}
.x22_c00001{left:292.396500px;}
.x75_c00001{left:297.180000px;}
.x5d_c00001{left:298.516500px;}
.xc_c00001{left:300.240000px;}
.x85_c00001{left:304.920000px;}
.x76_c00001{left:312.745500px;}
.x6e_c00001{left:318.870000px;}
.x86_c00001{left:320.580000px;}
.x77_c00001{left:328.405500px;}
.x23_c00001{left:336.420000px;}
.x78_c00001{left:343.971000px;}
.x3c_c00001{left:350.550000px;}
.x24_c00001{left:352.080000px;}
.x79_c00001{left:359.536500px;}
.x3d_c00001{left:366.115500px;}
.x25_c00001{left:367.645500px;}
.xa1_c00001{left:377.190000px;}
.x5e_c00001{left:378.900000px;}
.x3e_c00001{left:381.681000px;}
.x26_c00001{left:383.305500px;}
.x5f_c00001{left:394.560000px;}
.x6f_c00001{left:395.640000px;}
.x3f_c00001{left:397.341000px;}
.x27_c00001{left:398.871000px;}
.xf_c00001{left:410.040000px;}
.x40_c00001{left:412.906500px;}
.x28_c00001{left:414.531000px;}
.x7a_c00001{left:416.520000px;}
.x55_c00001{left:420.754500px;}
.x60_c00001{left:425.691000px;}
.x41_c00001{left:428.566500px;}
.x29_c00001{left:430.096500px;}
.x7b_c00001{left:432.180000px;}
.x6_c00001{left:435.240000px;}
.x56_c00001{left:436.414500px;}
.x61_c00001{left:441.351000px;}
.x42_c00001{left:444.132000px;}
.x5_c00001{left:446.490000px;}
.x7c_c00001{left:447.745500px;}
.xa3_c00001{left:450.810000px;}
.x8a_c00001{left:452.691000px;}
.x87_c00001{left:455.580000px;}
.x62_c00001{left:456.916500px;}
.x43_c00001{left:459.792000px;}
.x2a_c00001{left:461.322000px;}
.x7d_c00001{left:463.405500px;}
.x8b_c00001{left:473.580000px;}
.x44_c00001{left:475.357500px;}
.x2b_c00001{left:476.887500px;}
.x7e_c00001{left:478.971000px;}
.x45_c00001{left:491.017500px;}
.x2c_c00001{left:492.547500px;}
.x7f_c00001{left:494.536500px;}
.x46_c00001{left:506.583000px;}
.x2d_c00001{left:508.113000px;}
.x2e_c00001{left:552.420000px;}
.x80_c00001{left:558.270000px;}
.x2f_c00001{left:568.080000px;}
.x8c_c00001{left:571.050000px;}
.x63_c00001{left:573.930000px;}
.x47_c00001{left:581.670000px;}
.x8d_c00001{left:586.710000px;}
.x57_c00001{left:589.504500px;}
.xa6_c00001{left:592.290000px;}
.x48_c00001{left:597.330000px;}
.x8e_c00001{left:602.275500px;}
.x58_c00001{left:605.164500px;}
.x49_c00001{left:612.895500px;}
.x64_c00001{left:620.721000px;}
.x8f_c00001{left:623.160000px;}
.xd_c00001{left:631.260000px;}
.x81_c00001{left:636.286500px;}
.x65_c00001{left:664.200000px;}
.x30_c00001{left:673.920000px;}
.x66_c00001{left:679.765500px;}
.x7_c00001{left:681.840000px;}
.xa5_c00001{left:687.600000px;}
.x14_c00001{left:689.130000px;}
.x9e_c00001{left:691.920000px;}
.x67_c00001{left:695.425500px;}
.xa8_c00001{left:698.310000px;}
.x17_c00001{left:702.000000px;}
.x4a_c00001{left:703.170000px;}
.x31_c00001{left:705.145500px;}
.x54_c00001{left:711.004500px;}
.xa4_c00001{left:712.080000px;}
.x9c_c00001{left:714.870000px;}
.x4b_c00001{left:718.830000px;}
.x88_c00001{left:721.170000px;}
.xb_c00001{left:726.120000px;}
.x4c_c00001{left:734.395500px;}
.x68_c00001{left:742.216500px;}
.x69_c00001{left:757.782000px;}
.xa7_c00001{left:765.450000px;}
.x6a_c00001{left:773.442000px;}
.x32_c00001{left:795.420000px;}
.x4d_c00001{left:796.679850px;}
.xa0_c00001{left:801.810000px;}
.x33_c00001{left:811.080000px;}
.x4e_c00001{left:812.245350px;}
.x4f_c00001{left:827.905350px;}
.x50_c00001{left:843.470850px;}
@media print{
.v6_c00001{vertical-align:-54.080000pt;}
.v4_c00001{vertical-align:-26.560000pt;}
.v3_c00001{vertical-align:-13.440000pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v1_c00001{vertical-align:14.080000pt;}
.v5_c00001{vertical-align:21.424000pt;}
.v2_c00001{vertical-align:26.560000pt;}
.ls131_c00001{letter-spacing:-1.825992pt;}
.ls130_c00001{letter-spacing:-1.732786pt;}
.ls12e_c00001{letter-spacing:-0.529580pt;}
.ls84_c00001{letter-spacing:-0.416000pt;}
.ls13e_c00001{letter-spacing:-0.384000pt;}
.lsb5_c00001{letter-spacing:-0.342016pt;}
.ls127_c00001{letter-spacing:-0.331328pt;}
.lsf2_c00001{letter-spacing:-0.321600pt;}
.lsfa_c00001{letter-spacing:-0.306432pt;}
.ls104_c00001{letter-spacing:-0.304608pt;}
.lsf0_c00001{letter-spacing:-0.273600pt;}
.ls7e_c00001{letter-spacing:-0.243200pt;}
.ls137_c00001{letter-spacing:-0.240480pt;}
.ls9d_c00001{letter-spacing:-0.236800pt;}
.lsb0_c00001{letter-spacing:-0.235136pt;}
.ls93_c00001{letter-spacing:-0.229792pt;}
.ls95_c00001{letter-spacing:-0.213760pt;}
.ls112_c00001{letter-spacing:-0.208320pt;}
.ls12f_c00001{letter-spacing:-0.207595pt;}
.ls48_c00001{letter-spacing:-0.203072pt;}
.lsaa_c00001{letter-spacing:-0.197728pt;}
.ls182_c00001{letter-spacing:-0.182016pt;}
.ls105_c00001{letter-spacing:-0.181696pt;}
.ls3c_c00001{letter-spacing:-0.176352pt;}
.ls9f_c00001{letter-spacing:-0.171008pt;}
.lsa1_c00001{letter-spacing:-0.165664pt;}
.ls177_c00001{letter-spacing:-0.156736pt;}
.lsef_c00001{letter-spacing:-0.153600pt;}
.ls16a_c00001{letter-spacing:-0.151680pt;}
.lsaf_c00001{letter-spacing:-0.144288pt;}
.ls196_c00001{letter-spacing:-0.141568pt;}
.ls166_c00001{letter-spacing:-0.140800pt;}
.lsf1_c00001{letter-spacing:-0.139200pt;}
.ls176_c00001{letter-spacing:-0.136512pt;}
.ls10_c00001{letter-spacing:-0.134400pt;}
.ls3f_c00001{letter-spacing:-0.133600pt;}
.ls35_c00001{letter-spacing:-0.128256pt;}
.ls4e_c00001{letter-spacing:-0.122912pt;}
.lse6_c00001{letter-spacing:-0.120000pt;}
.lse1_c00001{letter-spacing:-0.115200pt;}
.ls3d_c00001{letter-spacing:-0.112224pt;}
.ls13d_c00001{letter-spacing:-0.111232pt;}
.lsee_c00001{letter-spacing:-0.110400pt;}
.ls10f_c00001{letter-spacing:-0.108800pt;}
.ls128_c00001{letter-spacing:-0.106880pt;}
.lsdb_c00001{letter-spacing:-0.105600pt;}
.ls100_c00001{letter-spacing:-0.101536pt;}
.lse2_c00001{letter-spacing:-0.100800pt;}
.ls3e_c00001{letter-spacing:-0.096192pt;}
.ls5c_c00001{letter-spacing:-0.096000pt;}
.ls91_c00001{letter-spacing:-0.093632pt;}
.ls138_c00001{letter-spacing:-0.090848pt;}
.lsdc_c00001{letter-spacing:-0.086400pt;}
.ls15b_c00001{letter-spacing:-0.085952pt;}
.ls102_c00001{letter-spacing:-0.085504pt;}
.lsa8_c00001{letter-spacing:-0.083200pt;}
.lsd8_c00001{letter-spacing:-0.081600pt;}
.lsa4_c00001{letter-spacing:-0.080160pt;}
.ls31_c00001{letter-spacing:-0.076800pt;}
.ls6d_c00001{letter-spacing:-0.076608pt;}
.ls195_c00001{letter-spacing:-0.075840pt;}
.lsa6_c00001{letter-spacing:-0.074816pt;}
.lse7_c00001{letter-spacing:-0.072000pt;}
.ls151_c00001{letter-spacing:-0.070784pt;}
.ls9c_c00001{letter-spacing:-0.070400pt;}
.ls76_c00001{letter-spacing:-0.069472pt;}
.lse0_c00001{letter-spacing:-0.067200pt;}
.lsc0_c00001{letter-spacing:-0.067104pt;}
.ls77_c00001{letter-spacing:-0.064128pt;}
.ls5d_c00001{letter-spacing:-0.064000pt;}
.ls126_c00001{letter-spacing:-0.062496pt;}
.lsda_c00001{letter-spacing:-0.062400pt;}
.ls197_c00001{letter-spacing:-0.060672pt;}
.ls36_c00001{letter-spacing:-0.058784pt;}
.ls5f_c00001{letter-spacing:-0.057600pt;}
.ls183_c00001{letter-spacing:-0.055616pt;}
.ls111_c00001{letter-spacing:-0.055552pt;}
.ls8d_c00001{letter-spacing:-0.055328pt;}
.ls94_c00001{letter-spacing:-0.053440pt;}
.lse3_c00001{letter-spacing:-0.052800pt;}
.ls59_c00001{letter-spacing:-0.051200pt;}
.ls190_c00001{letter-spacing:-0.050560pt;}
.ls13_c00001{letter-spacing:-0.048096pt;}
.lsdd_c00001{letter-spacing:-0.048000pt;}
.ls168_c00001{letter-spacing:-0.045504pt;}
.ls30_c00001{letter-spacing:-0.044800pt;}
.lsde_c00001{letter-spacing:-0.043200pt;}
.ls32_c00001{letter-spacing:-0.042752pt;}
.ls6c_c00001{letter-spacing:-0.042560pt;}
.ls78_c00001{letter-spacing:-0.041664pt;}
.ls159_c00001{letter-spacing:-0.040448pt;}
.ls5b_c00001{letter-spacing:-0.038400pt;}
.ls14_c00001{letter-spacing:-0.037408pt;}
.ls47_c00001{letter-spacing:-0.034720pt;}
.ls124_c00001{letter-spacing:-0.034048pt;}
.lsf4_c00001{letter-spacing:-0.033600pt;}
.ls2e_c00001{letter-spacing:-0.032064pt;}
.ls19_c00001{letter-spacing:-0.032000pt;}
.ls150_c00001{letter-spacing:-0.030336pt;}
.lsdf_c00001{letter-spacing:-0.028800pt;}
.ls46_c00001{letter-spacing:-0.027776pt;}
.ls2d_c00001{letter-spacing:-0.026720pt;}
.ls1a_c00001{letter-spacing:-0.025600pt;}
.ls8a_c00001{letter-spacing:-0.025536pt;}
.ls154_c00001{letter-spacing:-0.025280pt;}
.lse5_c00001{letter-spacing:-0.024000pt;}
.ls16_c00001{letter-spacing:-0.021376pt;}
.ls8e_c00001{letter-spacing:-0.021280pt;}
.ls70_c00001{letter-spacing:-0.020832pt;}
.ls191_c00001{letter-spacing:-0.020224pt;}
.ls1b_c00001{letter-spacing:-0.019200pt;}
.ls90_c00001{letter-spacing:-0.017280pt;}
.ls6e_c00001{letter-spacing:-0.017024pt;}
.ls34_c00001{letter-spacing:-0.016032pt;}
.ls153_c00001{letter-spacing:-0.015168pt;}
.ls66_c00001{letter-spacing:-0.013888pt;}
.ls61_c00001{letter-spacing:-0.013824pt;}
.ls1c_c00001{letter-spacing:-0.012800pt;}
.lsc1_c00001{letter-spacing:-0.012768pt;}
.ls2f_c00001{letter-spacing:-0.010688pt;}
.ls69_c00001{letter-spacing:-0.010368pt;}
.ls17b_c00001{letter-spacing:-0.010112pt;}
.lse8_c00001{letter-spacing:-0.009600pt;}
.ls82_c00001{letter-spacing:-0.008512pt;}
.ls65_c00001{letter-spacing:-0.006944pt;}
.ls6a_c00001{letter-spacing:-0.006912pt;}
.ls18_c00001{letter-spacing:-0.006400pt;}
.ls11_c00001{letter-spacing:-0.005344pt;}
.ls14f_c00001{letter-spacing:-0.005056pt;}
.lsd9_c00001{letter-spacing:-0.004800pt;}
.ls68_c00001{letter-spacing:-0.004256pt;}
.ls49_c00001{letter-spacing:-0.003456pt;}
.ls12_c00001{letter-spacing:0.000000pt;}
.ls57_c00001{letter-spacing:0.003456pt;}
.ls45_c00001{letter-spacing:0.004256pt;}
.lsd7_c00001{letter-spacing:0.004800pt;}
.ls157_c00001{letter-spacing:0.005056pt;}
.ls3_c00001{letter-spacing:0.005344pt;}
.ls5_c00001{letter-spacing:0.006400pt;}
.ls53_c00001{letter-spacing:0.006912pt;}
.ls51_c00001{letter-spacing:0.006944pt;}
.ls62_c00001{letter-spacing:0.008320pt;}
.ls73_c00001{letter-spacing:0.008512pt;}
.lsd5_c00001{letter-spacing:0.009600pt;}
.ls158_c00001{letter-spacing:0.010112pt;}
.ls1d_c00001{letter-spacing:0.010688pt;}
.lse_c00001{letter-spacing:0.012768pt;}
.ls26_c00001{letter-spacing:0.012800pt;}
.ls41_c00001{letter-spacing:0.013888pt;}
.lse4_c00001{letter-spacing:0.014400pt;}
.ls164_c00001{letter-spacing:0.015168pt;}
.ls1f_c00001{letter-spacing:0.016032pt;}
.ls8c_c00001{letter-spacing:0.016640pt;}
.lsf_c00001{letter-spacing:0.017024pt;}
.lsfd_c00001{letter-spacing:0.017280pt;}
.ls52_c00001{letter-spacing:0.018720pt;}
.ls39_c00001{letter-spacing:0.019200pt;}
.ls161_c00001{letter-spacing:0.020224pt;}
.lsb_c00001{letter-spacing:0.021280pt;}
.ls27_c00001{letter-spacing:0.021376pt;}
.lsc6_c00001{letter-spacing:0.024000pt;}
.ls139_c00001{letter-spacing:0.025280pt;}
.lsc_c00001{letter-spacing:0.025536pt;}
.ls4b_c00001{letter-spacing:0.025600pt;}
.ls22_c00001{letter-spacing:0.026720pt;}
.lsfb_c00001{letter-spacing:0.027776pt;}
.lse9_c00001{letter-spacing:0.028800pt;}
.lsa_c00001{letter-spacing:0.029792pt;}
.lsba_c00001{letter-spacing:0.029824pt;}
.ls13b_c00001{letter-spacing:0.030336pt;}
.ls37_c00001{letter-spacing:0.032000pt;}
.ls1e_c00001{letter-spacing:0.032064pt;}
.lsbf_c00001{letter-spacing:0.033600pt;}
.ls7_c00001{letter-spacing:0.034048pt;}
.ls149_c00001{letter-spacing:0.035392pt;}
.ls11c_c00001{letter-spacing:0.037280pt;}
.ls20_c00001{letter-spacing:0.037408pt;}
.ls9_c00001{letter-spacing:0.038304pt;}
.ls25_c00001{letter-spacing:0.038400pt;}
.ls148_c00001{letter-spacing:0.040448pt;}
.lsac_c00001{letter-spacing:0.041664pt;}
.ls8_c00001{letter-spacing:0.042560pt;}
.ls0_c00001{letter-spacing:0.042752pt;}
.lsec_c00001{letter-spacing:0.043200pt;}
.ls98_c00001{letter-spacing:0.044800pt;}
.ls13a_c00001{letter-spacing:0.045504pt;}
.lsd_c00001{letter-spacing:0.046816pt;}
.lsd3_c00001{letter-spacing:0.048000pt;}
.ls2_c00001{letter-spacing:0.048096pt;}
.ls6_c00001{letter-spacing:0.048672pt;}
.ls15a_c00001{letter-spacing:0.050560pt;}
.ls7c_c00001{letter-spacing:0.051072pt;}
.ls3a_c00001{letter-spacing:0.051200pt;}
.ls12d_c00001{letter-spacing:0.052192pt;}
.lsca_c00001{letter-spacing:0.052800pt;}
.ls33_c00001{letter-spacing:0.053440pt;}
.ls56_c00001{letter-spacing:0.055328pt;}
.ls155_c00001{letter-spacing:0.055616pt;}
.lsa2_c00001{letter-spacing:0.057600pt;}
.ls21_c00001{letter-spacing:0.058784pt;}
.ls7d_c00001{letter-spacing:0.059584pt;}
.ls147_c00001{letter-spacing:0.060672pt;}
.lsd2_c00001{letter-spacing:0.062400pt;}
.ls2a_c00001{letter-spacing:0.063840pt;}
.ls4c_c00001{letter-spacing:0.064000pt;}
.ls28_c00001{letter-spacing:0.064128pt;}
.ls13f_c00001{letter-spacing:0.065728pt;}
.ls7f_c00001{letter-spacing:0.067200pt;}
.ls54_c00001{letter-spacing:0.067520pt;}
.ls55_c00001{letter-spacing:0.068096pt;}
.ls89_c00001{letter-spacing:0.069472pt;}
.ls23_c00001{letter-spacing:0.070400pt;}
.ls140_c00001{letter-spacing:0.070784pt;}
.lsce_c00001{letter-spacing:0.072000pt;}
.ls29_c00001{letter-spacing:0.072352pt;}
.lsbe_c00001{letter-spacing:0.072640pt;}
.ls11d_c00001{letter-spacing:0.074560pt;}
.ls38_c00001{letter-spacing:0.074816pt;}
.ls14b_c00001{letter-spacing:0.075840pt;}
.ls2b_c00001{letter-spacing:0.076608pt;}
.lsd1_c00001{letter-spacing:0.076800pt;}
.ls12b_c00001{letter-spacing:0.080000pt;}
.ls92_c00001{letter-spacing:0.080160pt;}
.ls15e_c00001{letter-spacing:0.080896pt;}
.lscf_c00001{letter-spacing:0.081600pt;}
.ls24_c00001{letter-spacing:0.083200pt;}
.ls11e_c00001{letter-spacing:0.085120pt;}
.ls72_c00001{letter-spacing:0.085504pt;}
.ls165_c00001{letter-spacing:0.085952pt;}
.lsc5_c00001{letter-spacing:0.086400pt;}
.ls63_c00001{letter-spacing:0.089376pt;}
.lsab_c00001{letter-spacing:0.089600pt;}
.lsf8_c00001{letter-spacing:0.089856pt;}
.lsae_c00001{letter-spacing:0.090848pt;}
.ls174_c00001{letter-spacing:0.091008pt;}
.lscc_c00001{letter-spacing:0.091200pt;}
.ls85_c00001{letter-spacing:0.091947pt;}
.ls4d_c00001{letter-spacing:0.092480pt;}
.ls58_c00001{letter-spacing:0.093632pt;}
.lsa7_c00001{letter-spacing:0.096000pt;}
.ls152_c00001{letter-spacing:0.096064pt;}
.lsf6_c00001{letter-spacing:0.096192pt;}
.ls119_c00001{letter-spacing:0.097888pt;}
.lsc7_c00001{letter-spacing:0.100800pt;}
.ls156_c00001{letter-spacing:0.101120pt;}
.ls10b_c00001{letter-spacing:0.101536pt;}
.lsb7_c00001{letter-spacing:0.102144pt;}
.ls18d_c00001{letter-spacing:0.102400pt;}
.lscb_c00001{letter-spacing:0.105600pt;}
.ls17f_c00001{letter-spacing:0.106176pt;}
.ls18c_c00001{letter-spacing:0.108800pt;}
.lsc9_c00001{letter-spacing:0.110400pt;}
.lsc3_c00001{letter-spacing:0.110656pt;}
.lscd_c00001{letter-spacing:0.115200pt;}
.lsa9_c00001{letter-spacing:0.117568pt;}
.ls81_c00001{letter-spacing:0.119680pt;}
.lsc8_c00001{letter-spacing:0.120000pt;}
.ls143_c00001{letter-spacing:0.120640pt;}
.ls4_c00001{letter-spacing:0.120960pt;}
.ls181_c00001{letter-spacing:0.121600pt;}
.ls83_c00001{letter-spacing:0.123424pt;}
.lsd0_c00001{letter-spacing:0.124800pt;}
.ls2c_c00001{letter-spacing:0.127680pt;}
.ls42_c00001{letter-spacing:0.128000pt;}
.lsd4_c00001{letter-spacing:0.129600pt;}
.lsea_c00001{letter-spacing:0.134400pt;}
.ls133_c00001{letter-spacing:0.136192pt;}
.ls60_c00001{letter-spacing:0.136640pt;}
.lsd6_c00001{letter-spacing:0.139200pt;}
.ls115_c00001{letter-spacing:0.140800pt;}
.ls179_c00001{letter-spacing:0.141568pt;}
.lsed_c00001{letter-spacing:0.144000pt;}
.ls17a_c00001{letter-spacing:0.147200pt;}
.lseb_c00001{letter-spacing:0.148800pt;}
.ls134_c00001{letter-spacing:0.148960pt;}
.ls17_c00001{letter-spacing:0.149632pt;}
.ls193_c00001{letter-spacing:0.153600pt;}
.lsf3_c00001{letter-spacing:0.158400pt;}
.ls198_c00001{letter-spacing:0.159360pt;}
.ls7a_c00001{letter-spacing:0.160000pt;}
.ls75_c00001{letter-spacing:0.161728pt;}
.ls113_c00001{letter-spacing:0.168320pt;}
.ls175_c00001{letter-spacing:0.187072pt;}
.lsa3_c00001{letter-spacing:0.191520pt;}
.ls180_c00001{letter-spacing:0.198400pt;}
.ls170_c00001{letter-spacing:0.202240pt;}
.ls17c_c00001{letter-spacing:0.222464pt;}
.ls17e_c00001{letter-spacing:0.236800pt;}
.lsc2_c00001{letter-spacing:0.242592pt;}
.ls17d_c00001{letter-spacing:0.243200pt;}
.ls5e_c00001{letter-spacing:0.256000pt;}
.ls107_c00001{letter-spacing:0.256512pt;}
.ls10d_c00001{letter-spacing:0.288000pt;}
.lsb1_c00001{letter-spacing:0.288576pt;}
.ls132_c00001{letter-spacing:0.300672pt;}
.ls167_c00001{letter-spacing:0.303360pt;}
.ls5a_c00001{letter-spacing:0.307584pt;}
.ls162_c00001{letter-spacing:0.308416pt;}
.lsad_c00001{letter-spacing:0.311680pt;}
.ls123_c00001{letter-spacing:0.312320pt;}
.ls4f_c00001{letter-spacing:0.317952pt;}
.ls184_c00001{letter-spacing:0.318528pt;}
.ls14e_c00001{letter-spacing:0.320000pt;}
.ls6b_c00001{letter-spacing:0.321408pt;}
.ls86_c00001{letter-spacing:0.328320pt;}
.ls67_c00001{letter-spacing:0.336224pt;}
.ls114_c00001{letter-spacing:0.336640pt;}
.ls64_c00001{letter-spacing:0.340480pt;}
.lsff_c00001{letter-spacing:0.353248pt;}
.ls11f_c00001{letter-spacing:0.364800pt;}
.ls120_c00001{letter-spacing:0.387296pt;}
.ls118_c00001{letter-spacing:0.387520pt;}
.lsa5_c00001{letter-spacing:0.396800pt;}
.ls44_c00001{letter-spacing:0.412480pt;}
.ls163_c00001{letter-spacing:0.419648pt;}
.ls16e_c00001{letter-spacing:0.448000pt;}
.ls18f_c00001{letter-spacing:0.480000pt;}
.ls74_c00001{letter-spacing:0.721440pt;}
.lsf9_c00001{letter-spacing:0.952320pt;}
.ls186_c00001{letter-spacing:0.960000pt;}
.ls3b_c00001{letter-spacing:1.042080pt;}
.ls14a_c00001{letter-spacing:1.120000pt;}
.ls50_c00001{letter-spacing:1.180480pt;}
.lsb6_c00001{letter-spacing:1.592320pt;}
.ls125_c00001{letter-spacing:1.600000pt;}
.ls9a_c00001{letter-spacing:1.678016pt;}
.ls12a_c00001{letter-spacing:1.920000pt;}
.ls15_c00001{letter-spacing:1.998656pt;}
.ls7b_c00001{letter-spacing:2.232320pt;}
.ls11b_c00001{letter-spacing:2.240000pt;}
.ls101_c00001{letter-spacing:2.319296pt;}
.ls192_c00001{letter-spacing:2.400000pt;}
.ls141_c00001{letter-spacing:2.560000pt;}
.ls96_c00001{letter-spacing:2.639936pt;}
.ls185_c00001{letter-spacing:2.880000pt;}
.lsc4_c00001{letter-spacing:3.192000pt;}
.lsb8_c00001{letter-spacing:3.192320pt;}
.ls16d_c00001{letter-spacing:3.200000pt;}
.ls40_c00001{letter-spacing:3.601856pt;}
.ls108_c00001{letter-spacing:3.749760pt;}
.lsbc_c00001{letter-spacing:3.832320pt;}
.ls11a_c00001{letter-spacing:3.840000pt;}
.lsb2_c00001{letter-spacing:3.922496pt;}
.ls14d_c00001{letter-spacing:4.160000pt;}
.lsa0_c00001{letter-spacing:4.237792pt;}
.ls188_c00001{letter-spacing:4.480000pt;}
.ls16c_c00001{letter-spacing:4.640000pt;}
.ls10e_c00001{letter-spacing:4.800000pt;}
.ls146_c00001{letter-spacing:5.094400pt;}
.lsbd_c00001{letter-spacing:5.112320pt;}
.ls8f_c00001{letter-spacing:5.120000pt;}
.ls160_c00001{letter-spacing:5.280000pt;}
.lsfe_c00001{letter-spacing:5.432320pt;}
.lsfc_c00001{letter-spacing:5.447680pt;}
.ls122_c00001{letter-spacing:5.752320pt;}
.ls117_c00001{letter-spacing:5.811200pt;}
.ls18a_c00001{letter-spacing:5.920000pt;}
.lsb4_c00001{letter-spacing:6.161632pt;}
.ls15f_c00001{letter-spacing:6.240000pt;}
.ls142_c00001{letter-spacing:6.400000pt;}
.ls14c_c00001{letter-spacing:6.560000pt;}
.ls97_c00001{letter-spacing:6.712320pt;}
.lsb3_c00001{letter-spacing:7.040000pt;}
.ls10a_c00001{letter-spacing:7.375648pt;}
.ls99_c00001{letter-spacing:7.568960pt;}
.ls16f_c00001{letter-spacing:8.160000pt;}
.ls12c_c00001{letter-spacing:8.320000pt;}
.ls16b_c00001{letter-spacing:8.800000pt;}
.ls15d_c00001{letter-spacing:9.120000pt;}
.ls13c_c00001{letter-spacing:9.280000pt;}
.ls194_c00001{letter-spacing:9.600000pt;}
.ls15c_c00001{letter-spacing:9.760000pt;}
.ls116_c00001{letter-spacing:9.920000pt;}
.ls103_c00001{letter-spacing:10.240000pt;}
.ls145_c00001{letter-spacing:10.265600pt;}
.ls144_c00001{letter-spacing:10.534400pt;}
.ls129_c00001{letter-spacing:10.639904pt;}
.ls171_c00001{letter-spacing:10.880000pt;}
.ls106_c00001{letter-spacing:11.865600pt;}
.ls109_c00001{letter-spacing:12.558400pt;}
.ls8b_c00001{letter-spacing:12.707520pt;}
.ls169_c00001{letter-spacing:12.800000pt;}
.ls18b_c00001{letter-spacing:13.600000pt;}
.ls18e_c00001{letter-spacing:13.760000pt;}
.lsb9_c00001{letter-spacing:15.433920pt;}
.ls173_c00001{letter-spacing:15.840000pt;}
.ls189_c00001{letter-spacing:16.640000pt;}
.ls178_c00001{letter-spacing:17.280000pt;}
.ls87_c00001{letter-spacing:17.846080pt;}
.ls80_c00001{letter-spacing:19.720960pt;}
.ls187_c00001{letter-spacing:20.320000pt;}
.ls172_c00001{letter-spacing:20.800000pt;}
.ls110_c00001{letter-spacing:21.040320pt;}
.ls88_c00001{letter-spacing:21.120000pt;}
.ls10c_c00001{letter-spacing:23.609600pt;}
.ls71_c00001{letter-spacing:24.859520pt;}
.lsf7_c00001{letter-spacing:26.109440pt;}
.lsbb_c00001{letter-spacing:28.678720pt;}
.ls6f_c00001{letter-spacing:29.998080pt;}
.lsf5_c00001{letter-spacing:31.248000pt;}
.ls9b_c00001{letter-spacing:39.808000pt;}
.ls136_c00001{letter-spacing:52.357760pt;}
.ls135_c00001{letter-spacing:57.496320pt;}
.ls121_c00001{letter-spacing:57.728000pt;}
.ls43_c00001{letter-spacing:58.048000pt;}
.ls4a_c00001{letter-spacing:58.688000pt;}
.ls79_c00001{letter-spacing:60.928000pt;}
.ls9e_c00001{letter-spacing:80.000000pt;}
.ls1_c00001{letter-spacing:1077.440000pt;}
.ws67e_c00001{word-spacing:-18.572896pt;}
.ws57f_c00001{word-spacing:-17.401664pt;}
.ws85d_c00001{word-spacing:-17.387776pt;}
.wsde_c00001{word-spacing:-17.373888pt;}
.ws8af_c00001{word-spacing:-17.366944pt;}
.ws13e_c00001{word-spacing:-17.360000pt;}
.ws2bf_c00001{word-spacing:-17.353056pt;}
.ws1f0_c00001{word-spacing:-17.346112pt;}
.ws212_c00001{word-spacing:-17.339168pt;}
.ws1f1_c00001{word-spacing:-17.332224pt;}
.ws3f0_c00001{word-spacing:-16.083200pt;}
.wsbd2_c00001{word-spacing:-16.076800pt;}
.wsbfa_c00001{word-spacing:-16.070400pt;}
.ws13f_c00001{word-spacing:-16.064000pt;}
.wsbd0_c00001{word-spacing:-16.057600pt;}
.ws966_c00001{word-spacing:-16.044800pt;}
.ws2fc_c00001{word-spacing:-16.038400pt;}
.wsa17_c00001{word-spacing:-16.032000pt;}
.ws594_c00001{word-spacing:-16.025600pt;}
.ws1c8_c00001{word-spacing:-16.019200pt;}
.ws1a7_c00001{word-spacing:-16.012800pt;}
.ws18e_c00001{word-spacing:-16.006400pt;}
.ws140_c00001{word-spacing:-16.000000pt;}
.ws213_c00001{word-spacing:-15.993600pt;}
.ws647_c00001{word-spacing:-15.987200pt;}
.ws211_c00001{word-spacing:-15.980800pt;}
.ws341_c00001{word-spacing:-15.974400pt;}
.wsa3e_c00001{word-spacing:-15.968000pt;}
.ws1c9_c00001{word-spacing:-15.961600pt;}
.ws4d3_c00001{word-spacing:-15.955200pt;}
.ws1a6_c00001{word-spacing:-15.948800pt;}
.wsa54_c00001{word-spacing:-15.942400pt;}
.ws18f_c00001{word-spacing:-15.936000pt;}
.ws42d_c00001{word-spacing:-15.929600pt;}
.wsb68_c00001{word-spacing:-15.923200pt;}
.wsc84_c00001{word-spacing:-15.891200pt;}
.wsb69_c00001{word-spacing:-15.616000pt;}
.ws6fd_c00001{word-spacing:-13.381376pt;}
.ws3cb_c00001{word-spacing:-13.360000pt;}
.ws9af_c00001{word-spacing:-13.322592pt;}
.ws45a_c00001{word-spacing:-13.317248pt;}
.wsbc0_c00001{word-spacing:-13.059648pt;}
.wsc35_c00001{word-spacing:-12.958528pt;}
.wsbbb_c00001{word-spacing:-12.948416pt;}
.wsbcf_c00001{word-spacing:-12.943360pt;}
.wsc1a_c00001{word-spacing:-12.862464pt;}
.wsbfd_c00001{word-spacing:-12.842240pt;}
.wsbfb_c00001{word-spacing:-12.827072pt;}
.wsc19_c00001{word-spacing:-12.781568pt;}
.wsc24_c00001{word-spacing:-12.746176pt;}
.wsbb0_c00001{word-spacing:-12.741120pt;}
.wsbb2_c00001{word-spacing:-12.736064pt;}
.wsc77_c00001{word-spacing:-12.731008pt;}
.wsbbc_c00001{word-spacing:-12.720896pt;}
.wsbbd_c00001{word-spacing:-12.715840pt;}
.wsbea_c00001{word-spacing:-12.710784pt;}
.wsbeb_c00001{word-spacing:-12.705728pt;}
.wsba9_c00001{word-spacing:-12.700672pt;}
.wsbff_c00001{word-spacing:-12.695616pt;}
.wsbb1_c00001{word-spacing:-12.690560pt;}
.wsb66_c00001{word-spacing:-12.685504pt;}
.wsb8d_c00001{word-spacing:-12.680448pt;}
.wsb8f_c00001{word-spacing:-12.675392pt;}
.wsb67_c00001{word-spacing:-12.670336pt;}
.wsb64_c00001{word-spacing:-12.665280pt;}
.wsbce_c00001{word-spacing:-12.660224pt;}
.wsbe9_c00001{word-spacing:-12.655168pt;}
.wsbb4_c00001{word-spacing:-12.650112pt;}
.wsbbe_c00001{word-spacing:-12.645056pt;}
.wsb65_c00001{word-spacing:-12.640000pt;}
.wsbbf_c00001{word-spacing:-12.634944pt;}
.wsc18_c00001{word-spacing:-12.629888pt;}
.wsba7_c00001{word-spacing:-12.624832pt;}
.wsc6a_c00001{word-spacing:-12.619776pt;}
.wsba8_c00001{word-spacing:-12.614720pt;}
.wsb8e_c00001{word-spacing:-12.609664pt;}
.wsbaf_c00001{word-spacing:-12.599552pt;}
.wsc36_c00001{word-spacing:-12.594496pt;}
.wsc69_c00001{word-spacing:-12.589440pt;}
.wsc54_c00001{word-spacing:-12.584384pt;}
.wsc76_c00001{word-spacing:-12.579328pt;}
.wsb90_c00001{word-spacing:-12.569216pt;}
.wsc75_c00001{word-spacing:-12.564160pt;}
.wsbb3_c00001{word-spacing:-12.554048pt;}
.wsbfc_c00001{word-spacing:-12.503488pt;}
.wsbd1_c00001{word-spacing:-12.488320pt;}
.wsbfe_c00001{word-spacing:-12.483264pt;}
.wsc34_c00001{word-spacing:-12.457984pt;}
.ws90d_c00001{word-spacing:-12.218976pt;}
.ws6bd_c00001{word-spacing:-12.139200pt;}
.ws6ba_c00001{word-spacing:-12.081600pt;}
.ws680_c00001{word-spacing:-12.074272pt;}
.ws6ec_c00001{word-spacing:-12.048000pt;}
.ws231_c00001{word-spacing:-11.993408pt;}
.ws6bb_c00001{word-spacing:-11.980800pt;}
.ws6ed_c00001{word-spacing:-11.918400pt;}
.ws6bf_c00001{word-spacing:-11.899200pt;}
.ws6bc_c00001{word-spacing:-11.894400pt;}
.ws6be_c00001{word-spacing:-11.884800pt;}
.ws2fd_c00001{word-spacing:-11.865728pt;}
.ws9c2_c00001{word-spacing:-11.848704pt;}
.ws342_c00001{word-spacing:-11.840192pt;}
.ws141_c00001{word-spacing:-11.831680pt;}
.ws681_c00001{word-spacing:-11.818912pt;}
.ws2c0_c00001{word-spacing:-11.814656pt;}
.ws940_c00001{word-spacing:-11.797632pt;}
.ws343_c00001{word-spacing:-11.776352pt;}
.ws1cc_c00001{word-spacing:-11.755072pt;}
.wsa4b_c00001{word-spacing:-11.570264pt;}
.wsa4d_c00001{word-spacing:-11.248279pt;}
.wsa4c_c00001{word-spacing:-10.045073pt;}
.wsa4e_c00001{word-spacing:-9.951867pt;}
.ws1ca_c00001{word-spacing:-9.929088pt;}
.ws110_c00001{word-spacing:-9.925632pt;}
.ws142_c00001{word-spacing:-9.915264pt;}
.wsa55_c00001{word-spacing:-9.908352pt;}
.ws289_c00001{word-spacing:-9.611136pt;}
.ws67f_c00001{word-spacing:-9.607680pt;}
.wsdf_c00001{word-spacing:-9.604224pt;}
.ws1cb_c00001{word-spacing:-9.600768pt;}
.ws2ea_c00001{word-spacing:-9.597312pt;}
.ws1a8_c00001{word-spacing:-9.593856pt;}
.ws1_c00001{word-spacing:-9.408672pt;}
.ws0_c00001{word-spacing:-8.760960pt;}
.ws344_c00001{word-spacing:-7.383680pt;}
.ws7f_c00001{word-spacing:-0.449280pt;}
.ws435_c00001{word-spacing:-0.403200pt;}
.ws8ca_c00001{word-spacing:-0.396800pt;}
.wsa2b_c00001{word-spacing:-0.388864pt;}
.wsbf5_c00001{word-spacing:-0.377600pt;}
.ws7e0_c00001{word-spacing:-0.331328pt;}
.ws98b_c00001{word-spacing:-0.325984pt;}
.ws253_c00001{word-spacing:-0.319200pt;}
.ws37d_c00001{word-spacing:-0.315296pt;}
.ws31b_c00001{word-spacing:-0.309952pt;}
.ws4e7_c00001{word-spacing:-0.307200pt;}
.ws329_c00001{word-spacing:-0.304608pt;}
.ws48e_c00001{word-spacing:-0.299264pt;}
.ws636_c00001{word-spacing:-0.294400pt;}
.ws4fa_c00001{word-spacing:-0.293920pt;}
.ws491_c00001{word-spacing:-0.288576pt;}
.ws314_c00001{word-spacing:-0.283232pt;}
.ws6c5_c00001{word-spacing:-0.278400pt;}
.ws3fc_c00001{word-spacing:-0.277888pt;}
.ws407_c00001{word-spacing:-0.272544pt;}
.ws6f2_c00001{word-spacing:-0.264000pt;}
.ws7e_c00001{word-spacing:-0.261856pt;}
.wsabe_c00001{word-spacing:-0.256928pt;}
.ws409_c00001{word-spacing:-0.251168pt;}
.wsc71_c00001{word-spacing:-0.249600pt;}
.ws7b1_c00001{word-spacing:-0.245824pt;}
.ws6f3_c00001{word-spacing:-0.244800pt;}
.ws860_c00001{word-spacing:-0.243040pt;}
.ws506_c00001{word-spacing:-0.240480pt;}
.ws6d1_c00001{word-spacing:-0.240000pt;}
.wsbdd_c00001{word-spacing:-0.236800pt;}
.ws43_c00001{word-spacing:-0.235136pt;}
.ws8b_c00001{word-spacing:-0.229792pt;}
.ws6ea_c00001{word-spacing:-0.225600pt;}
.ws4de_c00001{word-spacing:-0.224448pt;}
.wsc13_c00001{word-spacing:-0.224000pt;}
.ws843_c00001{word-spacing:-0.222208pt;}
.ws6c_c00001{word-spacing:-0.219104pt;}
.wsc10_c00001{word-spacing:-0.217600pt;}
.ws780_c00001{word-spacing:-0.215264pt;}
.ws42_c00001{word-spacing:-0.213760pt;}
.ws63b_c00001{word-spacing:-0.208416pt;}
.ws6de_c00001{word-spacing:-0.206400pt;}
.wsb_c00001{word-spacing:-0.203072pt;}
.ws68e_c00001{word-spacing:-0.201376pt;}
.ws86_c00001{word-spacing:-0.198400pt;}
.ws73d_c00001{word-spacing:-0.197728pt;}
.ws6f1_c00001{word-spacing:-0.196800pt;}
.ws728_c00001{word-spacing:-0.192384pt;}
.ws771_c00001{word-spacing:-0.187488pt;}
.wsab8_c00001{word-spacing:-0.187040pt;}
.wsb75_c00001{word-spacing:-0.179200pt;}
.ws8e9_c00001{word-spacing:-0.173600pt;}
.wsb6b_c00001{word-spacing:-0.172800pt;}
.ws149_c00001{word-spacing:-0.166656pt;}
.ws127_c00001{word-spacing:-0.166400pt;}
.ws6ee_c00001{word-spacing:-0.163200pt;}
.wsc3a_c00001{word-spacing:-0.160000pt;}
.ws3ec_c00001{word-spacing:-0.159712pt;}
.ws8fd_c00001{word-spacing:-0.156576pt;}
.wsc03_c00001{word-spacing:-0.153600pt;}
.wsee_c00001{word-spacing:-0.152768pt;}
.wsbc3_c00001{word-spacing:-0.147200pt;}
.ws264_c00001{word-spacing:-0.145824pt;}
.wsbb9_c00001{word-spacing:-0.140800pt;}
.wsc58_c00001{word-spacing:-0.134400pt;}
.wsa3c_c00001{word-spacing:-0.134208pt;}
.ws80c_c00001{word-spacing:-0.131936pt;}
.wsbc5_c00001{word-spacing:-0.128000pt;}
.ws199_c00001{word-spacing:-0.124992pt;}
.wsbd9_c00001{word-spacing:-0.121600pt;}
.ws8fc_c00001{word-spacing:-0.119296pt;}
.ws1db_c00001{word-spacing:-0.118048pt;}
.ws6f5_c00001{word-spacing:-0.115200pt;}
.ws682_c00001{word-spacing:-0.111840pt;}
.ws1fc_c00001{word-spacing:-0.111104pt;}
.wsa42_c00001{word-spacing:-0.108800pt;}
.ws200_c00001{word-spacing:-0.104160pt;}
.wsb96_c00001{word-spacing:-0.102400pt;}
.ws15c_c00001{word-spacing:-0.097344pt;}
.ws222_c00001{word-spacing:-0.097216pt;}
.ws9d0_c00001{word-spacing:-0.096000pt;}
.ws589_c00001{word-spacing:-0.090272pt;}
.ws73e_c00001{word-spacing:-0.089856pt;}
.ws8ed_c00001{word-spacing:-0.089600pt;}
.ws645_c00001{word-spacing:-0.085120pt;}
.ws305_c00001{word-spacing:-0.083328pt;}
.ws5c_c00001{word-spacing:-0.083200pt;}
.ws8e5_c00001{word-spacing:-0.080864pt;}
.ws126_c00001{word-spacing:-0.076800pt;}
.ws1da_c00001{word-spacing:-0.076384pt;}
.wsa3f_c00001{word-spacing:-0.070400pt;}
.wsa05_c00001{word-spacing:-0.069472pt;}
.ws451_c00001{word-spacing:-0.069440pt;}
.ws90c_c00001{word-spacing:-0.068096pt;}
.ws92e_c00001{word-spacing:-0.064000pt;}
.ws529_c00001{word-spacing:-0.062496pt;}
.ws2e9_c00001{word-spacing:-0.059584pt;}
.ws352_c00001{word-spacing:-0.057600pt;}
.wsed_c00001{word-spacing:-0.055552pt;}
.wsa4a_c00001{word-spacing:-0.055328pt;}
.ws7a0_c00001{word-spacing:-0.051200pt;}
.ws901_c00001{word-spacing:-0.051072pt;}
.ws265_c00001{word-spacing:-0.048608pt;}
.ws87e_c00001{word-spacing:-0.046816pt;}
.ws944_c00001{word-spacing:-0.044800pt;}
.ws2fb_c00001{word-spacing:-0.042560pt;}
.ws26f_c00001{word-spacing:-0.041664pt;}
.ws96f_c00001{word-spacing:-0.038400pt;}
.ws2be_c00001{word-spacing:-0.038304pt;}
.wsfa_c00001{word-spacing:-0.037408pt;}
.ws831_c00001{word-spacing:-0.034048pt;}
.ws361_c00001{word-spacing:-0.032000pt;}
.ws17e_c00001{word-spacing:-0.029792pt;}
.ws8c0_c00001{word-spacing:-0.027776pt;}
.ws117_c00001{word-spacing:-0.025600pt;}
.ws10e_c00001{word-spacing:-0.025536pt;}
.ws13a_c00001{word-spacing:-0.021280pt;}
.ws11e_c00001{word-spacing:-0.019200pt;}
.ws1e_c00001{word-spacing:-0.017024pt;}
.ws105_c00001{word-spacing:-0.012800pt;}
.wsa8_c00001{word-spacing:-0.012768pt;}
.ws41_c00001{word-spacing:-0.008512pt;}
.ws3a0_c00001{word-spacing:-0.006912pt;}
.ws89_c00001{word-spacing:-0.006400pt;}
.ws13d_c00001{word-spacing:-0.004256pt;}
.ws3_c00001{word-spacing:0.000000pt;}
.ws1ed_c00001{word-spacing:0.003456pt;}
.ws10c_c00001{word-spacing:0.004256pt;}
.ws508_c00001{word-spacing:0.005344pt;}
.ws1d_c00001{word-spacing:0.006400pt;}
.ws359_c00001{word-spacing:0.008512pt;}
.ws6f8_c00001{word-spacing:0.009600pt;}
.ws4a1_c00001{word-spacing:0.010688pt;}
.ws10f_c00001{word-spacing:0.012768pt;}
.ws8a_c00001{word-spacing:0.012800pt;}
.ws3c4_c00001{word-spacing:0.016032pt;}
.ws27_c00001{word-spacing:0.017024pt;}
.ws1a4_c00001{word-spacing:0.019200pt;}
.ws1ec_c00001{word-spacing:0.021280pt;}
.wsd3_c00001{word-spacing:0.021376pt;}
.ws6f7_c00001{word-spacing:0.024000pt;}
.ws2cd_c00001{word-spacing:0.025536pt;}
.ws5f_c00001{word-spacing:0.025600pt;}
.ws74_c00001{word-spacing:0.026720pt;}
.ws6d8_c00001{word-spacing:0.028800pt;}
.ws8c5_c00001{word-spacing:0.029792pt;}
.wsc8_c00001{word-spacing:0.032000pt;}
.ws33b_c00001{word-spacing:0.032064pt;}
.ws6d3_c00001{word-spacing:0.033600pt;}
.ws1ef_c00001{word-spacing:0.034048pt;}
.ws2_c00001{word-spacing:0.037408pt;}
.ws35e_c00001{word-spacing:0.038304pt;}
.ws155_c00001{word-spacing:0.038400pt;}
.ws324_c00001{word-spacing:0.042560pt;}
.ws92_c00001{word-spacing:0.042752pt;}
.ws6cd_c00001{word-spacing:0.043200pt;}
.wsf4_c00001{word-spacing:0.044800pt;}
.ws6c4_c00001{word-spacing:0.048000pt;}
.ws2eb_c00001{word-spacing:0.048096pt;}
.ws172_c00001{word-spacing:0.051200pt;}
.ws6c8_c00001{word-spacing:0.052800pt;}
.ws55_c00001{word-spacing:0.053440pt;}
.ws21e_c00001{word-spacing:0.057600pt;}
.wsd0_c00001{word-spacing:0.058784pt;}
.ws1ee_c00001{word-spacing:0.059584pt;}
.ws6c6_c00001{word-spacing:0.062400pt;}
.ws247_c00001{word-spacing:0.064000pt;}
.ws2ae_c00001{word-spacing:0.064128pt;}
.ws6cb_c00001{word-spacing:0.067200pt;}
.ws91_c00001{word-spacing:0.069472pt;}
.wsa3_c00001{word-spacing:0.070400pt;}
.ws6c1_c00001{word-spacing:0.072000pt;}
.wsfe_c00001{word-spacing:0.074816pt;}
.ws2f6_c00001{word-spacing:0.076800pt;}
.ws408_c00001{word-spacing:0.080160pt;}
.ws6d7_c00001{word-spacing:0.081600pt;}
.ws65c_c00001{word-spacing:0.083200pt;}
.ws8f_c00001{word-spacing:0.085504pt;}
.ws6ce_c00001{word-spacing:0.086400pt;}
.ws3eb_c00001{word-spacing:0.089600pt;}
.ws90_c00001{word-spacing:0.090848pt;}
.ws6ca_c00001{word-spacing:0.091200pt;}
.ws294_c00001{word-spacing:0.096000pt;}
.ws9e_c00001{word-spacing:0.096192pt;}
.ws6d4_c00001{word-spacing:0.100800pt;}
.ws67_c00001{word-spacing:0.101536pt;}
.ws1e6_c00001{word-spacing:0.102400pt;}
.ws12c_c00001{word-spacing:0.106880pt;}
.ws29c_c00001{word-spacing:0.108800pt;}
.ws6dd_c00001{word-spacing:0.110400pt;}
.ws44_c00001{word-spacing:0.112224pt;}
.ws62d_c00001{word-spacing:0.115200pt;}
.wsd1_c00001{word-spacing:0.117568pt;}
.ws6db_c00001{word-spacing:0.120000pt;}
.ws11d_c00001{word-spacing:0.121600pt;}
.ws68_c00001{word-spacing:0.122912pt;}
.ws6cc_c00001{word-spacing:0.124800pt;}
.ws488_c00001{word-spacing:0.128000pt;}
.ws5dc_c00001{word-spacing:0.128256pt;}
.ws6f0_c00001{word-spacing:0.129600pt;}
.ws507_c00001{word-spacing:0.133600pt;}
.ws6c2_c00001{word-spacing:0.134400pt;}
.ws9f_c00001{word-spacing:0.138944pt;}
.ws6e3_c00001{word-spacing:0.139200pt;}
.wsc09_c00001{word-spacing:0.140800pt;}
.ws6f9_c00001{word-spacing:0.144000pt;}
.ws25c_c00001{word-spacing:0.144288pt;}
.wsc89_c00001{word-spacing:0.146624pt;}
.ws30b_c00001{word-spacing:0.147200pt;}
.ws6d0_c00001{word-spacing:0.148800pt;}
.ws6e7_c00001{word-spacing:0.153600pt;}
.ws6dc_c00001{word-spacing:0.158400pt;}
.ws276_c00001{word-spacing:0.160000pt;}
.ws4a7_c00001{word-spacing:0.160320pt;}
.ws6c7_c00001{word-spacing:0.163200pt;}
.ws798_c00001{word-spacing:0.165664pt;}
.ws876_c00001{word-spacing:0.166400pt;}
.ws6eb_c00001{word-spacing:0.168000pt;}
.ws8ba_c00001{word-spacing:0.172800pt;}
.wsc9_c00001{word-spacing:0.176352pt;}
.ws6e1_c00001{word-spacing:0.177600pt;}
.wsa2_c00001{word-spacing:0.179200pt;}
.ws6e8_c00001{word-spacing:0.182400pt;}
.ws8bf_c00001{word-spacing:0.185600pt;}
.ws6da_c00001{word-spacing:0.187200pt;}
.ws6fc_c00001{word-spacing:0.192000pt;}
.wsc3_c00001{word-spacing:0.192384pt;}
.ws6d6_c00001{word-spacing:0.196800pt;}
.ws6d9_c00001{word-spacing:0.201600pt;}
.wsb91_c00001{word-spacing:0.203072pt;}
.ws6d5_c00001{word-spacing:0.206400pt;}
.ws6e4_c00001{word-spacing:0.211200pt;}
.ws6d2_c00001{word-spacing:0.216000pt;}
.ws6c3_c00001{word-spacing:0.220800pt;}
.ws30c_c00001{word-spacing:0.224000pt;}
.ws987_c00001{word-spacing:0.224448pt;}
.ws6df_c00001{word-spacing:0.225600pt;}
.ws586_c00001{word-spacing:0.230400pt;}
.ws6e0_c00001{word-spacing:0.235200pt;}
.ws1f9_c00001{word-spacing:0.236800pt;}
.ws6c0_c00001{word-spacing:0.240000pt;}
.ws16b_c00001{word-spacing:0.242592pt;}
.wsb14_c00001{word-spacing:0.243200pt;}
.ws6cf_c00001{word-spacing:0.244800pt;}
.ws587_c00001{word-spacing:0.249600pt;}
.ws6e2_c00001{word-spacing:0.254400pt;}
.ws628_c00001{word-spacing:0.256000pt;}
.wsc2_c00001{word-spacing:0.256512pt;}
.ws6e5_c00001{word-spacing:0.259200pt;}
.ws7bd_c00001{word-spacing:0.261856pt;}
.ws634_c00001{word-spacing:0.262400pt;}
.ws94b_c00001{word-spacing:0.263872pt;}
.ws6c9_c00001{word-spacing:0.264000pt;}
.ws6ef_c00001{word-spacing:0.268800pt;}
.ws6e6_c00001{word-spacing:0.273600pt;}
.ws204_c00001{word-spacing:0.275200pt;}
.wsa50_c00001{word-spacing:0.275382pt;}
.ws55f_c00001{word-spacing:0.277888pt;}
.ws6e9_c00001{word-spacing:0.278400pt;}
.ws29d_c00001{word-spacing:0.281600pt;}
.ws555_c00001{word-spacing:0.283232pt;}
.ws94c_c00001{word-spacing:0.285152pt;}
.ws96c_c00001{word-spacing:0.288000pt;}
.ws3c_c00001{word-spacing:0.289408pt;}
.ws6fb_c00001{word-spacing:0.292800pt;}
.ws4ec_c00001{word-spacing:0.293664pt;}
.ws275_c00001{word-spacing:0.294400pt;}
.ws6fa_c00001{word-spacing:0.297600pt;}
.ws484_c00001{word-spacing:0.297920pt;}
.ws9ed_c00001{word-spacing:0.299264pt;}
.ws3dd_c00001{word-spacing:0.300800pt;}
.ws30_c00001{word-spacing:0.302176pt;}
.ws441_c00001{word-spacing:0.306432pt;}
.ws3bb_c00001{word-spacing:0.307200pt;}
.ws3d_c00001{word-spacing:0.310688pt;}
.ws6f4_c00001{word-spacing:0.312000pt;}
.ws44b_c00001{word-spacing:0.313600pt;}
.ws16a_c00001{word-spacing:0.314944pt;}
.ws249_c00001{word-spacing:0.315296pt;}
.ws1e9_c00001{word-spacing:0.317952pt;}
.ws1eb_c00001{word-spacing:0.319200pt;}
.ws29e_c00001{word-spacing:0.320000pt;}
.ws556_c00001{word-spacing:0.320640pt;}
.ws10d_c00001{word-spacing:0.323456pt;}
.ws7a7_c00001{word-spacing:0.325984pt;}
.ws1f8_c00001{word-spacing:0.326400pt;}
.ws73a_c00001{word-spacing:0.331328pt;}
.ws2a3_c00001{word-spacing:0.331968pt;}
.ws23f_c00001{word-spacing:0.332800pt;}
.ws723_c00001{word-spacing:0.336672pt;}
.ws203_c00001{word-spacing:0.339200pt;}
.ws646_c00001{word-spacing:0.340480pt;}
.ws635_c00001{word-spacing:0.345600pt;}
.ws37e_c00001{word-spacing:0.347360pt;}
.ws566_c00001{word-spacing:0.352000pt;}
.ws81b_c00001{word-spacing:0.352704pt;}
.wsa36_c00001{word-spacing:0.358048pt;}
.ws227_c00001{word-spacing:0.358400pt;}
.ws56a_c00001{word-spacing:0.364800pt;}
.ws402_c00001{word-spacing:0.368736pt;}
.ws263_c00001{word-spacing:0.371200pt;}
.ws143_c00001{word-spacing:0.377600pt;}
.ws133_c00001{word-spacing:0.379424pt;}
.ws26e_c00001{word-spacing:0.384000pt;}
.ws5e1_c00001{word-spacing:0.384768pt;}
.ws328_c00001{word-spacing:0.390112pt;}
.ws4b0_c00001{word-spacing:0.390400pt;}
.ws39d_c00001{word-spacing:0.395456pt;}
.ws241_c00001{word-spacing:0.396800pt;}
.ws134_c00001{word-spacing:0.400800pt;}
.ws228_c00001{word-spacing:0.403200pt;}
.ws45d_c00001{word-spacing:0.406144pt;}
.ws32f_c00001{word-spacing:0.409600pt;}
.ws50a_c00001{word-spacing:0.411488pt;}
.ws585_c00001{word-spacing:0.416000pt;}
.ws255_c00001{word-spacing:0.416832pt;}
.ws401_c00001{word-spacing:0.422176pt;}
.ws262_c00001{word-spacing:0.422400pt;}
.ws256_c00001{word-spacing:0.427520pt;}
.wsa1a_c00001{word-spacing:0.428800pt;}
.ws6f6_c00001{word-spacing:0.432000pt;}
.ws45b_c00001{word-spacing:0.432864pt;}
.wsab7_c00001{word-spacing:0.438208pt;}
.wsa91_c00001{word-spacing:0.441600pt;}
.ws673_c00001{word-spacing:0.443552pt;}
.ws8ec_c00001{word-spacing:0.448000pt;}
.ws8e_c00001{word-spacing:0.448896pt;}
.ws240_c00001{word-spacing:0.454400pt;}
.ws4a2_c00001{word-spacing:0.459584pt;}
.ws481_c00001{word-spacing:0.463904pt;}
.ws3bc_c00001{word-spacing:0.467200pt;}
.ws45c_c00001{word-spacing:0.470272pt;}
.wsa34_c00001{word-spacing:0.486304pt;}
.ws8d2_c00001{word-spacing:0.518400pt;}
.ws135_c00001{word-spacing:0.523712pt;}
.wsc3c_c00001{word-spacing:0.524800pt;}
.wsc74_c00001{word-spacing:0.556800pt;}
.ws480_c00001{word-spacing:0.566048pt;}
.wsc3b_c00001{word-spacing:0.569600pt;}
.ws64d_c00001{word-spacing:0.577152pt;}
.ws56f_c00001{word-spacing:0.582400pt;}
.wsb29_c00001{word-spacing:0.595200pt;}
.wsa07_c00001{word-spacing:0.598528pt;}
.ws63d_c00001{word-spacing:0.600096pt;}
.ws201_c00001{word-spacing:0.601600pt;}
.ws543_c00001{word-spacing:0.608608pt;}
.ws2c_c00001{word-spacing:0.612864pt;}
.ws31d_c00001{word-spacing:0.614400pt;}
.ws6d_c00001{word-spacing:0.617120pt;}
.ws2d8_c00001{word-spacing:0.620800pt;}
.ws2b_c00001{word-spacing:0.621376pt;}
.ws724_c00001{word-spacing:0.625248pt;}
.ws31_c00001{word-spacing:0.625632pt;}
.ws8f3_c00001{word-spacing:0.627200pt;}
.ws87c_c00001{word-spacing:0.629888pt;}
.ws570_c00001{word-spacing:0.633600pt;}
.ws6e_c00001{word-spacing:0.634144pt;}
.ws5d1_c00001{word-spacing:0.635936pt;}
.ws202_c00001{word-spacing:0.640000pt;}
.ws725_c00001{word-spacing:0.641280pt;}
.ws1ea_c00001{word-spacing:0.642656pt;}
.ws260_c00001{word-spacing:0.646400pt;}
.ws322_c00001{word-spacing:0.646912pt;}
.ws542_c00001{word-spacing:0.651168pt;}
.ws2d9_c00001{word-spacing:0.652800pt;}
.ws694_c00001{word-spacing:0.655424pt;}
.ws7a6_c00001{word-spacing:0.657312pt;}
.ws1b0_c00001{word-spacing:0.659200pt;}
.ws674_c00001{word-spacing:0.662656pt;}
.ws94e_c00001{word-spacing:0.663936pt;}
.ws1af_c00001{word-spacing:0.665600pt;}
.ws4fe_c00001{word-spacing:0.668000pt;}
.ws107_c00001{word-spacing:0.672000pt;}
.ws739_c00001{word-spacing:0.673344pt;}
.ws281_c00001{word-spacing:0.678400pt;}
.ws60c_c00001{word-spacing:0.678688pt;}
.ws9f6_c00001{word-spacing:0.684032pt;}
.ws2ec_c00001{word-spacing:0.684800pt;}
.ws784_c00001{word-spacing:0.689376pt;}
.ws8c6_c00001{word-spacing:0.691200pt;}
.ws70c_c00001{word-spacing:0.694720pt;}
.ws25f_c00001{word-spacing:0.697600pt;}
.ws24f_c00001{word-spacing:0.700064pt;}
.ws1de_c00001{word-spacing:0.704000pt;}
.ws816_c00001{word-spacing:0.705408pt;}
.ws4f5_c00001{word-spacing:0.710400pt;}
.ws70b_c00001{word-spacing:0.710752pt;}
.ws4c9_c00001{word-spacing:0.716096pt;}
.ws743_c00001{word-spacing:0.716800pt;}
.ws7f9_c00001{word-spacing:0.721440pt;}
.ws4_c00001{word-spacing:0.726784pt;}
.wsa58_c00001{word-spacing:0.729600pt;}
.ws463_c00001{word-spacing:0.732128pt;}
.ws50f_c00001{word-spacing:0.737472pt;}
.ws465_c00001{word-spacing:0.742816pt;}
.ws767_c00001{word-spacing:0.748160pt;}
.ws922_c00001{word-spacing:0.748800pt;}
.wsa0c_c00001{word-spacing:0.753504pt;}
.ws5_c00001{word-spacing:0.758848pt;}
.ws53d_c00001{word-spacing:0.761600pt;}
.ws837_c00001{word-spacing:0.764192pt;}
.ws932_c00001{word-spacing:0.769536pt;}
.ws768_c00001{word-spacing:0.774880pt;}
.wsc87_c00001{word-spacing:0.832000pt;}
.wsc7c_c00001{word-spacing:0.851200pt;}
.wsc1c_c00001{word-spacing:0.870400pt;}
.wsb0b_c00001{word-spacing:0.889600pt;}
.ws72b_c00001{word-spacing:0.902400pt;}
.ws18b_c00001{word-spacing:0.908800pt;}
.ws1a2_c00001{word-spacing:0.915200pt;}
.ws74c_c00001{word-spacing:0.919296pt;}
.ws82_c00001{word-spacing:0.921600pt;}
.ws33_c00001{word-spacing:0.927808pt;}
.ws4ac_c00001{word-spacing:0.928000pt;}
.ws28_c00001{word-spacing:0.932064pt;}
.ws56e_c00001{word-spacing:0.934400pt;}
.ws73_c00001{word-spacing:0.936320pt;}
.ws29_c00001{word-spacing:0.940576pt;}
.ws41e_c00001{word-spacing:0.940800pt;}
.ws23_c00001{word-spacing:0.944832pt;}
.ws742_c00001{word-spacing:0.947200pt;}
.ws17c_c00001{word-spacing:0.949088pt;}
.ws32_c00001{word-spacing:0.953344pt;}
.ws261_c00001{word-spacing:0.953600pt;}
.ws74b_c00001{word-spacing:0.957312pt;}
.ws17d_c00001{word-spacing:0.957600pt;}
.ws18a_c00001{word-spacing:0.960000pt;}
.ws69a_c00001{word-spacing:0.960768pt;}
.ws74a_c00001{word-spacing:0.961856pt;}
.ws298_c00001{word-spacing:0.966400pt;}
.ws18c_c00001{word-spacing:0.972800pt;}
.ws94d_c00001{word-spacing:0.974624pt;}
.ws26c_c00001{word-spacing:0.979200pt;}
.ws7b4_c00001{word-spacing:0.983296pt;}
.ws22a_c00001{word-spacing:0.985600pt;}
.ws45f_c00001{word-spacing:0.988640pt;}
.wsa1b_c00001{word-spacing:0.992000pt;}
.ws98_c00001{word-spacing:0.993984pt;}
.ws7ed_c00001{word-spacing:0.998400pt;}
.ws4cb_c00001{word-spacing:0.999328pt;}
.ws701_c00001{word-spacing:1.004672pt;}
.ws2af_c00001{word-spacing:1.004800pt;}
.ws3c7_c00001{word-spacing:1.010016pt;}
.ws59c_c00001{word-spacing:1.011200pt;}
.ws4e3_c00001{word-spacing:1.015360pt;}
.ws1a3_c00001{word-spacing:1.017600pt;}
.ws7a5_c00001{word-spacing:1.020704pt;}
.ws19f_c00001{word-spacing:1.024000pt;}
.wsb7_c00001{word-spacing:1.026048pt;}
.ws72d_c00001{word-spacing:1.030400pt;}
.ws7ab_c00001{word-spacing:1.031392pt;}
.ws4cf_c00001{word-spacing:1.036736pt;}
.ws81_c00001{word-spacing:1.036800pt;}
.wsb8_c00001{word-spacing:1.042080pt;}
.ws2b0_c00001{word-spacing:1.043200pt;}
.ws983_c00001{word-spacing:1.047424pt;}
.ws793_c00001{word-spacing:1.052768pt;}
.ws8b6_c00001{word-spacing:1.056000pt;}
.ws9d_c00001{word-spacing:1.058112pt;}
.ws79f_c00001{word-spacing:1.062400pt;}
.ws453_c00001{word-spacing:1.068800pt;}
.ws8f9_c00001{word-spacing:1.075200pt;}
.ws97f_c00001{word-spacing:1.081600pt;}
.ws464_c00001{word-spacing:1.084832pt;}
.ws7a4_c00001{word-spacing:1.090176pt;}
.ws297_c00001{word-spacing:1.100800pt;}
.ws4ca_c00001{word-spacing:1.116896pt;}
.ws972_c00001{word-spacing:1.120000pt;}
.wsba0_c00001{word-spacing:1.132800pt;}
.ws8a5_c00001{word-spacing:1.152000pt;}
.ws8fa_c00001{word-spacing:1.158400pt;}
.ws9fe_c00001{word-spacing:1.171200pt;}
.wsac3_c00001{word-spacing:1.203200pt;}
.wsc80_c00001{word-spacing:1.209600pt;}
.ws80_c00001{word-spacing:1.216000pt;}
.ws1f5_c00001{word-spacing:1.222400pt;}
.wsb42_c00001{word-spacing:1.235200pt;}
.wsb3d_c00001{word-spacing:1.241600pt;}
.ws471_c00001{word-spacing:1.242752pt;}
.ws2bc_c00001{word-spacing:1.247008pt;}
.ws54a_c00001{word-spacing:1.251264pt;}
.ws19d_c00001{word-spacing:1.254400pt;}
.ws2a_c00001{word-spacing:1.255520pt;}
.ws569_c00001{word-spacing:1.259776pt;}
.ws95f_c00001{word-spacing:1.260800pt;}
.ws43f_c00001{word-spacing:1.264032pt;}
.ws777_c00001{word-spacing:1.267200pt;}
.ws449_c00001{word-spacing:1.268288pt;}
.ws422_c00001{word-spacing:1.272544pt;}
.ws599_c00001{word-spacing:1.273600pt;}
.ws2bd_c00001{word-spacing:1.276800pt;}
.ws225_c00001{word-spacing:1.280000pt;}
.wsa47_c00001{word-spacing:1.282176pt;}
.ws86b_c00001{word-spacing:1.286400pt;}
.ws183_c00001{word-spacing:1.292800pt;}
.ws259_c00001{word-spacing:1.293248pt;}
.wsa48_c00001{word-spacing:1.293824pt;}
.ws7be_c00001{word-spacing:1.298592pt;}
.ws19e_c00001{word-spacing:1.299200pt;}
.ws4df_c00001{word-spacing:1.303936pt;}
.ws15d_c00001{word-spacing:1.305600pt;}
.ws76_c00001{word-spacing:1.309280pt;}
.ws8dd_c00001{word-spacing:1.312000pt;}
.ws4e0_c00001{word-spacing:1.314624pt;}
.ws3f9_c00001{word-spacing:1.318400pt;}
.ws75_c00001{word-spacing:1.319968pt;}
.ws598_c00001{word-spacing:1.324800pt;}
.ws9df_c00001{word-spacing:1.325312pt;}
.ws137_c00001{word-spacing:1.330656pt;}
.ws72e_c00001{word-spacing:1.331200pt;}
.ws311_c00001{word-spacing:1.336000pt;}
.ws30d_c00001{word-spacing:1.337600pt;}
.ws4ce_c00001{word-spacing:1.341344pt;}
.ws271_c00001{word-spacing:1.344000pt;}
.ws138_c00001{word-spacing:1.346688pt;}
.ws9be_c00001{word-spacing:1.350400pt;}
.ws9_c00001{word-spacing:1.352032pt;}
.ws184_c00001{word-spacing:1.356800pt;}
.wsb0_c00001{word-spacing:1.357376pt;}
.wsc1_c00001{word-spacing:1.362720pt;}
.ws3f8_c00001{word-spacing:1.363200pt;}
.ws139_c00001{word-spacing:1.368064pt;}
.ws8a1_c00001{word-spacing:1.369600pt;}
.ws9bd_c00001{word-spacing:1.376000pt;}
.wsb1_c00001{word-spacing:1.378752pt;}
.ws958_c00001{word-spacing:1.382400pt;}
.ws8b9_c00001{word-spacing:1.388800pt;}
.ws734_c00001{word-spacing:1.389440pt;}
.ws9a4_c00001{word-spacing:1.394784pt;}
.wsb0a_c00001{word-spacing:1.395200pt;}
.ws7aa_c00001{word-spacing:1.400128pt;}
.ws1f4_c00001{word-spacing:1.401600pt;}
.ws790_c00001{word-spacing:1.405472pt;}
.wsa7e_c00001{word-spacing:1.414400pt;}
.ws2cc_c00001{word-spacing:1.420800pt;}
.ws5ec_c00001{word-spacing:1.427200pt;}
.ws733_c00001{word-spacing:1.432192pt;}
.wsac9_c00001{word-spacing:1.433600pt;}
.wsc73_c00001{word-spacing:1.440000pt;}
.wsc37_c00001{word-spacing:1.446400pt;}
.wsb7f_c00001{word-spacing:1.459200pt;}
.wsc7d_c00001{word-spacing:1.472000pt;}
.ws9fd_c00001{word-spacing:1.516800pt;}
.ws2cb_c00001{word-spacing:1.523200pt;}
.ws9c8_c00001{word-spacing:1.529600pt;}
.ws800_c00001{word-spacing:1.536000pt;}
.ws2bb_c00001{word-spacing:1.542400pt;}
.ws266_c00001{word-spacing:1.548800pt;}
.wsadb_c00001{word-spacing:1.555200pt;}
.ws9c1_c00001{word-spacing:1.561600pt;}
.ws4a8_c00001{word-spacing:1.568000pt;}
.ws44a_c00001{word-spacing:1.574400pt;}
.ws574_c00001{word-spacing:1.574720pt;}
.ws36_c00001{word-spacing:1.578976pt;}
.ws150_c00001{word-spacing:1.580800pt;}
.ws37_c00001{word-spacing:1.583232pt;}
.ws43a_c00001{word-spacing:1.587200pt;}
.ws575_c00001{word-spacing:1.587488pt;}
.ws4f1_c00001{word-spacing:1.591744pt;}
.ws60e_c00001{word-spacing:1.592512pt;}
.ws2dd_c00001{word-spacing:1.593600pt;}
.ws54f_c00001{word-spacing:1.596000pt;}
.ws1e2_c00001{word-spacing:1.600000pt;}
.ws63e_c00001{word-spacing:1.600256pt;}
.ws630_c00001{word-spacing:1.604512pt;}
.ws85_c00001{word-spacing:1.606400pt;}
.ws191_c00001{word-spacing:1.612800pt;}
.ws6b_c00001{word-spacing:1.613888pt;}
.ws102_c00001{word-spacing:1.619200pt;}
.ws95_c00001{word-spacing:1.619232pt;}
.ws4d0_c00001{word-spacing:1.624576pt;}
.ws333_c00001{word-spacing:1.625600pt;}
.ws9ef_c00001{word-spacing:1.629920pt;}
.ws175_c00001{word-spacing:1.632000pt;}
.ws7f2_c00001{word-spacing:1.638400pt;}
.ws45e_c00001{word-spacing:1.640608pt;}
.ws267_c00001{word-spacing:1.644800pt;}
.ws490_c00001{word-spacing:1.645952pt;}
.ws420_c00001{word-spacing:1.651200pt;}
.ws9a6_c00001{word-spacing:1.651296pt;}
.ws83c_c00001{word-spacing:1.656640pt;}
.ws176_c00001{word-spacing:1.657600pt;}
.ws57a_c00001{word-spacing:1.661984pt;}
.ws101_c00001{word-spacing:1.664000pt;}
.ws405_c00001{word-spacing:1.667328pt;}
.wsc4e_c00001{word-spacing:1.668480pt;}
.ws76d_c00001{word-spacing:1.670400pt;}
.ws97_c00001{word-spacing:1.672672pt;}
.ws666_c00001{word-spacing:1.676800pt;}
.wsca_c00001{word-spacing:1.678016pt;}
.ws7cd_c00001{word-spacing:1.683200pt;}
.ws96_c00001{word-spacing:1.688704pt;}
.ws345_c00001{word-spacing:1.689600pt;}
.ws7c_c00001{word-spacing:1.694048pt;}
.ws14f_c00001{word-spacing:1.696000pt;}
.wsa_c00001{word-spacing:1.699392pt;}
.wsa6e_c00001{word-spacing:1.702400pt;}
.ws2de_c00001{word-spacing:1.708800pt;}
.ws6a_c00001{word-spacing:1.710080pt;}
.ws7a2_c00001{word-spacing:1.715200pt;}
.ws439_c00001{word-spacing:1.721600pt;}
.wsa88_c00001{word-spacing:1.728000pt;}
.ws4e4_c00001{word-spacing:1.731456pt;}
.ws965_c00001{word-spacing:1.734400pt;}
.wsbdb_c00001{word-spacing:1.749376pt;}
.wsc85_c00001{word-spacing:1.766400pt;}
.wsadf_c00001{word-spacing:1.768864pt;}
.ws88f_c00001{word-spacing:1.785600pt;}
.ws509_c00001{word-spacing:1.790240pt;}
.wsa86_c00001{word-spacing:1.792000pt;}
.wsc86_c00001{word-spacing:1.804800pt;}
.ws7d_c00001{word-spacing:1.806272pt;}
.ws9c7_c00001{word-spacing:1.811200pt;}
.ws99e_c00001{word-spacing:1.843200pt;}
.ws91e_c00001{word-spacing:1.849600pt;}
.ws8b8_c00001{word-spacing:1.856000pt;}
.ws460_c00001{word-spacing:1.862400pt;}
.ws762_c00001{word-spacing:1.868800pt;}
.ws778_c00001{word-spacing:1.872640pt;}
.ws8b5_c00001{word-spacing:1.875200pt;}
.wsae0_c00001{word-spacing:1.881088pt;}
.ws2f8_c00001{word-spacing:1.881152pt;}
.ws749_c00001{word-spacing:1.881600pt;}
.ws2f7_c00001{word-spacing:1.885408pt;}
.wsa9f_c00001{word-spacing:1.888000pt;}
.ws2e_c00001{word-spacing:1.889664pt;}
.ws96a_c00001{word-spacing:1.894400pt;}
.ws13b_c00001{word-spacing:1.898176pt;}
.ws47a_c00001{word-spacing:1.900800pt;}
.ws39_c00001{word-spacing:1.902432pt;}
.ws440_c00001{word-spacing:1.906688pt;}
.ws438_c00001{word-spacing:1.907200pt;}
.ws2d_c00001{word-spacing:1.910944pt;}
.ws5a3_c00001{word-spacing:1.913600pt;}
.ws38_c00001{word-spacing:1.915200pt;}
.ws61f_c00001{word-spacing:1.919456pt;}
.ws3e1_c00001{word-spacing:1.920000pt;}
.ws54e_c00001{word-spacing:1.923712pt;}
.ws631_c00001{word-spacing:1.924992pt;}
.wsd4_c00001{word-spacing:1.926400pt;}
.ws541_c00001{word-spacing:1.927968pt;}
.ws840_c00001{word-spacing:1.929184pt;}
.ws188_c00001{word-spacing:1.932800pt;}
.ws792_c00001{word-spacing:1.934528pt;}
.ws9ce_c00001{word-spacing:1.936480pt;}
.ws6b4_c00001{word-spacing:1.939200pt;}
.ws248_c00001{word-spacing:1.939872pt;}
.ws98c_c00001{word-spacing:1.945216pt;}
.ws28f_c00001{word-spacing:1.945600pt;}
.ws6_c00001{word-spacing:1.950560pt;}
.ws424_c00001{word-spacing:1.952000pt;}
.ws524_c00001{word-spacing:1.955904pt;}
.ws806_c00001{word-spacing:1.958400pt;}
.ws51_c00001{word-spacing:1.961248pt;}
.ws290_c00001{word-spacing:1.964800pt;}
.ws648_c00001{word-spacing:1.966592pt;}
.ws38b_c00001{word-spacing:1.971200pt;}
.wse0_c00001{word-spacing:1.971936pt;}
.wse1_c00001{word-spacing:1.977280pt;}
.ws969_c00001{word-spacing:1.977600pt;}
.ws632_c00001{word-spacing:1.979040pt;}
.ws5dd_c00001{word-spacing:1.982624pt;}
.ws8bc_c00001{word-spacing:1.984000pt;}
.ws5ab_c00001{word-spacing:1.987968pt;}
.ws3e0_c00001{word-spacing:1.990400pt;}
.ws7_c00001{word-spacing:1.993312pt;}
.ws4c7_c00001{word-spacing:1.996800pt;}
.ws79b_c00001{word-spacing:1.998656pt;}
.wsc42_c00001{word-spacing:2.003200pt;}
.ws9e3_c00001{word-spacing:2.004000pt;}
.ws389_c00001{word-spacing:2.009344pt;}
.ws8c4_c00001{word-spacing:2.009600pt;}
.ws9d9_c00001{word-spacing:2.014688pt;}
.ws29f_c00001{word-spacing:2.016000pt;}
.ws404_c00001{word-spacing:2.020032pt;}
.ws38c_c00001{word-spacing:2.022400pt;}
.ws730_c00001{word-spacing:2.025376pt;}
.wsc32_c00001{word-spacing:2.027456pt;}
.ws8f6_c00001{word-spacing:2.028800pt;}
.ws929_c00001{word-spacing:2.035200pt;}
.ws9d8_c00001{word-spacing:2.036064pt;}
.ws5a4_c00001{word-spacing:2.048000pt;}
.wsbba_c00001{word-spacing:2.054400pt;}
.ws5ac_c00001{word-spacing:2.057440pt;}
.ws51f_c00001{word-spacing:2.067200pt;}
.wsa92_c00001{word-spacing:2.080000pt;}
.wsa53_c00001{word-spacing:2.099200pt;}
.ws78b_c00001{word-spacing:2.100192pt;}
.wsb95_c00001{word-spacing:2.105600pt;}
.wsa90_c00001{word-spacing:2.106720pt;}
.ws9f3_c00001{word-spacing:2.118400pt;}
.ws9b1_c00001{word-spacing:2.132256pt;}
.wsa75_c00001{word-spacing:2.137600pt;}
.ws5ad_c00001{word-spacing:2.142944pt;}
.wsc50_c00001{word-spacing:2.144000pt;}
.ws9d1_c00001{word-spacing:2.156800pt;}
.wsa29_c00001{word-spacing:2.163200pt;}
.ws92b_c00001{word-spacing:2.182400pt;}
.ws75b_c00001{word-spacing:2.188800pt;}
.ws783_c00001{word-spacing:2.191840pt;}
.ws8b7_c00001{word-spacing:2.195200pt;}
.ws620_c00001{word-spacing:2.196096pt;}
.ws35d_c00001{word-spacing:2.204608pt;}
.wsa6_c00001{word-spacing:2.208000pt;}
.ws2a2_c00001{word-spacing:2.208864pt;}
.ws1c7_c00001{word-spacing:2.213120pt;}
.ws32c_c00001{word-spacing:2.214400pt;}
.ws21_c00001{word-spacing:2.217376pt;}
.ws1b1_c00001{word-spacing:2.220800pt;}
.ws22_c00001{word-spacing:2.221632pt;}
.ws1c6_c00001{word-spacing:2.225888pt;}
.wsaa5_c00001{word-spacing:2.227200pt;}
.ws5ce_c00001{word-spacing:2.228448pt;}
.ws2a8_c00001{word-spacing:2.230144pt;}
.ws32d_c00001{word-spacing:2.233600pt;}
.ws3e_c00001{word-spacing:2.234400pt;}
.ws4b7_c00001{word-spacing:2.238656pt;}
.ws4b6_c00001{word-spacing:2.239488pt;}
.ws16d_c00001{word-spacing:2.240000pt;}
.ws2a4_c00001{word-spacing:2.242912pt;}
.ws2a5_c00001{word-spacing:2.242944pt;}
.ws16c_c00001{word-spacing:2.246400pt;}
.ws2a9_c00001{word-spacing:2.247168pt;}
.wsa5_c00001{word-spacing:2.252800pt;}
.ws802_c00001{word-spacing:2.255168pt;}
.ws2a7_c00001{word-spacing:2.255680pt;}
.ws59b_c00001{word-spacing:2.259200pt;}
.ws35c_c00001{word-spacing:2.259936pt;}
.ws391_c00001{word-spacing:2.260512pt;}
.ws118_c00001{word-spacing:2.265600pt;}
.ws5f1_c00001{word-spacing:2.265856pt;}
.ws69b_c00001{word-spacing:2.268448pt;}
.ws789_c00001{word-spacing:2.271200pt;}
.ws340_c00001{word-spacing:2.272000pt;}
.ws99f_c00001{word-spacing:2.276544pt;}
.ws3f1_c00001{word-spacing:2.278400pt;}
.ws769_c00001{word-spacing:2.281888pt;}
.ws119_c00001{word-spacing:2.284800pt;}
.ws4b_c00001{word-spacing:2.287232pt;}
.ws572_c00001{word-spacing:2.291200pt;}
.ws7a9_c00001{word-spacing:2.292576pt;}
.ws8f2_c00001{word-spacing:2.297600pt;}
.ws609_c00001{word-spacing:2.297920pt;}
.ws7e9_c00001{word-spacing:2.303264pt;}
.ws5fd_c00001{word-spacing:2.304000pt;}
.ws4c_c00001{word-spacing:2.308608pt;}
.ws981_c00001{word-spacing:2.310400pt;}
.ws24a_c00001{word-spacing:2.313952pt;}
.ws907_c00001{word-spacing:2.316800pt;}
.ws392_c00001{word-spacing:2.319296pt;}
.ws7d9_c00001{word-spacing:2.323200pt;}
.ws7a8_c00001{word-spacing:2.324640pt;}
.ws4dc_c00001{word-spacing:2.329600pt;}
.ws791_c00001{word-spacing:2.329984pt;}
.ws552_c00001{word-spacing:2.335328pt;}
.wsbc4_c00001{word-spacing:2.336000pt;}
.ws89b_c00001{word-spacing:2.342400pt;}
.ws394_c00001{word-spacing:2.346016pt;}
.wsb63_c00001{word-spacing:2.348800pt;}
.ws9a0_c00001{word-spacing:2.351360pt;}
.ws5fc_c00001{word-spacing:2.361600pt;}
.wsb7a_c00001{word-spacing:2.368000pt;}
.ws393_c00001{word-spacing:2.372736pt;}
.wsbd6_c00001{word-spacing:2.387200pt;}
.ws991_c00001{word-spacing:2.399456pt;}
.wsc1d_c00001{word-spacing:2.400000pt;}
.wsb94_c00001{word-spacing:2.425600pt;}
.ws990_c00001{word-spacing:2.447552pt;}
.wsc60_c00001{word-spacing:2.451200pt;}
.wsb51_c00001{word-spacing:2.476800pt;}
.wsc70_c00001{word-spacing:2.483200pt;}
.wsb50_c00001{word-spacing:2.496000pt;}
.ws80d_c00001{word-spacing:2.502400pt;}
.wsa65_c00001{word-spacing:2.508800pt;}
.ws10b_c00001{word-spacing:2.511040pt;}
.ws411_c00001{word-spacing:2.515200pt;}
.ws74e_c00001{word-spacing:2.515296pt;}
.ws74d_c00001{word-spacing:2.519552pt;}
.ws11_c00001{word-spacing:2.521600pt;}
.wsa9b_c00001{word-spacing:2.528000pt;}
.ws4ef_c00001{word-spacing:2.528064pt;}
.ws5f7_c00001{word-spacing:2.532320pt;}
.ws456_c00001{word-spacing:2.534400pt;}
.wsaa_c00001{word-spacing:2.536576pt;}
.ws97c_c00001{word-spacing:2.540800pt;}
.ws4f2_c00001{word-spacing:2.540832pt;}
.wsa9_c00001{word-spacing:2.545088pt;}
.ws47f_c00001{word-spacing:2.547200pt;}
.ws10a_c00001{word-spacing:2.549344pt;}
.ws3da_c00001{word-spacing:2.553600pt;}
.ws515_c00001{word-spacing:2.554432pt;}
.ws29b_c00001{word-spacing:2.560000pt;}
.ws2a6_c00001{word-spacing:2.562112pt;}
.ws66c_c00001{word-spacing:2.566400pt;}
.ws33c_c00001{word-spacing:2.570464pt;}
.ws1df_c00001{word-spacing:2.572800pt;}
.ws514_c00001{word-spacing:2.575808pt;}
.ws52d_c00001{word-spacing:2.579200pt;}
.ws78a_c00001{word-spacing:2.581152pt;}
.ws10_c00001{word-spacing:2.585600pt;}
.ws466_c00001{word-spacing:2.586496pt;}
.ws98d_c00001{word-spacing:2.591840pt;}
.ws3a3_c00001{word-spacing:2.592000pt;}
.ws4e5_c00001{word-spacing:2.597184pt;}
.ws671_c00001{word-spacing:2.598400pt;}
.ws817_c00001{word-spacing:2.602528pt;}
.ws3fb_c00001{word-spacing:2.604800pt;}
.ws25b_c00001{word-spacing:2.607872pt;}
.ws3fa_c00001{word-spacing:2.611200pt;}
.wsfd_c00001{word-spacing:2.613216pt;}
.ws9c6_c00001{word-spacing:2.617600pt;}
.wsff_c00001{word-spacing:2.618560pt;}
.ws60d_c00001{word-spacing:2.623904pt;}
.ws9d4_c00001{word-spacing:2.624000pt;}
.ws513_c00001{word-spacing:2.629248pt;}
.ws9b5_c00001{word-spacing:2.630400pt;}
.ws720_c00001{word-spacing:2.634592pt;}
.wsb1f_c00001{word-spacing:2.636800pt;}
.ws5a8_c00001{word-spacing:2.639936pt;}
.ws474_c00001{word-spacing:2.643200pt;}
.ws100_c00001{word-spacing:2.645280pt;}
.ws5de_c00001{word-spacing:2.650624pt;}
.ws7ec_c00001{word-spacing:2.655968pt;}
.ws3db_c00001{word-spacing:2.656000pt;}
.ws5a9_c00001{word-spacing:2.661312pt;}
.wsa00_c00001{word-spacing:2.666656pt;}
.ws84e_c00001{word-spacing:2.672000pt;}
.wsc63_c00001{word-spacing:2.688000pt;}
.ws858_c00001{word-spacing:2.688032pt;}
.wsa06_c00001{word-spacing:2.693376pt;}
.wsb3a_c00001{word-spacing:2.694400pt;}
.wsc5d_c00001{word-spacing:2.700800pt;}
.ws5df_c00001{word-spacing:2.704064pt;}
.wsb1e_c00001{word-spacing:2.732800pt;}
.wsbc6_c00001{word-spacing:2.745600pt;}
.wsc5f_c00001{word-spacing:2.752000pt;}
.wsa6c_c00001{word-spacing:2.757888pt;}
.wsc52_c00001{word-spacing:2.764800pt;}
.ws3ea_c00001{word-spacing:2.771200pt;}
.ws97d_c00001{word-spacing:2.784000pt;}
.wsc53_c00001{word-spacing:2.796800pt;}
.wsa6a_c00001{word-spacing:2.800448pt;}
.ws67b_c00001{word-spacing:2.803200pt;}
.ws20a_c00001{word-spacing:2.809600pt;}
.ws6b5_c00001{word-spacing:2.816000pt;}
.wsa6b_c00001{word-spacing:2.817472pt;}
.ws91a_c00001{word-spacing:2.822400pt;}
.ws6a9_c00001{word-spacing:2.825984pt;}
.ws921_c00001{word-spacing:2.828800pt;}
.ws6aa_c00001{word-spacing:2.834496pt;}
.wsda_c00001{word-spacing:2.835200pt;}
.ws161_c00001{word-spacing:2.838752pt;}
.ws27c_c00001{word-spacing:2.841600pt;}
.wsa44_c00001{word-spacing:2.843008pt;}
.ws2e7_c00001{word-spacing:2.847264pt;}
.ws3e9_c00001{word-spacing:2.848000pt;}
.ws160_c00001{word-spacing:2.851520pt;}
.ws864_c00001{word-spacing:2.854400pt;}
.ws549_c00001{word-spacing:2.855776pt;}
.ws162_c00001{word-spacing:2.860032pt;}
.ws3e8_c00001{word-spacing:2.860800pt;}
.wsac_c00001{word-spacing:2.864288pt;}
.ws520_c00001{word-spacing:2.867200pt;}
.ws551_c00001{word-spacing:2.868544pt;}
.ws2e8_c00001{word-spacing:2.872800pt;}
.ws1bb_c00001{word-spacing:2.873600pt;}
.ws15f_c00001{word-spacing:2.877056pt;}
.ws1ba_c00001{word-spacing:2.880000pt;}
.ws163_c00001{word-spacing:2.881312pt;}
.ws6ab_c00001{word-spacing:2.885568pt;}
.ws27b_c00001{word-spacing:2.886400pt;}
.ws15e_c00001{word-spacing:2.892800pt;}
.ws4fd_c00001{word-spacing:2.896448pt;}
.ws3b2_c00001{word-spacing:2.899200pt;}
.ws607_c00001{word-spacing:2.901792pt;}
.ws209_c00001{word-spacing:2.905600pt;}
.ws5b4_c00001{word-spacing:2.907136pt;}
.wsdb_c00001{word-spacing:2.912000pt;}
.wse2_c00001{word-spacing:2.917824pt;}
.ws827_c00001{word-spacing:2.918400pt;}
.ws9b_c00001{word-spacing:2.923168pt;}
.ws5e_c00001{word-spacing:2.924800pt;}
.ws25a_c00001{word-spacing:2.928512pt;}
.ws72c_c00001{word-spacing:2.931200pt;}
.ws5b1_c00001{word-spacing:2.933856pt;}
.ws5d_c00001{word-spacing:2.937600pt;}
.ws8e2_c00001{word-spacing:2.944000pt;}
.ws511_c00001{word-spacing:2.944544pt;}
.wsd6_c00001{word-spacing:2.949888pt;}
.ws52c_c00001{word-spacing:2.950400pt;}
.ws510_c00001{word-spacing:2.955232pt;}
.ws32a_c00001{word-spacing:2.956800pt;}
.ws5b0_c00001{word-spacing:2.960576pt;}
.ws865_c00001{word-spacing:2.963200pt;}
.wsd7_c00001{word-spacing:2.965920pt;}
.wsa8d_c00001{word-spacing:2.969600pt;}
.ws48_c00001{word-spacing:2.971264pt;}
.ws527_c00001{word-spacing:2.976000pt;}
.ws4fc_c00001{word-spacing:2.976608pt;}
.ws5b3_c00001{word-spacing:2.981952pt;}
.ws9fa_c00001{word-spacing:2.982400pt;}
.wsd8_c00001{word-spacing:2.987296pt;}
.ws69c_c00001{word-spacing:2.988800pt;}
.ws32b_c00001{word-spacing:2.995200pt;}
.ws794_c00001{word-spacing:2.997984pt;}
.ws961_c00001{word-spacing:3.008000pt;}
.ws83b_c00001{word-spacing:3.014016pt;}
.ws9c_c00001{word-spacing:3.019360pt;}
.wsc16_c00001{word-spacing:3.020800pt;}
.wsb02_c00001{word-spacing:3.027200pt;}
.ws71e_c00001{word-spacing:3.035392pt;}
.ws688_c00001{word-spacing:3.040000pt;}
.ws718_c00001{word-spacing:3.040736pt;}
.ws9fb_c00001{word-spacing:3.046400pt;}
.wsc4a_c00001{word-spacing:3.052800pt;}
.wsc17_c00001{word-spacing:3.065600pt;}
.ws997_c00001{word-spacing:3.078400pt;}
.ws891_c00001{word-spacing:3.091200pt;}
.wsa59_c00001{word-spacing:3.097600pt;}
.ws67a_c00001{word-spacing:3.104000pt;}
.ws6a8_c00001{word-spacing:3.106880pt;}
.ws890_c00001{word-spacing:3.116800pt;}
.wsac2_c00001{word-spacing:3.123200pt;}
.wsbee_c00001{word-spacing:3.129600pt;}
.wsac4_c00001{word-spacing:3.136000pt;}
.wsc1e_c00001{word-spacing:3.142400pt;}
.wsaea_c00001{word-spacing:3.148800pt;}
.ws35a_c00001{word-spacing:3.157952pt;}
.ws2a1_c00001{word-spacing:3.161600pt;}
.ws168_c00001{word-spacing:3.162208pt;}
.ws288_c00001{word-spacing:3.166464pt;}
.ws6a6_c00001{word-spacing:3.168000pt;}
.ws5f9_c00001{word-spacing:3.170720pt;}
.ws533_c00001{word-spacing:3.174400pt;}
.ws40_c00001{word-spacing:3.174976pt;}
.ws169_c00001{word-spacing:3.179232pt;}
.ws450_c00001{word-spacing:3.180800pt;}
.ws3a_c00001{word-spacing:3.183488pt;}
.ws4f4_c00001{word-spacing:3.187200pt;}
.ws3b_c00001{word-spacing:3.187744pt;}
.ws164_c00001{word-spacing:3.192000pt;}
.ws1d9_c00001{word-spacing:3.193600pt;}
.ws38f_c00001{word-spacing:3.195712pt;}
.ws3f_c00001{word-spacing:3.196256pt;}
.ws286_c00001{word-spacing:3.196800pt;}
.ws1ae_c00001{word-spacing:3.200000pt;}
.ws6a7_c00001{word-spacing:3.200256pt;}
.ws670_c00001{word-spacing:3.200512pt;}
.ws66f_c00001{word-spacing:3.203712pt;}
.ws285_c00001{word-spacing:3.204768pt;}
.ws4f3_c00001{word-spacing:3.206400pt;}
.ws116_c00001{word-spacing:3.212800pt;}
.ws982_c00001{word-spacing:3.217088pt;}
.ws1ff_c00001{word-spacing:3.219200pt;}
.ws468_c00001{word-spacing:3.222432pt;}
.ws3f4_c00001{word-spacing:3.225600pt;}
.wse6_c00001{word-spacing:3.227776pt;}
.ws687_c00001{word-spacing:3.232000pt;}
.ws558_c00001{word-spacing:3.233120pt;}
.ws2a0_c00001{word-spacing:3.238400pt;}
.ws853_c00001{word-spacing:3.238464pt;}
.ws64a_c00001{word-spacing:3.243808pt;}
.ws145_c00001{word-spacing:3.244800pt;}
.ws54_c00001{word-spacing:3.249152pt;}
.ws627_c00001{word-spacing:3.251200pt;}
.ws7c8_c00001{word-spacing:3.254496pt;}
.ws144_c00001{word-spacing:3.257600pt;}
.ws557_c00001{word-spacing:3.259840pt;}
.wsac0_c00001{word-spacing:3.264000pt;}
.wsea_c00001{word-spacing:3.265184pt;}
.ws1fe_c00001{word-spacing:3.270400pt;}
.ws7d5_c00001{word-spacing:3.270528pt;}
.wse9_c00001{word-spacing:3.275872pt;}
.ws521_c00001{word-spacing:3.276800pt;}
.wsbb_c00001{word-spacing:3.281216pt;}
.ws492_c00001{word-spacing:3.283200pt;}
.ws38e_c00001{word-spacing:3.286560pt;}
.ws3f3_c00001{word-spacing:3.289600pt;}
.ws5d6_c00001{word-spacing:3.291904pt;}
.wsbf8_c00001{word-spacing:3.296000pt;}
.ws856_c00001{word-spacing:3.297248pt;}
.wsac1_c00001{word-spacing:3.302400pt;}
.ws136_c00001{word-spacing:3.302592pt;}
.ws47_c00001{word-spacing:3.307936pt;}
.ws1ad_c00001{word-spacing:3.308800pt;}
.ws9eb_c00001{word-spacing:3.315200pt;}
.ws70d_c00001{word-spacing:3.318624pt;}
.ws9da_c00001{word-spacing:3.323968pt;}
.ws668_c00001{word-spacing:3.328000pt;}
.ws49_c00001{word-spacing:3.329312pt;}
.ws9dc_c00001{word-spacing:3.334656pt;}
.wsa56_c00001{word-spacing:3.340800pt;}
.ws8f8_c00001{word-spacing:3.347200pt;}
.ws254_c00001{word-spacing:3.350688pt;}
.wsa04_c00001{word-spacing:3.361376pt;}
.wsc00_c00001{word-spacing:3.362240pt;}
.ws9c3_c00001{word-spacing:3.379200pt;}
.ws9db_c00001{word-spacing:3.388096pt;}
.ws3ad_c00001{word-spacing:3.392000pt;}
.ws72_c00001{word-spacing:3.409056pt;}
.ws7d8_c00001{word-spacing:3.424000pt;}
.wsb83_c00001{word-spacing:3.430400pt;}
.ws467_c00001{word-spacing:3.446880pt;}
.wsb28_c00001{word-spacing:3.449600pt;}
.ws6a5_c00001{word-spacing:3.456000pt;}
.ws71_c00001{word-spacing:3.460128pt;}
.ws3ac_c00001{word-spacing:3.462400pt;}
.ws6f_c00001{word-spacing:3.464384pt;}
.ws70_c00001{word-spacing:3.472896pt;}
.ws6a4_c00001{word-spacing:3.475200pt;}
.ws17_c00001{word-spacing:3.488000pt;}
.ws546_c00001{word-spacing:3.489920pt;}
.ws641_c00001{word-spacing:3.494176pt;}
.ws6ae_c00001{word-spacing:3.494400pt;}
.ws49a_c00001{word-spacing:3.498432pt;}
.ws85b_c00001{word-spacing:3.500320pt;}
.ws4f7_c00001{word-spacing:3.500800pt;}
.ws444_c00001{word-spacing:3.502688pt;}
.ws34_c00001{word-spacing:3.506944pt;}
.ws2e0_c00001{word-spacing:3.507200pt;}
.ws4f0_c00001{word-spacing:3.511200pt;}
.ws2b2_c00001{word-spacing:3.513600pt;}
.ws445_c00001{word-spacing:3.515456pt;}
.ws547_c00001{word-spacing:3.519712pt;}
.wsc7_c00001{word-spacing:3.520000pt;}
.ws39c_c00001{word-spacing:3.521696pt;}
.ws287_c00001{word-spacing:3.523968pt;}
.ws16_c00001{word-spacing:3.526400pt;}
.wsbc_c00001{word-spacing:3.527040pt;}
.ws39b_c00001{word-spacing:3.532384pt;}
.ws2ca_c00001{word-spacing:3.532800pt;}
.ws3ab_c00001{word-spacing:3.539200pt;}
.wsa30_c00001{word-spacing:3.543072pt;}
.ws49c_c00001{word-spacing:3.545600pt;}
.ws649_c00001{word-spacing:3.548416pt;}
.ws695_c00001{word-spacing:3.549504pt;}
.ws146_c00001{word-spacing:3.552000pt;}
.ws327_c00001{word-spacing:3.553760pt;}
.ws111_c00001{word-spacing:3.558400pt;}
.ws55b_c00001{word-spacing:3.559104pt;}
.ws3c8_c00001{word-spacing:3.564448pt;}
.ws7df_c00001{word-spacing:3.564800pt;}
.ws3c9_c00001{word-spacing:3.569792pt;}
.ws847_c00001{word-spacing:3.571200pt;}
.wsd5_c00001{word-spacing:3.575136pt;}
.ws46c_c00001{word-spacing:3.577600pt;}
.ws5b2_c00001{word-spacing:3.580480pt;}
.ws6a3_c00001{word-spacing:3.584000pt;}
.ws48f_c00001{word-spacing:3.585824pt;}
.ws34a_c00001{word-spacing:3.590400pt;}
.ws46_c00001{word-spacing:3.591168pt;}
.ws45_c00001{word-spacing:3.596512pt;}
.ws173_c00001{word-spacing:3.596800pt;}
.ws52_c00001{word-spacing:3.601856pt;}
.ws2b3_c00001{word-spacing:3.603200pt;}
.wsa31_c00001{word-spacing:3.607200pt;}
.ws349_c00001{word-spacing:3.609600pt;}
.wsb7d_c00001{word-spacing:3.609984pt;}
.ws5ca_c00001{word-spacing:3.612544pt;}
.wse5_c00001{word-spacing:3.617888pt;}
.ws5d7_c00001{word-spacing:3.622400pt;}
.ws94_c00001{word-spacing:3.623232pt;}
.ws381_c00001{word-spacing:3.628576pt;}
.ws85a_c00001{word-spacing:3.633920pt;}
.ws763_c00001{word-spacing:3.635200pt;}
.ws93_c00001{word-spacing:3.644608pt;}
.ws9b0_c00001{word-spacing:3.654400pt;}
.wsb27_c00001{word-spacing:3.667200pt;}
.wsc27_c00001{word-spacing:3.712000pt;}
.ws8a6_c00001{word-spacing:3.724800pt;}
.ws614_c00001{word-spacing:3.756800pt;}
.wsb8c_c00001{word-spacing:3.769600pt;}
.ws28d_c00001{word-spacing:3.776000pt;}
.ws18_c00001{word-spacing:3.782400pt;}
.ws9d5_c00001{word-spacing:3.788800pt;}
.wsaa6_c00001{word-spacing:3.795200pt;}
.ws613_c00001{word-spacing:3.801600pt;}
.ws4be_c00001{word-spacing:3.808000pt;}
.ws446_c00001{word-spacing:3.809120pt;}
.ws643_c00001{word-spacing:3.813376pt;}
.ws78f_c00001{word-spacing:3.814400pt;}
.ws545_c00001{word-spacing:3.817632pt;}
.ws8d5_c00001{word-spacing:3.820800pt;}
.ws642_c00001{word-spacing:3.821888pt;}
.ws2f_c00001{word-spacing:3.826144pt;}
.ws185_c00001{word-spacing:3.827200pt;}
.ws67d_c00001{word-spacing:3.830400pt;}
.ws42a_c00001{word-spacing:3.833600pt;}
.ws24_c00001{word-spacing:3.834656pt;}
.ws459_c00001{word-spacing:3.838912pt;}
.ws612_c00001{word-spacing:3.840000pt;}
.wsab6_c00001{word-spacing:3.842336pt;}
.ws35_c00001{word-spacing:3.843168pt;}
.ws571_c00001{word-spacing:3.846400pt;}
.ws28c_c00001{word-spacing:3.852800pt;}
.ws19_c00001{word-spacing:3.859200pt;}
.ws696_c00001{word-spacing:3.860192pt;}
.ws24b_c00001{word-spacing:3.863712pt;}
.ws282_c00001{word-spacing:3.865600pt;}
.ws50e_c00001{word-spacing:3.869056pt;}
.ws4d7_c00001{word-spacing:3.872000pt;}
.ws250_c00001{word-spacing:3.874400pt;}
.ws186_c00001{word-spacing:3.878400pt;}
.ws7c6_c00001{word-spacing:3.879744pt;}
.ws429_c00001{word-spacing:3.884800pt;}
.ws811_c00001{word-spacing:3.890432pt;}
.ws5d8_c00001{word-spacing:3.891200pt;}
.ws73c_c00001{word-spacing:3.895776pt;}
.ws75c_c00001{word-spacing:3.897600pt;}
.ws73b_c00001{word-spacing:3.901120pt;}
.ws4d8_c00001{word-spacing:3.904000pt;}
.ws711_c00001{word-spacing:3.906464pt;}
.ws2c8_c00001{word-spacing:3.910400pt;}
.ws4c8_c00001{word-spacing:3.916800pt;}
.ws710_c00001{word-spacing:3.917152pt;}
.ws765_c00001{word-spacing:3.922496pt;}
.ws355_c00001{word-spacing:3.923200pt;}
.ws2c9_c00001{word-spacing:3.929600pt;}
.ws3ca_c00001{word-spacing:3.933184pt;}
.ws1c4_c00001{word-spacing:3.936000pt;}
.ws523_c00001{word-spacing:3.938528pt;}
.ws5ae_c00001{word-spacing:3.943872pt;}
.ws854_c00001{word-spacing:3.948800pt;}
.ws679_c00001{word-spacing:3.949216pt;}
.ws356_c00001{word-spacing:3.955200pt;}
.ws678_c00001{word-spacing:3.959904pt;}
.ws1c5_c00001{word-spacing:3.961600pt;}
.ws79c_c00001{word-spacing:3.965248pt;}
.ws677_c00001{word-spacing:3.970592pt;}
.ws5af_c00001{word-spacing:3.975936pt;}
.wsc72_c00001{word-spacing:4.012800pt;}
.wsac6_c00001{word-spacing:4.038400pt;}
.wsa39_c00001{word-spacing:4.064000pt;}
.wsc3f_c00001{word-spacing:4.076800pt;}
.wsaa3_c00001{word-spacing:4.083200pt;}
.wsc55_c00001{word-spacing:4.089600pt;}
.ws78e_c00001{word-spacing:4.096000pt;}
.wsc06_c00001{word-spacing:4.102400pt;}
.ws129_c00001{word-spacing:4.108800pt;}
.wsc40_c00001{word-spacing:4.115200pt;}
.ws1b9_c00001{word-spacing:4.121600pt;}
.ws3e4_c00001{word-spacing:4.128000pt;}
.ws54d_c00001{word-spacing:4.132576pt;}
.ws33f_c00001{word-spacing:4.134400pt;}
.ws63f_c00001{word-spacing:4.136832pt;}
.ws97e_c00001{word-spacing:4.140800pt;}
.ws2ce_c00001{word-spacing:4.141088pt;}
.ws536_c00001{word-spacing:4.145344pt;}
.ws360_c00001{word-spacing:4.147200pt;}
.ws447_c00001{word-spacing:4.149600pt;}
.ws866_c00001{word-spacing:4.153600pt;}
.ws535_c00001{word-spacing:4.153856pt;}
.ws2d1_c00001{word-spacing:4.158112pt;}
.ws4d4_c00001{word-spacing:4.160000pt;}
.ws2cf_c00001{word-spacing:4.162368pt;}
.ws1cd_c00001{word-spacing:4.166400pt;}
.ws36b_c00001{word-spacing:4.172800pt;}
.ws797_c00001{word-spacing:4.173664pt;}
.ws1b8_c00001{word-spacing:4.179200pt;}
.ws7d1_c00001{word-spacing:4.184352pt;}
.ws128_c00001{word-spacing:4.185600pt;}
.ws740_c00001{word-spacing:4.189696pt;}
.ws996_c00001{word-spacing:4.192000pt;}
.ws7c7_c00001{word-spacing:4.195040pt;}
.ws6a2_c00001{word-spacing:4.198400pt;}
.ws35f_c00001{word-spacing:4.204800pt;}
.ws796_c00001{word-spacing:4.211072pt;}
.wsf6_c00001{word-spacing:4.211200pt;}
.ws503_c00001{word-spacing:4.216416pt;}
.ws595_c00001{word-spacing:4.217600pt;}
.ws502_c00001{word-spacing:4.221760pt;}
.ws9ca_c00001{word-spacing:4.224000pt;}
.ws7bf_c00001{word-spacing:4.227104pt;}
.ws9b6_c00001{word-spacing:4.230400pt;}
.ws3cc_c00001{word-spacing:4.232448pt;}
.wsf5_c00001{word-spacing:4.236800pt;}
.ws741_c00001{word-spacing:4.237792pt;}
.ws57e_c00001{word-spacing:4.243136pt;}
.wsaa4_c00001{word-spacing:4.243200pt;}
.ws818_c00001{word-spacing:4.248480pt;}
.ws3d1_c00001{word-spacing:4.249600pt;}
.ws9ee_c00001{word-spacing:4.253824pt;}
.ws33e_c00001{word-spacing:4.256000pt;}
.ws702_c00001{word-spacing:4.259168pt;}
.ws3cd_c00001{word-spacing:4.264512pt;}
.wsa22_c00001{word-spacing:4.269856pt;}
.ws4bd_c00001{word-spacing:4.275200pt;}
.ws36c_c00001{word-spacing:4.288000pt;}
.ws857_c00001{word-spacing:4.296576pt;}
.ws8df_c00001{word-spacing:4.300800pt;}
.wsc08_c00001{word-spacing:4.307200pt;}
.wsc05_c00001{word-spacing:4.317824pt;}
.wsc07_c00001{word-spacing:4.345600pt;}
.wsc49_c00001{word-spacing:4.352000pt;}
.ws967_c00001{word-spacing:4.364800pt;}
.ws8d1_c00001{word-spacing:4.390400pt;}
.ws968_c00001{word-spacing:4.396800pt;}
.wsb84_c00001{word-spacing:4.422400pt;}
.wsa97_c00001{word-spacing:4.428800pt;}
.ws3ef_c00001{word-spacing:4.435200pt;}
.wsa12_c00001{word-spacing:4.441600pt;}
.wsae5_c00001{word-spacing:4.448000pt;}
.ws548_c00001{word-spacing:4.451776pt;}
.ws47c_c00001{word-spacing:4.454400pt;}
.ws25_c00001{word-spacing:4.456032pt;}
.ws26_c00001{word-spacing:4.460288pt;}
.ws27e_c00001{word-spacing:4.460800pt;}
.ws5f6_c00001{word-spacing:4.464544pt;}
.ws1b3_c00001{word-spacing:4.467200pt;}
.ws497_c00001{word-spacing:4.468800pt;}
.ws63c_c00001{word-spacing:4.473056pt;}
.ws6b3_c00001{word-spacing:4.473600pt;}
.ws644_c00001{word-spacing:4.477312pt;}
.ws2d0_c00001{word-spacing:4.478976pt;}
.ws278_c00001{word-spacing:4.480000pt;}
.ws77b_c00001{word-spacing:4.486400pt;}
.ws3c2_c00001{word-spacing:4.492800pt;}
.ws39a_c00001{word-spacing:4.494304pt;}
.ws232_c00001{word-spacing:4.499200pt;}
.ws187_c00001{word-spacing:4.505600pt;}
.ws380_c00001{word-spacing:4.510336pt;}
.ws233_c00001{word-spacing:4.512000pt;}
.wsa11_c00001{word-spacing:4.518400pt;}
.ws55e_c00001{word-spacing:4.521024pt;}
.wsb18_c00001{word-spacing:4.524800pt;}
.ws412_c00001{word-spacing:4.531200pt;}
.ws501_c00001{word-spacing:4.531712pt;}
.ws9e7_c00001{word-spacing:4.537056pt;}
.ws1b2_c00001{word-spacing:4.537600pt;}
.ws4e_c00001{word-spacing:4.542400pt;}
.wsb4c_c00001{word-spacing:4.544000pt;}
.ws2da_c00001{word-spacing:4.550400pt;}
.ws72f_c00001{word-spacing:4.553088pt;}
.ws277_c00001{word-spacing:4.556800pt;}
.ws37f_c00001{word-spacing:4.558432pt;}
.ws76a_c00001{word-spacing:4.563776pt;}
.ws7ce_c00001{word-spacing:4.569120pt;}
.wsb15_c00001{word-spacing:4.569600pt;}
.wsa21_c00001{word-spacing:4.574464pt;}
.ws47b_c00001{word-spacing:4.582400pt;}
.ws4d_c00001{word-spacing:4.585152pt;}
.ws772_c00001{word-spacing:4.588800pt;}
.wsb34_c00001{word-spacing:4.595200pt;}
.wsb74_c00001{word-spacing:4.601600pt;}
.wsbf1_c00001{word-spacing:4.640000pt;}
.ws62f_c00001{word-spacing:4.681344pt;}
.wsbf0_c00001{word-spacing:4.684800pt;}
.ws8f1_c00001{word-spacing:4.690112pt;}
.wsa16_c00001{word-spacing:4.729600pt;}
.ws999_c00001{word-spacing:4.736000pt;}
.wsafc_c00001{word-spacing:4.742400pt;}
.ws91b_c00001{word-spacing:4.748800pt;}
.ws174_c00001{word-spacing:4.755200pt;}
.ws331_c00001{word-spacing:4.761600pt;}
.ws2f9_c00001{word-spacing:4.762464pt;}
.ws91d_c00001{word-spacing:4.770976pt;}
.ws6b7_c00001{word-spacing:4.774400pt;}
.ws54b_c00001{word-spacing:4.775232pt;}
.ws49b_c00001{word-spacing:4.779488pt;}
.ws871_c00001{word-spacing:4.780800pt;}
.ws2fa_c00001{word-spacing:4.783744pt;}
.ws23a_c00001{word-spacing:4.787200pt;}
.wsa2a_c00001{word-spacing:4.788000pt;}
.ws458_c00001{word-spacing:4.792256pt;}
.ws14_c00001{word-spacing:4.793600pt;}
.ws4ea_c00001{word-spacing:4.796512pt;}
.ws15_c00001{word-spacing:4.800000pt;}
.ws91c_c00001{word-spacing:4.800768pt;}
.ws332_c00001{word-spacing:4.806400pt;}
.ws3f7_c00001{word-spacing:4.812800pt;}
.ws31c_c00001{word-spacing:4.819200pt;}
.ws367_c00001{word-spacing:4.825600pt;}
.ws79a_c00001{word-spacing:4.825632pt;}
.wsa1_c00001{word-spacing:4.832000pt;}
.ws403_c00001{word-spacing:4.836320pt;}
.ws954_c00001{word-spacing:4.838400pt;}
.ws50b_c00001{word-spacing:4.841664pt;}
.ws239_c00001{word-spacing:4.844800pt;}
.ws926_c00001{word-spacing:4.851200pt;}
.ws62e_c00001{word-spacing:4.852352pt;}
.ws5f3_c00001{word-spacing:4.857600pt;}
.wse4_c00001{word-spacing:4.863040pt;}
.ws65b_c00001{word-spacing:4.864000pt;}
.ws7fb_c00001{word-spacing:4.868384pt;}
.wsace_c00001{word-spacing:4.870400pt;}
.ws49e_c00001{word-spacing:4.876800pt;}
.ws7fa_c00001{word-spacing:4.879072pt;}
.wse3_c00001{word-spacing:4.884416pt;}
.ws2f4_c00001{word-spacing:4.889600pt;}
.ws399_c00001{word-spacing:4.895104pt;}
.ws5d2_c00001{word-spacing:4.900448pt;}
.ws799_c00001{word-spacing:4.905792pt;}
.ws8b3_c00001{word-spacing:4.908800pt;}
.ws398_c00001{word-spacing:4.911136pt;}
.wsa80_c00001{word-spacing:4.915200pt;}
.ws927_c00001{word-spacing:4.921600pt;}
.ws7e8_c00001{word-spacing:4.921824pt;}
.wsa2c_c00001{word-spacing:4.966400pt;}
.wsa9e_c00001{word-spacing:4.972800pt;}
.ws872_c00001{word-spacing:4.979200pt;}
.wsc41_c00001{word-spacing:4.998400pt;}
.ws8be_c00001{word-spacing:5.017600pt;}
.ws36d_c00001{word-spacing:5.043200pt;}
.ws98a_c00001{word-spacing:5.062400pt;}
.wsb9b_c00001{word-spacing:5.068800pt;}
.ws5e7_c00001{word-spacing:5.073152pt;}
.ws618_c00001{word-spacing:5.075200pt;}
.ws657_c00001{word-spacing:5.081600pt;}
.ws5ea_c00001{word-spacing:5.088000pt;}
.wsa60_c00001{word-spacing:5.090176pt;}
.ws476_c00001{word-spacing:5.094400pt;}
.ws20_c00001{word-spacing:5.094432pt;}
.ws43d_c00001{word-spacing:5.098688pt;}
.ws4dd_c00001{word-spacing:5.100800pt;}
.ws1f_c00001{word-spacing:5.102944pt;}
.ws104_c00001{word-spacing:5.107200pt;}
.wsab_c00001{word-spacing:5.111456pt;}
.ws30f_c00001{word-spacing:5.113600pt;}
.ws496_c00001{word-spacing:5.115712pt;}
.ws698_c00001{word-spacing:5.118336pt;}
.ws4b4_c00001{word-spacing:5.119968pt;}
.ws103_c00001{word-spacing:5.120000pt;}
.wsa5f_c00001{word-spacing:5.124224pt;}
.ws221_c00001{word-spacing:5.126400pt;}
.ws697_c00001{word-spacing:5.128480pt;}
.ws55d_c00001{word-spacing:5.130240pt;}
.ws699_c00001{word-spacing:5.132736pt;}
.ws218_c00001{word-spacing:5.132800pt;}
.ws245_c00001{word-spacing:5.139200pt;}
.ws369_c00001{word-spacing:5.145600pt;}
.ws33a_c00001{word-spacing:5.146272pt;}
.ws93a_c00001{word-spacing:5.152000pt;}
.ws339_c00001{word-spacing:5.156960pt;}
.ws5eb_c00001{word-spacing:5.158400pt;}
.ws83a_c00001{word-spacing:5.162304pt;}
.ws30e_c00001{word-spacing:5.164800pt;}
.ws386_c00001{word-spacing:5.167648pt;}
.wsbf4_c00001{word-spacing:5.171200pt;}
.ws251_c00001{word-spacing:5.172992pt;}
.ws65f_c00001{word-spacing:5.177600pt;}
.wsbd_c00001{word-spacing:5.178336pt;}
.ws364_c00001{word-spacing:5.183680pt;}
.ws158_c00001{word-spacing:5.184000pt;}
.ws579_c00001{word-spacing:5.189024pt;}
.wsa77_c00001{word-spacing:5.190400pt;}
.ws9a5_c00001{word-spacing:5.194368pt;}
.wsab9_c00001{word-spacing:5.196800pt;}
.ws252_c00001{word-spacing:5.199712pt;}
.ws910_c00001{word-spacing:5.203200pt;}
.ws365_c00001{word-spacing:5.205056pt;}
.ws159_c00001{word-spacing:5.209600pt;}
.wsbe_c00001{word-spacing:5.215744pt;}
.wsbcd_c00001{word-spacing:5.216000pt;}
.ws387_c00001{word-spacing:5.226432pt;}
.ws5ed_c00001{word-spacing:5.228800pt;}
.ws578_c00001{word-spacing:5.231776pt;}
.ws477_c00001{word-spacing:5.286400pt;}
.wsa8a_c00001{word-spacing:5.305600pt;}
.ws707_c00001{word-spacing:5.324800pt;}
.wsbe6_c00001{word-spacing:5.356800pt;}
.ws957_c00001{word-spacing:5.363200pt;}
.ws943_c00001{word-spacing:5.376000pt;}
.ws852_c00001{word-spacing:5.381408pt;}
.ws5a1_c00001{word-spacing:5.382400pt;}
.ws166_c00001{word-spacing:5.388096pt;}
.wsa66_c00001{word-spacing:5.388800pt;}
.ws2d2_c00001{word-spacing:5.395200pt;}
.ws693_c00001{word-spacing:5.396608pt;}
.ws87d_c00001{word-spacing:5.400864pt;}
.ws2d3_c00001{word-spacing:5.401600pt;}
.ws442_c00001{word-spacing:5.405120pt;}
.ws751_c00001{word-spacing:5.408000pt;}
.ws167_c00001{word-spacing:5.413632pt;}
.ws705_c00001{word-spacing:5.414400pt;}
.ws443_c00001{word-spacing:5.417888pt;}
.ws596_c00001{word-spacing:5.420800pt;}
.ws4ed_c00001{word-spacing:5.422144pt;}
.ws43e_c00001{word-spacing:5.426400pt;}
.ws68f_c00001{word-spacing:5.427200pt;}
.ws4e9_c00001{word-spacing:5.430656pt;}
.ws4ae_c00001{word-spacing:5.433600pt;}
.ws640_c00001{word-spacing:5.434912pt;}
.ws4ee_c00001{word-spacing:5.439168pt;}
.ws4b3_c00001{word-spacing:5.439744pt;}
.ws629_c00001{word-spacing:5.440000pt;}
.ws57d_c00001{word-spacing:5.440192pt;}
.ws4b5_c00001{word-spacing:5.443424pt;}
.ws4af_c00001{word-spacing:5.446400pt;}
.ws165_c00001{word-spacing:5.451936pt;}
.ws318_c00001{word-spacing:5.452800pt;}
.ws3a7_c00001{word-spacing:5.456224pt;}
.ws5c1_c00001{word-spacing:5.459200pt;}
.ws5b6_c00001{word-spacing:5.461568pt;}
.ws280_c00001{word-spacing:5.465600pt;}
.ws896_c00001{word-spacing:5.466912pt;}
.ws2b5_c00001{word-spacing:5.472000pt;}
.ws24c_c00001{word-spacing:5.472256pt;}
.ws9f4_c00001{word-spacing:5.477600pt;}
.ws89a_c00001{word-spacing:5.478400pt;}
.ws395_c00001{word-spacing:5.482944pt;}
.ws2b8_c00001{word-spacing:5.484800pt;}
.wsbca_c00001{word-spacing:5.491200pt;}
.ws7e3_c00001{word-spacing:5.493632pt;}
.ws886_c00001{word-spacing:5.497600pt;}
.wsb9_c00001{word-spacing:5.498976pt;}
.ws2b7_c00001{word-spacing:5.504000pt;}
.wsadc_c00001{word-spacing:5.504320pt;}
.ws5b5_c00001{word-spacing:5.509664pt;}
.ws861_c00001{word-spacing:5.510400pt;}
.wsc4c_c00001{word-spacing:5.511040pt;}
.ws363_c00001{word-spacing:5.515008pt;}
.ws5a0_c00001{word-spacing:5.516800pt;}
.ws57b_c00001{word-spacing:5.520352pt;}
.wsb58_c00001{word-spacing:5.523200pt;}
.wsba_c00001{word-spacing:5.525696pt;}
.ws362_c00001{word-spacing:5.531040pt;}
.ws81c_c00001{word-spacing:5.536384pt;}
.ws5d3_c00001{word-spacing:5.541728pt;}
.ws62a_c00001{word-spacing:5.561600pt;}
.wsc7a_c00001{word-spacing:5.574400pt;}
.ws57c_c00001{word-spacing:5.589824pt;}
.ws5a2_c00001{word-spacing:5.600000pt;}
.ws851_c00001{word-spacing:5.600512pt;}
.wsc4d_c00001{word-spacing:5.619200pt;}
.wsa70_c00001{word-spacing:5.651200pt;}
.wsa73_c00001{word-spacing:5.657600pt;}
.wsc48_c00001{word-spacing:5.670400pt;}
.ws351_c00001{word-spacing:5.676800pt;}
.wsbdc_c00001{word-spacing:5.689600pt;}
.wsabd_c00001{word-spacing:5.696000pt;}
.ws9ec_c00001{word-spacing:5.702400pt;}
.wsabc_c00001{word-spacing:5.708800pt;}
.ws8ef_c00001{word-spacing:5.711552pt;}
.wsa13_c00001{word-spacing:5.715200pt;}
.wsbe4_c00001{word-spacing:5.721600pt;}
.ws5d4_c00001{word-spacing:5.723424pt;}
.ws9e4_c00001{word-spacing:5.728000pt;}
.ws43b_c00001{word-spacing:5.728576pt;}
.ws43c_c00001{word-spacing:5.732832pt;}
.ws602_c00001{word-spacing:5.734400pt;}
.ws13c_c00001{word-spacing:5.737088pt;}
.ws1f7_c00001{word-spacing:5.740800pt;}
.ws472_c00001{word-spacing:5.741344pt;}
.ws46f_c00001{word-spacing:5.745600pt;}
.ws303_c00001{word-spacing:5.747200pt;}
.ws473_c00001{word-spacing:5.749856pt;}
.ws388_c00001{word-spacing:5.750144pt;}
.ws7c3_c00001{word-spacing:5.753600pt;}
.ws470_c00001{word-spacing:5.754112pt;}
.ws94a_c00001{word-spacing:5.757696pt;}
.ws2e4_c00001{word-spacing:5.758368pt;}
.ws3a1_c00001{word-spacing:5.760000pt;}
.ws8ee_c00001{word-spacing:5.762624pt;}
.ws3d4_c00001{word-spacing:5.766400pt;}
.ws5f8_c00001{word-spacing:5.766880pt;}
.ws5c9_c00001{word-spacing:5.771520pt;}
.ws226_c00001{word-spacing:5.772800pt;}
.ws274_c00001{word-spacing:5.779200pt;}
.ws9e8_c00001{word-spacing:5.782208pt;}
.wsef_c00001{word-spacing:5.785600pt;}
.ws44f_c00001{word-spacing:5.792000pt;}
.wsd9_c00001{word-spacing:5.792896pt;}
.ws3a2_c00001{word-spacing:5.798400pt;}
.ws559_c00001{word-spacing:5.803584pt;}
.ws4a9_c00001{word-spacing:5.804800pt;}
.ws76b_c00001{word-spacing:5.808928pt;}
.ws273_c00001{word-spacing:5.811200pt;}
.ws4cc_c00001{word-spacing:5.814272pt;}
.ws3d5_c00001{word-spacing:5.817600pt;}
.ws776_c00001{word-spacing:5.819616pt;}
.ws475_c00001{word-spacing:5.824000pt;}
.wsb5_c00001{word-spacing:5.824960pt;}
.wsfb_c00001{word-spacing:5.830304pt;}
.ws1f6_c00001{word-spacing:5.830400pt;}
.ws304_c00001{word-spacing:5.836800pt;}
.wsb4_c00001{word-spacing:5.840992pt;}
.wsbb6_c00001{word-spacing:5.843200pt;}
.ws700_c00001{word-spacing:5.846336pt;}
.ws8d4_c00001{word-spacing:5.849600pt;}
.wsbf_c00001{word-spacing:5.851680pt;}
.wsbe5_c00001{word-spacing:5.854848pt;}
.wsbb7_c00001{word-spacing:5.856000pt;}
.ws7a_c00001{word-spacing:5.857024pt;}
.ws24d_c00001{word-spacing:5.862368pt;}
.ws358_c00001{word-spacing:5.862400pt;}
.wsc0_c00001{word-spacing:5.867712pt;}
.wsfc_c00001{word-spacing:5.873056pt;}
.ws357_c00001{word-spacing:5.875200pt;}
.ws44e_c00001{word-spacing:5.881600pt;}
.ws24e_c00001{word-spacing:5.883744pt;}
.ws601_c00001{word-spacing:5.907200pt;}
.ws974_c00001{word-spacing:5.909344pt;}
.wsbb8_c00001{word-spacing:5.920000pt;}
.ws493_c00001{word-spacing:5.926400pt;}
.ws975_c00001{word-spacing:5.930176pt;}
.wsa4f_c00001{word-spacing:5.932800pt;}
.ws34e_c00001{word-spacing:5.996800pt;}
.wsc5e_c00001{word-spacing:6.009600pt;}
.ws973_c00001{word-spacing:6.016000pt;}
.wsb52_c00001{word-spacing:6.022400pt;}
.ws96b_c00001{word-spacing:6.028800pt;}
.ws37c_c00001{word-spacing:6.030752pt;}
.wsa0a_c00001{word-spacing:6.035200pt;}
.ws2e5_c00001{word-spacing:6.039264pt;}
.ws88e_c00001{word-spacing:6.041600pt;}
.ws37b_c00001{word-spacing:6.047776pt;}
.ws2fe_c00001{word-spacing:6.048000pt;}
.ws4e8_c00001{word-spacing:6.052032pt;}
.ws192_c00001{word-spacing:6.054400pt;}
.ws37a_c00001{word-spacing:6.056288pt;}
.wsb7e_c00001{word-spacing:6.060800pt;}
.ws482_c00001{word-spacing:6.064800pt;}
.ws58a_c00001{word-spacing:6.067200pt;}
.ws5fa_c00001{word-spacing:6.073312pt;}
.ws195_c00001{word-spacing:6.073600pt;}
.ws2e6_c00001{word-spacing:6.077568pt;}
.ws2e3_c00001{word-spacing:6.079104pt;}
.ws8cc_c00001{word-spacing:6.080000pt;}
.ws2e2_c00001{word-spacing:6.081824pt;}
.ws99d_c00001{word-spacing:6.082560pt;}
.ws494_c00001{word-spacing:6.086400pt;}
.ws7bb_c00001{word-spacing:6.086816pt;}
.ws34d_c00001{word-spacing:6.092800pt;}
.ws284_c00001{word-spacing:6.099200pt;}
.ws7bc_c00001{word-spacing:6.102848pt;}
.ws338_c00001{word-spacing:6.105600pt;}
.ws78_c00001{word-spacing:6.108192pt;}
.ws889_c00001{word-spacing:6.112000pt;}
.ws7ee_c00001{word-spacing:6.118400pt;}
.ws49d_c00001{word-spacing:6.118880pt;}
.ws7b_c00001{word-spacing:6.124224pt;}
.ws495_c00001{word-spacing:6.124800pt;}
.ws832_c00001{word-spacing:6.129568pt;}
.ws941_c00001{word-spacing:6.131200pt;}
.ws895_c00001{word-spacing:6.134912pt;}
.ws2f1_c00001{word-spacing:6.137600pt;}
.ws5c6_c00001{word-spacing:6.140256pt;}
.ws4ab_c00001{word-spacing:6.144000pt;}
.wscc_c00001{word-spacing:6.145600pt;}
.ws8e8_c00001{word-spacing:6.150400pt;}
.ws899_c00001{word-spacing:6.150944pt;}
.ws4cd_c00001{word-spacing:6.156288pt;}
.ws41f_c00001{word-spacing:6.156800pt;}
.wsb6_c00001{word-spacing:6.161632pt;}
.ws2f2_c00001{word-spacing:6.163200pt;}
.ws77_c00001{word-spacing:6.166976pt;}
.ws505_c00001{word-spacing:6.172320pt;}
.ws7c4_c00001{word-spacing:6.176000pt;}
.ws71f_c00001{word-spacing:6.177664pt;}
.ws504_c00001{word-spacing:6.183008pt;}
.ws469_c00001{word-spacing:6.188352pt;}
.ws79_c00001{word-spacing:6.193696pt;}
.ws50d_c00001{word-spacing:6.199040pt;}
.wsc2b_c00001{word-spacing:6.208000pt;}
.ws7b5_c00001{word-spacing:6.209728pt;}
.ws50c_c00001{word-spacing:6.220416pt;}
.ws911_c00001{word-spacing:6.220800pt;}
.ws88d_c00001{word-spacing:6.233600pt;}
.wsb92_c00001{word-spacing:6.240000pt;}
.wsa7f_c00001{word-spacing:6.278400pt;}
.wsaf3_c00001{word-spacing:6.310400pt;}
.wsc5a_c00001{word-spacing:6.323200pt;}
.ws7c5_c00001{word-spacing:6.329600pt;}
.wsb93_c00001{word-spacing:6.342400pt;}
.ws60f_c00001{word-spacing:6.348800pt;}
.ws719_c00001{word-spacing:6.355200pt;}
.ws3b5_c00001{word-spacing:6.361600pt;}
.ws7f5_c00001{word-spacing:6.368000pt;}
.ws691_c00001{word-spacing:6.371232pt;}
.ws120_c00001{word-spacing:6.374400pt;}
.ws54c_c00001{word-spacing:6.375488pt;}
.ws4eb_c00001{word-spacing:6.379744pt;}
.ws550_c00001{word-spacing:6.384000pt;}
.ws269_c00001{word-spacing:6.387200pt;}
.ws690_c00001{word-spacing:6.392512pt;}
.ws65a_c00001{word-spacing:6.393600pt;}
.ws692_c00001{word-spacing:6.396768pt;}
.ws379_c00001{word-spacing:6.397056pt;}
.ws34f_c00001{word-spacing:6.400000pt;}
.ws67c_c00001{word-spacing:6.401024pt;}
.ws418_c00001{word-spacing:6.406400pt;}
.ws1e7_c00001{word-spacing:6.412800pt;}
.ws15a_c00001{word-spacing:6.419200pt;}
.ws299_c00001{word-spacing:6.425600pt;}
.ws419_c00001{word-spacing:6.432000pt;}
.wse8_c00001{word-spacing:6.434176pt;}
.ws5fb_c00001{word-spacing:6.438400pt;}
.ws396_c00001{word-spacing:6.439520pt;}
.ws4c4_c00001{word-spacing:6.444800pt;}
.ws703_c00001{word-spacing:6.444864pt;}
.ws3b9_c00001{word-spacing:6.451200pt;}
.ws350_c00001{word-spacing:6.457600pt;}
.ws397_c00001{word-spacing:6.460896pt;}
.ws40f_c00001{word-spacing:6.464000pt;}
.ws7b6_c00001{word-spacing:6.466240pt;}
.ws268_c00001{word-spacing:6.470400pt;}
.wse7_c00001{word-spacing:6.471584pt;}
.ws4b2_c00001{word-spacing:6.476800pt;}
.ws7b7_c00001{word-spacing:6.476928pt;}
.wsba2_c00001{word-spacing:6.481792pt;}
.ws85c_c00001{word-spacing:6.489600pt;}
.ws60a_c00001{word-spacing:6.492960pt;}
.ws15b_c00001{word-spacing:6.496000pt;}
.ws11f_c00001{word-spacing:6.502400pt;}
.ws879_c00001{word-spacing:6.521600pt;}
.ws60b_c00001{word-spacing:6.525024pt;}
.wsac7_c00001{word-spacing:6.534400pt;}
.wsc4f_c00001{word-spacing:6.540800pt;}
.ws59f_c00001{word-spacing:6.553600pt;}
.ws591_c00001{word-spacing:6.560000pt;}
.ws97b_c00001{word-spacing:6.566400pt;}
.wsc11_c00001{word-spacing:6.585600pt;}
.wsaf0_c00001{word-spacing:6.643200pt;}
.wsb88_c00001{word-spacing:6.649600pt;}
.ws8ac_c00001{word-spacing:6.656000pt;}
.ws66b_c00001{word-spacing:6.662400pt;}
.wsc5_c00001{word-spacing:6.668800pt;}
.ws95d_c00001{word-spacing:6.675200pt;}
.ws2ab_c00001{word-spacing:6.677664pt;}
.ws6af_c00001{word-spacing:6.681600pt;}
.wsa49_c00001{word-spacing:6.681920pt;}
.ws2aa_c00001{word-spacing:6.686176pt;}
.ws3c0_c00001{word-spacing:6.688000pt;}
.ws354_c00001{word-spacing:6.694400pt;}
.ws448_c00001{word-spacing:6.698944pt;}
.wsf0_c00001{word-spacing:6.700800pt;}
.ws3e3_c00001{word-spacing:6.703200pt;}
.ws13_c00001{word-spacing:6.707200pt;}
.wsae_c00001{word-spacing:6.707456pt;}
.wsad_c00001{word-spacing:6.711712pt;}
.wsd_c00001{word-spacing:6.713600pt;}
.ws3e2_c00001{word-spacing:6.715968pt;}
.ws20e_c00001{word-spacing:6.720000pt;}
.ws35b_c00001{word-spacing:6.720224pt;}
.ws310_c00001{word-spacing:6.724480pt;}
.wsaf_c00001{word-spacing:6.726400pt;}
.ws421_c00001{word-spacing:6.732800pt;}
.wsa35_c00001{word-spacing:6.733440pt;}
.ws12_c00001{word-spacing:6.739200pt;}
.ws939_c00001{word-spacing:6.744128pt;}
.ws415_c00001{word-spacing:6.745600pt;}
.ws79d_c00001{word-spacing:6.749472pt;}
.ws217_c00001{word-spacing:6.752000pt;}
.ws819_c00001{word-spacing:6.754816pt;}
.ws20d_c00001{word-spacing:6.758400pt;}
.ws190_c00001{word-spacing:6.764800pt;}
.ws531_c00001{word-spacing:6.765504pt;}
.ws992_c00001{word-spacing:6.770848pt;}
.ws1a_c00001{word-spacing:6.771200pt;}
.ws14c_c00001{word-spacing:6.777600pt;}
.ws9b3_c00001{word-spacing:6.781536pt;}
.ws3c1_c00001{word-spacing:6.784000pt;}
.ws79e_c00001{word-spacing:6.786880pt;}
.ws215_c00001{word-spacing:6.790400pt;}
.ws7ea_c00001{word-spacing:6.792224pt;}
.wsc0e_c00001{word-spacing:6.795264pt;}
.ws216_c00001{word-spacing:6.796800pt;}
.ws78d_c00001{word-spacing:6.797568pt;}
.ws7b9_c00001{word-spacing:6.802912pt;}
.wsc_c00001{word-spacing:6.803200pt;}
.ws60_c00001{word-spacing:6.809600pt;}
.ws8e1_c00001{word-spacing:6.816000pt;}
.ws7ba_c00001{word-spacing:6.818944pt;}
.ws530_c00001{word-spacing:6.824288pt;}
.ws7eb_c00001{word-spacing:6.829632pt;}
.ws588_c00001{word-spacing:6.835200pt;}
.wsb79_c00001{word-spacing:6.841600pt;}
.wsb4f_c00001{word-spacing:6.848000pt;}
.wsb6c_c00001{word-spacing:6.854400pt;}
.ws62_c00001{word-spacing:6.892800pt;}
.ws7da_c00001{word-spacing:6.931200pt;}
.wsc0d_c00001{word-spacing:6.944000pt;}
.ws61_c00001{word-spacing:6.956800pt;}
.ws115_c00001{word-spacing:6.963200pt;}
.ws230_c00001{word-spacing:6.992608pt;}
.ws750_c00001{word-spacing:6.995200pt;}
.ws9a2_c00001{word-spacing:7.001600pt;}
.ws84_c00001{word-spacing:7.008000pt;}
.ws22e_c00001{word-spacing:7.009632pt;}
.ws83_c00001{word-spacing:7.014400pt;}
.ws6ff_c00001{word-spacing:7.020800pt;}
.ws22f_c00001{word-spacing:7.026656pt;}
.ws63_c00001{word-spacing:7.027200pt;}
.ws323_c00001{word-spacing:7.030912pt;}
.ws76c_c00001{word-spacing:7.033600pt;}
.ws22c_c00001{word-spacing:7.036416pt;}
.ws18d_c00001{word-spacing:7.040000pt;}
.ws22b_c00001{word-spacing:7.043680pt;}
.ws114_c00001{word-spacing:7.046400pt;}
.ws3b6_c00001{word-spacing:7.052800pt;}
.ws930_c00001{word-spacing:7.054080pt;}
.ws1a9_c00001{word-spacing:7.059200pt;}
.ws416_c00001{word-spacing:7.065600pt;}
.ws7b8_c00001{word-spacing:7.070112pt;}
.ws64_c00001{word-spacing:7.072000pt;}
.ws4a_c00001{word-spacing:7.075456pt;}
.ws36a_c00001{word-spacing:7.078400pt;}
.wsce_c00001{word-spacing:7.080800pt;}
.ws660_c00001{word-spacing:7.084800pt;}
.wscd_c00001{word-spacing:7.086144pt;}
.wsac8_c00001{word-spacing:7.091200pt;}
.ws9f0_c00001{word-spacing:7.091488pt;}
.ws803_c00001{word-spacing:7.096832pt;}
.ws779_c00001{word-spacing:7.097600pt;}
.ws417_c00001{word-spacing:7.104000pt;}
.wsa0f_c00001{word-spacing:7.107520pt;}
.ws6fe_c00001{word-spacing:7.110400pt;}
.ws7cf_c00001{word-spacing:7.112864pt;}
.wsa09_c00001{word-spacing:7.116800pt;}
.ws652_c00001{word-spacing:7.118208pt;}
.ws5e4_c00001{word-spacing:7.134240pt;}
.ws40b_c00001{word-spacing:7.136000pt;}
.ws7d0_c00001{word-spacing:7.139584pt;}
.wsb48_c00001{word-spacing:7.168000pt;}
.wsba1_c00001{word-spacing:7.180800pt;}
.wsa7a_c00001{word-spacing:7.229664pt;}
.wscf_c00001{word-spacing:7.251808pt;}
.ws40c_c00001{word-spacing:7.270400pt;}
.wsb9a_c00001{word-spacing:7.283200pt;}
.ws113_c00001{word-spacing:7.302400pt;}
.ws6a1_c00001{word-spacing:7.315200pt;}
.ws112_c00001{word-spacing:7.321600pt;}
.ws917_c00001{word-spacing:7.328000pt;}
.ws912_c00001{word-spacing:7.334400pt;}
.wsa45_c00001{word-spacing:7.337344pt;}
.ws5f0_c00001{word-spacing:7.340800pt;}
.wsa46_c00001{word-spacing:7.341600pt;}
.ws84a_c00001{word-spacing:7.345856pt;}
.ws5ef_c00001{word-spacing:7.347200pt;}
.ws229_c00001{word-spacing:7.353600pt;}
.wsb0e_c00001{word-spacing:7.360000pt;}
.ws22d_c00001{word-spacing:7.362880pt;}
.ws5e9_c00001{word-spacing:7.366400pt;}
.ws21f_c00001{word-spacing:7.372800pt;}
.ws6a0_c00001{word-spacing:7.379200pt;}
.ws83d_c00001{word-spacing:7.385408pt;}
.wsa7_c00001{word-spacing:7.385600pt;}
.ws85e_c00001{word-spacing:7.390752pt;}
.ws1e8_c00001{word-spacing:7.392000pt;}
.wseb_c00001{word-spacing:7.396096pt;}
.wsbb5_c00001{word-spacing:7.398400pt;}
.wsb40_c00001{word-spacing:7.404800pt;}
.ws608_c00001{word-spacing:7.406784pt;}
.ws3d9_c00001{word-spacing:7.411200pt;}
.ws5e0_c00001{word-spacing:7.412128pt;}
.ws512_c00001{word-spacing:7.417472pt;}
.ws658_c00001{word-spacing:7.417600pt;}
.ws651_c00001{word-spacing:7.422816pt;}
.ws189_c00001{word-spacing:7.424000pt;}
.wsec_c00001{word-spacing:7.428160pt;}
.ws3d0_c00001{word-spacing:7.436800pt;}
.ws736_c00001{word-spacing:7.438848pt;}
.wsb0d_c00001{word-spacing:7.443200pt;}
.ws7ca_c00001{word-spacing:7.444192pt;}
.ws7c0_c00001{word-spacing:7.449536pt;}
.wsc3e_c00001{word-spacing:7.449600pt;}
.ws7c9_c00001{word-spacing:7.454880pt;}
.wsb16_c00001{word-spacing:7.462400pt;}
.ws931_c00001{word-spacing:7.465568pt;}
.wsc3d_c00001{word-spacing:7.477824pt;}
.ws220_c00001{word-spacing:7.481600pt;}
.wsbe7_c00001{word-spacing:7.488000pt;}
.wsa78_c00001{word-spacing:7.494400pt;}
.wsc45_c00001{word-spacing:7.545600pt;}
.ws916_c00001{word-spacing:7.552000pt;}
.wsb73_c00001{word-spacing:7.596800pt;}
.wsb3e_c00001{word-spacing:7.609600pt;}
.ws3ae_c00001{word-spacing:7.616000pt;}
.ws2ee_c00001{word-spacing:7.622400pt;}
.wsb26_c00001{word-spacing:7.635200pt;}
.ws826_c00001{word-spacing:7.641600pt;}
.wsb3f_c00001{word-spacing:7.648000pt;}
.wsad3_c00001{word-spacing:7.654400pt;}
.wsa8f_c00001{word-spacing:7.660800pt;}
.wsa27_c00001{word-spacing:7.667200pt;}
.ws41a_c00001{word-spacing:7.673600pt;}
.ws8c1_c00001{word-spacing:7.680000pt;}
.wsf1_c00001{word-spacing:7.686400pt;}
.ws16f_c00001{word-spacing:7.692800pt;}
.ws2ed_c00001{word-spacing:7.699200pt;}
.ws14d_c00001{word-spacing:7.705600pt;}
.ws132_c00001{word-spacing:7.706048pt;}
.ws14e_c00001{word-spacing:7.712000pt;}
.ws16e_c00001{word-spacing:7.718400pt;}
.ws590_c00001{word-spacing:7.724800pt;}
.ws836_c00001{word-spacing:7.727424pt;}
.ws41b_c00001{word-spacing:7.731200pt;}
.ws312_c00001{word-spacing:7.732768pt;}
.ws53e_c00001{word-spacing:7.737600pt;}
.ws131_c00001{word-spacing:7.743456pt;}
.ws828_c00001{word-spacing:7.744000pt;}
.ws775_c00001{word-spacing:7.748800pt;}
.ws3af_c00001{word-spacing:7.750400pt;}
.wsad4_c00001{word-spacing:7.756800pt;}
.ws9e9_c00001{word-spacing:7.759488pt;}
.wsb24_c00001{word-spacing:7.769600pt;}
.ws61c_c00001{word-spacing:7.770176pt;}
.ws976_c00001{word-spacing:7.776000pt;}
.ws970_c00001{word-spacing:7.782400pt;}
.wsb72_c00001{word-spacing:7.788800pt;}
.wsb71_c00001{word-spacing:7.795200pt;}
.ws313_c00001{word-spacing:7.802240pt;}
.wsb25_c00001{word-spacing:7.820800pt;}
.wsb81_c00001{word-spacing:7.865600pt;}
.ws9a8_c00001{word-spacing:7.866368pt;}
.wsb82_c00001{word-spacing:7.891200pt;}
.wsb89_c00001{word-spacing:7.904000pt;}
.wsc2c_c00001{word-spacing:7.942400pt;}
.ws5be_c00001{word-spacing:7.948800pt;}
.ws235_c00001{word-spacing:7.955200pt;}
.ws7af_c00001{word-spacing:7.958720pt;}
.wsaf8_c00001{word-spacing:7.961600pt;}
.wsa18_c00001{word-spacing:7.968000pt;}
.ws7ae_c00001{word-spacing:7.971488pt;}
.ws483_c00001{word-spacing:7.975744pt;}
.ws19b_c00001{word-spacing:7.980800pt;}
.ws20c_c00001{word-spacing:7.987200pt;}
.ws20b_c00001{word-spacing:7.993600pt;}
.ws544_c00001{word-spacing:7.997024pt;}
.ws87_c00001{word-spacing:8.000000pt;}
.ws7ac_c00001{word-spacing:8.001280pt;}
.ws270_c00001{word-spacing:8.006400pt;}
.ws665_c00001{word-spacing:8.012800pt;}
.ws368_c00001{word-spacing:8.019200pt;}
.ws5aa_c00001{word-spacing:8.021344pt;}
.ws19a_c00001{word-spacing:8.025600pt;}
.ws321_c00001{word-spacing:8.026688pt;}
.ws9ab_c00001{word-spacing:8.032032pt;}
.wsa1e_c00001{word-spacing:8.038400pt;}
.ws7ad_c00001{word-spacing:8.039584pt;}
.ws12e_c00001{word-spacing:8.042720pt;}
.ws809_c00001{word-spacing:8.044800pt;}
.ws788_c00001{word-spacing:8.048064pt;}
.ws5bc_c00001{word-spacing:8.051200pt;}
.ws88_c00001{word-spacing:8.057600pt;}
.ws55c_c00001{word-spacing:8.058752pt;}
.ws584_c00001{word-spacing:8.064000pt;}
.wsa24_c00001{word-spacing:8.064096pt;}
.ws9a1_c00001{word-spacing:8.069440pt;}
.ws787_c00001{word-spacing:8.074784pt;}
.ws3e5_c00001{word-spacing:8.076800pt;}
.ws9a7_c00001{word-spacing:8.080128pt;}
.ws5bd_c00001{word-spacing:8.083200pt;}
.ws785_c00001{word-spacing:8.085472pt;}
.ws5c5_c00001{word-spacing:8.089600pt;}
.wsa01_c00001{word-spacing:8.096160pt;}
.ws61b_c00001{word-spacing:8.101504pt;}
.wsbae_c00001{word-spacing:8.102400pt;}
.ws786_c00001{word-spacing:8.106848pt;}
.ws500_c00001{word-spacing:8.112192pt;}
.ws4ff_c00001{word-spacing:8.122880pt;}
.wsa23_c00001{word-spacing:8.128224pt;}
.ws583_c00001{word-spacing:8.134400pt;}
.ws9a9_c00001{word-spacing:8.149600pt;}
.ws452_c00001{word-spacing:8.153600pt;}
.wsc31_c00001{word-spacing:8.256000pt;}
.wsb35_c00001{word-spacing:8.262400pt;}
.ws947_c00001{word-spacing:8.268800pt;}
.wsa72_c00001{word-spacing:8.275200pt;}
.wsaa8_c00001{word-spacing:8.288000pt;}
.wsa71_c00001{word-spacing:8.294400pt;}
.ws5f2_c00001{word-spacing:8.300800pt;}
.ws53a_c00001{word-spacing:8.307200pt;}
.ws499_c00001{word-spacing:8.311968pt;}
.ws4f6_c00001{word-spacing:8.313600pt;}
.ws804_c00001{word-spacing:8.315264pt;}
.ws498_c00001{word-spacing:8.316224pt;}
.wsf9_c00001{word-spacing:8.320000pt;}
.ws7b0_c00001{word-spacing:8.320480pt;}
.ws884_c00001{word-spacing:8.326400pt;}
.wsae1_c00001{word-spacing:8.331296pt;}
.wsc6_c00001{word-spacing:8.332800pt;}
.wsf7_c00001{word-spacing:8.339200pt;}
.ws53b_c00001{word-spacing:8.345600pt;}
.ws34c_c00001{word-spacing:8.358400pt;}
.ws795_c00001{word-spacing:8.363360pt;}
.wsa64_c00001{word-spacing:8.364800pt;}
.ws12d_c00001{word-spacing:8.368704pt;}
.ws2b9_c00001{word-spacing:8.371200pt;}
.ws34b_c00001{word-spacing:8.377600pt;}
.wsae2_c00001{word-spacing:8.379392pt;}
.ws2ba_c00001{word-spacing:8.384000pt;}
.wsae6_c00001{word-spacing:8.390400pt;}
.ws2c4_c00001{word-spacing:8.403200pt;}
.ws7e5_c00001{word-spacing:8.411456pt;}
.wsf8_c00001{word-spacing:8.416000pt;}
.wsb23_c00001{word-spacing:8.441600pt;}
.ws8a4_c00001{word-spacing:8.454400pt;}
.wsc83_c00001{word-spacing:8.486400pt;}
.ws90f_c00001{word-spacing:8.510112pt;}
.wsbef_c00001{word-spacing:8.512000pt;}
.ws805_c00001{word-spacing:8.523680pt;}
.wsc30_c00001{word-spacing:8.544000pt;}
.ws489_c00001{word-spacing:8.576000pt;}
.ws2f3_c00001{word-spacing:8.588800pt;}
.wsbe8_c00001{word-spacing:8.595200pt;}
.ws8a7_c00001{word-spacing:8.601600pt;}
.ws821_c00001{word-spacing:8.608000pt;}
.ws744_c00001{word-spacing:8.614400pt;}
.ws8a3_c00001{word-spacing:8.620800pt;}
.ws48a_c00001{word-spacing:8.627200pt;}
.ws2df_c00001{word-spacing:8.633600pt;}
.ws2c5_c00001{word-spacing:8.640000pt;}
.ws1c3_c00001{word-spacing:8.646400pt;}
.ws81f_c00001{word-spacing:8.652800pt;}
.ws1b5_c00001{word-spacing:8.659200pt;}
.ws3fd_c00001{word-spacing:8.662624pt;}
.ws4da_c00001{word-spacing:8.665600pt;}
.ws963_c00001{word-spacing:8.672000pt;}
.ws525_c00001{word-spacing:8.673312pt;}
.ws3f2_c00001{word-spacing:8.678400pt;}
.wsadd_c00001{word-spacing:8.678656pt;}
.ws712_c00001{word-spacing:8.684000pt;}
.wsb5a_c00001{word-spacing:8.684800pt;}
.ws7e4_c00001{word-spacing:8.689344pt;}
.ws1dc_c00001{word-spacing:8.691200pt;}
.ws2c6_c00001{word-spacing:8.697600pt;}
.ws593_c00001{word-spacing:8.700032pt;}
.ws2f5_c00001{word-spacing:8.710400pt;}
.ws3fe_c00001{word-spacing:8.710720pt;}
.wsade_c00001{word-spacing:8.716064pt;}
.wsb13_c00001{word-spacing:8.716800pt;}
.ws522_c00001{word-spacing:8.723200pt;}
.ws1dd_c00001{word-spacing:8.729600pt;}
.wsa7d_c00001{word-spacing:8.736000pt;}
.ws64b_c00001{word-spacing:8.742400pt;}
.wsb10_c00001{word-spacing:8.755200pt;}
.ws84f_c00001{word-spacing:8.758816pt;}
.wsbec_c00001{word-spacing:8.787200pt;}
.ws820_c00001{word-spacing:8.832000pt;}
.ws90e_c00001{word-spacing:8.864000pt;}
.wsb31_c00001{word-spacing:8.883200pt;}
.ws1a1_c00001{word-spacing:8.896000pt;}
.wsc7b_c00001{word-spacing:8.902400pt;}
.ws74f_c00001{word-spacing:8.908800pt;}
.ws615_c00001{word-spacing:8.915200pt;}
.ws759_c00001{word-spacing:8.916320pt;}
.ws600_c00001{word-spacing:8.921600pt;}
.wsb9c_c00001{word-spacing:8.928000pt;}
.ws8bd_c00001{word-spacing:8.934400pt;}
.ws75a_c00001{word-spacing:8.937600pt;}
.ws46d_c00001{word-spacing:8.940800pt;}
.ws374_c00001{word-spacing:8.941856pt;}
.ws573_c00001{word-spacing:8.947200pt;}
.ws88c_c00001{word-spacing:8.953600pt;}
.ws373_c00001{word-spacing:8.958880pt;}
.ws1d4_c00001{word-spacing:8.960000pt;}
.ws1d5_c00001{word-spacing:8.966400pt;}
.ws156_c00001{word-spacing:8.972800pt;}
.ws4d6_c00001{word-spacing:8.979200pt;}
.ws731_c00001{word-spacing:8.983264pt;}
.wsa0_c00001{word-spacing:8.985600pt;}
.ws732_c00001{word-spacing:8.988608pt;}
.ws236_c00001{word-spacing:8.992000pt;}
.ws810_c00001{word-spacing:8.998400pt;}
.ws4a6_c00001{word-spacing:9.004640pt;}
.ws8c3_c00001{word-spacing:9.004800pt;}
.ws9f9_c00001{word-spacing:9.009984pt;}
.wsbc2_c00001{word-spacing:9.011200pt;}
.ws9b2_c00001{word-spacing:9.015328pt;}
.ws430_c00001{word-spacing:9.017600pt;}
.ws9f8_c00001{word-spacing:9.020672pt;}
.ws157_c00001{word-spacing:9.024000pt;}
.ws650_c00001{word-spacing:9.026016pt;}
.ws6b2_c00001{word-spacing:9.030400pt;}
.ws7d3_c00001{word-spacing:9.031360pt;}
.ws64e_c00001{word-spacing:9.036704pt;}
.ws727_c00001{word-spacing:9.036800pt;}
.ws7d2_c00001{word-spacing:9.042048pt;}
.ws1a0_c00001{word-spacing:9.043200pt;}
.ws850_c00001{word-spacing:9.047392pt;}
.ws7d4_c00001{word-spacing:9.052736pt;}
.wsb2b_c00001{word-spacing:9.056000pt;}
.ws64f_c00001{word-spacing:9.058080pt;}
.ws592_c00001{word-spacing:9.063424pt;}
.ws1e3_c00001{word-spacing:9.068800pt;}
.ws9cf_c00001{word-spacing:9.075200pt;}
.wsc7f_c00001{word-spacing:9.094400pt;}
.ws606_c00001{word-spacing:9.158400pt;}
.wsb70_c00001{word-spacing:9.196800pt;}
.wsb87_c00001{word-spacing:9.203200pt;}
.ws4d5_c00001{word-spacing:9.222400pt;}
.wsaa2_c00001{word-spacing:9.228800pt;}
.ws88a_c00001{word-spacing:9.235200pt;}
.ws427_c00001{word-spacing:9.248000pt;}
.ws621_c00001{word-spacing:9.252544pt;}
.ws88b_c00001{word-spacing:9.254400pt;}
.ws622_c00001{word-spacing:9.265312pt;}
.ws950_c00001{word-spacing:9.267200pt;}
.ws70f_c00001{word-spacing:9.273600pt;}
.ws428_c00001{word-spacing:9.280000pt;}
.ws841_c00001{word-spacing:9.286400pt;}
.ws272_c00001{word-spacing:9.292800pt;}
.ws2f0_c00001{word-spacing:9.299200pt;}
.ws3ba_c00001{word-spacing:9.305600pt;}
.ws210_c00001{word-spacing:9.312000pt;}
.ws1a5_c00001{word-spacing:9.318400pt;}
.ws5d5_c00001{word-spacing:9.319936pt;}
.ws89f_c00001{word-spacing:9.324800pt;}
.ws897_c00001{word-spacing:9.325280pt;}
.ws898_c00001{word-spacing:9.330624pt;}
.ws2ef_c00001{word-spacing:9.331200pt;}
.ws98e_c00001{word-spacing:9.335968pt;}
.ws946_c00001{word-spacing:9.337600pt;}
.ws945_c00001{word-spacing:9.344000pt;}
.wsaa1_c00001{word-spacing:9.350400pt;}
.ws9ac_c00001{word-spacing:9.352000pt;}
.wsb6f_c00001{word-spacing:9.356800pt;}
.ws951_c00001{word-spacing:9.363200pt;}
.ws426_c00001{word-spacing:9.369600pt;}
.ws9ad_c00001{word-spacing:9.373376pt;}
.ws7db_c00001{word-spacing:9.376000pt;}
.ws70e_c00001{word-spacing:9.378720pt;}
.ws89e_c00001{word-spacing:9.382400pt;}
.ws98f_c00001{word-spacing:9.384064pt;}
.ws878_c00001{word-spacing:9.395200pt;}
.wsa14_c00001{word-spacing:9.408000pt;}
.ws7dc_c00001{word-spacing:9.459200pt;}
.wsc88_c00001{word-spacing:9.478400pt;}
.wsc79_c00001{word-spacing:9.484800pt;}
.wsc33_c00001{word-spacing:9.504000pt;}
.wsc51_c00001{word-spacing:9.510400pt;}
.ws3df_c00001{word-spacing:9.516800pt;}
.wsc65_c00001{word-spacing:9.523200pt;}
.ws2c7_c00001{word-spacing:9.536000pt;}
.wsa28_c00001{word-spacing:9.548800pt;}
.ws348_c00001{word-spacing:9.561600pt;}
.ws562_c00001{word-spacing:9.574400pt;}
.ws346_c00001{word-spacing:9.580800pt;}
.ws885_c00001{word-spacing:9.587200pt;}
.ws708_c00001{word-spacing:9.593600pt;}
.ws208_c00001{word-spacing:9.600000pt;}
.ws2b6_c00001{word-spacing:9.606400pt;}
.ws38d_c00001{word-spacing:9.612800pt;}
.ws9f1_c00001{word-spacing:9.613856pt;}
.ws207_c00001{word-spacing:9.619200pt;}
.ws57_c00001{word-spacing:9.625600pt;}
.ws326_c00001{word-spacing:9.629888pt;}
.ws3de_c00001{word-spacing:9.632000pt;}
.wsd2_c00001{word-spacing:9.635232pt;}
.ws959_c00001{word-spacing:9.638400pt;}
.ws7d7_c00001{word-spacing:9.640576pt;}
.ws667_c00001{word-spacing:9.644800pt;}
.ws935_c00001{word-spacing:9.645920pt;}
.ws82b_c00001{word-spacing:9.651200pt;}
.ws715_c00001{word-spacing:9.656608pt;}
.ws2ad_c00001{word-spacing:9.657600pt;}
.wsa3d_c00001{word-spacing:9.664000pt;}
.wsc12_c00001{word-spacing:9.667072pt;}
.ws839_c00001{word-spacing:9.672640pt;}
.ws26d_c00001{word-spacing:9.676800pt;}
.wsb45_c00001{word-spacing:9.683200pt;}
.ws325_c00001{word-spacing:9.683328pt;}
.ws50_c00001{word-spacing:9.688672pt;}
.wscb_c00001{word-spacing:9.694016pt;}
.wsc78_c00001{word-spacing:9.696000pt;}
.ws4f_c00001{word-spacing:9.699360pt;}
.ws859_c00001{word-spacing:9.704704pt;}
.ws7d6_c00001{word-spacing:9.715392pt;}
.ws726_c00001{word-spacing:9.726080pt;}
.ws82a_c00001{word-spacing:9.734400pt;}
.ws9f2_c00001{word-spacing:9.747456pt;}
.ws2ac_c00001{word-spacing:9.766400pt;}
.wsb99_c00001{word-spacing:9.817600pt;}
.ws998_c00001{word-spacing:9.824000pt;}
.wsb86_c00001{word-spacing:9.830400pt;}
.ws659_c00001{word-spacing:9.856000pt;}
.ws704_c00001{word-spacing:9.862400pt;}
.ws5a_c00001{word-spacing:9.868800pt;}
.ws194_c00001{word-spacing:9.875200pt;}
.wsb5f_c00001{word-spacing:9.881600pt;}
.wsc2a_c00001{word-spacing:9.888000pt;}
.ws5e6_c00001{word-spacing:9.890944pt;}
.ws5db_c00001{word-spacing:9.894400pt;}
.ws5e5_c00001{word-spacing:9.895200pt;}
.ws75f_c00001{word-spacing:9.900800pt;}
.ws960_c00001{word-spacing:9.907200pt;}
.wsb06_c00001{word-spacing:9.913600pt;}
.ws58b_c00001{word-spacing:9.920000pt;}
.ws243_c00001{word-spacing:9.926400pt;}
.ws58c_c00001{word-spacing:9.932800pt;}
.ws81d_c00001{word-spacing:9.934496pt;}
.ws193_c00001{word-spacing:9.939200pt;}
.ws244_c00001{word-spacing:9.945600pt;}
.ws383_c00001{word-spacing:9.952000pt;}
.ws384_c00001{word-spacing:9.955872pt;}
.ws964_c00001{word-spacing:9.958400pt;}
.ws5b9_c00001{word-spacing:9.961216pt;}
.wsa87_c00001{word-spacing:9.964800pt;}
.ws933_c00001{word-spacing:9.966560pt;}
.ws433_c00001{word-spacing:9.971200pt;}
.ws130_c00001{word-spacing:9.971904pt;}
.ws8f7_c00001{word-spacing:9.977600pt;}
.ws385_c00001{word-spacing:9.982592pt;}
.ws58d_c00001{word-spacing:9.984000pt;}
.ws390_c00001{word-spacing:9.987936pt;}
.ws995_c00001{word-spacing:9.990400pt;}
.ws8_c00001{word-spacing:9.993280pt;}
.ws59_c00001{word-spacing:9.996800pt;}
.ws7e1_c00001{word-spacing:9.998624pt;}
.ws848_c00001{word-spacing:10.003200pt;}
.ws12f_c00001{word-spacing:10.003968pt;}
.ws7e2_c00001{word-spacing:10.009312pt;}
.ws760_c00001{word-spacing:10.009600pt;}
.ws5b7_c00001{word-spacing:10.014656pt;}
.wsc29_c00001{word-spacing:10.016000pt;}
.ws52f_c00001{word-spacing:10.025344pt;}
.ws432_c00001{word-spacing:10.028800pt;}
.ws5b8_c00001{word-spacing:10.036032pt;}
.ws8e7_c00001{word-spacing:10.086400pt;}
.ws8a0_c00001{word-spacing:10.124800pt;}
.wsaa7_c00001{word-spacing:10.156800pt;}
.wsb1b_c00001{word-spacing:10.163200pt;}
.ws761_c00001{word-spacing:10.195200pt;}
.ws84c_c00001{word-spacing:10.197376pt;}
.ws5ba_c00001{word-spacing:10.208000pt;}
.ws84b_c00001{word-spacing:10.214400pt;}
.ws84d_c00001{word-spacing:10.218656pt;}
.ws87f_c00001{word-spacing:10.220800pt;}
.wsc4_c00001{word-spacing:10.227200pt;}
.ws3be_c00001{word-spacing:10.233600pt;}
.ws65_c00001{word-spacing:10.240000pt;}
.wsa32_c00001{word-spacing:10.244448pt;}
.ws238_c00001{word-spacing:10.246400pt;}
.ws237_c00001{word-spacing:10.252800pt;}
.wsa03_c00001{word-spacing:10.255136pt;}
.ws5bb_c00001{word-spacing:10.259200pt;}
.ws3bf_c00001{word-spacing:10.265600pt;}
.ws82f_c00001{word-spacing:10.271168pt;}
.ws42b_c00001{word-spacing:10.272000pt;}
.wsa51_c00001{word-spacing:10.278400pt;}
.ws8c_c00001{word-spacing:10.281856pt;}
.ws66_c00001{word-spacing:10.284800pt;}
.ws87a_c00001{word-spacing:10.291200pt;}
.wsa33_c00001{word-spacing:10.292544pt;}
.ws27f_c00001{word-spacing:10.297600pt;}
.ws928_c00001{word-spacing:10.304000pt;}
.wsbab_c00001{word-spacing:10.304128pt;}
.ws3bd_c00001{word-spacing:10.310400pt;}
.wsa1c_c00001{word-spacing:10.319264pt;}
.wsa02_c00001{word-spacing:10.324608pt;}
.ws8d_c00001{word-spacing:10.340640pt;}
.wsbad_c00001{word-spacing:10.342400pt;}
.ws582_c00001{word-spacing:10.355200pt;}
.wsb47_c00001{word-spacing:10.361600pt;}
.ws934_c00001{word-spacing:10.362016pt;}
.wsa1d_c00001{word-spacing:10.367360pt;}
.wsbac_c00001{word-spacing:10.419200pt;}
.ws92a_c00001{word-spacing:10.432000pt;}
.ws880_c00001{word-spacing:10.457600pt;}
.wsb33_c00001{word-spacing:10.496000pt;}
.ws625_c00001{word-spacing:10.502400pt;}
.ws91f_c00001{word-spacing:10.508800pt;}
.ws65d_c00001{word-spacing:10.515200pt;}
.wsb98_c00001{word-spacing:10.521600pt;}
.ws9ea_c00001{word-spacing:10.528000pt;}
.ws62b_c00001{word-spacing:10.540800pt;}
.ws66a_c00001{word-spacing:10.547200pt;}
.wsab3_c00001{word-spacing:10.553600pt;}
.ws72a_c00001{word-spacing:10.560000pt;}
.ws8a8_c00001{word-spacing:10.566400pt;}
.ws4a5_c00001{word-spacing:10.570432pt;}
.ws1c_c00001{word-spacing:10.572800pt;}
.ws729_c00001{word-spacing:10.579200pt;}
.ws808_c00001{word-spacing:10.585600pt;}
.ws5cf_c00001{word-spacing:10.586464pt;}
.ws2b4_c00001{word-spacing:10.592000pt;}
.ws5d0_c00001{word-spacing:10.597152pt;}
.ws626_c00001{word-spacing:10.598400pt;}
.ws9f5_c00001{word-spacing:10.602496pt;}
.wsb97_c00001{word-spacing:10.604800pt;}
.ws561_c00001{word-spacing:10.611200pt;}
.ws554_c00001{word-spacing:10.613184pt;}
.ws9d7_c00001{word-spacing:10.617600pt;}
.ws69_c00001{word-spacing:10.618528pt;}
.ws553_c00001{word-spacing:10.623872pt;}
.ws308_c00001{word-spacing:10.624000pt;}
.ws5c7_c00001{word-spacing:10.629216pt;}
.ws560_c00001{word-spacing:10.630400pt;}
.ws5c8_c00001{word-spacing:10.634560pt;}
.ws8c2_c00001{word-spacing:10.636800pt;}
.ws9b4_c00001{word-spacing:10.639904pt;}
.ws8db_c00001{word-spacing:10.643200pt;}
.ws5e2_c00001{word-spacing:10.645248pt;}
.ws9f7_c00001{word-spacing:10.650592pt;}
.ws309_c00001{word-spacing:10.656000pt;}
.ws8dc_c00001{word-spacing:10.662400pt;}
.ws5e3_c00001{word-spacing:10.666624pt;}
.ws62c_c00001{word-spacing:10.668800pt;}
.ws95c_c00001{word-spacing:10.675200pt;}
.wsa93_c00001{word-spacing:10.694400pt;}
.wsb8b_c00001{word-spacing:10.739200pt;}
.wsc0b_c00001{word-spacing:10.771200pt;}
.wsb8a_c00001{word-spacing:10.784000pt;}
.wsc0c_c00001{word-spacing:10.790400pt;}
.wsa79_c00001{word-spacing:10.816000pt;}
.ws414_c00001{word-spacing:10.835200pt;}
.wsa69_c00001{word-spacing:10.848000pt;}
.ws915_c00001{word-spacing:10.854400pt;}
.ws4db_c00001{word-spacing:10.860800pt;}
.wsbc9_c00001{word-spacing:10.867200pt;}
.ws534_c00001{word-spacing:10.873600pt;}
.ws8bb_c00001{word-spacing:10.880000pt;}
.ws11a_c00001{word-spacing:10.886400pt;}
.ws42e_c00001{word-spacing:10.892800pt;}
.ws413_c00001{word-spacing:10.899200pt;}
.ws65e_c00001{word-spacing:10.905600pt;}
.ws42c_c00001{word-spacing:10.912000pt;}
.ws9dd_c00001{word-spacing:10.917792pt;}
.ws95e_c00001{word-spacing:10.918400pt;}
.ws752_c00001{word-spacing:10.924800pt;}
.ws4a3_c00001{word-spacing:10.933824pt;}
.ws205_c00001{word-spacing:10.937600pt;}
.ws46a_c00001{word-spacing:10.939168pt;}
.ws713_c00001{word-spacing:10.949856pt;}
.ws27d_c00001{word-spacing:10.950400pt;}
.ws9de_c00001{word-spacing:10.960544pt;}
.ws206_c00001{word-spacing:10.963200pt;}
.ws4a4_c00001{word-spacing:10.965888pt;}
.wsaac_c00001{word-spacing:10.969600pt;}
.ws835_c00001{word-spacing:10.981920pt;}
.ws46b_c00001{word-spacing:10.987264pt;}
.ws753_c00001{word-spacing:10.995200pt;}
.ws672_c00001{word-spacing:11.020800pt;}
.wsb2e_c00001{word-spacing:11.027200pt;}
.wsc26_c00001{word-spacing:11.033600pt;}
.ws938_c00001{word-spacing:11.040000pt;}
.ws9d2_c00001{word-spacing:11.052800pt;}
.ws754_c00001{word-spacing:11.097600pt;}
.ws539_c00001{word-spacing:11.148800pt;}
.ws873_c00001{word-spacing:11.155200pt;}
.wsb85_c00001{word-spacing:11.161600pt;}
.wsdc_c00001{word-spacing:11.168000pt;}
.wsc0f_c00001{word-spacing:11.180800pt;}
.wsdd_c00001{word-spacing:11.187200pt;}
.ws180_c00001{word-spacing:11.193600pt;}
.ws181_c00001{word-spacing:11.200000pt;}
.wsf2_c00001{word-spacing:11.206400pt;}
.ws82e_c00001{word-spacing:11.212800pt;}
.ws5d9_c00001{word-spacing:11.219200pt;}
.ws425_c00001{word-spacing:11.225600pt;}
.ws3f5_c00001{word-spacing:11.232000pt;}
.ws30a_c00001{word-spacing:11.238400pt;}
.ws603_c00001{word-spacing:11.244800pt;}
.ws9aa_c00001{word-spacing:11.249120pt;}
.wsf3_c00001{word-spacing:11.251200pt;}
.ws3f6_c00001{word-spacing:11.264000pt;}
.ws9a_c00001{word-spacing:11.265152pt;}
.ws604_c00001{word-spacing:11.270400pt;}
.ws722_c00001{word-spacing:11.270496pt;}
.ws99_c00001{word-spacing:11.275840pt;}
.ws962_c00001{word-spacing:11.276800pt;}
.ws830_c00001{word-spacing:11.281184pt;}
.ws182_c00001{word-spacing:11.296000pt;}
.ws721_c00001{word-spacing:11.307904pt;}
.ws714_c00001{word-spacing:11.313248pt;}
.wsaaa_c00001{word-spacing:11.340800pt;}
.wsbcb_c00001{word-spacing:11.353600pt;}
.ws77d_c00001{word-spacing:11.411200pt;}
.ws8b1_c00001{word-spacing:11.436800pt;}
.wsbcc_c00001{word-spacing:11.443200pt;}
.ws95b_c00001{word-spacing:11.462400pt;}
.ws906_c00001{word-spacing:11.468800pt;}
.ws90b_c00001{word-spacing:11.481600pt;}
.wsb57_c00001{word-spacing:11.488000pt;}
.ws518_c00001{word-spacing:11.500800pt;}
.ws73f_c00001{word-spacing:11.507200pt;}
.ws152_c00001{word-spacing:11.513600pt;}
.ws151_c00001{word-spacing:11.520000pt;}
.wsb53_c00001{word-spacing:11.526400pt;}
.ws823_c00001{word-spacing:11.532800pt;}
.ws330_c00001{word-spacing:11.539200pt;}
.wsa95_c00001{word-spacing:11.545600pt;}
.ws154_c00001{word-spacing:11.552000pt;}
.ws519_c00001{word-spacing:11.558400pt;}
.ws8b0_c00001{word-spacing:11.564800pt;}
.ws153_c00001{word-spacing:11.571200pt;}
.ws89d_c00001{word-spacing:11.577600pt;}
.ws89c_c00001{word-spacing:11.584000pt;}
.wsb3_c00001{word-spacing:11.585792pt;}
.ws90a_c00001{word-spacing:11.590400pt;}
.wsb80_c00001{word-spacing:11.596800pt;}
.wsb2_c00001{word-spacing:11.601824pt;}
.wsb4d_c00001{word-spacing:11.603200pt;}
.ws735_c00001{word-spacing:11.607168pt;}
.wsbf6_c00001{word-spacing:11.616000pt;}
.ws1be_c00001{word-spacing:11.641600pt;}
.ws59a_c00001{word-spacing:11.660800pt;}
.ws1bd_c00001{word-spacing:11.705600pt;}
.ws914_c00001{word-spacing:11.737600pt;}
.ws69d_c00001{word-spacing:11.756800pt;}
.wsc1b_c00001{word-spacing:11.788800pt;}
.wsb11_c00001{word-spacing:11.795200pt;}
.wsbd3_c00001{word-spacing:11.801600pt;}
.ws76f_c00001{word-spacing:11.820800pt;}
.ws214_c00001{word-spacing:11.827200pt;}
.ws76e_c00001{word-spacing:11.833600pt;}
.wsbd4_c00001{word-spacing:11.840000pt;}
.ws69e_c00001{word-spacing:11.846400pt;}
.ws283_c00001{word-spacing:11.852800pt;}
.wsa94_c00001{word-spacing:11.859200pt;}
.ws738_c00001{word-spacing:11.863680pt;}
.ws2c3_c00001{word-spacing:11.865600pt;}
.ws51e_c00001{word-spacing:11.872000pt;}
.wsa9d_c00001{word-spacing:11.884800pt;}
.ws7fd_c00001{word-spacing:11.891200pt;}
.wsa9c_c00001{word-spacing:11.897600pt;}
.ws8cb_c00001{word-spacing:11.904000pt;}
.ws737_c00001{word-spacing:11.922464pt;}
.ws8ab_c00001{word-spacing:11.929600pt;}
.ws8aa_c00001{word-spacing:11.942400pt;}
.wsbd5_c00001{word-spacing:11.980800pt;}
.wsc2d_c00001{word-spacing:12.057600pt;}
.ws97a_c00001{word-spacing:12.070400pt;}
.ws617_c00001{word-spacing:12.076800pt;}
.ws5f5_c00001{word-spacing:12.102400pt;}
.ws4c0_c00001{word-spacing:12.108800pt;}
.wsbe0_c00001{word-spacing:12.115200pt;}
.ws1b7_c00001{word-spacing:12.121600pt;}
.wsad5_c00001{word-spacing:12.128000pt;}
.ws27a_c00001{word-spacing:12.134400pt;}
.ws96e_c00001{word-spacing:12.140800pt;}
.ws20f_c00001{word-spacing:12.147200pt;}
.ws437_c00001{word-spacing:12.153600pt;}
.ws93d_c00001{word-spacing:12.160000pt;}
.ws4bf_c00001{word-spacing:12.166400pt;}
.ws4aa_c00001{word-spacing:12.172800pt;}
.ws334_c00001{word-spacing:12.179200pt;}
.ws5f4_c00001{word-spacing:12.185600pt;}
.ws894_c00001{word-spacing:12.189664pt;}
.ws279_c00001{word-spacing:12.192000pt;}
.ws903_c00001{word-spacing:12.198400pt;}
.ws597_c00001{word-spacing:12.204800pt;}
.ws892_c00001{word-spacing:12.205696pt;}
.wsa6d_c00001{word-spacing:12.211200pt;}
.ws675_c00001{word-spacing:12.221728pt;}
.ws1b6_c00001{word-spacing:12.224000pt;}
.ws436_c00001{word-spacing:12.230400pt;}
.ws400_c00001{word-spacing:12.232416pt;}
.wsbde_c00001{word-spacing:12.235520pt;}
.ws8a9_c00001{word-spacing:12.236800pt;}
.ws7dd_c00001{word-spacing:12.243200pt;}
.ws676_c00001{word-spacing:12.253792pt;}
.ws893_c00001{word-spacing:12.269824pt;}
.ws77a_c00001{word-spacing:12.275200pt;}
.ws335_c00001{word-spacing:12.281600pt;}
.wsbdf_c00001{word-spacing:12.320000pt;}
.ws526_c00001{word-spacing:12.371200pt;}
.wsbf9_c00001{word-spacing:12.428800pt;}
.wsc01_c00001{word-spacing:12.441600pt;}
.wsaba_c00001{word-spacing:12.448000pt;}
.ws8f0_c00001{word-spacing:12.453056pt;}
.wsbf2_c00001{word-spacing:12.467200pt;}
.ws454_c00001{word-spacing:12.473600pt;}
.ws23b_c00001{word-spacing:12.480000pt;}
.ws3d7_c00001{word-spacing:12.486400pt;}
.ws5fe_c00001{word-spacing:12.499200pt;}
.ws3a4_c00001{word-spacing:12.505600pt;}
.wsabb_c00001{word-spacing:12.512000pt;}
.ws455_c00001{word-spacing:12.518400pt;}
.ws9ae_c00001{word-spacing:12.524800pt;}
.ws4fb_c00001{word-spacing:12.526336pt;}
.ws56d_c00001{word-spacing:12.531200pt;}
.ws5cd_c00001{word-spacing:12.531680pt;}
.ws5cc_c00001{word-spacing:12.542368pt;}
.ws5ff_c00001{word-spacing:12.544000pt;}
.wsb32_c00001{word-spacing:12.550400pt;}
.ws319_c00001{word-spacing:12.553056pt;}
.ws3d8_c00001{word-spacing:12.556800pt;}
.ws838_c00001{word-spacing:12.579776pt;}
.ws5cb_c00001{word-spacing:12.585120pt;}
.wsb39_c00001{word-spacing:12.595200pt;}
.ws23c_c00001{word-spacing:12.614400pt;}
.wsbf3_c00001{word-spacing:12.633600pt;}
.ws633_c00001{word-spacing:12.742400pt;}
.wsbc1_c00001{word-spacing:12.755200pt;}
.wsbe3_c00001{word-spacing:12.780800pt;}
.wsa9a_c00001{word-spacing:12.787200pt;}
.ws52a_c00001{word-spacing:12.793600pt;}
.ws178_c00001{word-spacing:12.806400pt;}
.ws624_c00001{word-spacing:12.812800pt;}
.ws5b_c00001{word-spacing:12.819200pt;}
.wsa0b_c00001{word-spacing:12.820256pt;}
.ws148_c00001{word-spacing:12.825600pt;}
.ws883_c00001{word-spacing:12.832000pt;}
.ws17f_c00001{word-spacing:12.838400pt;}
.ws179_c00001{word-spacing:12.851200pt;}
.ws58f_c00001{word-spacing:12.857600pt;}
.ws125_c00001{word-spacing:12.864000pt;}
.wsb2c_c00001{word-spacing:12.870400pt;}
.ws147_c00001{word-spacing:12.876800pt;}
.ws52b_c00001{word-spacing:12.883200pt;}
.ws58e_c00001{word-spacing:12.902400pt;}
.wsa99_c00001{word-spacing:12.915200pt;}
.ws92c_c00001{word-spacing:12.928000pt;}
.ws610_c00001{word-spacing:12.934400pt;}
.ws623_c00001{word-spacing:12.940800pt;}
.ws92d_c00001{word-spacing:12.947200pt;}
.ws124_c00001{word-spacing:12.960000pt;}
.wsc5c_c00001{word-spacing:13.024000pt;}
.ws95a_c00001{word-spacing:13.081600pt;}
.wsa5e_c00001{word-spacing:13.088000pt;}
.ws40e_c00001{word-spacing:13.094400pt;}
.ws21c_c00001{word-spacing:13.100800pt;}
.ws40d_c00001{word-spacing:13.107200pt;}
.wsc56_c00001{word-spacing:13.113600pt;}
.wsab0_c00001{word-spacing:13.120000pt;}
.ws40a_c00001{word-spacing:13.126400pt;}
.ws7a3_c00001{word-spacing:13.132800pt;}
.ws2d5_c00001{word-spacing:13.139200pt;}
.wsc57_c00001{word-spacing:13.145600pt;}
.ws21d_c00001{word-spacing:13.152000pt;}
.wsb2d_c00001{word-spacing:13.158400pt;}
.ws748_c00001{word-spacing:13.164800pt;}
.ws2d4_c00001{word-spacing:13.171200pt;}
.ws81a_c00001{word-spacing:13.172960pt;}
.ws747_c00001{word-spacing:13.177600pt;}
.ws870_c00001{word-spacing:13.190400pt;}
.ws6b1_c00001{word-spacing:13.196800pt;}
.wsa08_c00001{word-spacing:13.203200pt;}
.wsa15_c00001{word-spacing:13.209600pt;}
.ws3a6_c00001{word-spacing:13.210368pt;}
.ws977_c00001{word-spacing:13.235200pt;}
.ws978_c00001{word-spacing:13.280000pt;}
.wsbf7_c00001{word-spacing:13.356800pt;}
.wsbed_c00001{word-spacing:13.382400pt;}
.wsc0a_c00001{word-spacing:13.388800pt;}
.ws774_c00001{word-spacing:13.408000pt;}
.ws3a5_c00001{word-spacing:13.413440pt;}
.ws56c_c00001{word-spacing:13.414400pt;}
.ws353_c00001{word-spacing:13.420800pt;}
.ws580_c00001{word-spacing:13.427200pt;}
.ws842_c00001{word-spacing:13.433600pt;}
.ws565_c00001{word-spacing:13.440000pt;}
.ws1bc_c00001{word-spacing:13.446400pt;}
.ws431_c00001{word-spacing:13.452800pt;}
.ws3ee_c00001{word-spacing:13.459200pt;}
.ws581_c00001{word-spacing:13.465600pt;}
.ws61a_c00001{word-spacing:13.466880pt;}
.wsa4_c00001{word-spacing:13.472000pt;}
.ws812_c00001{word-spacing:13.472224pt;}
.wsad7_c00001{word-spacing:13.478400pt;}
.ws52e_c00001{word-spacing:13.484800pt;}
.ws3d6_c00001{word-spacing:13.491200pt;}
.wsb12_c00001{word-spacing:13.497600pt;}
.wsb09_c00001{word-spacing:13.504000pt;}
.ws833_c00001{word-spacing:13.504288pt;}
.ws936_c00001{word-spacing:13.509632pt;}
.ws773_c00001{word-spacing:13.516800pt;}
.ws4e2_c00001{word-spacing:13.520320pt;}
.wsacd_c00001{word-spacing:13.523200pt;}
.ws781_c00001{word-spacing:13.536000pt;}
.ws619_c00001{word-spacing:13.536352pt;}
.ws44d_c00001{word-spacing:13.548800pt;}
.ws834_c00001{word-spacing:13.552384pt;}
.ws937_c00001{word-spacing:13.557728pt;}
.ws4e1_c00001{word-spacing:13.563072pt;}
.wsc6b_c00001{word-spacing:13.568000pt;}
.wsc64_c00001{word-spacing:13.619200pt;}
.ws7f1_c00001{word-spacing:13.651200pt;}
.ws9e2_c00001{word-spacing:13.664000pt;}
.wsa3b_c00001{word-spacing:13.683200pt;}
.ws293_c00001{word-spacing:13.708800pt;}
.ws7f0_c00001{word-spacing:13.715200pt;}
.wsc25_c00001{word-spacing:13.721600pt;}
.ws919_c00001{word-spacing:13.728000pt;}
.wsa10_c00001{word-spacing:13.734400pt;}
.ws291_c00001{word-spacing:13.740800pt;}
.wsaa9_c00001{word-spacing:13.747200pt;}
.ws316_c00001{word-spacing:13.753600pt;}
.ws1b_c00001{word-spacing:13.760000pt;}
.ws918_c00001{word-spacing:13.766400pt;}
.ws3d2_c00001{word-spacing:13.772800pt;}
.ws4d1_c00001{word-spacing:13.779200pt;}
.ws685_c00001{word-spacing:13.785600pt;}
.ws4ba_c00001{word-spacing:13.792000pt;}
.ws406_c00001{word-spacing:13.792864pt;}
.ws292_c00001{word-spacing:13.798400pt;}
.ws242_c00001{word-spacing:13.804800pt;}
.ws766_c00001{word-spacing:13.808896pt;}
.ws9e6_c00001{word-spacing:13.811200pt;}
.ws78c_c00001{word-spacing:13.814240pt;}
.ws315_c00001{word-spacing:13.824000pt;}
.ws689_c00001{word-spacing:13.830400pt;}
.ws457_c00001{word-spacing:13.836800pt;}
.wsb41_c00001{word-spacing:13.843200pt;}
.wsa5c_c00001{word-spacing:13.849600pt;}
.wsc23_c00001{word-spacing:13.862400pt;}
.ws3d3_c00001{word-spacing:13.881600pt;}
.wsae4_c00001{word-spacing:13.883712pt;}
.wsa3a_c00001{word-spacing:13.920000pt;}
.wsae3_c00001{word-spacing:13.921120pt;}
.wsae8_c00001{word-spacing:14.022400pt;}
.wsa2e_c00001{word-spacing:14.028800pt;}
.ws366_c00001{word-spacing:14.035200pt;}
.wsa2d_c00001{word-spacing:14.041600pt;}
.wsb62_c00001{word-spacing:14.048000pt;}
.wsb77_c00001{word-spacing:14.060800pt;}
.wsb78_c00001{word-spacing:14.067200pt;}
.ws51a_c00001{word-spacing:14.073600pt;}
.ws198_c00001{word-spacing:14.080000pt;}
.ws1c2_c00001{word-spacing:14.086400pt;}
.ws829_c00001{word-spacing:14.092800pt;}
.ws31e_c00001{word-spacing:14.099200pt;}
.ws96d_c00001{word-spacing:14.105600pt;}
.ws4c2_c00001{word-spacing:14.112000pt;}
.ws8d0_c00001{word-spacing:14.118400pt;}
.ws9d3_c00001{word-spacing:14.124800pt;}
.wsb61_c00001{word-spacing:14.131200pt;}
.ws197_c00001{word-spacing:14.137600pt;}
.ws68b_c00001{word-spacing:14.144000pt;}
.ws1c1_c00001{word-spacing:14.150400pt;}
.ws984_c00001{word-spacing:14.156256pt;}
.ws985_c00001{word-spacing:14.166944pt;}
.wsb76_c00001{word-spacing:14.171968pt;}
.ws479_c00001{word-spacing:14.182400pt;}
.ws7c1_c00001{word-spacing:14.227200pt;}
.ws51b_c00001{word-spacing:14.252800pt;}
.ws7c2_c00001{word-spacing:14.272000pt;}
.wsb6e_c00001{word-spacing:14.342400pt;}
.ws516_c00001{word-spacing:14.348800pt;}
.wsb6d_c00001{word-spacing:14.355200pt;}
.ws7f8_c00001{word-spacing:14.361600pt;}
.wsb43_c00001{word-spacing:14.368000pt;}
.wsbe2_c00001{word-spacing:14.374400pt;}
.wsb03_c00001{word-spacing:14.380800pt;}
.wsf_c00001{word-spacing:14.387200pt;}
.ws12b_c00001{word-spacing:14.393600pt;}
.ws7de_c00001{word-spacing:14.400000pt;}
.ws639_c00001{word-spacing:14.406400pt;}
.ws12a_c00001{word-spacing:14.412800pt;}
.ws9ff_c00001{word-spacing:14.419200pt;}
.ws7f7_c00001{word-spacing:14.425600pt;}
.ws9d6_c00001{word-spacing:14.432000pt;}
.ws888_c00001{word-spacing:14.438400pt;}
.ws638_c00001{word-spacing:14.451200pt;}
.ws234_c00001{word-spacing:14.464000pt;}
.wse_c00001{word-spacing:14.470400pt;}
.wsc14_c00001{word-spacing:14.480384pt;}
.ws3c5_c00001{word-spacing:14.482240pt;}
.ws517_c00001{word-spacing:14.483200pt;}
.ws4d9_c00001{word-spacing:14.502400pt;}
.ws3c6_c00001{word-spacing:14.519648pt;}
.wsc15_c00001{word-spacing:14.547200pt;}
.ws64c_c00001{word-spacing:14.557056pt;}
.ws6b6_c00001{word-spacing:14.560000pt;}
.wsaff_c00001{word-spacing:14.675200pt;}
.ws75e_c00001{word-spacing:14.681600pt;}
.ws6b0_c00001{word-spacing:14.688000pt;}
.ws5e8_c00001{word-spacing:14.694400pt;}
.ws6b8_c00001{word-spacing:14.707200pt;}
.ws3ed_c00001{word-spacing:14.713600pt;}
.ws5c2_c00001{word-spacing:14.720000pt;}
.ws1d3_c00001{word-spacing:14.726400pt;}
.ws2e1_c00001{word-spacing:14.732800pt;}
.ws1d0_c00001{word-spacing:14.739200pt;}
.ws21b_c00001{word-spacing:14.745600pt;}
.ws347_c00001{word-spacing:14.752000pt;}
.ws6b9_c00001{word-spacing:14.758400pt;}
.wsa0e_c00001{word-spacing:14.765472pt;}
.ws5c3_c00001{word-spacing:14.771200pt;}
.ws532_c00001{word-spacing:14.777600pt;}
.ws39f_c00001{word-spacing:14.784000pt;}
.wsb17_c00001{word-spacing:14.790400pt;}
.ws1d1_c00001{word-spacing:14.796800pt;}
.ws9e1_c00001{word-spacing:14.803200pt;}
.ws21a_c00001{word-spacing:14.809600pt;}
.wsa0d_c00001{word-spacing:14.818912pt;}
.ws8fb_c00001{word-spacing:14.944000pt;}
.wsa62_c00001{word-spacing:14.982400pt;}
.ws296_c00001{word-spacing:15.001600pt;}
.wsa74_c00001{word-spacing:15.008000pt;}
.wsae9_c00001{word-spacing:15.020800pt;}
.ws875_c00001{word-spacing:15.027200pt;}
.ws7cc_c00001{word-spacing:15.033600pt;}
.ws26a_c00001{word-spacing:15.040000pt;}
.ws295_c00001{word-spacing:15.046400pt;}
.ws28e_c00001{word-spacing:15.052800pt;}
.ws755_c00001{word-spacing:15.059200pt;}
.ws31a_c00001{word-spacing:15.064736pt;}
.ws874_c00001{word-spacing:15.065600pt;}
.ws756_c00001{word-spacing:15.072000pt;}
.wsb0f_c00001{word-spacing:15.084800pt;}
.ws26b_c00001{word-spacing:15.091200pt;}
.ws716_c00001{word-spacing:15.096800pt;}
.ws68c_c00001{word-spacing:15.104000pt;}
.wsc46_c00001{word-spacing:15.107328pt;}
.ws709_c00001{word-spacing:15.107488pt;}
.ws988_c00001{word-spacing:15.112832pt;}
.wsc28_c00001{word-spacing:15.116800pt;}
.ws717_c00001{word-spacing:15.118176pt;}
.ws70a_c00001{word-spacing:15.123520pt;}
.ws7cb_c00001{word-spacing:15.129600pt;}
.ws989_c00001{word-spacing:15.134208pt;}
.ws56b_c00001{word-spacing:15.219200pt;}
.ws99c_c00001{word-spacing:15.302400pt;}
.wsb4e_c00001{word-spacing:15.315200pt;}
.wsc47_c00001{word-spacing:15.321600pt;}
.ws9c5_c00001{word-spacing:15.340800pt;}
.ws7f3_c00001{word-spacing:15.347200pt;}
.ws44c_c00001{word-spacing:15.353600pt;}
.ws177_c00001{word-spacing:15.366400pt;}
.ws1f3_c00001{word-spacing:15.372800pt;}
.ws246_c00001{word-spacing:15.379200pt;}
.ws8eb_c00001{word-spacing:15.385600pt;}
.wsb21_c00001{word-spacing:15.398400pt;}
.ws9c4_c00001{word-spacing:15.411200pt;}
.ws3ce_c00001{word-spacing:15.417440pt;}
.ws1f2_c00001{word-spacing:15.417600pt;}
.ws3cf_c00001{word-spacing:15.438816pt;}
.ws7f4_c00001{word-spacing:15.456000pt;}
.wsb2a_c00001{word-spacing:15.494400pt;}
.wsa7b_c00001{word-spacing:15.622400pt;}
.wsc20_c00001{word-spacing:15.635200pt;}
.wsb20_c00001{word-spacing:15.641600pt;}
.ws8b4_c00001{word-spacing:15.648000pt;}
.wsc04_c00001{word-spacing:15.660800pt;}
.ws77c_c00001{word-spacing:15.667200pt;}
.ws605_c00001{word-spacing:15.680000pt;}
.ws764_c00001{word-spacing:15.686400pt;}
.wsa5b_c00001{word-spacing:15.692800pt;}
.ws56_c00001{word-spacing:15.699200pt;}
.ws994_c00001{word-spacing:15.705600pt;}
.ws317_c00001{word-spacing:15.712000pt;}
.ws1c0_c00001{word-spacing:15.718400pt;}
.ws32e_c00001{word-spacing:15.724800pt;}
.ws1bf_c00001{word-spacing:15.731200pt;}
.ws257_c00001{word-spacing:15.743424pt;}
.ws815_c00001{word-spacing:15.748768pt;}
.ws971_c00001{word-spacing:15.750400pt;}
.ws258_c00001{word-spacing:15.754112pt;}
.wsba6_c00001{word-spacing:15.756800pt;}
.wsa6f_c00001{word-spacing:15.763200pt;}
.ws8b2_c00001{word-spacing:15.769600pt;}
.wsb7c_c00001{word-spacing:15.776000pt;}
.ws814_c00001{word-spacing:15.791520pt;}
.wsc1f_c00001{word-spacing:15.827200pt;}
.wsa26_c00001{word-spacing:15.904000pt;}
.ws48d_c00001{word-spacing:15.929600pt;}
.wsa25_c00001{word-spacing:15.955200pt;}
.wsc62_c00001{word-spacing:15.987200pt;}
.ws59d_c00001{word-spacing:16.000000pt;}
.ws4d2_c00001{word-spacing:16.006400pt;}
.ws1fa_c00001{word-spacing:16.012800pt;}
.ws8fe_c00001{word-spacing:16.019200pt;}
.ws1fb_c00001{word-spacing:16.025600pt;}
.ws69f_c00001{word-spacing:16.032000pt;}
.wsc21_c00001{word-spacing:16.044800pt;}
.wsc61_c00001{word-spacing:16.051200pt;}
.ws59e_c00001{word-spacing:16.070400pt;}
.wsb37_c00001{word-spacing:16.083200pt;}
.wsb38_c00001{word-spacing:16.089600pt;}
.wsa19_c00001{word-spacing:16.102400pt;}
.ws813_c00001{word-spacing:16.106816pt;}
.wsc22_c00001{word-spacing:16.147200pt;}
.wsafe_c00001{word-spacing:16.288000pt;}
.ws376_c00001{word-spacing:16.296224pt;}
.ws616_c00001{word-spacing:16.307200pt;}
.ws378_c00001{word-spacing:16.313248pt;}
.wsbd8_c00001{word-spacing:16.313600pt;}
.ws9b7_c00001{word-spacing:16.320000pt;}
.ws669_c00001{word-spacing:16.332800pt;}
.ws375_c00001{word-spacing:16.334528pt;}
.ws2b1_c00001{word-spacing:16.339200pt;}
.ws8d6_c00001{word-spacing:16.345600pt;}
.ws2db_c00001{word-spacing:16.352000pt;}
.ws93e_c00001{word-spacing:16.357984pt;}
.ws2d6_c00001{word-spacing:16.358400pt;}
.ws462_c00001{word-spacing:16.364800pt;}
.ws2d7_c00001{word-spacing:16.371200pt;}
.ws377_c00001{word-spacing:16.377088pt;}
.ws461_c00001{word-spacing:16.377600pt;}
.wsad2_c00001{word-spacing:16.390400pt;}
.ws2dc_c00001{word-spacing:16.403200pt;}
.ws93f_c00001{word-spacing:16.406080pt;}
.wsafd_c00001{word-spacing:16.409600pt;}
.ws486_c00001{word-spacing:16.428800pt;}
.wsbd7_c00001{word-spacing:16.556800pt;}
.ws485_c00001{word-spacing:16.576000pt;}
.ws902_c00001{word-spacing:16.588800pt;}
.wsaad_c00001{word-spacing:16.608000pt;}
.wsb9f_c00001{word-spacing:16.614400pt;}
.ws4c3_c00001{word-spacing:16.620800pt;}
.wsaf9_c00001{word-spacing:16.627200pt;}
.ws807_c00001{word-spacing:16.633600pt;}
.ws29a_c00001{word-spacing:16.640000pt;}
.ws3b3_c00001{word-spacing:16.646400pt;}
.ws38a_c00001{word-spacing:16.652800pt;}
.wsaef_c00001{word-spacing:16.659200pt;}
.ws53_c00001{word-spacing:16.662592pt;}
.wsaae_c00001{word-spacing:16.665600pt;}
.wsa76_c00001{word-spacing:16.672000pt;}
.ws487_c00001{word-spacing:16.678400pt;}
.ws849_c00001{word-spacing:16.684800pt;}
.ws986_c00001{word-spacing:16.689312pt;}
.ws3b4_c00001{word-spacing:16.723200pt;}
.wsb9d_c00001{word-spacing:16.740416pt;}
.wsb9e_c00001{word-spacing:16.742400pt;}
.ws920_c00001{word-spacing:16.768000pt;}
.ws8a2_c00001{word-spacing:16.921600pt;}
.wsbc7_c00001{word-spacing:16.928000pt;}
.wsa68_c00001{word-spacing:16.934400pt;}
.ws77f_c00001{word-spacing:16.940800pt;}
.ws979_c00001{word-spacing:16.953600pt;}
.ws108_c00001{word-spacing:16.960000pt;}
.wsb7b_c00001{word-spacing:16.966400pt;}
.ws68a_c00001{word-spacing:16.972800pt;}
.ws109_c00001{word-spacing:16.979200pt;}
.wsab1_c00001{word-spacing:16.985600pt;}
.wsab2_c00001{word-spacing:16.998400pt;}
.ws953_c00001{word-spacing:17.004800pt;}
.wsa67_c00001{word-spacing:17.011200pt;}
.ws77e_c00001{word-spacing:17.017600pt;}
.ws801_c00001{word-spacing:17.020640pt;}
.ws1ac_c00001{word-spacing:17.024000pt;}
.wsb5b_c00001{word-spacing:17.068800pt;}
.wsb5d_c00001{word-spacing:17.088000pt;}
.wsb5c_c00001{word-spacing:17.113600pt;}
.ws952_c00001{word-spacing:17.139200pt;}
.ws8ea_c00001{word-spacing:17.177600pt;}
.wsbc8_c00001{word-spacing:17.216000pt;}
.wsc39_c00001{word-spacing:17.260800pt;}
.ws9cd_c00001{word-spacing:17.267200pt;}
.wsc81_c00001{word-spacing:17.273600pt;}
.ws655_c00001{word-spacing:17.286400pt;}
.ws656_c00001{word-spacing:17.292800pt;}
.ws478_c00001{word-spacing:17.299200pt;}
.wsa7c_c00001{word-spacing:17.305600pt;}
.ws7a1_c00001{word-spacing:17.312000pt;}
.ws661_c00001{word-spacing:17.318400pt;}
.ws320_c00001{word-spacing:17.324800pt;}
.ws9cc_c00001{word-spacing:17.350400pt;}
.ws7f6_c00001{word-spacing:17.376000pt;}
.wsc82_c00001{word-spacing:17.382400pt;}
.wsaa0_c00001{word-spacing:17.440000pt;}
.wsc6f_c00001{word-spacing:17.523200pt;}
.wsa5a_c00001{word-spacing:17.548800pt;}
.ws47d_c00001{word-spacing:17.561600pt;}
.ws47e_c00001{word-spacing:17.574400pt;}
.ws75d_c00001{word-spacing:17.593600pt;}
.ws844_c00001{word-spacing:17.600000pt;}
.wsba3_c00001{word-spacing:17.606400pt;}
.ws653_c00001{word-spacing:17.612800pt;}
.ws3b1_c00001{word-spacing:17.619200pt;}
.ws4c1_c00001{word-spacing:17.625600pt;}
.wsb60_c00001{word-spacing:17.638400pt;}
.ws92f_c00001{word-spacing:17.651200pt;}
.ws863_c00001{word-spacing:17.664000pt;}
.wsc6e_c00001{word-spacing:17.689600pt;}
.ws862_c00001{word-spacing:17.728000pt;}
.ws4bc_c00001{word-spacing:17.875200pt;}
.ws8e4_c00001{word-spacing:17.907200pt;}
.ws19c_c00001{word-spacing:17.913600pt;}
.ws1ab_c00001{word-spacing:17.920000pt;}
.ws4bb_c00001{word-spacing:17.926400pt;}
.ws4b1_c00001{word-spacing:17.932800pt;}
.wsb19_c00001{word-spacing:17.939200pt;}
.ws7e7_c00001{word-spacing:17.945152pt;}
.ws9fc_c00001{word-spacing:17.952000pt;}
.ws93c_c00001{word-spacing:17.958400pt;}
.ws7fc_c00001{word-spacing:17.964800pt;}
.ws7e6_c00001{word-spacing:17.977216pt;}
.wsa43_c00001{word-spacing:17.977600pt;}
.ws219_c00001{word-spacing:17.990400pt;}
.ws93b_c00001{word-spacing:18.003200pt;}
.ws1aa_c00001{word-spacing:18.016000pt;}
.ws7ff_c00001{word-spacing:18.188800pt;}
.ws7fe_c00001{word-spacing:18.208000pt;}
.ws71a_c00001{word-spacing:18.214400pt;}
.ws4e6_c00001{word-spacing:18.227200pt;}
.ws924_c00001{word-spacing:18.233600pt;}
.ws8d3_c00001{word-spacing:18.240000pt;}
.ws887_c00001{word-spacing:18.246400pt;}
.ws71b_c00001{word-spacing:18.265600pt;}
.ws83f_c00001{word-spacing:18.271136pt;}
.wsb5e_c00001{word-spacing:18.284800pt;}
.ws923_c00001{word-spacing:18.291200pt;}
.wsb54_c00001{word-spacing:18.297600pt;}
.wsb55_c00001{word-spacing:18.304000pt;}
.ws83e_c00001{word-spacing:18.324576pt;}
.wsb22_c00001{word-spacing:18.342400pt;}
.wsa89_c00001{word-spacing:18.412800pt;}
.wsbda_c00001{word-spacing:18.483200pt;}
.ws5bf_c00001{word-spacing:18.496000pt;}
.ws82d_c00001{word-spacing:18.534400pt;}
.ws82c_c00001{word-spacing:18.553600pt;}
.ws877_c00001{word-spacing:18.560000pt;}
.ws5c0_c00001{word-spacing:18.566400pt;}
.ws855_c00001{word-spacing:18.572800pt;}
.ws8ae_c00001{word-spacing:18.579200pt;}
.ws8ad_c00001{word-spacing:18.585600pt;}
.ws68d_c00001{word-spacing:18.592000pt;}
.ws909_c00001{word-spacing:18.598400pt;}
.ws869_c00001{word-spacing:18.604800pt;}
.wsbe1_c00001{word-spacing:18.611200pt;}
.ws925_c00001{word-spacing:18.624000pt;}
.ws86a_c00001{word-spacing:18.694400pt;}
.wsc4b_c00001{word-spacing:18.758400pt;}
.wsc66_c00001{word-spacing:18.796800pt;}
.wsaab_c00001{word-spacing:18.816000pt;}
.wsaca_c00001{word-spacing:18.867200pt;}
.wsa63_c00001{word-spacing:18.873600pt;}
.ws706_c00001{word-spacing:18.880000pt;}
.ws4a0_c00001{word-spacing:18.886400pt;}
.ws758_c00001{word-spacing:18.899200pt;}
.ws757_c00001{word-spacing:18.905600pt;}
.wsb1a_c00001{word-spacing:18.918400pt;}
.ws654_c00001{word-spacing:18.924800pt;}
.ws49f_c00001{word-spacing:18.956800pt;}
.ws3ff_c00001{word-spacing:18.976544pt;}
.ws17a_c00001{word-spacing:19.174400pt;}
.ws9bf_c00001{word-spacing:19.187200pt;}
.wsa57_c00001{word-spacing:19.200000pt;}
.ws905_c00001{word-spacing:19.206400pt;}
.ws9c0_c00001{word-spacing:19.212800pt;}
.ws23e_c00001{word-spacing:19.219200pt;}
.ws23d_c00001{word-spacing:19.225600pt;}
.wsb56_c00001{word-spacing:19.251200pt;}
.ws17b_c00001{word-spacing:19.257600pt;}
.ws55a_c00001{word-spacing:19.259776pt;}
.ws9bb_c00001{word-spacing:19.270400pt;}
.wsa41_c00001{word-spacing:19.276800pt;}
.ws9bc_c00001{word-spacing:19.289600pt;}
.wsa40_c00001{word-spacing:19.353600pt;}
.ws846_c00001{word-spacing:19.488000pt;}
.ws300_c00001{word-spacing:19.500800pt;}
.ws746_c00001{word-spacing:19.507200pt;}
.wsb3c_c00001{word-spacing:19.513600pt;}
.wsab5_c00001{word-spacing:19.520000pt;}
.ws14b_c00001{word-spacing:19.526400pt;}
.ws2ff_c00001{word-spacing:19.532800pt;}
.ws1d2_c00001{word-spacing:19.539200pt;}
.ws3b7_c00001{word-spacing:19.545600pt;}
.ws14a_c00001{word-spacing:19.552000pt;}
.ws53f_c00001{word-spacing:19.558400pt;}
.wsb3b_c00001{word-spacing:19.564800pt;}
.ws845_c00001{word-spacing:19.584000pt;}
.ws745_c00001{word-spacing:19.590400pt;}
.wsc38_c00001{word-spacing:19.616000pt;}
.wsafb_c00001{word-spacing:19.673600pt;}
.ws7b3_c00001{word-spacing:19.769600pt;}
.ws1e4_c00001{word-spacing:19.808000pt;}
.ws1e5_c00001{word-spacing:19.833600pt;}
.ws106_c00001{word-spacing:19.840000pt;}
.ws7b2_c00001{word-spacing:19.846400pt;}
.wsada_c00001{word-spacing:19.852800pt;}
.ws31f_c00001{word-spacing:19.859200pt;}
.ws9e5_c00001{word-spacing:19.872000pt;}
.ws4f9_c00001{word-spacing:19.891200pt;}
.ws8c9_c00001{word-spacing:19.916800pt;}
.ws4f8_c00001{word-spacing:19.923200pt;}
.wsab4_c00001{word-spacing:19.942400pt;}
.ws540_c00001{word-spacing:19.961600pt;}
.wsc2e_c00001{word-spacing:20.134400pt;}
.wsc59_c00001{word-spacing:20.140800pt;}
.wsb44_c00001{word-spacing:20.147200pt;}
.ws8de_c00001{word-spacing:20.166400pt;}
.wsa1f_c00001{word-spacing:20.172800pt;}
.ws9a3_c00001{word-spacing:20.179200pt;}
.ws993_c00001{word-spacing:20.185600pt;}
.wsa8e_c00001{word-spacing:20.192000pt;}
.wsc2f_c00001{word-spacing:20.204800pt;}
.wsa20_c00001{word-spacing:20.217600pt;}
.wsa82_c00001{word-spacing:20.422400pt;}
.wsbaa_c00001{word-spacing:20.428800pt;}
.ws71c_c00001{word-spacing:20.460800pt;}
.ws8e0_c00001{word-spacing:20.467200pt;}
.ws881_c00001{word-spacing:20.473600pt;}
.wsa81_c00001{word-spacing:20.480000pt;}
.wsafa_c00001{word-spacing:20.486400pt;}
.wsb08_c00001{word-spacing:20.492800pt;}
.wsabf_c00001{word-spacing:20.499200pt;}
.ws611_c00001{word-spacing:20.505600pt;}
.wsb49_c00001{word-spacing:20.524800pt;}
.ws882_c00001{word-spacing:20.531200pt;}
.wsa83_c00001{word-spacing:20.537600pt;}
.wsa84_c00001{word-spacing:20.563200pt;}
.ws71d_c00001{word-spacing:20.582400pt;}
.wsa85_c00001{word-spacing:20.601600pt;}
.ws8d8_c00001{word-spacing:20.748800pt;}
.ws80b_c00001{word-spacing:20.768000pt;}
.ws824_c00001{word-spacing:20.800000pt;}
.wsac5_c00001{word-spacing:20.806400pt;}
.ws8d7_c00001{word-spacing:20.812800pt;}
.ws80a_c00001{word-spacing:20.819200pt;}
.wsc02_c00001{word-spacing:20.844800pt;}
.wsb1d_c00001{word-spacing:20.864000pt;}
.ws825_c00001{word-spacing:20.883200pt;}
.wsb1c_c00001{word-spacing:20.921600pt;}
.ws86d_c00001{word-spacing:21.049600pt;}
.ws3e7_c00001{word-spacing:21.088000pt;}
.ws302_c00001{word-spacing:21.107200pt;}
.ws7ef_c00001{word-spacing:21.120000pt;}
.ws301_c00001{word-spacing:21.126400pt;}
.ws1ce_c00001{word-spacing:21.132800pt;}
.ws86c_c00001{word-spacing:21.139200pt;}
.wsa8c_c00001{word-spacing:21.152000pt;}
.wsaec_c00001{word-spacing:21.164800pt;}
.ws1cf_c00001{word-spacing:21.184000pt;}
.ws3e6_c00001{word-spacing:21.196800pt;}
.wsa8b_c00001{word-spacing:21.216000pt;}
.ws567_c00001{word-spacing:21.369600pt;}
.ws568_c00001{word-spacing:21.433600pt;}
.ws4ad_c00001{word-spacing:21.446400pt;}
.wsa96_c00001{word-spacing:21.459200pt;}
.ws3b0_c00001{word-spacing:21.465600pt;}
.ws3a9_c00001{word-spacing:21.472192pt;}
.ws423_c00001{word-spacing:21.491200pt;}
.wsb46_c00001{word-spacing:21.497600pt;}
.ws3a8_c00001{word-spacing:21.541664pt;}
.ws122_c00001{word-spacing:21.708800pt;}
.ws42f_c00001{word-spacing:21.740800pt;}
.wsc7e_c00001{word-spacing:21.753600pt;}
.ws81e_c00001{word-spacing:21.760000pt;}
.ws121_c00001{word-spacing:21.779200pt;}
.ws196_c00001{word-spacing:21.785600pt;}
.ws4b8_c00001{word-spacing:21.824000pt;}
.ws4b9_c00001{word-spacing:21.849600pt;}
.ws39e_c00001{word-spacing:22.067200pt;}
.wsba5_c00001{word-spacing:22.073600pt;}
.ws1e1_c00001{word-spacing:22.080000pt;}
.ws5ee_c00001{word-spacing:22.086400pt;}
.ws382_c00001{word-spacing:22.099200pt;}
.wsb07_c00001{word-spacing:22.105600pt;}
.ws1e0_c00001{word-spacing:22.144000pt;}
.wsba4_c00001{word-spacing:22.156800pt;}
.ws537_c00001{word-spacing:22.169600pt;}
.ws538_c00001{word-spacing:22.214400pt;}
.ws564_c00001{word-spacing:22.252800pt;}
.ws80f_c00001{word-spacing:22.342400pt;}
.ws25d_c00001{word-spacing:22.348800pt;}
.ws123_c00001{word-spacing:22.393600pt;}
.ws9c9_c00001{word-spacing:22.400000pt;}
.wsad6_c00001{word-spacing:22.406400pt;}
.ws563_c00001{word-spacing:22.412800pt;}
.ws25e_c00001{word-spacing:22.425600pt;}
.ws336_c00001{word-spacing:22.438400pt;}
.ws8da_c00001{word-spacing:22.444800pt;}
.ws80e_c00001{word-spacing:22.451200pt;}
.ws337_c00001{word-spacing:22.464000pt;}
.ws8d9_c00001{word-spacing:22.470400pt;}
.ws904_c00001{word-spacing:22.476800pt;}
.ws5a5_c00001{word-spacing:22.700800pt;}
.ws58_c00001{word-spacing:22.720000pt;}
.ws434_c00001{word-spacing:22.726400pt;}
.ws5a6_c00001{word-spacing:22.732800pt;}
.wsacf_c00001{word-spacing:22.739200pt;}
.ws1b4_c00001{word-spacing:22.745600pt;}
.wsa98_c00001{word-spacing:22.752000pt;}
.ws3b8_c00001{word-spacing:22.758400pt;}
.wsb2f_c00001{word-spacing:22.796800pt;}
.wsb30_c00001{word-spacing:22.854400pt;}
.ws307_c00001{word-spacing:23.027200pt;}
.ws1d7_c00001{word-spacing:23.046400pt;}
.ws9b8_c00001{word-spacing:23.059200pt;}
.ws306_c00001{word-spacing:23.065600pt;}
.wsc5b_c00001{word-spacing:23.104000pt;}
.ws1d6_c00001{word-spacing:23.123200pt;}
.ws1d8_c00001{word-spacing:23.200000pt;}
.ws956_c00001{word-spacing:23.296000pt;}
.wsc6d_c00001{word-spacing:23.340800pt;}
.ws41c_c00001{word-spacing:23.353600pt;}
.wsb4a_c00001{word-spacing:23.366400pt;}
.ws41d_c00001{word-spacing:23.385600pt;}
.wsc6c_c00001{word-spacing:23.436800pt;}
.ws955_c00001{word-spacing:23.500800pt;}
.ws5a7_c00001{word-spacing:23.654400pt;}
.ws8cd_c00001{word-spacing:23.680000pt;}
.ws770_c00001{word-spacing:23.705600pt;}
.wsaf4_c00001{word-spacing:23.737600pt;}
.wsaf5_c00001{word-spacing:23.814400pt;}
.ws664_c00001{word-spacing:23.980800pt;}
.ws662_c00001{word-spacing:23.993600pt;}
.ws2c1_c00001{word-spacing:24.019200pt;}
.ws942_c00001{word-spacing:24.032000pt;}
.ws2c2_c00001{word-spacing:24.051200pt;}
.ws46e_c00001{word-spacing:24.076800pt;}
.ws86f_c00001{word-spacing:24.307200pt;}
.ws663_c00001{word-spacing:24.320000pt;}
.ws63a_c00001{word-spacing:24.332800pt;}
.ws86e_c00001{word-spacing:24.390400pt;}
.ws867_c00001{word-spacing:24.620800pt;}
.ws410_c00001{word-spacing:24.633600pt;}
.ws1fd_c00001{word-spacing:24.659200pt;}
.ws87b_c00001{word-spacing:24.947200pt;}
.wsb00_c00001{word-spacing:24.972800pt;}
.wsb01_c00001{word-spacing:24.979200pt;}
.ws3c3_c00001{word-spacing:24.985600pt;}
.ws5da_c00001{word-spacing:25.011200pt;}
.ws822_c00001{word-spacing:25.228800pt;}
.ws782_c00001{word-spacing:25.273600pt;}
.ws170_c00001{word-spacing:25.280000pt;}
.ws980_c00001{word-spacing:25.286400pt;}
.wsacc_c00001{word-spacing:25.312000pt;}
.wsa61_c00001{word-spacing:25.337600pt;}
.wsacb_c00001{word-spacing:25.344000pt;}
.ws171_c00001{word-spacing:25.382400pt;}
.ws99a_c00001{word-spacing:25.606400pt;}
.wsae7_c00001{word-spacing:25.619200pt;}
.ws4c6_c00001{word-spacing:25.625600pt;}
.wsb59_c00001{word-spacing:25.638400pt;}
.ws99b_c00001{word-spacing:25.651200pt;}
.ws4c5_c00001{word-spacing:25.696000pt;}
.wsa52_c00001{word-spacing:25.926400pt;}
.ws11b_c00001{word-spacing:25.932800pt;}
.ws11c_c00001{word-spacing:25.939200pt;}
.ws3dc_c00001{word-spacing:26.003200pt;}
.ws949_c00001{word-spacing:26.240000pt;}
.ws61d_c00001{word-spacing:26.246400pt;}
.ws94f_c00001{word-spacing:26.252800pt;}
.ws948_c00001{word-spacing:26.265600pt;}
.ws66e_c00001{word-spacing:26.284800pt;}
.ws61e_c00001{word-spacing:26.291200pt;}
.ws66d_c00001{word-spacing:26.342400pt;}
.ws9cb_c00001{word-spacing:26.553600pt;}
.ws33d_c00001{word-spacing:26.560000pt;}
.ws528_c00001{word-spacing:26.585600pt;}
.wsc43_c00001{word-spacing:26.777600pt;}
.wsc44_c00001{word-spacing:26.835200pt;}
.ws908_c00001{word-spacing:26.867200pt;}
.wsa38_c00001{word-spacing:26.880000pt;}
.wsc67_c00001{word-spacing:26.886400pt;}
.wsc68_c00001{word-spacing:26.912000pt;}
.wsa37_c00001{word-spacing:26.944000pt;}
.ws576_c00001{word-spacing:27.187200pt;}
.ws48c_c00001{word-spacing:27.206400pt;}
.ws48b_c00001{word-spacing:27.212800pt;}
.wsaed_c00001{word-spacing:27.257600pt;}
.ws577_c00001{word-spacing:27.276800pt;}
.wsaee_c00001{word-spacing:27.372800pt;}
.ws868_c00001{word-spacing:27.532800pt;}
.ws913_c00001{word-spacing:27.564800pt;}
.ws8ff_c00001{word-spacing:27.859200pt;}
.wsad0_c00001{word-spacing:28.115200pt;}
.ws28b_c00001{word-spacing:28.134400pt;}
.wsb05_c00001{word-spacing:28.140800pt;}
.wsb04_c00001{word-spacing:28.153600pt;}
.wsad1_c00001{word-spacing:28.185600pt;}
.ws28a_c00001{word-spacing:28.204800pt;}
.ws637_c00001{word-spacing:28.473600pt;}
.wsaeb_c00001{word-spacing:28.582400pt;}
.ws8f4_c00001{word-spacing:28.793600pt;}
.ws8f5_c00001{word-spacing:28.819200pt;}
.ws85f_c00001{word-spacing:28.832000pt;}
.ws3aa_c00001{word-spacing:29.120000pt;}
.wsaaf_c00001{word-spacing:29.158400pt;}
.wsad8_c00001{word-spacing:29.433600pt;}
.wsad9_c00001{word-spacing:29.472000pt;}
.wsc8a_c00001{word-spacing:29.721600pt;}
.ws9ba_c00001{word-spacing:29.760000pt;}
.wsc8c_c00001{word-spacing:29.766400pt;}
.wsa5d_c00001{word-spacing:29.772800pt;}
.wsc8b_c00001{word-spacing:29.779200pt;}
.ws51d_c00001{word-spacing:29.798400pt;}
.wsc8d_c00001{word-spacing:29.824000pt;}
.ws51c_c00001{word-spacing:29.862400pt;}
.wsb36_c00001{word-spacing:30.124800pt;}
.ws53c_c00001{word-spacing:30.393600pt;}
.ws900_c00001{word-spacing:30.752000pt;}
.ws224_c00001{word-spacing:30.995200pt;}
.ws9e0_c00001{word-spacing:31.040000pt;}
.ws223_c00001{word-spacing:31.052800pt;}
.wsb6a_c00001{word-spacing:31.059200pt;}
.wsa2f_c00001{word-spacing:32.006400pt;}
.ws8c7_c00001{word-spacing:32.012800pt;}
.ws8ce_c00001{word-spacing:32.019200pt;}
.ws8c8_c00001{word-spacing:32.038400pt;}
.ws8cf_c00001{word-spacing:32.064000pt;}
.ws8e6_c00001{word-spacing:32.352000pt;}
.ws683_c00001{word-spacing:33.875200pt;}
.ws6ad_c00001{word-spacing:33.920000pt;}
.ws684_c00001{word-spacing:33.926400pt;}
.wsb0c_c00001{word-spacing:33.932800pt;}
.ws6ac_c00001{word-spacing:33.952000pt;}
.wsaf6_c00001{word-spacing:34.848000pt;}
.wsaf7_c00001{word-spacing:34.892800pt;}
.wsb4b_c00001{word-spacing:35.225600pt;}
.ws5c4_c00001{word-spacing:35.846400pt;}
.wsaf2_c00001{word-spacing:36.569600pt;}
.wsaf1_c00001{word-spacing:36.620800pt;}
.ws9b9_c00001{word-spacing:37.132800pt;}
.ws36f_c00001{word-spacing:42.879200pt;}
.ws8e3_c00001{word-spacing:42.886400pt;}
.ws372_c00001{word-spacing:43.147328pt;}
.ws370_c00001{word-spacing:43.168608pt;}
.ws36e_c00001{word-spacing:43.185632pt;}
.ws371_c00001{word-spacing:43.628256pt;}
.ws686_c00001{word-spacing:59.859200pt;}
._9_c00001{margin-left:-21.656096pt;}
._a_c00001{margin-left:-20.519904pt;}
._1c_c00001{margin-left:-17.344000pt;}
._1d_c00001{margin-left:-16.320000pt;}
._14_c00001{margin-left:-12.760960pt;}
._13_c00001{margin-left:-10.983040pt;}
._10_c00001{margin-left:-9.304960pt;}
._11_c00001{margin-left:-7.851520pt;}
._8_c00001{margin-left:-6.666240pt;}
._b_c00001{margin-left:-5.725120pt;}
._4_c00001{margin-left:-4.649280pt;}
._3_c00001{margin-left:-3.580480pt;}
._1_c00001{margin-left:-2.137600pt;}
._0_c00001{margin-left:-1.175680pt;}
._2_c00001{width:1.004800pt;}
._5_c00001{width:2.574880pt;}
._6_c00001{width:3.483712pt;}
._12_c00001{width:4.422976pt;}
._7_c00001{width:6.016640pt;}
._e_c00001{width:7.078784pt;}
._1e_c00001{width:8.122624pt;}
._18_c00001{width:9.159360pt;}
._1b_c00001{width:10.587264pt;}
._20_c00001{width:11.481600pt;}
._1a_c00001{width:12.454400pt;}
._f_c00001{width:13.356800pt;}
._15_c00001{width:14.668800pt;}
._d_c00001{width:16.616960pt;}
._19_c00001{width:17.682112pt;}
._1f_c00001{width:20.254464pt;}
._17_c00001{width:22.054400pt;}
._21_c00001{width:29.670400pt;}
._c_c00001{width:43.875808pt;}
._16_c00001{width:111.438880pt;}
.fs7_c00001{font-size:26.560000pt;}
.fs3_c00001{font-size:34.560000pt;}
.fs4_c00001{font-size:37.440000pt;}
.fs9_c00001{font-size:42.366400pt;}
.fs5_c00001{font-size:42.560000pt;}
.fs2_c00001{font-size:48.000000pt;}
.fsb_c00001{font-size:50.560000pt;}
.fs0_c00001{font-size:53.440000pt;}
.fs1_c00001{font-size:64.000000pt;}
.fsc_c00001{font-size:67.639544pt;}
.fs6_c00001{font-size:69.440000pt;}
.fs8_c00001{font-size:74.560000pt;}
.fsa_c00001{font-size:96.000000pt;}
.y0_c00001{bottom:0.000000pt;}
.y69b_c00001{bottom:0.080400pt;}
.y6ac_c00001{bottom:0.080533pt;}
.y6ae_c00001{bottom:8.800400pt;}
.y6a5_c00001{bottom:9.680400pt;}
.y6b0_c00001{bottom:16.560400pt;}
.y69d_c00001{bottom:23.360400pt;}
.y6b2_c00001{bottom:30.880400pt;}
.y6a7_c00001{bottom:36.160400pt;}
.y6b4_c00001{bottom:40.960400pt;}
.y6b6_c00001{bottom:49.040400pt;}
.y69f_c00001{bottom:50.640400pt;}
.y2_c00001{bottom:51.067067pt;}
.y3a_c00001{bottom:54.587067pt;}
.y6b8_c00001{bottom:68.640400pt;}
.y6a1_c00001{bottom:69.920400pt;}
.y592_c00001{bottom:74.438267pt;}
.y3ad_c00001{bottom:74.465787pt;}
.y35e_c00001{bottom:74.488187pt;}
.y9b2_c00001{bottom:74.603707pt;}
.yac1_c00001{bottom:74.996667pt;}
.y545_c00001{bottom:76.276667pt;}
.y9a4_c00001{bottom:78.275387pt;}
.y905_c00001{bottom:78.426667pt;}
.y6c2_c00001{bottom:78.427067pt;}
.yba_c00001{bottom:78.428667pt;}
.y1d0_c00001{bottom:78.429307pt;}
.y73a_c00001{bottom:78.429947pt;}
.y144_c00001{bottom:78.430427pt;}
.y20e_c00001{bottom:78.431067pt;}
.y332_c00001{bottom:78.432027pt;}
.y12e_c00001{bottom:78.432667pt;}
.y1df_c00001{bottom:78.433307pt;}
.y46d_c00001{bottom:78.433627pt;}
.y97f_c00001{bottom:78.433947pt;}
.y66a_c00001{bottom:78.434267pt;}
.y748_c00001{bottom:78.434827pt;}
.y219_c00001{bottom:78.434907pt;}
.y2de_c00001{bottom:78.435387pt;}
.ydc_c00001{bottom:78.436027pt;}
.y8b9_c00001{bottom:78.436667pt;}
.yb25_c00001{bottom:78.437120pt;}
.y878_c00001{bottom:78.437307pt;}
.ya0b_c00001{bottom:78.437627pt;}
.y326_c00001{bottom:78.438267pt;}
.y65d_c00001{bottom:78.438587pt;}
.y3f1_c00001{bottom:78.439227pt;}
.y4e4_c00001{bottom:78.440187pt;}
.y27e_c00001{bottom:78.440347pt;}
.y101_c00001{bottom:78.440507pt;}
.y8e2_c00001{bottom:78.441947pt;}
.yb1e_c00001{bottom:78.443547pt;}
.ya99_c00001{bottom:78.443867pt;}
.y4d5_c00001{bottom:78.445947pt;}
.y390_c00001{bottom:78.449280pt;}
.y90_c00001{bottom:78.449920pt;}
.y23f_c00001{bottom:78.450907pt;}
.y36c_c00001{bottom:78.451387pt;}
.y561_c00001{bottom:78.457307pt;}
.y68_c00001{bottom:78.457467pt;}
.yafa_c00001{bottom:78.458720pt;}
.y5b0_c00001{bottom:78.461760pt;}
.y627_c00001{bottom:78.471067pt;}
.y3d5_c00001{bottom:78.484347pt;}
.y37_c00001{bottom:78.498720pt;}
.y5de_c00001{bottom:78.508187pt;}
.y4b8_c00001{bottom:78.522587pt;}
.y450_c00001{bottom:78.539840pt;}
.y6ba_c00001{bottom:79.840400pt;}
.yb4f_c00001{bottom:80.347067pt;}
.y6a3_c00001{bottom:85.200400pt;}
.y591_c00001{bottom:86.674267pt;}
.y3ac_c00001{bottom:86.701787pt;}
.y35d_c00001{bottom:86.724187pt;}
.y739_c00001{bottom:90.591467pt;}
.y2f5_c00001{bottom:90.665307pt;}
.y20d_c00001{bottom:90.668667pt;}
.y1de_c00001{bottom:90.669307pt;}
.y646_c00001{bottom:90.669947pt;}
.y4e3_c00001{bottom:90.676187pt;}
.y290_c00001{bottom:90.680507pt;}
.y4d4_c00001{bottom:90.681947pt;}
.y67_c00001{bottom:90.693467pt;}
.y3d4_c00001{bottom:90.720347pt;}
.y36_c00001{bottom:90.734720pt;}
.y44f_c00001{bottom:90.775840pt;}
.y9b1_c00001{bottom:90.840347pt;}
.yac0_c00001{bottom:91.233307pt;}
.y6c1_c00001{bottom:91.947067pt;}
.yb3a_c00001{bottom:92.187067pt;}
.y544_c00001{bottom:92.513307pt;}
.ya53_c00001{bottom:93.872027pt;}
.y9a3_c00001{bottom:94.512027pt;}
.y904_c00001{bottom:94.663307pt;}
.yb9_c00001{bottom:94.665307pt;}
.y1cf_c00001{bottom:94.665947pt;}
.y521_c00001{bottom:94.667067pt;}
.y17e_c00001{bottom:94.668667pt;}
.y12d_c00001{bottom:94.669307pt;}
.y765_c00001{bottom:94.669947pt;}
.y46c_c00001{bottom:94.670267pt;}
.y669_c00001{bottom:94.670907pt;}
.y747_c00001{bottom:94.671467pt;}
.y218_c00001{bottom:94.671547pt;}
.y2c7_c00001{bottom:94.672027pt;}
.ydb_c00001{bottom:94.672667pt;}
.y8b8_c00001{bottom:94.673307pt;}
.yb24_c00001{bottom:94.673760pt;}
.y877_c00001{bottom:94.673947pt;}
.ya02_c00001{bottom:94.674267pt;}
.y325_c00001{bottom:94.674907pt;}
.y65c_c00001{bottom:94.675227pt;}
.y3f0_c00001{bottom:94.675867pt;}
.y27d_c00001{bottom:94.676987pt;}
.y100_c00001{bottom:94.677147pt;}
.y8e1_c00001{bottom:94.678587pt;}
.yb1d_c00001{bottom:94.680187pt;}
.ya98_c00001{bottom:94.680507pt;}
.y38f_c00001{bottom:94.685920pt;}
.y8f_c00001{bottom:94.686560pt;}
.y23e_c00001{bottom:94.687547pt;}
.y36b_c00001{bottom:94.688027pt;}
.y560_c00001{bottom:94.693947pt;}
.yaf9_c00001{bottom:94.695360pt;}
.y5af_c00001{bottom:94.698400pt;}
.y626_c00001{bottom:94.707707pt;}
.y5dd_c00001{bottom:94.744827pt;}
.y4b7_c00001{bottom:94.759227pt;}
.yb49_c00001{bottom:94.987067pt;}
.y3ab_c00001{bottom:99.022907pt;}
.y35c_c00001{bottom:99.045307pt;}
.yc18_c00001{bottom:100.347067pt;}
.yb43_c00001{bottom:102.987067pt;}
.y645_c00001{bottom:102.991067pt;}
.y738_c00001{bottom:102.993787pt;}
.y590_c00001{bottom:102.996027pt;}
.y4e2_c00001{bottom:102.997307pt;}
.y28f_c00001{bottom:103.001627pt;}
.y35_c00001{bottom:103.055840pt;}
.y44e_c00001{bottom:103.096960pt;}
.ybf2_c00001{bottom:104.107067pt;}
.y543_c00001{bottom:104.749307pt;}
.y903_c00001{bottom:106.984427pt;}
.y1ce_c00001{bottom:106.987067pt;}
.y12c_c00001{bottom:106.990427pt;}
.y1dd_c00001{bottom:106.991067pt;}
.y217_c00001{bottom:106.992667pt;}
.yae1_c00001{bottom:106.993787pt;}
.y8b7_c00001{bottom:106.994427pt;}
.y876_c00001{bottom:106.995067pt;}
.y8ec_c00001{bottom:106.996027pt;}
.yff_c00001{bottom:106.998267pt;}
.y1f3_c00001{bottom:107.000667pt;}
.y25c_c00001{bottom:107.001627pt;}
.y4d3_c00001{bottom:107.003707pt;}
.y8e_c00001{bottom:107.007680pt;}
.y66_c00001{bottom:107.015227pt;}
.y3d3_c00001{bottom:107.042107pt;}
.y5dc_c00001{bottom:107.065947pt;}
.y9b0_c00001{bottom:107.076987pt;}
.y4b6_c00001{bottom:107.080347pt;}
.yabf_c00001{bottom:107.469947pt;}
.y520_c00001{bottom:108.187067pt;}
.yc04_c00001{bottom:108.347067pt;}
.ya52_c00001{bottom:110.193787pt;}
.y6c0_c00001{bottom:110.347067pt;}
.y9a2_c00001{bottom:110.833787pt;}
.yb8_c00001{bottom:110.987067pt;}
.y17d_c00001{bottom:110.990427pt;}
.y16d_c00001{bottom:110.991067pt;}
.y158_c00001{bottom:110.992027pt;}
.y608_c00001{bottom:110.992667pt;}
.y746_c00001{bottom:110.993227pt;}
.y143_c00001{bottom:110.993787pt;}
.yda_c00001{bottom:110.994427pt;}
.yb23_c00001{bottom:110.995520pt;}
.y11e_c00001{bottom:110.996027pt;}
.y324_c00001{bottom:110.996667pt;}
.y65b_c00001{bottom:110.996987pt;}
.y3ef_c00001{bottom:110.997627pt;}
.y27c_c00001{bottom:110.998747pt;}
.y651_c00001{bottom:110.998907pt;}
.y8e0_c00001{bottom:111.000347pt;}
.yb1c_c00001{bottom:111.001947pt;}
.ya97_c00001{bottom:111.002267pt;}
.y48b_c00001{bottom:111.002907pt;}
.y38e_c00001{bottom:111.007680pt;}
.y23d_c00001{bottom:111.009307pt;}
.y36a_c00001{bottom:111.009787pt;}
.y55f_c00001{bottom:111.015707pt;}
.yaf8_c00001{bottom:111.017120pt;}
.y5ae_c00001{bottom:111.020160pt;}
.y625_c00001{bottom:111.029467pt;}
.y3aa_c00001{bottom:111.258907pt;}
.y35b_c00001{bottom:111.281307pt;}
.y97e_c00001{bottom:115.229947pt;}
.y644_c00001{bottom:115.231067pt;}
.y4e1_c00001{bottom:115.233307pt;}
.y34_c00001{bottom:115.291840pt;}
.y44d_c00001{bottom:115.332960pt;}
.y542_c00001{bottom:117.070427pt;}
.yc17_c00001{bottom:118.347067pt;}
.y902_c00001{bottom:119.145947pt;}
.y1dc_c00001{bottom:119.230427pt;}
.y875_c00001{bottom:119.231067pt;}
.y58f_c00001{bottom:119.232667pt;}
.yfe_c00001{bottom:119.234267pt;}
.y1f2_c00001{bottom:119.236667pt;}
.y25b_c00001{bottom:119.237627pt;}
.y28e_c00001{bottom:119.238267pt;}
.y8d_c00001{bottom:119.243680pt;}
.y4b5_c00001{bottom:119.316347pt;}
.yabe_c00001{bottom:119.791067pt;}
.yb9a_c00001{bottom:120.347067pt;}
.y1cd_c00001{bottom:120.507067pt;}
.ybf1_c00001{bottom:122.107067pt;}
.yb39_c00001{bottom:122.827067pt;}
.y12b_c00001{bottom:123.227067pt;}
.y419_c00001{bottom:123.228667pt;}
.y16c_c00001{bottom:123.229307pt;}
.yd9_c00001{bottom:123.230427pt;}
.y323_c00001{bottom:123.232667pt;}
.y5b7_c00001{bottom:123.236667pt;}
.y4d2_c00001{bottom:123.240347pt;}
.y55e_c00001{bottom:123.251707pt;}
.y65_c00001{bottom:123.251867pt;}
.y5ad_c00001{bottom:123.256160pt;}
.y624_c00001{bottom:123.265467pt;}
.y3d2_c00001{bottom:123.278747pt;}
.y5db_c00001{bottom:123.302587pt;}
.y9af_c00001{bottom:123.398747pt;}
.y3a9_c00001{bottom:123.494907pt;}
.y35a_c00001{bottom:123.517307pt;}
.ybd2_c00001{bottom:124.347067pt;}
.yb7_c00001{bottom:124.507067pt;}
.yb48_c00001{bottom:125.547067pt;}
.yc03_c00001{bottom:126.347067pt;}
.ya51_c00001{bottom:126.430427pt;}
.y51f_c00001{bottom:126.587067pt;}
.y9a1_c00001{bottom:127.070427pt;}
.y6fc_c00001{bottom:127.227067pt;}
.y157_c00001{bottom:127.228667pt;}
.y17c_c00001{bottom:127.229307pt;}
.y745_c00001{bottom:127.229867pt;}
.y142_c00001{bottom:127.230427pt;}
.y197_c00001{bottom:127.231067pt;}
.yb22_c00001{bottom:127.232160pt;}
.y11d_c00001{bottom:127.232667pt;}
.y65a_c00001{bottom:127.233627pt;}
.y3ee_c00001{bottom:127.234267pt;}
.y27b_c00001{bottom:127.235387pt;}
.y650_c00001{bottom:127.235547pt;}
.y8df_c00001{bottom:127.236987pt;}
.yb1b_c00001{bottom:127.238587pt;}
.ya96_c00001{bottom:127.238907pt;}
.y48a_c00001{bottom:127.239547pt;}
.y38d_c00001{bottom:127.244320pt;}
.y23c_c00001{bottom:127.245947pt;}
.y369_c00001{bottom:127.246427pt;}
.yaf7_c00001{bottom:127.253760pt;}
.y643_c00001{bottom:127.465947pt;}
.y4e0_c00001{bottom:127.469307pt;}
.y33_c00001{bottom:127.527840pt;}
.y44c_c00001{bottom:127.568960pt;}
.yc01_c00001{bottom:128.347067pt;}
.y6bf_c00001{bottom:128.747067pt;}
.ybb4_c00001{bottom:130.027067pt;}
.y901_c00001{bottom:131.465307pt;}
.yfd_c00001{bottom:131.470267pt;}
.y874_c00001{bottom:131.472027pt;}
.y1f1_c00001{bottom:131.472667pt;}
.y25a_c00001{bottom:131.473627pt;}
.y8c_c00001{bottom:131.479680pt;}
.yabd_c00001{bottom:132.037440pt;}
.yb82_c00001{bottom:132.347067pt;}
.y541_c00001{bottom:133.307067pt;}
.yb42_c00001{bottom:133.547067pt;}
.yb63_c00001{bottom:134.267067pt;}
.y16b_c00001{bottom:135.465307pt;}
.y1db_c00001{bottom:135.466427pt;}
.y227_c00001{bottom:135.467067pt;}
.y322_c00001{bottom:135.468667pt;}
.y58e_c00001{bottom:135.469307pt;}
.y737_c00001{bottom:135.472027pt;}
.y28d_c00001{bottom:135.474907pt;}
.y55d_c00001{bottom:135.487707pt;}
.y64_c00001{bottom:135.487867pt;}
.y623_c00001{bottom:135.501467pt;}
.y5da_c00001{bottom:135.538587pt;}
.y4b4_c00001{bottom:135.552987pt;}
.y3a8_c00001{bottom:135.816027pt;}
.y359_c00001{bottom:135.838427pt;}
.yc16_c00001{bottom:136.347067pt;}
.y12a_c00001{bottom:136.747067pt;}
.yb99_c00001{bottom:138.347067pt;}
.y1cc_c00001{bottom:138.907067pt;}
.y196_c00001{bottom:139.465307pt;}
.y216_c00001{bottom:139.465947pt;}
.yd8_c00001{bottom:139.467067pt;}
.y9e2_c00001{bottom:139.468667pt;}
.y76e_c00001{bottom:139.469307pt;}
.y20c_c00001{bottom:139.470267pt;}
.y64f_c00001{bottom:139.471547pt;}
.y5b6_c00001{bottom:139.473307pt;}
.y4d1_c00001{bottom:139.476987pt;}
.y2ab_c00001{bottom:139.477627pt;}
.y38c_c00001{bottom:139.480320pt;}
.y5ac_c00001{bottom:139.492800pt;}
.y3d1_c00001{bottom:139.515387pt;}
.y9ae_c00001{bottom:139.635387pt;}
.y642_c00001{bottom:139.784427pt;}
.y4df_c00001{bottom:139.790427pt;}
.y97d_c00001{bottom:139.795067pt;}
.y32_c00001{bottom:139.848960pt;}
.y44b_c00001{bottom:139.890080pt;}
.ybf0_c00001{bottom:140.107067pt;}
.yc24_c00001{bottom:140.347067pt;}
.y6fb_c00001{bottom:140.747067pt;}
.yb4e_c00001{bottom:141.547067pt;}
.ybc8_c00001{bottom:142.347067pt;}
.ya50_c00001{bottom:142.667067pt;}
.yb6_c00001{bottom:142.907067pt;}
.y9a0_c00001{bottom:143.305307pt;}
.y156_c00001{bottom:143.465307pt;}
.y17b_c00001{bottom:143.465947pt;}
.y744_c00001{bottom:143.466507pt;}
.y141_c00001{bottom:143.467067pt;}
.yb21_c00001{bottom:143.468800pt;}
.y11c_c00001{bottom:143.469307pt;}
.y659_c00001{bottom:143.470267pt;}
.y27a_c00001{bottom:143.472027pt;}
.y8de_c00001{bottom:143.473627pt;}
.yb1a_c00001{bottom:143.475227pt;}
.ya95_c00001{bottom:143.475547pt;}
.y489_c00001{bottom:143.476187pt;}
.y23b_c00001{bottom:143.482587pt;}
.y368_c00001{bottom:143.483067pt;}
.yaf6_c00001{bottom:143.490400pt;}
.y1f0_c00001{bottom:143.793787pt;}
.y8b_c00001{bottom:143.800800pt;}
.yabc_c00001{bottom:144.273440pt;}
.yc2a_c00001{bottom:144.347067pt;}
.y51e_c00001{bottom:144.987067pt;}
.y808_c00001{bottom:144.987200pt;}
.yc00_c00001{bottom:146.347067pt;}
.y540_c00001{bottom:146.827067pt;}
.y1da_c00001{bottom:147.787067pt;}
.yfc_c00001{bottom:147.792027pt;}
.y873_c00001{bottom:147.793787pt;}
.y259_c00001{bottom:147.795387pt;}
.y28c_c00001{bottom:147.796027pt;}
.y55c_c00001{bottom:147.808827pt;}
.y63_c00001{bottom:147.808987pt;}
.y622_c00001{bottom:147.822587pt;}
.y5d9_c00001{bottom:147.859707pt;}
.y4b3_c00001{bottom:147.874107pt;}
.ybb3_c00001{bottom:148.027200pt;}
.y3a7_c00001{bottom:148.052027pt;}
.y358_c00001{bottom:148.074427pt;}
.y226_c00001{bottom:148.987067pt;}
.yb81_c00001{bottom:150.347067pt;}
.y6be_c00001{bottom:151.067200pt;}
.y16a_c00001{bottom:151.787067pt;}
.y321_c00001{bottom:151.790427pt;}
.y58d_c00001{bottom:151.791067pt;}
.y8b6_c00001{bottom:151.793307pt;}
.y3fa_c00001{bottom:151.793787pt;}
.y215_c00001{bottom:151.794427pt;}
.y38b_c00001{bottom:151.801440pt;}
.y641_c00001{bottom:151.945947pt;}
.y97c_c00001{bottom:152.031067pt;}
.y31_c00001{bottom:152.084960pt;}
.y44a_c00001{bottom:152.126080pt;}
.yb62_c00001{bottom:152.267067pt;}
.yd7_c00001{bottom:152.987067pt;}
.yb38_c00001{bottom:153.387067pt;}
.yc15_c00001{bottom:154.347067pt;}
.y84a_c00001{bottom:154.734667pt;}
.y129_c00001{bottom:155.147067pt;}
.y17a_c00001{bottom:155.787067pt;}
.y743_c00001{bottom:155.787627pt;}
.y418_c00001{bottom:155.790427pt;}
.y76d_c00001{bottom:155.791067pt;}
.y20b_c00001{bottom:155.792027pt;}
.y64e_c00001{bottom:155.793307pt;}
.y8fe_c00001{bottom:155.793787pt;}
.y5b5_c00001{bottom:155.795067pt;}
.ya94_c00001{bottom:155.796667pt;}
.y488_c00001{bottom:155.797307pt;}
.y4d0_c00001{bottom:155.798747pt;}
.y2aa_c00001{bottom:155.799387pt;}
.y5ab_c00001{bottom:155.814560pt;}
.y3d0_c00001{bottom:155.837147pt;}
.y9ad_c00001{bottom:155.872027pt;}
.y4de_c00001{bottom:156.027067pt;}
.ya4f_c00001{bottom:156.187067pt;}
.yb98_c00001{bottom:156.347067pt;}
.yad6_c00001{bottom:156.747067pt;}
.y140_c00001{bottom:156.987067pt;}
.y2f4_c00001{bottom:157.307067pt;}
.y1cb_c00001{bottom:157.307200pt;}
.y6fa_c00001{bottom:159.147067pt;}
.y99f_c00001{bottom:159.627067pt;}
.y1a9_c00001{bottom:159.787067pt;}
.y155_c00001{bottom:159.790560pt;}
.y11b_c00001{bottom:159.791067pt;}
.y658_c00001{bottom:159.792027pt;}
.y279_c00001{bottom:159.793787pt;}
.y8dd_c00001{bottom:159.795387pt;}
.yb19_c00001{bottom:159.796987pt;}
.y23a_c00001{bottom:159.804347pt;}
.y367_c00001{bottom:159.804827pt;}
.yaf5_c00001{bottom:159.812160pt;}
.y1ef_c00001{bottom:160.030427pt;}
.y8a_c00001{bottom:160.037440pt;}
.y55b_c00001{bottom:160.044827pt;}
.y62_c00001{bottom:160.044987pt;}
.y621_c00001{bottom:160.058587pt;}
.y5d8_c00001{bottom:160.095707pt;}
.y4b2_c00001{bottom:160.110107pt;}
.y3a6_c00001{bottom:160.288027pt;}
.y357_c00001{bottom:160.310427pt;}
.ybc7_c00001{bottom:160.347067pt;}
.yabb_c00001{bottom:160.510080pt;}
.yb5_c00001{bottom:161.307067pt;}
.y1d9_c00001{bottom:161.307200pt;}
.yc29_c00001{bottom:162.347067pt;}
.y58c_c00001{bottom:164.027067pt;}
.yfb_c00001{bottom:164.028667pt;}
.y872_c00001{bottom:164.030427pt;}
.y258_c00001{bottom:164.032027pt;}
.y28b_c00001{bottom:164.032667pt;}
.yb41_c00001{bottom:164.187067pt;}
.y97b_c00001{bottom:164.269307pt;}
.y640_c00001{bottom:164.270907pt;}
.y30_c00001{bottom:164.320960pt;}
.y449_c00001{bottom:164.362080pt;}
.y53f_c00001{bottom:165.227067pt;}
.y169_c00001{bottom:165.307200pt;}
.y699_c00001{bottom:165.547067pt;}
.y6a9_c00001{bottom:165.551067pt;}
.y8af_c00001{bottom:166.027067pt;}
.y685_c00001{bottom:166.347067pt;}
.y225_c00001{bottom:167.387067pt;}
.y742_c00001{bottom:167.949147pt;}
.y320_c00001{bottom:168.027067pt;}
.y76c_c00001{bottom:168.028667pt;}
.y8b5_c00001{bottom:168.029947pt;}
.y3f9_c00001{bottom:168.030427pt;}
.y214_c00001{bottom:168.031067pt;}
.y487_c00001{bottom:168.033307pt;}
.y38a_c00001{bottom:168.038080pt;}
.yb80_c00001{bottom:168.347067pt;}
.y179_c00001{bottom:169.307200pt;}
.y4dd_c00001{bottom:169.547067pt;}
.y849_c00001{bottom:169.697867pt;}
.yd6_c00001{bottom:171.387067pt;}
.y417_c00001{bottom:172.027067pt;}
.y20a_c00001{bottom:172.028667pt;}
.y64d_c00001{bottom:172.029947pt;}
.y607_c00001{bottom:172.030427pt;}
.y11a_c00001{bottom:172.031067pt;}
.ya93_c00001{bottom:172.033307pt;}
.y4cf_c00001{bottom:172.035387pt;}
.y2a9_c00001{bottom:172.036027pt;}
.y366_c00001{bottom:172.040827pt;}
.y5aa_c00001{bottom:172.051200pt;}
.y3cf_c00001{bottom:172.073787pt;}
.yb4d_c00001{bottom:172.187067pt;}
.y9ac_c00001{bottom:172.193787pt;}
.y89_c00001{bottom:172.273440pt;}
.y55a_c00001{bottom:172.280827pt;}
.y620_c00001{bottom:172.294587pt;}
.y5d7_c00001{bottom:172.331707pt;}
.y4b1_c00001{bottom:172.346107pt;}
.yc14_c00001{bottom:172.347067pt;}
.y69a_c00001{bottom:172.506667pt;}
.y897_c00001{bottom:172.507067pt;}
.y3a5_c00001{bottom:172.609147pt;}
.y356_c00001{bottom:172.631547pt;}
.yaba_c00001{bottom:172.831200pt;}
.y6ab_c00001{bottom:172.986667pt;}
.y6bc_c00001{bottom:173.067200pt;}
.y6bd_c00001{bottom:173.071067pt;}
.y6aa_c00001{bottom:173.075067pt;}
.y99e_c00001{bottom:173.147067pt;}
.y1a8_c00001{bottom:173.307200pt;}
.yada_c00001{bottom:173.547067pt;}
.y128_c00001{bottom:173.547200pt;}
.y687_c00001{bottom:173.867067pt;}
.y686_c00001{bottom:173.871067pt;}
.ybef_c00001{bottom:174.107067pt;}
.yc23_c00001{bottom:174.347067pt;}
.ya4e_c00001{bottom:174.587067pt;}
.y13f_c00001{bottom:175.387067pt;}
.y154_c00001{bottom:176.027200pt;}
.y657_c00001{bottom:176.028667pt;}
.y278_c00001{bottom:176.030427pt;}
.y8dc_c00001{bottom:176.032027pt;}
.yb18_c00001{bottom:176.033627pt;}
.y239_c00001{bottom:176.040987pt;}
.yaf4_c00001{bottom:176.048800pt;}
.y8c4_c00001{bottom:176.068987pt;}
.y1ee_c00001{bottom:176.267067pt;}
.y61_c00001{bottom:176.281627pt;}
.ybd1_c00001{bottom:176.347067pt;}
.y97a_c00001{bottom:176.590427pt;}
.y2f_c00001{bottom:176.642080pt;}
.y448_c00001{bottom:176.683200pt;}
.y51d_c00001{bottom:176.807387pt;}
.y58b_c00001{bottom:177.547067pt;}
.ybc6_c00001{bottom:178.347067pt;}
.y6ad_c00001{bottom:179.067200pt;}
.y8d5_c00001{bottom:179.547067pt;}
.y1d8_c00001{bottom:179.707200pt;}
.yb51_c00001{bottom:180.187067pt;}
.yfa_c00001{bottom:180.265307pt;}
.y8b4_c00001{bottom:180.265947pt;}
.y213_c00001{bottom:180.267067pt;}
.y257_c00001{bottom:180.268667pt;}
.y28a_c00001{bottom:180.269307pt;}
.y741_c00001{bottom:180.270267pt;}
.y389_c00001{bottom:180.274080pt;}
.ybff_c00001{bottom:180.347067pt;}
.y63f_c00001{bottom:180.592667pt;}
.y69c_c00001{bottom:180.747067pt;}
.y31f_c00001{bottom:181.547067pt;}
.ybb2_c00001{bottom:182.027200pt;}
.yae2_c00001{bottom:182.827067pt;}
.y53e_c00001{bottom:183.627067pt;}
.y168_c00001{bottom:183.707200pt;}
.yb37_c00001{bottom:184.027067pt;}
.y3f8_c00001{bottom:184.265307pt;}
.y119_c00001{bottom:184.265947pt;}
.y736_c00001{bottom:184.267067pt;}
.ya92_c00001{bottom:184.269307pt;}
.y365_c00001{bottom:184.276827pt;}
.y5a9_c00001{bottom:184.287200pt;}
.y88_c00001{bottom:184.594560pt;}
.y559_c00001{bottom:184.601947pt;}
.y61f_c00001{bottom:184.615707pt;}
.y5d6_c00001{bottom:184.652827pt;}
.y4b0_c00001{bottom:184.667227pt;}
.y3a4_c00001{bottom:184.845147pt;}
.y355_c00001{bottom:184.867547pt;}
.yab9_c00001{bottom:185.067200pt;}
.y799_c00001{bottom:185.512347pt;}
.y416_c00001{bottom:185.547067pt;}
.y224_c00001{bottom:185.787067pt;}
.yb61_c00001{bottom:186.267067pt;}
.yb7f_c00001{bottom:186.347067pt;}
.yb47_c00001{bottom:186.747067pt;}
.y6af_c00001{bottom:186.827067pt;}
.yad5_c00001{bottom:187.387067pt;}
.y178_c00001{bottom:187.707200pt;}
.y4dc_c00001{bottom:187.947067pt;}
.y209_c00001{bottom:188.265307pt;}
.y606_c00001{bottom:188.267067pt;}
.y4ce_c00001{bottom:188.272027pt;}
.y2a8_c00001{bottom:188.272667pt;}
.y3ce_c00001{bottom:188.310427pt;}
.y9ab_c00001{bottom:188.430427pt;}
.y2e_c00001{bottom:188.878080pt;}
.y447_c00001{bottom:188.919200pt;}
.y153_c00001{bottom:189.547067pt;}
.yd5_c00001{bottom:189.787067pt;}
.y601_c00001{bottom:189.787200pt;}
.yb97_c00001{bottom:190.347067pt;}
.y8c3_c00001{bottom:191.032187pt;}
.y99d_c00001{bottom:191.547067pt;}
.y1a7_c00001{bottom:191.707200pt;}
.y51c_c00001{bottom:191.770587pt;}
.y861_c00001{bottom:191.947067pt;}
.y81c_c00001{bottom:192.027067pt;}
.ybee_c00001{bottom:192.107067pt;}
.y656_c00001{bottom:192.265307pt;}
.y277_c00001{bottom:192.267067pt;}
.y8db_c00001{bottom:192.268667pt;}
.yb17_c00001{bottom:192.270267pt;}
.y238_c00001{bottom:192.277627pt;}
.yaf3_c00001{bottom:192.285440pt;}
.yc22_c00001{bottom:192.347067pt;}
.y8b3_c00001{bottom:192.587067pt;}
.y289_c00001{bottom:192.590427pt;}
.y388_c00001{bottom:192.595200pt;}
.y60_c00001{bottom:192.603387pt;}
.y848_c00001{bottom:192.743867pt;}
.y994_c00001{bottom:192.747200pt;}
.y979_c00001{bottom:192.828667pt;}
.ya4d_c00001{bottom:192.987200pt;}
.y807_c00001{bottom:193.547200pt;}
.y212_c00001{bottom:193.787067pt;}
.y13e_c00001{bottom:193.787200pt;}
.y941_c00001{bottom:193.947067pt;}
.ybd0_c00001{bottom:194.347067pt;}
.y6b1_c00001{bottom:194.587067pt;}
.y404_c00001{bottom:194.667067pt;}
.yb4c_c00001{bottom:194.747067pt;}
.y58a_c00001{bottom:195.947067pt;}
.y300_c00001{bottom:196.027067pt;}
.yc02_c00001{bottom:196.347067pt;}
.y6f9_c00001{bottom:196.494667pt;}
.y64c_c00001{bottom:196.587067pt;}
.yf9_c00001{bottom:196.590427pt;}
.y740_c00001{bottom:196.592027pt;}
.y118_c00001{bottom:196.595067pt;}
.y364_c00001{bottom:196.597947pt;}
.y5a8_c00001{bottom:196.608320pt;}
.y63e_c00001{bottom:196.829307pt;}
.y87_c00001{bottom:196.830560pt;}
.y558_c00001{bottom:196.837947pt;}
.y61e_c00001{bottom:196.851707pt;}
.y5d5_c00001{bottom:196.888827pt;}
.y4af_c00001{bottom:196.903227pt;}
.ya87_c00001{bottom:196.987067pt;}
.y3a3_c00001{bottom:197.081147pt;}
.y354_c00001{bottom:197.103547pt;}
.y735_c00001{bottom:197.787067pt;}
.y1d7_c00001{bottom:198.107067pt;}
.ybfe_c00001{bottom:198.347067pt;}
.yab8_c00001{bottom:198.587067pt;}
.yb0e_c00001{bottom:199.227200pt;}
.y31e_c00001{bottom:199.947067pt;}
.ybb1_c00001{bottom:200.027067pt;}
.y798_c00001{bottom:200.475547pt;}
.y76b_c00001{bottom:200.587067pt;}
.y3f7_c00001{bottom:200.590427pt;}
.y2d_c00001{bottom:201.114080pt;}
.y446_c00001{bottom:201.155200pt;}
.yad9_c00001{bottom:201.387067pt;}
.y605_c00001{bottom:201.787067pt;}
.y167_c00001{bottom:202.107067pt;}
.y2f3_c00001{bottom:202.667067pt;}
.yb40_c00001{bottom:202.747067pt;}
.y5f4_c00001{bottom:202.987200pt;}
.y684_c00001{bottom:203.467067pt;}
.y415_c00001{bottom:203.947067pt;}
.yb60_c00001{bottom:204.267067pt;}
.yb7e_c00001{bottom:204.347067pt;}
.y3ed_c00001{bottom:204.587067pt;}
.y208_c00001{bottom:204.590427pt;}
.y4cd_c00001{bottom:204.593787pt;}
.y2a7_c00001{bottom:204.594427pt;}
.y3cd_c00001{bottom:204.632187pt;}
.y9aa_c00001{bottom:204.667067pt;}
.y387_c00001{bottom:204.831200pt;}
.y5f_c00001{bottom:204.839387pt;}
.y9ce_c00001{bottom:204.987067pt;}
.y276_c00001{bottom:205.787067pt;}
.y8c2_c00001{bottom:206.075547pt;}
.y177_c00001{bottom:206.107067pt;}
.y69e_c00001{bottom:206.187200pt;}
.y4db_c00001{bottom:206.347067pt;}
.y51b_c00001{bottom:206.813947pt;}
.y847_c00001{bottom:207.707067pt;}
.y47a_c00001{bottom:207.787067pt;}
.y152_c00001{bottom:207.947067pt;}
.y1ed_c00001{bottom:208.187067pt;}
.yb96_c00001{bottom:208.347067pt;}
.y655_c00001{bottom:208.587067pt;}
.y8da_c00001{bottom:208.590427pt;}
.yb16_c00001{bottom:208.592027pt;}
.y237_c00001{bottom:208.599387pt;}
.yaf2_c00001{bottom:208.607200pt;}
.y896_c00001{bottom:208.747200pt;}
.y288_c00001{bottom:208.827067pt;}
.y117_c00001{bottom:208.831067pt;}
.y363_c00001{bottom:208.833947pt;}
.y1bf_c00001{bottom:208.907067pt;}
.y978_c00001{bottom:209.065307pt;}
.y557_c00001{bottom:209.073947pt;}
.y61d_c00001{bottom:209.087707pt;}
.y5d4_c00001{bottom:209.124827pt;}
.y4ae_c00001{bottom:209.139227pt;}
.y996_c00001{bottom:209.387067pt;}
.y1ca_c00001{bottom:209.387200pt;}
.y3a2_c00001{bottom:209.402267pt;}
.y353_c00001{bottom:209.424667pt;}
.y190_c00001{bottom:209.467067pt;}
.y99c_c00001{bottom:209.947067pt;}
.y6b3_c00001{bottom:210.027200pt;}
.y46b_c00001{bottom:210.107067pt;}
.y1a6_c00001{bottom:210.107200pt;}
.y8d4_c00001{bottom:210.187067pt;}
.y956_c00001{bottom:210.347067pt;}
.yb50_c00001{bottom:210.747067pt;}
.y920_c00001{bottom:210.907067pt;}
.y6f8_c00001{bottom:211.457867pt;}
.y211_c00001{bottom:212.187067pt;}
.ybc5_c00001{bottom:212.347067pt;}
.yf8_c00001{bottom:212.827067pt;}
.y73f_c00001{bottom:212.828667pt;}
.y5a7_c00001{bottom:212.844960pt;}
.y63d_c00001{bottom:213.065947pt;}
.y86_c00001{bottom:213.067200pt;}
.yadb_c00001{bottom:213.387067pt;}
.y2c_c00001{bottom:213.435200pt;}
.y76a_c00001{bottom:214.107067pt;}
.yab3_c00001{bottom:214.267200pt;}
.y589_c00001{bottom:214.347067pt;}
.y77e_c00001{bottom:215.387067pt;}
.y797_c00001{bottom:215.518907pt;}
.y734_c00001{bottom:216.187067pt;}
.yc28_c00001{bottom:216.347067pt;}
.yd4_c00001{bottom:216.827067pt;}
.y726_c00001{bottom:216.891307pt;}
.yab7_c00001{bottom:216.987067pt;}
.y386_c00001{bottom:217.067200pt;}
.y5e_c00001{bottom:217.075387pt;}
.yb46_c00001{bottom:217.387067pt;}
.y445_c00001{bottom:217.476960pt;}
.y53d_c00001{bottom:217.831627pt;}
.yad4_c00001{bottom:217.947067pt;}
.y3ec_c00001{bottom:218.107067pt;}
.y9a9_c00001{bottom:218.187067pt;}
.y8eb_c00001{bottom:218.347067pt;}
.y31d_c00001{bottom:218.347200pt;}
.yb4_c00001{bottom:218.747067pt;}
.y6b5_c00001{bottom:218.987200pt;}
.y6da_c00001{bottom:219.281387pt;}
.y7f0_c00001{bottom:220.027067pt;}
.y604_c00001{bottom:220.187067pt;}
.y2c6_c00001{bottom:220.587067pt;}
.y4cc_c00001{bottom:220.830427pt;}
.y207_c00001{bottom:220.831067pt;}
.y3cc_c00001{bottom:220.868827pt;}
.y116_c00001{bottom:221.067067pt;}
.y362_c00001{bottom:221.069947pt;}
.y556_c00001{bottom:221.395067pt;}
.y61c_c00001{bottom:221.408827pt;}
.y5d3_c00001{bottom:221.445947pt;}
.y4ad_c00001{bottom:221.460347pt;}
.y352_c00001{bottom:221.660667pt;}
.y51a_c00001{bottom:221.777147pt;}
.y654_c00001{bottom:222.107067pt;}
.y287_c00001{bottom:222.347067pt;}
.y81b_c00001{bottom:222.587067pt;}
.y993_c00001{bottom:223.307200pt;}
.y8fb_c00001{bottom:223.947067pt;}
.y275_c00001{bottom:224.187067pt;}
.y806_c00001{bottom:224.187200pt;}
.yc13_c00001{bottom:224.347067pt;}
.y8b2_c00001{bottom:224.507067pt;}
.y940_c00001{bottom:224.587067pt;}
.y8d9_c00001{bottom:224.827067pt;}
.yb15_c00001{bottom:224.828667pt;}
.y236_c00001{bottom:224.836027pt;}
.yaf1_c00001{bottom:224.843840pt;}
.y5a6_c00001{bottom:225.080960pt;}
.y403_c00001{bottom:225.227067pt;}
.y63c_c00001{bottom:225.387067pt;}
.y3a1_c00001{bottom:225.638907pt;}
.y2b_c00001{bottom:225.671200pt;}
.y912_c00001{bottom:226.267067pt;}
.yf7_c00001{bottom:226.347067pt;}
.y6f7_c00001{bottom:226.501227pt;}
.y85_c00001{bottom:226.587067pt;}
.y1ec_c00001{bottom:226.587200pt;}
.y8ae_c00001{bottom:227.227067pt;}
.ya86_c00001{bottom:227.547067pt;}
.ybed_c00001{bottom:228.107067pt;}
.ybd6_c00001{bottom:228.347067pt;}
.y64b_c00001{bottom:228.507067pt;}
.y8c1_c00001{bottom:229.041387pt;}
.y73e_c00001{bottom:229.065307pt;}
.y7b5_c00001{bottom:229.387067pt;}
.y1a5_c00001{bottom:229.675120pt;}
.y444_c00001{bottom:229.712960pt;}
.yb0d_c00001{bottom:229.787200pt;}
.y3f6_c00001{bottom:230.347067pt;}
.y796_c00001{bottom:230.482107pt;}
.y210_c00001{bottom:230.587067pt;}
.y725_c00001{bottom:231.854507pt;}
.y166_c00001{bottom:231.947067pt;}
.ybfd_c00001{bottom:232.347067pt;}
.y769_c00001{bottom:232.507067pt;}
.y6a0_c00001{bottom:232.747067pt;}
.y53c_c00001{bottom:232.874987pt;}
.y6b7_c00001{bottom:232.987067pt;}
.y206_c00001{bottom:233.067067pt;}
.y3cb_c00001{bottom:233.104827pt;}
.y2f2_c00001{bottom:233.307067pt;}
.yb4b_c00001{bottom:233.387067pt;}
.y361_c00001{bottom:233.391067pt;}
.y5d_c00001{bottom:233.397147pt;}
.y5f3_c00001{bottom:233.627200pt;}
.y555_c00001{bottom:233.631067pt;}
.y61b_c00001{bottom:233.644827pt;}
.y5d2_c00001{bottom:233.681947pt;}
.y4ac_c00001{bottom:233.696347pt;}
.y351_c00001{bottom:233.896667pt;}
.ybb0_c00001{bottom:234.027067pt;}
.y6d9_c00001{bottom:234.324747pt;}
.y115_c00001{bottom:234.587067pt;}
.yab6_c00001{bottom:235.387067pt;}
.y9cd_c00001{bottom:235.547067pt;}
.y3eb_c00001{bottom:236.507067pt;}
.y9a8_c00001{bottom:236.587067pt;}
.y519_c00001{bottom:236.820507pt;}
.y4cb_c00001{bottom:237.067067pt;}
.y5a5_c00001{bottom:237.402080pt;}
.y977_c00001{bottom:237.627067pt;}
.y3a0_c00001{bottom:237.874907pt;}
.y2a_c00001{bottom:237.907200pt;}
.y7c0_c00001{bottom:238.027067pt;}
.yb5f_c00001{bottom:238.267067pt;}
.y8d8_c00001{bottom:238.347067pt;}
.y479_c00001{bottom:238.427067pt;}
.y603_c00001{bottom:238.587067pt;}
.y63b_c00001{bottom:238.827067pt;}
.ya3e_c00001{bottom:239.054507pt;}
.y895_c00001{bottom:239.387200pt;}
.y1be_c00001{bottom:239.467067pt;}
.y995_c00001{bottom:239.947067pt;}
.y13d_c00001{bottom:239.947200pt;}
.y18f_c00001{bottom:240.107067pt;}
.y653_c00001{bottom:240.507067pt;}
.y286_c00001{bottom:240.747067pt;}
.y955_c00001{bottom:240.987067pt;}
.yb14_c00001{bottom:241.065307pt;}
.y235_c00001{bottom:241.072667pt;}
.yaf0_c00001{bottom:241.080480pt;}
.yb3f_c00001{bottom:241.387067pt;}
.y91f_c00001{bottom:241.467067pt;}
.y443_c00001{bottom:241.948960pt;}
.yc12_c00001{bottom:242.347067pt;}
.y8e3_c00001{bottom:242.587067pt;}
.y274_c00001{bottom:242.587200pt;}
.y8b1_c00001{bottom:242.827067pt;}
.y7d8_c00001{bottom:242.987067pt;}
.y195_c00001{bottom:244.027067pt;}
.y8c0_c00001{bottom:244.084747pt;}
.yb95_c00001{bottom:244.347067pt;}
.y1a4_c00001{bottom:244.638320pt;}
.yf6_c00001{bottom:244.747067pt;}
.yab2_c00001{bottom:244.907200pt;}
.y84_c00001{bottom:244.987067pt;}
.y2dc_c00001{bottom:245.387067pt;}
.y2a6_c00001{bottom:245.394427pt;}
.y554_c00001{bottom:245.867067pt;}
.y61a_c00001{bottom:245.880827pt;}
.y5d1_c00001{bottom:245.917947pt;}
.y4ab_c00001{bottom:245.932347pt;}
.y830_c00001{bottom:245.941227pt;}
.y77d_c00001{bottom:245.947067pt;}
.y764_c00001{bottom:246.027067pt;}
.y350_c00001{bottom:246.132667pt;}
.ybd5_c00001{bottom:246.347067pt;}
.y205_c00001{bottom:246.587067pt;}
.y64a_c00001{bottom:246.827200pt;}
.y724_c00001{bottom:246.897867pt;}
.y6b9_c00001{bottom:247.227067pt;}
.yd3_c00001{bottom:247.387067pt;}
.y53b_c00001{bottom:247.838187pt;}
.yadc_c00001{bottom:247.947067pt;}
.ybc4_c00001{bottom:248.347067pt;}
.yad3_c00001{bottom:248.587067pt;}
.y3f5_c00001{bottom:248.747067pt;}
.y385_c00001{bottom:248.987067pt;}
.y6a2_c00001{bottom:249.067067pt;}
.y6d8_c00001{bottom:249.287947pt;}
.yb3_c00001{bottom:249.387067pt;}
.y3ca_c00001{bottom:249.426587pt;}
.y6f6_c00001{bottom:249.467067pt;}
.y5c_c00001{bottom:249.633787pt;}
.y5a4_c00001{bottom:249.638080pt;}
.ya68_c00001{bottom:249.867067pt;}
.y29_c00001{bottom:250.143200pt;}
.ybfc_c00001{bottom:250.347067pt;}
.y4ca_c00001{bottom:250.587067pt;}
.y600_c00001{bottom:250.587200pt;}
.y768_c00001{bottom:250.827067pt;}
.y2c5_c00001{bottom:251.147067pt;}
.y518_c00001{bottom:251.783707pt;}
.yad8_c00001{bottom:252.027067pt;}
.y46a_c00001{bottom:252.187067pt;}
.y4f4_c00001{bottom:252.416827pt;}
.y114_c00001{bottom:252.987067pt;}
.y81a_c00001{bottom:253.227067pt;}
.y795_c00001{bottom:253.528107pt;}
.y992_c00001{bottom:253.947200pt;}
.ya3d_c00001{bottom:254.097867pt;}
.y39f_c00001{bottom:254.111547pt;}
.y442_c00001{bottom:254.184960pt;}
.y8fa_c00001{bottom:254.587067pt;}
.y8f5_c00001{bottom:254.587200pt;}
.y9e1_c00001{bottom:254.827067pt;}
.y3ea_c00001{bottom:254.827200pt;}
.y9a7_c00001{bottom:254.987067pt;}
.y93f_c00001{bottom:255.147067pt;}
.y402_c00001{bottom:255.867067pt;}
.yb45_c00001{bottom:255.947067pt;}
.yb5e_c00001{bottom:256.267067pt;}
.yb7d_c00001{bottom:256.347067pt;}
.y8d7_c00001{bottom:256.747067pt;}
.y911_c00001{bottom:256.827067pt;}
.y63a_c00001{bottom:257.227067pt;}
.yb13_c00001{bottom:257.387067pt;}
.y234_c00001{bottom:257.394427pt;}
.yaef_c00001{bottom:257.402240pt;}
.y8ad_c00001{bottom:257.787067pt;}
.yb20_c00001{bottom:257.863707pt;}
.y619_c00001{bottom:258.116827pt;}
.y5d0_c00001{bottom:258.153947pt;}
.y4aa_c00001{bottom:258.168347pt;}
.y6bb_c00001{bottom:258.427067pt;}
.y652_c00001{bottom:258.827067pt;}
.yae3_c00001{bottom:258.827200pt;}
.y8bf_c00001{bottom:259.047947pt;}
.y285_c00001{bottom:259.147067pt;}
.y553_c00001{bottom:259.387200pt;}
.y588_c00001{bottom:259.547200pt;}
.ya0a_c00001{bottom:259.627067pt;}
.y1a3_c00001{bottom:259.681680pt;}
.y7b4_c00001{bottom:259.947067pt;}
.yc11_c00001{bottom:260.347067pt;}
.yb0c_c00001{bottom:260.427200pt;}
.y846_c00001{bottom:260.987067pt;}
.y860_c00001{bottom:261.147067pt;}
.y710_c00001{bottom:261.227067pt;}
.y2a5_c00001{bottom:261.631067pt;}
.y3c9_c00001{bottom:261.662587pt;}
.y723_c00001{bottom:261.861067pt;}
.y5a3_c00001{bottom:261.874080pt;}
.ybec_c00001{bottom:262.107067pt;}
.ya22_c00001{bottom:262.250587pt;}
.y34f_c00001{bottom:262.454427pt;}
.y28_c00001{bottom:262.464320pt;}
.y165_c00001{bottom:262.587067pt;}
.y805_c00001{bottom:262.747200pt;}
.y53a_c00001{bottom:262.881547pt;}
.yf5_c00001{bottom:263.147067pt;}
.y83_c00001{bottom:263.387067pt;}
.y2f1_c00001{bottom:263.867067pt;}
.yb4a_c00001{bottom:263.947067pt;}
.y6d7_c00001{bottom:264.331307pt;}
.ybcf_c00001{bottom:264.347067pt;}
.y204_c00001{bottom:264.987067pt;}
.y413_c00001{bottom:265.147067pt;}
.y5b_c00001{bottom:265.870427pt;}
.ya85_c00001{bottom:266.187067pt;}
.ybc3_c00001{bottom:266.347067pt;}
.y39e_c00001{bottom:266.432667pt;}
.y441_c00001{bottom:266.506080pt;}
.y517_c00001{bottom:266.827067pt;}
.y3f4_c00001{bottom:267.147067pt;}
.y384_c00001{bottom:267.387067pt;}
.ybaf_c00001{bottom:268.027067pt;}
.ya5b_c00001{bottom:268.297307pt;}
.y794_c00001{bottom:268.491307pt;}
.y7bf_c00001{bottom:268.587067pt;}
.y82f_c00001{bottom:268.907067pt;}
.y478_c00001{bottom:268.987067pt;}
.y938_c00001{bottom:269.467200pt;}
.y6a4_c00001{bottom:269.546667pt;}
.y976_c00001{bottom:269.547067pt;}
.y4f3_c00001{bottom:269.691307pt;}
.yab5_c00001{bottom:269.707067pt;}
.y618_c00001{bottom:270.437947pt;}
.y5cf_c00001{bottom:270.475067pt;}
.y4a9_c00001{bottom:270.489467pt;}
.y13c_c00001{bottom:270.507200pt;}
.y4fa_c00001{bottom:270.587067pt;}
.y1c9_c00001{bottom:270.587200pt;}
.y18e_c00001{bottom:270.667067pt;}
.yb12_c00001{bottom:270.827067pt;}
.y113_c00001{bottom:271.387067pt;}
.y9de_c00001{bottom:271.547200pt;}
.y318_c00001{bottom:271.787067pt;}
.yb3e_c00001{bottom:271.947067pt;}
.y91e_c00001{bottom:272.107067pt;}
.y5f2_c00001{bottom:272.187067pt;}
.yb1f_c00001{bottom:272.907067pt;}
.y2ff_c00001{bottom:273.227067pt;}
.ya6f_c00001{bottom:273.282107pt;}
.y871_c00001{bottom:273.387067pt;}
.y233_c00001{bottom:273.631067pt;}
.yaee_c00001{bottom:273.638880pt;}
.y2a4_c00001{bottom:273.871067pt;}
.y3c8_c00001{bottom:273.898587pt;}
.y8be_c00001{bottom:274.091307pt;}
.y5a2_c00001{bottom:274.110080pt;}
.y9cc_c00001{bottom:274.187067pt;}
.yb7c_c00001{bottom:274.347067pt;}
.y176_c00001{bottom:274.587067pt;}
.y9f5_c00001{bottom:274.587200pt;}
.y1a2_c00001{bottom:274.644880pt;}
.y34e_c00001{bottom:274.690427pt;}
.y27_c00001{bottom:274.700320pt;}
.y8d6_c00001{bottom:275.147067pt;}
.y4f9_c00001{bottom:275.232587pt;}
.yab1_c00001{bottom:275.467200pt;}
.y639_c00001{bottom:275.627067pt;}
.y2db_c00001{bottom:276.027067pt;}
.y763_c00001{bottom:276.587067pt;}
.y969_c00001{bottom:276.907067pt;}
.ya3c_c00001{bottom:277.063707pt;}
.y73d_c00001{bottom:277.227067pt;}
.ya21_c00001{bottom:277.293947pt;}
.y360_c00001{bottom:277.547067pt;}
.y552_c00001{bottom:277.787200pt;}
.y539_c00001{bottom:277.844747pt;}
.y894_c00001{bottom:277.947200pt;}
.yb94_c00001{bottom:278.347067pt;}
.y4da_c00001{bottom:278.587067pt;}
.y8b0_c00001{bottom:278.587200pt;}
.y223_c00001{bottom:278.667067pt;}
.y440_c00001{bottom:278.742080pt;}
.yad2_c00001{bottom:279.147067pt;}
.y6d6_c00001{bottom:279.294507pt;}
.yae0_c00001{bottom:279.307067pt;}
.y8d3_c00001{bottom:279.387067pt;}
.y1bd_c00001{bottom:279.467067pt;}
.y954_c00001{bottom:279.547067pt;}
.yb2_c00001{bottom:279.947067pt;}
.y99b_c00001{bottom:280.107067pt;}
.yc1f_c00001{bottom:280.347067pt;}
.ya67_c00001{bottom:280.507067pt;}
.y756_c00001{bottom:281.147067pt;}
.y7ef_c00001{bottom:281.227067pt;}
.y5ff_c00001{bottom:281.227200pt;}
.y7d7_c00001{bottom:281.547067pt;}
.y5a_c00001{bottom:282.107067pt;}
.ybce_c00001{bottom:282.347067pt;}
.y900_c00001{bottom:282.587067pt;}
.y39d_c00001{bottom:282.669307pt;}
.y617_c00001{bottom:282.673947pt;}
.y5ce_c00001{bottom:282.711067pt;}
.y4a8_c00001{bottom:282.725467pt;}
.y469_c00001{bottom:282.747067pt;}
.y5b4_c00001{bottom:282.827067pt;}
.y203_c00001{bottom:283.387067pt;}
.y793_c00001{bottom:283.534667pt;}
.y6a6_c00001{bottom:283.707067pt;}
.yb36_c00001{bottom:283.787067pt;}
.ybfb_c00001{bottom:284.347067pt;}
.y2c4_c00001{bottom:284.485707pt;}
.y4f2_c00001{bottom:284.734667pt;}
.y722_c00001{bottom:284.907067pt;}
.y8f9_c00001{bottom:285.147067pt;}
.y8f4_c00001{bottom:285.147200pt;}
.ya5a_c00001{bottom:285.651947pt;}
.y6f5_c00001{bottom:285.787067pt;}
.y232_c00001{bottom:285.868667pt;}
.yd2_c00001{bottom:286.027067pt;}
.y2a3_c00001{bottom:286.107067pt;}
.y3c7_c00001{bottom:286.134587pt;}
.y5a1_c00001{bottom:286.431200pt;}
.yb44_c00001{bottom:286.587067pt;}
.y986_c00001{bottom:286.587200pt;}
.y34d_c00001{bottom:286.926427pt;}
.y26_c00001{bottom:286.936320pt;}
.y4c9_c00001{bottom:287.387200pt;}
.y910_c00001{bottom:287.467067pt;}
.y273_c00001{bottom:287.547200pt;}
.y975_c00001{bottom:287.947067pt;}
.ya6e_c00001{bottom:288.245307pt;}
.y256_c00001{bottom:288.508587pt;}
.y8bd_c00001{bottom:289.054507pt;}
.yab4_c00001{bottom:289.147067pt;}
.yb11_c00001{bottom:289.227067pt;}
.y1a1_c00001{bottom:289.688240pt;}
.yaed_c00001{bottom:289.875520pt;}
.y587_c00001{bottom:290.187067pt;}
.yb5d_c00001{bottom:290.267067pt;}
.y56d_c00001{bottom:290.587067pt;}
.y43f_c00001{bottom:290.978080pt;}
.yb0b_c00001{bottom:290.987200pt;}
.y845_c00001{bottom:291.547067pt;}
.y70f_c00001{bottom:291.787067pt;}
.ya3b_c00001{bottom:292.107067pt;}
.ya20_c00001{bottom:292.257147pt;}
.yb7b_c00001{bottom:292.347067pt;}
.y4f8_c00001{bottom:292.507067pt;}
.y991_c00001{bottom:292.507200pt;}
.y538_c00001{bottom:292.888107pt;}
.y164_c00001{bottom:293.147067pt;}
.y819_c00001{bottom:293.227067pt;}
.y7b3_c00001{bottom:293.272347pt;}
.y804_c00001{bottom:293.387200pt;}
.ya4c_c00001{bottom:293.787200pt;}
.y6d5_c00001{bottom:294.337867pt;}
.y401_c00001{bottom:294.427067pt;}
.y2f0_c00001{bottom:294.507067pt;}
.y82_c00001{bottom:294.587067pt;}
.y39c_c00001{bottom:294.905307pt;}
.y616_c00001{bottom:294.909947pt;}
.y5cd_c00001{bottom:294.947067pt;}
.y4a7_c00001{bottom:294.961467pt;}
.ya00_c00001{bottom:295.547067pt;}
.y59_c00001{bottom:295.627067pt;}
.y73c_c00001{bottom:295.627200pt;}
.y412_c00001{bottom:295.787067pt;}
.y35f_c00001{bottom:295.947200pt;}
.y551_c00001{bottom:296.187200pt;}
.yb93_c00001{bottom:296.347067pt;}
.y8ac_c00001{bottom:296.427067pt;}
.ya84_c00001{bottom:296.747067pt;}
.y151_c00001{bottom:297.227067pt;}
.y31c_c00001{bottom:297.227200pt;}
.y733_c00001{bottom:297.787200pt;}
.ybeb_c00001{bottom:298.107200pt;}
.yc1e_c00001{bottom:298.347067pt;}
.y3c6_c00001{bottom:298.455707pt;}
.y792_c00001{bottom:298.497867pt;}
.y34c_c00001{bottom:299.247547pt;}
.y25_c00001{bottom:299.257440pt;}
.y2c3_c00001{bottom:299.448907pt;}
.y2a2_c00001{bottom:299.627067pt;}
.y4f1_c00001{bottom:299.697867pt;}
.y937_c00001{bottom:300.107200pt;}
.ybc2_c00001{bottom:300.347067pt;}
.ya59_c00001{bottom:300.615147pt;}
.y3f3_c00001{bottom:301.147067pt;}
.y1c8_c00001{bottom:301.147200pt;}
.y18d_c00001{bottom:301.307067pt;}
.y7be_c00001{bottom:301.918320pt;}
.ybae_c00001{bottom:302.027067pt;}
.y231_c00001{bottom:302.105307pt;}
.y317_c00001{bottom:302.347067pt;}
.yb3d_c00001{bottom:302.587067pt;}
.y5f1_c00001{bottom:302.827067pt;}
.y516_c00001{bottom:303.067200pt;}
.ya6d_c00001{bottom:303.288667pt;}
.y43e_c00001{bottom:303.299200pt;}
.y255_c00001{bottom:303.471787pt;}
.y2fe_c00001{bottom:303.787067pt;}
.y870_c00001{bottom:304.027067pt;}
.y8bc_c00001{bottom:304.097867pt;}
.y1a0_c00001{bottom:304.651440pt;}
.y9cb_c00001{bottom:304.747067pt;}
.y9f4_c00001{bottom:305.147200pt;}
.y112_c00001{bottom:305.227067pt;}
.y82e_c00001{bottom:305.227200pt;}
.yab0_c00001{bottom:306.107200pt;}
.yaec_c00001{bottom:306.112160pt;}
.y486_c00001{bottom:306.427067pt;}
.y762_c00001{bottom:307.227067pt;}
.y615_c00001{bottom:307.231067pt;}
.y5cc_c00001{bottom:307.268187pt;}
.y4a6_c00001{bottom:307.282587pt;}
.ya1f_c00001{bottom:307.300507pt;}
.y968_c00001{bottom:307.467067pt;}
.y4f7_c00001{bottom:307.547067pt;}
.yb10_c00001{bottom:307.627067pt;}
.y537_c00001{bottom:307.851307pt;}
.y7b2_c00001{bottom:308.235547pt;}
.yb5c_c00001{bottom:308.267067pt;}
.y893_c00001{bottom:308.587200pt;}
.y4d9_c00001{bottom:309.147067pt;}
.y13b_c00001{bottom:309.147200pt;}
.y6d4_c00001{bottom:309.301067pt;}
.y222_c00001{bottom:309.307067pt;}
.yad1_c00001{bottom:309.787067pt;}
.y77c_c00001{bottom:309.819067pt;}
.yadf_c00001{bottom:309.867067pt;}
.y8d2_c00001{bottom:309.947067pt;}
.y953_c00001{bottom:310.187067pt;}
.y9dd_c00001{bottom:310.187200pt;}
.yb7a_c00001{bottom:310.347067pt;}
.y91d_c00001{bottom:310.667067pt;}
.y3c5_c00001{bottom:310.691707pt;}
.ya66_c00001{bottom:311.067067pt;}
.y39b_c00001{bottom:311.227067pt;}
.y34b_c00001{bottom:311.483547pt;}
.y24_c00001{bottom:311.493440pt;}
.y755_c00001{bottom:311.787067pt;}
.y5fe_c00001{bottom:311.787200pt;}
.y5a0_c00001{bottom:312.187200pt;}
.y6a8_c00001{bottom:312.347067pt;}
.yf4_c00001{bottom:312.881547pt;}
.y194_c00001{bottom:313.227067pt;}
.y284_c00001{bottom:313.227200pt;}
.yb1_c00001{bottom:313.291467pt;}
.y468_c00001{bottom:313.387067pt;}
.y791_c00001{bottom:313.541227pt;}
.y58_c00001{bottom:314.027067pt;}
.yb92_c00001{bottom:314.347067pt;}
.yb35_c00001{bottom:314.427067pt;}
.y7ee_c00001{bottom:314.432827pt;}
.y2c2_c00001{bottom:314.492267pt;}
.y2da_c00001{bottom:314.587067pt;}
.y4f0_c00001{bottom:314.741227pt;}
.y43d_c00001{bottom:315.535200pt;}
.ya58_c00001{bottom:315.658507pt;}
.y6f4_c00001{bottom:316.347067pt;}
.yd1_c00001{bottom:316.587067pt;}
.y7bd_c00001{bottom:316.881520pt;}
.y649_c00001{bottom:317.147067pt;}
.y985_c00001{bottom:317.147200pt;}
.y2a1_c00001{bottom:318.027067pt;}
.y272_c00001{bottom:318.187200pt;}
.ybc1_c00001{bottom:318.347067pt;}
.y230_c00001{bottom:318.427067pt;}
.y8bb_c00001{bottom:319.061067pt;}
.y614_c00001{bottom:319.467067pt;}
.y5cb_c00001{bottom:319.504187pt;}
.y4a5_c00001{bottom:319.518587pt;}
.y19f_c00001{bottom:319.694800pt;}
.y7d6_c00001{bottom:320.187067pt;}
.yc07_c00001{bottom:320.347067pt;}
.y586_c00001{bottom:320.747067pt;}
.ya09_c00001{bottom:320.827067pt;}
.y721_c00001{bottom:321.147067pt;}
.y56c_c00001{bottom:321.227067pt;}
.y844_c00001{bottom:322.187067pt;}
.ya1e_c00001{bottom:322.263707pt;}
.y85f_c00001{bottom:322.347067pt;}
.y70e_c00001{bottom:322.427067pt;}
.yaeb_c00001{bottom:322.433920pt;}
.y536_c00001{bottom:322.894667pt;}
.y3c4_c00001{bottom:322.927707pt;}
.y990_c00001{bottom:323.147067pt;}
.y7b1_c00001{bottom:323.278907pt;}
.y67c_c00001{bottom:323.711067pt;}
.y34a_c00001{bottom:323.719547pt;}
.y23_c00001{bottom:323.729440pt;}
.y1d6_c00001{bottom:323.787067pt;}
.y8f3_c00001{bottom:323.787200pt;}
.y696_c00001{bottom:323.947067pt;}
.y803_c00001{bottom:323.947200pt;}
.y93e_c00001{bottom:324.347067pt;}
.ya4b_c00001{bottom:324.347200pt;}
.y39a_c00001{bottom:324.747067pt;}
.y77b_c00001{bottom:324.862427pt;}
.y400_c00001{bottom:325.067067pt;}
.y81_c00001{bottom:325.147067pt;}
.y9ff_c00001{bottom:326.187067pt;}
.ya6c_c00001{bottom:326.254507pt;}
.y411_c00001{bottom:326.347067pt;}
.y3e9_c00001{bottom:326.347200pt;}
.y383_c00001{bottom:326.587067pt;}
.y82c_c00001{bottom:326.747067pt;}
.y8ab_c00001{bottom:326.987067pt;}
.ya83_c00001{bottom:327.387067pt;}
.y43c_c00001{bottom:327.771200pt;}
.y150_c00001{bottom:327.787067pt;}
.y31b_c00001{bottom:327.787200pt;}
.yf3_c00001{bottom:327.844747pt;}
.yb0_c00001{bottom:328.254667pt;}
.yb79_c00001{bottom:328.347067pt;}
.ya3a_c00001{bottom:328.347200pt;}
.y732_c00001{bottom:328.427200pt;}
.y974_c00001{bottom:329.227067pt;}
.y2c1_c00001{bottom:329.455467pt;}
.y7ed_c00001{bottom:329.476187pt;}
.yb0a_c00001{bottom:329.627067pt;}
.y678_c00001{bottom:330.267067pt;}
.yc10_c00001{bottom:330.347067pt;}
.y68e_c00001{bottom:330.587067pt;}
.y59f_c00001{bottom:330.587200pt;}
.ya57_c00001{bottom:330.621707pt;}
.y936_c00001{bottom:330.667067pt;}
.y680_c00001{bottom:330.731067pt;}
.y67e_c00001{bottom:330.743067pt;}
.y5ca_c00001{bottom:331.740187pt;}
.y4a4_c00001{bottom:331.754587pt;}
.y163_c00001{bottom:331.787067pt;}
.y1c7_c00001{bottom:331.787200pt;}
.y7bc_c00001{bottom:331.924880pt;}
.y22f_c00001{bottom:331.947200pt;}
.ybea_c00001{bottom:332.107200pt;}
.y6d3_c00001{bottom:332.347067pt;}
.y690_c00001{bottom:332.351067pt;}
.y57_c00001{bottom:332.427067pt;}
.y676_c00001{bottom:332.747067pt;}
.y477_c00001{bottom:332.881520pt;}
.y316_c00001{bottom:332.987067pt;}
.y2ef_c00001{bottom:333.067067pt;}
.yb3c_c00001{bottom:333.147067pt;}
.y5f0_c00001{bottom:333.387067pt;}
.y693_c00001{bottom:333.635067pt;}
.y515_c00001{bottom:333.707200pt;}
.y682_c00001{bottom:333.851067pt;}
.ybcd_c00001{bottom:334.347067pt;}
.y254_c00001{bottom:334.507067pt;}
.y86f_c00001{bottom:334.587067pt;}
.y19e_c00001{bottom:334.658000pt;}
.y1bc_c00001{bottom:335.227067pt;}
.y3c3_c00001{bottom:335.248827pt;}
.y9ca_c00001{bottom:335.387067pt;}
.y111_c00001{bottom:335.787067pt;}
.y82d_c00001{bottom:335.787200pt;}
.y67a_c00001{bottom:335.867067pt;}
.ybad_c00001{bottom:336.027067pt;}
.y349_c00001{bottom:336.040667pt;}
.y22_c00001{bottom:336.050560pt;}
.ybfa_c00001{bottom:336.347067pt;}
.y2a0_c00001{bottom:336.427200pt;}
.y790_c00001{bottom:336.507067pt;}
.yaaf_c00001{bottom:336.667200pt;}
.y485_c00001{bottom:336.987200pt;}
.ya1d_c00001{bottom:337.307067pt;}
.y4ef_c00001{bottom:337.707067pt;}
.y535_c00001{bottom:337.857867pt;}
.y967_c00001{bottom:338.107067pt;}
.y694_c00001{bottom:338.195067pt;}
.y7b0_c00001{bottom:338.242107pt;}
.yaea_c00001{bottom:338.670560pt;}
.y892_c00001{bottom:339.147200pt;}
.y13a_c00001{bottom:339.707200pt;}
.y4d8_c00001{bottom:339.787067pt;}
.y602_c00001{bottom:339.787200pt;}
.y18c_c00001{bottom:339.867067pt;}
.y43b_c00001{bottom:340.092320pt;}
.yad0_c00001{bottom:340.347067pt;}
.y761_c00001{bottom:340.478187pt;}
.y952_c00001{bottom:340.747067pt;}
.ya6b_c00001{bottom:341.297867pt;}
.y677_c00001{bottom:341.303067pt;}
.y91c_c00001{bottom:341.307067pt;}
.ya65_c00001{bottom:341.707067pt;}
.y8ba_c00001{bottom:342.107067pt;}
.yb5b_c00001{bottom:342.267067pt;}
.y754_c00001{bottom:342.347067pt;}
.y5fd_c00001{bottom:342.427200pt;}
.yf2_c00001{bottom:342.888107pt;}
.y399_c00001{bottom:343.147067pt;}
.yade_c00001{bottom:343.228400pt;}
.yaf_c00001{bottom:343.298027pt;}
.y193_c00001{bottom:343.787067pt;}
.y283_c00001{bottom:343.787200pt;}
.y5c9_c00001{bottom:344.061307pt;}
.y4a3_c00001{bottom:344.075707pt;}
.y7ec_c00001{bottom:344.439387pt;}
.y2c0_c00001{bottom:344.498827pt;}
.y1eb_c00001{bottom:344.667067pt;}
.y692_c00001{bottom:344.831067pt;}
.yb34_c00001{bottom:344.987067pt;}
.y2d9_c00001{bottom:345.227067pt;}
.ya56_c00001{bottom:345.665067pt;}
.y668_c00001{bottom:346.347067pt;}
.y467_c00001{bottom:346.625627pt;}
.y5b3_c00001{bottom:346.740640pt;}
.y7bb_c00001{bottom:346.888080pt;}
.y6f3_c00001{bottom:346.987067pt;}
.y3c2_c00001{bottom:347.484827pt;}
.y648_c00001{bottom:347.787067pt;}
.y927_c00001{bottom:347.787200pt;}
.y77a_c00001{bottom:347.828267pt;}
.y697_c00001{bottom:347.863067pt;}
.y476_c00001{bottom:347.924880pt;}
.y348_c00001{bottom:348.276667pt;}
.y21_c00001{bottom:348.286560pt;}
.yb91_c00001{bottom:348.347067pt;}
.y8d1_c00001{bottom:348.587067pt;}
.y90f_c00001{bottom:348.667067pt;}
.y9dc_c00001{bottom:348.747067pt;}
.y271_c00001{bottom:348.747200pt;}
.y59e_c00001{bottom:348.987067pt;}
.y818_c00001{bottom:348.987200pt;}
.y2dd_c00001{bottom:349.701360pt;}
.ybe9_c00001{bottom:350.107200pt;}
.yc1d_c00001{bottom:350.347067pt;}
.y22e_c00001{bottom:350.347200pt;}
.y2fd_c00001{bottom:350.427067pt;}
.y683_c00001{bottom:350.651067pt;}
.y7d5_c00001{bottom:350.747067pt;}
.y681_c00001{bottom:351.215067pt;}
.y67b_c00001{bottom:351.227067pt;}
.y585_c00001{bottom:351.387067pt;}
.y56b_c00001{bottom:351.787067pt;}
.ybc0_c00001{bottom:352.347067pt;}
.y843_c00001{bottom:352.747067pt;}
.y534_c00001{bottom:352.901227pt;}
.y698_c00001{bottom:352.903067pt;}
.y70d_c00001{bottom:352.987067pt;}
.y67d_c00001{bottom:353.147067pt;}
.y7af_c00001{bottom:353.285467pt;}
.y638_c00001{bottom:353.307067pt;}
.y56_c00001{bottom:353.451307pt;}
.y68f_c00001{bottom:353.471067pt;}
.y98f_c00001{bottom:353.707067pt;}
.ybac_c00001{bottom:354.027200pt;}
.y8f8_c00001{bottom:354.347067pt;}
.y8f2_c00001{bottom:354.347200pt;}
.yae9_c00001{bottom:354.907200pt;}
.y93d_c00001{bottom:354.987067pt;}
.yd0_c00001{bottom:355.227067pt;}
.y760_c00001{bottom:355.521547pt;}
.y3ff_c00001{bottom:355.627067pt;}
.y80_c00001{bottom:355.787067pt;}
.ya6a_c00001{bottom:356.261067pt;}
.y691_c00001{bottom:356.267067pt;}
.y5c8_c00001{bottom:356.297307pt;}
.y4a2_c00001{bottom:356.311707pt;}
.y43a_c00001{bottom:356.328960pt;}
.y9fe_c00001{bottom:356.747067pt;}
.y3e8_c00001{bottom:356.987200pt;}
.y382_c00001{bottom:357.147067pt;}
.y82b_c00001{bottom:357.387067pt;}
.y8aa_c00001{bottom:357.627067pt;}
.y19d_c00001{bottom:357.704000pt;}
.yf1_c00001{bottom:357.851307pt;}
.ya82_c00001{bottom:357.947067pt;}
.yae_c00001{bottom:358.261227pt;}
.y67f_c00001{bottom:358.415067pt;}
.y679_c00001{bottom:358.419067pt;}
.y202_c00001{bottom:358.427200pt;}
.y731_c00001{bottom:358.987200pt;}
.ya08_c00001{bottom:359.387067pt;}
.y2bf_c00001{bottom:359.462027pt;}
.y7eb_c00001{bottom:359.482747pt;}
.y410_c00001{bottom:359.671627pt;}
.y3c1_c00001{bottom:359.720827pt;}
.y973_c00001{bottom:359.787067pt;}
.yb09_c00001{bottom:360.187067pt;}
.yb5a_c00001{bottom:360.267067pt;}
.y347_c00001{bottom:360.512667pt;}
.y20_c00001{bottom:360.522560pt;}
.ya55_c00001{bottom:360.628267pt;}
.y935_c00001{bottom:361.307067pt;}
.y398_c00001{bottom:361.547200pt;}
.y466_c00001{bottom:361.668987pt;}
.y5b2_c00001{bottom:361.703840pt;}
.y7ba_c00001{bottom:361.931440pt;}
.y1d5_c00001{bottom:362.347067pt;}
.y1c6_c00001{bottom:362.347200pt;}
.y802_c00001{bottom:362.587200pt;}
.yadd_c00001{bottom:362.667200pt;}
.y779_c00001{bottom:362.871627pt;}
.y475_c00001{bottom:362.888080pt;}
.y550_c00001{bottom:363.147200pt;}
.y315_c00001{bottom:363.547067pt;}
.y2ee_c00001{bottom:363.707067pt;}
.yb3b_c00001{bottom:363.787067pt;}
.y5ef_c00001{bottom:364.027067pt;}
.y514_c00001{bottom:364.267200pt;}
.yb78_c00001{bottom:364.347067pt;}
.y86e_c00001{bottom:365.227067pt;}
.y4c8_c00001{bottom:365.547200pt;}
.y1bb_c00001{bottom:365.787067pt;}
.yb90_c00001{bottom:366.347067pt;}
.y9f3_c00001{bottom:366.347200pt;}
.y767_c00001{bottom:366.427067pt;}
.y14f_c00001{bottom:366.427200pt;}
.y484_c00001{bottom:367.627200pt;}
.y7ae_c00001{bottom:368.248667pt;}
.ybcc_c00001{bottom:368.347067pt;}
.yae8_c00001{bottom:368.427067pt;}
.y55_c00001{bottom:368.494667pt;}
.y5c7_c00001{bottom:368.533307pt;}
.y4a1_c00001{bottom:368.547707pt;}
.y439_c00001{bottom:368.564960pt;}
.y6d2_c00001{bottom:368.587067pt;}
.y9c9_c00001{bottom:368.655467pt;}
.y966_c00001{bottom:368.667067pt;}
.y22d_c00001{bottom:368.747200pt;}
.y613_c00001{bottom:369.787200pt;}
.y162_c00001{bottom:370.347067pt;}
.y139_c00001{bottom:370.347200pt;}
.y75f_c00001{bottom:370.484747pt;}
.y18b_c00001{bottom:370.507067pt;}
.y253_c00001{bottom:370.747067pt;}
.yacf_c00001{bottom:370.987067pt;}
.y951_c00001{bottom:371.387067pt;}
.y91b_c00001{bottom:371.867067pt;}
.y3c0_c00001{bottom:372.041947pt;}
.yc06_c00001{bottom:372.347067pt;}
.y19c_c00001{bottom:372.667200pt;}
.y78f_c00001{bottom:372.827067pt;}
.y346_c00001{bottom:372.833787pt;}
.yf0_c00001{bottom:372.894667pt;}
.y5fc_c00001{bottom:372.987200pt;}
.ya1c_c00001{bottom:373.547200pt;}
.y4ee_c00001{bottom:374.027067pt;}
.y110_c00001{bottom:374.427067pt;}
.y175_c00001{bottom:374.427200pt;}
.y7ea_c00001{bottom:374.445947pt;}
.y2be_c00001{bottom:374.505387pt;}
.y40f_c00001{bottom:374.634827pt;}
.y1ea_c00001{bottom:375.307067pt;}
.yb33_c00001{bottom:375.627067pt;}
.y753_c00001{bottom:375.671627pt;}
.y2d8_c00001{bottom:375.787067pt;}
.y533_c00001{bottom:375.867067pt;}
.y465_c00001{bottom:376.632187pt;}
.y5b1_c00001{bottom:376.747200pt;}
.y1f_c00001{bottom:376.844320pt;}
.y7b9_c00001{bottom:376.894640pt;}
.y73b_c00001{bottom:376.987067pt;}
.y6f2_c00001{bottom:377.547067pt;}
.y778_c00001{bottom:377.834827pt;}
.y474_c00001{bottom:377.931440pt;}
.yaae_c00001{bottom:378.027067pt;}
.yb59_c00001{bottom:378.267067pt;}
.y647_c00001{bottom:378.347067pt;}
.y926_c00001{bottom:378.347200pt;}
.y8d0_c00001{bottom:379.147067pt;}
.ya69_c00001{bottom:379.307067pt;}
.y9db_c00001{bottom:379.387067pt;}
.y817_c00001{bottom:379.547200pt;}
.y695_c00001{bottom:379.787067pt;}
.y4a0_c00001{bottom:380.868827pt;}
.y438_c00001{bottom:380.886080pt;}
.y7d4_c00001{bottom:381.387067pt;}
.ya64_c00001{bottom:381.707067pt;}
.y584_c00001{bottom:381.947200pt;}
.y270_c00001{bottom:382.097440pt;}
.y720_c00001{bottom:382.347067pt;}
.y8ff_c00001{bottom:382.427067pt;}
.y282_c00001{bottom:382.427200pt;}
.y842_c00001{bottom:383.387067pt;}
.y54_c00001{bottom:383.457867pt;}
.y85e_c00001{bottom:383.547067pt;}
.y637_c00001{bottom:383.947067pt;}
.ybe8_c00001{bottom:384.107200pt;}
.y3bf_c00001{bottom:384.277947pt;}
.y98e_c00001{bottom:384.347067pt;}
.y5c6_c00001{bottom:384.855067pt;}
.y667_c00001{bottom:384.987067pt;}
.y331_c00001{bottom:384.987200pt;}
.y75e_c00001{bottom:385.528107pt;}
.y93c_c00001{bottom:385.547067pt;}
.ycf_c00001{bottom:385.787067pt;}
.y29f_c00001{bottom:386.187067pt;}
.y3fe_c00001{bottom:386.267067pt;}
.y9a6_c00001{bottom:386.347067pt;}
.yae7_c00001{bottom:386.827067pt;}
.y90e_c00001{bottom:387.227067pt;}
.y9fd_c00001{bottom:387.387067pt;}
.y3e7_c00001{bottom:387.547200pt;}
.y381_c00001{bottom:387.787067pt;}
.yef_c00001{bottom:387.857867pt;}
.y82a_c00001{bottom:387.947067pt;}
.ybab_c00001{bottom:388.027200pt;}
.y8a9_c00001{bottom:388.187067pt;}
.ybf9_c00001{bottom:388.347067pt;}
.y201_c00001{bottom:388.987067pt;}
.y8ea_c00001{bottom:388.987200pt;}
.y345_c00001{bottom:389.070427pt;}
.y1e_c00001{bottom:389.080320pt;}
.y2bd_c00001{bottom:389.468587pt;}
.y7e9_c00001{bottom:389.489307pt;}
.y40e_c00001{bottom:389.678187pt;}
.ya07_c00001{bottom:390.027067pt;}
.y56a_c00001{bottom:390.427067pt;}
.y752_c00001{bottom:390.634827pt;}
.yb08_c00001{bottom:390.827067pt;}
.y7ad_c00001{bottom:391.294667pt;}
.y70c_c00001{bottom:391.627067pt;}
.y9c8_c00001{bottom:391.688107pt;}
.y7b8_c00001{bottom:391.938000pt;}
.y777_c00001{bottom:392.878187pt;}
.y473_c00001{bottom:392.894640pt;}
.y1d4_c00001{bottom:392.987067pt;}
.y8fd_c00001{bottom:392.987200pt;}
.y49f_c00001{bottom:393.104827pt;}
.y437_c00001{bottom:393.122080pt;}
.y801_c00001{bottom:393.147067pt;}
.y54f_c00001{bottom:393.787200pt;}
.y2ed_c00001{bottom:394.267067pt;}
.y7f_c00001{bottom:394.347067pt;}
.y5ee_c00001{bottom:394.587067pt;}
.yad_c00001{bottom:394.587200pt;}
.y513_c00001{bottom:394.907200pt;}
.y86d_c00001{bottom:395.787067pt;}
.y4c7_c00001{bottom:396.187200pt;}
.yb58_c00001{bottom:396.267067pt;}
.y1ba_c00001{bottom:396.427067pt;}
.y3be_c00001{bottom:396.513947pt;}
.ya81_c00001{bottom:396.587067pt;}
.y31a_c00001{bottom:396.987067pt;}
.y14e_c00001{bottom:396.987200pt;}
.y26f_c00001{bottom:397.060640pt;}
.y5c5_c00001{bottom:397.091067pt;}
.y314_c00001{bottom:397.507787pt;}
.ya39_c00001{bottom:397.547200pt;}
.y483_c00001{bottom:398.187200pt;}
.y53_c00001{bottom:398.501227pt;}
.y730_c00001{bottom:399.067200pt;}
.y6d1_c00001{bottom:399.227067pt;}
.y464_c00001{bottom:399.678187pt;}
.y934_c00001{bottom:399.867067pt;}
.yb77_c00001{bottom:400.347067pt;}
.y891_c00001{bottom:400.347200pt;}
.y75d_c00001{bottom:400.491307pt;}
.y161_c00001{bottom:400.987067pt;}
.y1c5_c00001{bottom:400.987200pt;}
.y18a_c00001{bottom:401.067067pt;}
.y1d_c00001{bottom:401.316320pt;}
.y252_c00001{bottom:401.387067pt;}
.yace_c00001{bottom:401.547067pt;}
.y950_c00001{bottom:401.947067pt;}
.ybe7_c00001{bottom:402.107200pt;}
.yc1c_c00001{bottom:402.347067pt;}
.y99a_c00001{bottom:402.507067pt;}
.yee_c00001{bottom:402.901227pt;}
.y78e_c00001{bottom:403.387067pt;}
.y5fb_c00001{bottom:403.627200pt;}
.ya1b_c00001{bottom:404.187067pt;}
.ybbf_c00001{bottom:404.347067pt;}
.y7e8_c00001{bottom:404.452507pt;}
.y2bc_c00001{bottom:404.511947pt;}
.y40d_c00001{bottom:404.641387pt;}
.y10f_c00001{bottom:404.987067pt;}
.y174_c00001{bottom:404.987200pt;}
.yae6_c00001{bottom:405.227067pt;}
.y344_c00001{bottom:405.305307pt;}
.y49e_c00001{bottom:405.340827pt;}
.y751_c00001{bottom:405.678187pt;}
.y1e9_c00001{bottom:405.867067pt;}
.ybaa_c00001{bottom:406.027067pt;}
.yb32_c00001{bottom:406.187067pt;}
.y7ac_c00001{bottom:406.257867pt;}
.ybf8_c00001{bottom:406.347067pt;}
.y2d7_c00001{bottom:406.427067pt;}
.y9c7_c00001{bottom:406.651307pt;}
.ya91_c00001{bottom:407.547067pt;}
.y776_c00001{bottom:407.841387pt;}
.y472_c00001{bottom:407.938000pt;}
.y6f1_c00001{bottom:408.187067pt;}
.y3bd_c00001{bottom:408.835067pt;}
.y138_c00001{bottom:408.907067pt;}
.y19b_c00001{bottom:408.987067pt;}
.y925_c00001{bottom:408.987200pt;}
.y5c4_c00001{bottom:409.327067pt;}
.y436_c00001{bottom:409.358720pt;}
.y8cf_c00001{bottom:409.787067pt;}
.y9da_c00001{bottom:409.947067pt;}
.y221_c00001{bottom:410.507067pt;}
.y7d3_c00001{bottom:411.947067pt;}
.y26e_c00001{bottom:412.104000pt;}
.y532_c00001{bottom:412.187067pt;}
.y965_c00001{bottom:412.488667pt;}
.y4ed_c00001{bottom:412.587067pt;}
.y583_c00001{bottom:412.587200pt;}
.y816_c00001{bottom:412.897307pt;}
.y22c_c00001{bottom:412.987067pt;}
.y1c_c00001{bottom:413.637440pt;}
.y841_c00001{bottom:413.947067pt;}
.y463_c00001{bottom:414.641387pt;}
.y313_c00001{bottom:414.862427pt;}
.y7b7_c00001{bottom:414.903840pt;}
.y75c_c00001{bottom:415.534667pt;}
.y666_c00001{bottom:415.547067pt;}
.y330_c00001{bottom:415.547200pt;}
.y93b_c00001{bottom:416.187067pt;}
.yc0f_c00001{bottom:416.347067pt;}
.yce_c00001{bottom:416.427067pt;}
.y29e_c00001{bottom:416.747067pt;}
.y984_c00001{bottom:416.987067pt;}
.y85d_c00001{bottom:417.491467pt;}
.y90d_c00001{bottom:417.867067pt;}
.y9fc_c00001{bottom:417.947067pt;}
.yb76_c00001{bottom:418.347067pt;}
.y829_c00001{bottom:418.587067pt;}
.y8a8_c00001{bottom:418.827067pt;}
.y200_c00001{bottom:419.627067pt;}
.y40c_c00001{bottom:419.684747pt;}
.ybe6_c00001{bottom:420.107067pt;}
.yc1b_c00001{bottom:420.347067pt;}
.ya06_c00001{bottom:420.587067pt;}
.y750_c00001{bottom:420.641387pt;}
.y569_c00001{bottom:420.987067pt;}
.y3bc_c00001{bottom:421.071067pt;}
.y7ab_c00001{bottom:421.301227pt;}
.yb07_c00001{bottom:421.387067pt;}
.y52_c00001{bottom:421.467067pt;}
.y343_c00001{bottom:421.627067pt;}
.y5c3_c00001{bottom:421.648187pt;}
.y49d_c00001{bottom:421.662587pt;}
.y435_c00001{bottom:421.679840pt;}
.y9c6_c00001{bottom:421.694667pt;}
.y70b_c00001{bottom:422.187067pt;}
.ybbe_c00001{bottom:422.347067pt;}
.y775_c00001{bottom:422.884747pt;}
.y471_c00001{bottom:422.901200pt;}
.y98d_c00001{bottom:422.907067pt;}
.y8f7_c00001{bottom:423.547067pt;}
.y8fc_c00001{bottom:423.547200pt;}
.y800_c00001{bottom:423.787067pt;}
.y636_c00001{bottom:423.947200pt;}
.ya4a_c00001{bottom:424.187067pt;}
.y54e_c00001{bottom:424.347200pt;}
.y3fd_c00001{bottom:424.827067pt;}
.y2ec_c00001{bottom:424.907067pt;}
.y7e_c00001{bottom:424.987067pt;}
.yac_c00001{bottom:425.147200pt;}
.y512_c00001{bottom:425.467200pt;}
.y612_c00001{bottom:425.547200pt;}
.yed_c00001{bottom:425.867067pt;}
.y1b_c00001{bottom:425.873440pt;}
.y3e6_c00001{bottom:426.187067pt;}
.y380_c00001{bottom:426.347067pt;}
.y4c6_c00001{bottom:426.747067pt;}
.y26d_c00001{bottom:427.067200pt;}
.ya80_c00001{bottom:427.147067pt;}
.y7e7_c00001{bottom:427.498507pt;}
.y319_c00001{bottom:427.627067pt;}
.y14d_c00001{bottom:427.627200pt;}
.y815_c00001{bottom:427.860507pt;}
.ya38_c00001{bottom:428.187200pt;}
.y482_c00001{bottom:428.827200pt;}
.y972_c00001{bottom:428.987067pt;}
.y462_c00001{bottom:429.684747pt;}
.y6d0_c00001{bottom:429.787067pt;}
.y7b6_c00001{bottom:429.947200pt;}
.y9f2_c00001{bottom:430.219067pt;}
.yb57_c00001{bottom:430.267067pt;}
.y75b_c00001{bottom:430.497867pt;}
.y933_c00001{bottom:430.507067pt;}
.y890_c00001{bottom:430.987200pt;}
.y3f2_c00001{bottom:431.547067pt;}
.y1c4_c00001{bottom:431.547200pt;}
.y189_c00001{bottom:431.707067pt;}
.y251_c00001{bottom:431.947067pt;}
.y999_c00001{bottom:433.067067pt;}
.y5ed_c00001{bottom:433.227067pt;}
.y5c2_c00001{bottom:433.884187pt;}
.y49c_c00001{bottom:433.898587pt;}
.y434_c00001{bottom:433.915840pt;}
.y78d_c00001{bottom:434.027067pt;}
.yc0e_c00001{bottom:434.347067pt;}
.y86c_c00001{bottom:434.427067pt;}
.y40b_c00001{bottom:434.647947pt;}
.ya1a_c00001{bottom:434.747067pt;}
.y85c_c00001{bottom:434.846107pt;}
.yacd_c00001{bottom:434.907200pt;}
.y1b9_c00001{bottom:434.987067pt;}
.y342_c00001{bottom:435.147067pt;}
.y964_c00001{bottom:435.454507pt;}
.y2bb_c00001{bottom:435.467067pt;}
.y10e_c00001{bottom:435.627067pt;}
.y173_c00001{bottom:435.627200pt;}
.y74f_c00001{bottom:435.684747pt;}
.yb75_c00001{bottom:436.347067pt;}
.y1e8_c00001{bottom:436.507067pt;}
.y9c5_c00001{bottom:436.657867pt;}
.ya63_c00001{bottom:437.387067pt;}
.y312_c00001{bottom:437.828267pt;}
.y774_c00001{bottom:437.847947pt;}
.y1a_c00001{bottom:438.109440pt;}
.ya90_c00001{bottom:438.187067pt;}
.yc1a_c00001{bottom:438.347067pt;}
.y6f0_c00001{bottom:438.747067pt;}
.y137_c00001{bottom:439.547067pt;}
.y924_c00001{bottom:439.547200pt;}
.yba9_c00001{bottom:440.027067pt;}
.y59d_c00001{bottom:440.347067pt;}
.y94f_c00001{bottom:440.587067pt;}
.y91a_c00001{bottom:441.067067pt;}
.y7e6_c00001{bottom:442.461707pt;}
.y531_c00001{bottom:442.747067pt;}
.y814_c00001{bottom:442.903867pt;}
.y582_c00001{bottom:443.147200pt;}
.y4ec_c00001{bottom:443.227067pt;}
.y22b_c00001{bottom:443.627067pt;}
.y7aa_c00001{bottom:444.267067pt;}
.yc31_c00001{bottom:444.347067pt;}
.y461_c00001{bottom:444.647947pt;}
.yb31_c00001{bottom:444.827067pt;}
.y2d6_c00001{bottom:444.987067pt;}
.y9f1_c00001{bottom:445.262427pt;}
.y75a_c00001{bottom:445.541227pt;}
.y470_c00001{bottom:445.947200pt;}
.y5c1_c00001{bottom:446.120187pt;}
.y49b_c00001{bottom:446.134587pt;}
.y433_c00001{bottom:446.151840pt;}
.y665_c00001{bottom:446.187067pt;}
.y3bb_c00001{bottom:446.827067pt;}
.y983_c00001{bottom:447.547067pt;}
.y675_c00001{bottom:447.787067pt;}
.y68d_c00001{bottom:448.267067pt;}
.y9fb_c00001{bottom:448.587067pt;}
.y828_c00001{bottom:449.147067pt;}
.y8a7_c00001{bottom:449.387067pt;}
.y40a_c00001{bottom:449.691307pt;}
.ycd_c00001{bottom:449.695467pt;}
.y85b_c00001{bottom:449.809307pt;}
.y1ff_c00001{bottom:450.187067pt;}
.y5fa_c00001{bottom:450.187200pt;}
.y19_c00001{bottom:450.430560pt;}
.y963_c00001{bottom:450.497867pt;}
.y7d2_c00001{bottom:450.587067pt;}
.y74e_c00001{bottom:450.647947pt;}
.ya05_c00001{bottom:451.227067pt;}
.y71f_c00001{bottom:451.547067pt;}
.y568_c00001{bottom:451.627067pt;}
.y9c4_c00001{bottom:451.701227pt;}
.yc0d_c00001{bottom:452.347067pt;}
.y840_c00001{bottom:452.587067pt;}
.y70a_c00001{bottom:452.827067pt;}
.y311_c00001{bottom:452.871627pt;}
.y773_c00001{bottom:452.891307pt;}
.y341_c00001{bottom:453.547067pt;}
.ybe5_c00001{bottom:454.107067pt;}
.y32f_c00001{bottom:454.187067pt;}
.y8f1_c00001{bottom:454.187200pt;}
.y7ff_c00001{bottom:454.347067pt;}
.y72f_c00001{bottom:454.747067pt;}
.y29d_c00001{bottom:455.387067pt;}
.y2eb_c00001{bottom:455.467067pt;}
.y7d_c00001{bottom:455.547067pt;}
.y511_c00001{bottom:456.107067pt;}
.y611_c00001{bottom:456.187067pt;}
.ybbd_c00001{bottom:456.347067pt;}
.y90c_c00001{bottom:456.427067pt;}
.y3e5_c00001{bottom:456.747067pt;}
.y37f_c00001{bottom:456.987067pt;}
.y4c5_c00001{bottom:457.387067pt;}
.y7e5_c00001{bottom:457.505067pt;}
.y51_c00001{bottom:457.787067pt;}
.y813_c00001{bottom:457.867067pt;}
.yba8_c00001{bottom:458.027067pt;}
.y2fc_c00001{bottom:458.187067pt;}
.ybf7_c00001{bottom:458.347067pt;}
.y5c0_c00001{bottom:458.441307pt;}
.y49a_c00001{bottom:458.455707pt;}
.y432_c00001{bottom:458.472960pt;}
.yab_c00001{bottom:458.478907pt;}
.ya37_c00001{bottom:458.747067pt;}
.y971_c00001{bottom:459.627067pt;}
.y460_c00001{bottom:459.691307pt;}
.yb06_c00001{bottom:460.027067pt;}
.y9f0_c00001{bottom:460.225627pt;}
.y6cf_c00001{bottom:460.427067pt;}
.y932_c00001{bottom:461.067067pt;}
.y481_c00001{bottom:462.097147pt;}
.yec_c00001{bottom:462.187067pt;}
.y1c3_c00001{bottom:462.187200pt;}
.y54d_c00001{bottom:462.987067pt;}
.y26c_c00001{bottom:463.387067pt;}
.yae5_c00001{bottom:463.547067pt;}
.y5ec_c00001{bottom:463.787067pt;}
.yb56_c00001{bottom:464.267067pt;}
.y78c_c00001{bottom:464.587067pt;}
.y409_c00001{bottom:464.654507pt;}
.ycc_c00001{bottom:464.738827pt;}
.y85a_c00001{bottom:464.852667pt;}
.y88f_c00001{bottom:464.944587pt;}
.y86b_c00001{bottom:464.987067pt;}
.y3ba_c00001{bottom:465.227067pt;}
.ya19_c00001{bottom:465.387067pt;}
.y962_c00001{bottom:465.461067pt;}
.yaad_c00001{bottom:465.547067pt;}
.y1b8_c00001{bottom:465.627067pt;}
.y74d_c00001{bottom:465.691307pt;}
.y14c_c00001{bottom:466.187067pt;}
.y220_c00001{bottom:466.267067pt;}
.y18_c00001{bottom:466.667200pt;}
.y310_c00001{bottom:467.834827pt;}
.y772_c00001{bottom:467.854507pt;}
.ya62_c00001{bottom:468.027067pt;}
.y759_c00001{bottom:468.507067pt;}
.ya8f_c00001{bottom:468.747067pt;}
.yac5_c00001{bottom:468.828509pt;}
.y6ef_c00001{bottom:469.387067pt;}
.y136_c00001{bottom:470.107067pt;}
.y160_c00001{bottom:470.187067pt;}
.y188_c00001{bottom:470.267067pt;}
.yb74_c00001{bottom:470.347067pt;}
.y250_c00001{bottom:470.587067pt;}
.y5bf_c00001{bottom:470.677307pt;}
.y499_c00001{bottom:470.691707pt;}
.y431_c00001{bottom:470.708960pt;}
.y59c_c00001{bottom:470.987067pt;}
.y94e_c00001{bottom:471.147067pt;}
.y919_c00001{bottom:471.707067pt;}
.y2ba_c00001{bottom:471.787067pt;}
.y340_c00001{bottom:471.947067pt;}
.ybe4_c00001{bottom:472.107067pt;}
.yc21_c00001{bottom:472.347067pt;}
.y7e4_c00001{bottom:472.468267pt;}
.y530_c00001{bottom:473.387067pt;}
.yaa_c00001{bottom:473.442107pt;}
.y4eb_c00001{bottom:473.787067pt;}
.y10d_c00001{bottom:474.187067pt;}
.ybbc_c00001{bottom:474.347067pt;}
.y45f_c00001{bottom:474.654507pt;}
.y9c3_c00001{bottom:474.667067pt;}
.y1e7_c00001{bottom:475.067067pt;}
.y9ef_c00001{bottom:475.268987pt;}
.yb30_c00001{bottom:475.387067pt;}
.y2d5_c00001{bottom:475.627067pt;}
.yba7_c00001{bottom:476.027067pt;}
.y581_c00001{bottom:476.484747pt;}
.y664_c00001{bottom:476.747067pt;}
.y480_c00001{bottom:477.140507pt;}
.y982_c00001{bottom:478.187067pt;}
.y923_c00001{bottom:478.187200pt;}
.yc30_c00001{bottom:478.347067pt;}
.y9fa_c00001{bottom:479.147067pt;}
.y408_c00001{bottom:479.697867pt;}
.ycb_c00001{bottom:479.702027pt;}
.y635_c00001{bottom:479.707067pt;}
.y827_c00001{bottom:479.787067pt;}
.y859_c00001{bottom:479.815867pt;}
.y8a6_c00001{bottom:480.027067pt;}
.y17_c00001{bottom:480.187067pt;}
.y7a9_c00001{bottom:480.587067pt;}
.y74c_c00001{bottom:480.654507pt;}
.y7d1_c00001{bottom:481.147067pt;}
.y281_c00001{bottom:482.187067pt;}
.y88e_c00001{bottom:482.219067pt;}
.yb55_c00001{bottom:482.267067pt;}
.y30f_c00001{bottom:482.878187pt;}
.y771_c00001{bottom:482.897867pt;}
.y5be_c00001{bottom:482.913307pt;}
.y498_c00001{bottom:482.927707pt;}
.y430_c00001{bottom:482.944960pt;}
.y83f_c00001{bottom:483.147067pt;}
.y709_c00001{bottom:483.387067pt;}
.y3b9_c00001{bottom:483.627067pt;}
.y98c_c00001{bottom:484.107067pt;}
.y32e_c00001{bottom:484.747067pt;}
.y8f0_c00001{bottom:484.747200pt;}
.y674_c00001{bottom:484.903067pt;}
.y7fe_c00001{bottom:484.987067pt;}
.ya04_c00001{bottom:485.200347pt;}
.y72e_c00001{bottom:485.387067pt;}
.y29c_c00001{bottom:485.947067pt;}
.y7c_c00001{bottom:486.187067pt;}
.y510_c00001{bottom:486.667067pt;}
.y610_c00001{bottom:486.747067pt;}
.y90b_c00001{bottom:487.067067pt;}
.yac6_c00001{bottom:487.151977pt;}
.y3e4_c00001{bottom:487.387067pt;}
.y7e3_c00001{bottom:487.511627pt;}
.y37e_c00001{bottom:487.547067pt;}
.y50_c00001{bottom:488.347067pt;}
.y961_c00001{bottom:488.507067pt;}
.y3fc_c00001{bottom:488.747067pt;}
.y1fe_c00001{bottom:488.827067pt;}
.y5f9_c00001{bottom:488.827200pt;}
.y45e_c00001{bottom:489.697867pt;}
.y970_c00001{bottom:490.187067pt;}
.y9ee_c00001{bottom:490.232187pt;}
.yc19_c00001{bottom:490.347067pt;}
.yb05_c00001{bottom:490.587067pt;}
.yac4_c00001{bottom:490.986136pt;}
.y580_c00001{bottom:491.447947pt;}
.y931_c00001{bottom:491.707067pt;}
.y47f_c00001{bottom:492.103707pt;}
.ybbb_c00001{bottom:492.347067pt;}
.ya36_c00001{bottom:492.732747pt;}
.yeb_c00001{bottom:492.747067pt;}
.y54c_c00001{bottom:493.547067pt;}
.yacc_c00001{bottom:493.867067pt;}
.y26b_c00001{bottom:493.947067pt;}
.y2ea_c00001{bottom:494.107067pt;}
.y812_c00001{bottom:494.187067pt;}
.y5eb_c00001{bottom:494.427067pt;}
.y407_c00001{bottom:494.661067pt;}
.y858_c00001{bottom:494.859227pt;}
.y5bd_c00001{bottom:495.234427pt;}
.y497_c00001{bottom:495.248827pt;}
.y42f_c00001{bottom:495.266080pt;}
.y86a_c00001{bottom:495.627067pt;}
.y74b_c00001{bottom:495.697867pt;}
.y4c4_c00001{bottom:495.947067pt;}
.y1b7_c00001{bottom:496.187067pt;}
.ya7f_c00001{bottom:496.347067pt;}
.ya9_c00001{bottom:496.488107pt;}
.y14b_c00001{bottom:496.827067pt;}
.y88d_c00001{bottom:497.262427pt;}
.y30e_c00001{bottom:497.841387pt;}
.y770_c00001{bottom:497.861067pt;}
.y16_c00001{bottom:498.587067pt;}
.y6ce_c00001{bottom:498.987067pt;}
.ya8e_c00001{bottom:499.387067pt;}
.y135_c00001{bottom:500.747067pt;}
.y1c2_c00001{bottom:500.747200pt;}
.y187_c00001{bottom:500.907067pt;}
.y24f_c00001{bottom:501.147067pt;}
.y59b_c00001{bottom:501.547067pt;}
.y94d_c00001{bottom:501.787067pt;}
.y918_c00001{bottom:502.267067pt;}
.y2b9_c00001{bottom:502.347067pt;}
.y7e2_c00001{bottom:502.474827pt;}
.yca_c00001{bottom:502.734667pt;}
.y78b_c00001{bottom:503.227067pt;}
.ya18_c00001{bottom:503.947067pt;}
.yaac_c00001{bottom:504.187067pt;}
.yc0c_c00001{bottom:504.347067pt;}
.y4ea_c00001{bottom:504.427067pt;}
.y9d9_c00001{bottom:504.503867pt;}
.y45d_c00001{bottom:504.661067pt;}
.y10c_c00001{bottom:504.827067pt;}
.y9ed_c00001{bottom:505.275547pt;}
.y1e6_c00001{bottom:505.707067pt;}
.yb2f_c00001{bottom:506.027067pt;}
.ybe3_c00001{bottom:506.107067pt;}
.y2d4_c00001{bottom:506.187067pt;}
.yb73_c00001{bottom:506.347067pt;}
.y57f_c00001{bottom:506.491307pt;}
.y47e_c00001{bottom:507.147067pt;}
.y496_c00001{bottom:507.484827pt;}
.y42e_c00001{bottom:507.502080pt;}
.y6ee_c00001{bottom:507.947067pt;}
.y3fb_c00001{bottom:508.187067pt;}
.ybcb_c00001{bottom:508.347067pt;}
.y15f_c00001{bottom:508.747067pt;}
.y922_c00001{bottom:508.747200pt;}
.y857_c00001{bottom:509.822427pt;}
.yba6_c00001{bottom:510.027067pt;}
.ya35_c00001{bottom:510.087387pt;}
.y634_c00001{bottom:510.267067pt;}
.ybba_c00001{bottom:510.347067pt;}
.y8a5_c00001{bottom:510.587067pt;}
.y74a_c00001{bottom:510.661067pt;}
.y9c2_c00001{bottom:510.987067pt;}
.y7a8_c00001{bottom:511.147067pt;}
.ya8_c00001{bottom:511.451307pt;}
.y5bc_c00001{bottom:511.471067pt;}
.y7d0_c00001{bottom:511.787067pt;}
.y52f_c00001{bottom:511.947067pt;}
.y88c_c00001{bottom:512.225627pt;}
.yc2f_c00001{bottom:512.347067pt;}
.y71e_c00001{bottom:512.747067pt;}
.y22a_c00001{bottom:512.827067pt;}
.y30d_c00001{bottom:512.884747pt;}
.y826_c00001{bottom:513.034827pt;}
.y83e_c00001{bottom:513.787067pt;}
.y98b_c00001{bottom:514.747067pt;}
.y32d_c00001{bottom:515.387067pt;}
.y8ef_c00001{bottom:515.387200pt;}
.y7fd_c00001{bottom:515.547067pt;}
.y72d_c00001{bottom:515.947067pt;}
.y29b_c00001{bottom:516.587067pt;}
.yb0f_c00001{bottom:516.747067pt;}
.y15_c00001{bottom:516.987067pt;}
.y7e1_c00001{bottom:517.518187pt;}
.y90a_c00001{bottom:517.627067pt;}
.yc9_c00001{bottom:517.697867pt;}
.y406_c00001{bottom:517.707067pt;}
.y9f9_c00001{bottom:517.787067pt;}
.y3e3_c00001{bottom:517.947067pt;}
.ya54_c00001{bottom:518.663707pt;}
.y4f_c00001{bottom:518.987067pt;}
.y1fd_c00001{bottom:519.387067pt;}
.y5f8_c00001{bottom:519.387200pt;}
.y7b_c00001{bottom:519.431627pt;}
.y9d8_c00001{bottom:519.467067pt;}
.y495_c00001{bottom:519.720827pt;}
.y42d_c00001{bottom:519.738080pt;}
.y9ec_c00001{bottom:520.238747pt;}
.y96f_c00001{bottom:520.827067pt;}
.y37d_c00001{bottom:520.878187pt;}
.y76f_c00001{bottom:520.907067pt;}
.yb04_c00001{bottom:521.227067pt;}
.y57e_c00001{bottom:521.454507pt;}
.yacb_c00001{bottom:521.787067pt;}
.y930_c00001{bottom:522.267067pt;}
.yc0b_c00001{bottom:522.347067pt;}
.yea_c00001{bottom:523.387067pt;}
.y127_c00001{bottom:523.387200pt;}
.y708_c00001{bottom:523.467067pt;}
.y5bb_c00001{bottom:523.707067pt;}
.ybe2_c00001{bottom:524.107067pt;}
.y54b_c00001{bottom:524.187067pt;}
.yb72_c00001{bottom:524.347067pt;}
.y26a_c00001{bottom:524.587067pt;}
.y2e9_c00001{bottom:524.667067pt;}
.y811_c00001{bottom:524.747067pt;}
.y856_c00001{bottom:524.865787pt;}
.ya34_c00001{bottom:525.050587pt;}
.y50f_c00001{bottom:525.307067pt;}
.y60f_c00001{bottom:525.387067pt;}
.y869_c00001{bottom:526.187067pt;}
.ybca_c00001{bottom:526.347067pt;}
.ya7_c00001{bottom:526.494667pt;}
.y4c3_c00001{bottom:526.587067pt;}
.y1b6_c00001{bottom:526.827067pt;}
.ya7e_c00001{bottom:526.987067pt;}
.y88b_c00001{bottom:527.268987pt;}
.y14a_c00001{bottom:527.387067pt;}
.y21f_c00001{bottom:527.467067pt;}
.y45c_c00001{bottom:527.707067pt;}
.y30c_c00001{bottom:527.847947pt;}
.yba5_c00001{bottom:528.027067pt;}
.y825_c00001{bottom:528.078187pt;}
.yc27_c00001{bottom:528.347067pt;}
.y2fb_c00001{bottom:528.827067pt;}
.y6cd_c00001{bottom:529.627067pt;}
.yc2e_c00001{bottom:530.347067pt;}
.y20f_c00001{bottom:531.387067pt;}
.y1c1_c00001{bottom:531.387200pt;}
.y186_c00001{bottom:531.467067pt;}
.y24e_c00001{bottom:531.787067pt;}
.ya61_c00001{bottom:531.928107pt;}
.y494_c00001{bottom:532.041947pt;}
.y42c_c00001{bottom:532.059200pt;}
.y94c_c00001{bottom:532.347067pt;}
.y7e0_c00001{bottom:532.481387pt;}
.yc8_c00001{bottom:532.741227pt;}
.y917_c00001{bottom:532.907067pt;}
.y2b8_c00001{bottom:532.987067pt;}
.y749_c00001{bottom:533.707067pt;}
.y78a_c00001{bottom:533.787067pt;}
.y5ea_c00001{bottom:534.427067pt;}
.y7a_c00001{bottom:534.474987pt;}
.ya17_c00001{bottom:534.587067pt;}
.yaab_c00001{bottom:534.747067pt;}
.y59a_c00001{bottom:534.891307pt;}
.y9eb_c00001{bottom:535.282107pt;}
.y192_c00001{bottom:535.387067pt;}
.y37c_c00001{bottom:535.841387pt;}
.yac3_c00001{bottom:536.265226pt;}
.y1e5_c00001{bottom:536.267067pt;}
.y57d_c00001{bottom:536.497867pt;}
.yb2e_c00001{bottom:536.587067pt;}
.y2d3_c00001{bottom:536.827067pt;}
.y5ba_c00001{bottom:537.227067pt;}
.ya8d_c00001{bottom:537.947067pt;}
.y6ed_c00001{bottom:538.587067pt;}
.y134_c00001{bottom:539.307067pt;}
.y15e_c00001{bottom:539.387067pt;}
.y921_c00001{bottom:539.387200pt;}
.y855_c00001{bottom:539.828987pt;}
.ya33_c00001{bottom:540.093947pt;}
.y8ce_c00001{bottom:540.187067pt;}
.yc0a_c00001{bottom:540.347067pt;}
.y633_c00001{bottom:540.907067pt;}
.y8a4_c00001{bottom:541.227067pt;}
.ya6_c00001{bottom:541.457867pt;}
.y9c1_c00001{bottom:541.547067pt;}
.y7a7_c00001{bottom:541.787067pt;}
.y88a_c00001{bottom:542.232187pt;}
.y7cf_c00001{bottom:542.347067pt;}
.y52e_c00001{bottom:542.587067pt;}
.y30b_c00001{bottom:542.891307pt;}
.y4e9_c00001{bottom:542.987067pt;}
.y824_c00001{bottom:543.041387pt;}
.y10b_c00001{bottom:543.387067pt;}
.y493_c00001{bottom:544.277947pt;}
.y42b_c00001{bottom:544.295200pt;}
.y83d_c00001{bottom:544.347067pt;}
.y98a_c00001{bottom:545.307067pt;}
.y32c_c00001{bottom:545.947067pt;}
.y8ee_c00001{bottom:545.947200pt;}
.yba4_c00001{bottom:546.027067pt;}
.y7fc_c00001{bottom:546.187067pt;}
.ya49_c00001{bottom:546.587067pt;}
.ya60_c00001{bottom:546.891307pt;}
.y29a_c00001{bottom:547.147067pt;}
.y9a5_c00001{bottom:547.387067pt;}
.y7df_c00001{bottom:547.524747pt;}
.y3b8_c00001{bottom:547.787067pt;}
.y9f8_c00001{bottom:548.347067pt;}
.y3e2_c00001{bottom:548.587067pt;}
.yaca_c00001{bottom:548.747067pt;}
.y93a_c00001{bottom:549.303867pt;}
.y79_c00001{bottom:549.438187pt;}
.y4e_c00001{bottom:549.547067pt;}
.y599_c00001{bottom:549.854507pt;}
.y8e9_c00001{bottom:550.027067pt;}
.y5f7_c00001{bottom:550.027200pt;}
.y9ea_c00001{bottom:550.245307pt;}
.y37b_c00001{bottom:550.884747pt;}
.y9e0_c00001{bottom:551.387067pt;}
.y567_c00001{bottom:551.387200pt;}
.y57c_c00001{bottom:551.461067pt;}
.yb03_c00001{bottom:551.787067pt;}
.yad7_c00001{bottom:552.827067pt;}
.y405_c00001{bottom:553.947067pt;}
.y126_c00001{bottom:553.947200pt;}
.y72c_c00001{bottom:554.587067pt;}
.ya32_c00001{bottom:555.057147pt;}
.y269_c00001{bottom:555.147067pt;}
.y810_c00001{bottom:555.387067pt;}
.y5b9_c00001{bottom:555.627067pt;}
.yc7_c00001{bottom:555.707067pt;}
.y50e_c00001{bottom:555.867067pt;}
.y60e_c00001{bottom:555.947067pt;}
.y909_c00001{bottom:556.267067pt;}
.ya5_c00001{bottom:556.501227pt;}
.y492_c00001{bottom:556.513947pt;}
.y42a_c00001{bottom:556.531200pt;}
.y868_c00001{bottom:556.827067pt;}
.y4c2_c00001{bottom:557.147067pt;}
.y889_c00001{bottom:557.275547pt;}
.y1b5_c00001{bottom:557.387067pt;}
.y54a_c00001{bottom:557.451307pt;}
.ya7d_c00001{bottom:557.547067pt;}
.y30a_c00001{bottom:557.854507pt;}
.y1fc_c00001{bottom:558.027067pt;}
.y823_c00001{bottom:558.084747pt;}
.ybe1_c00001{bottom:558.107067pt;}
.yb8f_c00001{bottom:558.347067pt;}
.y96e_c00001{bottom:559.387067pt;}
.yb54_c00001{bottom:559.467067pt;}
.y6cc_c00001{bottom:560.187067pt;}
.ybc9_c00001{bottom:560.347067pt;}
.y92f_c00001{bottom:560.907067pt;}
.ya5f_c00001{bottom:561.934667pt;}
.ye9_c00001{bottom:561.947067pt;}
.y185_c00001{bottom:562.107067pt;}
.y24d_c00001{bottom:562.347067pt;}
.y7de_c00001{bottom:562.487947pt;}
.y854_c00001{bottom:562.874987pt;}
.y916_c00001{bottom:563.467067pt;}
.y14_c00001{bottom:563.787067pt;}
.y45b_c00001{bottom:563.947067pt;}
.y939_c00001{bottom:564.267067pt;}
.yc2d_c00001{bottom:564.347067pt;}
.y789_c00001{bottom:564.427067pt;}
.y78_c00001{bottom:564.481547pt;}
.y2e8_c00001{bottom:564.667067pt;}
.y598_c00001{bottom:564.897867pt;}
.y9e9_c00001{bottom:565.288667pt;}
.yaaa_c00001{bottom:565.387067pt;}
.y94b_c00001{bottom:565.684187pt;}
.y37a_c00001{bottom:565.847947pt;}
.y149_c00001{bottom:566.027067pt;}
.y1e4_c00001{bottom:566.907067pt;}
.yb2d_c00001{bottom:567.227067pt;}
.y2d2_c00001{bottom:567.387067pt;}
.y766_c00001{bottom:567.467067pt;}
.ya8c_c00001{bottom:568.587067pt;}
.y491_c00001{bottom:568.749947pt;}
.y429_c00001{bottom:568.767200pt;}
.y6ec_c00001{bottom:569.147067pt;}
.y133_c00001{bottom:569.947067pt;}
.y1c0_c00001{bottom:569.947200pt;}
.ya31_c00001{bottom:570.100507pt;}
.ya16_c00001{bottom:570.407867pt;}
.y8cd_c00001{bottom:570.747067pt;}
.y632_c00001{bottom:571.467067pt;}
.y2b7_c00001{bottom:571.547067pt;}
.y8a3_c00001{bottom:571.787067pt;}
.y9c0_c00001{bottom:572.187067pt;}
.y888_c00001{bottom:572.238747pt;}
.y549_c00001{bottom:572.494667pt;}
.y309_c00001{bottom:572.897867pt;}
.y822_c00001{bottom:573.047947pt;}
.y52d_c00001{bottom:573.147067pt;}
.y4e8_c00001{bottom:573.627067pt;}
.y10a_c00001{bottom:574.027067pt;}
.y57b_c00001{bottom:574.507067pt;}
.y83c_c00001{bottom:574.987067pt;}
.y7a6_c00001{bottom:575.022427pt;}
.y191_c00001{bottom:575.467067pt;}
.y7ce_c00001{bottom:575.675787pt;}
.y989_c00001{bottom:575.947067pt;}
.ybe0_c00001{bottom:576.107067pt;}
.yb71_c00001{bottom:576.347067pt;}
.y663_c00001{bottom:576.587067pt;}
.y71d_c00001{bottom:576.619307pt;}
.yac9_c00001{bottom:576.667067pt;}
.y5e9_c00001{bottom:576.882347pt;}
.ya5e_c00001{bottom:576.897867pt;}
.y7dd_c00001{bottom:577.531307pt;}
.y299_c00001{bottom:577.787067pt;}
.y853_c00001{bottom:577.838187pt;}
.y981_c00001{bottom:577.947067pt;}
.y3b7_c00001{bottom:578.347067pt;}
.y9f7_c00001{bottom:578.987067pt;}
.y707_c00001{bottom:579.147067pt;}
.y77_c00001{bottom:579.444747pt;}
.ya4_c00001{bottom:579.467067pt;}
.y597_c00001{bottom:579.861067pt;}
.yba3_c00001{bottom:580.027067pt;}
.y4d_c00001{bottom:580.187067pt;}
.yc26_c00001{bottom:580.347067pt;}
.y8e8_c00001{bottom:580.587067pt;}
.yac7_c00001{bottom:580.591072pt;}
.y94a_c00001{bottom:580.647387pt;}
.y379_c00001{bottom:580.891307pt;}
.y490_c00001{bottom:581.071067pt;}
.y428_c00001{bottom:581.088320pt;}
.y3e1_c00001{bottom:581.844747pt;}
.y33f_c00001{bottom:582.027067pt;}
.y566_c00001{bottom:582.027200pt;}
.yc2c_c00001{bottom:582.347067pt;}
.yb02_c00001{bottom:582.427067pt;}
.y2fa_c00001{bottom:584.587067pt;}
.y125_c00001{bottom:584.587200pt;}
.y7fb_c00001{bottom:584.747067pt;}
.ya30_c00001{bottom:585.063707pt;}
.y72b_c00001{bottom:585.147067pt;}
.y268_c00001{bottom:585.787067pt;}
.y80f_c00001{bottom:585.947067pt;}
.y50d_c00001{bottom:586.507067pt;}
.y908_c00001{bottom:586.827067pt;}
.y548_c00001{bottom:587.457867pt;}
.y4c1_c00001{bottom:587.787067pt;}
.y308_c00001{bottom:587.861067pt;}
.y1b4_c00001{bottom:588.027067pt;}
.y821_c00001{bottom:588.091307pt;}
.ya7c_c00001{bottom:588.187067pt;}
.y9e8_c00001{bottom:588.254507pt;}
.y1fb_c00001{bottom:588.587067pt;}
.y5f6_c00001{bottom:588.587200pt;}
.y21e_c00001{bottom:588.667067pt;}
.y96d_c00001{bottom:590.027067pt;}
.y7cd_c00001{bottom:590.638987pt;}
.y6cb_c00001{bottom:590.827067pt;}
.y92e_c00001{bottom:591.467067pt;}
.y71c_c00001{bottom:591.662667pt;}
.y5e8_c00001{bottom:591.845547pt;}
.ya5d_c00001{bottom:591.941227pt;}
.yc6_c00001{bottom:592.027067pt;}
.y7dc_c00001{bottom:592.494507pt;}
.ye8_c00001{bottom:592.587067pt;}
.y8f6_c00001{bottom:592.587200pt;}
.y852_c00001{bottom:592.881547pt;}
.y48f_c00001{bottom:593.307067pt;}
.y427_c00001{bottom:593.324320pt;}
.y960_c00001{bottom:593.947067pt;}
.y915_c00001{bottom:594.107067pt;}
.y13_c00001{bottom:594.347067pt;}
.y76_c00001{bottom:594.488107pt;}
.y45a_c00001{bottom:594.587067pt;}
.y788_c00001{bottom:594.987067pt;}
.y887_c00001{bottom:595.284747pt;}
.y867_c00001{bottom:595.387067pt;}
.y949_c00001{bottom:595.690747pt;}
.ya15_c00001{bottom:595.845307pt;}
.y378_c00001{bottom:595.854507pt;}
.y68a_c00001{bottom:595.947067pt;}
.ybb9_c00001{bottom:596.347067pt;}
.y148_c00001{bottom:596.587067pt;}
.y672_c00001{bottom:596.667067pt;}
.y3e0_c00001{bottom:596.888107pt;}
.y1e3_c00001{bottom:597.467067pt;}
.yb2c_c00001{bottom:597.787067pt;}
.yba2_c00001{bottom:598.027067pt;}
.y7a5_c00001{bottom:598.068427pt;}
.ya8b_c00001{bottom:599.147067pt;}
.y6eb_c00001{bottom:599.787067pt;}
.ya2f_c00001{bottom:600.107067pt;}
.y132_c00001{bottom:600.507067pt;}
.y19a_c00001{bottom:600.587067pt;}
.y15d_c00001{bottom:600.587200pt;}
.y24c_c00001{bottom:600.987067pt;}
.y8cc_c00001{bottom:601.387067pt;}
.y184_c00001{bottom:602.107067pt;}
.y2b6_c00001{bottom:602.187067pt;}
.y547_c00001{bottom:602.501227pt;}
.y9bf_c00001{bottom:602.747067pt;}
.y596_c00001{bottom:602.907067pt;}
.y820_c00001{bottom:603.054507pt;}
.y9e7_c00001{bottom:603.297867pt;}
.y68c_c00001{bottom:603.467067pt;}
.y68b_c00001{bottom:603.471067pt;}
.yac8_c00001{bottom:603.627067pt;}
.y4e7_c00001{bottom:604.187067pt;}
.y673_c00001{bottom:604.191067pt;}
.y109_c00001{bottom:604.587067pt;}
.y426_c00001{bottom:605.560320pt;}
.y7cc_c00001{bottom:605.682347pt;}
.y2d1_c00001{bottom:606.027067pt;}
.y71b_c00001{bottom:606.625867pt;}
.y48e_c00001{bottom:606.827067pt;}
.y5e7_c00001{bottom:606.888907pt;}
.y7db_c00001{bottom:607.537867pt;}
.y851_c00001{bottom:607.844747pt;}
.y980_c00001{bottom:608.587067pt;}
.y3b6_c00001{bottom:608.987067pt;}
.y988_c00001{bottom:609.227067pt;}
.y75_c00001{bottom:609.451307pt;}
.y9f6_c00001{bottom:609.547067pt;}
.y706_c00001{bottom:609.787067pt;}
.y886_c00001{bottom:610.247947pt;}
.yb8e_c00001{bottom:610.347067pt;}
.y8a2_c00001{bottom:610.427067pt;}
.y948_c00001{bottom:610.653947pt;}
.y57a_c00001{bottom:610.747200pt;}
.y377_c00001{bottom:610.897867pt;}
.y307_c00001{bottom:610.907067pt;}
.y52c_c00001{bottom:611.787067pt;}
.y3df_c00001{bottom:611.851307pt;}
.yb70_c00001{bottom:612.347067pt;}
.y33e_c00001{bottom:612.587067pt;}
.y565_c00001{bottom:612.587200pt;}
.y7a4_c00001{bottom:613.031627pt;}
.y83b_c00001{bottom:613.547067pt;}
.ybb8_c00001{bottom:614.347067pt;}
.ya5c_c00001{bottom:614.907067pt;}
.y2f9_c00001{bottom:615.147067pt;}
.y32b_c00001{bottom:615.147200pt;}
.y7fa_c00001{bottom:615.387067pt;}
.ya03_c00001{bottom:615.540507pt;}
.ya3_c00001{bottom:615.787067pt;}
.y298_c00001{bottom:616.347067pt;}
.y80e_c00001{bottom:616.587067pt;}
.y50c_c00001{bottom:617.067067pt;}
.y425_c00001{bottom:617.881440pt;}
.y81f_c00001{bottom:618.097867pt;}
.y9e6_c00001{bottom:618.261067pt;}
.y4c0_c00001{bottom:618.347067pt;}
.y1b3_c00001{bottom:618.587067pt;}
.y4c_c00001{bottom:618.747067pt;}
.ya14_c00001{bottom:618.891307pt;}
.y1fa_c00001{bottom:619.227067pt;}
.y5f5_c00001{bottom:619.227200pt;}
.y907_c00001{bottom:620.187067pt;}
.y2e7_c00001{bottom:620.427067pt;}
.y96c_c00001{bottom:620.587067pt;}
.y7cb_c00001{bottom:620.645547pt;}
.y71a_c00001{bottom:621.669227pt;}
.y5e6_c00001{bottom:621.852107pt;}
.y92d_c00001{bottom:622.107067pt;}
.yb01_c00001{bottom:622.427067pt;}
.yc5_c00001{bottom:622.587067pt;}
.y850_c00001{bottom:622.888107pt;}
.ye7_c00001{bottom:623.147067pt;}
.y124_c00001{bottom:623.147200pt;}
.y670_c00001{bottom:623.627067pt;}
.y6ca_c00001{bottom:624.093947pt;}
.y267_c00001{bottom:624.347067pt;}
.y74_c00001{bottom:624.494667pt;}
.y95f_c00001{bottom:624.587067pt;}
.y914_c00001{bottom:624.667067pt;}
.y12_c00001{bottom:624.987067pt;}
.y60d_c00001{bottom:625.147067pt;}
.y48d_c00001{bottom:625.227067pt;}
.y885_c00001{bottom:625.291307pt;}
.y5b8_c00001{bottom:625.461227pt;}
.y546_c00001{bottom:625.467067pt;}
.y947_c00001{bottom:625.697307pt;}
.y376_c00001{bottom:625.861067pt;}
.y866_c00001{bottom:626.027067pt;}
.y3de_c00001{bottom:626.894667pt;}
.y147_c00001{bottom:627.227067pt;}
.y459_c00001{bottom:627.838187pt;}
.y7a3_c00001{bottom:628.074987pt;}
.y1e2_c00001{bottom:628.107067pt;}
.yb8d_c00001{bottom:628.347067pt;}
.y987_c00001{bottom:628.667067pt;}
.yaa9_c00001{bottom:629.250027pt;}
.y424_c00001{bottom:630.117440pt;}
.y6ea_c00001{bottom:630.347067pt;}
.y7da_c00001{bottom:630.503707pt;}
.y131_c00001{bottom:631.147067pt;}
.y15c_c00001{bottom:631.147200pt;}
.y24b_c00001{bottom:631.547067pt;}
.y8cb_c00001{bottom:631.947067pt;}
.ybd4_c00001{bottom:632.347067pt;}
.y631_c00001{bottom:632.667067pt;}
.y2b5_c00001{bottom:632.747067pt;}
.y81e_c00001{bottom:633.061067pt;}
.ya13_c00001{bottom:633.854507pt;}
.yc2b_c00001{bottom:634.347067pt;}
.y4e6_c00001{bottom:634.827067pt;}
.y787_c00001{bottom:635.067067pt;}
.y280_c00001{bottom:635.227067pt;}
.y4f6_c00001{bottom:635.227200pt;}
.y7ca_c00001{bottom:635.688907pt;}
.ya2e_c00001{bottom:636.347067pt;}
.y2d0_c00001{bottom:636.587067pt;}
.y719_c00001{bottom:636.632427pt;}
.y5e5_c00001{bottom:636.895467pt;}
.ya8a_c00001{bottom:637.787067pt;}
.y84f_c00001{bottom:637.851307pt;}
.yac2_c00001{bottom:638.347067pt;}
.y6c9_c00001{bottom:639.137307pt;}
.y4d7_c00001{bottom:639.147067pt;}
.y595_c00001{bottom:639.147200pt;}
.y73_c00001{bottom:639.457867pt;}
.y3b5_c00001{bottom:639.547067pt;}
.y906_c00001{bottom:639.627067pt;}
.y884_c00001{bottom:640.254507pt;}
.y946_c00001{bottom:640.660507pt;}
.y8a1_c00001{bottom:640.987067pt;}
.y9e5_c00001{bottom:641.307067pt;}
.y9be_c00001{bottom:641.387067pt;}
.y579_c00001{bottom:641.387200pt;}
.y3dd_c00001{bottom:641.857867pt;}
.y52b_c00001{bottom:642.347067pt;}
.y423_c00001{bottom:642.353440pt;}
.y458_c00001{bottom:642.881547pt;}
.y7a2_c00001{bottom:643.038187pt;}
.y108_c00001{bottom:643.227067pt;}
.y564_c00001{bottom:643.227200pt;}
.y48c_c00001{bottom:643.627067pt;}
.y671_c00001{bottom:643.943067pt;}
.y83a_c00001{bottom:644.187067pt;}
.yaa8_c00001{bottom:644.213227pt;}
.yb2b_c00001{bottom:644.747067pt;}
.y7d9_c00001{bottom:645.547067pt;}
.y2f8_c00001{bottom:645.787067pt;}
.y32a_c00001{bottom:645.787200pt;}
.y7f9_c00001{bottom:645.947067pt;}
.ybdf_c00001{bottom:646.107067pt;}
.ya2_c00001{bottom:646.347067pt;}
.y297_c00001{bottom:646.987067pt;}
.y306_c00001{bottom:647.147067pt;}
.y9d7_c00001{bottom:647.547067pt;}
.y50b_c00001{bottom:647.707067pt;}
.y705_c00001{bottom:648.347067pt;}
.ya12_c00001{bottom:648.897867pt;}
.y375_c00001{bottom:648.907067pt;}
.y4b_c00001{bottom:649.387067pt;}
.y8e7_c00001{bottom:649.787067pt;}
.y80d_c00001{bottom:649.842107pt;}
.yc25_c00001{bottom:650.347067pt;}
.y7c9_c00001{bottom:650.652107pt;}
.y2e6_c00001{bottom:650.987067pt;}
.y96b_c00001{bottom:651.227067pt;}
.y718_c00001{bottom:651.675787pt;}
.y5e4_c00001{bottom:651.858667pt;}
.y92c_c00001{bottom:652.667067pt;}
.y84e_c00001{bottom:652.894667pt;}
.yc4_c00001{bottom:653.227067pt;}
.ye6_c00001{bottom:653.787067pt;}
.y123_c00001{bottom:653.787200pt;}
.y6c8_c00001{bottom:654.100507pt;}
.ya48_c00001{bottom:654.347067pt;}
.y72_c00001{bottom:654.501227pt;}
.y422_c00001{bottom:654.674560pt;}
.y266_c00001{bottom:654.987067pt;}
.y95e_c00001{bottom:655.147067pt;}
.y883_c00001{bottom:655.297867pt;}
.y11_c00001{bottom:655.547067pt;}
.y945_c00001{bottom:655.703867pt;}
.y60c_c00001{bottom:655.787067pt;}
.y81d_c00001{bottom:656.107067pt;}
.y865_c00001{bottom:656.587067pt;}
.y3dc_c00001{bottom:656.901227pt;}
.y4bf_c00001{bottom:656.987067pt;}
.y1f9_c00001{bottom:657.787067pt;}
.y183_c00001{bottom:657.787200pt;}
.y457_c00001{bottom:657.844747pt;}
.y21d_c00001{bottom:657.867067pt;}
.y7a1_c00001{bottom:658.081547pt;}
.yb53_c00001{bottom:658.107067pt;}
.y1b2_c00001{bottom:658.667067pt;}
.y1e1_c00001{bottom:661.387067pt;}
.y199_c00001{bottom:661.787067pt;}
.y15b_c00001{bottom:661.787200pt;}
.y24a_c00001{bottom:662.187067pt;}
.y630_c00001{bottom:663.307067pt;}
.ya11_c00001{bottom:663.861067pt;}
.y6e9_c00001{bottom:664.323547pt;}
.yc20_c00001{bottom:664.347067pt;}
.y80c_c00001{bottom:664.885467pt;}
.y130_c00001{bottom:665.143627pt;}
.y7c8_c00001{bottom:665.695467pt;}
.y397_c00001{bottom:665.787067pt;}
.y47d_c00001{bottom:665.787200pt;}
.y913_c00001{bottom:666.027067pt;}
.y2b4_c00001{bottom:666.093947pt;}
.yba1_c00001{bottom:666.107067pt;}
.ybb7_c00001{bottom:666.347067pt;}
.y717_c00001{bottom:666.638987pt;}
.y421_c00001{bottom:666.910560pt;}
.ya2d_c00001{bottom:666.987067pt;}
.y146_c00001{bottom:667.227067pt;}
.yaa7_c00001{bottom:667.259227pt;}
.y84d_c00001{bottom:667.857867pt;}
.y4e5_c00001{bottom:668.108267pt;}
.ya89_c00001{bottom:668.347067pt;}
.y6c7_c00001{bottom:669.143867pt;}
.y4d6_c00001{bottom:669.787067pt;}
.y594_c00001{bottom:669.787200pt;}
.y3b4_c00001{bottom:670.187067pt;}
.y8ca_c00001{bottom:670.587067pt;}
.y944_c00001{bottom:670.667067pt;}
.y8a0_c00001{bottom:671.627067pt;}
.y9bd_c00001{bottom:671.947067pt;}
.y578_c00001{bottom:671.947200pt;}
.y456_c00001{bottom:672.888107pt;}
.y7a0_c00001{bottom:673.044747pt;}
.y107_c00001{bottom:673.787067pt;}
.y563_c00001{bottom:673.787200pt;}
.y839_c00001{bottom:674.747067pt;}
.y5e3_c00001{bottom:674.891307pt;}
.y27f_c00001{bottom:675.227067pt;}
.y2f7_c00001{bottom:676.347067pt;}
.y329_c00001{bottom:676.347200pt;}
.y7f8_c00001{bottom:676.587067pt;}
.y2cf_c00001{bottom:676.667067pt;}
.ya1_c00001{bottom:676.987067pt;}
.y71_c00001{bottom:677.467067pt;}
.y9e4_c00001{bottom:677.547067pt;}
.y305_c00001{bottom:677.787067pt;}
.y9d6_c00001{bottom:678.187067pt;}
.y882_c00001{bottom:678.263707pt;}
.y704_c00001{bottom:678.987067pt;}
.y80b_c00001{bottom:679.848667pt;}
.y3db_c00001{bottom:679.867067pt;}
.y4a_c00001{bottom:679.947067pt;}
.ybde_c00001{bottom:680.107067pt;}
.yb8c_c00001{bottom:680.347067pt;}
.y8e6_c00001{bottom:680.427067pt;}
.y7c7_c00001{bottom:680.658667pt;}
.y1e0_c00001{bottom:680.827067pt;}
.y50a_c00001{bottom:680.935067pt;}
.y52a_c00001{bottom:680.987067pt;}
.y2b3_c00001{bottom:681.057147pt;}
.y2e5_c00001{bottom:681.627067pt;}
.y6e8_c00001{bottom:681.678187pt;}
.y716_c00001{bottom:681.682347pt;}
.y33d_c00001{bottom:681.787067pt;}
.yaa6_c00001{bottom:682.222427pt;}
.yb6f_c00001{bottom:682.347067pt;}
.ya7b_c00001{bottom:682.641627pt;}
.y420_c00001{bottom:683.147200pt;}
.y92b_c00001{bottom:683.307067pt;}
.y6c6_c00001{bottom:684.107067pt;}
.ye5_c00001{bottom:684.347067pt;}
.y122_c00001{bottom:684.347200pt;}
.ya47_c00001{bottom:684.987067pt;}
.y374_c00001{bottom:685.147067pt;}
.y265_c00001{bottom:685.547067pt;}
.y10_c00001{bottom:686.187067pt;}
.y12f_c00001{bottom:686.907067pt;}
.y864_c00001{bottom:687.227067pt;}
.y4be_c00001{bottom:687.547067pt;}
.y455_c00001{bottom:687.851307pt;}
.y79f_c00001{bottom:688.088107pt;}
.y1f8_c00001{bottom:688.427067pt;}
.y182_c00001{bottom:688.427200pt;}
.y95d_c00001{bottom:688.487387pt;}
.y60b_c00001{bottom:689.038187pt;}
.y96a_c00001{bottom:689.787067pt;}
.y5e2_c00001{bottom:689.854507pt;}
.y786_c00001{bottom:690.747067pt;}
.y84c_c00001{bottom:690.903867pt;}
.yc3_c00001{bottom:691.787067pt;}
.y198_c00001{bottom:692.347067pt;}
.y15a_c00001{bottom:692.347200pt;}
.y881_c00001{bottom:693.307067pt;}
.y62f_c00001{bottom:693.867067pt;}
.y80a_c00001{bottom:694.892027pt;}
.y249_c00001{bottom:695.460507pt;}
.y509_c00001{bottom:695.978427pt;}
.y2b2_c00001{bottom:696.100507pt;}
.y396_c00001{bottom:696.427067pt;}
.y47c_c00001{bottom:696.427200pt;}
.y6e7_c00001{bottom:696.641387pt;}
.y715_c00001{bottom:696.645547pt;}
.y41f_c00001{bottom:696.667067pt;}
.yaa5_c00001{bottom:697.265787pt;}
.ya2c_c00001{bottom:697.547067pt;}
.ya7a_c00001{bottom:697.684987pt;}
.y21c_c00001{bottom:697.867067pt;}
.ybdd_c00001{bottom:698.107067pt;}
.yb8b_c00001{bottom:698.347067pt;}
.ya88_c00001{bottom:698.987067pt;}
.y1d3_c00001{bottom:700.347067pt;}
.y593_c00001{bottom:700.347200pt;}
.y8c9_c00001{bottom:701.147067pt;}
.y89f_c00001{bottom:702.187067pt;}
.ybf6_c00001{bottom:702.347067pt;}
.y9bc_c00001{bottom:702.587067pt;}
.y577_c00001{bottom:702.587200pt;}
.y454_c00001{bottom:702.894667pt;}
.y79e_c00001{bottom:703.051307pt;}
.y998_c00001{bottom:703.304187pt;}
.y3b3_c00001{bottom:703.447947pt;}
.y95c_c00001{bottom:703.450587pt;}
.y7c6_c00001{bottom:703.691307pt;}
.y60a_c00001{bottom:704.081547pt;}
.y106_c00001{bottom:704.427067pt;}
.y562_c00001{bottom:704.427200pt;}
.y5e1_c00001{bottom:704.897867pt;}
.y838_c00001{bottom:705.387067pt;}
.y84b_c00001{bottom:705.867067pt;}
.y2f6_c00001{bottom:706.987067pt;}
.ya0_c00001{bottom:707.547067pt;}
.y9e3_c00001{bottom:708.187067pt;}
.y304_c00001{bottom:708.347067pt;}
.yae4_c00001{bottom:708.347200pt;}
.y9d5_c00001{bottom:708.747067pt;}
.y703_c00001{bottom:709.547067pt;}
.y809_c00001{bottom:709.855227pt;}
.y248_c00001{bottom:710.503867pt;}
.y49_c00001{bottom:710.587067pt;}
.y508_c00001{bottom:710.941627pt;}
.y2b1_c00001{bottom:711.063707pt;}
.y529_c00001{bottom:711.547067pt;}
.y6e6_c00001{bottom:711.684747pt;}
.y714_c00001{bottom:711.688907pt;}
.yaa4_c00001{bottom:712.228987pt;}
.y33c_c00001{bottom:712.427067pt;}
.ya79_c00001{bottom:712.648187pt;}
.y70_c00001{bottom:713.787200pt;}
.y92a_c00001{bottom:713.867067pt;}
.y1b1_c00001{bottom:714.347067pt;}
.y328_c00001{bottom:714.987067pt;}
.y41e_c00001{bottom:715.067067pt;}
.y7f7_c00001{bottom:715.147067pt;}
.ya46_c00001{bottom:715.547067pt;}
.y373_c00001{bottom:715.787067pt;}
.y264_c00001{bottom:716.187067pt;}
.yc09_c00001{bottom:716.347067pt;}
.y453_c00001{bottom:717.857867pt;}
.y79d_c00001{bottom:718.094667pt;}
.y4bd_c00001{bottom:718.187067pt;}
.yb6e_c00001{bottom:718.347067pt;}
.y3b2_c00001{bottom:718.491307pt;}
.y95b_c00001{bottom:718.493947pt;}
.y7c5_c00001{bottom:718.654507pt;}
.y1f7_c00001{bottom:718.987067pt;}
.y181_c00001{bottom:718.987200pt;}
.y2ce_c00001{bottom:719.044747pt;}
.y5e0_c00001{bottom:719.861067pt;}
.y2e4_c00001{bottom:720.187067pt;}
.y6c5_c00001{bottom:720.427067pt;}
.ya9b_c00001{bottom:720.427200pt;}
.y785_c00001{bottom:721.387067pt;}
.yc2_c00001{bottom:722.427067pt;}
.y121_c00001{bottom:722.987067pt;}
.ya01_c00001{bottom:722.987200pt;}
.ya10_c00001{bottom:723.147067pt;}
.yf_c00001{bottom:724.747067pt;}
.y247_c00001{bottom:725.467067pt;}
.y507_c00001{bottom:725.984987pt;}
.y2b0_c00001{bottom:726.107067pt;}
.y6e5_c00001{bottom:726.647947pt;}
.y713_c00001{bottom:726.652107pt;}
.y395_c00001{bottom:726.987067pt;}
.y4f5_c00001{bottom:726.987200pt;}
.y863_c00001{bottom:727.227067pt;}
.yaa3_c00001{bottom:727.272347pt;}
.ya78_c00001{bottom:727.691547pt;}
.ya2b_c00001{bottom:728.187067pt;}
.y880_c00001{bottom:729.547067pt;}
.ye4_c00001{bottom:730.987067pt;}
.y8c8_c00001{bottom:731.787067pt;}
.ybdc_c00001{bottom:732.107067pt;}
.yb8a_c00001{bottom:732.347067pt;}
.y62e_c00001{bottom:732.507067pt;}
.y89e_c00001{bottom:732.827067pt;}
.y452_c00001{bottom:732.901227pt;}
.y79c_c00001{bottom:733.057867pt;}
.y576_c00001{bottom:733.147200pt;}
.y3b1_c00001{bottom:733.454507pt;}
.y95a_c00001{bottom:733.457147pt;}
.y41d_c00001{bottom:733.467200pt;}
.yb29_c00001{bottom:733.547067pt;}
.y7c4_c00001{bottom:733.697867pt;}
.y2cd_c00001{bottom:734.088107pt;}
.yc05_c00001{bottom:734.347067pt;}
.y105_c00001{bottom:734.987067pt;}
.y758_c00001{bottom:734.987200pt;}
.y9bb_c00001{bottom:735.825627pt;}
.ybb6_c00001{bottom:736.347067pt;}
.y997_c00001{bottom:736.427067pt;}
.y943_c00001{bottom:737.547067pt;}
.y9f_c00001{bottom:738.187067pt;}
.y837_c00001{bottom:738.605387pt;}
.y303_c00001{bottom:738.987067pt;}
.yb00_c00001{bottom:739.387067pt;}
.y9d4_c00001{bottom:739.387200pt;}
.y702_c00001{bottom:740.187067pt;}
.y21b_c00001{bottom:740.347067pt;}
.y506_c00001{bottom:740.948187pt;}
.y6e4_c00001{bottom:741.691307pt;}
.y712_c00001{bottom:741.695467pt;}
.y528_c00001{bottom:742.187067pt;}
.yaa2_c00001{bottom:742.235547pt;}
.ya77_c00001{bottom:742.654747pt;}
.y5df_c00001{bottom:742.907067pt;}
.y33b_c00001{bottom:742.987067pt;}
.y6f_c00001{bottom:744.347200pt;}
.y1b0_c00001{bottom:744.987067pt;}
.y327_c00001{bottom:745.547067pt;}
.y7f6_c00001{bottom:745.787067pt;}
.y72a_c00001{bottom:746.187067pt;}
.y372_c00001{bottom:746.347067pt;}
.y263_c00001{bottom:746.747067pt;}
.y929_c00001{bottom:747.227067pt;}
.y79b_c00001{bottom:748.101227pt;}
.y3b0_c00001{bottom:748.497867pt;}
.y959_c00001{bottom:748.500507pt;}
.y2cc_c00001{bottom:749.051307pt;}
.y48_c00001{bottom:749.147067pt;}
.y8e5_c00001{bottom:749.627067pt;}
.ybdb_c00001{bottom:750.107067pt;}
.yb89_c00001{bottom:750.347067pt;}
.y2e3_c00001{bottom:750.827067pt;}
.y9ba_c00001{bottom:750.868987pt;}
.y6c4_c00001{bottom:750.987067pt;}
.y4bc_c00001{bottom:751.422427pt;}
.yb6d_c00001{bottom:752.347067pt;}
.yc1_c00001{bottom:752.987067pt;}
.y120_c00001{bottom:753.547067pt;}
.y836_c00001{bottom:753.648747pt;}
.ya0f_c00001{bottom:753.787067pt;}
.ybf5_c00001{bottom:754.347067pt;}
.ye_c00001{bottom:755.387067pt;}
.y451_c00001{bottom:755.867067pt;}
.y505_c00001{bottom:755.991547pt;}
.y6e3_c00001{bottom:756.654507pt;}
.y711_c00001{bottom:756.658667pt;}
.y7c3_c00001{bottom:756.663707pt;}
.yaa1_c00001{bottom:757.278907pt;}
.y1f6_c00001{bottom:757.627067pt;}
.ya76_c00001{bottom:757.698107pt;}
.y21a_c00001{bottom:759.787067pt;}
.y784_c00001{bottom:759.947067pt;}
.y87f_c00001{bottom:760.187067pt;}
.ye3_c00001{bottom:761.547067pt;}
.y246_c00001{bottom:761.787067pt;}
.y2af_c00001{bottom:762.347067pt;}
.y62d_c00001{bottom:763.067067pt;}
.y89d_c00001{bottom:763.387067pt;}
.y3af_c00001{bottom:763.461067pt;}
.y958_c00001{bottom:763.463707pt;}
.y2cb_c00001{bottom:764.094667pt;}
.yb28_c00001{bottom:764.187067pt;}
.y104_c00001{bottom:765.627067pt;}
.y9b9_c00001{bottom:765.832187pt;}
.y4bb_c00001{bottom:766.465787pt;}
.y575_c00001{bottom:766.479147pt;}
.y928_c00001{bottom:766.667200pt;}
.ya2a_c00001{bottom:766.747067pt;}
.y180_c00001{bottom:767.067067pt;}
.y942_c00001{bottom:768.187067pt;}
.yc08_c00001{bottom:768.347067pt;}
.y835_c00001{bottom:768.611947pt;}
.y302_c00001{bottom:769.547067pt;}
.y9d3_c00001{bottom:769.947200pt;}
.ybb5_c00001{bottom:770.347067pt;}
.y504_c00001{bottom:770.954747pt;}
.y79a_c00001{bottom:771.067067pt;}
.y6e2_c00001{bottom:771.697867pt;}
.y7c2_c00001{bottom:771.707067pt;}
.y9e_c00001{bottom:772.157147pt;}
.yaff_c00001{bottom:772.647947pt;}
.ya75_c00001{bottom:772.661307pt;}
.y527_c00001{bottom:772.747067pt;}
.y701_c00001{bottom:773.457867pt;}
.y33a_c00001{bottom:773.627067pt;}
.y757_c00001{bottom:775.067067pt;}
.y1af_c00001{bottom:775.547067pt;}
.y688_c00001{bottom:776.107067pt;}
.y662_c00001{bottom:776.187067pt;}
.y7f5_c00001{bottom:776.347067pt;}
.y729_c00001{bottom:776.747067pt;}
.y66f_c00001{bottom:776.983067pt;}
.y66d_c00001{bottom:776.987200pt;}
.y262_c00001{bottom:777.387067pt;}
.y957_c00001{bottom:778.507067pt;}
.y2ca_c00001{bottom:779.057867pt;}
.y41c_c00001{bottom:779.147067pt;}
.y371_c00001{bottom:779.691307pt;}
.y47_c00001{bottom:779.787067pt;}
.yaa0_c00001{bottom:780.244747pt;}
.y2e2_c00001{bottom:781.387067pt;}
.y4ba_c00001{bottom:781.428987pt;}
.y574_c00001{bottom:781.442347pt;}
.y46f_c00001{bottom:781.627067pt;}
.y6e_c00001{bottom:782.987067pt;}
.yc0_c00001{bottom:783.627067pt;}
.y689_c00001{bottom:783.631067pt;}
.y834_c00001{bottom:783.655307pt;}
.ybda_c00001{bottom:784.107067pt;}
.y145_c00001{bottom:784.187067pt;}
.ya0e_c00001{bottom:784.347067pt;}
.y66c_c00001{bottom:784.507067pt;}
.y66e_c00001{bottom:784.511200pt;}
.yd_c00001{bottom:785.947200pt;}
.y503_c00001{bottom:785.998107pt;}
.yb6c_c00001{bottom:786.347067pt;}
.y3ae_c00001{bottom:786.507067pt;}
.yafe_c00001{bottom:787.691307pt;}
.y1f5_c00001{bottom:788.187067pt;}
.ybd3_c00001{bottom:788.347067pt;}
.y700_c00001{bottom:788.501227pt;}
.y9b8_c00001{bottom:788.878187pt;}
.y9d_c00001{bottom:789.431627pt;}
.y8e4_c00001{bottom:789.627067pt;}
.y783_c00001{bottom:790.587067pt;}
.ye2_c00001{bottom:792.187067pt;}
.y245_c00001{bottom:792.347067pt;}
.y2ae_c00001{bottom:792.987067pt;}
.y62c_c00001{bottom:793.707067pt;}
.y2c9_c00001{bottom:794.101227pt;}
.y370_c00001{bottom:794.654507pt;}
.y6e1_c00001{bottom:794.663707pt;}
.yb27_c00001{bottom:794.747067pt;}
.ya9f_c00001{bottom:795.288107pt;}
.ya74_c00001{bottom:795.693947pt;}
.y103_c00001{bottom:796.187067pt;}
.y4b9_c00001{bottom:796.472347pt;}
.y573_c00001{bottom:796.485707pt;}
.ya29_c00001{bottom:797.387067pt;}
.y414_c00001{bottom:797.627067pt;}
.y833_c00001{bottom:798.618507pt;}
.y87e_c00001{bottom:798.747067pt;}
.y66b_c00001{bottom:799.467067pt;}
.y301_c00001{bottom:800.187067pt;}
.y502_c00001{bottom:800.961307pt;}
.y609_c00001{bottom:802.103867pt;}
.ybd9_c00001{bottom:802.107067pt;}
.yb88_c00001{bottom:802.347067pt;}
.yafd_c00001{bottom:802.654507pt;}
.y526_c00001{bottom:803.387067pt;}
.y89c_c00001{bottom:803.467067pt;}
.y9b7_c00001{bottom:803.841387pt;}
.y9df_c00001{bottom:804.187067pt;}
.yb6b_c00001{bottom:804.347067pt;}
.y9c_c00001{bottom:804.474987pt;}
.y229_c00001{bottom:805.627067pt;}
.y1ae_c00001{bottom:806.187067pt;}
.ybf4_c00001{bottom:806.347067pt;}
.y661_c00001{bottom:806.747067pt;}
.y7f4_c00001{bottom:806.987067pt;}
.y728_c00001{bottom:807.387067pt;}
.y296_c00001{bottom:807.947067pt;}
.y9d2_c00001{bottom:808.587200pt;}
.y36f_c00001{bottom:809.697867pt;}
.y6e0_c00001{bottom:809.707067pt;}
.y41b_c00001{bottom:809.787067pt;}
.ya9e_c00001{bottom:810.251307pt;}
.y46_c00001{bottom:810.347067pt;}
.ya73_c00001{bottom:810.657147pt;}
.y572_c00001{bottom:811.448907pt;}
.y6ff_c00001{bottom:811.467067pt;}
.y339_c00001{bottom:812.187067pt;}
.y6d_c00001{bottom:813.547067pt;}
.y832_c00001{bottom:813.661867pt;}
.ybf_c00001{bottom:814.187067pt;}
.y172_c00001{bottom:814.747067pt;}
.y261_c00001{bottom:815.947067pt;}
.y501_c00001{bottom:816.004667pt;}
.yc_c00001{bottom:816.587200pt;}
.y2c8_c00001{bottom:817.067067pt;}
.yafc_c00001{bottom:817.697867pt;}
.ya0d_c00001{bottom:817.700507pt;}
.y9b6_c00001{bottom:818.884747pt;}
.y9b_c00001{bottom:819.438187pt;}
.ya9a_c00001{bottom:820.187067pt;}
.yb87_c00001{bottom:820.347067pt;}
.y782_c00001{bottom:821.147067pt;}
.y2e1_c00001{bottom:821.467067pt;}
.yba0_c00001{bottom:822.347067pt;}
.ye1_c00001{bottom:822.747067pt;}
.y2ad_c00001{bottom:823.547067pt;}
.y62b_c00001{bottom:824.267067pt;}
.y36e_c00001{bottom:824.661067pt;}
.ya9d_c00001{bottom:825.294667pt;}
.yb26_c00001{bottom:825.387067pt;}
.ya72_c00001{bottom:825.700507pt;}
.y571_c00001{bottom:826.492267pt;}
.y394_c00001{bottom:826.827067pt;}
.ya28_c00001{bottom:827.947067pt;}
.y1f4_c00001{bottom:828.267067pt;}
.y831_c00001{bottom:828.625067pt;}
.y87d_c00001{bottom:829.387067pt;}
.y1d2_c00001{bottom:830.747067pt;}
.y500_c00001{bottom:830.967867pt;}
.y244_c00001{bottom:830.987067pt;}
.yafb_c00001{bottom:832.661067pt;}
.ya0c_c00001{bottom:832.663707pt;}
.y9b5_c00001{bottom:833.847947pt;}
.y9a_c00001{bottom:834.481547pt;}
.ybd8_c00001{bottom:836.107067pt;}
.y102_c00001{bottom:836.267067pt;}
.y525_c00001{bottom:836.627707pt;}
.y1ad_c00001{bottom:836.747067pt;}
.y660_c00001{bottom:837.387067pt;}
.y727_c00001{bottom:837.947067pt;}
.yb6a_c00001{bottom:838.347067pt;}
.y295_c00001{bottom:838.587067pt;}
.y3da_c00001{bottom:838.587200pt;}
.y9d1_c00001{bottom:839.147200pt;}
.y7f3_c00001{bottom:840.257867pt;}
.y41a_c00001{bottom:840.347067pt;}
.ya71_c00001{bottom:840.663707pt;}
.ya45_c00001{bottom:841.370507pt;}
.y570_c00001{bottom:841.455467pt;}
.y338_c00001{bottom:842.827067pt;}
.y45_c00001{bottom:843.668427pt;}
.y6c_c00001{bottom:844.187067pt;}
.y171_c00001{bottom:845.387067pt;}
.y6df_c00001{bottom:845.947067pt;}
.y260_c00001{bottom:846.587067pt;}
.yb_c00001{bottom:847.147067pt;}
.y36d_c00001{bottom:847.707067pt;}
.y6fe_c00001{bottom:847.787067pt;}
.y9b4_c00001{bottom:848.891307pt;}
.y99_c00001{bottom:849.444747pt;}
.y6c3_c00001{bottom:850.827067pt;}
.y524_c00001{bottom:851.671067pt;}
.y781_c00001{bottom:851.787067pt;}
.ye0_c00001{bottom:853.387067pt;}
.y4ff_c00001{bottom:854.013867pt;}
.ybe_c00001{bottom:854.267067pt;}
.yb86_c00001{bottom:854.347067pt;}
.y62a_c00001{bottom:854.907067pt;}
.ybd7_c00001{bottom:855.227067pt;}
.y7f2_c00001{bottom:855.301227pt;}
.ya70_c00001{bottom:855.707067pt;}
.yb69_c00001{bottom:856.347067pt;}
.y56f_c00001{bottom:856.498827pt;}
.y2ac_c00001{bottom:856.893947pt;}
.y393_c00001{bottom:857.387067pt;}
.ybf3_c00001{bottom:858.347067pt;}
.ya27_c00001{bottom:858.587067pt;}
.y44_c00001{bottom:858.631627pt;}
.ya44_c00001{bottom:858.644987pt;}
.y89b_c00001{bottom:859.147067pt;}
.y1d1_c00001{bottom:861.387067pt;}
.y243_c00001{bottom:861.547067pt;}
.y8c7_c00001{bottom:862.187067pt;}
.ya9c_c00001{bottom:863.303867pt;}
.y87c_c00001{bottom:863.374427pt;}
.y2e0_c00001{bottom:863.854507pt;}
.y98_c00001{bottom:864.488107pt;}
.y523_c00001{bottom:866.634267pt;}
.y8ed_c00001{bottom:866.827067pt;}
.y1ac_c00001{bottom:867.387067pt;}
.y65f_c00001{bottom:867.947067pt;}
.y4fe_c00001{bottom:868.977067pt;}
.y7c1_c00001{bottom:869.147067pt;}
.y3d9_c00001{bottom:869.147200pt;}
.y56e_c00001{bottom:871.462027pt;}
.y294_c00001{bottom:871.857147pt;}
.yb85_c00001{bottom:872.347067pt;}
.y9d0_c00001{bottom:872.490747pt;}
.y337_c00001{bottom:873.387067pt;}
.y43_c00001{bottom:873.674987pt;}
.ya43_c00001{bottom:873.688347pt;}
.yb9f_c00001{bottom:874.347067pt;}
.y6b_c00001{bottom:874.747067pt;}
.y170_c00001{bottom:875.947067pt;}
.y6de_c00001{bottom:876.587067pt;}
.y25f_c00001{bottom:877.147067pt;}
.ya_c00001{bottom:877.787067pt;}
.y7f1_c00001{bottom:878.267067pt;}
.y6fd_c00001{bottom:878.347067pt;}
.y2df_c00001{bottom:878.897867pt;}
.y97_c00001{bottom:879.451307pt;}
.y87b_c00001{bottom:880.648907pt;}
.y46e_c00001{bottom:881.387067pt;}
.y522_c00001{bottom:881.677627pt;}
.y780_c00001{bottom:882.347067pt;}
.y11f_c00001{bottom:883.947067pt;}
.y4fd_c00001{bottom:884.020427pt;}
.y629_c00001{bottom:885.467067pt;}
.y293_c00001{bottom:886.900507pt;}
.y9cf_c00001{bottom:887.453947pt;}
.y392_c00001{bottom:888.027067pt;}
.y42_c00001{bottom:888.638187pt;}
.ya42_c00001{bottom:888.651547pt;}
.ya26_c00001{bottom:889.147067pt;}
.y89a_c00001{bottom:889.787067pt;}
.yb68_c00001{bottom:890.347067pt;}
.ydf_c00001{bottom:891.947067pt;}
.y242_c00001{bottom:892.187067pt;}
.yb9e_c00001{bottom:892.347067pt;}
.y8c6_c00001{bottom:892.747067pt;}
.y9b3_c00001{bottom:893.861067pt;}
.y96_c00001{bottom:894.494667pt;}
.y87a_c00001{bottom:895.692267pt;}
.ybd_c00001{bottom:896.640827pt;}
.y47b_c00001{bottom:897.467067pt;}
.y65e_c00001{bottom:898.587067pt;}
.y4fc_c00001{bottom:898.983627pt;}
.y1ab_c00001{bottom:901.383627pt;}
.y292_c00001{bottom:901.863707pt;}
.y3d8_c00001{bottom:902.497307pt;}
.y41_c00001{bottom:903.681547pt;}
.ya41_c00001{bottom:903.694907pt;}
.y6a_c00001{bottom:905.387067pt;}
.y16f_c00001{bottom:906.587067pt;}
.y6dd_c00001{bottom:907.147067pt;}
.y25e_c00001{bottom:907.787067pt;}
.y9_c00001{bottom:908.347067pt;}
.y95_c00001{bottom:909.457867pt;}
.yb9d_c00001{bottom:910.347067pt;}
.y879_c00001{bottom:910.655467pt;}
.ybc_c00001{bottom:911.684187pt;}
.y336_c00001{bottom:912.027067pt;}
.y4fb_c00001{bottom:914.026987pt;}
.y159_c00001{bottom:914.587067pt;}
.y77f_c00001{bottom:916.333467pt;}
.y291_c00001{bottom:916.907067pt;}
.y3d7_c00001{bottom:917.460507pt;}
.y40_c00001{bottom:918.644747pt;}
.y1aa_c00001{bottom:918.658107pt;}
.ya25_c00001{bottom:919.787067pt;}
.y899_c00001{bottom:920.347067pt;}
.yde_c00001{bottom:922.587067pt;}
.y241_c00001{bottom:922.747067pt;}
.y8c5_c00001{bottom:923.387067pt;}
.y94_c00001{bottom:924.501227pt;}
.yb67_c00001{bottom:926.347067pt;}
.ybb_c00001{bottom:926.647387pt;}
.y628_c00001{bottom:926.827067pt;}
.y391_c00001{bottom:928.027067pt;}
.y228_c00001{bottom:929.227067pt;}
.y862_c00001{bottom:931.376827pt;}
.y3d6_c00001{bottom:932.503867pt;}
.y3f_c00001{bottom:933.688107pt;}
.ya40_c00001{bottom:933.701467pt;}
.y16e_c00001{bottom:937.147067pt;}
.y6dc_c00001{bottom:937.787067pt;}
.y25d_c00001{bottom:938.347067pt;}
.y69_c00001{bottom:939.379467pt;}
.y8_c00001{bottom:941.690747pt;}
.yb84_c00001{bottom:942.347067pt;}
.y335_c00001{bottom:942.587067pt;}
.yb9c_c00001{bottom:944.347067pt;}
.y17f_c00001{bottom:945.147067pt;}
.y93_c00001{bottom:947.467067pt;}
.y3e_c00001{bottom:948.651307pt;}
.ya3f_c00001{bottom:948.664667pt;}
.ya24_c00001{bottom:950.347067pt;}
.ydd_c00001{bottom:953.147067pt;}
.y240_c00001{bottom:953.387067pt;}
.y898_c00001{bottom:954.342667pt;}
.y7_c00001{bottom:956.653947pt;}
.yb66_c00001{bottom:960.347067pt;}
.yb9b_c00001{bottom:962.347067pt;}
.y3d_c00001{bottom:963.694667pt;}
.y6db_c00001{bottom:968.347067pt;}
.y6_c00001{bottom:971.697307pt;}
.y334_c00001{bottom:973.227067pt;}
.yb52_c00001{bottom:975.787067pt;}
.yb65_c00001{bottom:978.347067pt;}
.y3c_c00001{bottom:978.657867pt;}
.y92_c00001{bottom:983.787067pt;}
.ya23_c00001{bottom:984.349227pt;}
.y5_c00001{bottom:986.660507pt;}
.y3b_c00001{bottom:993.701227pt;}
.yb64_c00001{bottom:996.347067pt;}
.y4_c00001{bottom:1001.703867pt;}
.y333_c00001{bottom:1013.227067pt;}
.y91_c00001{bottom:1014.347067pt;}
.y3_c00001{bottom:1016.667067pt;}
.y39_c00001{bottom:1045.707067pt;}
.yb83_c00001{bottom:1046.667067pt;}
.yb2a_c00001{bottom:1060.667067pt;}
.y1_c00001{bottom:1063.867067pt;}
.y38_c00001{bottom:1063.947067pt;}
.h1d_c00001{height:31.334062pt;}
.h6f_c00001{height:35.619062pt;}
.h3c_c00001{height:40.171875pt;}
.h40_c00001{height:40.218750pt;}
.h43_c00001{height:40.593750pt;}
.h3f_c00001{height:42.560250pt;}
.h42_c00001{height:42.560783pt;}
.h3e_c00001{height:42.608250pt;}
.h41_c00001{height:42.624250pt;}
.h3d_c00001{height:42.640250pt;}
.h7_c00001{height:42.656250pt;}
.h1a_c00001{height:42.656783pt;}
.h70_c00001{height:44.186831pt;}
.h8_c00001{height:44.388750pt;}
.h5e_c00001{height:44.390350pt;}
.h1c_c00001{height:44.391310pt;}
.h17_c00001{height:44.393230pt;}
.h19_c00001{height:44.395790pt;}
.h3b_c00001{height:44.399310pt;}
.h1_c00001{height:44.724687pt;}
.h47_c00001{height:44.737488pt;}
.h1e_c00001{height:44.750928pt;}
.h4a_c00001{height:44.761488pt;}
.h1f_c00001{height:44.763728pt;}
.h21_c00001{height:44.764367pt;}
.h12_c00001{height:44.771088pt;}
.h64_c00001{height:44.771621pt;}
.h27_c00001{height:44.774927pt;}
.h31_c00001{height:44.776875pt;}
.h23_c00001{height:44.777168pt;}
.hf_c00001{height:44.787088pt;}
.h29_c00001{height:44.787728pt;}
.h3_c00001{height:44.789968pt;}
.h6c_c00001{height:44.800527pt;}
.h71_c00001{height:44.801701pt;}
.h60_c00001{height:44.803408pt;}
.h24_c00001{height:44.810128pt;}
.h26_c00001{height:44.813434pt;}
.h25_c00001{height:44.813968pt;}
.h49_c00001{height:44.816208pt;}
.h38_c00001{height:44.823567pt;}
.h54_c00001{height:44.824527pt;}
.h6d_c00001{height:44.826447pt;}
.h14_c00001{height:44.826768pt;}
.h2e_c00001{height:44.826874pt;}
.h10_c00001{height:44.829648pt;}
.h37_c00001{height:44.836367pt;}
.he_c00001{height:44.837327pt;}
.h4f_c00001{height:44.839674pt;}
.h2a_c00001{height:44.840208pt;}
.h51_c00001{height:44.849807pt;}
.h2c_c00001{height:44.853008pt;}
.h56_c00001{height:44.853648pt;}
.h4e_c00001{height:44.863568pt;}
.hc_c00001{height:44.866447pt;}
.ha_c00001{height:44.879248pt;}
.h35_c00001{height:44.882128pt;}
.h63_c00001{height:44.890447pt;}
.h2d_c00001{height:44.890981pt;}
.h58_c00001{height:44.892688pt;}
.h30_c00001{height:44.903247pt;}
.h4b_c00001{height:44.915727pt;}
.h4c_c00001{height:44.916688pt;}
.h34_c00001{height:44.932687pt;}
.h6e_c00001{height:44.952847pt;}
.h57_c00001{height:44.971408pt;}
.h52_c00001{height:45.021648pt;}
.h20_c00001{height:49.125250pt;}
.h22_c00001{height:49.141250pt;}
.h45_c00001{height:49.280000pt;}
.h9_c00001{height:50.062500pt;}
.h4_c00001{height:53.562500pt;}
.h39_c00001{height:53.563033pt;}
.h18_c00001{height:53.576260pt;}
.h53_c00001{height:53.599300pt;}
.h50_c00001{height:53.601540pt;}
.h55_c00001{height:53.602073pt;}
.h2f_c00001{height:53.602713pt;}
.h32_c00001{height:53.603460pt;}
.h5f_c00001{height:53.625000pt;}
.h36_c00001{height:53.625540pt;}
.h61_c00001{height:53.636100pt;}
.h2b_c00001{height:53.638980pt;}
.h67_c00001{height:53.639300pt;}
.h65_c00001{height:53.664580pt;}
.h72_c00001{height:53.704260pt;}
.h75_c00001{height:54.124467pt;}
.h15_c00001{height:54.125000pt;}
.h74_c00001{height:54.125533pt;}
.h77_c00001{height:56.674540pt;}
.h76_c00001{height:57.031250pt;}
.h33_c00001{height:57.871982pt;}
.h68_c00001{height:57.885423pt;}
.h6_c00001{height:57.893529pt;}
.h5_c00001{height:57.894062pt;}
.h16_c00001{height:57.894596pt;}
.h1b_c00001{height:57.907823pt;}
.h5d_c00001{height:57.911663pt;}
.hb_c00001{height:57.924463pt;}
.h5a_c00001{height:57.935023pt;}
.h5b_c00001{height:57.944623pt;}
.h4d_c00001{height:57.948463pt;}
.h69_c00001{height:57.951343pt;}
.h6a_c00001{height:57.960303pt;}
.h48_c00001{height:57.988142pt;}
.h66_c00001{height:58.000942pt;}
.hd_c00001{height:58.014276pt;}
.h28_c00001{height:58.051716pt;}
.h5c_c00001{height:58.063982pt;}
.h6b_c00001{height:58.093103pt;}
.h59_c00001{height:58.116996pt;}
.h62_c00001{height:58.183125pt;}
.h2_c00001{height:64.142500pt;}
.h13_c00001{height:66.750000pt;}
.h11_c00001{height:72.423750pt;}
.h3a_c00001{height:77.763750pt;}
.h73_c00001{height:80.437500pt;}
.h46_c00001{height:85.440000pt;}
.h44_c00001{height:97.120000pt;}
.h0_c00001{height:1122.666667pt;}
.w2_c00001{width:10.640000pt;}
.w1_c00001{width:793.333333pt;}
.w0_c00001{width:793.626667pt;}
.x0_c00001{left:0.000000pt;}
.x1a_c00001{left:5.440000pt;}
.x92_c00001{left:7.280000pt;}
.x94_c00001{left:10.560000pt;}
.x91_c00001{left:53.680000pt;}
.x90_c00001{left:60.960000pt;}
.x34_c00001{left:70.320000pt;}
.x70_c00001{left:74.800000pt;}
.x1b_c00001{left:77.280000pt;}
.x82_c00001{left:81.760000pt;}
.x35_c00001{left:84.156000pt;}
.x71_c00001{left:88.636000pt;}
.x83_c00001{left:95.596000pt;}
.x59_c00001{left:102.240000pt;}
.x84_c00001{left:109.516000pt;}
.x1c_c00001{left:111.680000pt;}
.x1_c00001{left:113.440000pt;}
.x36_c00001{left:116.160000pt;}
.x93_c00001{left:119.760000pt;}
.x51_c00001{left:123.040000pt;}
.x9_c00001{left:125.529680pt;}
.x37_c00001{left:129.996000pt;}
.x3_c00001{left:137.443840pt;}
.x95_c00001{left:141.520000pt;}
.x38_c00001{left:143.832000pt;}
.x6b_c00001{left:148.400000pt;}
.x16_c00001{left:149.440000pt;}
.x52_c00001{left:150.796000pt;}
.x96_c00001{left:155.356000pt;}
.x39_c00001{left:157.752000pt;}
.x2_c00001{left:160.720000pt;}
.x6c_c00001{left:162.320000pt;}
.x9d_c00001{left:165.680000pt;}
.x97_c00001{left:169.276000pt;}
.xa2_c00001{left:170.562415pt;}
.x5a_c00001{left:171.588000pt;}
.x9f_c00001{left:174.160000pt;}
.x6d_c00001{left:176.156000pt;}
.x89_c00001{left:178.724000pt;}
.x19_c00001{left:183.760000pt;}
.xa_c00001{left:185.440000pt;}
.x1d_c00001{left:190.560000pt;}
.x4_c00001{left:193.280000pt;}
.x5b_c00001{left:196.000000pt;}
.x10_c00001{left:197.440000pt;}
.x72_c00001{left:199.512000pt;}
.x1e_c00001{left:204.396000pt;}
.x13_c00001{left:208.000000pt;}
.x11_c00001{left:209.440000pt;}
.x98_c00001{left:210.868000pt;}
.xe_c00001{left:214.160000pt;}
.x3a_c00001{left:216.800000pt;}
.x1f_c00001{left:218.232000pt;}
.x8_c00001{left:219.361440pt;}
.x9a_c00001{left:221.434560pt;}
.x53_c00001{left:223.680000pt;}
.x73_c00001{left:227.268000pt;}
.x99_c00001{left:229.360000pt;}
.x12_c00001{left:230.480000pt;}
.x20_c00001{left:232.152000pt;}
.x9b_c00001{left:233.440000pt;}
.x18_c00001{left:237.040960pt;}
.x15_c00001{left:241.920000pt;}
.x3b_c00001{left:244.556000pt;}
.x21_c00001{left:245.988000pt;}
.x74_c00001{left:250.240000pt;}
.x5c_c00001{left:251.428000pt;}
.x22_c00001{left:259.908000pt;}
.x75_c00001{left:264.160000pt;}
.x5d_c00001{left:265.348000pt;}
.xc_c00001{left:266.880000pt;}
.x85_c00001{left:271.040000pt;}
.x76_c00001{left:277.996000pt;}
.x6e_c00001{left:283.440000pt;}
.x86_c00001{left:284.960000pt;}
.x77_c00001{left:291.916000pt;}
.x23_c00001{left:299.040000pt;}
.x78_c00001{left:305.752000pt;}
.x3c_c00001{left:311.600000pt;}
.x24_c00001{left:312.960000pt;}
.x79_c00001{left:319.588000pt;}
.x3d_c00001{left:325.436000pt;}
.x25_c00001{left:326.796000pt;}
.xa1_c00001{left:335.280000pt;}
.x5e_c00001{left:336.800000pt;}
.x3e_c00001{left:339.272000pt;}
.x26_c00001{left:340.716000pt;}
.x5f_c00001{left:350.720000pt;}
.x6f_c00001{left:351.680000pt;}
.x3f_c00001{left:353.192000pt;}
.x27_c00001{left:354.552000pt;}
.xf_c00001{left:364.480000pt;}
.x40_c00001{left:367.028000pt;}
.x28_c00001{left:368.472000pt;}
.x7a_c00001{left:370.240000pt;}
.x55_c00001{left:374.004000pt;}
.x60_c00001{left:378.392000pt;}
.x41_c00001{left:380.948000pt;}
.x29_c00001{left:382.308000pt;}
.x7b_c00001{left:384.160000pt;}
.x6_c00001{left:386.880000pt;}
.x56_c00001{left:387.924000pt;}
.x61_c00001{left:392.312000pt;}
.x42_c00001{left:394.784000pt;}
.x5_c00001{left:396.880000pt;}
.x7c_c00001{left:397.996000pt;}
.xa3_c00001{left:400.720000pt;}
.x8a_c00001{left:402.392000pt;}
.x87_c00001{left:404.960000pt;}
.x62_c00001{left:406.148000pt;}
.x43_c00001{left:408.704000pt;}
.x2a_c00001{left:410.064000pt;}
.x7d_c00001{left:411.916000pt;}
.x8b_c00001{left:420.960000pt;}
.x44_c00001{left:422.540000pt;}
.x2b_c00001{left:423.900000pt;}
.x7e_c00001{left:425.752000pt;}
.x45_c00001{left:436.460000pt;}
.x2c_c00001{left:437.820000pt;}
.x7f_c00001{left:439.588000pt;}
.x46_c00001{left:450.296000pt;}
.x2d_c00001{left:451.656000pt;}
.x2e_c00001{left:491.040000pt;}
.x80_c00001{left:496.240000pt;}
.x2f_c00001{left:504.960000pt;}
.x8c_c00001{left:507.600000pt;}
.x63_c00001{left:510.160000pt;}
.x47_c00001{left:517.040000pt;}
.x8d_c00001{left:521.520000pt;}
.x57_c00001{left:524.004000pt;}
.xa6_c00001{left:526.480000pt;}
.x48_c00001{left:530.960000pt;}
.x8e_c00001{left:535.356000pt;}
.x58_c00001{left:537.924000pt;}
.x49_c00001{left:544.796000pt;}
.x64_c00001{left:551.752000pt;}
.x8f_c00001{left:553.920000pt;}
.xd_c00001{left:561.120000pt;}
.x81_c00001{left:565.588000pt;}
.x65_c00001{left:590.400000pt;}
.x30_c00001{left:599.040000pt;}
.x66_c00001{left:604.236000pt;}
.x7_c00001{left:606.080000pt;}
.xa5_c00001{left:611.200000pt;}
.x14_c00001{left:612.560000pt;}
.x9e_c00001{left:615.040000pt;}
.x67_c00001{left:618.156000pt;}
.xa8_c00001{left:620.720000pt;}
.x17_c00001{left:624.000000pt;}
.x4a_c00001{left:625.040000pt;}
.x31_c00001{left:626.796000pt;}
.x54_c00001{left:632.004000pt;}
.xa4_c00001{left:632.960000pt;}
.x9c_c00001{left:635.440000pt;}
.x4b_c00001{left:638.960000pt;}
.x88_c00001{left:641.040000pt;}
.xb_c00001{left:645.440000pt;}
.x4c_c00001{left:652.796000pt;}
.x68_c00001{left:659.748000pt;}
.x69_c00001{left:673.584000pt;}
.xa7_c00001{left:680.400000pt;}
.x6a_c00001{left:687.504000pt;}
.x32_c00001{left:707.040000pt;}
.x4d_c00001{left:708.159867pt;}
.xa0_c00001{left:712.720000pt;}
.x33_c00001{left:720.960000pt;}
.x4e_c00001{left:721.995867pt;}
.x4f_c00001{left:735.915867pt;}
.x50_c00001{left:749.751867pt;}
}




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